1 #ifndef __VIRT_CONVERT__
2 #define __VIRT_CONVERT__
5 * Macros used for converting between virtual and physical mappings.
10 #include <linux/compiler.h>
11 #include <asm/setup.h>
15 #include <asm/amigahw.h>
19 * Change virtual addresses to physical addresses and vv.
22 extern unsigned long mm_vtop(unsigned long addr
) __attribute_const__
;
23 extern unsigned long mm_ptov(unsigned long addr
) __attribute_const__
;
25 static inline unsigned long mm_vtop(unsigned long vaddr
)
30 static inline unsigned long mm_ptov(unsigned long paddr
)
32 return (unsigned long)__va(paddr
);
36 #ifdef CONFIG_SINGLE_MEMORY_CHUNK
37 static inline unsigned long virt_to_phys(void *vaddr
)
39 return (unsigned long)vaddr
- PAGE_OFFSET
+ m68k_memory
[0].addr
;
42 static inline void * phys_to_virt(unsigned long paddr
)
44 return (void *)(paddr
- m68k_memory
[0].addr
+ PAGE_OFFSET
);
47 static inline unsigned long virt_to_phys(void *address
)
49 return mm_vtop((unsigned long)address
);
52 static inline void *phys_to_virt(unsigned long address
)
54 return (void *) mm_ptov(address
);
58 /* Permanent address of a page. */
59 #define __page_address(page) (PAGE_OFFSET + (((page) - mem_map) << PAGE_SHIFT))
60 #define page_to_phys(page) virt_to_phys((void *)__page_address(page))
63 * IO bus memory addresses are 1:1 with the physical address,
64 * except on the PCI bus of the Hades.
67 #define virt_to_bus(a) (virt_to_phys(a) + (MACH_IS_HADES ? 0x80000000 : 0))
68 #define bus_to_virt(a) (phys_to_virt((a) - (MACH_IS_HADES ? 0x80000000 : 0)))
70 #define virt_to_bus virt_to_phys
71 #define bus_to_virt phys_to_virt