ARM: provide arm_has_idmap_alias() helper
authorRussell King <rmk+kernel@arm.linux.org.uk>
Tue, 15 Mar 2016 15:00:30 +0000 (15:00 +0000)
committerRussell King <rmk+kernel@arm.linux.org.uk>
Tue, 3 May 2016 10:17:28 +0000 (11:17 +0100)
Provide a helper to indicate whether we need to perform special handling
for boot identity mapping aliases or not.

Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Reviewed-by: Pratyush Anand <panand@redhat.com>
arch/arm/include/asm/memory.h

index ca20833..31c07a2 100644 (file)
@@ -295,6 +295,11 @@ extern long long arch_phys_to_idmap_offset;
  * of physical memory for idmap purposes.  Most cases should leave these
  * untouched.  Note: this can only return addresses less than 4GiB.
  */
+static inline bool arm_has_idmap_alias(void)
+{
+       return IS_ENABLED(CONFIG_MMU) && arch_phys_to_idmap_offset != 0;
+}
+
 #define IDMAP_INVALID_ADDR ((u32)~0)
 
 static inline unsigned long phys_to_idmap(phys_addr_t addr)