• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/mips/include/asm/

Lines Matching defs:address

55  * load/store instructions. mips_io_port_base is the virtual address to
57 * assumes that this is an address that can be loaded with a single lui
107 * @address: address to remap
109 * The returned physical address is the physical (CPU) mapping for
110 * the memory address given. It is only valid to use this function on
117 static inline unsigned long virt_to_phys(volatile const void *address)
119 return (unsigned long)address - PAGE_OFFSET + PHYS_OFFSET;
123 * phys_to_virt - map physical address to virtual
124 * @address: address to remap
126 * The returned virtual address is a current CPU mapping for
127 * the memory address given. It is only valid to use this function on
134 static inline void * phys_to_virt(unsigned long address)
136 return (void *)(address + PAGE_OFFSET - PHYS_OFFSET);
140 * ISA I/O bus memory addresses are 1:1 with the physical address.
142 static inline unsigned long isa_virt_to_bus(volatile void * address)
144 return (unsigned long)address - PAGE_OFFSET;
147 static inline void * isa_bus_to_virt(unsigned long address)
149 return (void *)(address + PAGE_OFFSET);
164 * Change "struct page" to physical address.
203 * Map uncached objects in the low 512MB of address
219 * @offset: bus address of the memory
225 * address is not guaranteed to be usable directly as a virtual
226 * address.
233 * @offset: bus address of the memory
239 * address is not guaranteed to be usable directly as a virtual
240 * address.
255 * @offset: bus address of the memory
261 * address is not guaranteed to be usable directly as a virtual
262 * address.
598 * Avoid interrupt mucking, just adjust the address for 4-byte access.