diff options
author | Kumar Gala <galak@kernel.crashing.org> | 2010-12-17 10:26:44 -0600 |
---|---|---|
committer | Kumar Gala <galak@kernel.crashing.org> | 2011-01-14 01:32:21 -0600 |
commit | c51136ec45b924a9c4f34a2e4ab16dc2606c40a5 (patch) | |
tree | 7156e4e360e4a5654b3ae51c28d150df4fbbcc03 /board/sbc8641d/law.c | |
parent | b8526212ca1e299d8833f413b737a326bf484ee4 (diff) | |
download | u-boot-imx-c51136ec45b924a9c4f34a2e4ab16dc2606c40a5.zip u-boot-imx-c51136ec45b924a9c4f34a2e4ab16dc2606c40a5.tar.gz u-boot-imx-c51136ec45b924a9c4f34a2e4ab16dc2606c40a5.tar.bz2 |
powerpc/86xx: Rework SBC8641 pci_init_board to use common FSL PCIe code
Remove duplicated code in SBC8641 board and utilize the common
fsl_pcie_init_board(). We also now dynamically setup the LAWs for PCI
controllers based on which PCIe controllers are enabled.
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
CC: Paul Gortmaker <paul.gortmaker@windriver.com>
Diffstat (limited to 'board/sbc8641d/law.c')
-rw-r--r-- | board/sbc8641d/law.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/board/sbc8641d/law.c b/board/sbc8641d/law.c index 705e1c2..a6f60ee 100644 --- a/board/sbc8641d/law.c +++ b/board/sbc8641d/law.c @@ -49,11 +49,7 @@ struct law_entry law_table[] = { SET_LAW(CONFIG_SYS_DDR_SDRAM_BASE + 0x10000000, LAW_SIZE_256M, LAW_TRGT_IF_DDR_2), #endif - SET_LAW(CONFIG_SYS_PCIE1_MEM_PHYS, LAW_SIZE_512M, LAW_TRGT_IF_PCI_1), - SET_LAW(CONFIG_SYS_PCIE2_MEM_PHYS, LAW_SIZE_512M, LAW_TRGT_IF_PCI_2), SET_LAW(0xf8000000, LAW_SIZE_2M, LAW_TRGT_IF_LBC), - SET_LAW(CONFIG_SYS_PCIE1_IO_PHYS, LAW_SIZE_16M, LAW_TRGT_IF_PCI_1), - SET_LAW(CONFIG_SYS_PCIE2_IO_PHYS, LAW_SIZE_16M, LAW_TRGT_IF_PCI_2), SET_LAW(0xfe000000, LAW_SIZE_32M, LAW_TRGT_IF_LBC), SET_LAW(CONFIG_SYS_RIO_MEM_PHYS, LAW_SIZE_512M, LAW_TRGT_IF_RIO) }; |