Home
last modified time | relevance | path

Searched refs:ioremap_np (Results 1 – 6 of 6) sorted by relevance

/linux/include/asm-generic/
H A Diomap.h104 #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
/linux/arch/sparc/include/asm/
H A Dio_64.h428 static inline void __iomem *ioremap_np(unsigned long offset, unsigned long size) in ioremap_np() function
433 #define ioremap_np ioremap_np macro
/linux/Documentation/driver-api/
H A Ddevice-io.rst370 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,
442 | ioremap_np() | Device-nGnRnE |
467 Can automatically select ioremap_np() over ioremap() according to platform
483 all required translations. Automatically selects ioremap_np() according to
/linux/arch/arm64/include/asm/
H A Dio.h284 #define ioremap_np(addr, size) \ macro
/linux/lib/
H A Ddevres.c51 addr = ioremap_np(offset, size); in __devm_ioremap()
/linux/drivers/of/
H A Daddress.c1128 return ioremap_np(res.start, resource_size(&res)); in of_iomap()
1163 mem = ioremap_np(res.start, resource_size(&res)); in of_io_request_and_map()