4 * Copyright (c) 2008 OK Labs
5 * Copyright (c) 2011 NICTA Pty Ltd
6 * Originally written by Hans Jiang
7 * Updated by Peter Chubb
8 * Updated by Jean-Christophe Dubois <jcd@tribudubois.net>
10 * This code is licensed under GPL version 2 or later. See
11 * the COPYING file in the top-level directory.
15 #include "qemu/osdep.h"
16 #include "hw/timer/imx_gpt.h"
17 #include "hw/misc/imx_ccm.h"
18 #include "qemu/main-loop.h"
22 #define DEBUG_IMX_GPT 0
25 #define DPRINTF(fmt, args...) \
27 if (DEBUG_IMX_GPT) { \
28 fprintf(stderr, "[%s]%s: " fmt , TYPE_IMX_GPT, \
33 static char const *imx_gpt_reg_name(uint32_t reg
)
61 static const VMStateDescription vmstate_imx_timer_gpt
= {
64 .minimum_version_id
= 3,
65 .fields
= (VMStateField
[]) {
66 VMSTATE_UINT32(cr
, IMXGPTState
),
67 VMSTATE_UINT32(pr
, IMXGPTState
),
68 VMSTATE_UINT32(sr
, IMXGPTState
),
69 VMSTATE_UINT32(ir
, IMXGPTState
),
70 VMSTATE_UINT32(ocr1
, IMXGPTState
),
71 VMSTATE_UINT32(ocr2
, IMXGPTState
),
72 VMSTATE_UINT32(ocr3
, IMXGPTState
),
73 VMSTATE_UINT32(icr1
, IMXGPTState
),
74 VMSTATE_UINT32(icr2
, IMXGPTState
),
75 VMSTATE_UINT32(cnt
, IMXGPTState
),
76 VMSTATE_UINT32(next_timeout
, IMXGPTState
),
77 VMSTATE_UINT32(next_int
, IMXGPTState
),
78 VMSTATE_UINT32(freq
, IMXGPTState
),
79 VMSTATE_PTIMER(timer
, IMXGPTState
),
84 static const IMXClk imx_gpt_clocks
[] = {
85 CLK_NONE
, /* 000 No clock source */
86 CLK_IPG
, /* 001 ipg_clk, 532MHz*/
87 CLK_IPG_HIGH
, /* 010 ipg_clk_highfreq */
88 CLK_NONE
, /* 011 not defined */
89 CLK_32k
, /* 100 ipg_clk_32k */
90 CLK_NONE
, /* 101 not defined */
91 CLK_NONE
, /* 110 not defined */
92 CLK_NONE
, /* 111 not defined */
95 static void imx_gpt_set_freq(IMXGPTState
*s
)
97 uint32_t clksrc
= extract32(s
->cr
, GPT_CR_CLKSRC_SHIFT
, 3);
99 s
->freq
= imx_ccm_get_clock_frequency(s
->ccm
,
100 imx_gpt_clocks
[clksrc
]) / (1 + s
->pr
);
102 DPRINTF("Setting clksrc %d to frequency %d\n", clksrc
, s
->freq
);
105 ptimer_set_freq(s
->timer
, s
->freq
);
109 static void imx_gpt_update_int(IMXGPTState
*s
)
111 if ((s
->sr
& s
->ir
) && (s
->cr
& GPT_CR_EN
)) {
112 qemu_irq_raise(s
->irq
);
114 qemu_irq_lower(s
->irq
);
118 static uint32_t imx_gpt_update_count(IMXGPTState
*s
)
120 s
->cnt
= s
->next_timeout
- (uint32_t)ptimer_get_count(s
->timer
);
125 static inline uint32_t imx_gpt_find_limit(uint32_t count
, uint32_t reg
,
128 if ((count
< reg
) && (timeout
> reg
)) {
135 static void imx_gpt_compute_next_timeout(IMXGPTState
*s
, bool event
)
137 uint32_t timeout
= GPT_TIMER_MAX
;
141 if (!(s
->cr
& GPT_CR_EN
)) {
142 /* if not enabled just return */
146 /* update the count */
147 count
= imx_gpt_update_count(s
);
151 * This is an event (the ptimer reached 0 and stopped), and the
152 * timer counter is now equal to s->next_timeout.
154 if (!(s
->cr
& GPT_CR_FRR
) && (count
== s
->ocr1
)) {
155 /* We are in restart mode and we crossed the compare channel 1
156 * value. We need to reset the counter to 0.
158 count
= s
->cnt
= s
->next_timeout
= 0;
159 } else if (count
== GPT_TIMER_MAX
) {
160 /* We reached GPT_TIMER_MAX so we need to rollover */
161 count
= s
->cnt
= s
->next_timeout
= 0;
165 /* now, find the next timeout related to count */
167 if (s
->ir
& GPT_IR_OF1IE
) {
168 timeout
= imx_gpt_find_limit(count
, s
->ocr1
, timeout
);
170 if (s
->ir
& GPT_IR_OF2IE
) {
171 timeout
= imx_gpt_find_limit(count
, s
->ocr2
, timeout
);
173 if (s
->ir
& GPT_IR_OF3IE
) {
174 timeout
= imx_gpt_find_limit(count
, s
->ocr3
, timeout
);
177 /* find the next set of interrupts to raise for next timer event */
180 if ((s
->ir
& GPT_IR_OF1IE
) && (timeout
== s
->ocr1
)) {
181 s
->next_int
|= GPT_SR_OF1
;
183 if ((s
->ir
& GPT_IR_OF2IE
) && (timeout
== s
->ocr2
)) {
184 s
->next_int
|= GPT_SR_OF2
;
186 if ((s
->ir
& GPT_IR_OF3IE
) && (timeout
== s
->ocr3
)) {
187 s
->next_int
|= GPT_SR_OF3
;
189 if ((s
->ir
& GPT_IR_ROVIE
) && (timeout
== GPT_TIMER_MAX
)) {
190 s
->next_int
|= GPT_SR_ROV
;
193 /* the new range to count down from */
194 limit
= timeout
- imx_gpt_update_count(s
);
198 * if we reach here, then QEMU is running too slow and we pass the
199 * timeout limit while computing it. Let's deliver the interrupt
200 * and compute a new limit.
202 s
->sr
|= s
->next_int
;
204 imx_gpt_compute_next_timeout(s
, event
);
206 imx_gpt_update_int(s
);
208 /* New timeout value */
209 s
->next_timeout
= timeout
;
211 /* reset the limit to the computed range */
212 ptimer_set_limit(s
->timer
, limit
, 1);
216 static uint64_t imx_gpt_read(void *opaque
, hwaddr offset
, unsigned size
)
218 IMXGPTState
*s
= IMX_GPT(opaque
);
219 uint32_t reg_value
= 0;
221 switch (offset
>> 2) {
222 case 0: /* Control Register */
226 case 1: /* prescaler */
230 case 2: /* Status Register */
234 case 3: /* Interrupt Register */
238 case 4: /* Output Compare Register 1 */
242 case 5: /* Output Compare Register 2 */
246 case 6: /* Output Compare Register 3 */
250 case 7: /* input Capture Register 1 */
251 qemu_log_mask(LOG_UNIMP
, "[%s]%s: icr1 feature is not implemented\n",
252 TYPE_IMX_GPT
, __func__
);
256 case 8: /* input Capture Register 2 */
257 qemu_log_mask(LOG_UNIMP
, "[%s]%s: icr2 feature is not implemented\n",
258 TYPE_IMX_GPT
, __func__
);
263 imx_gpt_update_count(s
);
268 qemu_log_mask(LOG_GUEST_ERROR
, "[%s]%s: Bad register at offset 0x%"
269 HWADDR_PRIx
"\n", TYPE_IMX_GPT
, __func__
, offset
);
273 DPRINTF("(%s) = 0x%08x\n", imx_gpt_reg_name(offset
>> 2), reg_value
);
278 static void imx_gpt_reset(DeviceState
*dev
)
280 IMXGPTState
*s
= IMX_GPT(dev
);
283 ptimer_stop(s
->timer
);
286 * Soft reset doesn't touch some bits; hard reset clears them
288 s
->cr
&= ~(GPT_CR_EN
|GPT_CR_ENMOD
|GPT_CR_STOPEN
|GPT_CR_DOZEN
|
289 GPT_CR_WAITEN
|GPT_CR_DBGEN
);
294 s
->ocr1
= GPT_TIMER_MAX
;
295 s
->ocr2
= GPT_TIMER_MAX
;
296 s
->ocr3
= GPT_TIMER_MAX
;
300 s
->next_timeout
= GPT_TIMER_MAX
;
303 /* compute new freq */
306 /* reset the limit to GPT_TIMER_MAX */
307 ptimer_set_limit(s
->timer
, GPT_TIMER_MAX
, 1);
309 /* if the timer is still enabled, restart it */
310 if (s
->freq
&& (s
->cr
& GPT_CR_EN
)) {
311 ptimer_run(s
->timer
, 1);
315 static void imx_gpt_write(void *opaque
, hwaddr offset
, uint64_t value
,
318 IMXGPTState
*s
= IMX_GPT(opaque
);
321 DPRINTF("(%s, value = 0x%08x)\n", imx_gpt_reg_name(offset
>> 2),
324 switch (offset
>> 2) {
327 s
->cr
= value
& ~0x7c14;
328 if (s
->cr
& GPT_CR_SWR
) { /* force reset */
329 /* handle the reset */
330 imx_gpt_reset(DEVICE(s
));
332 /* set our freq, as the source might have changed */
335 if ((oldreg
^ s
->cr
) & GPT_CR_EN
) {
336 if (s
->cr
& GPT_CR_EN
) {
337 if (s
->cr
& GPT_CR_ENMOD
) {
338 s
->next_timeout
= GPT_TIMER_MAX
;
339 ptimer_set_count(s
->timer
, GPT_TIMER_MAX
);
340 imx_gpt_compute_next_timeout(s
, false);
342 ptimer_run(s
->timer
, 1);
345 ptimer_stop(s
->timer
);
351 case 1: /* Prescaler */
352 s
->pr
= value
& 0xfff;
357 s
->sr
&= ~(value
& 0x3f);
358 imx_gpt_update_int(s
);
361 case 3: /* IR -- interrupt register */
362 s
->ir
= value
& 0x3f;
363 imx_gpt_update_int(s
);
365 imx_gpt_compute_next_timeout(s
, false);
369 case 4: /* OCR1 -- output compare register */
372 /* In non-freerun mode, reset count when this register is written */
373 if (!(s
->cr
& GPT_CR_FRR
)) {
374 s
->next_timeout
= GPT_TIMER_MAX
;
375 ptimer_set_limit(s
->timer
, GPT_TIMER_MAX
, 1);
378 /* compute the new timeout */
379 imx_gpt_compute_next_timeout(s
, false);
383 case 5: /* OCR2 -- output compare register */
386 /* compute the new timeout */
387 imx_gpt_compute_next_timeout(s
, false);
391 case 6: /* OCR3 -- output compare register */
394 /* compute the new timeout */
395 imx_gpt_compute_next_timeout(s
, false);
400 qemu_log_mask(LOG_GUEST_ERROR
, "[%s]%s: Bad register at offset 0x%"
401 HWADDR_PRIx
"\n", TYPE_IMX_GPT
, __func__
, offset
);
406 static void imx_gpt_timeout(void *opaque
)
408 IMXGPTState
*s
= IMX_GPT(opaque
);
412 s
->sr
|= s
->next_int
;
415 imx_gpt_compute_next_timeout(s
, true);
417 imx_gpt_update_int(s
);
419 if (s
->freq
&& (s
->cr
& GPT_CR_EN
)) {
420 ptimer_run(s
->timer
, 1);
424 static const MemoryRegionOps imx_gpt_ops
= {
425 .read
= imx_gpt_read
,
426 .write
= imx_gpt_write
,
427 .endianness
= DEVICE_NATIVE_ENDIAN
,
431 static void imx_gpt_realize(DeviceState
*dev
, Error
**errp
)
433 IMXGPTState
*s
= IMX_GPT(dev
);
434 SysBusDevice
*sbd
= SYS_BUS_DEVICE(dev
);
437 sysbus_init_irq(sbd
, &s
->irq
);
438 memory_region_init_io(&s
->iomem
, OBJECT(s
), &imx_gpt_ops
, s
, TYPE_IMX_GPT
,
440 sysbus_init_mmio(sbd
, &s
->iomem
);
442 bh
= qemu_bh_new(imx_gpt_timeout
, s
);
443 s
->timer
= ptimer_init(bh
);
446 static void imx_gpt_class_init(ObjectClass
*klass
, void *data
)
448 DeviceClass
*dc
= DEVICE_CLASS(klass
);
450 dc
->realize
= imx_gpt_realize
;
451 dc
->reset
= imx_gpt_reset
;
452 dc
->vmsd
= &vmstate_imx_timer_gpt
;
453 dc
->desc
= "i.MX general timer";
456 static const TypeInfo imx_gpt_info
= {
457 .name
= TYPE_IMX_GPT
,
458 .parent
= TYPE_SYS_BUS_DEVICE
,
459 .instance_size
= sizeof(IMXGPTState
),
460 .class_init
= imx_gpt_class_init
,
463 static void imx_gpt_register_types(void)
465 type_register_static(&imx_gpt_info
);
468 type_init(imx_gpt_register_types
)