Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

FRV: permit the memory to be located elsewhere in NOMMU mode

Permit the memory to be located somewhere other than address 0xC0000000 in
NOMMU mode. The configuration options are already present, it just
requires wiring up in the linker script.

Note that only a limited set of locations of runtime addresses are available
because of the way the CPU protection registers work.

Signed-off-by: David Howells <dhowells@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by

David Howells and committed by
Linus Torvalds
7038220a e114e473

+10 -1
+9
arch/frv/Kconfig
··· 138 138 139 139 endchoice 140 140 141 + config PAGE_OFFSET 142 + hex 143 + default 0x20000000 if UCPAGE_OFFSET_20000000 144 + default 0x40000000 if UCPAGE_OFFSET_40000000 145 + default 0x60000000 if UCPAGE_OFFSET_60000000 146 + default 0x80000000 if UCPAGE_OFFSET_80000000 147 + default 0xA0000000 if UCPAGE_OFFSET_A0000000 148 + default 0xC0000000 149 + 141 150 config PROTECT_KERNEL 142 151 bool "Protect core kernel against userspace" 143 152 depends on !MMU
+1 -1
arch/frv/kernel/vmlinux.lds.S
··· 13 13 14 14 jiffies = jiffies_64 + 4; 15 15 16 - __page_offset = 0xc0000000; /* start of area covered by struct pages */ 16 + __page_offset = CONFIG_PAGE_OFFSET; /* start of area covered by struct pages */ 17 17 __kernel_image_start = __page_offset; /* address at which kernel image resides */ 18 18 19 19 SECTIONS