/openbmc/linux/arch/x86/kernel/ |
H A D | head64.c | 88 static void __head *fixup_pointer(void *ptr, unsigned long physaddr) in fixup_pointer() argument 90 return ptr - (void *)_text + (void *)physaddr; in fixup_pointer() 93 static unsigned long __head *fixup_long(void *ptr, unsigned long physaddr) in fixup_long() argument 95 return fixup_pointer(ptr, physaddr); in fixup_long() 99 static unsigned int __head *fixup_int(void *ptr, unsigned long physaddr) in fixup_int() argument 101 return fixup_pointer(ptr, physaddr); in fixup_int() 104 static bool __head check_la57_support(unsigned long physaddr) in check_la57_support() argument 113 *fixup_int(&__pgtable_l5_enabled, physaddr) = 1; in check_la57_support() 114 *fixup_int(&pgdir_shift, physaddr) = 48; in check_la57_support() 115 *fixup_int(&ptrs_per_p4d, physaddr) = 512; in check_la57_support() [all …]
|
/openbmc/linux/arch/m68k/mm/ |
H A D | kmap.c | 158 void __iomem *__ioremap(unsigned long physaddr, unsigned long size, int cacheflag) in __ioremap() argument 172 if (!size || physaddr > (unsigned long)(-size)) in __ioremap() 177 if ((physaddr >= 0x40000000) && (physaddr + size < 0x60000000) in __ioremap() 179 return (void __iomem *)physaddr; in __ioremap() 184 if (physaddr >= 0xff000000 && cacheflag == IOMAP_NOCACHE_SER) in __ioremap() 185 return (void __iomem *)physaddr; in __ioremap() 189 if (__cf_internalio(physaddr)) in __ioremap() 190 return (void __iomem *) physaddr; in __ioremap() 194 printk("ioremap: 0x%lx,0x%lx(%d) - ", physaddr, size, cacheflag); in __ioremap() 199 offset = physaddr & (IO_SIZE - 1); in __ioremap() [all …]
|
H A D | motorola.c | 291 unsigned long physaddr, virtaddr, size; in map_node() local 299 physaddr = m68k_memory[node].addr; in map_node() 300 virtaddr = (unsigned long)phys_to_virt(physaddr); in map_node() 301 physaddr |= m68k_supervisor_cachemode | in map_node() 304 physaddr |= _PAGE_GLOBAL040; in map_node() 309 printk ("\npa=%#lx va=%#lx ", physaddr & PAGE_MASK, in map_node() 319 pgd_val(*pgd_dir) = physaddr; in map_node() 322 physaddr += PGDIR_SIZE; in map_node() 342 pmd_val(*pmd_dir) = physaddr; in map_node() 343 physaddr += PMD_SIZE; in map_node() [all …]
|
/openbmc/linux/arch/m68k/include/asm/ |
H A D | nubus.h | 20 static inline void *nubus_remap_nocache_ser(unsigned long physaddr, in nubus_remap_nocache_ser() argument 23 return __ioremap(physaddr, size, IOMAP_NOCACHE_SER); in nubus_remap_nocache_ser() 26 static inline void *nubus_remap_nocache_nonser(unsigned long physaddr, in nubus_remap_nocache_nonser() argument 29 return __ioremap(physaddr, size, IOMAP_NOCACHE_NONSER); in nubus_remap_nocache_nonser() 32 static inline void *nbus_remap_writethrough(unsigned long physaddr, in nbus_remap_writethrough() argument 35 return __ioremap(physaddr, size, IOMAP_WRITETHROUGH); in nbus_remap_writethrough() 38 static inline void *nubus_remap_fullcache(unsigned long physaddr, in nubus_remap_fullcache() argument 41 return __ioremap(physaddr, size, IOMAP_FULL_CACHING); in nubus_remap_fullcache()
|
H A D | zorro.h | 20 static inline void __iomem *z_remap_nocache_ser(unsigned long physaddr, in z_remap_nocache_ser() argument 23 return __ioremap(physaddr, size, IOMAP_NOCACHE_SER); in z_remap_nocache_ser() 26 static inline void __iomem *z_remap_nocache_nonser(unsigned long physaddr, in z_remap_nocache_nonser() argument 29 return __ioremap(physaddr, size, IOMAP_NOCACHE_NONSER); in z_remap_nocache_nonser() 32 static inline void __iomem *z_remap_writethrough(unsigned long physaddr, in z_remap_writethrough() argument 35 return __ioremap(physaddr, size, IOMAP_WRITETHROUGH); in z_remap_writethrough() 37 static inline void __iomem *z_remap_fullcache(unsigned long physaddr, in z_remap_fullcache() argument 40 return __ioremap(physaddr, size, IOMAP_FULL_CACHING); in z_remap_fullcache()
|
H A D | kmap.h | 17 extern void __iomem *__ioremap(unsigned long physaddr, unsigned long size, 23 static inline void __iomem *ioremap(unsigned long physaddr, unsigned long size) in ioremap() argument 25 return __ioremap(physaddr, size, IOMAP_NOCACHE_SER); in ioremap() 30 static inline void __iomem *ioremap_wt(unsigned long physaddr, in ioremap_wt() argument 33 return __ioremap(physaddr, size, IOMAP_WRITETHROUGH); in ioremap_wt()
|
/openbmc/u-boot/arch/microblaze/include/asm/ |
H A D | io.h | 137 #define ioremap_nocache(physaddr, size) (physaddr) argument 138 #define ioremap_writethrough(physaddr, size) (physaddr) argument 139 #define ioremap_fullcache(physaddr, size) (physaddr) argument
|
/openbmc/linux/drivers/mtd/maps/ |
H A D | uclinux.c | 39 static unsigned long physaddr = -1; variable 40 module_param(physaddr, ulong, S_IRUGO); 74 if (physaddr == -1) in uclinux_mtd_init() 77 mapp->phys = physaddr; in uclinux_mtd_init()
|
/openbmc/linux/drivers/firmware/google/ |
H A D | vpd.c | 183 phys_addr_t physaddr, size_t size) in vpd_section_init() argument 187 sec->baseaddr = memremap(physaddr, size, MEMREMAP_WB); in vpd_section_init() 247 static int vpd_sections_init(phys_addr_t physaddr) in vpd_sections_init() argument 253 temp = memremap(physaddr, sizeof(struct vpd_cbmem), MEMREMAP_WB); in vpd_sections_init() 265 physaddr + sizeof(struct vpd_cbmem), in vpd_sections_init() 273 physaddr + sizeof(struct vpd_cbmem) + in vpd_sections_init()
|
/openbmc/dbus-sensors/src/mctp/ |
H A D | MCTPEndpoint.cpp | 46 const std::string& interface, const std::vector<uint8_t>& physaddr) : in MCTPDDevice() argument 47 connection(connection), interface(interface), physaddr(physaddr) in MCTPDDevice() 122 mctpdControlInterface, "AssignEndpoint", physaddr); in setup() 150 if (!physaddr.empty()) in describe() 153 auto it = physaddr.begin(); in describe() 154 for (; it != physaddr.end() - 1; it++) in describe()
|
H A D | MCTPEndpoint.hpp | 269 const std::vector<uint8_t>& physaddr); 287 const std::vector<uint8_t> physaddr; member in MCTPDDevice 319 uint8_t physaddr) : in I2CMCTPDDevice() argument 320 MCTPDDevice(connection, interfaceFromBus(bus), {physaddr}) in I2CMCTPDDevice()
|
H A D | MCTPReactor.hpp | 27 const std::string& interface, const std::vector<std::uint8_t>& physaddr,
|
/openbmc/linux/arch/parisc/kernel/ |
H A D | cache.c | 328 unsigned long physaddr) in __flush_cache_page() argument 345 flush_dcache_page_asm(physaddr, vmaddr); in __flush_cache_page() 347 flush_icache_page_asm(physaddr, vmaddr); in __flush_cache_page() 640 unsigned long physaddr = get_upa(mm, vmaddr); in flush_cache_page_if_present() 642 if (physaddr) in flush_cache_page_if_present() 643 __flush_cache_page(vma, vmaddr, PAGE_ALIGN_DOWN(physaddr)); in flush_cache_page_if_present() 827 unsigned long addr, physaddr; in flush_cache_vmap() local 851 physaddr = vm->phys_addr; in flush_cache_vmap() 854 flush_dcache_page_asm(physaddr, start); in flush_cache_vmap() 855 flush_icache_page_asm(physaddr, start); in flush_cache_vmap() [all …]
|
/openbmc/linux/arch/arm/include/asm/ |
H A D | memory.h | 84 #define XIP_VIRT_ADDR(physaddr) (MODULES_VADDR + ((physaddr) & 0x000fffff)) argument 129 #define XIP_VIRT_ADDR(physaddr) (physaddr) argument
|
/openbmc/linux/arch/powerpc/mm/ |
H A D | cacheflush.c | 84 static void flush_dcache_icache_phys(unsigned long physaddr) in flush_dcache_icache_phys() argument 88 unsigned long addr = physaddr & PAGE_MASK; in flush_dcache_icache_phys() 119 static void flush_dcache_icache_phys(unsigned long physaddr) in NOKPROBE_SYMBOL()
|
/openbmc/linux/drivers/scsi/ |
H A D | sgiwd93.c | 75 dma_addr_t physaddr; in fill_hpc_entries() local 79 physaddr = dma_map_single(hd->dev, addr, len, DMA_DIR(din)); in fill_hpc_entries() 80 scsi_pointer->dma_handle = physaddr; in fill_hpc_entries() 89 hcp->desc.pbuf = physaddr; in fill_hpc_entries() 93 physaddr += count; in fill_hpc_entries()
|
/openbmc/linux/drivers/net/wireless/broadcom/brcm80211/brcmfmac/ |
H A D | msgbuf.c | 282 dma_addr_t physaddr; member 322 dma_addr_t *physaddr, u32 *idx) in brcmf_msgbuf_alloc_pktid() argument 329 *physaddr = dma_map_single(dev, skb->data + data_offset, in brcmf_msgbuf_alloc_pktid() 332 if (dma_mapping_error(dev, *physaddr)) { in brcmf_msgbuf_alloc_pktid() 351 dma_unmap_single(dev, *physaddr, skb->len - data_offset, in brcmf_msgbuf_alloc_pktid() 357 array[*idx].physaddr = *physaddr; in brcmf_msgbuf_alloc_pktid() 380 dma_unmap_single(dev, pktid->physaddr, in brcmf_msgbuf_get_pktid() 407 dma_unmap_single(dev, pktid->physaddr, in brcmf_msgbuf_release_array() 706 dma_addr_t physaddr; in brcmf_msgbuf_txflow() local 728 &physaddr, &pktid)) { in brcmf_msgbuf_txflow() [all …]
|
/openbmc/linux/arch/nios2/boot/compressed/ |
H A D | console.c | 10 static void *my_ioremap(unsigned long physaddr) in my_ioremap() argument 12 return (void *)(physaddr | CONFIG_NIOS2_IO_REGION_BASE); in my_ioremap()
|
/openbmc/linux/arch/mips/include/asm/mach-ip27/ |
H A D | kernel-entry-init.h | 47 mtc0 t0, CP0_ENTRYLO0 # physaddr, VG, cach exlwr 50 mtc0 t0, CP0_ENTRYLO1 # physaddr, DVG, cach exlwr
|
/openbmc/linux/arch/arm/mach-omap1/ |
H A D | usb.c | 554 unsigned long lbaddr, physaddr; in omap_1510_local_bus_init() local 562 physaddr = tlb * 0x00100000 + PHYS_OFFSET; in omap_1510_local_bus_init() 566 omap_writel(physaddr >> 16, OMAP1510_LB_MMU_RAM_H); in omap_1510_local_bus_init() 567 omap_writel((physaddr & 0x0000fc00) | 0x300, OMAP1510_LB_MMU_RAM_L); in omap_1510_local_bus_init()
|
/openbmc/qemu/target/mips/sysemu/ |
H A D | meson.build | 7 'physaddr.c',
|
/openbmc/qemu/monitor/ |
H A D | hmp-cmds-target.c | 362 uint64_t physaddr; in hmp_gpa2hpa() local 370 physaddr = vtop(ptr, &local_err); in hmp_gpa2hpa() 376 addr, mr->name, (uint64_t) physaddr); in hmp_gpa2hpa()
|
/openbmc/linux/arch/nios2/include/asm/ |
H A D | io.h | 28 void __iomem *ioremap(unsigned long physaddr, unsigned long size);
|
/openbmc/linux/arch/arm64/mm/ |
H A D | Makefile | 11 obj-$(CONFIG_DEBUG_VIRTUAL) += physaddr.o
|
/openbmc/linux/arch/riscv/mm/ |
H A D | Makefile | 36 obj-$(CONFIG_DEBUG_VIRTUAL) += physaddr.o
|