2008-04-18 06:13:47 +02:00
|
|
|
/**@file
|
|
|
|
This contains the installation function for the driver.
|
|
|
|
|
2009-03-02 01:58:29 +01:00
|
|
|
Copyright (c) 2005 - 2009, Intel Corporation
|
2008-04-18 06:13:47 +02:00
|
|
|
All rights reserved. This program and the accompanying materials
|
|
|
|
are licensed and made available under the terms and conditions of the BSD License
|
|
|
|
which accompanies this distribution. The full text of the license may be found at
|
|
|
|
http://opensource.org/licenses/bsd-license.php
|
|
|
|
|
|
|
|
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|
|
|
|
|
|
|
**/
|
|
|
|
|
|
|
|
#include "8259.h"
|
|
|
|
|
|
|
|
//
|
2009-03-02 01:58:29 +01:00
|
|
|
// Global for the Legacy 8259 Protocol that is produced by this driver
|
2008-04-18 06:13:47 +02:00
|
|
|
//
|
|
|
|
EFI_LEGACY_8259_PROTOCOL m8259 = {
|
|
|
|
Interrupt8259SetVectorBase,
|
|
|
|
Interrupt8259GetMask,
|
|
|
|
Interrupt8259SetMask,
|
|
|
|
Interrupt8259SetMode,
|
|
|
|
Interrupt8259GetVector,
|
|
|
|
Interrupt8259EnableIrq,
|
|
|
|
Interrupt8259DisableIrq,
|
|
|
|
Interrupt8259GetInterruptLine,
|
|
|
|
Interrupt8259EndOfInterrupt
|
|
|
|
};
|
|
|
|
|
|
|
|
//
|
|
|
|
// Global for the handle that the Legacy 8259 Protocol is installed
|
|
|
|
//
|
|
|
|
EFI_HANDLE m8259Handle = NULL;
|
|
|
|
|
|
|
|
UINT8 mMasterBase = 0xff;
|
|
|
|
UINT8 mSlaveBase = 0xff;
|
|
|
|
EFI_8259_MODE mMode = Efi8259ProtectedMode;
|
|
|
|
UINT16 mProtectedModeMask = 0xffff;
|
|
|
|
UINT16 mLegacyModeMask = 0x06b8;
|
|
|
|
UINT16 mProtectedModeEdgeLevel = 0x0000;
|
|
|
|
UINT16 mLegacyModeEdgeLevel = 0x0000;
|
|
|
|
|
|
|
|
//
|
|
|
|
// Worker Functions
|
|
|
|
//
|
2009-03-02 01:58:29 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
Write to mask and edge/level triggered registers of master and slave PICs.
|
|
|
|
|
|
|
|
@param[in] Mask low byte for master PIC mask register,
|
|
|
|
high byte for slave PIC mask register.
|
|
|
|
@param[in] EdgeLevel low byte for master PIC edge/level triggered register,
|
|
|
|
high byte for slave PIC edge/level triggered register.
|
|
|
|
|
|
|
|
**/
|
2008-04-18 06:13:47 +02:00
|
|
|
VOID
|
|
|
|
Interrupt8259WriteMask (
|
|
|
|
IN UINT16 Mask,
|
|
|
|
IN UINT16 EdgeLevel
|
|
|
|
)
|
|
|
|
{
|
|
|
|
IoWrite8 (LEGACY_8259_MASK_REGISTER_MASTER, (UINT8) Mask);
|
|
|
|
IoWrite8 (LEGACY_8259_MASK_REGISTER_SLAVE, (UINT8) (Mask >> 8));
|
|
|
|
IoWrite8 (LEGACY_8259_EDGE_LEVEL_TRIGGERED_REGISTER_MASTER, (UINT8) EdgeLevel);
|
|
|
|
IoWrite8 (LEGACY_8259_EDGE_LEVEL_TRIGGERED_REGISTER_SLAVE, (UINT8) (EdgeLevel >> 8));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2009-03-02 01:58:29 +01:00
|
|
|
Read from mask and edge/level triggered registers of master and slave PICs.
|
2008-04-18 06:13:47 +02:00
|
|
|
|
2009-03-02 01:58:29 +01:00
|
|
|
@param[out] Mask low byte for master PIC mask register,
|
|
|
|
high byte for slave PIC mask register.
|
|
|
|
@param[out] EdgeLevel low byte for master PIC edge/level triggered register,
|
|
|
|
high byte for slave PIC edge/level triggered register.
|
2008-04-18 06:13:47 +02:00
|
|
|
|
|
|
|
**/
|
2009-03-02 01:58:29 +01:00
|
|
|
VOID
|
|
|
|
Interrupt8259ReadMask (
|
|
|
|
OUT UINT16 *Mask,
|
|
|
|
OUT UINT16 *EdgeLevel
|
|
|
|
)
|
2008-04-18 06:13:47 +02:00
|
|
|
{
|
2008-12-04 07:21:53 +01:00
|
|
|
UINT16 MasterValue;
|
|
|
|
UINT16 SlaveValue;
|
|
|
|
|
2008-04-18 06:13:47 +02:00
|
|
|
if (Mask != NULL) {
|
2008-12-04 07:21:53 +01:00
|
|
|
MasterValue = IoRead8 (LEGACY_8259_MASK_REGISTER_MASTER);
|
|
|
|
SlaveValue = IoRead8 (LEGACY_8259_MASK_REGISTER_SLAVE);
|
|
|
|
|
|
|
|
*Mask = (UINT16) (MasterValue | (SlaveValue << 8));
|
2008-04-18 06:13:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (EdgeLevel != NULL) {
|
2008-12-04 07:21:53 +01:00
|
|
|
MasterValue = IoRead8 (LEGACY_8259_EDGE_LEVEL_TRIGGERED_REGISTER_MASTER);
|
|
|
|
SlaveValue = IoRead8 (LEGACY_8259_EDGE_LEVEL_TRIGGERED_REGISTER_SLAVE);
|
|
|
|
|
|
|
|
*EdgeLevel = (UINT16) (MasterValue | (SlaveValue << 8));
|
2008-04-18 06:13:47 +02:00
|
|
|
}
|
|
|
|
}
|
2009-03-02 01:58:29 +01:00
|
|
|
|
2008-04-18 06:13:47 +02:00
|
|
|
//
|
2009-03-02 01:58:29 +01:00
|
|
|
// Legacy 8259 Protocol Interface Functions
|
2008-04-18 06:13:47 +02:00
|
|
|
//
|
|
|
|
|
2009-03-02 01:58:29 +01:00
|
|
|
/**
|
|
|
|
Sets the base address for the 8259 master and slave PICs.
|
2008-04-18 06:13:47 +02:00
|
|
|
|
2009-03-02 01:58:29 +01:00
|
|
|
@param[in] This Indicates the EFI_LEGACY_8259_PROTOCOL instance.
|
|
|
|
@param[in] MasterBase Interrupt vectors for IRQ0-IRQ7.
|
|
|
|
@param[in] SlaveBase Interrupt vectors for IRQ8-IRQ15.
|
2008-04-18 06:13:47 +02:00
|
|
|
|
2009-03-02 01:58:29 +01:00
|
|
|
@retval EFI_SUCCESS The 8259 PIC was programmed successfully.
|
|
|
|
@retval EFI_DEVICE_ERROR There was an error while writing to the 8259 PIC.
|
2008-04-18 06:13:47 +02:00
|
|
|
|
|
|
|
**/
|
2009-03-02 01:58:29 +01:00
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
Interrupt8259SetVectorBase (
|
|
|
|
IN EFI_LEGACY_8259_PROTOCOL *This,
|
|
|
|
IN UINT8 MasterBase,
|
|
|
|
IN UINT8 SlaveBase
|
|
|
|
)
|
2008-04-18 06:13:47 +02:00
|
|
|
{
|
|
|
|
UINT8 Mask;
|
|
|
|
|
2009-03-02 01:58:29 +01:00
|
|
|
//
|
|
|
|
// Set vector base for slave PIC
|
|
|
|
//
|
2008-04-18 06:13:47 +02:00
|
|
|
if (SlaveBase != mSlaveBase) {
|
|
|
|
mSlaveBase = SlaveBase;
|
|
|
|
|
|
|
|
//
|
2009-03-02 01:58:29 +01:00
|
|
|
// Initialization sequence is needed for setting vector base.
|
|
|
|
//
|
|
|
|
|
|
|
|
//
|
|
|
|
// Preserve interrtup mask register before initialization sequence
|
|
|
|
// because it will be cleared during intialization
|
2008-04-18 06:13:47 +02:00
|
|
|
//
|
|
|
|
Mask = IoRead8 (LEGACY_8259_MASK_REGISTER_SLAVE);
|
2009-03-02 01:58:29 +01:00
|
|
|
|
|
|
|
//
|
|
|
|
// ICW1: cascade mode, ICW4 write required
|
|
|
|
//
|
2008-04-18 06:13:47 +02:00
|
|
|
IoWrite8 (LEGACY_8259_CONTROL_REGISTER_SLAVE, 0x11);
|
2009-03-02 01:58:29 +01:00
|
|
|
|
|
|
|
//
|
|
|
|
// ICW2: new vector base (must be multiple of 8)
|
|
|
|
//
|
2008-04-18 06:13:47 +02:00
|
|
|
IoWrite8 (LEGACY_8259_MASK_REGISTER_SLAVE, mSlaveBase);
|
2009-03-02 01:58:29 +01:00
|
|
|
|
|
|
|
//
|
|
|
|
// ICW3: slave indentification code must be 2
|
|
|
|
//
|
2008-04-18 06:13:47 +02:00
|
|
|
IoWrite8 (LEGACY_8259_MASK_REGISTER_SLAVE, 0x02);
|
2009-03-02 01:58:29 +01:00
|
|
|
|
|
|
|
//
|
|
|
|
// ICW4: fully nested mode, non-buffered mode, normal EOI, IA processor
|
|
|
|
//
|
2008-04-18 06:13:47 +02:00
|
|
|
IoWrite8 (LEGACY_8259_MASK_REGISTER_SLAVE, 0x01);
|
2009-03-02 01:58:29 +01:00
|
|
|
|
|
|
|
//
|
|
|
|
// Restore interrupt mask register
|
|
|
|
//
|
2008-04-18 06:13:47 +02:00
|
|
|
IoWrite8 (LEGACY_8259_MASK_REGISTER_SLAVE, Mask);
|
|
|
|
}
|
|
|
|
|
2009-03-02 01:58:29 +01:00
|
|
|
//
|
|
|
|
// Set vector base for master PIC
|
|
|
|
//
|
2008-04-18 06:13:47 +02:00
|
|
|
if (MasterBase != mMasterBase) {
|
|
|
|
mMasterBase = MasterBase;
|
|
|
|
|
|
|
|
//
|
2009-03-02 01:58:29 +01:00
|
|
|
// Initialization sequence is needed for setting vector base.
|
|
|
|
//
|
|
|
|
|
|
|
|
//
|
|
|
|
// Preserve interrtup mask register before initialization sequence
|
|
|
|
// because it will be cleared during intialization
|
2008-04-18 06:13:47 +02:00
|
|
|
//
|
|
|
|
Mask = IoRead8 (LEGACY_8259_MASK_REGISTER_MASTER);
|
2009-03-02 01:58:29 +01:00
|
|
|
|
|
|
|
//
|
|
|
|
// ICW1: cascade mode, ICW4 write required
|
|
|
|
//
|
2008-04-18 06:13:47 +02:00
|
|
|
IoWrite8 (LEGACY_8259_CONTROL_REGISTER_MASTER, 0x11);
|
2009-03-02 01:58:29 +01:00
|
|
|
|
|
|
|
//
|
|
|
|
// ICW2: new vector base (must be multiple of 8)
|
|
|
|
//
|
2008-04-18 06:13:47 +02:00
|
|
|
IoWrite8 (LEGACY_8259_MASK_REGISTER_MASTER, mMasterBase);
|
2009-03-02 01:58:29 +01:00
|
|
|
|
|
|
|
//
|
|
|
|
// ICW3: slave PIC is cascaded on IRQ2
|
|
|
|
//
|
2008-04-18 06:13:47 +02:00
|
|
|
IoWrite8 (LEGACY_8259_MASK_REGISTER_MASTER, 0x04);
|
2009-03-02 01:58:29 +01:00
|
|
|
|
|
|
|
//
|
|
|
|
// ICW4: fully nested mode, non-buffered mode, normal EOI, IA processor
|
|
|
|
//
|
2008-04-18 06:13:47 +02:00
|
|
|
IoWrite8 (LEGACY_8259_MASK_REGISTER_MASTER, 0x01);
|
2009-03-02 01:58:29 +01:00
|
|
|
|
|
|
|
//
|
|
|
|
// Restore interrupt mask register
|
|
|
|
//
|
2008-04-18 06:13:47 +02:00
|
|
|
IoWrite8 (LEGACY_8259_MASK_REGISTER_MASTER, Mask);
|
|
|
|
}
|
|
|
|
|
|
|
|
IoWrite8 (LEGACY_8259_CONTROL_REGISTER_SLAVE, 0x20);
|
|
|
|
IoWrite8 (LEGACY_8259_CONTROL_REGISTER_MASTER, 0x20);
|
|
|
|
|
|
|
|
return EFI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2009-03-02 01:58:29 +01:00
|
|
|
/**
|
|
|
|
Gets the current 16-bit real mode and 32-bit protected-mode IRQ masks.
|
|
|
|
|
|
|
|
@param[in] This Indicates the EFI_LEGACY_8259_PROTOCOL instance.
|
|
|
|
@param[out] LegacyMask 16-bit mode interrupt mask for IRQ0-IRQ15.
|
|
|
|
@param[out] LegacyEdgeLevel 16-bit mode edge/level mask for IRQ-IRQ15.
|
|
|
|
@param[out] ProtectedMask 32-bit mode interrupt mask for IRQ0-IRQ15.
|
|
|
|
@param[out] ProtectedEdgeLevel 32-bit mode edge/level mask for IRQ0-IRQ15.
|
|
|
|
|
|
|
|
@retval EFI_SUCCESS The 8259 PIC was programmed successfully.
|
|
|
|
@retval EFI_DEVICE_ERROR There was an error while reading the 8259 PIC.
|
|
|
|
|
|
|
|
**/
|
2008-04-18 06:13:47 +02:00
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
Interrupt8259GetMask (
|
2009-03-02 01:58:29 +01:00
|
|
|
IN EFI_LEGACY_8259_PROTOCOL *This,
|
2008-04-18 06:13:47 +02:00
|
|
|
OUT UINT16 *LegacyMask, OPTIONAL
|
|
|
|
OUT UINT16 *LegacyEdgeLevel, OPTIONAL
|
|
|
|
OUT UINT16 *ProtectedMask, OPTIONAL
|
|
|
|
OUT UINT16 *ProtectedEdgeLevel OPTIONAL
|
|
|
|
)
|
|
|
|
{
|
|
|
|
if (LegacyMask != NULL) {
|
|
|
|
*LegacyMask = mLegacyModeMask;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (LegacyEdgeLevel != NULL) {
|
|
|
|
*LegacyEdgeLevel = mLegacyModeEdgeLevel;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ProtectedMask != NULL) {
|
|
|
|
*ProtectedMask = mProtectedModeMask;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ProtectedEdgeLevel != NULL) {
|
|
|
|
*ProtectedEdgeLevel = mProtectedModeEdgeLevel;
|
|
|
|
}
|
|
|
|
|
|
|
|
return EFI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2009-03-02 01:58:29 +01:00
|
|
|
Sets the current 16-bit real mode and 32-bit protected-mode IRQ masks.
|
2008-04-18 06:13:47 +02:00
|
|
|
|
2009-03-02 01:58:29 +01:00
|
|
|
@param[in] This Indicates the EFI_LEGACY_8259_PROTOCOL instance.
|
|
|
|
@param[in] LegacyMask 16-bit mode interrupt mask for IRQ0-IRQ15.
|
|
|
|
@param[in] LegacyEdgeLevel 16-bit mode edge/level mask for IRQ-IRQ15.
|
|
|
|
@param[in] ProtectedMask 32-bit mode interrupt mask for IRQ0-IRQ15.
|
|
|
|
@param[in] ProtectedEdgeLevel 32-bit mode edge/level mask for IRQ0-IRQ15.
|
2008-04-18 06:13:47 +02:00
|
|
|
|
2009-03-02 01:58:29 +01:00
|
|
|
@retval EFI_SUCCESS The 8259 PIC was programmed successfully.
|
|
|
|
@retval EFI_DEVICE_ERROR There was an error while writing the 8259 PIC.
|
2008-04-18 06:13:47 +02:00
|
|
|
|
|
|
|
**/
|
2009-03-02 01:58:29 +01:00
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
Interrupt8259SetMask (
|
|
|
|
IN EFI_LEGACY_8259_PROTOCOL *This,
|
|
|
|
IN UINT16 *LegacyMask, OPTIONAL
|
|
|
|
IN UINT16 *LegacyEdgeLevel, OPTIONAL
|
|
|
|
IN UINT16 *ProtectedMask, OPTIONAL
|
|
|
|
IN UINT16 *ProtectedEdgeLevel OPTIONAL
|
|
|
|
)
|
2008-04-18 06:13:47 +02:00
|
|
|
{
|
|
|
|
if (LegacyMask != NULL) {
|
|
|
|
mLegacyModeMask = *LegacyMask;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (LegacyEdgeLevel != NULL) {
|
|
|
|
mLegacyModeEdgeLevel = *LegacyEdgeLevel;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ProtectedMask != NULL) {
|
|
|
|
mProtectedModeMask = *ProtectedMask;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ProtectedEdgeLevel != NULL) {
|
|
|
|
mProtectedModeEdgeLevel = *ProtectedEdgeLevel;
|
|
|
|
}
|
|
|
|
|
|
|
|
return EFI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2009-03-02 01:58:29 +01:00
|
|
|
Sets the mode of the PICs.
|
2008-04-18 06:13:47 +02:00
|
|
|
|
2009-03-02 01:58:29 +01:00
|
|
|
@param[in] This Indicates the EFI_LEGACY_8259_PROTOCOL instance.
|
|
|
|
@param[in] Mode 16-bit real or 32-bit protected mode.
|
|
|
|
@param[in] Mask The value with which to set the interrupt mask.
|
|
|
|
@param[in] EdgeLevel The value with which to set the edge/level mask.
|
2008-04-18 06:13:47 +02:00
|
|
|
|
2009-03-02 01:58:29 +01:00
|
|
|
@retval EFI_SUCCESS The mode was set successfully.
|
|
|
|
@retval EFI_INVALID_PARAMETER The mode was not set.
|
2008-04-18 06:13:47 +02:00
|
|
|
|
|
|
|
**/
|
2009-03-02 01:58:29 +01:00
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
Interrupt8259SetMode (
|
|
|
|
IN EFI_LEGACY_8259_PROTOCOL *This,
|
|
|
|
IN EFI_8259_MODE Mode,
|
|
|
|
IN UINT16 *Mask, OPTIONAL
|
|
|
|
IN UINT16 *EdgeLevel OPTIONAL
|
|
|
|
)
|
2008-04-18 06:13:47 +02:00
|
|
|
{
|
|
|
|
if (Mode == mMode) {
|
|
|
|
return EFI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Mode == Efi8259LegacyMode) {
|
|
|
|
//
|
2009-03-02 01:58:29 +01:00
|
|
|
// In Efi8259ProtectedMode, mask and edge/level trigger registers should
|
|
|
|
// be changed through this protocol, so we can track them in the
|
|
|
|
// corresponding module variables.
|
2008-04-18 06:13:47 +02:00
|
|
|
//
|
|
|
|
Interrupt8259ReadMask (&mProtectedModeMask, &mProtectedModeEdgeLevel);
|
|
|
|
|
|
|
|
if (Mask != NULL) {
|
|
|
|
//
|
|
|
|
// Update the Mask for the new mode
|
|
|
|
//
|
|
|
|
mLegacyModeMask = *Mask;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (EdgeLevel != NULL) {
|
|
|
|
//
|
|
|
|
// Update the Edge/Level triggered mask for the new mode
|
|
|
|
//
|
|
|
|
mLegacyModeEdgeLevel = *EdgeLevel;
|
|
|
|
}
|
|
|
|
|
|
|
|
mMode = Mode;
|
|
|
|
|
|
|
|
//
|
2009-03-02 01:58:29 +01:00
|
|
|
// Write new legacy mode mask/trigger level
|
2008-04-18 06:13:47 +02:00
|
|
|
//
|
|
|
|
Interrupt8259SetVectorBase (This, LEGACY_MODE_BASE_VECTOR_MASTER, LEGACY_MODE_BASE_VECTOR_SLAVE);
|
|
|
|
|
|
|
|
//
|
|
|
|
// Enable Interrupts
|
|
|
|
//
|
|
|
|
Interrupt8259WriteMask (mLegacyModeMask, mLegacyModeEdgeLevel);
|
|
|
|
|
|
|
|
return EFI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Mode == Efi8259ProtectedMode) {
|
|
|
|
//
|
2009-03-02 01:58:29 +01:00
|
|
|
// Save the legacy mode mask/trigger level
|
2008-04-18 06:13:47 +02:00
|
|
|
//
|
|
|
|
Interrupt8259ReadMask (&mLegacyModeMask, &mLegacyModeEdgeLevel);
|
|
|
|
//
|
|
|
|
// Always force Timer to be enabled after return from 16-bit code.
|
|
|
|
// This always insures that on next entry, timer is counting.
|
|
|
|
//
|
|
|
|
mLegacyModeMask &= 0xFFFE;
|
|
|
|
|
|
|
|
if (Mask != NULL) {
|
|
|
|
//
|
|
|
|
// Update the Mask for the new mode
|
|
|
|
//
|
|
|
|
mProtectedModeMask = *Mask;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (EdgeLevel != NULL) {
|
|
|
|
//
|
|
|
|
// Update the Edge/Level triggered mask for the new mode
|
|
|
|
//
|
|
|
|
mProtectedModeEdgeLevel = *EdgeLevel;
|
|
|
|
}
|
|
|
|
|
|
|
|
mMode = Mode;
|
|
|
|
|
|
|
|
//
|
2009-03-02 01:58:29 +01:00
|
|
|
// Write new protected mode mask/trigger level
|
2008-04-18 06:13:47 +02:00
|
|
|
//
|
|
|
|
Interrupt8259SetVectorBase (This, PROTECTED_MODE_BASE_VECTOR_MASTER, PROTECTED_MODE_BASE_VECTOR_SLAVE);
|
|
|
|
|
|
|
|
//
|
|
|
|
// Enable Interrupts
|
|
|
|
//
|
|
|
|
Interrupt8259WriteMask (mProtectedModeMask, mProtectedModeEdgeLevel);
|
|
|
|
|
|
|
|
return EFI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
return EFI_INVALID_PARAMETER;
|
|
|
|
}
|
|
|
|
|
2009-03-02 01:58:29 +01:00
|
|
|
/**
|
|
|
|
Translates the IRQ into a vector.
|
|
|
|
|
|
|
|
@param[in] This Indicates the EFI_LEGACY_8259_PROTOCOL instance.
|
|
|
|
@param[in] Irq IRQ0-IRQ15.
|
|
|
|
@param[out] Vector The vector that is assigned to the IRQ.
|
|
|
|
|
|
|
|
@retval EFI_SUCCESS The Vector that matches Irq was returned.
|
|
|
|
@retval EFI_INVALID_PARAMETER Irq is not valid.
|
|
|
|
|
|
|
|
**/
|
2008-04-18 06:13:47 +02:00
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
Interrupt8259GetVector (
|
|
|
|
IN EFI_LEGACY_8259_PROTOCOL *This,
|
|
|
|
IN EFI_8259_IRQ Irq,
|
|
|
|
OUT UINT8 *Vector
|
|
|
|
)
|
|
|
|
{
|
|
|
|
if (Irq < Efi8259Irq0 || Irq > Efi8259Irq15) {
|
|
|
|
return EFI_INVALID_PARAMETER;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Irq <= Efi8259Irq7) {
|
|
|
|
*Vector = (UINT8) (mMasterBase + Irq);
|
|
|
|
} else {
|
|
|
|
*Vector = (UINT8) (mSlaveBase + (Irq - Efi8259Irq8));
|
|
|
|
}
|
|
|
|
|
|
|
|
return EFI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2009-03-02 01:58:29 +01:00
|
|
|
Enables the specified IRQ.
|
2008-04-18 06:13:47 +02:00
|
|
|
|
2009-03-02 01:58:29 +01:00
|
|
|
@param[in] This Indicates the EFI_LEGACY_8259_PROTOCOL instance.
|
|
|
|
@param[in] Irq IRQ0-IRQ15.
|
|
|
|
@param[in] LevelTriggered 0 = Edge triggered; 1 = Level triggered.
|
2008-04-18 06:13:47 +02:00
|
|
|
|
2009-03-02 01:58:29 +01:00
|
|
|
@retval EFI_SUCCESS The Irq was enabled on the 8259 PIC.
|
|
|
|
@retval EFI_INVALID_PARAMETER The Irq is not valid.
|
2008-04-18 06:13:47 +02:00
|
|
|
|
|
|
|
**/
|
2009-03-02 01:58:29 +01:00
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
Interrupt8259EnableIrq (
|
|
|
|
IN EFI_LEGACY_8259_PROTOCOL *This,
|
|
|
|
IN EFI_8259_IRQ Irq,
|
|
|
|
IN BOOLEAN LevelTriggered
|
|
|
|
)
|
2008-04-18 06:13:47 +02:00
|
|
|
{
|
|
|
|
if (Irq < Efi8259Irq0 || Irq > Efi8259Irq15) {
|
|
|
|
return EFI_INVALID_PARAMETER;
|
|
|
|
}
|
|
|
|
|
2008-12-04 07:21:53 +01:00
|
|
|
mProtectedModeMask = (UINT16) (mProtectedModeMask & ~(1 << Irq));
|
2008-04-18 06:13:47 +02:00
|
|
|
if (LevelTriggered) {
|
2008-12-04 07:21:53 +01:00
|
|
|
mProtectedModeEdgeLevel = (UINT16) (mProtectedModeEdgeLevel | (1 << Irq));
|
2008-04-18 06:13:47 +02:00
|
|
|
} else {
|
2008-12-04 07:21:53 +01:00
|
|
|
mProtectedModeEdgeLevel = (UINT16) (mProtectedModeEdgeLevel & ~(1 << Irq));
|
2008-04-18 06:13:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
Interrupt8259WriteMask (mProtectedModeMask, mProtectedModeEdgeLevel);
|
|
|
|
|
|
|
|
return EFI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2009-03-02 01:58:29 +01:00
|
|
|
Disables the specified IRQ.
|
2008-04-18 06:13:47 +02:00
|
|
|
|
2009-03-02 01:58:29 +01:00
|
|
|
@param[in] This Indicates the EFI_LEGACY_8259_PROTOCOL instance.
|
|
|
|
@param[in] Irq IRQ0-IRQ15.
|
2008-04-18 06:13:47 +02:00
|
|
|
|
2009-03-02 01:58:29 +01:00
|
|
|
@retval EFI_SUCCESS The Irq was disabled on the 8259 PIC.
|
|
|
|
@retval EFI_INVALID_PARAMETER The Irq is not valid.
|
2008-04-18 06:13:47 +02:00
|
|
|
|
|
|
|
**/
|
2009-03-02 01:58:29 +01:00
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
Interrupt8259DisableIrq (
|
|
|
|
IN EFI_LEGACY_8259_PROTOCOL *This,
|
|
|
|
IN EFI_8259_IRQ Irq
|
|
|
|
)
|
2008-04-18 06:13:47 +02:00
|
|
|
{
|
|
|
|
if (Irq < Efi8259Irq0 || Irq > Efi8259Irq15) {
|
|
|
|
return EFI_INVALID_PARAMETER;
|
|
|
|
}
|
|
|
|
|
2009-03-02 01:58:29 +01:00
|
|
|
mProtectedModeMask = (UINT16) (mProtectedModeMask | (1 << Irq));
|
|
|
|
|
2008-12-04 07:21:53 +01:00
|
|
|
mProtectedModeEdgeLevel = (UINT16) (mProtectedModeEdgeLevel & ~(1 << Irq));
|
2008-04-18 06:13:47 +02:00
|
|
|
|
|
|
|
Interrupt8259WriteMask (mProtectedModeMask, mProtectedModeEdgeLevel);
|
|
|
|
|
|
|
|
return EFI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2009-03-02 01:58:29 +01:00
|
|
|
/**
|
|
|
|
Reads the PCI configuration space to get the interrupt number that is assigned to the card.
|
|
|
|
|
|
|
|
@param[in] This Indicates the EFI_LEGACY_8259_PROTOCOL instance.
|
|
|
|
@param[in] PciHandle PCI function for which to return the vector.
|
|
|
|
@param[out] Vector IRQ number that corresponds to the interrupt line.
|
|
|
|
|
|
|
|
@retval EFI_SUCCESS The interrupt line value was read successfully.
|
|
|
|
|
|
|
|
**/
|
2008-04-18 06:13:47 +02:00
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
Interrupt8259GetInterruptLine (
|
|
|
|
IN EFI_LEGACY_8259_PROTOCOL *This,
|
|
|
|
IN EFI_HANDLE PciHandle,
|
|
|
|
OUT UINT8 *Vector
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return EFI_UNSUPPORTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2009-03-02 01:58:29 +01:00
|
|
|
Issues the End of Interrupt (EOI) commands to PICs.
|
2008-04-18 06:13:47 +02:00
|
|
|
|
2009-03-02 01:58:29 +01:00
|
|
|
@param[in] This Indicates the EFI_LEGACY_8259_PROTOCOL instance.
|
|
|
|
@param[in] Irq The interrupt for which to issue the EOI command.
|
2008-04-18 06:13:47 +02:00
|
|
|
|
2009-03-02 01:58:29 +01:00
|
|
|
@retval EFI_SUCCESS The EOI command was issued.
|
|
|
|
@retval EFI_INVALID_PARAMETER The Irq is not valid.
|
2008-04-18 06:13:47 +02:00
|
|
|
|
|
|
|
**/
|
2009-03-02 01:58:29 +01:00
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
Interrupt8259EndOfInterrupt (
|
|
|
|
IN EFI_LEGACY_8259_PROTOCOL *This,
|
|
|
|
IN EFI_8259_IRQ Irq
|
|
|
|
)
|
2008-04-18 06:13:47 +02:00
|
|
|
{
|
|
|
|
if (Irq < Efi8259Irq0 || Irq > Efi8259Irq15) {
|
|
|
|
return EFI_INVALID_PARAMETER;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Irq >= Efi8259Irq8) {
|
|
|
|
IoWrite8 (LEGACY_8259_CONTROL_REGISTER_SLAVE, LEGACY_8259_EOI);
|
|
|
|
}
|
|
|
|
|
|
|
|
IoWrite8 (LEGACY_8259_CONTROL_REGISTER_MASTER, LEGACY_8259_EOI);
|
|
|
|
|
|
|
|
return EFI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2009-03-02 01:58:29 +01:00
|
|
|
/**
|
|
|
|
Driver Entry point.
|
|
|
|
|
|
|
|
@param[in] ImageHandle ImageHandle of the loaded driver.
|
|
|
|
@param[in] SystemTable Pointer to the EFI System Table.
|
|
|
|
|
|
|
|
@retval EFI_SUCCESS One or more of the drivers returned a success code.
|
|
|
|
@retval !EFI_SUCCESS Error installing Legacy 8259 Protocol.
|
|
|
|
|
|
|
|
**/
|
2008-04-18 06:13:47 +02:00
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
Install8259 (
|
|
|
|
IN EFI_HANDLE ImageHandle,
|
|
|
|
IN EFI_SYSTEM_TABLE *SystemTable
|
|
|
|
)
|
|
|
|
{
|
|
|
|
EFI_STATUS Status;
|
|
|
|
EFI_8259_IRQ Irq;
|
|
|
|
|
|
|
|
//
|
|
|
|
// Clear all pending interrupt
|
|
|
|
//
|
|
|
|
for (Irq = Efi8259Irq0; Irq <= Efi8259Irq15; Irq++) {
|
|
|
|
Interrupt8259EndOfInterrupt (&m8259, Irq);
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Set the 8259 Master base to 0x68 and the 8259 Slave base to 0x70
|
|
|
|
//
|
|
|
|
Status = Interrupt8259SetVectorBase (&m8259, PROTECTED_MODE_BASE_VECTOR_MASTER, PROTECTED_MODE_BASE_VECTOR_SLAVE);
|
|
|
|
|
|
|
|
//
|
|
|
|
// Set all 8259 interrupts to edge triggered and disabled
|
|
|
|
//
|
|
|
|
Interrupt8259WriteMask (mProtectedModeMask, mProtectedModeEdgeLevel);
|
|
|
|
|
|
|
|
//
|
|
|
|
// Install 8259 Protocol onto a new handle
|
|
|
|
//
|
|
|
|
Status = gBS->InstallProtocolInterface (
|
|
|
|
&m8259Handle,
|
|
|
|
&gEfiLegacy8259ProtocolGuid,
|
|
|
|
EFI_NATIVE_INTERFACE,
|
|
|
|
&m8259
|
|
|
|
);
|
|
|
|
return Status;
|
|
|
|
}
|
|
|
|
|