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