Searched refs:ioremap_np (Results 1 – 8 of 8) sorted by relevance
/linux-6.6.21/include/asm-generic/ ! |
D | iomap.h | 104 #ifndef ioremap_np 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
|
D | io.h | 1100 #ifndef ioremap_np 1101 #define ioremap_np ioremap_np macro 1102 static inline void __iomem *ioremap_np(phys_addr_t offset, size_t size) in ioremap_np() function
|
/linux-6.6.21/arch/sparc/include/asm/ ! |
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.6.21/Documentation/driver-api/ ! |
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.6.21/include/linux/ ! |
D | io.h | 92 return ioremap_np(offset, size) ?: ioremap(offset, size); in pci_remap_cfgspace()
|
/linux-6.6.21/arch/arm64/include/asm/ ! |
D | io.h | 148 #define ioremap_np(addr, size) \ macro
|
/linux-6.6.21/lib/ ! |
D | devres.c | 48 addr = ioremap_np(offset, size); in __devm_ioremap()
|
/linux-6.6.21/drivers/of/ ! |
D | address.c | 1199 return ioremap_np(res.start, resource_size(&res)); in of_iomap() 1234 mem = ioremap_np(res.start, resource_size(&res)); in of_io_request_and_map()
|