blob: 0efacff0a1ce4db42d31038cd83163218239fcfe [file] [log] [blame]
Hitoshi Mitake797a7962012-02-07 11:45:33 +09001#ifndef _ASM_IO_64_NONATOMIC_LO_HI_H_
2#define _ASM_IO_64_NONATOMIC_LO_HI_H_
3
4#include <linux/io.h>
5#include <asm-generic/int-ll64.h>
6
Jason Baron3a044172014-07-04 13:27:04 +02007static inline __u64 lo_hi_readq(const volatile void __iomem *addr)
Hitoshi Mitake797a7962012-02-07 11:45:33 +09008{
9 const volatile u32 __iomem *p = addr;
10 u32 low, high;
11
12 low = readl(p);
13 high = readl(p + 1);
14
15 return low + ((u64)high << 32);
16}
Hitoshi Mitake797a7962012-02-07 11:45:33 +090017
Jason Baron3a044172014-07-04 13:27:04 +020018static inline void lo_hi_writeq(__u64 val, volatile void __iomem *addr)
Hitoshi Mitake797a7962012-02-07 11:45:33 +090019{
20 writel(val, addr);
21 writel(val >> 32, addr + 4);
22}
Jason Baron3a044172014-07-04 13:27:04 +020023
24#ifndef readq
25#define readq lo_hi_readq
26#endif
27
28#ifndef writeq
29#define writeq lo_hi_writeq
Hitoshi Mitake797a7962012-02-07 11:45:33 +090030#endif
31
32#endif /* _ASM_IO_64_NONATOMIC_LO_HI_H_ */