1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _LINUX_IO_64_NONATOMIC_LO_HI_H_
3 #define _LINUX_IO_64_NONATOMIC_LO_HI_H_
6 #include <asm-generic/int-ll64.h>
8 static inline __u64
lo_hi_readq(const volatile void __iomem
*addr
)
10 const volatile u32 __iomem
*p
= addr
;
16 return low
+ ((u64
)high
<< 32);
19 static inline void lo_hi_writeq(__u64 val
, volatile void __iomem
*addr
)
22 writel(val
>> 32, addr
+ 4);
25 static inline __u64
lo_hi_readq_relaxed(const volatile void __iomem
*addr
)
27 const volatile u32 __iomem
*p
= addr
;
30 low
= readl_relaxed(p
);
31 high
= readl_relaxed(p
+ 1);
33 return low
+ ((u64
)high
<< 32);
36 static inline void lo_hi_writeq_relaxed(__u64 val
, volatile void __iomem
*addr
)
38 writel_relaxed(val
, addr
);
39 writel_relaxed(val
>> 32, addr
+ 4);
43 #define readq lo_hi_readq
47 #define writeq lo_hi_writeq
51 #define readq_relaxed lo_hi_readq_relaxed
54 #ifndef writeq_relaxed
55 #define writeq_relaxed lo_hi_writeq_relaxed
58 #endif /* _LINUX_IO_64_NONATOMIC_LO_HI_H_ */