Lines Matching full:addr

10 void rust_helper_iounmap(void __iomem *addr)  in rust_helper_iounmap()  argument
12 iounmap(addr); in rust_helper_iounmap()
15 u8 rust_helper_readb(const void __iomem *addr) in rust_helper_readb() argument
17 return readb(addr); in rust_helper_readb()
20 u16 rust_helper_readw(const void __iomem *addr) in rust_helper_readw() argument
22 return readw(addr); in rust_helper_readw()
25 u32 rust_helper_readl(const void __iomem *addr) in rust_helper_readl() argument
27 return readl(addr); in rust_helper_readl()
31 u64 rust_helper_readq(const void __iomem *addr) in rust_helper_readq() argument
33 return readq(addr); in rust_helper_readq()
37 void rust_helper_writeb(u8 value, void __iomem *addr) in rust_helper_writeb() argument
39 writeb(value, addr); in rust_helper_writeb()
42 void rust_helper_writew(u16 value, void __iomem *addr) in rust_helper_writew() argument
44 writew(value, addr); in rust_helper_writew()
47 void rust_helper_writel(u32 value, void __iomem *addr) in rust_helper_writel() argument
49 writel(value, addr); in rust_helper_writel()
53 void rust_helper_writeq(u64 value, void __iomem *addr) in rust_helper_writeq() argument
55 writeq(value, addr); in rust_helper_writeq()
59 u8 rust_helper_readb_relaxed(const void __iomem *addr) in rust_helper_readb_relaxed() argument
61 return readb_relaxed(addr); in rust_helper_readb_relaxed()
64 u16 rust_helper_readw_relaxed(const void __iomem *addr) in rust_helper_readw_relaxed() argument
66 return readw_relaxed(addr); in rust_helper_readw_relaxed()
69 u32 rust_helper_readl_relaxed(const void __iomem *addr) in rust_helper_readl_relaxed() argument
71 return readl_relaxed(addr); in rust_helper_readl_relaxed()
75 u64 rust_helper_readq_relaxed(const void __iomem *addr) in rust_helper_readq_relaxed() argument
77 return readq_relaxed(addr); in rust_helper_readq_relaxed()
81 void rust_helper_writeb_relaxed(u8 value, void __iomem *addr) in rust_helper_writeb_relaxed() argument
83 writeb_relaxed(value, addr); in rust_helper_writeb_relaxed()
86 void rust_helper_writew_relaxed(u16 value, void __iomem *addr) in rust_helper_writew_relaxed() argument
88 writew_relaxed(value, addr); in rust_helper_writew_relaxed()
91 void rust_helper_writel_relaxed(u32 value, void __iomem *addr) in rust_helper_writel_relaxed() argument
93 writel_relaxed(value, addr); in rust_helper_writel_relaxed()
97 void rust_helper_writeq_relaxed(u64 value, void __iomem *addr) in rust_helper_writeq_relaxed() argument
99 writeq_relaxed(value, addr); in rust_helper_writeq_relaxed()