exec: remove ram_addr argument from qemu_ram_block_from_host
[qemu.git] / hw / timer / imx_gpt.c
blob3c2f01ab99160a2568b326b9160086762517dc00
1 /*
2 * IMX GPT Timer
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"
19 #include "qemu/log.h"
21 #ifndef DEBUG_IMX_GPT
22 #define DEBUG_IMX_GPT 0
23 #endif
25 #define DPRINTF(fmt, args...) \
26 do { \
27 if (DEBUG_IMX_GPT) { \
28 fprintf(stderr, "[%s]%s: " fmt , TYPE_IMX_GPT, \
29 __func__, ##args); \
30 } \
31 } while (0)
33 static char const *imx_gpt_reg_name(uint32_t reg)
35 switch (reg) {
36 case 0:
37 return "CR";
38 case 1:
39 return "PR";
40 case 2:
41 return "SR";
42 case 3:
43 return "IR";
44 case 4:
45 return "OCR1";
46 case 5:
47 return "OCR2";
48 case 6:
49 return "OCR3";
50 case 7:
51 return "ICR1";
52 case 8:
53 return "ICR2";
54 case 9:
55 return "CNT";
56 default:
57 return "[?]";
61 static const VMStateDescription vmstate_imx_timer_gpt = {
62 .name = TYPE_IMX_GPT,
63 .version_id = 3,
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),
80 VMSTATE_END_OF_LIST()
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);
104 if (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);
113 } else {
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);
122 return s->cnt;
125 static inline uint32_t imx_gpt_find_limit(uint32_t count, uint32_t reg,
126 uint32_t timeout)
128 if ((count < reg) && (timeout > reg)) {
129 timeout = reg;
132 return timeout;
135 static void imx_gpt_compute_next_timeout(IMXGPTState *s, bool event)
137 uint32_t timeout = GPT_TIMER_MAX;
138 uint32_t count;
139 long long limit;
141 if (!(s->cr & GPT_CR_EN)) {
142 /* if not enabled just return */
143 return;
146 /* update the count */
147 count = imx_gpt_update_count(s);
149 if (event) {
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 */
179 s->next_int = 0;
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);
196 if (limit < 0) {
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);
207 } else {
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 */
223 reg_value = s->cr;
224 break;
226 case 1: /* prescaler */
227 reg_value = s->pr;
228 break;
230 case 2: /* Status Register */
231 reg_value = s->sr;
232 break;
234 case 3: /* Interrupt Register */
235 reg_value = s->ir;
236 break;
238 case 4: /* Output Compare Register 1 */
239 reg_value = s->ocr1;
240 break;
242 case 5: /* Output Compare Register 2 */
243 reg_value = s->ocr2;
244 break;
246 case 6: /* Output Compare Register 3 */
247 reg_value = s->ocr3;
248 break;
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__);
253 reg_value = s->icr1;
254 break;
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__);
259 reg_value = s->icr2;
260 break;
262 case 9: /* cnt */
263 imx_gpt_update_count(s);
264 reg_value = s->cnt;
265 break;
267 default:
268 qemu_log_mask(LOG_GUEST_ERROR, "[%s]%s: Bad register at offset 0x%"
269 HWADDR_PRIx "\n", TYPE_IMX_GPT, __func__, offset);
270 break;
273 DPRINTF("(%s) = 0x%08x\n", imx_gpt_reg_name(offset >> 2), reg_value);
275 return reg_value;
278 static void imx_gpt_reset(DeviceState *dev)
280 IMXGPTState *s = IMX_GPT(dev);
282 /* stop timer */
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);
290 s->sr = 0;
291 s->pr = 0;
292 s->ir = 0;
293 s->cnt = 0;
294 s->ocr1 = GPT_TIMER_MAX;
295 s->ocr2 = GPT_TIMER_MAX;
296 s->ocr3 = GPT_TIMER_MAX;
297 s->icr1 = 0;
298 s->icr2 = 0;
300 s->next_timeout = GPT_TIMER_MAX;
301 s->next_int = 0;
303 /* compute new freq */
304 imx_gpt_set_freq(s);
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,
316 unsigned size)
318 IMXGPTState *s = IMX_GPT(opaque);
319 uint32_t oldreg;
321 DPRINTF("(%s, value = 0x%08x)\n", imx_gpt_reg_name(offset >> 2),
322 (uint32_t)value);
324 switch (offset >> 2) {
325 case 0:
326 oldreg = s->cr;
327 s->cr = value & ~0x7c14;
328 if (s->cr & GPT_CR_SWR) { /* force reset */
329 /* handle the reset */
330 imx_gpt_reset(DEVICE(s));
331 } else {
332 /* set our freq, as the source might have changed */
333 imx_gpt_set_freq(s);
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);
343 } else {
344 /* stop timer */
345 ptimer_stop(s->timer);
349 break;
351 case 1: /* Prescaler */
352 s->pr = value & 0xfff;
353 imx_gpt_set_freq(s);
354 break;
356 case 2: /* SR */
357 s->sr &= ~(value & 0x3f);
358 imx_gpt_update_int(s);
359 break;
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);
367 break;
369 case 4: /* OCR1 -- output compare register */
370 s->ocr1 = value;
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);
381 break;
383 case 5: /* OCR2 -- output compare register */
384 s->ocr2 = value;
386 /* compute the new timeout */
387 imx_gpt_compute_next_timeout(s, false);
389 break;
391 case 6: /* OCR3 -- output compare register */
392 s->ocr3 = value;
394 /* compute the new timeout */
395 imx_gpt_compute_next_timeout(s, false);
397 break;
399 default:
400 qemu_log_mask(LOG_GUEST_ERROR, "[%s]%s: Bad register at offset 0x%"
401 HWADDR_PRIx "\n", TYPE_IMX_GPT, __func__, offset);
402 break;
406 static void imx_gpt_timeout(void *opaque)
408 IMXGPTState *s = IMX_GPT(opaque);
410 DPRINTF("\n");
412 s->sr |= s->next_int;
413 s->next_int = 0;
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);
435 QEMUBH *bh;
437 sysbus_init_irq(sbd, &s->irq);
438 memory_region_init_io(&s->iomem, OBJECT(s), &imx_gpt_ops, s, TYPE_IMX_GPT,
439 0x00001000);
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)