2 * ARM CMSDK APB timer emulation
4 * Copyright (c) 2017 Linaro Limited
5 * Written by Peter Maydell
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 or
9 * (at your option) any later version.
12 /* This is a model of the "APB timer" which is part of the Cortex-M
13 * System Design Kit (CMSDK) and documented in the Cortex-M System
14 * Design Kit Technical Reference Manual (ARM DDI0479C):
15 * https://developer.arm.com/products/system-design/system-design-kits/cortex-m-system-design-kit
17 * The hardware has an EXTIN input wire, which can be configured
18 * by the guest to act either as a 'timer enable' (timer does not run
19 * when EXTIN is low), or as a 'timer clock' (timer runs at frequency
20 * of EXTIN clock, not PCLK frequency). We don't model this.
22 * The documentation is not very clear about the exact behaviour;
23 * we choose to implement that the interrupt is triggered when
24 * the counter goes from 1 to 0, that the counter then holds at 0
25 * for one clock cycle before reloading from the RELOAD register,
26 * and that if the RELOAD register is 0 this does not cause an
27 * interrupt (as there is no further 1->0 transition).
30 #include "qemu/osdep.h"
32 #include "qemu/main-loop.h"
33 #include "qapi/error.h"
35 #include "hw/sysbus.h"
36 #include "hw/registerfields.h"
37 #include "hw/timer/cmsdk-apb-timer.h"
41 FIELD(CTRL
, SELEXTEN
, 1, 1)
42 FIELD(CTRL
, SELEXTCLK
, 2, 1)
43 FIELD(CTRL
, IRQEN
, 3, 1)
47 FIELD(INTSTATUS
, IRQ
, 0, 1)
62 static const int timer_id
[] = {
63 0x04, 0x00, 0x00, 0x00, /* PID4..PID7 */
64 0x22, 0xb8, 0x1b, 0x00, /* PID0..PID3 */
65 0x0d, 0xf0, 0x05, 0xb1, /* CID0..CID3 */
68 static void cmsdk_apb_timer_update(CMSDKAPBTIMER
*s
)
70 qemu_set_irq(s
->timerint
, !!(s
->intstatus
& R_INTSTATUS_IRQ_MASK
));
73 static uint64_t cmsdk_apb_timer_read(void *opaque
, hwaddr offset
, unsigned size
)
75 CMSDKAPBTIMER
*s
= CMSDK_APB_TIMER(opaque
);
83 r
= ptimer_get_count(s
->timer
);
86 r
= ptimer_get_limit(s
->timer
);
91 case A_PID4
... A_CID3
:
92 r
= timer_id
[(offset
- A_PID4
) / 4];
95 qemu_log_mask(LOG_GUEST_ERROR
,
96 "CMSDK APB timer read: bad offset %x\n", (int) offset
);
100 trace_cmsdk_apb_timer_read(offset
, r
, size
);
104 static void cmsdk_apb_timer_write(void *opaque
, hwaddr offset
, uint64_t value
,
107 CMSDKAPBTIMER
*s
= CMSDK_APB_TIMER(opaque
);
109 trace_cmsdk_apb_timer_write(offset
, value
, size
);
114 /* Bits [1] and [2] enable using EXTIN as either clock or
115 * an enable line. We don't model this.
117 qemu_log_mask(LOG_UNIMP
,
118 "CMSDK APB timer: EXTIN input not supported\n");
120 s
->ctrl
= value
& 0xf;
121 if (s
->ctrl
& R_CTRL_EN_MASK
) {
122 ptimer_run(s
->timer
, ptimer_get_limit(s
->timer
) == 0);
124 ptimer_stop(s
->timer
);
128 /* Writing to reload also sets the current timer value */
130 ptimer_stop(s
->timer
);
132 ptimer_set_limit(s
->timer
, value
, 1);
133 if (value
&& (s
->ctrl
& R_CTRL_EN_MASK
)) {
135 * Make sure timer is running (it might have stopped if this
136 * was an expired one-shot timer)
138 ptimer_run(s
->timer
, 0);
142 if (!value
&& !ptimer_get_limit(s
->timer
)) {
143 ptimer_stop(s
->timer
);
145 ptimer_set_count(s
->timer
, value
);
146 if (value
&& (s
->ctrl
& R_CTRL_EN_MASK
)) {
147 ptimer_run(s
->timer
, ptimer_get_limit(s
->timer
) == 0);
151 /* Just one bit, which is W1C. */
153 s
->intstatus
&= ~value
;
154 cmsdk_apb_timer_update(s
);
156 case A_PID4
... A_CID3
:
157 qemu_log_mask(LOG_GUEST_ERROR
,
158 "CMSDK APB timer write: write to RO offset 0x%x\n",
162 qemu_log_mask(LOG_GUEST_ERROR
,
163 "CMSDK APB timer write: bad offset 0x%x\n", (int) offset
);
168 static const MemoryRegionOps cmsdk_apb_timer_ops
= {
169 .read
= cmsdk_apb_timer_read
,
170 .write
= cmsdk_apb_timer_write
,
171 .endianness
= DEVICE_LITTLE_ENDIAN
,
174 static void cmsdk_apb_timer_tick(void *opaque
)
176 CMSDKAPBTIMER
*s
= CMSDK_APB_TIMER(opaque
);
178 if (s
->ctrl
& R_CTRL_IRQEN_MASK
) {
179 s
->intstatus
|= R_INTSTATUS_IRQ_MASK
;
180 cmsdk_apb_timer_update(s
);
184 static void cmsdk_apb_timer_reset(DeviceState
*dev
)
186 CMSDKAPBTIMER
*s
= CMSDK_APB_TIMER(dev
);
188 trace_cmsdk_apb_timer_reset();
191 ptimer_stop(s
->timer
);
192 /* Set the limit and the count */
193 ptimer_set_limit(s
->timer
, 0, 1);
196 static void cmsdk_apb_timer_init(Object
*obj
)
198 SysBusDevice
*sbd
= SYS_BUS_DEVICE(obj
);
199 CMSDKAPBTIMER
*s
= CMSDK_APB_TIMER(obj
);
201 memory_region_init_io(&s
->iomem
, obj
, &cmsdk_apb_timer_ops
,
202 s
, "cmsdk-apb-timer", 0x1000);
203 sysbus_init_mmio(sbd
, &s
->iomem
);
204 sysbus_init_irq(sbd
, &s
->timerint
);
207 static void cmsdk_apb_timer_realize(DeviceState
*dev
, Error
**errp
)
209 CMSDKAPBTIMER
*s
= CMSDK_APB_TIMER(dev
);
212 if (s
->pclk_frq
== 0) {
213 error_setg(errp
, "CMSDK APB timer: pclk-frq property must be set");
217 bh
= qemu_bh_new(cmsdk_apb_timer_tick
, s
);
218 s
->timer
= ptimer_init(bh
,
219 PTIMER_POLICY_WRAP_AFTER_ONE_PERIOD
|
220 PTIMER_POLICY_TRIGGER_ONLY_ON_DECREMENT
|
221 PTIMER_POLICY_NO_IMMEDIATE_RELOAD
|
222 PTIMER_POLICY_NO_COUNTER_ROUND_DOWN
);
224 ptimer_set_freq(s
->timer
, s
->pclk_frq
);
227 static const VMStateDescription cmsdk_apb_timer_vmstate
= {
228 .name
= "cmsdk-apb-timer",
230 .minimum_version_id
= 1,
231 .fields
= (VMStateField
[]) {
232 VMSTATE_PTIMER(timer
, CMSDKAPBTIMER
),
233 VMSTATE_UINT32(ctrl
, CMSDKAPBTIMER
),
234 VMSTATE_UINT32(value
, CMSDKAPBTIMER
),
235 VMSTATE_UINT32(reload
, CMSDKAPBTIMER
),
236 VMSTATE_UINT32(intstatus
, CMSDKAPBTIMER
),
237 VMSTATE_END_OF_LIST()
241 static Property cmsdk_apb_timer_properties
[] = {
242 DEFINE_PROP_UINT32("pclk-frq", CMSDKAPBTIMER
, pclk_frq
, 0),
243 DEFINE_PROP_END_OF_LIST(),
246 static void cmsdk_apb_timer_class_init(ObjectClass
*klass
, void *data
)
248 DeviceClass
*dc
= DEVICE_CLASS(klass
);
250 dc
->realize
= cmsdk_apb_timer_realize
;
251 dc
->vmsd
= &cmsdk_apb_timer_vmstate
;
252 dc
->reset
= cmsdk_apb_timer_reset
;
253 dc
->props
= cmsdk_apb_timer_properties
;
256 static const TypeInfo cmsdk_apb_timer_info
= {
257 .name
= TYPE_CMSDK_APB_TIMER
,
258 .parent
= TYPE_SYS_BUS_DEVICE
,
259 .instance_size
= sizeof(CMSDKAPBTIMER
),
260 .instance_init
= cmsdk_apb_timer_init
,
261 .class_init
= cmsdk_apb_timer_class_init
,
264 static void cmsdk_apb_timer_register_types(void)
266 type_register_static(&cmsdk_apb_timer_info
);
269 type_init(cmsdk_apb_timer_register_types
);