1
0

virtconvert.h 1015 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef __VIRT_CONVERT__
  3. #define __VIRT_CONVERT__
  4. /*
  5. * Macros used for converting between virtual and physical mappings.
  6. */
  7. #ifdef __KERNEL__
  8. #include <linux/compiler.h>
  9. #include <linux/mmzone.h>
  10. #include <asm/setup.h>
  11. #include <asm/page.h>
  12. /*
  13. * Change virtual addresses to physical addresses and vv.
  14. */
  15. #define virt_to_phys virt_to_phys
  16. static inline unsigned long virt_to_phys(void *address)
  17. {
  18. return __pa(address);
  19. }
  20. #define phys_to_virt phys_to_virt
  21. static inline void *phys_to_virt(unsigned long address)
  22. {
  23. return __va(address);
  24. }
  25. /* Permanent address of a page. */
  26. #if defined(CONFIG_MMU) && defined(CONFIG_SINGLE_MEMORY_CHUNK)
  27. #define page_to_phys(page) \
  28. __pa(PAGE_OFFSET + (((page) - pg_data_map[0].node_mem_map) << PAGE_SHIFT))
  29. #else
  30. #define page_to_phys(page) (page_to_pfn(page) << PAGE_SHIFT)
  31. #endif
  32. /*
  33. * IO bus memory addresses are 1:1 with the physical address,
  34. */
  35. #define virt_to_bus virt_to_phys
  36. #define bus_to_virt phys_to_virt
  37. #endif
  38. #endif