|
@@ -172,10 +172,33 @@ static inline unsigned long kaslr_offset(void)
|
|
|
* private definitions which should NOT be used outside memory.h
|
|
|
* files. Use virt_to_phys/phys_to_virt/__pa/__va instead.
|
|
|
*/
|
|
|
-#define __virt_to_phys(x) ({ \
|
|
|
+
|
|
|
+
|
|
|
+/*
|
|
|
+ * The linear kernel range starts in the middle of the virtual adddress
|
|
|
+ * space. Testing the top bit for the start of the region is a
|
|
|
+ * sufficient check.
|
|
|
+ */
|
|
|
+#define __is_lm_address(addr) (!!((addr) & BIT(VA_BITS - 1)))
|
|
|
+
|
|
|
+#define __lm_to_phys(addr) (((addr) & ~PAGE_OFFSET) + PHYS_OFFSET)
|
|
|
+#define __kimg_to_phys(addr) ((addr) - kimage_voffset)
|
|
|
+
|
|
|
+#define __virt_to_phys_nodebug(x) ({ \
|
|
|
phys_addr_t __x = (phys_addr_t)(x); \
|
|
|
- __x & BIT(VA_BITS - 1) ? (__x & ~PAGE_OFFSET) + PHYS_OFFSET : \
|
|
|
- (__x - kimage_voffset); })
|
|
|
+ __is_lm_address(__x) ? __lm_to_phys(__x) : \
|
|
|
+ __kimg_to_phys(__x); \
|
|
|
+})
|
|
|
+
|
|
|
+#define __pa_symbol_nodebug(x) __kimg_to_phys((phys_addr_t)(x))
|
|
|
+
|
|
|
+#ifdef CONFIG_DEBUG_VIRTUAL
|
|
|
+extern phys_addr_t __virt_to_phys(unsigned long x);
|
|
|
+extern phys_addr_t __phys_addr_symbol(unsigned long x);
|
|
|
+#else
|
|
|
+#define __virt_to_phys(x) __virt_to_phys_nodebug(x)
|
|
|
+#define __phys_addr_symbol(x) __pa_symbol_nodebug(x)
|
|
|
+#endif
|
|
|
|
|
|
#define __phys_to_virt(x) ((unsigned long)((x) - PHYS_OFFSET) | PAGE_OFFSET)
|
|
|
#define __phys_to_kimg(x) ((unsigned long)((x) + kimage_voffset))
|
|
@@ -207,6 +230,8 @@ static inline void *phys_to_virt(phys_addr_t x)
|
|
|
* Drivers should NOT use these either.
|
|
|
*/
|
|
|
#define __pa(x) __virt_to_phys((unsigned long)(x))
|
|
|
+#define __pa_symbol(x) __phys_addr_symbol(RELOC_HIDE((unsigned long)(x), 0))
|
|
|
+#define __pa_nodebug(x) __virt_to_phys_nodebug((unsigned long)(x))
|
|
|
#define __va(x) ((void *)__phys_to_virt((phys_addr_t)(x)))
|
|
|
#define pfn_to_kaddr(pfn) __va((pfn) << PAGE_SHIFT)
|
|
|
#define virt_to_pfn(x) __phys_to_pfn(__virt_to_phys((unsigned long)(x)))
|