4 * Copyright (c) 2014 Alistair Francis <alistair@alistair23.me>
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"
27 #include "hw/qdev-properties.h"
28 #include "hw/timer/stm32f2xx_timer.h"
29 #include "migration/vmstate.h"
31 #include "qemu/module.h"
33 #ifndef STM_TIMER_ERR_DEBUG
34 #define STM_TIMER_ERR_DEBUG 0
37 #define DB_PRINT_L(lvl, fmt, args...) do { \
38 if (STM_TIMER_ERR_DEBUG >= lvl) { \
39 qemu_log("%s: " fmt, __func__, ## args); \
43 #define DB_PRINT(fmt, args...) DB_PRINT_L(1, fmt, ## args)
45 static void stm32f2xx_timer_set_alarm(STM32F2XXTimerState
*s
, int64_t now
);
47 static void stm32f2xx_timer_interrupt(void *opaque
)
49 STM32F2XXTimerState
*s
= opaque
;
51 DB_PRINT("Interrupt\n");
53 if (s
->tim_dier
& TIM_DIER_UIE
&& s
->tim_cr1
& TIM_CR1_CEN
) {
55 qemu_irq_pulse(s
->irq
);
56 stm32f2xx_timer_set_alarm(s
, s
->hit_time
);
59 if (s
->tim_ccmr1
& (TIM_CCMR1_OC2M2
| TIM_CCMR1_OC2M1
) &&
60 !(s
->tim_ccmr1
& TIM_CCMR1_OC2M0
) &&
61 s
->tim_ccmr1
& TIM_CCMR1_OC2PE
&&
62 s
->tim_ccer
& TIM_CCER_CC2E
) {
64 DB_PRINT("PWM2 Duty Cycle: %d%%\n",
65 s
->tim_ccr2
/ (100 * (s
->tim_psc
+ 1)));
69 static inline int64_t stm32f2xx_ns_to_ticks(STM32F2XXTimerState
*s
, int64_t t
)
71 return muldiv64(t
, s
->freq_hz
, 1000000000ULL) / (s
->tim_psc
+ 1);
74 static void stm32f2xx_timer_set_alarm(STM32F2XXTimerState
*s
, int64_t now
)
79 if (s
->tim_arr
== 0) {
83 DB_PRINT("Alarm set at: 0x%x\n", s
->tim_cr1
);
85 now_ticks
= stm32f2xx_ns_to_ticks(s
, now
);
86 ticks
= s
->tim_arr
- (now_ticks
- s
->tick_offset
);
88 DB_PRINT("Alarm set in %d ticks\n", (int) ticks
);
90 s
->hit_time
= muldiv64((ticks
+ (uint64_t) now_ticks
) * (s
->tim_psc
+ 1),
91 1000000000ULL, s
->freq_hz
);
93 timer_mod(s
->timer
, qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
) + s
->hit_time
);
94 DB_PRINT("Wait Time: %" PRId64
" ticks\n", s
->hit_time
);
97 static void stm32f2xx_timer_reset(DeviceState
*dev
)
99 STM32F2XXTimerState
*s
= STM32F2XXTIMER(dev
);
100 int64_t now
= qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
);
121 s
->tick_offset
= stm32f2xx_ns_to_ticks(s
, now
);
124 static uint64_t stm32f2xx_timer_read(void *opaque
, hwaddr offset
,
127 STM32F2XXTimerState
*s
= opaque
;
129 DB_PRINT("Read 0x%"HWADDR_PRIx
"\n", offset
);
151 return stm32f2xx_ns_to_ticks(s
, qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
)) -
172 qemu_log_mask(LOG_GUEST_ERROR
,
173 "%s: Bad offset 0x%"HWADDR_PRIx
"\n", __func__
, offset
);
179 static void stm32f2xx_timer_write(void *opaque
, hwaddr offset
,
180 uint64_t val64
, unsigned size
)
182 STM32F2XXTimerState
*s
= opaque
;
183 uint32_t value
= val64
;
184 int64_t now
= qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
);
185 uint32_t timer_val
= 0;
187 DB_PRINT("Write 0x%x, 0x%"HWADDR_PRIx
"\n", value
, offset
);
203 /* This is set by hardware and cleared by software */
208 if (s
->tim_egr
& TIM_EGR_UG
) {
214 s
->tim_ccmr1
= value
;
217 s
->tim_ccmr2
= value
;
223 timer_val
= stm32f2xx_ns_to_ticks(s
, now
) - s
->tick_offset
;
224 s
->tim_psc
= value
& 0xFFFF;
231 stm32f2xx_timer_set_alarm(s
, now
);
255 qemu_log_mask(LOG_GUEST_ERROR
,
256 "%s: Bad offset 0x%"HWADDR_PRIx
"\n", __func__
, offset
);
260 /* This means that a register write has affected the timer in a way that
261 * requires a refresh of both tick_offset and the alarm.
263 s
->tick_offset
= stm32f2xx_ns_to_ticks(s
, now
) - timer_val
;
264 stm32f2xx_timer_set_alarm(s
, now
);
267 static const MemoryRegionOps stm32f2xx_timer_ops
= {
268 .read
= stm32f2xx_timer_read
,
269 .write
= stm32f2xx_timer_write
,
270 .endianness
= DEVICE_NATIVE_ENDIAN
,
273 static const VMStateDescription vmstate_stm32f2xx_timer
= {
274 .name
= TYPE_STM32F2XX_TIMER
,
276 .minimum_version_id
= 1,
277 .fields
= (VMStateField
[]) {
278 VMSTATE_INT64(tick_offset
, STM32F2XXTimerState
),
279 VMSTATE_UINT32(tim_cr1
, STM32F2XXTimerState
),
280 VMSTATE_UINT32(tim_cr2
, STM32F2XXTimerState
),
281 VMSTATE_UINT32(tim_smcr
, STM32F2XXTimerState
),
282 VMSTATE_UINT32(tim_dier
, STM32F2XXTimerState
),
283 VMSTATE_UINT32(tim_sr
, STM32F2XXTimerState
),
284 VMSTATE_UINT32(tim_egr
, STM32F2XXTimerState
),
285 VMSTATE_UINT32(tim_ccmr1
, STM32F2XXTimerState
),
286 VMSTATE_UINT32(tim_ccmr2
, STM32F2XXTimerState
),
287 VMSTATE_UINT32(tim_ccer
, STM32F2XXTimerState
),
288 VMSTATE_UINT32(tim_psc
, STM32F2XXTimerState
),
289 VMSTATE_UINT32(tim_arr
, STM32F2XXTimerState
),
290 VMSTATE_UINT32(tim_ccr1
, STM32F2XXTimerState
),
291 VMSTATE_UINT32(tim_ccr2
, STM32F2XXTimerState
),
292 VMSTATE_UINT32(tim_ccr3
, STM32F2XXTimerState
),
293 VMSTATE_UINT32(tim_ccr4
, STM32F2XXTimerState
),
294 VMSTATE_UINT32(tim_dcr
, STM32F2XXTimerState
),
295 VMSTATE_UINT32(tim_dmar
, STM32F2XXTimerState
),
296 VMSTATE_UINT32(tim_or
, STM32F2XXTimerState
),
297 VMSTATE_END_OF_LIST()
301 static Property stm32f2xx_timer_properties
[] = {
302 DEFINE_PROP_UINT64("clock-frequency", struct STM32F2XXTimerState
,
303 freq_hz
, 1000000000),
304 DEFINE_PROP_END_OF_LIST(),
307 static void stm32f2xx_timer_init(Object
*obj
)
309 STM32F2XXTimerState
*s
= STM32F2XXTIMER(obj
);
311 sysbus_init_irq(SYS_BUS_DEVICE(obj
), &s
->irq
);
313 memory_region_init_io(&s
->iomem
, obj
, &stm32f2xx_timer_ops
, s
,
314 "stm32f2xx_timer", 0x400);
315 sysbus_init_mmio(SYS_BUS_DEVICE(obj
), &s
->iomem
);
318 static void stm32f2xx_timer_realize(DeviceState
*dev
, Error
**errp
)
320 STM32F2XXTimerState
*s
= STM32F2XXTIMER(dev
);
321 s
->timer
= timer_new_ns(QEMU_CLOCK_VIRTUAL
, stm32f2xx_timer_interrupt
, s
);
324 static void stm32f2xx_timer_class_init(ObjectClass
*klass
, void *data
)
326 DeviceClass
*dc
= DEVICE_CLASS(klass
);
328 dc
->reset
= stm32f2xx_timer_reset
;
329 device_class_set_props(dc
, stm32f2xx_timer_properties
);
330 dc
->vmsd
= &vmstate_stm32f2xx_timer
;
331 dc
->realize
= stm32f2xx_timer_realize
;
334 static const TypeInfo stm32f2xx_timer_info
= {
335 .name
= TYPE_STM32F2XX_TIMER
,
336 .parent
= TYPE_SYS_BUS_DEVICE
,
337 .instance_size
= sizeof(STM32F2XXTimerState
),
338 .instance_init
= stm32f2xx_timer_init
,
339 .class_init
= stm32f2xx_timer_class_init
,
342 static void stm32f2xx_timer_register_types(void)
344 type_register_static(&stm32f2xx_timer_info
);
347 type_init(stm32f2xx_timer_register_types
)