diff options
author | Ard Biesheuvel <ard.biesheuvel@linaro.org> | 2016-02-16 07:52:41 -0500 |
---|---|---|
committer | Catalin Marinas <catalin.marinas@arm.com> | 2016-02-18 13:16:49 -0500 |
commit | a89dea585371a9d5d85499db47c93f129be8e0c4 (patch) | |
tree | cb10715cd4d2c4502d0a52d369a4ce5619f00358 | |
parent | f9040773b7bbbd9e98eb6184a263512a7cfc133f (diff) |
arm64: defer __va translation of initrd_start and initrd_end
Before deferring the assignment of memstart_addr in a subsequent patch, to
the moment where all memory has been discovered and possibly clipped based
on the size of the linear region and the presence of a mem= command line
parameter, we need to ensure that memstart_addr is not used to perform __va
translations before it is assigned.
One such use is in the generic early DT discovery of the initrd location,
which is recorded as a virtual address in the globals initrd_start and
initrd_end. So wire up the generic support to declare the initrd addresses,
and implement it without __va() translations, and perform the translation
after memstart_addr has been assigned.
Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
-rw-r--r-- | arch/arm64/include/asm/memory.h | 8 | ||||
-rw-r--r-- | arch/arm64/mm/init.c | 13 |
2 files changed, 17 insertions, 4 deletions
diff --git a/arch/arm64/include/asm/memory.h b/arch/arm64/include/asm/memory.h index 4388651d1f0d..18b7e77c7495 100644 --- a/arch/arm64/include/asm/memory.h +++ b/arch/arm64/include/asm/memory.h | |||
@@ -121,6 +121,14 @@ | |||
121 | #define IOREMAP_MAX_ORDER (PMD_SHIFT) | 121 | #define IOREMAP_MAX_ORDER (PMD_SHIFT) |
122 | #endif | 122 | #endif |
123 | 123 | ||
124 | #ifdef CONFIG_BLK_DEV_INITRD | ||
125 | #define __early_init_dt_declare_initrd(__start, __end) \ | ||
126 | do { \ | ||
127 | initrd_start = (__start); \ | ||
128 | initrd_end = (__end); \ | ||
129 | } while (0) | ||
130 | #endif | ||
131 | |||
124 | #ifndef __ASSEMBLY__ | 132 | #ifndef __ASSEMBLY__ |
125 | 133 | ||
126 | extern phys_addr_t memstart_addr; | 134 | extern phys_addr_t memstart_addr; |
diff --git a/arch/arm64/mm/init.c b/arch/arm64/mm/init.c index 1d627cd8121c..52d1fc465885 100644 --- a/arch/arm64/mm/init.c +++ b/arch/arm64/mm/init.c | |||
@@ -59,8 +59,8 @@ static int __init early_initrd(char *p) | |||
59 | if (*endp == ',') { | 59 | if (*endp == ',') { |
60 | size = memparse(endp + 1, NULL); | 60 | size = memparse(endp + 1, NULL); |
61 | 61 | ||
62 | initrd_start = (unsigned long)__va(start); | 62 | initrd_start = start; |
63 | initrd_end = (unsigned long)__va(start + size); | 63 | initrd_end = start + size; |
64 | } | 64 | } |
65 | return 0; | 65 | return 0; |
66 | } | 66 | } |
@@ -168,8 +168,13 @@ void __init arm64_memblock_init(void) | |||
168 | */ | 168 | */ |
169 | memblock_reserve(__pa(_text), _end - _text); | 169 | memblock_reserve(__pa(_text), _end - _text); |
170 | #ifdef CONFIG_BLK_DEV_INITRD | 170 | #ifdef CONFIG_BLK_DEV_INITRD |
171 | if (initrd_start) | 171 | if (initrd_start) { |
172 | memblock_reserve(__virt_to_phys(initrd_start), initrd_end - initrd_start); | 172 | memblock_reserve(initrd_start, initrd_end - initrd_start); |
173 | |||
174 | /* the generic initrd code expects virtual addresses */ | ||
175 | initrd_start = __phys_to_virt(initrd_start); | ||
176 | initrd_end = __phys_to_virt(initrd_end); | ||
177 | } | ||
173 | #endif | 178 | #endif |
174 | 179 | ||
175 | early_init_fdt_scan_reserved_mem(); | 180 | early_init_fdt_scan_reserved_mem(); |