of/fdt: make memblock maximum physical address arch configurable
authorArd Biesheuvel <ard.biesheuvel@linaro.org>
Tue, 18 Aug 2015 09:34:41 +0000 (10:34 +0100)
committerWill Deacon <will.deacon@arm.com>
Mon, 24 Aug 2015 09:23:13 +0000 (10:23 +0100)
commit8eafeb48022816513abc4f440bdad4c350fe81a3
treee1c9587c5a67e547909f886b429ef69a8679a738
parent5d3c2c352998fdefdc62795249cfc7311cf36df9
of/fdt: make memblock maximum physical address arch configurable

When parsing the memory nodes to populate the memblock memory
table, we check against high and low limits and clip any memory
that exceeds either one of them.

However, for arm64, the high limit of (phys_addr_t)~0 is not very
meaningful, since phys_addr_t is 64 bits (i.e., no limit) but there
may be other constraints that limit the memory ranges that we can
support.

So rename MAX_PHYS_ADDR to MAX_MEMBLOCK_ADDR (for clarity) and only
define it if the arch does not supply a definition of its own.

Acked-by: Rob Herring <robh@kernel.org>
Reviewed-by: Catalin Marinas <catalin.marinas@arm.com>
Tested-by: Stuart Yoder <stuart.yoder@freescale.com>
Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Signed-off-by: Will Deacon <will.deacon@arm.com>
drivers/of/fdt.c