📄 plxchipapi.c
字号:
/*******************************************************************************
* Copyright (c) 2007 PLX Technology, Inc.
*
* PLX Technology Inc. licenses this software under specific terms and
* conditions. Use of any of the software or derviatives thereof in any
* product without a PLX Technology chip is strictly prohibited.
*
* PLX Technology, Inc. provides this software AS IS, WITHOUT ANY WARRANTY,
* EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, ANY WARRANTY OF
* MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. PLX makes no guarantee
* or representations regarding the use of, or the results of the use of,
* the software and documentation in terms of correctness, accuracy,
* reliability, currentness, or otherwise; and you rely on the software,
* documentation and results solely at your own risk.
*
* IN NO EVENT SHALL PLX BE LIABLE FOR ANY LOSS OF USE, LOSS OF BUSINESS,
* LOSS OF PROFITS, INDIRECT, INCIDENTAL, SPECIAL OR CONSEQUENTIAL DAMAGES
* OF ANY KIND. IN NO EVENT SHALL PLX'S TOTAL LIABILITY EXCEED THE SUM
* PAID TO PLX FOR THE PRODUCT LICENSED HEREUNDER.
*
******************************************************************************/
/******************************************************************************
*
* File Name:
*
* PlxChipApi.c
*
* Description:
*
* Implements chip-specific API functions
*
* Revision History:
*
* 06-01-07 : PLX SDK v5.10
*
******************************************************************************/
#include "ApiFunctions.h"
#include "Eep_9000.h"
#include "PciSupport.h"
#include "PlxChipApi.h"
#include "SupportFunc.h"
/******************************************************************************
*
* Function : PlxChip_BoardReset
*
* Description: Resets a device using software reset feature of PLX chip
*
******************************************************************************/
RETURN_CODE
PlxChip_BoardReset(
DEVICE_EXTENSION *pdx
)
{
U8 MU_Enabled;
U8 EepromPresent;
U32 RegValue;
U32 RegInterrupt;
U32 RegHotSwap;
U32 RegPowerMgmnt;
// Clear any PCI errors
PLX_PCI_REG_READ(
pdx,
CFG_COMMAND,
&RegValue
);
if (RegValue & (0xf8 << 24))
{
// Write value back to clear aborts
PLX_PCI_REG_WRITE(
pdx,
CFG_COMMAND,
RegValue
);
}
// Save state of I2O Decode Enable
RegValue =
PLX_9000_REG_READ(
pdx,
PCI9054_FIFO_CTRL_STAT
);
MU_Enabled = (U8)(RegValue & (1 << 0));
// Determine if an EEPROM is present
RegValue =
PLX_9000_REG_READ(
pdx,
PCI9054_EEPROM_CTRL_STAT
);
// Make sure S/W Reset & EEPROM reload bits are clear
RegValue &= ~((1 << 30) | (1 << 29));
// Remember if EEPROM is present
EepromPresent = (U8)((RegValue >> 28) & (1 << 0));
// Save interrupt line
PLX_PCI_REG_READ(
pdx,
CFG_INT_LINE,
&RegInterrupt
);
// Save some registers if EEPROM present
if (EepromPresent)
{
PLX_PCI_REG_READ(
pdx,
PCI9054_HS_CAP_ID,
&RegHotSwap
);
PLX_PCI_REG_READ(
pdx,
PCI9054_PM_CSR,
&RegPowerMgmnt
);
}
// Issue Software Reset to hold PLX chip in reset
PLX_9000_REG_WRITE(
pdx,
PCI9054_EEPROM_CTRL_STAT,
RegValue | (1 << 30)
);
// Delay for a bit
Plx_sleep(100);
// Bring chip out of reset
PLX_9000_REG_WRITE(
pdx,
PCI9054_EEPROM_CTRL_STAT,
RegValue
);
// Issue EEPROM reload in case now programmed
PLX_9000_REG_WRITE(
pdx,
PCI9054_EEPROM_CTRL_STAT,
RegValue | (1 << 29)
);
// Delay for a bit
Plx_sleep(10);
// Clear EEPROM reload
PLX_9000_REG_WRITE(
pdx,
PCI9054_EEPROM_CTRL_STAT,
RegValue
);
// Restore I2O Decode Enable state
if (MU_Enabled)
{
// Save state of I2O Decode Enable
RegValue =
PLX_9000_REG_READ(
pdx,
PCI9054_FIFO_CTRL_STAT
);
PLX_9000_REG_WRITE(
pdx,
PCI9054_FIFO_CTRL_STAT,
RegValue | (1 << 0)
);
}
// Restore interrupt line
PLX_PCI_REG_WRITE(
pdx,
CFG_INT_LINE,
RegInterrupt
);
// If EEPROM was present, restore registers
if (EepromPresent)
{
// Mask out HS bits that can be cleared
RegHotSwap &= ~((1 << 23) | (1 << 22) | (1 << 17));
PLX_PCI_REG_WRITE(
pdx,
PCI9054_HS_CAP_ID,
RegHotSwap
);
// Mask out PM bits that can be cleared
RegPowerMgmnt &= ~(1 << 15);
PLX_PCI_REG_READ(
pdx,
PCI9054_PM_CSR,
&RegPowerMgmnt
);
}
return ApiSuccess;
}
/******************************************************************************
*
* Function : PlxChip_InterruptEnable
*
* Description: Enables specific interupts of the PLX Chip
*
******************************************************************************/
RETURN_CODE
PlxChip_InterruptEnable(
DEVICE_EXTENSION *pdx,
PLX_INTERRUPT *pPlxIntr
)
{
U32 QueueCsr;
U32 QueueCsr_Original;
U32 RegValue;
PLX_REG_DATA RegData;
// Setup to synchronize access to Interrupt Control/Status Register
RegData.pdx = pdx;
RegData.offset = PCI9054_INT_CTRL_STAT;
RegData.BitsToSet = 0;
RegData.BitsToClear = 0;
if (pPlxIntr->PciMain)
RegData.BitsToSet |= (1 << 8);
if (pPlxIntr->PciAbort)
RegData.BitsToSet |= (1 << 10);
if (pPlxIntr->TargetRetryAbort)
RegData.BitsToSet |= (1 << 12);
if (pPlxIntr->LocalToPci_1)
RegData.BitsToSet |= (1 << 11);
if (pPlxIntr->Doorbell)
RegData.BitsToSet |= (1 << 9);
if (pPlxIntr->PowerManagement)
RegData.BitsToSet |= (1 << 4);
if (pPlxIntr->DmaChannel_0)
{
RegData.BitsToSet |= (1 << 18);
// Make sure DMA done interrupt is enabled & routed to PCI
RegValue =
PLX_9000_REG_READ(
pdx,
PCI9054_DMA0_MODE
);
PLX_9000_REG_WRITE(
pdx,
PCI9054_DMA0_MODE,
RegValue | (1 << 17) | (1 << 10)
);
}
if (pPlxIntr->DmaChannel_1)
{
RegData.BitsToSet |= (1 << 19);
// Make sure DMA done interrupt is enabled & routed to PCI
RegValue =
PLX_9000_REG_READ(
pdx,
PCI9054_DMA1_MODE
);
PLX_9000_REG_WRITE(
pdx,
PCI9054_DMA1_MODE,
RegValue | (1 << 17) | (1 << 10)
);
}
// Inbound Post Queue Interrupt Control/Status Register
QueueCsr_Original =
PLX_9000_REG_READ(
pdx,
PCI9054_FIFO_CTRL_STAT
);
QueueCsr = QueueCsr_Original;
if (pPlxIntr->MuOutboundPost)
{
PLX_9000_REG_WRITE(
pdx,
PCI9054_OUTPOST_INT_MASK,
0
);
}
if (pPlxIntr->MuInboundPost)
QueueCsr &= ~(1 << 4);
if (pPlxIntr->MuOutboundOverflow)
{
RegData.BitsToSet |= (1 << 1);
QueueCsr &= ~(1 << 6);
}
// Write register values if they have changed
if (RegData.BitsToSet != 0)
{
// Synchronize write of Interrupt Control/Status Register
KeSynchronizeExecution(
pdx->pInterruptObject,
PlxSynchronizedRegisterModify,
&RegData
);
}
if (QueueCsr != QueueCsr_Original)
{
PLX_9000_REG_WRITE(
pdx,
PCI9054_FIFO_CTRL_STAT,
QueueCsr
);
}
return ApiSuccess;
}
/******************************************************************************
*
* Function : PlxChip_InterruptDisable
*
* Description: Disables specific interrupts of the PLX Chip
*
******************************************************************************/
RETURN_CODE
PlxChip_InterruptDisable(
DEVICE_EXTENSION *pdx,
PLX_INTERRUPT *pPlxIntr
)
{
U32 QueueCsr;
U32 QueueCsr_Original;
U32 RegValue;
PLX_REG_DATA RegData;
// Setup to synchronize access to Interrupt Control/Status Register
RegData.pdx = pdx;
RegData.offset = PCI9054_INT_CTRL_STAT;
RegData.BitsToSet = 0;
RegData.BitsToClear = 0;
if (pPlxIntr->PciMain)
RegData.BitsToClear |= (1 << 8);
if (pPlxIntr->PciAbort)
RegData.BitsToClear |= (1 << 10);
if (pPlxIntr->TargetRetryAbort)
RegData.BitsToClear |= (1 << 12);
if (pPlxIntr->LocalToPci_1)
RegData.BitsToClear |= (1 << 11);
if (pPlxIntr->Doorbell)
RegData.BitsToClear |= (1 << 9);
if (pPlxIntr->PowerManagement)
RegData.BitsToClear |= (1 << 4);
if (pPlxIntr->DmaChannel_0)
{
// Check if DMA interrupt is routed to PCI
RegValue =
PLX_9000_REG_READ(
pdx,
PCI9054_DMA0_MODE
);
if (RegValue & (1 << 17))
{
RegData.BitsToClear |= (1 << 18);
// Disable DMA interrupt enable
PLX_9000_REG_WRITE(
pdx,
PCI9054_DMA0_MODE,
RegValue & ~(1 << 10)
);
}
}
if (pPlxIntr->DmaChannel_1)
{
// Check if DMA interrupt is routed to PCI
RegValue =
PLX_9000_REG_READ(
pdx,
PCI9054_DMA1_MODE
);
if (RegValue & (1 << 17))
{
RegData.BitsToClear |= (1 << 19);
// Disable DMA interrupt enable
PLX_9000_REG_WRITE(
pdx,
PCI9054_DMA1_MODE,
RegValue & ~(1 << 10)
);
}
}
// Inbound Post Queue Interrupt Control/Status Register
QueueCsr_Original =
PLX_9000_REG_READ(
pdx,
PCI9054_FIFO_CTRL_STAT
);
QueueCsr = QueueCsr_Original;
if (pPlxIntr->MuOutboundPost)
{
PLX_9000_REG_WRITE(
pdx,
PCI9054_OUTPOST_INT_MASK,
(1 << 3)
);
}
if (pPlxIntr->MuInboundPost)
QueueCsr |= (1 << 4);
if (pPlxIntr->MuOutboundOverflow)
QueueCsr |= (1 << 6);
// Write register values if they have changed
if (RegData.BitsToClear != 0)
{
// Synchronize write of Interrupt Control/Status Register
KeSynchronizeExecution(
pdx->pInterruptObject,
PlxSynchronizedRegisterModify,
&RegData
);
}
if (QueueCsr != QueueCsr_Original)
{
PLX_9000_REG_WRITE(
pdx,
PCI9054_FIFO_CTRL_STAT,
QueueCsr
);
}
return ApiSuccess;
}
/******************************************************************************
*
* Function : PlxChip_EepromReadByOffset
*
* Description: Read a 32-bit value from the EEPROM at a specified offset
*
******************************************************************************/
RETURN_CODE
PlxChip_EepromReadByOffset(
DEVICE_EXTENSION *pdx,
U16 offset,
U32 *pValue
)
{
U32 RegValue;
BOOLEAN bUseVpd;
RETURN_CODE rc;
// Verify the offset
if ((offset & 0x3) || (offset > 0x200))
{
DebugPrintf(("ERROR - Invalid EEPROM offset\n"));
return ApiInvalidOffset;
}
/****************************************************************
* Note: In the 9054, the EEPROM can be accessed either
* through the VPD or by the EEPROM control register.
*
* However, the EEPROM control register does not work
* in the 9054 AA version and VPD access often fails.
* The 9054 AB version fixes the EEPROM control register
* access, but VPD may still fail.
*
* As a result, PLX software does the following:
*
* if (AB or newer chip)
* Use EEPROM Control Register
* else
* Use VPD access
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -