aboutsummaryrefslogtreecommitdiffstats
path: root/arch/frv/kernel/head.inc
diff options
context:
space:
mode:
authorDavid Howells <dhowells@redhat.com>2008-04-10 16:11:00 +0100
committerLinus Torvalds <torvalds@linux-foundation.org>2008-04-10 13:41:29 -0700
commited9b949f55bc8a6bb6083ce0eddb53d06aee302a (patch)
tree03c7005beb1611028c13a34766f87da848b13859 /arch/frv/kernel/head.inc
parentFRV: Add support for emulation of userspace atomic ops [try #2] (diff)
downloadlinux-dev-ed9b949f55bc8a6bb6083ce0eddb53d06aee302a.tar.xz
linux-dev-ed9b949f55bc8a6bb6083ce0eddb53d06aee302a.zip
FRV: Make NOMMU-mode work with base addresses other than 0xC0000000 [try #2]
Make NOMMU-mode work with base addresses other than 0xC0000000 by: (1) Giving the code that sets up the protection registers the right address in __sdram_base. Rather than being hard coded to 0xC0000000, the value of __page_offset is obtained from the linker script. (2) Eliminate the check in __switch_to() that verifies the current thread info is in the 0xCxxxxxxx region. Signed-off-by: David Howells <dhowells@redhat.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/frv/kernel/head.inc')
-rw-r--r--arch/frv/kernel/head.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/frv/kernel/head.inc b/arch/frv/kernel/head.inc
index d424cd2eb213..bff66628b99a 100644
--- a/arch/frv/kernel/head.inc
+++ b/arch/frv/kernel/head.inc
@@ -46,5 +46,5 @@
#ifdef CONFIG_MMU
__sdram_base = 0x00000000 /* base address to which SDRAM relocated */
#else
-__sdram_base = 0xc0000000 /* base address to which SDRAM relocated */
+__sdram_base = __page_offset /* base address to which SDRAM relocated */
#endif