6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25 #include "qemu/osdep.h"
26 #include "hw/timer/stm32f2xx_timer.h"
29 #ifndef STM_TIMER_ERR_DEBUG
30 #define STM_TIMER_ERR_DEBUG 0
33 #define DB_PRINT_L(lvl, fmt, args...) do { \
34 if (STM_TIMER_ERR_DEBUG >= lvl) { \
35 qemu_log("%s: " fmt, __func__, ## args); \
39 #define DB_PRINT(fmt, args...) DB_PRINT_L(1, fmt, ## args)
41 static void stm32f2xx_timer_set_alarm(STM32F2XXTimerState *s, int64_t now);
43 static void stm32f2xx_timer_interrupt(void *opaque)
45 STM32F2XXTimerState *s = opaque;
47 DB_PRINT("Interrupt\n");
49 if (s->tim_dier & TIM_DIER_UIE && s->tim_cr1 & TIM_CR1_CEN) {
51 qemu_irq_pulse(s->irq);
52 stm32f2xx_timer_set_alarm(s, s->hit_time);
56 static inline int64_t stm32f2xx_ns_to_ticks(STM32F2XXTimerState *s, int64_t t)
58 return muldiv64(t, s->freq_hz, 1000000000ULL) / (s->tim_psc + 1);
61 static void stm32f2xx_timer_set_alarm(STM32F2XXTimerState *s, int64_t now)
66 if (s->tim_arr == 0) {
70 DB_PRINT("Alarm set at: 0x%x\n", s->tim_cr1);
72 now_ticks = stm32f2xx_ns_to_ticks(s, now);
73 ticks = s->tim_arr - (now_ticks - s->tick_offset);
75 DB_PRINT("Alarm set in %d ticks\n", (int) ticks);
77 s->hit_time = muldiv64((ticks + (uint64_t) now_ticks) * (s->tim_psc + 1),
78 1000000000ULL, s->freq_hz);
80 timer_mod(s->timer, qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL) + s->hit_time);
81 DB_PRINT("Wait Time: %" PRId64 " ticks\n", s->hit_time);
84 static void stm32f2xx_timer_reset(DeviceState *dev)
86 STM32F2XXTimerState *s = STM32F2XXTIMER(dev);
87 int64_t now = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL);
108 s->tick_offset = stm32f2xx_ns_to_ticks(s, now);
111 static uint64_t stm32f2xx_timer_read(void *opaque, hwaddr offset,
114 STM32F2XXTimerState *s = opaque;
116 DB_PRINT("Read 0x%"HWADDR_PRIx"\n", offset);
138 return stm32f2xx_ns_to_ticks(s, qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL)) -
159 qemu_log_mask(LOG_GUEST_ERROR,
160 "%s: Bad offset 0x%"HWADDR_PRIx"\n", __func__, offset);
166 static void stm32f2xx_timer_write(void *opaque, hwaddr offset,
167 uint64_t val64, unsigned size)
169 STM32F2XXTimerState *s = opaque;
170 uint32_t value = val64;
171 int64_t now = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL);
172 uint32_t timer_val = 0;
174 DB_PRINT("Write 0x%x, 0x%"HWADDR_PRIx"\n", value, offset);
190 /* This is set by hardware and cleared by software */
195 if (s->tim_egr & TIM_EGR_UG) {
201 s->tim_ccmr1 = value;
204 s->tim_ccmr2 = value;
210 timer_val = stm32f2xx_ns_to_ticks(s, now) - s->tick_offset;
219 stm32f2xx_timer_set_alarm(s, now);
243 qemu_log_mask(LOG_GUEST_ERROR,
244 "%s: Bad offset 0x%"HWADDR_PRIx"\n", __func__, offset);
248 /* This means that a register write has affected the timer in a way that
249 * requires a refresh of both tick_offset and the alarm.
251 s->tick_offset = stm32f2xx_ns_to_ticks(s, now) - timer_val;
252 stm32f2xx_timer_set_alarm(s, now);
255 static const MemoryRegionOps stm32f2xx_timer_ops = {
256 .read = stm32f2xx_timer_read,
257 .write = stm32f2xx_timer_write,
258 .endianness = DEVICE_NATIVE_ENDIAN,
261 static const VMStateDescription vmstate_stm32f2xx_timer = {
262 .name = TYPE_STM32F2XX_TIMER,
264 .minimum_version_id = 1,
265 .fields = (VMStateField[]) {
266 VMSTATE_INT64(tick_offset, STM32F2XXTimerState),
267 VMSTATE_UINT32(tim_cr1, STM32F2XXTimerState),
268 VMSTATE_UINT32(tim_cr2, STM32F2XXTimerState),
269 VMSTATE_UINT32(tim_smcr, STM32F2XXTimerState),
270 VMSTATE_UINT32(tim_dier, STM32F2XXTimerState),
271 VMSTATE_UINT32(tim_sr, STM32F2XXTimerState),
272 VMSTATE_UINT32(tim_egr, STM32F2XXTimerState),
273 VMSTATE_UINT32(tim_ccmr1, STM32F2XXTimerState),
274 VMSTATE_UINT32(tim_ccmr2, STM32F2XXTimerState),
275 VMSTATE_UINT32(tim_ccer, STM32F2XXTimerState),
276 VMSTATE_UINT32(tim_psc, STM32F2XXTimerState),
277 VMSTATE_UINT32(tim_arr, STM32F2XXTimerState),
278 VMSTATE_UINT32(tim_ccr1, STM32F2XXTimerState),
279 VMSTATE_UINT32(tim_ccr2, STM32F2XXTimerState),
280 VMSTATE_UINT32(tim_ccr3, STM32F2XXTimerState),
281 VMSTATE_UINT32(tim_ccr4, STM32F2XXTimerState),
282 VMSTATE_UINT32(tim_dcr, STM32F2XXTimerState),
283 VMSTATE_UINT32(tim_dmar, STM32F2XXTimerState),
284 VMSTATE_UINT32(tim_or, STM32F2XXTimerState),
285 VMSTATE_END_OF_LIST()
289 static Property stm32f2xx_timer_properties[] = {
290 DEFINE_PROP_UINT64("clock-frequency", struct STM32F2XXTimerState,
291 freq_hz, 1000000000),
292 DEFINE_PROP_END_OF_LIST(),
295 static void stm32f2xx_timer_init(Object *obj)
297 STM32F2XXTimerState *s = STM32F2XXTIMER(obj);
299 sysbus_init_irq(SYS_BUS_DEVICE(obj), &s->irq);
301 memory_region_init_io(&s->iomem, obj, &stm32f2xx_timer_ops, s,
302 "stm32f2xx_timer", 0x4000);
303 sysbus_init_mmio(SYS_BUS_DEVICE(obj), &s->iomem);
305 s->timer = timer_new_ns(QEMU_CLOCK_VIRTUAL, stm32f2xx_timer_interrupt, s);
308 static void stm32f2xx_timer_class_init(ObjectClass *klass, void *data)
310 DeviceClass *dc = DEVICE_CLASS(klass);
312 dc->reset = stm32f2xx_timer_reset;
313 dc->props = stm32f2xx_timer_properties;
314 dc->vmsd = &vmstate_stm32f2xx_timer;
317 static const TypeInfo stm32f2xx_timer_info = {
318 .name = TYPE_STM32F2XX_TIMER,
319 .parent = TYPE_SYS_BUS_DEVICE,
320 .instance_size = sizeof(STM32F2XXTimerState),
321 .instance_init = stm32f2xx_timer_init,
322 .class_init = stm32f2xx_timer_class_init,
325 static void stm32f2xx_timer_register_types(void)
327 type_register_static(&stm32f2xx_timer_info);
330 type_init(stm32f2xx_timer_register_types)