goldfish.h 311 B

123456789101112131415
  1. #ifndef __LINUX_GOLDFISH_H
  2. #define __LINUX_GOLDFISH_H
  3. /* Helpers for Goldfish virtual platform */
  4. static inline void gf_write64(unsigned long data,
  5. void __iomem *portl, void __iomem *porth)
  6. {
  7. writel((u32)data, portl);
  8. #ifdef CONFIG_64BIT
  9. writel(data>>32, porth);
  10. #endif
  11. }
  12. #endif /* __LINUX_GOLDFISH_H */