You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
311 B
15 lines
311 B
#ifndef __LINUX_GOLDFISH_H
|
|
#define __LINUX_GOLDFISH_H
|
|
|
|
/* Helpers for Goldfish virtual platform */
|
|
|
|
static inline void gf_write64(unsigned long data,
|
|
void __iomem *portl, void __iomem *porth)
|
|
{
|
|
writel((u32)data, portl);
|
|
#ifdef CONFIG_64BIT
|
|
writel(data>>32, porth);
|
|
#endif
|
|
}
|
|
|
|
#endif /* __LINUX_GOLDFISH_H */
|
|
|