1 #ifndef __VIRT_CONVERT__
2 #define __VIRT_CONVERT__
5 * Macros used for converting between virtual and physical mappings.
10 #include <linux/config.h>
11 #include <asm/setup.h>
14 #include <asm/amigahw.h>
18 * Change virtual addresses to physical addresses and vv.
21 extern unsigned long mm_vtop(unsigned long addr
) __attribute__ ((const));
22 extern unsigned long mm_vtop_fallback (unsigned long) __attribute__ ((const));
23 extern unsigned long mm_ptov(unsigned long addr
) __attribute__ ((const));
25 extern inline unsigned long mm_vtop(unsigned long vaddr
)
30 extern inline unsigned long mm_ptov(unsigned long paddr
)
32 return (unsigned long)__va(paddr
);
36 #ifdef CONFIG_SINGLE_MEMORY_CHUNK
37 extern inline unsigned long virt_to_phys(volatile void * address
)
39 unsigned long voff
= (unsigned long) address
;
41 if (voff
< m68k_memory
[0].size
)
42 return m68k_memory
[0].addr
+ voff
;
44 return mm_vtop_fallback(voff
);
47 extern inline void * phys_to_virt(unsigned long paddr
)
49 unsigned long base
= m68k_memory
[0].addr
;
51 if ((paddr
>= base
) && (paddr
< (base
+ m68k_memory
[0].size
)))
52 return (void *)(paddr
- base
);
55 * if on an amiga and address is in first 16M, move it
56 * to the ZTWO_VADDR range
58 if (MACH_IS_AMIGA
&& paddr
< 16*1024*1024)
59 return (void *)ZTWO_VADDR(paddr
);
64 extern inline unsigned long virt_to_phys(volatile void * address
)
66 return mm_vtop((unsigned long)address
);
69 extern inline void * phys_to_virt(unsigned long address
)
71 return (void *) mm_ptov(address
);
76 * IO bus memory addresses are 1:1 with the physical address,
77 * except on the PCI bus of the Hades.
80 #define virt_to_bus(a) (virt_to_phys(a) + (MACH_IS_HADES ? 0x80000000 : 0))
81 #define bus_to_virt(a) (phys_to_virt((a) - (MACH_IS_HADES ? 0x80000000 : 0)))
83 #define virt_to_bus virt_to_phys
84 #define bus_to_virt phys_to_virt