Home
last modified time | relevance | path

Searched refs:__virt_to_phys (Results 1 – 9 of 9) sorted by relevance

/linux/arch/arm/mm/
H A Dphysaddr.c38 phys_addr_t __virt_to_phys(unsigned long x) in __virt_to_phys() function
46 EXPORT_SYMBOL(__virt_to_phys);
/linux/arch/riscv/mm/
H A Dphysaddr.c9 phys_addr_t __virt_to_phys(unsigned long x) in __virt_to_phys() function
20 EXPORT_SYMBOL(__virt_to_phys);
/linux/arch/arm64/include/asm/
H A Dmemory.h345 extern phys_addr_t __virt_to_phys(unsigned long x);
348 #define __virt_to_phys(x) __virt_to_phys_nodebug(x) macro
363 return __virt_to_phys((unsigned long)(x)); in virt_to_phys()
383 #define __pa(x) __virt_to_phys((unsigned long)(x))
/linux/arch/riscv/include/asm/
H A Dpage.h173 extern phys_addr_t __virt_to_phys(unsigned long x);
176 #define __virt_to_phys(x) __va_to_pa_nodebug(x) macro
181 #define __pa(x) __virt_to_phys((unsigned long)(x))
/linux/arch/microblaze/mm/
H A Dpgtable.c74 !(p >= __virt_to_phys((phys_addr_t)__bss_stop) && in __ioremap()
75 p < __virt_to_phys((phys_addr_t)__bss_stop))) { in __ioremap()
H A Dinit.c208 memblock_reserve(__virt_to_phys(initrd_start), size); in mmu_init()
/linux/Documentation/arch/arm/
H A Dporting.rst11 __virt_to_phys() does for your machine. This macro converts the passed
37 __virt_to_phys(TEXTADDR) == ZRELADDR
51 __virt_to_phys(INITRD_VIRT) == INITRD_PHYS
/linux/scripts/gdb/linux/
H A Dmm.py212 def __virt_to_phys(self, va): member in aarch64_page_ops
219 return self.__virt_to_phys(va)
255 return self.__phys_to_pfn(self.__virt_to_phys(va))
/linux/arch/microblaze/kernel/
H A Dsignal.c202 address = __virt_to_phys(address); in setup_rt_frame()