mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-07 19:30:30 +09:00
UPSTREAM: of/fdt: make memblock minimum physical address arch configurable
By default, early_init_dt_add_memory_arch() ignores memory below
the base of the kernel image since it won't be addressable via the
linear mapping. However, this is not appropriate anymore once we
decouple the kernel text mapping from the linear mapping, so archs
may want to drop the low limit entirely. So allow the minimum to be
overridden by setting MIN_MEMBLOCK_ADDR.
Acked-by: Mark Rutland <mark.rutland@arm.com>
Acked-by: Rob Herring <robh@kernel.org>
Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
Bug: 30369029
Patchset: kaslr-arm64-4.4
(cherry picked from commit 270522a04f)
Signed-off-by: Jeff Vander Stoep <jeffv@google.com>
Change-Id: I4bb2626a87493262a64584b3d808de260129127e
This commit is contained in:
committed by
Jeff Vander Stoep
parent
c39e2026d6
commit
6bfaecfc58
@@ -1006,13 +1006,16 @@ int __init early_init_dt_scan_chosen(unsigned long node, const char *uname,
|
||||
}
|
||||
|
||||
#ifdef CONFIG_HAVE_MEMBLOCK
|
||||
#ifndef MIN_MEMBLOCK_ADDR
|
||||
#define MIN_MEMBLOCK_ADDR __pa(PAGE_OFFSET)
|
||||
#endif
|
||||
#ifndef MAX_MEMBLOCK_ADDR
|
||||
#define MAX_MEMBLOCK_ADDR ((phys_addr_t)~0)
|
||||
#endif
|
||||
|
||||
void __init __weak early_init_dt_add_memory_arch(u64 base, u64 size)
|
||||
{
|
||||
const u64 phys_offset = __pa(PAGE_OFFSET);
|
||||
const u64 phys_offset = MIN_MEMBLOCK_ADDR;
|
||||
|
||||
if (!PAGE_ALIGNED(base)) {
|
||||
if (size < PAGE_SIZE - (base & ~PAGE_MASK)) {
|
||||
|
||||
Reference in New Issue
Block a user