From: Vlad Lungu Date: Sun, 21 Oct 2007 13:10:10 +0000 (+0900) Subject: [MIPS] Fix UNCACHED_SDRAM X-Git-Tag: v1.3.0-rc4~27^2~1^2^2 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=de9a738faa7c2f47286119c3bfebc3dfbfe7d86d;p=u-boot [MIPS] Fix UNCACHED_SDRAM PHYSADDR is for physical address, KSEG1ADDR is for uncached. Signed-off-by: Vlad Lungu Signed-off-by: Shinya Kuribayashi --- diff --git a/include/asm-mips/addrspace.h b/include/asm-mips/addrspace.h index b8214b1c85..0e6abd7d0f 100644 --- a/include/asm-mips/addrspace.h +++ b/include/asm-mips/addrspace.h @@ -49,7 +49,7 @@ cannot access physical memory directly from core */ #define UNCACHED_SDRAM(a) (((unsigned long)(a)) | 0x20000000) #else /* !CONFIG_AU1X00 */ -#define UNCACHED_SDRAM(a) PHYSADDR(a) +#define UNCACHED_SDRAM(a) KSEG1ADDR(a) #endif /* CONFIG_AU1X00 */ #endif /* __ASSEMBLY__ */ /*