Merge tag 'trace-printf-v6.13' of git://git.kernel.org/pub/scm/linux/kernel/git/trace...
[drm/drm-misc.git] / include / linux / goldfish.h
blobbcc17f95b90667d863103b98ab68049dab53de32
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef __LINUX_GOLDFISH_H
3 #define __LINUX_GOLDFISH_H
5 #include <linux/kernel.h>
6 #include <linux/types.h>
7 #include <linux/io.h>
9 /* Helpers for Goldfish virtual platform */
11 #ifndef gf_ioread32
12 #define gf_ioread32 ioread32
13 #endif
14 #ifndef gf_iowrite32
15 #define gf_iowrite32 iowrite32
16 #endif
18 static inline void gf_write_ptr(const void *ptr, void __iomem *portl,
19 void __iomem *porth)
21 const unsigned long addr = (unsigned long)ptr;
23 gf_iowrite32(lower_32_bits(addr), portl);
24 #ifdef CONFIG_64BIT
25 gf_iowrite32(upper_32_bits(addr), porth);
26 #endif
29 static inline void gf_write_dma_addr(const dma_addr_t addr,
30 void __iomem *portl,
31 void __iomem *porth)
33 gf_iowrite32(lower_32_bits(addr), portl);
34 #ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
35 gf_iowrite32(upper_32_bits(addr), porth);
36 #endif
40 #endif /* __LINUX_GOLDFISH_H */