Searched refs:ioremap_np (Results 1 – 8 of 8) sorted by relevance
/linux-6.3-rc2/include/asm-generic/ |
A D | iomap.h | 106 #define ioremap_np ioremap_np macro 107 static inline void __iomem *ioremap_np(phys_addr_t offset, size_t size) in ioremap_np() function
|
A D | io.h | 1119 #ifndef ioremap_np 1120 #define ioremap_np ioremap_np macro 1121 static inline void __iomem *ioremap_np(phys_addr_t offset, size_t size) in ioremap_np() function
|
/linux-6.3-rc2/arch/sparc/include/asm/ |
A D | io_64.h | 429 static inline void __iomem *ioremap_np(unsigned long offset, unsigned long size) in ioremap_np() function 434 #define ioremap_np ioremap_np macro
|
/linux-6.3-rc2/Documentation/driver-api/ |
A D | device-io.rst | 370 ioremap_np() 379 devices. ioremap_np() explicitly requests non-posted semantics, which means 385 ``IORESOURCE_MEM_NONPOSTED`` flag for a resource that requires ioremap_np() 390 The bare ioremap_np() is only available on some architectures; on others, it 398 ioremap_np() should never be used for PCI drivers. PCI memory space writes are 399 always posted, even on architectures that otherwise implement ioremap_np(). 400 Using ioremap_np() for PCI BARs will at best result in posted write semantics, 441 | ioremap_np() | Device-nGnRnE | 466 Can automatically select ioremap_np() over ioremap() according to platform 482 all required translations. Automatically selects ioremap_np() according to
|
/linux-6.3-rc2/include/linux/ |
A D | io.h | 87 return ioremap_np(offset, size) ?: ioremap(offset, size); in pci_remap_cfgspace()
|
/linux-6.3-rc2/arch/arm64/include/asm/ |
A D | io.h | 149 #define ioremap_np(addr, size) \ macro
|
/linux-6.3-rc2/lib/ |
A D | devres.c | 48 addr = ioremap_np(offset, size); in __devm_ioremap()
|
/linux-6.3-rc2/drivers/of/ |
A D | address.c | 909 return ioremap_np(res.start, resource_size(&res)); in of_iomap() 944 mem = ioremap_np(res.start, resource_size(&res)); in of_io_request_and_map()
|
Completed in 17 milliseconds