diff options
author | Kumar Gala <galak@kernel.crashing.org> | 2008-12-02 16:08:38 -0600 |
---|---|---|
committer | Andrew Fleming-AFLEMING <afleming@freescale.com> | 2009-01-23 17:03:13 -0600 |
commit | a6e04c344ad1eefd47a75484441b385da815b8df (patch) | |
tree | e26692c23590ac935001374f09adb08b443905cc /board/freescale/mpc8540ads/law.c | |
parent | 5f91ef6acdbadec33e0192049e2b24a1d9692f1d (diff) | |
download | talos-obmc-uboot-a6e04c344ad1eefd47a75484441b385da815b8df.tar.gz talos-obmc-uboot-a6e04c344ad1eefd47a75484441b385da815b8df.zip |
85xx: Use CONFIG_SYS_{PCI*,RIO*}_MEM_PHYS for physical address on FSL boards
Use the _MEM_PHYS defines instead of _MEM_BUS for LAW and real address fields
of TLBs. This is what we should have always been using from the start.
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Acked-by: Andy Fleming <afleming@freescale.com>
Diffstat (limited to 'board/freescale/mpc8540ads/law.c')
-rw-r--r-- | board/freescale/mpc8540ads/law.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/freescale/mpc8540ads/law.c b/board/freescale/mpc8540ads/law.c index ff56e87dd7..f5644e1549 100644 --- a/board/freescale/mpc8540ads/law.c +++ b/board/freescale/mpc8540ads/law.c @@ -52,7 +52,7 @@ struct law_entry law_table[] = { /* This is not so much the SDRAM map as it is the whole localbus map. */ SET_LAW(CONFIG_SYS_LBC_SDRAM_BASE, LAW_SIZE_256M, LAW_TRGT_IF_LBC), SET_LAW(CONFIG_SYS_PCI1_IO_PHYS, LAW_SIZE_1M, LAW_TRGT_IF_PCI), - SET_LAW(CONFIG_SYS_RIO_MEM_BUS, LAWAR_SIZE_512M, LAW_TRGT_IF_RIO), + SET_LAW(CONFIG_SYS_RIO_MEM_PHYS, LAWAR_SIZE_512M, LAW_TRGT_IF_RIO), }; int num_law_entries = ARRAY_SIZE(law_table); |