virtconvert.h 972 B

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