Merge branch 'overlayfs-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mszer...
[linux-2.6-block.git] / include / linux / goldfish.h
CommitLineData
425f3740
A
1#ifndef __LINUX_GOLDFISH_H
2#define __LINUX_GOLDFISH_H
3
4/* Helpers for Goldfish virtual platform */
5
07d783fd
PST
6static inline void gf_write_ptr(const void *ptr, void __iomem *portl,
7 void __iomem *porth)
425f3740 8{
07d783fd 9 writel((u32)(unsigned long)ptr, portl);
8d9e9857 10#ifdef CONFIG_64BIT
07d783fd 11 writel((unsigned long)ptr >> 32, porth);
425f3740
A
12#endif
13}
14
07d783fd
PST
15static inline void gf_write_dma_addr(const dma_addr_t addr,
16 void __iomem *portl,
17 void __iomem *porth)
18{
19 writel((u32)addr, portl);
20#ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
21 writel(addr >> 32, porth);
22#endif
23}
24
25
425f3740 26#endif /* __LINUX_GOLDFISH_H */