Lines Matching refs:base
16 void __iomem *base;
32 void __iomem *base = timerdrv->base;
40 time_low = gf_ioread32(base + TIMER_TIME_LOW);
41 time_high = gf_ioread32(base + TIMER_TIME_HIGH);
51 void __iomem *base = timerdrv->base;
53 gf_iowrite32(0, base + TIMER_ALARM_HIGH);
54 gf_iowrite32(0, base + TIMER_ALARM_LOW);
55 gf_iowrite32(1, base + TIMER_IRQ_ENABLED);
63 void __iomem *base = timerdrv->base;
65 gf_iowrite32(0, base + TIMER_IRQ_ENABLED);
74 void __iomem *base = timerdrv->base;
81 gf_iowrite32(upper_32_bits(now), base + TIMER_ALARM_HIGH);
82 gf_iowrite32(lower_32_bits(now), base + TIMER_ALARM_LOW);
91 void __iomem *base = timerdrv->base;
93 gf_iowrite32(1, base + TIMER_CLEAR_INTERRUPT);
100 int __init goldfish_timer_init(int irq, void __iomem *base)
109 timerdrv->base = base;
121 .start = (unsigned long)base,
122 .end = (unsigned long)base + 0xfff,