virtconvert.h 1019 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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_SINGLE_MEMORY_CHUNK
  24. #define page_to_phys(page) \
  25. __pa(PAGE_OFFSET + (((page) - pg_data_map[0].node_mem_map) << PAGE_SHIFT))
  26. #else
  27. #define page_to_phys(_page) ({ \
  28. struct page *__page = _page; \
  29. struct pglist_data *pgdat; \
  30. pgdat = pg_data_table[page_to_nid(__page)]; \
  31. page_to_pfn(__page) << PAGE_SHIFT; \
  32. })
  33. #endif
  34. /*
  35. * IO bus memory addresses are 1:1 with the physical address,
  36. */
  37. #define virt_to_bus virt_to_phys
  38. #define bus_to_virt phys_to_virt
  39. #endif
  40. #endif