* [PATCH] ARM: always define CONFIG_PHYS_OFFSET on !MMU
@ 2014-03-12 15:50 Arnd Bergmann
0 siblings, 0 replies; only message in thread
From: Arnd Bergmann @ 2014-03-12 15:50 UTC (permalink / raw)
To: linux-arm-kernel
Starting with 006fa2599bf0 "ARM: fix noMMU kallsyms symbol filtering", we
use CONFIG_PHYS_OFFSET to calculate PAGE_OFFSET and have that passed
into kallsyms as the start address.
However, CONFIG_PHYS_OFFSET is defined only for platforms that don't
set NEED_MACH_MEMORY_H. It is possible to build a noMMU kernel for
these platforms by setting CONFIG_DRAM_BASE to the same value as the
PLAT_PHYS_OFFSET. This means we can in fact rely on DRAM_BASE to be
correct already, and implicitly define PHYS_OFFSET to the same value.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig
index 72129f3..67314cb 100644
--- a/arch/arm/Kconfig
+++ b/arch/arm/Kconfig
@@ -271,7 +271,7 @@ config NEED_MACH_MEMORY_H
config PHYS_OFFSET
hex "Physical address of main memory" if MMU
- depends on !ARM_PATCH_PHYS_VIRT && !NEED_MACH_MEMORY_H
+ depends on (!ARM_PATCH_PHYS_VIRT && !NEED_MACH_MEMORY_H) || !MMU
default DRAM_BASE if !MMU
help
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2014-03-12 15:50 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-03-12 15:50 [PATCH] ARM: always define CONFIG_PHYS_OFFSET on !MMU Arnd Bergmann
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox