Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #ifndef __VIRT_CONVERT__ |
| 2 | #define __VIRT_CONVERT__ |
| 3 | |
| 4 | /* |
| 5 | * Macros used for converting between virtual and physical mappings. |
| 6 | */ |
| 7 | |
| 8 | #ifdef __KERNEL__ |
| 9 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | #include <linux/compiler.h> |
Roman Zippel | 12d810c | 2007-05-31 00:40:54 -0700 | [diff] [blame] | 11 | #include <linux/mmzone.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | #include <asm/setup.h> |
| 13 | #include <asm/page.h> |
| 14 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | /* |
| 16 | * Change virtual addresses to physical addresses and vv. |
| 17 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | static inline unsigned long virt_to_phys(void *address) |
| 19 | { |
Roman Zippel | 12d810c | 2007-05-31 00:40:54 -0700 | [diff] [blame] | 20 | return __pa(address); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | } |
| 22 | |
| 23 | static inline void *phys_to_virt(unsigned long address) |
| 24 | { |
Roman Zippel | 12d810c | 2007-05-31 00:40:54 -0700 | [diff] [blame] | 25 | return __va(address); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | |
| 28 | /* Permanent address of a page. */ |
Steven King | 817f72d | 2014-06-11 20:01:10 -0700 | [diff] [blame] | 29 | #if defined(CONFIG_MMU) && defined(CONFIG_SINGLE_MEMORY_CHUNK) |
Roman Zippel | 12d810c | 2007-05-31 00:40:54 -0700 | [diff] [blame] | 30 | #define page_to_phys(page) \ |
| 31 | __pa(PAGE_OFFSET + (((page) - pg_data_map[0].node_mem_map) << PAGE_SHIFT)) |
| 32 | #else |
Geert Uytterhoeven | f54bcdc | 2010-01-12 08:32:18 +0100 | [diff] [blame] | 33 | #define page_to_phys(page) (page_to_pfn(page) << PAGE_SHIFT) |
Roman Zippel | 12d810c | 2007-05-31 00:40:54 -0700 | [diff] [blame] | 34 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | |
| 36 | /* |
| 37 | * IO bus memory addresses are 1:1 with the physical address, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | #define virt_to_bus virt_to_phys |
| 40 | #define bus_to_virt phys_to_virt |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | |
| 42 | #endif |
| 43 | #endif |