Lines Matching refs:addr
125 static inline unsigned long long readq(void __iomem *addr)
127 return readl(addr) | (((unsigned long long)readl(addr + 4)) << 32LL);
132 static inline void writeq(unsigned long long v, void __iomem *addr)
134 writel(v & 0xffffffff, addr);
135 writel(v >> 32, addr + 4);
382 unsigned long addr;
388 addr = devp->hd_hpets->hp_hpet_phys;
390 if (addr & (PAGE_SIZE - 1))
394 return vm_iomap_memory(vma, addr, PAGE_SIZE);
963 struct acpi_resource_address64 addr;
967 status = acpi_resource_to_address64(res, &addr);
970 hdp->hd_phys_address = addr.address.minimum;
971 hdp->hd_address = ioremap(addr.address.minimum, addr.address.address_length);