Home | History | Annotate | Download | only in asm-x86

Lines Matching refs:address

64  *	@address: address to remap
66 * The returned physical address is the physical (CPU) mapping for
67 * the memory address given. It is only valid to use this function on
75 static inline unsigned long virt_to_phys(volatile void * address)
77 return __pa(address);
81 * phys_to_virt - map physical address to virtual
82 * @address: address to remap
84 * The returned virtual address is a current CPU mapping for
85 * the memory address given. It is only valid to use this function on
93 static inline void * phys_to_virt(unsigned long address)
95 return __va(address);
99 * Change "struct page" to physical address.
107 * @offset: bus address of the memory
113 * address is not guaranteed to be usable directly as a virtual
114 * address.
143 * ISA I/O bus memory addresses are 1:1 with the physical address.