diff options
author | Kumar Gala <galak@kernel.crashing.org> | 2008-01-16 10:04:42 -0600 |
---|---|---|
committer | Kumar Gala <galak@kernel.crashing.org> | 2008-01-16 23:21:56 -0600 |
commit | c8c41d4a80b1a8ad5984a287d81ea780496259f8 (patch) | |
tree | d16801f7e70a98bc8f7f636bc458ccbc087bbe0c /board/stxgp3/law.c | |
parent | 54a5070115eff38e9b324b78abdfa0b4520580b9 (diff) | |
download | u-boot-imx-c8c41d4a80b1a8ad5984a287d81ea780496259f8.zip u-boot-imx-c8c41d4a80b1a8ad5984a287d81ea780496259f8.tar.gz u-boot-imx-c8c41d4a80b1a8ad5984a287d81ea780496259f8.tar.bz2 |
85xx: Use proper defines for PCI addresses
We should be using the _MEM_PHYS for LAW and TLB setup and not _MEM_BASE.
While _MEM_BASE & _MEM_PHYS are normally the same, _MEM_BASE should only
be used for configuring the PCI ATMU.
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'board/stxgp3/law.c')
-rw-r--r-- | board/stxgp3/law.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/stxgp3/law.c b/board/stxgp3/law.c index 6f215e1..312b3c5 100644 --- a/board/stxgp3/law.c +++ b/board/stxgp3/law.c @@ -48,7 +48,7 @@ struct law_entry law_table[] = { #ifndef CONFIG_SPD_EEPROM SET_LAW_ENTRY(1, CFG_DDR_SDRAM_BASE, LAW_SIZE_128M, LAW_TRGT_IF_DDR), #endif - SET_LAW_ENTRY(2, CFG_PCI1_MEM_BASE, LAW_SIZE_512M, LAW_TRGT_IF_PCI), + SET_LAW_ENTRY(2, CFG_PCI1_MEM_PHYS, LAW_SIZE_512M, LAW_TRGT_IF_PCI), /* This is not so much the SDRAM map as it is the whole localbus map. */ SET_LAW_ENTRY(3, CFG_LBC_SDRAM_BASE, LAW_SIZE_256M, LAW_TRGT_IF_LBC), SET_LAW_ENTRY(4, CFG_PCI1_IO_PHYS, LAW_SIZE_16M, LAW_TRGT_IF_PCI), |