]> Git Repo - qemu.git/blame - hw/timer/arm_timer.c
arm_timer: QOM cast cleanup for icp_pit_state
[qemu.git] / hw / timer / arm_timer.c
CommitLineData
5fafdf24 1/*
cdbdb648
PB
2 * ARM PrimeCell Timer modules.
3 *
4 * Copyright (c) 2005-2006 CodeSourcery.
5 * Written by Paul Brook
6 *
8e31bf38 7 * This code is licensed under the GPL.
cdbdb648
PB
8 */
9
83c9f4ca 10#include "hw/sysbus.h"
1de7afc9 11#include "qemu/timer.h"
104a26a2 12#include "qemu-common.h"
83c9f4ca
PB
13#include "hw/qdev.h"
14#include "hw/ptimer.h"
cdbdb648
PB
15
16/* Common timer implementation. */
17
18#define TIMER_CTRL_ONESHOT (1 << 0)
19#define TIMER_CTRL_32BIT (1 << 1)
20#define TIMER_CTRL_DIV1 (0 << 2)
21#define TIMER_CTRL_DIV16 (1 << 2)
22#define TIMER_CTRL_DIV256 (2 << 2)
23#define TIMER_CTRL_IE (1 << 5)
24#define TIMER_CTRL_PERIODIC (1 << 6)
25#define TIMER_CTRL_ENABLE (1 << 7)
26
27typedef struct {
423f0742 28 ptimer_state *timer;
cdbdb648 29 uint32_t control;
cdbdb648 30 uint32_t limit;
cdbdb648
PB
31 int freq;
32 int int_level;
d537cf6c 33 qemu_irq irq;
cdbdb648
PB
34} arm_timer_state;
35
cdbdb648
PB
36/* Check all active timers, and schedule the next timer interrupt. */
37
423f0742 38static void arm_timer_update(arm_timer_state *s)
cdbdb648 39{
cdbdb648
PB
40 /* Update interrupts. */
41 if (s->int_level && (s->control & TIMER_CTRL_IE)) {
d537cf6c 42 qemu_irq_raise(s->irq);
cdbdb648 43 } else {
d537cf6c 44 qemu_irq_lower(s->irq);
cdbdb648 45 }
cdbdb648
PB
46}
47
a8170e5e 48static uint32_t arm_timer_read(void *opaque, hwaddr offset)
cdbdb648
PB
49{
50 arm_timer_state *s = (arm_timer_state *)opaque;
51
52 switch (offset >> 2) {
53 case 0: /* TimerLoad */
54 case 6: /* TimerBGLoad */
55 return s->limit;
56 case 1: /* TimerValue */
423f0742 57 return ptimer_get_count(s->timer);
cdbdb648
PB
58 case 2: /* TimerControl */
59 return s->control;
60 case 4: /* TimerRIS */
61 return s->int_level;
62 case 5: /* TimerMIS */
63 if ((s->control & TIMER_CTRL_IE) == 0)
64 return 0;
65 return s->int_level;
66 default:
edb94a41
PM
67 qemu_log_mask(LOG_GUEST_ERROR,
68 "%s: Bad offset %x\n", __func__, (int)offset);
cdbdb648
PB
69 return 0;
70 }
71}
72
423f0742
PB
73/* Reset the timer limit after settings have changed. */
74static void arm_timer_recalibrate(arm_timer_state *s, int reload)
75{
76 uint32_t limit;
77
a9cf98d9 78 if ((s->control & (TIMER_CTRL_PERIODIC | TIMER_CTRL_ONESHOT)) == 0) {
423f0742
PB
79 /* Free running. */
80 if (s->control & TIMER_CTRL_32BIT)
81 limit = 0xffffffff;
82 else
83 limit = 0xffff;
84 } else {
85 /* Periodic. */
86 limit = s->limit;
87 }
88 ptimer_set_limit(s->timer, limit, reload);
89}
90
a8170e5e 91static void arm_timer_write(void *opaque, hwaddr offset,
cdbdb648
PB
92 uint32_t value)
93{
94 arm_timer_state *s = (arm_timer_state *)opaque;
423f0742 95 int freq;
cdbdb648 96
cdbdb648
PB
97 switch (offset >> 2) {
98 case 0: /* TimerLoad */
99 s->limit = value;
423f0742 100 arm_timer_recalibrate(s, 1);
cdbdb648
PB
101 break;
102 case 1: /* TimerValue */
103 /* ??? Linux seems to want to write to this readonly register.
104 Ignore it. */
105 break;
106 case 2: /* TimerControl */
107 if (s->control & TIMER_CTRL_ENABLE) {
108 /* Pause the timer if it is running. This may cause some
109 inaccuracy dure to rounding, but avoids a whole lot of other
110 messyness. */
423f0742 111 ptimer_stop(s->timer);
cdbdb648
PB
112 }
113 s->control = value;
423f0742 114 freq = s->freq;
cdbdb648
PB
115 /* ??? Need to recalculate expiry time after changing divisor. */
116 switch ((value >> 2) & 3) {
423f0742
PB
117 case 1: freq >>= 4; break;
118 case 2: freq >>= 8; break;
cdbdb648 119 }
d6759902 120 arm_timer_recalibrate(s, s->control & TIMER_CTRL_ENABLE);
423f0742 121 ptimer_set_freq(s->timer, freq);
cdbdb648
PB
122 if (s->control & TIMER_CTRL_ENABLE) {
123 /* Restart the timer if still enabled. */
423f0742 124 ptimer_run(s->timer, (s->control & TIMER_CTRL_ONESHOT) != 0);
cdbdb648
PB
125 }
126 break;
127 case 3: /* TimerIntClr */
128 s->int_level = 0;
129 break;
130 case 6: /* TimerBGLoad */
131 s->limit = value;
423f0742 132 arm_timer_recalibrate(s, 0);
cdbdb648
PB
133 break;
134 default:
edb94a41
PM
135 qemu_log_mask(LOG_GUEST_ERROR,
136 "%s: Bad offset %x\n", __func__, (int)offset);
cdbdb648 137 }
423f0742 138 arm_timer_update(s);
cdbdb648
PB
139}
140
141static void arm_timer_tick(void *opaque)
142{
423f0742
PB
143 arm_timer_state *s = (arm_timer_state *)opaque;
144 s->int_level = 1;
145 arm_timer_update(s);
cdbdb648
PB
146}
147
eecd33a5
JQ
148static const VMStateDescription vmstate_arm_timer = {
149 .name = "arm_timer",
150 .version_id = 1,
151 .minimum_version_id = 1,
152 .minimum_version_id_old = 1,
153 .fields = (VMStateField[]) {
154 VMSTATE_UINT32(control, arm_timer_state),
155 VMSTATE_UINT32(limit, arm_timer_state),
156 VMSTATE_INT32(int_level, arm_timer_state),
157 VMSTATE_PTIMER(timer, arm_timer_state),
158 VMSTATE_END_OF_LIST()
159 }
160};
23e39294 161
6a824ec3 162static arm_timer_state *arm_timer_init(uint32_t freq)
cdbdb648
PB
163{
164 arm_timer_state *s;
423f0742 165 QEMUBH *bh;
cdbdb648 166
7267c094 167 s = (arm_timer_state *)g_malloc0(sizeof(arm_timer_state));
423f0742 168 s->freq = freq;
cdbdb648 169 s->control = TIMER_CTRL_IE;
cdbdb648 170
423f0742
PB
171 bh = qemu_bh_new(arm_timer_tick, s);
172 s->timer = ptimer_init(bh);
eecd33a5 173 vmstate_register(NULL, -1, &vmstate_arm_timer, s);
cdbdb648
PB
174 return s;
175}
176
177/* ARM PrimeCell SP804 dual timer module.
7b4252e8
PC
178 * Docs at
179 * http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.ddi0271d/index.html
180*/
cdbdb648 181
0c88dea5
AF
182#define TYPE_SP804 "sp804"
183#define SP804(obj) OBJECT_CHECK(SP804State, (obj), TYPE_SP804)
184
1024d7f0 185typedef struct SP804State {
0c88dea5
AF
186 SysBusDevice parent_obj;
187
e219dea2 188 MemoryRegion iomem;
6a824ec3 189 arm_timer_state *timer[2];
104a26a2 190 uint32_t freq0, freq1;
cdbdb648 191 int level[2];
d537cf6c 192 qemu_irq irq;
1024d7f0 193} SP804State;
cdbdb648 194
7b4252e8
PC
195static const uint8_t sp804_ids[] = {
196 /* Timer ID */
197 0x04, 0x18, 0x14, 0,
198 /* PrimeCell ID */
199 0xd, 0xf0, 0x05, 0xb1
200};
201
d537cf6c 202/* Merge the IRQs from the two component devices. */
cdbdb648
PB
203static void sp804_set_irq(void *opaque, int irq, int level)
204{
1024d7f0 205 SP804State *s = (SP804State *)opaque;
cdbdb648
PB
206
207 s->level[irq] = level;
d537cf6c 208 qemu_set_irq(s->irq, s->level[0] || s->level[1]);
cdbdb648
PB
209}
210
a8170e5e 211static uint64_t sp804_read(void *opaque, hwaddr offset,
e219dea2 212 unsigned size)
cdbdb648 213{
1024d7f0 214 SP804State *s = (SP804State *)opaque;
cdbdb648 215
cdbdb648
PB
216 if (offset < 0x20) {
217 return arm_timer_read(s->timer[0], offset);
7b4252e8
PC
218 }
219 if (offset < 0x40) {
cdbdb648
PB
220 return arm_timer_read(s->timer[1], offset - 0x20);
221 }
7b4252e8
PC
222
223 /* TimerPeriphID */
224 if (offset >= 0xfe0 && offset <= 0xffc) {
225 return sp804_ids[(offset - 0xfe0) >> 2];
226 }
227
228 switch (offset) {
229 /* Integration Test control registers, which we won't support */
230 case 0xf00: /* TimerITCR */
231 case 0xf04: /* TimerITOP (strictly write only but..) */
edb94a41
PM
232 qemu_log_mask(LOG_UNIMP,
233 "%s: integration test registers unimplemented\n",
234 __func__);
7b4252e8
PC
235 return 0;
236 }
237
edb94a41
PM
238 qemu_log_mask(LOG_GUEST_ERROR,
239 "%s: Bad offset %x\n", __func__, (int)offset);
7b4252e8 240 return 0;
cdbdb648
PB
241}
242
a8170e5e 243static void sp804_write(void *opaque, hwaddr offset,
e219dea2 244 uint64_t value, unsigned size)
cdbdb648 245{
1024d7f0 246 SP804State *s = (SP804State *)opaque;
cdbdb648 247
cdbdb648
PB
248 if (offset < 0x20) {
249 arm_timer_write(s->timer[0], offset, value);
7b4252e8
PC
250 return;
251 }
252
253 if (offset < 0x40) {
cdbdb648 254 arm_timer_write(s->timer[1], offset - 0x20, value);
7b4252e8 255 return;
cdbdb648 256 }
7b4252e8
PC
257
258 /* Technically we could be writing to the Test Registers, but not likely */
edb94a41
PM
259 qemu_log_mask(LOG_GUEST_ERROR, "%s: Bad offset %x\n",
260 __func__, (int)offset);
cdbdb648
PB
261}
262
e219dea2
AK
263static const MemoryRegionOps sp804_ops = {
264 .read = sp804_read,
265 .write = sp804_write,
266 .endianness = DEVICE_NATIVE_ENDIAN,
cdbdb648
PB
267};
268
81986ac4
JQ
269static const VMStateDescription vmstate_sp804 = {
270 .name = "sp804",
271 .version_id = 1,
272 .minimum_version_id = 1,
273 .minimum_version_id_old = 1,
274 .fields = (VMStateField[]) {
1024d7f0 275 VMSTATE_INT32_ARRAY(level, SP804State, 2),
81986ac4
JQ
276 VMSTATE_END_OF_LIST()
277 }
278};
23e39294 279
0c88dea5 280static int sp804_init(SysBusDevice *sbd)
cdbdb648 281{
0c88dea5
AF
282 DeviceState *dev = DEVICE(sbd);
283 SP804State *s = SP804(dev);
d537cf6c 284 qemu_irq *qi;
cdbdb648 285
d537cf6c 286 qi = qemu_allocate_irqs(sp804_set_irq, s, 2);
0c88dea5 287 sysbus_init_irq(sbd, &s->irq);
104a26a2
ML
288 s->timer[0] = arm_timer_init(s->freq0);
289 s->timer[1] = arm_timer_init(s->freq1);
6a824ec3
PB
290 s->timer[0]->irq = qi[0];
291 s->timer[1]->irq = qi[1];
853dca12
PB
292 memory_region_init_io(&s->iomem, OBJECT(s), &sp804_ops, s,
293 "sp804", 0x1000);
0c88dea5
AF
294 sysbus_init_mmio(sbd, &s->iomem);
295 vmstate_register(dev, -1, &vmstate_sp804, s);
81a322d4 296 return 0;
cdbdb648
PB
297}
298
cdbdb648
PB
299/* Integrator/CP timer module. */
300
e2051b42
AF
301#define TYPE_INTEGRATOR_PIT "integrator_pit"
302#define INTEGRATOR_PIT(obj) \
303 OBJECT_CHECK(icp_pit_state, (obj), TYPE_INTEGRATOR_PIT)
304
cdbdb648 305typedef struct {
e2051b42
AF
306 SysBusDevice parent_obj;
307
e219dea2 308 MemoryRegion iomem;
6a824ec3 309 arm_timer_state *timer[3];
cdbdb648
PB
310} icp_pit_state;
311
a8170e5e 312static uint64_t icp_pit_read(void *opaque, hwaddr offset,
e219dea2 313 unsigned size)
cdbdb648
PB
314{
315 icp_pit_state *s = (icp_pit_state *)opaque;
316 int n;
317
318 /* ??? Don't know the PrimeCell ID for this device. */
cdbdb648 319 n = offset >> 8;
ee71c984 320 if (n > 2) {
edb94a41 321 qemu_log_mask(LOG_GUEST_ERROR, "%s: Bad timer %d\n", __func__, n);
2ac71179 322 }
cdbdb648
PB
323
324 return arm_timer_read(s->timer[n], offset & 0xff);
325}
326
a8170e5e 327static void icp_pit_write(void *opaque, hwaddr offset,
e219dea2 328 uint64_t value, unsigned size)
cdbdb648
PB
329{
330 icp_pit_state *s = (icp_pit_state *)opaque;
331 int n;
332
cdbdb648 333 n = offset >> 8;
ee71c984 334 if (n > 2) {
edb94a41 335 qemu_log_mask(LOG_GUEST_ERROR, "%s: Bad timer %d\n", __func__, n);
2ac71179 336 }
cdbdb648
PB
337
338 arm_timer_write(s->timer[n], offset & 0xff, value);
339}
340
e219dea2
AK
341static const MemoryRegionOps icp_pit_ops = {
342 .read = icp_pit_read,
343 .write = icp_pit_write,
344 .endianness = DEVICE_NATIVE_ENDIAN,
cdbdb648
PB
345};
346
81a322d4 347static int icp_pit_init(SysBusDevice *dev)
cdbdb648 348{
e2051b42 349 icp_pit_state *s = INTEGRATOR_PIT(dev);
cdbdb648 350
cdbdb648 351 /* Timer 0 runs at the system clock speed (40MHz). */
6a824ec3 352 s->timer[0] = arm_timer_init(40000000);
cdbdb648 353 /* The other two timers run at 1MHz. */
6a824ec3
PB
354 s->timer[1] = arm_timer_init(1000000);
355 s->timer[2] = arm_timer_init(1000000);
356
357 sysbus_init_irq(dev, &s->timer[0]->irq);
358 sysbus_init_irq(dev, &s->timer[1]->irq);
359 sysbus_init_irq(dev, &s->timer[2]->irq);
cdbdb648 360
853dca12
PB
361 memory_region_init_io(&s->iomem, OBJECT(s), &icp_pit_ops, s,
362 "icp_pit", 0x1000);
750ecd44 363 sysbus_init_mmio(dev, &s->iomem);
23e39294
PB
364 /* This device has no state to save/restore. The component timers will
365 save themselves. */
81a322d4 366 return 0;
cdbdb648 367}
6a824ec3 368
999e12bb
AL
369static void icp_pit_class_init(ObjectClass *klass, void *data)
370{
371 SysBusDeviceClass *sdc = SYS_BUS_DEVICE_CLASS(klass);
372
373 sdc->init = icp_pit_init;
374}
375
8c43a6f0 376static const TypeInfo icp_pit_info = {
e2051b42 377 .name = TYPE_INTEGRATOR_PIT,
39bffca2
AL
378 .parent = TYPE_SYS_BUS_DEVICE,
379 .instance_size = sizeof(icp_pit_state),
380 .class_init = icp_pit_class_init,
381};
382
383static Property sp804_properties[] = {
1024d7f0
AF
384 DEFINE_PROP_UINT32("freq0", SP804State, freq0, 1000000),
385 DEFINE_PROP_UINT32("freq1", SP804State, freq1, 1000000),
39bffca2 386 DEFINE_PROP_END_OF_LIST(),
999e12bb
AL
387};
388
389static void sp804_class_init(ObjectClass *klass, void *data)
390{
391 SysBusDeviceClass *sdc = SYS_BUS_DEVICE_CLASS(klass);
39bffca2 392 DeviceClass *k = DEVICE_CLASS(klass);
999e12bb
AL
393
394 sdc->init = sp804_init;
39bffca2 395 k->props = sp804_properties;
999e12bb
AL
396}
397
8c43a6f0 398static const TypeInfo sp804_info = {
0c88dea5 399 .name = TYPE_SP804,
39bffca2 400 .parent = TYPE_SYS_BUS_DEVICE,
1024d7f0 401 .instance_size = sizeof(SP804State),
39bffca2 402 .class_init = sp804_class_init,
999e12bb
AL
403};
404
83f7d43a 405static void arm_timer_register_types(void)
6a824ec3 406{
39bffca2
AL
407 type_register_static(&icp_pit_info);
408 type_register_static(&sp804_info);
6a824ec3
PB
409}
410
83f7d43a 411type_init(arm_timer_register_types)
This page took 0.718638 seconds and 4 git commands to generate.