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 "qemu-common.h"
16 #include "hw/timer/pl031.h"
17 #include "migration/vmstate.h"
19 #include "hw/qdev-properties.h"
20 #include "hw/sysbus.h"
21 #include "qemu/timer.h"
22 #include "sysemu/sysemu.h"
23 #include "qemu/cutils.h"
25 #include "qemu/module.h"
28 #define RTC_DR 0x00 /* Data read register */
29 #define RTC_MR 0x04 /* Match register */
30 #define RTC_LR 0x08 /* Data load register */
31 #define RTC_CR 0x0c /* Control register */
32 #define RTC_IMSC 0x10 /* Interrupt mask and set register */
33 #define RTC_RIS 0x14 /* Raw interrupt status register */
34 #define RTC_MIS 0x18 /* Masked interrupt status register */
35 #define RTC_ICR 0x1c /* Interrupt clear register */
37 static const unsigned char pl031_id
[] = {
38 0x31, 0x10, 0x14, 0x00, /* Device ID */
39 0x0d, 0xf0, 0x05, 0xb1 /* Cell ID */
42 static void pl031_update(PL031State
*s
)
44 uint32_t flags
= s
->is
& s
->im
;
46 trace_pl031_irq_state(flags
);
47 qemu_set_irq(s
->irq
, flags
);
50 static void pl031_interrupt(void * opaque
)
52 PL031State
*s
= (PL031State
*)opaque
;
55 trace_pl031_alarm_raised();
59 static uint32_t pl031_get_count(PL031State
*s
)
61 int64_t now
= qemu_clock_get_ns(rtc_clock
);
62 return s
->tick_offset
+ now
/ NANOSECONDS_PER_SECOND
;
65 static void pl031_set_alarm(PL031State
*s
)
69 /* The timer wraps around. This subtraction also wraps in the same way,
70 and gives correct results when alarm < now_ticks. */
71 ticks
= s
->mr
- pl031_get_count(s
);
72 trace_pl031_set_alarm(ticks
);
77 int64_t now
= qemu_clock_get_ns(rtc_clock
);
78 timer_mod(s
->timer
, now
+ (int64_t)ticks
* NANOSECONDS_PER_SECOND
);
82 static uint64_t pl031_read(void *opaque
, hwaddr offset
,
85 PL031State
*s
= (PL031State
*)opaque
;
90 r
= pl031_get_count(s
);
105 /* RTC is permanently enabled. */
111 case 0xfe0 ... 0xfff:
112 r
= pl031_id
[(offset
- 0xfe0) >> 2];
115 qemu_log_mask(LOG_GUEST_ERROR
,
116 "pl031: read of write-only register at offset 0x%x\n",
121 qemu_log_mask(LOG_GUEST_ERROR
,
122 "pl031_read: Bad offset 0x%x\n", (int)offset
);
127 trace_pl031_read(offset
, r
);
131 static void pl031_write(void * opaque
, hwaddr offset
,
132 uint64_t value
, unsigned size
)
134 PL031State
*s
= (PL031State
*)opaque
;
136 trace_pl031_write(offset
, value
);
140 s
->tick_offset
+= value
- pl031_get_count(s
);
152 /* The PL031 documentation (DDI0224B) states that the interrupt is
153 cleared when bit 0 of the written value is set. However the
154 arm926e documentation (DDI0287B) states that the interrupt is
155 cleared when any value is written. */
160 /* Written value is ignored. */
166 qemu_log_mask(LOG_GUEST_ERROR
,
167 "pl031: write to read-only register at offset 0x%x\n",
172 qemu_log_mask(LOG_GUEST_ERROR
,
173 "pl031_write: Bad offset 0x%x\n", (int)offset
);
178 static const MemoryRegionOps pl031_ops
= {
180 .write
= pl031_write
,
181 .endianness
= DEVICE_NATIVE_ENDIAN
,
184 static void pl031_init(Object
*obj
)
186 PL031State
*s
= PL031(obj
);
187 SysBusDevice
*dev
= SYS_BUS_DEVICE(obj
);
190 memory_region_init_io(&s
->iomem
, obj
, &pl031_ops
, s
, "pl031", 0x1000);
191 sysbus_init_mmio(dev
, &s
->iomem
);
193 sysbus_init_irq(dev
, &s
->irq
);
194 qemu_get_timedate(&tm
, 0);
195 s
->tick_offset
= mktimegm(&tm
) -
196 qemu_clock_get_ns(rtc_clock
) / NANOSECONDS_PER_SECOND
;
198 s
->timer
= timer_new_ns(rtc_clock
, pl031_interrupt
, s
);
201 static int pl031_pre_save(void *opaque
)
203 PL031State
*s
= opaque
;
206 * The PL031 device model code uses the tick_offset field, which is
207 * the offset between what the guest RTC should read and what the
208 * QEMU rtc_clock reads:
209 * guest_rtc = rtc_clock + tick_offset
211 * tick_offset = guest_rtc - rtc_clock
213 * We want to migrate this offset, which sounds straightforward.
214 * Unfortunately older versions of QEMU migrated a conversion of this
215 * offset into an offset from the vm_clock. (This was in turn an
216 * attempt to be compatible with even older QEMU versions, but it
217 * has incorrect behaviour if the rtc_clock is not the same as the
218 * vm_clock.) So we put the actual tick_offset into a migration
219 * subsection, and the backwards-compatible time-relative-to-vm_clock
220 * in the main migration state.
222 * Calculate base time relative to QEMU_CLOCK_VIRTUAL:
224 int64_t delta
= qemu_clock_get_ns(rtc_clock
) - qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
);
225 s
->tick_offset_vmstate
= s
->tick_offset
+ delta
/ NANOSECONDS_PER_SECOND
;
230 static int pl031_pre_load(void *opaque
)
232 PL031State
*s
= opaque
;
234 s
->tick_offset_migrated
= false;
238 static int pl031_post_load(void *opaque
, int version_id
)
240 PL031State
*s
= opaque
;
243 * If we got the tick_offset subsection, then we can just use
244 * the value in that. Otherwise the source is an older QEMU and
245 * has given us the offset from the vm_clock; convert it back to
246 * an offset from the rtc_clock. This will cause time to incorrectly
247 * go backwards compared to the host RTC, but this is unavoidable.
250 if (!s
->tick_offset_migrated
) {
251 int64_t delta
= qemu_clock_get_ns(rtc_clock
) -
252 qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
);
253 s
->tick_offset
= s
->tick_offset_vmstate
-
254 delta
/ NANOSECONDS_PER_SECOND
;
260 static int pl031_tick_offset_post_load(void *opaque
, int version_id
)
262 PL031State
*s
= opaque
;
264 s
->tick_offset_migrated
= true;
268 static bool pl031_tick_offset_needed(void *opaque
)
270 PL031State
*s
= opaque
;
272 return s
->migrate_tick_offset
;
275 static const VMStateDescription vmstate_pl031_tick_offset
= {
276 .name
= "pl031/tick-offset",
278 .minimum_version_id
= 1,
279 .needed
= pl031_tick_offset_needed
,
280 .post_load
= pl031_tick_offset_post_load
,
281 .fields
= (VMStateField
[]) {
282 VMSTATE_UINT32(tick_offset
, PL031State
),
283 VMSTATE_END_OF_LIST()
287 static const VMStateDescription vmstate_pl031
= {
290 .minimum_version_id
= 1,
291 .pre_save
= pl031_pre_save
,
292 .pre_load
= pl031_pre_load
,
293 .post_load
= pl031_post_load
,
294 .fields
= (VMStateField
[]) {
295 VMSTATE_UINT32(tick_offset_vmstate
, PL031State
),
296 VMSTATE_UINT32(mr
, PL031State
),
297 VMSTATE_UINT32(lr
, PL031State
),
298 VMSTATE_UINT32(cr
, PL031State
),
299 VMSTATE_UINT32(im
, PL031State
),
300 VMSTATE_UINT32(is
, PL031State
),
301 VMSTATE_END_OF_LIST()
303 .subsections
= (const VMStateDescription
*[]) {
304 &vmstate_pl031_tick_offset
,
309 static Property pl031_properties
[] = {
311 * True to correctly migrate the tick offset of the RTC. False to
312 * obtain backward migration compatibility with older QEMU versions,
313 * at the expense of the guest RTC going backwards compared with the
314 * host RTC when the VM is saved/restored if using -rtc host.
315 * (Even if set to 'true' older QEMU can migrate forward to newer QEMU;
316 * 'false' also permits newer QEMU to migrate to older QEMU.)
318 DEFINE_PROP_BOOL("migrate-tick-offset",
319 PL031State
, migrate_tick_offset
, true),
320 DEFINE_PROP_END_OF_LIST()
323 static void pl031_class_init(ObjectClass
*klass
, void *data
)
325 DeviceClass
*dc
= DEVICE_CLASS(klass
);
327 dc
->vmsd
= &vmstate_pl031
;
328 dc
->props
= pl031_properties
;
331 static const TypeInfo pl031_info
= {
333 .parent
= TYPE_SYS_BUS_DEVICE
,
334 .instance_size
= sizeof(PL031State
),
335 .instance_init
= pl031_init
,
336 .class_init
= pl031_class_init
,
339 static void pl031_register_types(void)
341 type_register_static(&pl031_info
);
344 type_init(pl031_register_types
)