2 * ARM AMBA PrimeCell PL031 RTC
4 * Copyright (c) 2007 CodeSourcery
6 * This file is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
10 * Contributions after 2012-01-13 are licensed under the terms of the
11 * GNU GPL, version 2 or (at your option) any later version.
14 #include "qemu/osdep.h"
15 #include "hw/rtc/pl031.h"
16 #include "migration/vmstate.h"
18 #include "hw/qdev-properties.h"
19 #include "hw/sysbus.h"
20 #include "qemu/timer.h"
21 #include "sysemu/sysemu.h"
22 #include "sysemu/rtc.h"
23 #include "qemu/cutils.h"
25 #include "qemu/module.h"
27 #include "qapi/qapi-events-misc.h"
29 #define RTC_DR 0x00 /* Data read register */
30 #define RTC_MR 0x04 /* Match register */
31 #define RTC_LR 0x08 /* Data load register */
32 #define RTC_CR 0x0c /* Control register */
33 #define RTC_IMSC 0x10 /* Interrupt mask and set register */
34 #define RTC_RIS 0x14 /* Raw interrupt status register */
35 #define RTC_MIS 0x18 /* Masked interrupt status register */
36 #define RTC_ICR 0x1c /* Interrupt clear register */
38 static const unsigned char pl031_id
[] = {
39 0x31, 0x10, 0x14, 0x00, /* Device ID */
40 0x0d, 0xf0, 0x05, 0xb1 /* Cell ID */
43 static void pl031_update(PL031State
*s
)
45 uint32_t flags
= s
->is
& s
->im
;
47 trace_pl031_irq_state(flags
);
48 qemu_set_irq(s
->irq
, flags
);
51 static void pl031_interrupt(void * opaque
)
53 PL031State
*s
= (PL031State
*)opaque
;
56 trace_pl031_alarm_raised();
60 static uint32_t pl031_get_count(PL031State
*s
)
62 int64_t now
= qemu_clock_get_ns(rtc_clock
);
63 return s
->tick_offset
+ now
/ NANOSECONDS_PER_SECOND
;
66 static void pl031_set_alarm(PL031State
*s
)
70 /* The timer wraps around. This subtraction also wraps in the same way,
71 and gives correct results when alarm < now_ticks. */
72 ticks
= s
->mr
- pl031_get_count(s
);
73 trace_pl031_set_alarm(ticks
);
78 int64_t now
= qemu_clock_get_ns(rtc_clock
);
79 timer_mod(s
->timer
, now
+ (int64_t)ticks
* NANOSECONDS_PER_SECOND
);
83 static uint64_t pl031_read(void *opaque
, hwaddr offset
,
86 PL031State
*s
= (PL031State
*)opaque
;
91 r
= pl031_get_count(s
);
106 /* RTC is permanently enabled. */
112 case 0xfe0 ... 0xfff:
113 r
= pl031_id
[(offset
- 0xfe0) >> 2];
116 qemu_log_mask(LOG_GUEST_ERROR
,
117 "pl031: read of write-only register at offset 0x%x\n",
122 qemu_log_mask(LOG_GUEST_ERROR
,
123 "pl031_read: Bad offset 0x%x\n", (int)offset
);
128 trace_pl031_read(offset
, r
);
132 static void pl031_write(void * opaque
, hwaddr offset
,
133 uint64_t value
, unsigned size
)
135 PL031State
*s
= (PL031State
*)opaque
;
137 trace_pl031_write(offset
, value
);
141 g_autofree
const char *qom_path
= object_get_canonical_path(opaque
);
144 s
->tick_offset
+= value
- pl031_get_count(s
);
146 qemu_get_timedate(&tm
, s
->tick_offset
);
147 qapi_event_send_rtc_change(qemu_timedate_diff(&tm
), qom_path
);
165 /* Written value is ignored. */
171 qemu_log_mask(LOG_GUEST_ERROR
,
172 "pl031: write to read-only register at offset 0x%x\n",
177 qemu_log_mask(LOG_GUEST_ERROR
,
178 "pl031_write: Bad offset 0x%x\n", (int)offset
);
183 static const MemoryRegionOps pl031_ops
= {
185 .write
= pl031_write
,
186 .endianness
= DEVICE_NATIVE_ENDIAN
,
189 static void pl031_init(Object
*obj
)
191 PL031State
*s
= PL031(obj
);
192 SysBusDevice
*dev
= SYS_BUS_DEVICE(obj
);
195 memory_region_init_io(&s
->iomem
, obj
, &pl031_ops
, s
, "pl031", 0x1000);
196 sysbus_init_mmio(dev
, &s
->iomem
);
198 sysbus_init_irq(dev
, &s
->irq
);
199 qemu_get_timedate(&tm
, 0);
200 s
->tick_offset
= mktimegm(&tm
) -
201 qemu_clock_get_ns(rtc_clock
) / NANOSECONDS_PER_SECOND
;
203 s
->timer
= timer_new_ns(rtc_clock
, pl031_interrupt
, s
);
206 static void pl031_finalize(Object
*obj
)
208 PL031State
*s
= PL031(obj
);
210 timer_free(s
->timer
);
213 static int pl031_pre_save(void *opaque
)
215 PL031State
*s
= opaque
;
218 * The PL031 device model code uses the tick_offset field, which is
219 * the offset between what the guest RTC should read and what the
220 * QEMU rtc_clock reads:
221 * guest_rtc = rtc_clock + tick_offset
223 * tick_offset = guest_rtc - rtc_clock
225 * We want to migrate this offset, which sounds straightforward.
226 * Unfortunately older versions of QEMU migrated a conversion of this
227 * offset into an offset from the vm_clock. (This was in turn an
228 * attempt to be compatible with even older QEMU versions, but it
229 * has incorrect behaviour if the rtc_clock is not the same as the
230 * vm_clock.) So we put the actual tick_offset into a migration
231 * subsection, and the backwards-compatible time-relative-to-vm_clock
232 * in the main migration state.
234 * Calculate base time relative to QEMU_CLOCK_VIRTUAL:
236 int64_t delta
= qemu_clock_get_ns(rtc_clock
) - qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
);
237 s
->tick_offset_vmstate
= s
->tick_offset
+ delta
/ NANOSECONDS_PER_SECOND
;
242 static int pl031_pre_load(void *opaque
)
244 PL031State
*s
= opaque
;
246 s
->tick_offset_migrated
= false;
250 static int pl031_post_load(void *opaque
, int version_id
)
252 PL031State
*s
= opaque
;
255 * If we got the tick_offset subsection, then we can just use
256 * the value in that. Otherwise the source is an older QEMU and
257 * has given us the offset from the vm_clock; convert it back to
258 * an offset from the rtc_clock. This will cause time to incorrectly
259 * go backwards compared to the host RTC, but this is unavoidable.
262 if (!s
->tick_offset_migrated
) {
263 int64_t delta
= qemu_clock_get_ns(rtc_clock
) -
264 qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
);
265 s
->tick_offset
= s
->tick_offset_vmstate
-
266 delta
/ NANOSECONDS_PER_SECOND
;
272 static int pl031_tick_offset_post_load(void *opaque
, int version_id
)
274 PL031State
*s
= opaque
;
276 s
->tick_offset_migrated
= true;
280 static bool pl031_tick_offset_needed(void *opaque
)
282 PL031State
*s
= opaque
;
284 return s
->migrate_tick_offset
;
287 static const VMStateDescription vmstate_pl031_tick_offset
= {
288 .name
= "pl031/tick-offset",
290 .minimum_version_id
= 1,
291 .needed
= pl031_tick_offset_needed
,
292 .post_load
= pl031_tick_offset_post_load
,
293 .fields
= (VMStateField
[]) {
294 VMSTATE_UINT32(tick_offset
, PL031State
),
295 VMSTATE_END_OF_LIST()
299 static const VMStateDescription vmstate_pl031
= {
302 .minimum_version_id
= 1,
303 .pre_save
= pl031_pre_save
,
304 .pre_load
= pl031_pre_load
,
305 .post_load
= pl031_post_load
,
306 .fields
= (VMStateField
[]) {
307 VMSTATE_UINT32(tick_offset_vmstate
, PL031State
),
308 VMSTATE_UINT32(mr
, PL031State
),
309 VMSTATE_UINT32(lr
, PL031State
),
310 VMSTATE_UINT32(cr
, PL031State
),
311 VMSTATE_UINT32(im
, PL031State
),
312 VMSTATE_UINT32(is
, PL031State
),
313 VMSTATE_END_OF_LIST()
315 .subsections
= (const VMStateDescription
*[]) {
316 &vmstate_pl031_tick_offset
,
321 static Property pl031_properties
[] = {
323 * True to correctly migrate the tick offset of the RTC. False to
324 * obtain backward migration compatibility with older QEMU versions,
325 * at the expense of the guest RTC going backwards compared with the
326 * host RTC when the VM is saved/restored if using -rtc host.
327 * (Even if set to 'true' older QEMU can migrate forward to newer QEMU;
328 * 'false' also permits newer QEMU to migrate to older QEMU.)
330 DEFINE_PROP_BOOL("migrate-tick-offset",
331 PL031State
, migrate_tick_offset
, true),
332 DEFINE_PROP_END_OF_LIST()
335 static void pl031_class_init(ObjectClass
*klass
, void *data
)
337 DeviceClass
*dc
= DEVICE_CLASS(klass
);
339 dc
->vmsd
= &vmstate_pl031
;
340 device_class_set_props(dc
, pl031_properties
);
343 static const TypeInfo pl031_info
= {
345 .parent
= TYPE_SYS_BUS_DEVICE
,
346 .instance_size
= sizeof(PL031State
),
347 .instance_init
= pl031_init
,
348 .instance_finalize
= pl031_finalize
,
349 .class_init
= pl031_class_init
,
352 static void pl031_register_types(void)
354 type_register_static(&pl031_info
);
357 type_init(pl031_register_types
)