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"
12 #include "exec/memory.h"
15 #include "hw/sh4/sh.h"
16 #include "hw/timer/tmu012.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_transaction_begin(s
->timer
);
95 ptimer_set_limit(s
->timer
, s
->tcor
, 0);
96 ptimer_transaction_commit(s
->timer
);
100 ptimer_transaction_begin(s
->timer
);
101 ptimer_set_count(s
->timer
, s
->tcnt
);
102 ptimer_transaction_commit(s
->timer
);
105 ptimer_transaction_begin(s
->timer
);
107 /* Pause the timer if it is running. This may cause some
108 inaccuracy dure to rounding, but avoids a whole lot of other
110 ptimer_stop(s
->timer
);
113 /* ??? Need to recalculate expiry time after changing divisor. */
114 switch (value
& TIMER_TCR_TPSC
) {
115 case 0: freq
>>= 2; break;
116 case 1: freq
>>= 4; break;
117 case 2: freq
>>= 6; break;
118 case 3: freq
>>= 8; break;
119 case 4: freq
>>= 10; break;
122 if (s
->feat
& TIMER_FEAT_EXTCLK
) {
127 hw_error("sh_timer_write: Reserved TPSC value\n");
129 switch ((value
& TIMER_TCR_CKEG
) >> 3) {
135 if (s
->feat
& TIMER_FEAT_EXTCLK
) {
140 hw_error("sh_timer_write: Reserved CKEG value\n");
142 switch ((value
& TIMER_TCR_ICPE
) >> 6) {
147 if (s
->feat
& TIMER_FEAT_CAPT
) {
152 hw_error("sh_timer_write: Reserved ICPE value\n");
154 if ((value
& TIMER_TCR_UNF
) == 0) {
158 value
&= ~TIMER_TCR_UNF
;
160 if ((value
& TIMER_TCR_ICPF
) && (!(s
->feat
& TIMER_FEAT_CAPT
))) {
161 hw_error("sh_timer_write: Reserved ICPF value\n");
164 value
&= ~TIMER_TCR_ICPF
; /* capture not supported */
166 if (value
& TIMER_TCR_RESERVED
) {
167 hw_error("sh_timer_write: Reserved TCR bits set\n");
170 ptimer_set_limit(s
->timer
, s
->tcor
, 0);
171 ptimer_set_freq(s
->timer
, freq
);
173 /* Restart the timer if still enabled. */
174 ptimer_run(s
->timer
, 0);
176 ptimer_transaction_commit(s
->timer
);
179 if (s
->feat
& TIMER_FEAT_CAPT
) {
185 hw_error("sh_timer_write: Bad offset %x\n", (int)offset
);
190 static void sh_timer_start_stop(void *opaque
, int enable
)
192 sh_timer_state
*s
= (sh_timer_state
*)opaque
;
195 printf("sh_timer_start_stop %d (%d)\n", enable
, s
->enabled
);
198 ptimer_transaction_begin(s
->timer
);
199 if (s
->enabled
&& !enable
) {
200 ptimer_stop(s
->timer
);
202 if (!s
->enabled
&& enable
) {
203 ptimer_run(s
->timer
, 0);
205 ptimer_transaction_commit(s
->timer
);
206 s
->enabled
= !!enable
;
209 printf("sh_timer_start_stop done %d\n", s
->enabled
);
213 static void sh_timer_tick(void *opaque
)
215 sh_timer_state
*s
= (sh_timer_state
*)opaque
;
216 s
->int_level
= s
->enabled
;
220 static void *sh_timer_init(uint32_t freq
, int feat
, qemu_irq irq
)
224 s
= (sh_timer_state
*)g_malloc0(sizeof(sh_timer_state
));
227 s
->tcor
= 0xffffffff;
228 s
->tcnt
= 0xffffffff;
229 s
->tcpr
= 0xdeadbeef;
234 s
->timer
= ptimer_init(sh_timer_tick
, s
, PTIMER_POLICY_DEFAULT
);
236 sh_timer_write(s
, OFFSET_TCOR
>> 2, s
->tcor
);
237 sh_timer_write(s
, OFFSET_TCNT
>> 2, s
->tcnt
);
238 sh_timer_write(s
, OFFSET_TCPR
>> 2, s
->tcpr
);
239 sh_timer_write(s
, OFFSET_TCR
>> 2, s
->tcpr
);
240 /* ??? Save/restore. */
246 MemoryRegion iomem_p4
;
247 MemoryRegion iomem_a7
;
255 static uint64_t tmu012_read(void *opaque
, hwaddr offset
,
258 tmu012_state
*s
= (tmu012_state
*)opaque
;
261 printf("tmu012_read 0x%lx\n", (unsigned long) offset
);
264 if (offset
>= 0x20) {
265 if (!(s
->feat
& TMU012_FEAT_3CHAN
)) {
266 hw_error("tmu012_write: Bad channel offset %x\n", (int)offset
);
268 return sh_timer_read(s
->timer
[2], offset
- 0x20);
272 return sh_timer_read(s
->timer
[1], offset
- 0x14);
275 return sh_timer_read(s
->timer
[0], offset
- 0x08);
280 if ((s
->feat
& TMU012_FEAT_TOCR
) && offset
== 0)
283 hw_error("tmu012_write: Bad offset %x\n", (int)offset
);
287 static void tmu012_write(void *opaque
, hwaddr offset
,
288 uint64_t value
, unsigned size
)
290 tmu012_state
*s
= (tmu012_state
*)opaque
;
293 printf("tmu012_write 0x%lx 0x%08x\n", (unsigned long) offset
, value
);
296 if (offset
>= 0x20) {
297 if (!(s
->feat
& TMU012_FEAT_3CHAN
)) {
298 hw_error("tmu012_write: Bad channel offset %x\n", (int)offset
);
300 sh_timer_write(s
->timer
[2], offset
- 0x20, value
);
304 if (offset
>= 0x14) {
305 sh_timer_write(s
->timer
[1], offset
- 0x14, value
);
309 if (offset
>= 0x08) {
310 sh_timer_write(s
->timer
[0], offset
- 0x08, value
);
315 sh_timer_start_stop(s
->timer
[0], value
& (1 << 0));
316 sh_timer_start_stop(s
->timer
[1], value
& (1 << 1));
317 if (s
->feat
& TMU012_FEAT_3CHAN
) {
318 sh_timer_start_stop(s
->timer
[2], value
& (1 << 2));
320 if (value
& (1 << 2)) {
321 hw_error("tmu012_write: Bad channel\n");
329 if ((s
->feat
& TMU012_FEAT_TOCR
) && offset
== 0) {
330 s
->tocr
= value
& (1 << 0);
334 static const MemoryRegionOps tmu012_ops
= {
336 .write
= tmu012_write
,
337 .endianness
= DEVICE_NATIVE_ENDIAN
,
340 void tmu012_init(MemoryRegion
*sysmem
, hwaddr base
,
341 int feat
, uint32_t freq
,
342 qemu_irq ch0_irq
, qemu_irq ch1_irq
,
343 qemu_irq ch2_irq0
, qemu_irq ch2_irq1
)
346 int timer_feat
= (feat
& TMU012_FEAT_EXTCLK
) ? TIMER_FEAT_EXTCLK
: 0;
348 s
= (tmu012_state
*)g_malloc0(sizeof(tmu012_state
));
350 s
->timer
[0] = sh_timer_init(freq
, timer_feat
, ch0_irq
);
351 s
->timer
[1] = sh_timer_init(freq
, timer_feat
, ch1_irq
);
352 if (feat
& TMU012_FEAT_3CHAN
) {
353 s
->timer
[2] = sh_timer_init(freq
, timer_feat
| TIMER_FEAT_CAPT
,
354 ch2_irq0
); /* ch2_irq1 not supported */
357 memory_region_init_io(&s
->iomem
, NULL
, &tmu012_ops
, s
,
358 "timer", 0x100000000ULL
);
360 memory_region_init_alias(&s
->iomem_p4
, NULL
, "timer-p4",
361 &s
->iomem
, 0, 0x1000);
362 memory_region_add_subregion(sysmem
, P4ADDR(base
), &s
->iomem_p4
);
364 memory_region_init_alias(&s
->iomem_a7
, NULL
, "timer-a7",
365 &s
->iomem
, 0, 0x1000);
366 memory_region_add_subregion(sysmem
, A7ADDR(base
), &s
->iomem_a7
);
367 /* ??? Save/restore. */