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/module.h"
33 #include "qapi/error.h"
35 #include "hw/sysbus.h"
37 #include "hw/registerfields.h"
38 #include "hw/timer/cmsdk-apb-timer.h"
39 #include "migration/vmstate.h"
43 FIELD(CTRL
, SELEXTEN
, 1, 1)
44 FIELD(CTRL
, SELEXTCLK
, 2, 1)
45 FIELD(CTRL
, IRQEN
, 3, 1)
49 FIELD(INTSTATUS
, IRQ
, 0, 1)
64 static const int timer_id
[] = {
65 0x04, 0x00, 0x00, 0x00, /* PID4..PID7 */
66 0x22, 0xb8, 0x1b, 0x00, /* PID0..PID3 */
67 0x0d, 0xf0, 0x05, 0xb1, /* CID0..CID3 */
70 static void cmsdk_apb_timer_update(CMSDKAPBTIMER
*s
)
72 qemu_set_irq(s
->timerint
, !!(s
->intstatus
& R_INTSTATUS_IRQ_MASK
));
75 static uint64_t cmsdk_apb_timer_read(void *opaque
, hwaddr offset
, unsigned size
)
77 CMSDKAPBTIMER
*s
= CMSDK_APB_TIMER(opaque
);
85 r
= ptimer_get_count(s
->timer
);
88 r
= ptimer_get_limit(s
->timer
);
93 case A_PID4
... A_CID3
:
94 r
= timer_id
[(offset
- A_PID4
) / 4];
97 qemu_log_mask(LOG_GUEST_ERROR
,
98 "CMSDK APB timer read: bad offset %x\n", (int) offset
);
102 trace_cmsdk_apb_timer_read(offset
, r
, size
);
106 static void cmsdk_apb_timer_write(void *opaque
, hwaddr offset
, uint64_t value
,
109 CMSDKAPBTIMER
*s
= CMSDK_APB_TIMER(opaque
);
111 trace_cmsdk_apb_timer_write(offset
, value
, size
);
116 /* Bits [1] and [2] enable using EXTIN as either clock or
117 * an enable line. We don't model this.
119 qemu_log_mask(LOG_UNIMP
,
120 "CMSDK APB timer: EXTIN input not supported\n");
122 s
->ctrl
= value
& 0xf;
123 ptimer_transaction_begin(s
->timer
);
124 if (s
->ctrl
& R_CTRL_EN_MASK
) {
125 ptimer_run(s
->timer
, ptimer_get_limit(s
->timer
) == 0);
127 ptimer_stop(s
->timer
);
129 ptimer_transaction_commit(s
->timer
);
132 /* Writing to reload also sets the current timer value */
133 ptimer_transaction_begin(s
->timer
);
135 ptimer_stop(s
->timer
);
137 ptimer_set_limit(s
->timer
, value
, 1);
138 if (value
&& (s
->ctrl
& R_CTRL_EN_MASK
)) {
140 * Make sure timer is running (it might have stopped if this
141 * was an expired one-shot timer)
143 ptimer_run(s
->timer
, 0);
145 ptimer_transaction_commit(s
->timer
);
148 ptimer_transaction_begin(s
->timer
);
149 if (!value
&& !ptimer_get_limit(s
->timer
)) {
150 ptimer_stop(s
->timer
);
152 ptimer_set_count(s
->timer
, value
);
153 if (value
&& (s
->ctrl
& R_CTRL_EN_MASK
)) {
154 ptimer_run(s
->timer
, ptimer_get_limit(s
->timer
) == 0);
156 ptimer_transaction_commit(s
->timer
);
159 /* Just one bit, which is W1C. */
161 s
->intstatus
&= ~value
;
162 cmsdk_apb_timer_update(s
);
164 case A_PID4
... A_CID3
:
165 qemu_log_mask(LOG_GUEST_ERROR
,
166 "CMSDK APB timer write: write to RO offset 0x%x\n",
170 qemu_log_mask(LOG_GUEST_ERROR
,
171 "CMSDK APB timer write: bad offset 0x%x\n", (int) offset
);
176 static const MemoryRegionOps cmsdk_apb_timer_ops
= {
177 .read
= cmsdk_apb_timer_read
,
178 .write
= cmsdk_apb_timer_write
,
179 .endianness
= DEVICE_LITTLE_ENDIAN
,
182 static void cmsdk_apb_timer_tick(void *opaque
)
184 CMSDKAPBTIMER
*s
= CMSDK_APB_TIMER(opaque
);
186 if (s
->ctrl
& R_CTRL_IRQEN_MASK
) {
187 s
->intstatus
|= R_INTSTATUS_IRQ_MASK
;
188 cmsdk_apb_timer_update(s
);
192 static void cmsdk_apb_timer_reset(DeviceState
*dev
)
194 CMSDKAPBTIMER
*s
= CMSDK_APB_TIMER(dev
);
196 trace_cmsdk_apb_timer_reset();
199 ptimer_transaction_begin(s
->timer
);
200 ptimer_stop(s
->timer
);
201 /* Set the limit and the count */
202 ptimer_set_limit(s
->timer
, 0, 1);
203 ptimer_transaction_commit(s
->timer
);
206 static void cmsdk_apb_timer_init(Object
*obj
)
208 SysBusDevice
*sbd
= SYS_BUS_DEVICE(obj
);
209 CMSDKAPBTIMER
*s
= CMSDK_APB_TIMER(obj
);
211 memory_region_init_io(&s
->iomem
, obj
, &cmsdk_apb_timer_ops
,
212 s
, "cmsdk-apb-timer", 0x1000);
213 sysbus_init_mmio(sbd
, &s
->iomem
);
214 sysbus_init_irq(sbd
, &s
->timerint
);
217 static void cmsdk_apb_timer_realize(DeviceState
*dev
, Error
**errp
)
219 CMSDKAPBTIMER
*s
= CMSDK_APB_TIMER(dev
);
221 if (s
->pclk_frq
== 0) {
222 error_setg(errp
, "CMSDK APB timer: pclk-frq property must be set");
226 s
->timer
= ptimer_init(cmsdk_apb_timer_tick
, s
,
227 PTIMER_POLICY_WRAP_AFTER_ONE_PERIOD
|
228 PTIMER_POLICY_TRIGGER_ONLY_ON_DECREMENT
|
229 PTIMER_POLICY_NO_IMMEDIATE_RELOAD
|
230 PTIMER_POLICY_NO_COUNTER_ROUND_DOWN
);
232 ptimer_transaction_begin(s
->timer
);
233 ptimer_set_freq(s
->timer
, s
->pclk_frq
);
234 ptimer_transaction_commit(s
->timer
);
237 static const VMStateDescription cmsdk_apb_timer_vmstate
= {
238 .name
= "cmsdk-apb-timer",
240 .minimum_version_id
= 1,
241 .fields
= (VMStateField
[]) {
242 VMSTATE_PTIMER(timer
, CMSDKAPBTIMER
),
243 VMSTATE_UINT32(ctrl
, CMSDKAPBTIMER
),
244 VMSTATE_UINT32(value
, CMSDKAPBTIMER
),
245 VMSTATE_UINT32(reload
, CMSDKAPBTIMER
),
246 VMSTATE_UINT32(intstatus
, CMSDKAPBTIMER
),
247 VMSTATE_END_OF_LIST()
251 static Property cmsdk_apb_timer_properties
[] = {
252 DEFINE_PROP_UINT32("pclk-frq", CMSDKAPBTIMER
, pclk_frq
, 0),
253 DEFINE_PROP_END_OF_LIST(),
256 static void cmsdk_apb_timer_class_init(ObjectClass
*klass
, void *data
)
258 DeviceClass
*dc
= DEVICE_CLASS(klass
);
260 dc
->realize
= cmsdk_apb_timer_realize
;
261 dc
->vmsd
= &cmsdk_apb_timer_vmstate
;
262 dc
->reset
= cmsdk_apb_timer_reset
;
263 device_class_set_props(dc
, cmsdk_apb_timer_properties
);
266 static const TypeInfo cmsdk_apb_timer_info
= {
267 .name
= TYPE_CMSDK_APB_TIMER
,
268 .parent
= TYPE_SYS_BUS_DEVICE
,
269 .instance_size
= sizeof(CMSDKAPBTIMER
),
270 .instance_init
= cmsdk_apb_timer_init
,
271 .class_init
= cmsdk_apb_timer_class_init
,
274 static void cmsdk_apb_timer_register_types(void)
276 type_register_static(&cmsdk_apb_timer_info
);
279 type_init(cmsdk_apb_timer_register_types
);