Skip to content
Snippets Groups Projects
Commit 7e7e1264 authored by Stuart Yoder's avatar Stuart Yoder Committed by York Sun
Browse files

pci/layerscape: add defines for LUT


The per-PCI controller LUT (Look-Up-Table) is a 32-entry table
that maps PCI requester IDs (bus/dev/fun) to a stream ID.

Add defines for the register offsets.

Signed-off-by: default avatarStuart Yoder <stuart.yoder@nxp.com>
Reviewed-by: default avatarYork Sun <york.sun@nxp.com>
parent eeb5b1ad
No related branches found
No related tags found
No related merge requests found
...@@ -86,6 +86,10 @@ ...@@ -86,6 +86,10 @@
#define PCIE_LUT_BASE 0x80000 #define PCIE_LUT_BASE 0x80000
#define PCIE_LUT_LCTRL0 0x7F8 #define PCIE_LUT_LCTRL0 0x7F8
#define PCIE_LUT_DBG 0x7FC #define PCIE_LUT_DBG 0x7FC
#define PCIE_LUT_UDR(n) (0x800 + (n) * 8)
#define PCIE_LUT_LDR(n) (0x804 + (n) * 8)
#define PCIE_LUT_ENABLE (1 << 31)
#define PCIE_LUT_ENTRY_COUNT 32
/* Device Configuration */ /* Device Configuration */
#define DCFG_BASE 0x01e00000 #define DCFG_BASE 0x01e00000
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment