2 * SuperH Timer modules.
4 * Copyright (c) 2007 Magnus Damm
5 * Based on arm_timer.c by Paul Brook
6 * Copyright (c) 2005-2006 CodeSourcery.
8 * This code is licensed under the GPL.
11 #include "qemu/osdep.h"
14 #include "hw/sh4/sh.h"
15 #include "qemu/timer.h"
16 #include "qemu/main-loop.h"
17 #include "hw/ptimer.h"
21 #define TIMER_TCR_TPSC (7 << 0)
22 #define TIMER_TCR_CKEG (3 << 3)
23 #define TIMER_TCR_UNIE (1 << 5)
24 #define TIMER_TCR_ICPE (3 << 6)
25 #define TIMER_TCR_UNF (1 << 8)
26 #define TIMER_TCR_ICPF (1 << 9)
27 #define TIMER_TCR_RESERVED (0x3f << 10)
29 #define TIMER_FEAT_CAPT (1 << 0)
30 #define TIMER_FEAT_EXTCLK (1 << 1)
51 /* Check all active timers, and schedule the next timer interrupt. */
53 static void sh_timer_update(sh_timer_state *s)
55 int new_level = s->int_level && (s->tcr & TIMER_TCR_UNIE);
57 if (new_level != s->old_level)
58 qemu_set_irq (s->irq, new_level);
60 s->old_level = s->int_level;
61 s->int_level = new_level;
64 static uint32_t sh_timer_read(void *opaque, hwaddr offset)
66 sh_timer_state *s = (sh_timer_state *)opaque;
68 switch (offset >> 2) {
72 return ptimer_get_count(s->timer);
74 return s->tcr | (s->int_level ? TIMER_TCR_UNF : 0);
76 if (s->feat & TIMER_FEAT_CAPT)
80 hw_error("sh_timer_read: Bad offset %x\n", (int)offset);
85 static void sh_timer_write(void *opaque, hwaddr offset,
88 sh_timer_state *s = (sh_timer_state *)opaque;
91 switch (offset >> 2) {
94 ptimer_set_limit(s->timer, s->tcor, 0);
98 ptimer_set_count(s->timer, s->tcnt);
102 /* Pause the timer if it is running. This may cause some
103 inaccuracy dure to rounding, but avoids a whole lot of other
105 ptimer_stop(s->timer);
108 /* ??? Need to recalculate expiry time after changing divisor. */
109 switch (value & TIMER_TCR_TPSC) {
110 case 0: freq >>= 2; break;
111 case 1: freq >>= 4; break;
112 case 2: freq >>= 6; break;
113 case 3: freq >>= 8; break;
114 case 4: freq >>= 10; break;
116 case 7: if (s->feat & TIMER_FEAT_EXTCLK) break;
117 default: hw_error("sh_timer_write: Reserved TPSC value\n"); break;
119 switch ((value & TIMER_TCR_CKEG) >> 3) {
123 case 3: if (s->feat & TIMER_FEAT_EXTCLK) break;
124 default: hw_error("sh_timer_write: Reserved CKEG value\n"); break;
126 switch ((value & TIMER_TCR_ICPE) >> 6) {
129 case 3: if (s->feat & TIMER_FEAT_CAPT) break;
130 default: hw_error("sh_timer_write: Reserved ICPE value\n"); break;
132 if ((value & TIMER_TCR_UNF) == 0)
135 value &= ~TIMER_TCR_UNF;
137 if ((value & TIMER_TCR_ICPF) && (!(s->feat & TIMER_FEAT_CAPT)))
138 hw_error("sh_timer_write: Reserved ICPF value\n");
140 value &= ~TIMER_TCR_ICPF; /* capture not supported */
142 if (value & TIMER_TCR_RESERVED)
143 hw_error("sh_timer_write: Reserved TCR bits set\n");
145 ptimer_set_limit(s->timer, s->tcor, 0);
146 ptimer_set_freq(s->timer, freq);
148 /* Restart the timer if still enabled. */
149 ptimer_run(s->timer, 0);
153 if (s->feat & TIMER_FEAT_CAPT) {
158 hw_error("sh_timer_write: Bad offset %x\n", (int)offset);
163 static void sh_timer_start_stop(void *opaque, int enable)
165 sh_timer_state *s = (sh_timer_state *)opaque;
168 printf("sh_timer_start_stop %d (%d)\n", enable, s->enabled);
171 if (s->enabled && !enable) {
172 ptimer_stop(s->timer);
174 if (!s->enabled && enable) {
175 ptimer_run(s->timer, 0);
177 s->enabled = !!enable;
180 printf("sh_timer_start_stop done %d\n", s->enabled);
184 static void sh_timer_tick(void *opaque)
186 sh_timer_state *s = (sh_timer_state *)opaque;
187 s->int_level = s->enabled;
191 static void *sh_timer_init(uint32_t freq, int feat, qemu_irq irq)
196 s = (sh_timer_state *)g_malloc0(sizeof(sh_timer_state));
199 s->tcor = 0xffffffff;
200 s->tcnt = 0xffffffff;
201 s->tcpr = 0xdeadbeef;
206 bh = qemu_bh_new(sh_timer_tick, s);
207 s->timer = ptimer_init(bh, PTIMER_POLICY_DEFAULT);
209 sh_timer_write(s, OFFSET_TCOR >> 2, s->tcor);
210 sh_timer_write(s, OFFSET_TCNT >> 2, s->tcnt);
211 sh_timer_write(s, OFFSET_TCPR >> 2, s->tcpr);
212 sh_timer_write(s, OFFSET_TCR >> 2, s->tcpr);
213 /* ??? Save/restore. */
219 MemoryRegion iomem_p4;
220 MemoryRegion iomem_a7;
228 static uint64_t tmu012_read(void *opaque, hwaddr offset,
231 tmu012_state *s = (tmu012_state *)opaque;
234 printf("tmu012_read 0x%lx\n", (unsigned long) offset);
237 if (offset >= 0x20) {
238 if (!(s->feat & TMU012_FEAT_3CHAN))
239 hw_error("tmu012_write: Bad channel offset %x\n", (int)offset);
240 return sh_timer_read(s->timer[2], offset - 0x20);
244 return sh_timer_read(s->timer[1], offset - 0x14);
247 return sh_timer_read(s->timer[0], offset - 0x08);
252 if ((s->feat & TMU012_FEAT_TOCR) && offset == 0)
255 hw_error("tmu012_write: Bad offset %x\n", (int)offset);
259 static void tmu012_write(void *opaque, hwaddr offset,
260 uint64_t value, unsigned size)
262 tmu012_state *s = (tmu012_state *)opaque;
265 printf("tmu012_write 0x%lx 0x%08x\n", (unsigned long) offset, value);
268 if (offset >= 0x20) {
269 if (!(s->feat & TMU012_FEAT_3CHAN))
270 hw_error("tmu012_write: Bad channel offset %x\n", (int)offset);
271 sh_timer_write(s->timer[2], offset - 0x20, value);
275 if (offset >= 0x14) {
276 sh_timer_write(s->timer[1], offset - 0x14, value);
280 if (offset >= 0x08) {
281 sh_timer_write(s->timer[0], offset - 0x08, value);
286 sh_timer_start_stop(s->timer[0], value & (1 << 0));
287 sh_timer_start_stop(s->timer[1], value & (1 << 1));
288 if (s->feat & TMU012_FEAT_3CHAN)
289 sh_timer_start_stop(s->timer[2], value & (1 << 2));
291 if (value & (1 << 2))
292 hw_error("tmu012_write: Bad channel\n");
298 if ((s->feat & TMU012_FEAT_TOCR) && offset == 0) {
299 s->tocr = value & (1 << 0);
303 static const MemoryRegionOps tmu012_ops = {
305 .write = tmu012_write,
306 .endianness = DEVICE_NATIVE_ENDIAN,
309 void tmu012_init(MemoryRegion *sysmem, hwaddr base,
310 int feat, uint32_t freq,
311 qemu_irq ch0_irq, qemu_irq ch1_irq,
312 qemu_irq ch2_irq0, qemu_irq ch2_irq1)
315 int timer_feat = (feat & TMU012_FEAT_EXTCLK) ? TIMER_FEAT_EXTCLK : 0;
317 s = (tmu012_state *)g_malloc0(sizeof(tmu012_state));
319 s->timer[0] = sh_timer_init(freq, timer_feat, ch0_irq);
320 s->timer[1] = sh_timer_init(freq, timer_feat, ch1_irq);
321 if (feat & TMU012_FEAT_3CHAN)
322 s->timer[2] = sh_timer_init(freq, timer_feat | TIMER_FEAT_CAPT,
323 ch2_irq0); /* ch2_irq1 not supported */
325 memory_region_init_io(&s->iomem, NULL, &tmu012_ops, s,
326 "timer", 0x100000000ULL);
328 memory_region_init_alias(&s->iomem_p4, NULL, "timer-p4",
329 &s->iomem, 0, 0x1000);
330 memory_region_add_subregion(sysmem, P4ADDR(base), &s->iomem_p4);
332 memory_region_init_alias(&s->iomem_a7, NULL, "timer-a7",
333 &s->iomem, 0, 0x1000);
334 memory_region_add_subregion(sysmem, A7ADDR(base), &s->iomem_a7);
335 /* ??? Save/restore. */