diff options
author | Christoph Hellwig <hch@lst.de> | 2015-08-28 09:27:14 +0200 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2015-10-15 00:21:07 +0200 |
commit | 2f8e2c877784a0b23f02b41550170a24e14f5c95 (patch) | |
tree | 70578f580b363151376a064ff9515fb8b100f974 /include/linux/io-64-nonatomic-lo-hi.h | |
parent | 049e6dde7e57f0054fdc49102e7ef4830c698b46 (diff) | |
download | talos-obmc-linux-2f8e2c877784a0b23f02b41550170a24e14f5c95.tar.gz talos-obmc-linux-2f8e2c877784a0b23f02b41550170a24e14f5c95.zip |
move io-64-nonatomic*.h out of asm-generic
These are not implementations of default architecture code but helpers
for drivers. Move them to the place they belong to.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Acked-by: Darren Hart <dvhart@linux.intel.com>
Acked-by: Hitoshi Mitake <mitake.hitoshi@lab.ntt.co.jp>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'include/linux/io-64-nonatomic-lo-hi.h')
-rw-r--r-- | include/linux/io-64-nonatomic-lo-hi.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/include/linux/io-64-nonatomic-lo-hi.h b/include/linux/io-64-nonatomic-lo-hi.h new file mode 100644 index 000000000000..1a4315f97360 --- /dev/null +++ b/include/linux/io-64-nonatomic-lo-hi.h @@ -0,0 +1,32 @@ +#ifndef _LINUX_IO_64_NONATOMIC_LO_HI_H_ +#define _LINUX_IO_64_NONATOMIC_LO_HI_H_ + +#include <linux/io.h> +#include <asm-generic/int-ll64.h> + +static inline __u64 lo_hi_readq(const volatile void __iomem *addr) +{ + const volatile u32 __iomem *p = addr; + u32 low, high; + + low = readl(p); + high = readl(p + 1); + + return low + ((u64)high << 32); +} + +static inline void lo_hi_writeq(__u64 val, volatile void __iomem *addr) +{ + writel(val, addr); + writel(val >> 32, addr + 4); +} + +#ifndef readq +#define readq lo_hi_readq +#endif + +#ifndef writeq +#define writeq lo_hi_writeq +#endif + +#endif /* _LINUX_IO_64_NONATOMIC_LO_HI_H_ */ |