Lines Matching full:addr

16 void rust_helper_iounmap(void __iomem *addr)  in rust_helper_iounmap()  argument
18 iounmap(addr); in rust_helper_iounmap()
21 u8 rust_helper_readb(const void __iomem *addr) in rust_helper_readb() argument
23 return readb(addr); in rust_helper_readb()
26 u16 rust_helper_readw(const void __iomem *addr) in rust_helper_readw() argument
28 return readw(addr); in rust_helper_readw()
31 u32 rust_helper_readl(const void __iomem *addr) in rust_helper_readl() argument
33 return readl(addr); in rust_helper_readl()
37 u64 rust_helper_readq(const void __iomem *addr) in rust_helper_readq() argument
39 return readq(addr); in rust_helper_readq()
43 void rust_helper_writeb(u8 value, void __iomem *addr) in rust_helper_writeb() argument
45 writeb(value, addr); in rust_helper_writeb()
48 void rust_helper_writew(u16 value, void __iomem *addr) in rust_helper_writew() argument
50 writew(value, addr); in rust_helper_writew()
53 void rust_helper_writel(u32 value, void __iomem *addr) in rust_helper_writel() argument
55 writel(value, addr); in rust_helper_writel()
59 void rust_helper_writeq(u64 value, void __iomem *addr) in rust_helper_writeq() argument
61 writeq(value, addr); in rust_helper_writeq()
65 u8 rust_helper_readb_relaxed(const void __iomem *addr) in rust_helper_readb_relaxed() argument
67 return readb_relaxed(addr); in rust_helper_readb_relaxed()
70 u16 rust_helper_readw_relaxed(const void __iomem *addr) in rust_helper_readw_relaxed() argument
72 return readw_relaxed(addr); in rust_helper_readw_relaxed()
75 u32 rust_helper_readl_relaxed(const void __iomem *addr) in rust_helper_readl_relaxed() argument
77 return readl_relaxed(addr); in rust_helper_readl_relaxed()
81 u64 rust_helper_readq_relaxed(const void __iomem *addr) in rust_helper_readq_relaxed() argument
83 return readq_relaxed(addr); in rust_helper_readq_relaxed()
87 void rust_helper_writeb_relaxed(u8 value, void __iomem *addr) in rust_helper_writeb_relaxed() argument
89 writeb_relaxed(value, addr); in rust_helper_writeb_relaxed()
92 void rust_helper_writew_relaxed(u16 value, void __iomem *addr) in rust_helper_writew_relaxed() argument
94 writew_relaxed(value, addr); in rust_helper_writew_relaxed()
97 void rust_helper_writel_relaxed(u32 value, void __iomem *addr) in rust_helper_writel_relaxed() argument
99 writel_relaxed(value, addr); in rust_helper_writel_relaxed()
103 void rust_helper_writeq_relaxed(u64 value, void __iomem *addr) in rust_helper_writeq_relaxed() argument
105 writeq_relaxed(value, addr); in rust_helper_writeq_relaxed()