diff options
author | Kumar Gala <galak@kernel.crashing.org> | 2010-07-09 09:12:18 -0500 |
---|---|---|
committer | Kumar Gala <galak@kernel.crashing.org> | 2010-10-07 09:49:47 -0500 |
commit | 1bf8e9fd7498da3f9b109944b0551c589402d643 (patch) | |
tree | 8e51b8d847f26f8358a45c05077fc8d6f9aa6250 /include | |
parent | c2b3b6408bb011a618f67aeec1928482b679b319 (diff) | |
download | u-boot-imx-1bf8e9fd7498da3f9b109944b0551c589402d643.zip u-boot-imx-1bf8e9fd7498da3f9b109944b0551c589402d643.tar.gz u-boot-imx-1bf8e9fd7498da3f9b109944b0551c589402d643.tar.bz2 |
powerpc/85xx: Add support for 4th PCI controller on corenet_ds
We configure the controller but dont have virtual address space thus any
devices on the 4th controller are not accessible in u-boot.
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/configs/corenet_ds.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/configs/corenet_ds.h b/include/configs/corenet_ds.h index 6486869..9184eeb 100644 --- a/include/configs/corenet_ds.h +++ b/include/configs/corenet_ds.h @@ -399,6 +399,14 @@ #endif #define CONFIG_SYS_PCIE3_IO_SIZE 0x00010000 /* 64k */ +/* controller 4, Base address 203000 */ +#define CONFIG_SYS_PCIE4_MEM_BUS 0xe0000000 +#define CONFIG_SYS_PCIE4_MEM_PHYS 0xc60000000ull +#define CONFIG_SYS_PCIE4_MEM_SIZE 0x20000000 /* 512M */ +#define CONFIG_SYS_PCIE4_IO_BUS 0x00000000 +#define CONFIG_SYS_PCIE4_IO_PHYS 0xff8030000ull +#define CONFIG_SYS_PCIE4_IO_SIZE 0x00010000 /* 64k */ + /* Qman/Bman */ #define CONFIG_SYS_BMAN_NUM_PORTALS 10 #define CONFIG_SYS_BMAN_MEM_BASE 0xf4000000 |