diff options
| author | Kumar Gala <galak@kernel.crashing.org> | 2008-12-02 16:08:36 -0600 | 
|---|---|---|
| committer | Andrew Fleming-AFLEMING <afleming@freescale.com> | 2009-01-23 17:03:13 -0600 | 
| commit | 10795f42cb94e71bcb262b615084f69dd886399a (patch) | |
| tree | 8954d541f7006c1838691799daca3bacb5667c1b /board/freescale/mpc8560ads/tlb.c | |
| parent | c953ddfd56b3ae3f28910fe3aed6de6968d1c9aa (diff) | |
| download | olio-uboot-2014.01-10795f42cb94e71bcb262b615084f69dd886399a.tar.xz olio-uboot-2014.01-10795f42cb94e71bcb262b615084f69dd886399a.zip | |
85xx: Convert CONFIG_SYS_{PCI*,RIO*}_MEM_BASE to _MEM_BUS for FSL boards
Use CONFIG_SYS_{PCI,RIO}_MEM_BUS for the bus relative address instead
of _MEM_BASE so we are more explicit.
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Acked-by: Andy Fleming <afleming@freescale.com>
Diffstat (limited to 'board/freescale/mpc8560ads/tlb.c')
| -rw-r--r-- | board/freescale/mpc8560ads/tlb.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/board/freescale/mpc8560ads/tlb.c b/board/freescale/mpc8560ads/tlb.c index 2ec3ccce9..758bd7006 100644 --- a/board/freescale/mpc8560ads/tlb.c +++ b/board/freescale/mpc8560ads/tlb.c @@ -70,7 +70,7 @@ struct fsl_e_tlb_entry tlb_table[] = {  	 * TLB 3:	256M	Non-cacheable, guarded  	 * 0xc0000000	256M	Rapid IO MEM First half  	 */ -	SET_TLB_ENTRY(1, CONFIG_SYS_RIO_MEM_BASE, CONFIG_SYS_RIO_MEM_BASE, +	SET_TLB_ENTRY(1, CONFIG_SYS_RIO_MEM_BUS, CONFIG_SYS_RIO_MEM_BUS,  		      MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G,  		      0, 3, BOOKE_PAGESZ_256M, 1), @@ -78,7 +78,7 @@ struct fsl_e_tlb_entry tlb_table[] = {  	 * TLB 4:	256M	Non-cacheable, guarded  	 * 0xd0000000	256M	Rapid IO MEM Second half  	 */ -	SET_TLB_ENTRY(1, CONFIG_SYS_RIO_MEM_BASE + 0x10000000, CONFIG_SYS_RIO_MEM_BASE + 0x10000000, +	SET_TLB_ENTRY(1, CONFIG_SYS_RIO_MEM_BUS + 0x10000000, CONFIG_SYS_RIO_MEM_BUS + 0x10000000,  		      MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G,  		      0, 4, BOOKE_PAGESZ_256M, 1), |