P2020 PCIe Model
This section describes the P2020 PCIe controller model.
The PCI Express controller can function as either a root complex (RC) or an endpoint (EP) on the PCI Express link.
The PCI Express interface supports the following register types:
-
Memory-mapped registers-these registers control PCI Express address translation, PCI error management, PCI Express configuration register access.
-
PCI Express configuration registers contained within the PCI Express configuration space-these registers are specified by the PCI Express specification for every PCIExpress device.
PCIe Bus contains information about connected to it EP-devices and PCIe bridge (RC device). There are two configuration header types applicable to PCI Express. Type 0 headers are typically used by endpoints, Type 1 headers are used by root complexes and switches/bridges.
Configuration
Every RC or EP device should be connected to a bus PCIe devices array via PCIDevIface interface, buses should be connected via PCIeBusIface to PCIe model. All buses (exept the main upstream bus0) should have a pcie bridge as a parent device. Each PCIe device, including bridges, should point to the primary bus it is connected to, bridges should also point to the secondary bus immediately downstream of the bridge.
// connect devices to buses
temu_connect(upstreamBus, "pcieDevices", pciebridge, "PCIDevIface");
temu_connect(downstreamBus, "pcieDevices", pciedev, "PCIDevIface");
// connect buses to the pcie model
temu_connect(pcie, "pcieBuses", upstreamBus, "PCIeBusIface");
temu_connect(pcie, "pcieBuses", downstreamBus, "PCIeBusIface");
// add upstream bridge to the bus model
temu_writeValue(downstreamBus, "parentBridge", temu_makePropObj(pciebridge), 0);
// set primary & secondary buses for devices
temu_writeValue(pciedev, "primaryBus", temu_makePropObj(downstreamBus), 0);
temu_writeValue(pciebridge, "primaryBus", temu_makePropObj(upstreamBus), 0);
temu_writeValue(pciebridge, "secondaryBus", temu_makePropObj(downstreamBus), 0);
# connect devices to buses
connect a=upstreamBus.pcieDevices b=pciebridge:PCIDevIface
connect a=downstreamBus.pcieDevices b=pciedev:PCIDevIface
# connect buses to the pcie model
connect a=pcie.pcieBuses b=upstreamBus:PCIeBusIface
connect a=pcie.pcieBuses b=downstreamBus:PCIeBusIface
# add upstream bridge to the bus model
downbus.parentBridge = pciebridge
# set primary & secondary buses for devices
pciedev.primaryBus = downstreamBus
pciebridge.primaryBus = upstreamBus
pciebridge.secondaryBus = downstreamBus
The PCIe programmable registers that occupy memory-mapped space are named according to P2020 QorIQ integrated processor reference manual. All the PCIe registers are 4-byte wide.
// Write Status & Command Register register from Configuration Space (device 0, bus 0, offset = 4) via CONFIG_ADDR/CONFIG_DATA registers
temu_writeValueU32(pcie, "PEX_CONFIG_ADDR", 0x80000004, 0);
temu_writeValueU32(pcie, "PEX_CONFIG_DATA", 0x02000000, 0);
// Value = 0x00000002 will be written to pcieConfigStatusCommand of the device0
# Write Status & Command Register register from Configuration Space (device 0, bus 0, offset = 4) via CONFIG_ADDR/CONFIG_DATA registers
pcie.PEX_CONFIG_ADDR = 0x80000004
pcie.PEX_CONFIG_DATA = 0x02000000
# Value = 0x00000002 will be written to pcieConfigStatusCommand of the device0
@PCIe Reference
Properties
| Name | Type | Description |
|---|---|---|
Class |
*void |
Class object |
Component |
*void |
Pointer to component object if part of component |
LocalName |
*char |
Local name (in component, if applicable) |
LogMessageFlags |
uint64_t |
Per-object log message suppression flags |
LoggingFlags |
uint64_t |
Flags for logging info |
Name |
*char |
Object name |
ObjectID |
uint64_t |
Unique ObjectID. |
ReplayLoggingFlags |
uint64_t |
Replay-time category logging flags |
TimeSource |
*void |
Time source object |
PCIe Reference
Properties
| Name | Type | Description |
|---|---|---|
Class |
*void |
Class object |
Component |
*void |
Pointer to component object if part of component |
LocalName |
*char |
Local name (in component, if applicable) |
LogMessageFlags |
uint64_t |
Per-object log message suppression flags |
LoggingFlags |
uint64_t |
Flags for logging info |
Name |
*char |
Object name |
ObjectID |
uint64_t |
Unique ObjectID. |
PEXITAR |
[uint32_t; 3] |
PCI Express inbound translation address register |
PEXIWAR |
[uint32_t; 3] |
PCI Express inbound window attributes register |
PEXIWBAR |
[uint32_t; 3] |
PCI Express inbound window base address register |
PEXIWBEAR |
[uint32_t; 3] |
PCI Express inbound window base extended address register |
PEXOTAR |
[uint32_t; 5] |
PCI Express outbound translation address register |
PEXOTEAR |
[uint32_t; 5] |
PCI Express outbound translation extended address register |
PEXOWAR |
[uint32_t; 5] |
PCI Express outbound window attributes register |
PEXOWBAR |
[uint32_t; 5] |
PCI Express outbound window base address register |
PEX_CONFIG |
uint32_t |
PCI Express configuration register |
PEX_CONFIGColdResetValue |
uint32_t |
PCI Express configuration register |
PEX_CONFIGForcedBits |
uint32_t |
PCI Express configuration register |
PEX_CONFIGForcedFlippedBits |
uint32_t |
PCI Express configuration register |
PEX_CONFIGReadMask |
uint32_t |
PCI Express configuration register |
PEX_CONFIGResetMask |
uint32_t |
PCI Express configuration register |
PEX_CONFIGResetValue |
uint32_t |
PCI Express configuration register |
PEX_CONFIGWriteMask |
uint32_t |
PCI Express configuration register |
PEX_CONFIG_ADDR |
uint32_t |
PCI Express configuration address register |
PEX_CONFIG_ADDRColdResetValue |
uint32_t |
PCI Express configuration address register |
PEX_CONFIG_ADDRForcedBits |
uint32_t |
PCI Express configuration address register |
PEX_CONFIG_ADDRForcedFlippedBits |
uint32_t |
PCI Express configuration address register |
PEX_CONFIG_ADDRReadMask |
uint32_t |
PCI Express configuration address register |
PEX_CONFIG_ADDRResetMask |
uint32_t |
PCI Express configuration address register |
PEX_CONFIG_ADDRResetValue |
uint32_t |
PCI Express configuration address register |
PEX_CONFIG_ADDRWriteMask |
uint32_t |
PCI Express configuration address register |
PEX_CONFIG_DATA |
uint32_t |
PCI Express configuration data register |
PEX_CONFIG_DATAColdResetValue |
uint32_t |
PCI Express configuration data register |
PEX_CONFIG_DATAForcedBits |
uint32_t |
PCI Express configuration data register |
PEX_CONFIG_DATAForcedFlippedBits |
uint32_t |
PCI Express configuration data register |
PEX_CONFIG_DATAReadMask |
uint32_t |
PCI Express configuration data register |
PEX_CONFIG_DATAResetMask |
uint32_t |
PCI Express configuration data register |
PEX_CONFIG_DATAResetValue |
uint32_t |
PCI Express configuration data register |
PEX_CONFIG_DATAWriteMask |
uint32_t |
PCI Express configuration data register |
PEX_CONF_RTY_TOR |
uint32_t |
PCI Express configuration retry timeout register |
PEX_CONF_RTY_TORColdResetValue |
uint32_t |
PCI Express configuration retry timeout register |
PEX_CONF_RTY_TORForcedBits |
uint32_t |
PCI Express configuration retry timeout register |
PEX_CONF_RTY_TORForcedFlippedBits |
uint32_t |
PCI Express configuration retry timeout register |
PEX_CONF_RTY_TORReadMask |
uint32_t |
PCI Express configuration retry timeout register |
PEX_CONF_RTY_TORResetMask |
uint32_t |
PCI Express configuration retry timeout register |
PEX_CONF_RTY_TORResetValue |
uint32_t |
PCI Express configuration retry timeout register |
PEX_CONF_RTY_TORWriteMask |
uint32_t |
PCI Express configuration retry timeout register |
PEX_ERR_CAP |
[uint32_t; 4] |
PCI Express error capture register |
PEX_ERR_CAP_STAT |
uint32_t |
PCI Express error capture status register |
PEX_ERR_CAP_STATColdResetValue |
uint32_t |
PCI Express error capture status register |
PEX_ERR_CAP_STATForcedBits |
uint32_t |
PCI Express error capture status register |
PEX_ERR_CAP_STATForcedFlippedBits |
uint32_t |
PCI Express error capture status register |
PEX_ERR_CAP_STATReadMask |
uint32_t |
PCI Express error capture status register |
PEX_ERR_CAP_STATResetMask |
uint32_t |
PCI Express error capture status register |
PEX_ERR_CAP_STATResetValue |
uint32_t |
PCI Express error capture status register |
PEX_ERR_CAP_STATWriteMask |
uint32_t |
PCI Express error capture status register |
PEX_ERR_DISR |
uint32_t |
PCI Express error disable register |
PEX_ERR_DISRColdResetValue |
uint32_t |
PCI Express error disable register |
PEX_ERR_DISRForcedBits |
uint32_t |
PCI Express error disable register |
PEX_ERR_DISRForcedFlippedBits |
uint32_t |
PCI Express error disable register |
PEX_ERR_DISRReadMask |
uint32_t |
PCI Express error disable register |
PEX_ERR_DISRResetMask |
uint32_t |
PCI Express error disable register |
PEX_ERR_DISRResetValue |
uint32_t |
PCI Express error disable register |
PEX_ERR_DISRWriteMask |
uint32_t |
PCI Express error disable register |
PEX_ERR_DR |
uint32_t |
PCI Express error detect register |
PEX_ERR_DRColdResetValue |
uint32_t |
PCI Express error detect register |
PEX_ERR_DRForcedBits |
uint32_t |
PCI Express error detect register |
PEX_ERR_DRForcedFlippedBits |
uint32_t |
PCI Express error detect register |
PEX_ERR_DRReadMask |
uint32_t |
PCI Express error detect register |
PEX_ERR_DRResetMask |
uint32_t |
PCI Express error detect register |
PEX_ERR_DRResetValue |
uint32_t |
PCI Express error detect register |
PEX_ERR_DRWriteMask |
uint32_t |
PCI Express error detect register |
PEX_ERR_EN |
uint32_t |
PCI Express error interrupt enable register |
PEX_ERR_ENColdResetValue |
uint32_t |
PCI Express error interrupt enable register |
PEX_ERR_ENForcedBits |
uint32_t |
PCI Express error interrupt enable register |
PEX_ERR_ENForcedFlippedBits |
uint32_t |
PCI Express error interrupt enable register |
PEX_ERR_ENReadMask |
uint32_t |
PCI Express error interrupt enable register |
PEX_ERR_ENResetMask |
uint32_t |
PCI Express error interrupt enable register |
PEX_ERR_ENResetValue |
uint32_t |
PCI Express error interrupt enable register |
PEX_ERR_ENWriteMask |
uint32_t |
PCI Express error interrupt enable register |
PEX_IP_BLK_REV |
[uint32_t; 2] |
IP block revision register 1 |
PEX_OTB_CPL_TOR |
uint32_t |
PCI Express outbound completion timeout register |
PEX_OTB_CPL_TORColdResetValue |
uint32_t |
PCI Express outbound completion timeout register |
PEX_OTB_CPL_TORForcedBits |
uint32_t |
PCI Express outbound completion timeout register |
PEX_OTB_CPL_TORForcedFlippedBits |
uint32_t |
PCI Express outbound completion timeout register |
PEX_OTB_CPL_TORReadMask |
uint32_t |
PCI Express outbound completion timeout register |
PEX_OTB_CPL_TORResetMask |
uint32_t |
PCI Express outbound completion timeout register |
PEX_OTB_CPL_TORResetValue |
uint32_t |
PCI Express outbound completion timeout register |
PEX_OTB_CPL_TORWriteMask |
uint32_t |
PCI Express outbound completion timeout register |
PEX_PMCR |
uint32_t |
PCI Express power management command register |
PEX_PMCRColdResetValue |
uint32_t |
PCI Express power management command register |
PEX_PMCRForcedBits |
uint32_t |
PCI Express power management command register |
PEX_PMCRForcedFlippedBits |
uint32_t |
PCI Express power management command register |
PEX_PMCRReadMask |
uint32_t |
PCI Express power management command register |
PEX_PMCRResetMask |
uint32_t |
PCI Express power management command register |
PEX_PMCRResetValue |
uint32_t |
PCI Express power management command register |
PEX_PMCRWriteMask |
uint32_t |
PCI Express power management command register |
PEX_PME_MES_DISR |
uint32_t |
PCI Express PME and message disable register |
PEX_PME_MES_DISRColdResetValue |
uint32_t |
PCI Express PME and message disable register |
PEX_PME_MES_DISRForcedBits |
uint32_t |
PCI Express PME and message disable register |
PEX_PME_MES_DISRForcedFlippedBits |
uint32_t |
PCI Express PME and message disable register |
PEX_PME_MES_DISRReadMask |
uint32_t |
PCI Express PME and message disable register |
PEX_PME_MES_DISRResetMask |
uint32_t |
PCI Express PME and message disable register |
PEX_PME_MES_DISRResetValue |
uint32_t |
PCI Express PME and message disable register |
PEX_PME_MES_DISRWriteMask |
uint32_t |
PCI Express PME and message disable register |
PEX_PME_MES_DR |
uint32_t |
PCI Express PME and message detect register |
PEX_PME_MES_DRColdResetValue |
uint32_t |
PCI Express PME and message detect register |
PEX_PME_MES_DRForcedBits |
uint32_t |
PCI Express PME and message detect register |
PEX_PME_MES_DRForcedFlippedBits |
uint32_t |
PCI Express PME and message detect register |
PEX_PME_MES_DRReadMask |
uint32_t |
PCI Express PME and message detect register |
PEX_PME_MES_DRResetMask |
uint32_t |
PCI Express PME and message detect register |
PEX_PME_MES_DRResetValue |
uint32_t |
PCI Express PME and message detect register |
PEX_PME_MES_DRWriteMask |
uint32_t |
PCI Express PME and message detect register |
PEX_PME_MES_IER |
uint32_t |
PCI Express PME and message interrupt enable register |
PEX_PME_MES_IERColdResetValue |
uint32_t |
PCI Express PME and message interrupt enable register |
PEX_PME_MES_IERForcedBits |
uint32_t |
PCI Express PME and message interrupt enable register |
PEX_PME_MES_IERForcedFlippedBits |
uint32_t |
PCI Express PME and message interrupt enable register |
PEX_PME_MES_IERReadMask |
uint32_t |
PCI Express PME and message interrupt enable register |
PEX_PME_MES_IERResetMask |
uint32_t |
PCI Express PME and message interrupt enable register |
PEX_PME_MES_IERResetValue |
uint32_t |
PCI Express PME and message interrupt enable register |
PEX_PME_MES_IERWriteMask |
uint32_t |
PCI Express PME and message interrupt enable register |
ReplayLoggingFlags |
uint64_t |
Replay-time category logging flags |
TimeSource |
*void |
Time source object |
config.externalInterrupt |
uint8_t |
External interrupt (used as base by legacy PCI interrupts) |
config.internalInterrupt |
uint8_t |
Internal interrupt |
configSpace |
[uint32_t; 1024] |
Raw configuration space access |
deviceIOAccess |
temu_IfaceRef/ <unknown> |
Access to the pcie’s io space from inbound windows |
deviceMemAccess |
temu_IfaceRef/ <unknown> |
Access to the pcie’s memory space from inbound windows |
extIrqCtrl |
temu_IfaceRef/ <unknown> |
Interrupt controller (external interface) |
ioMem |
temu_IfaceRef/ <unknown> |
PCIe i/o space object |
irqCtrl |
temu_IfaceRef/ <unknown> |
Interrupt controller (internal interface) |
isEPMode |
uint8_t |
|
pciBridge |
*void |
PCIe rc bridge |
pciMem |
temu_IfaceRef/ <unknown> |
PCIe memory space object |
pcieBuses |
temu_IfaceRefArray |
PCI busses |
processorMem |
temu_IfaceRef/ <unknown> |
Access to the processor’s memory space from inbound windows |
Interfaces
| Name | Type | Description |
|---|---|---|
DeviceIface |
DeviceIface |
Device Interface |
InboundAccessIface |
MemAccessIface |
PCIe inbound access interfaceinterface. |
IrqIface |
IrqCtrlIface |
PCI IRQ interface |
MemAccessIface |
MemAccessIface |
Memory access interface (registers) |
OutboundMemAccessIface |
MemAccessIface |
PCIe outbound memory access interface. |
PCIDevIface |
temu::PCIDeviceIface |
PCIe device interface |
PCIExpressBridgeIface |
temu::PCIExpressBridgeIface |
PCIe bridge interface. |
RegisterIface |
temu::RegisterIface |
Auto-generated Register Interface Impl. |
ResetIface |
ResetIface |
Reset Interface |
WindowsAccessIface |
MemAccessIface |
PCIe windows and configuration access interface. |
Registers
| Register support is currently experimental! |
Register Bank Regs
Register PEX_CONFIG_ADDR
- Description
-
PCI Express configuration address register
- Reset value
-
0x00000000
- Warm reset mask
-
0x8ffffffc
| Field | Mask | Reset | Description |
|---|---|---|---|
EN |
|
|
Enable PCI Express configuration access |
EXTREGN |
|
|
Extended register number |
BUSN |
|
|
Bus number |
DEVN |
|
|
Device number |
FUNCN |
|
|
Function number |
REGN |
|
|
Register number |
Register PEX_CONFIG_DATA
- Description
-
PCI Express configuration data register
- Reset value
-
0x00000000
- Warm reset mask
-
0xffffffff
| Field | Mask | Reset | Description |
|---|---|---|---|
Data |
|
|
Configuration access data |
Register PEX_OTB_CPL_TOR
- Description
-
PCI Express outbound completion timeout register
- Reset value
-
0x0010ffff
- Warm reset mask
-
0x80ffffff
| Field | Mask | Reset | Description |
|---|---|---|---|
TD |
|
|
Completion timeout disable |
TC |
|
|
Completion timeout counter |
Register PEX_CONF_RTY_TOR
- Description
-
PCI Express configuration retry timeout register
- Reset value
-
0x0400ffff
- Warm reset mask
-
0x8fffffff
| Field | Mask | Reset | Description |
|---|---|---|---|
RD |
|
|
Configuration retry disable |
TC |
|
|
Configuration retry timeout counter |
Register PEX_CONFIG
- Description
-
PCI Express configuration register
- Reset value
-
0x00000000
- Warm reset mask
-
0x00000013
| Field | Mask | Reset | Description |
|---|---|---|---|
SAC |
|
|
Sense ASPM control |
SP |
|
|
Slot present |
SCC |
|
|
Slot clock configuration |
Register PEX_PME_MES_DR
- Description
-
PCI Express PME and message detect register
- Reset value
-
0x00000000
- Warm reset mask
-
0x00000000
| Field | Mask | Reset | Description |
|---|---|---|---|
PTO |
|
|
PME_Turn_Off message detected |
ENL23 |
|
|
Entered L2/L3 ready state |
EXL23 |
|
|
Exited L2/L3 ready state |
HRD |
|
|
Hot reset detected |
LDD |
|
|
Link down detected |
AION |
|
|
Attention indicator on message detected |
AIB |
|
|
Attention indicator blink message detected |
AIOF |
|
|
Attention indicator off message detected |
PION |
|
|
Power indicator on message detected |
PIB |
|
|
Power indicator blink message detected |
PIOF |
|
|
Power indicator off message detected |
ABP |
|
|
Attention button pressed message detected |
Register PEX_PME_MES_DISR
- Description
-
PCI Express PME and message disable register
- Reset value
-
0x00000000
- Warm reset mask
-
0x0000b67f
| Field | Mask | Reset | Description |
|---|---|---|---|
PTOD |
|
|
PME_Turn_Off detection disable |
ENL23D |
|
|
Entered L2/L3 ready detection disable |
EXL23D |
|
|
Exited L2/L3 ready detection disable |
HRDD |
|
|
Hot reset detection disable |
LDDD |
|
|
Link down detection disable |
AIOND |
|
|
Attention indicator on detection disable |
AIBD |
|
|
Attention indicator blink detection disable |
AIOFD |
|
|
Attention indicator off detection disable |
PIOND |
|
|
Power indicator on detection disable |
PIBD |
|
|
Power indicator blink detection disable |
PIOFD |
|
|
Power indicator off detection disable |
ABPD |
|
|
Attention button pressed detection disable |
Register PEX_PME_MES_IER
- Description
-
PCI Express PME and message interrupt enable register
- Reset value
-
0x00000000
- Warm reset mask
-
0x0000b67f
| Field | Mask | Reset | Description |
|---|---|---|---|
PTOIE |
|
|
PME_Turn_Off interrupt enable |
ENL23IE |
|
|
Entered L2/L3 ready interrupt enable |
EXL23IE |
|
|
Exited L2/L3 ready interrupt enable |
HRDIE |
|
|
Hot reset detected interrupt enable |
LDDIE |
|
|
Link down detected interrupt enable |
AIONIE |
|
|
Attention indicator on interrupt enable |
AIBIE |
|
|
Attention indicator blink interrupt enable |
AIOFIE |
|
|
Attention indicator off interrupt enable |
PIONIE |
|
|
Power indicator on interrupt enable |
PIBIE |
|
|
Power indicator blink interrupt enable |
PIOFIE |
|
|
Power indicator off interrupt enable |
ABPIE |
|
|
Attention button pressed interrupt enable |
Register PEX_PMCR
- Description
-
PCI Express power management command register
- Reset value
-
0x00000000
- Warm reset mask
-
0x00000007
| Field | Mask | Reset | Description |
|---|---|---|---|
SPMES |
|
|
Set PME status |
EXL2S |
|
|
Exit L2 state |
PTOMR |
|
|
PME_Turn_Off message request |
Register PEX_ERR_DR
- Description
-
PCI Express error detect register
- Reset value
-
0x00000000
- Warm reset mask
-
0x00000000
| Field | Mask | Reset | Description |
|---|---|---|---|
ME |
|
|
Multiple errors |
PCT |
|
|
PCI Express completion timeout |
PCAC |
|
|
PCI Express completer abort completion |
PNM |
|
|
PCI Express no map |
CDNSC |
|
|
Completion with data not successful |
CRSNC |
|
|
CRS non-configuration completion |
ICCA |
|
|
Invalid PEX_CONFIG_ADDR/PEX_CONFIG_DATA access |
IACA |
|
|
Invalid ATMU configuration access |
CRST |
|
|
CRS thresholded |
MIS |
|
|
Message invalid size |
IOIS |
|
|
I/O invalid size |
CIS |
|
|
Configuration invalid size |
CIEP |
|
|
Configuration invalid EP |
IOIEP |
|
|
I/O invalid EP |
OAC |
|
|
Outbound ATMU crossing |
IOIA |
|
|
I/O invalid address |
Register PEX_ERR_EN
- Description
-
PCI Express error interrupt enable register
- Reset value
-
0x00000000
- Warm reset mask
-
0x00bfff00
| Field | Mask | Reset | Description |
|---|---|---|---|
PCTIE |
|
|
Completion timeout interrupt enable |
PCACIE |
|
|
Completer abort completion interrupt enable |
PNMIE |
|
|
No map interrupt enable |
CDNSCIE |
|
|
Completion with data not successful interrupt enable |
CRSNCIE |
|
|
CRS non-configuration interrupt enable |
ICCAIE |
|
|
Invalid PEX_CONFIG_ADDR/PEX_CONFIG_DATA interrupt enable |
IACAIE |
|
|
Invalid ATMU configuration access interrupt enable |
CRSTIE |
|
|
CRS threshold interrupt enable |
MISIE |
|
|
Message invalid size interrupt enable |
IOISIE |
|
|
I/O invalid size interrupt enable |
CISIE |
|
|
Configuration invalid size interrupt enable |
CIEPIE |
|
|
Configuration invalid EP interrupt enable |
IOIEPIE |
|
|
I/O invalid EP interrupt enable |
OACIE |
|
|
Outbound ATMU crossing interrupt enable |
IOIAIE |
|
|
I/O invalid address interrupt enable |
Register PEX_ERR_DISR
- Description
-
PCI Express error disable register
- Reset value
-
0x00000000
- Warm reset mask
-
0x80bfff00
| Field | Mask | Reset | Description |
|---|---|---|---|
MED |
|
|
Multiple errors detection disable |
PCTD |
|
|
Completion timeout detection disable |
PCACD |
|
|
Completer abort completion detection disable |
PNMD |
|
|
No map detection disable |
CDNSCD |
|
|
Completion with data not successful detection disable |
CRSNCD |
|
|
CRS non-configuration detection disable |
ICCAD |
|
|
Invalid PEX_CONFIG_ADDR/PEX_CONFIG_DATA detection disable |
IACAD |
|
|
Invalid ATMU configuration access detection disable |
CRSTD |
|
|
CRS threshold detection disable |
MISD |
|
|
Message invalid size detection disable |
IOISD |
|
|
I/O invalid size detection disable |
CISD |
|
|
Configuration invalid size detection disable |
CIEPD |
|
|
Configuration invalid EP detection disable |
IOIEPD |
|
|
I/O invalid EP detection disable |
OACD |
|
|
Outbound ATMU crossing detection disable |
IOIAD |
|
|
I/O invalid address detection disable |
Register PEX_ERR_CAP_STAT
- Description
-
PCI Express error capture status register
- Reset value
-
0x00000000
- Warm reset mask
-
0x0000007e
| Field | Mask | Reset | Description |
|---|---|---|---|
TO |
|
|
Transaction originated from PEX_CONFIG_ADDR/DATA |
GSID |
|
|
Global source ID |
ECV |
|
|
Error capture valid |
Register PEX_IP_BLK_REV
- Description
-
IP block revision register 1
- Reset value
-
0x02080101
- Warm reset mask
-
0xffffffff
| Field | Mask | Reset | Description |
|---|---|---|---|
IP_ID |
|
|
Block ID |
IP_MJ |
|
|
Block major revision |
IP_MN |
|
|
Block minor revision |
Register PEX_IP_BLK_REV
- Description
-
IP block revision register 2
- Reset value
-
0x00000000
- Warm reset mask
-
0x00ff00ff
| Field | Mask | Reset | Description |
|---|---|---|---|
IP_ID |
|
|
Block ID |
IP_MJ |
|
|
Block major revision |
Register PEXOTAR
- Description
-
PCI Express outbound translation address register
- Reset value
-
0x00000000
- Warm reset mask
-
0xffffffff
| Field | Mask | Reset | Description |
|---|---|---|---|
TEA |
|
|
Outbound translation extended address bits [43:32] |
TA |
|
|
Outbound translation address bits [31:12] |
Register PEXOTAR
- Description
-
PCI Express outbound translation address register
- Reset value
-
0x00000000
- Warm reset mask
-
0xffffffff
| Field | Mask | Reset | Description |
|---|---|---|---|
TEA |
|
|
Outbound translation extended address bits [43:32] |
TA |
|
|
Outbound translation address bits [31:12] |
Register PEXOTAR
- Description
-
PCI Express outbound translation address register
- Reset value
-
0x00000000
- Warm reset mask
-
0xffffffff
| Field | Mask | Reset | Description |
|---|---|---|---|
TEA |
|
|
Outbound translation extended address bits [43:32] |
TA |
|
|
Outbound translation address bits [31:12] |
Register PEXOTAR
- Description
-
PCI Express outbound translation address register
- Reset value
-
0x00000000
- Warm reset mask
-
0xffffffff
| Field | Mask | Reset | Description |
|---|---|---|---|
TEA |
|
|
Outbound translation extended address bits [43:32] |
TA |
|
|
Outbound translation address bits [31:12] |
Register PEXOTAR
- Description
-
PCI Express outbound translation address register
- Reset value
-
0x00000000
- Warm reset mask
-
0xffffffff
| Field | Mask | Reset | Description |
|---|---|---|---|
TEA |
|
|
Outbound translation extended address bits [43:32] |
TA |
|
|
Outbound translation address bits [31:12] |
Register PEXOTEAR
- Description
-
PCI Express outbound translation extended address register
- Reset value
-
0x00000000
- Warm reset mask
-
0x000fffff
| Field | Mask | Reset | Description |
|---|---|---|---|
TEA |
|
|
Outbound translation extended address bits [63:44] |
Register PEXOTEAR
- Description
-
PCI Express outbound translation extended address register
- Reset value
-
0x00000000
- Warm reset mask
-
0x000fffff
| Field | Mask | Reset | Description |
|---|---|---|---|
TEA |
|
|
Outbound translation extended address bits [63:44] |
Register PEXOTEAR
- Description
-
PCI Express outbound translation extended address register
- Reset value
-
0x00000000
- Warm reset mask
-
0x000fffff
| Field | Mask | Reset | Description |
|---|---|---|---|
TEA |
|
|
Outbound translation extended address bits [63:44] |
Register PEXOTEAR
- Description
-
PCI Express outbound translation extended address register
- Reset value
-
0x00000000
- Warm reset mask
-
0x000fffff
| Field | Mask | Reset | Description |
|---|---|---|---|
TEA |
|
|
Outbound translation extended address bits [63:44] |
Register PEXOTEAR
- Description
-
PCI Express outbound translation extended address register
- Reset value
-
0x00000000
- Warm reset mask
-
0x000fffff
| Field | Mask | Reset | Description |
|---|---|---|---|
TEA |
|
|
Outbound translation extended address bits [63:44] |
Register PEXOWBAR
- Description
-
PCI Express outbound window base address register
- Reset value
-
0x00000000
- Warm reset mask
-
0x00ffffff
| Field | Mask | Reset | Description |
|---|---|---|---|
WBEA |
|
|
Outbound window base extended address bits [0:3] |
WBA |
|
|
Outbound window base address bits [4:23] |
Register PEXOWBAR
- Description
-
PCI Express outbound window base address register
- Reset value
-
0x00000000
- Warm reset mask
-
0x00ffffff
| Field | Mask | Reset | Description |
|---|---|---|---|
WBEA |
|
|
Outbound window base extended address bits [0:3] |
WBA |
|
|
Outbound window base address bits [4:23] |
Register PEXOWBAR
- Description
-
PCI Express outbound window base address register
- Reset value
-
0x00000000
- Warm reset mask
-
0x00ffffff
| Field | Mask | Reset | Description |
|---|---|---|---|
WBEA |
|
|
Outbound window base extended address bits [0:3] |
WBA |
|
|
Outbound window base address bits [4:23] |
Register PEXOWBAR
- Description
-
PCI Express outbound window base address register
- Reset value
-
0x00000000
- Warm reset mask
-
0x00ffffff
| Field | Mask | Reset | Description |
|---|---|---|---|
WBEA |
|
|
Outbound window base extended address bits [0:3] |
WBA |
|
|
Outbound window base address bits [4:23] |
Register PEXOWBAR
- Description
-
PCI Express outbound window base address register
- Reset value
-
0x00000000
- Warm reset mask
-
0x00ffffff
| Field | Mask | Reset | Description |
|---|---|---|---|
WBEA |
|
|
Outbound window base extended address bits [0:3] |
WBA |
|
|
Outbound window base address bits [4:23] |
Register PEXOWAR
- Description
-
PCI Express outbound window attributes register
- Reset value
-
0x80044023
- Warm reset mask
-
0x98eff03f
| Field | Mask | Reset | Description |
|---|---|---|---|
EN |
|
|
Outbound translation window enable |
ROE |
|
|
Relaxed ordering enable |
NS |
|
|
No snoop enable |
TC |
|
|
Traffic class |
RTT |
|
|
Read transaction type |
WTT |
|
|
Write transaction type |
OWS |
|
|
Outbound window size |
Register PEXOWAR
- Description
-
PCI Express outbound window attributes register
- Reset value
-
0x00044023
- Warm reset mask
-
0x98eff03f
| Field | Mask | Reset | Description |
|---|---|---|---|
EN |
|
|
Outbound translation window enable |
ROE |
|
|
Relaxed ordering enable |
NS |
|
|
No snoop enable |
TC |
|
|
Traffic class |
RTT |
|
|
Read transaction type |
WTT |
|
|
Write transaction type |
OWS |
|
|
Outbound window size |
Register PEXOWAR
- Description
-
PCI Express outbound window attributes register
- Reset value
-
0x00044023
- Warm reset mask
-
0x98eff03f
| Field | Mask | Reset | Description |
|---|---|---|---|
EN |
|
|
Outbound translation window enable |
ROE |
|
|
Relaxed ordering enable |
NS |
|
|
No snoop enable |
TC |
|
|
Traffic class |
RTT |
|
|
Read transaction type |
WTT |
|
|
Write transaction type |
OWS |
|
|
Outbound window size |
Register PEXOWAR
- Description
-
PCI Express outbound window attributes register
- Reset value
-
0x00044000
- Warm reset mask
-
0x98eff03f
| Field | Mask | Reset | Description |
|---|---|---|---|
EN |
|
|
Outbound translation window enable |
ROE |
|
|
Relaxed ordering enable |
NS |
|
|
No snoop enable |
TC |
|
|
Traffic class |
RTT |
|
|
Read transaction type |
WTT |
|
|
Write transaction type |
OWS |
|
|
Outbound window size |
Register PEXOWAR
- Description
-
PCI Express outbound window attributes register
- Reset value
-
0x00044023
- Warm reset mask
-
0x98eff03f
| Field | Mask | Reset | Description |
|---|---|---|---|
EN |
|
|
Outbound translation window enable |
ROE |
|
|
Relaxed ordering enable |
NS |
|
|
No snoop enable |
TC |
|
|
Traffic class |
RTT |
|
|
Read transaction type |
WTT |
|
|
Write transaction type |
OWS |
|
|
Outbound window size |
Register PEXITAR
- Description
-
PCI Express inbound translation address register
- Reset value
-
0x00000000
- Warm reset mask
-
0x00ffffff
| Field | Mask | Reset | Description |
|---|---|---|---|
TEA |
|
|
Inbound translation extended address bits [0:3] |
TA |
|
|
Inbound translation address bits [4:23] |
Register PEXITAR
- Description
-
PCI Express inbound translation address register
- Reset value
-
0x00000000
- Warm reset mask
-
0x00ffffff
| Field | Mask | Reset | Description |
|---|---|---|---|
TEA |
|
|
Inbound translation extended address bits [0:3] |
TA |
|
|
Inbound translation address bits [4:23] |
Register PEXITAR
- Description
-
PCI Express inbound translation address register
- Reset value
-
0x00000000
- Warm reset mask
-
0x00ffffff
| Field | Mask | Reset | Description |
|---|---|---|---|
TEA |
|
|
Inbound translation extended address bits [0:3] |
TA |
|
|
Inbound translation address bits [4:23] |
Register PEXIWBAR
- Description
-
PCI Express inbound window base address register
- Reset value
-
0x00000000
- Warm reset mask
-
0xffffffff
| Field | Mask | Reset | Description |
|---|---|---|---|
WBEA |
|
|
Inbound window base extended address bits [43:32] |
WBA |
|
|
Inbound window base address bits [31:12] |
Register PEXIWBAR
- Description
-
PCI Express inbound window base address register
- Reset value
-
0x00000000
- Warm reset mask
-
0xffffffff
| Field | Mask | Reset | Description |
|---|---|---|---|
WBEA |
|
|
Inbound window base extended address bits [43:32] |
WBA |
|
|
Inbound window base address bits [31:12] |
Register PEXIWBAR
- Description
-
PCI Express inbound window base address register
- Reset value
-
0x00000000
- Warm reset mask
-
0xffffffff
| Field | Mask | Reset | Description |
|---|---|---|---|
WBEA |
|
|
Inbound window base extended address bits [43:32] |
WBA |
|
|
Inbound window base address bits [31:12] |
Register PEXIWBEAR
- Description
-
PCI Express inbound window base extended address register
- Reset value
-
0x00000000
- Warm reset mask
-
0x000fffff
| Field | Mask | Reset | Description |
|---|---|---|---|
WBEA |
|
|
Inbound window base extended address bits [63:44] |
Register PEXIWBEAR
- Description
-
PCI Express inbound window base extended address register
- Reset value
-
0x00000000
- Warm reset mask
-
0x000fffff
| Field | Mask | Reset | Description |
|---|---|---|---|
WBEA |
|
|
Inbound window base extended address bits [63:44] |
Register PEXIWBEAR
- Description
-
PCI Express inbound window base extended address register
- Reset value
-
0x00000000
- Warm reset mask
-
0x000fffff
| Field | Mask | Reset | Description |
|---|---|---|---|
WBEA |
|
|
Inbound window base extended address bits [63:44] |
Register PEXIWAR
- Description
-
PCI Express inbound window attributes register
- Reset value
-
0x20f44023
- Warm reset mask
-
0xa0fff03f
| Field | Mask | Reset | Description |
|---|---|---|---|
EN |
|
|
Inbound translation window enable |
PF |
|
|
Prefetchable |
TRGT |
|
|
Target interface |
RTT |
|
|
Read transaction type |
WTT |
|
|
Write transaction type |
IWS |
|
|
Inbound window size |
Register PEXIWAR
- Description
-
PCI Express inbound window attributes register
- Reset value
-
0x20f44023
- Warm reset mask
-
0xa0fff03f
| Field | Mask | Reset | Description |
|---|---|---|---|
EN |
|
|
Inbound translation window enable |
PF |
|
|
Prefetchable |
TRGT |
|
|
Target interface |
RTT |
|
|
Read transaction type |
WTT |
|
|
Write transaction type |
IWS |
|
|
Inbound window size |
Register PEXIWAR
- Description
-
PCI Express inbound window attributes register
- Reset value
-
0x20f44023
- Warm reset mask
-
0xa0fff03f
| Field | Mask | Reset | Description |
|---|---|---|---|
EN |
|
|
Inbound translation window enable |
PF |
|
|
Prefetchable |
TRGT |
|
|
Target interface |
RTT |
|
|
Read transaction type |
WTT |
|
|
Write transaction type |
IWS |
|
|
Inbound window size |
Register PEX_ERR_CAP
- Description
-
PCI Express error capture register
- Reset value
-
0x00000000
- Warm reset mask
-
0xffffffff
| Field | Mask | Reset | Description |
|---|---|---|---|
DATA |
|
|
Captured error data |
Register PEX_ERR_CAP
- Description
-
PCI Express error capture register
- Reset value
-
0x00000000
- Warm reset mask
-
0xffffffff
| Field | Mask | Reset | Description |
|---|---|---|---|
DATA |
|
|
Captured error data |