]> Git Repo - qemu.git/blame - hw/timer/mc146818rtc.c
migration: create savevm_state
[qemu.git] / hw / timer / mc146818rtc.c
CommitLineData
80cabfad
FB
1/*
2 * QEMU MC146818 RTC emulation
5fafdf24 3 *
80cabfad 4 * Copyright (c) 2003-2004 Fabrice Bellard
5fafdf24 5 *
80cabfad
FB
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:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
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
22 * THE SOFTWARE.
23 */
83c9f4ca 24#include "hw/hw.h"
1de7afc9 25#include "qemu/timer.h"
9c17d615 26#include "sysemu/sysemu.h"
0d09e41a 27#include "hw/timer/mc146818rtc.h"
7b1b5d19 28#include "qapi/visitor.h"
e010ad8f 29#include "qapi-event.h"
f2ae8abf 30#include "qmp-commands.h"
80cabfad 31
d362e757 32#ifdef TARGET_I386
0d09e41a 33#include "hw/i386/apic.h"
d362e757
JK
34#endif
35
80cabfad 36//#define DEBUG_CMOS
aa6f63ff 37//#define DEBUG_COALESCED
80cabfad 38
ec51e364
IY
39#ifdef DEBUG_CMOS
40# define CMOS_DPRINTF(format, ...) printf(format, ## __VA_ARGS__)
41#else
42# define CMOS_DPRINTF(format, ...) do { } while (0)
43#endif
44
aa6f63ff
BS
45#ifdef DEBUG_COALESCED
46# define DPRINTF_C(format, ...) printf(format, ## __VA_ARGS__)
47#else
48# define DPRINTF_C(format, ...) do { } while (0)
49#endif
50
56038ef6 51#define NSEC_PER_SEC 1000000000LL
00cf5774
PB
52#define SEC_PER_MIN 60
53#define MIN_PER_HOUR 60
54#define SEC_PER_HOUR 3600
55#define HOUR_PER_DAY 24
56#define SEC_PER_DAY 86400
56038ef6 57
dd17765b 58#define RTC_REINJECT_ON_ACK_COUNT 20
e46deaba 59#define RTC_CLOCK_RATE 32768
56038ef6 60#define UIP_HOLD_LENGTH (8 * NSEC_PER_SEC / 32768)
ba32edab 61
0e41271e
AF
62#define MC146818_RTC(obj) OBJECT_CHECK(RTCState, (obj), TYPE_MC146818_RTC)
63
1d914fa0 64typedef struct RTCState {
0e41271e
AF
65 ISADevice parent_obj;
66
b2c5009b 67 MemoryRegion io;
dff38e7b
FB
68 uint8_t cmos_data[128];
69 uint8_t cmos_index;
32e0c826 70 int32_t base_year;
56038ef6
YZ
71 uint64_t base_rtc;
72 uint64_t last_update;
73 int64_t offset;
d537cf6c 74 qemu_irq irq;
18c6e2ff 75 int it_shift;
dff38e7b
FB
76 /* periodic timer */
77 QEMUTimer *periodic_timer;
78 int64_t next_periodic_time;
56038ef6
YZ
79 /* update-ended timer */
80 QEMUTimer *update_timer;
00cf5774 81 uint64_t next_alarm_time;
ba32edab 82 uint16_t irq_reinject_on_ack_count;
73822ec8
AL
83 uint32_t irq_coalesced;
84 uint32_t period;
93b66569 85 QEMUTimer *coalesced_timer;
17604dac 86 Notifier clock_reset_notifier;
433acf0d 87 LostTickPolicy lost_tick_policy;
da98c8eb 88 Notifier suspend_notifier;
f2ae8abf 89 QLIST_ENTRY(RTCState) link;
1d914fa0 90} RTCState;
dff38e7b
FB
91
92static void rtc_set_time(RTCState *s);
56038ef6 93static void rtc_update_time(RTCState *s);
e2826cf4 94static void rtc_set_cmos(RTCState *s, const struct tm *tm);
56038ef6 95static inline int rtc_from_bcd(RTCState *s, int a);
00cf5774 96static uint64_t get_next_alarm(RTCState *s);
56038ef6 97
41a9b8b2
YZ
98static inline bool rtc_running(RTCState *s)
99{
100 return (!(s->cmos_data[RTC_REG_B] & REG_B_SET) &&
101 (s->cmos_data[RTC_REG_A] & 0x70) <= 0x20);
102}
103
56038ef6
YZ
104static uint64_t get_guest_rtc_ns(RTCState *s)
105{
106 uint64_t guest_rtc;
884f17c2 107 uint64_t guest_clock = qemu_clock_get_ns(rtc_clock);
56038ef6
YZ
108
109 guest_rtc = s->base_rtc * NSEC_PER_SEC
110 + guest_clock - s->last_update + s->offset;
111 return guest_rtc;
112}
dff38e7b 113
93b66569
AL
114#ifdef TARGET_I386
115static void rtc_coalesced_timer_update(RTCState *s)
116{
117 if (s->irq_coalesced == 0) {
bc72ad67 118 timer_del(s->coalesced_timer);
93b66569
AL
119 } else {
120 /* divide each RTC interval to 2 - 8 smaller intervals */
121 int c = MIN(s->irq_coalesced, 7) + 1;
884f17c2 122 int64_t next_clock = qemu_clock_get_ns(rtc_clock) +
e46deaba 123 muldiv64(s->period / c, get_ticks_per_sec(), RTC_CLOCK_RATE);
bc72ad67 124 timer_mod(s->coalesced_timer, next_clock);
93b66569
AL
125 }
126}
127
128static void rtc_coalesced_timer(void *opaque)
129{
130 RTCState *s = opaque;
131
132 if (s->irq_coalesced != 0) {
133 apic_reset_irq_delivered();
134 s->cmos_data[RTC_REG_C] |= 0xc0;
aa6f63ff 135 DPRINTF_C("cmos: injecting from timer\n");
7d932dfd 136 qemu_irq_raise(s->irq);
93b66569
AL
137 if (apic_get_irq_delivered()) {
138 s->irq_coalesced--;
aa6f63ff
BS
139 DPRINTF_C("cmos: coalesced irqs decreased to %d\n",
140 s->irq_coalesced);
93b66569
AL
141 }
142 }
143
144 rtc_coalesced_timer_update(s);
145}
146#endif
147
56038ef6 148/* handle periodic timer */
c4c18e24 149static void periodic_timer_update(RTCState *s, int64_t current_time)
dff38e7b
FB
150{
151 int period_code, period;
152 int64_t cur_clock, next_irq_clock;
153
154 period_code = s->cmos_data[RTC_REG_A] & 0x0f;
100d9891 155 if (period_code != 0
c2d30667 156 && (s->cmos_data[RTC_REG_B] & REG_B_PIE)) {
dff38e7b
FB
157 if (period_code <= 2)
158 period_code += 7;
159 /* period in 32 Khz cycles */
160 period = 1 << (period_code - 1);
73822ec8 161#ifdef TARGET_I386
aa6f63ff 162 if (period != s->period) {
73822ec8 163 s->irq_coalesced = (s->irq_coalesced * s->period) / period;
aa6f63ff
BS
164 DPRINTF_C("cmos: coalesced irqs scaled to %d\n", s->irq_coalesced);
165 }
73822ec8
AL
166 s->period = period;
167#endif
dff38e7b 168 /* compute 32 khz clock */
e46deaba 169 cur_clock = muldiv64(current_time, RTC_CLOCK_RATE, get_ticks_per_sec());
dff38e7b 170 next_irq_clock = (cur_clock & ~(period - 1)) + period;
6875204c 171 s->next_periodic_time =
e46deaba 172 muldiv64(next_irq_clock, get_ticks_per_sec(), RTC_CLOCK_RATE) + 1;
bc72ad67 173 timer_mod(s->periodic_timer, s->next_periodic_time);
dff38e7b 174 } else {
73822ec8
AL
175#ifdef TARGET_I386
176 s->irq_coalesced = 0;
177#endif
bc72ad67 178 timer_del(s->periodic_timer);
dff38e7b
FB
179 }
180}
181
182static void rtc_periodic_timer(void *opaque)
183{
184 RTCState *s = opaque;
185
c4c18e24 186 periodic_timer_update(s, s->next_periodic_time);
663447d4 187 s->cmos_data[RTC_REG_C] |= REG_C_PF;
100d9891 188 if (s->cmos_data[RTC_REG_B] & REG_B_PIE) {
663447d4 189 s->cmos_data[RTC_REG_C] |= REG_C_IRQF;
93b66569 190#ifdef TARGET_I386
104059da 191 if (s->lost_tick_policy == LOST_TICK_POLICY_SLEW) {
ba32edab
GN
192 if (s->irq_reinject_on_ack_count >= RTC_REINJECT_ON_ACK_COUNT)
193 s->irq_reinject_on_ack_count = 0;
93b66569 194 apic_reset_irq_delivered();
7d932dfd 195 qemu_irq_raise(s->irq);
93b66569
AL
196 if (!apic_get_irq_delivered()) {
197 s->irq_coalesced++;
198 rtc_coalesced_timer_update(s);
aa6f63ff
BS
199 DPRINTF_C("cmos: coalesced irqs increased to %d\n",
200 s->irq_coalesced);
93b66569
AL
201 }
202 } else
203#endif
7d932dfd 204 qemu_irq_raise(s->irq);
100d9891 205 }
dff38e7b 206}
80cabfad 207
56038ef6
YZ
208/* handle update-ended timer */
209static void check_update_timer(RTCState *s)
210{
211 uint64_t next_update_time;
212 uint64_t guest_nsec;
00cf5774 213 int next_alarm_sec;
56038ef6 214
41a9b8b2
YZ
215 /* From the data sheet: "Holding the dividers in reset prevents
216 * interrupts from operating, while setting the SET bit allows"
217 * them to occur. However, it will prevent an alarm interrupt
218 * from occurring, because the time of day is not updated.
56038ef6 219 */
41a9b8b2 220 if ((s->cmos_data[RTC_REG_A] & 0x60) == 0x60) {
bc72ad67 221 timer_del(s->update_timer);
41a9b8b2
YZ
222 return;
223 }
56038ef6
YZ
224 if ((s->cmos_data[RTC_REG_C] & REG_C_UF) &&
225 (s->cmos_data[RTC_REG_B] & REG_B_SET)) {
bc72ad67 226 timer_del(s->update_timer);
56038ef6
YZ
227 return;
228 }
229 if ((s->cmos_data[RTC_REG_C] & REG_C_UF) &&
230 (s->cmos_data[RTC_REG_C] & REG_C_AF)) {
bc72ad67 231 timer_del(s->update_timer);
56038ef6
YZ
232 return;
233 }
234
235 guest_nsec = get_guest_rtc_ns(s) % NSEC_PER_SEC;
00cf5774 236 /* if UF is clear, reprogram to next second */
884f17c2 237 next_update_time = qemu_clock_get_ns(rtc_clock)
56038ef6 238 + NSEC_PER_SEC - guest_nsec;
00cf5774
PB
239
240 /* Compute time of next alarm. One second is already accounted
241 * for in next_update_time.
242 */
243 next_alarm_sec = get_next_alarm(s);
244 s->next_alarm_time = next_update_time + (next_alarm_sec - 1) * NSEC_PER_SEC;
245
246 if (s->cmos_data[RTC_REG_C] & REG_C_UF) {
247 /* UF is set, but AF is clear. Program the timer to target
248 * the alarm time. */
249 next_update_time = s->next_alarm_time;
250 }
e93379b0 251 if (next_update_time != timer_expire_time_ns(s->update_timer)) {
bc72ad67 252 timer_mod(s->update_timer, next_update_time);
56038ef6
YZ
253 }
254}
255
256static inline uint8_t convert_hour(RTCState *s, uint8_t hour)
257{
258 if (!(s->cmos_data[RTC_REG_B] & REG_B_24H)) {
259 hour %= 12;
260 if (s->cmos_data[RTC_HOURS] & 0x80) {
261 hour += 12;
262 }
263 }
264 return hour;
265}
266
00cf5774 267static uint64_t get_next_alarm(RTCState *s)
56038ef6 268{
00cf5774
PB
269 int32_t alarm_sec, alarm_min, alarm_hour, cur_hour, cur_min, cur_sec;
270 int32_t hour, min, sec;
271
272 rtc_update_time(s);
56038ef6
YZ
273
274 alarm_sec = rtc_from_bcd(s, s->cmos_data[RTC_SECONDS_ALARM]);
275 alarm_min = rtc_from_bcd(s, s->cmos_data[RTC_MINUTES_ALARM]);
276 alarm_hour = rtc_from_bcd(s, s->cmos_data[RTC_HOURS_ALARM]);
00cf5774 277 alarm_hour = alarm_hour == -1 ? -1 : convert_hour(s, alarm_hour);
56038ef6
YZ
278
279 cur_sec = rtc_from_bcd(s, s->cmos_data[RTC_SECONDS]);
280 cur_min = rtc_from_bcd(s, s->cmos_data[RTC_MINUTES]);
281 cur_hour = rtc_from_bcd(s, s->cmos_data[RTC_HOURS]);
282 cur_hour = convert_hour(s, cur_hour);
283
00cf5774
PB
284 if (alarm_hour == -1) {
285 alarm_hour = cur_hour;
286 if (alarm_min == -1) {
287 alarm_min = cur_min;
288 if (alarm_sec == -1) {
289 alarm_sec = cur_sec + 1;
290 } else if (cur_sec > alarm_sec) {
291 alarm_min++;
292 }
293 } else if (cur_min == alarm_min) {
294 if (alarm_sec == -1) {
295 alarm_sec = cur_sec + 1;
296 } else {
297 if (cur_sec > alarm_sec) {
298 alarm_hour++;
299 }
300 }
301 if (alarm_sec == SEC_PER_MIN) {
302 /* wrap to next hour, minutes is not in don't care mode */
303 alarm_sec = 0;
304 alarm_hour++;
305 }
306 } else if (cur_min > alarm_min) {
307 alarm_hour++;
308 }
309 } else if (cur_hour == alarm_hour) {
310 if (alarm_min == -1) {
311 alarm_min = cur_min;
312 if (alarm_sec == -1) {
313 alarm_sec = cur_sec + 1;
314 } else if (cur_sec > alarm_sec) {
315 alarm_min++;
316 }
317
318 if (alarm_sec == SEC_PER_MIN) {
319 alarm_sec = 0;
320 alarm_min++;
321 }
322 /* wrap to next day, hour is not in don't care mode */
323 alarm_min %= MIN_PER_HOUR;
324 } else if (cur_min == alarm_min) {
325 if (alarm_sec == -1) {
326 alarm_sec = cur_sec + 1;
327 }
328 /* wrap to next day, hours+minutes not in don't care mode */
329 alarm_sec %= SEC_PER_MIN;
330 }
56038ef6 331 }
56038ef6 332
00cf5774
PB
333 /* values that are still don't care fire at the next min/sec */
334 if (alarm_min == -1) {
335 alarm_min = 0;
336 }
337 if (alarm_sec == -1) {
338 alarm_sec = 0;
339 }
340
341 /* keep values in range */
342 if (alarm_sec == SEC_PER_MIN) {
343 alarm_sec = 0;
344 alarm_min++;
345 }
346 if (alarm_min == MIN_PER_HOUR) {
347 alarm_min = 0;
348 alarm_hour++;
349 }
350 alarm_hour %= HOUR_PER_DAY;
351
352 hour = alarm_hour - cur_hour;
353 min = hour * MIN_PER_HOUR + alarm_min - cur_min;
354 sec = min * SEC_PER_MIN + alarm_sec - cur_sec;
355 return sec <= 0 ? sec + SEC_PER_DAY : sec;
56038ef6
YZ
356}
357
358static void rtc_update_timer(void *opaque)
359{
360 RTCState *s = opaque;
361 int32_t irqs = REG_C_UF;
362 int32_t new_irqs;
363
41a9b8b2
YZ
364 assert((s->cmos_data[RTC_REG_A] & 0x60) != 0x60);
365
56038ef6
YZ
366 /* UIP might have been latched, update time and clear it. */
367 rtc_update_time(s);
368 s->cmos_data[RTC_REG_A] &= ~REG_A_UIP;
369
884f17c2 370 if (qemu_clock_get_ns(rtc_clock) >= s->next_alarm_time) {
56038ef6
YZ
371 irqs |= REG_C_AF;
372 if (s->cmos_data[RTC_REG_B] & REG_B_AIE) {
373 qemu_system_wakeup_request(QEMU_WAKEUP_REASON_RTC);
374 }
375 }
00cf5774 376
56038ef6
YZ
377 new_irqs = irqs & ~s->cmos_data[RTC_REG_C];
378 s->cmos_data[RTC_REG_C] |= irqs;
379 if ((new_irqs & s->cmos_data[RTC_REG_B]) != 0) {
380 s->cmos_data[RTC_REG_C] |= REG_C_IRQF;
381 qemu_irq_raise(s->irq);
382 }
383 check_update_timer(s);
384}
385
0da8c842
AG
386static void cmos_ioport_write(void *opaque, hwaddr addr,
387 uint64_t data, unsigned size)
80cabfad 388{
b41a2cd1 389 RTCState *s = opaque;
80cabfad
FB
390
391 if ((addr & 1) == 0) {
392 s->cmos_index = data & 0x7f;
393 } else {
c5539cb4 394 CMOS_DPRINTF("cmos: write index=0x%02x val=0x%02" PRIx64 "\n",
ec51e364 395 s->cmos_index, data);
dff38e7b 396 switch(s->cmos_index) {
80cabfad
FB
397 case RTC_SECONDS_ALARM:
398 case RTC_MINUTES_ALARM:
399 case RTC_HOURS_ALARM:
80cabfad 400 s->cmos_data[s->cmos_index] = data;
56038ef6 401 check_update_timer(s);
80cabfad 402 break;
e67edb94
PB
403 case RTC_IBM_PS2_CENTURY_BYTE:
404 s->cmos_index = RTC_CENTURY;
405 /* fall through */
406 case RTC_CENTURY:
80cabfad
FB
407 case RTC_SECONDS:
408 case RTC_MINUTES:
409 case RTC_HOURS:
410 case RTC_DAY_OF_WEEK:
411 case RTC_DAY_OF_MONTH:
412 case RTC_MONTH:
413 case RTC_YEAR:
414 s->cmos_data[s->cmos_index] = data;
dff38e7b 415 /* if in set mode, do not update the time */
41a9b8b2 416 if (rtc_running(s)) {
dff38e7b 417 rtc_set_time(s);
56038ef6 418 check_update_timer(s);
dff38e7b 419 }
80cabfad
FB
420 break;
421 case RTC_REG_A:
41a9b8b2
YZ
422 if ((data & 0x60) == 0x60) {
423 if (rtc_running(s)) {
424 rtc_update_time(s);
425 }
426 /* What happens to UIP when divider reset is enabled is
427 * unclear from the datasheet. Shouldn't matter much
428 * though.
429 */
430 s->cmos_data[RTC_REG_A] &= ~REG_A_UIP;
431 } else if (((s->cmos_data[RTC_REG_A] & 0x60) == 0x60) &&
432 (data & 0x70) <= 0x20) {
433 /* when the divider reset is removed, the first update cycle
434 * begins one-half second later*/
435 if (!(s->cmos_data[RTC_REG_B] & REG_B_SET)) {
436 s->offset = 500000000;
437 rtc_set_time(s);
438 }
439 s->cmos_data[RTC_REG_A] &= ~REG_A_UIP;
440 }
dff38e7b
FB
441 /* UIP bit is read only */
442 s->cmos_data[RTC_REG_A] = (data & ~REG_A_UIP) |
443 (s->cmos_data[RTC_REG_A] & REG_A_UIP);
884f17c2 444 periodic_timer_update(s, qemu_clock_get_ns(rtc_clock));
56038ef6 445 check_update_timer(s);
dff38e7b 446 break;
80cabfad 447 case RTC_REG_B:
dff38e7b 448 if (data & REG_B_SET) {
56038ef6 449 /* update cmos to when the rtc was stopping */
41a9b8b2 450 if (rtc_running(s)) {
56038ef6
YZ
451 rtc_update_time(s);
452 }
dff38e7b
FB
453 /* set mode: reset UIP mode */
454 s->cmos_data[RTC_REG_A] &= ~REG_A_UIP;
455 data &= ~REG_B_UIE;
456 } else {
457 /* if disabling set mode, update the time */
41a9b8b2
YZ
458 if ((s->cmos_data[RTC_REG_B] & REG_B_SET) &&
459 (s->cmos_data[RTC_REG_A] & 0x70) <= 0x20) {
56038ef6 460 s->offset = get_guest_rtc_ns(s) % NSEC_PER_SEC;
dff38e7b
FB
461 rtc_set_time(s);
462 }
463 }
9324cc50
YZ
464 /* if an interrupt flag is already set when the interrupt
465 * becomes enabled, raise an interrupt immediately. */
466 if (data & s->cmos_data[RTC_REG_C] & REG_C_MASK) {
467 s->cmos_data[RTC_REG_C] |= REG_C_IRQF;
468 qemu_irq_raise(s->irq);
469 } else {
470 s->cmos_data[RTC_REG_C] &= ~REG_C_IRQF;
471 qemu_irq_lower(s->irq);
472 }
bedc572e 473 s->cmos_data[RTC_REG_B] = data;
884f17c2 474 periodic_timer_update(s, qemu_clock_get_ns(rtc_clock));
56038ef6 475 check_update_timer(s);
80cabfad
FB
476 break;
477 case RTC_REG_C:
478 case RTC_REG_D:
479 /* cannot write to them */
480 break;
481 default:
482 s->cmos_data[s->cmos_index] = data;
483 break;
484 }
485 }
486}
487
abd0c6bd 488static inline int rtc_to_bcd(RTCState *s, int a)
80cabfad 489{
6f1bf24d 490 if (s->cmos_data[RTC_REG_B] & REG_B_DM) {
dff38e7b
FB
491 return a;
492 } else {
493 return ((a / 10) << 4) | (a % 10);
494 }
80cabfad
FB
495}
496
abd0c6bd 497static inline int rtc_from_bcd(RTCState *s, int a)
80cabfad 498{
00cf5774
PB
499 if ((a & 0xc0) == 0xc0) {
500 return -1;
501 }
6f1bf24d 502 if (s->cmos_data[RTC_REG_B] & REG_B_DM) {
dff38e7b
FB
503 return a;
504 } else {
505 return ((a >> 4) * 10) + (a & 0x0f);
506 }
507}
508
e2826cf4 509static void rtc_get_time(RTCState *s, struct tm *tm)
dff38e7b 510{
abd0c6bd
PB
511 tm->tm_sec = rtc_from_bcd(s, s->cmos_data[RTC_SECONDS]);
512 tm->tm_min = rtc_from_bcd(s, s->cmos_data[RTC_MINUTES]);
513 tm->tm_hour = rtc_from_bcd(s, s->cmos_data[RTC_HOURS] & 0x7f);
3b89eb43
PB
514 if (!(s->cmos_data[RTC_REG_B] & REG_B_24H)) {
515 tm->tm_hour %= 12;
516 if (s->cmos_data[RTC_HOURS] & 0x80) {
517 tm->tm_hour += 12;
518 }
43f493af 519 }
abd0c6bd
PB
520 tm->tm_wday = rtc_from_bcd(s, s->cmos_data[RTC_DAY_OF_WEEK]) - 1;
521 tm->tm_mday = rtc_from_bcd(s, s->cmos_data[RTC_DAY_OF_MONTH]);
522 tm->tm_mon = rtc_from_bcd(s, s->cmos_data[RTC_MONTH]) - 1;
b8994faf
PB
523 tm->tm_year =
524 rtc_from_bcd(s, s->cmos_data[RTC_YEAR]) + s->base_year +
525 rtc_from_bcd(s, s->cmos_data[RTC_CENTURY]) * 100 - 1900;
e2826cf4
PB
526}
527
f2ae8abf
MT
528static QLIST_HEAD(, RTCState) rtc_devices =
529 QLIST_HEAD_INITIALIZER(rtc_devices);
530
531#ifdef TARGET_I386
532void qmp_rtc_reset_reinjection(Error **errp)
533{
534 RTCState *s;
535
536 QLIST_FOREACH(s, &rtc_devices, link) {
537 s->irq_coalesced = 0;
538 }
539}
540#endif
541
e2826cf4
PB
542static void rtc_set_time(RTCState *s)
543{
544 struct tm tm;
80cd3478 545
e2826cf4 546 rtc_get_time(s, &tm);
e2826cf4 547 s->base_rtc = mktimegm(&tm);
884f17c2 548 s->last_update = qemu_clock_get_ns(rtc_clock);
56038ef6 549
e010ad8f 550 qapi_event_send_rtc_change(qemu_timedate_diff(&tm), &error_abort);
43f493af
FB
551}
552
e2826cf4 553static void rtc_set_cmos(RTCState *s, const struct tm *tm)
43f493af 554{
42fc73a1 555 int year;
dff38e7b 556
abd0c6bd
PB
557 s->cmos_data[RTC_SECONDS] = rtc_to_bcd(s, tm->tm_sec);
558 s->cmos_data[RTC_MINUTES] = rtc_to_bcd(s, tm->tm_min);
c29cd656 559 if (s->cmos_data[RTC_REG_B] & REG_B_24H) {
43f493af 560 /* 24 hour format */
abd0c6bd 561 s->cmos_data[RTC_HOURS] = rtc_to_bcd(s, tm->tm_hour);
43f493af
FB
562 } else {
563 /* 12 hour format */
3b89eb43
PB
564 int h = (tm->tm_hour % 12) ? tm->tm_hour % 12 : 12;
565 s->cmos_data[RTC_HOURS] = rtc_to_bcd(s, h);
43f493af
FB
566 if (tm->tm_hour >= 12)
567 s->cmos_data[RTC_HOURS] |= 0x80;
568 }
abd0c6bd
PB
569 s->cmos_data[RTC_DAY_OF_WEEK] = rtc_to_bcd(s, tm->tm_wday + 1);
570 s->cmos_data[RTC_DAY_OF_MONTH] = rtc_to_bcd(s, tm->tm_mday);
571 s->cmos_data[RTC_MONTH] = rtc_to_bcd(s, tm->tm_mon + 1);
b8994faf
PB
572 year = tm->tm_year + 1900 - s->base_year;
573 s->cmos_data[RTC_YEAR] = rtc_to_bcd(s, year % 100);
574 s->cmos_data[RTC_CENTURY] = rtc_to_bcd(s, year / 100);
43f493af
FB
575}
576
56038ef6 577static void rtc_update_time(RTCState *s)
43f493af 578{
56038ef6
YZ
579 struct tm ret;
580 time_t guest_sec;
581 int64_t guest_nsec;
582
583 guest_nsec = get_guest_rtc_ns(s);
584 guest_sec = guest_nsec / NSEC_PER_SEC;
585 gmtime_r(&guest_sec, &ret);
02c6ccc6
AH
586
587 /* Is SET flag of Register B disabled? */
588 if ((s->cmos_data[RTC_REG_B] & REG_B_SET) == 0) {
589 rtc_set_cmos(s, &ret);
590 }
43f493af
FB
591}
592
56038ef6 593static int update_in_progress(RTCState *s)
43f493af 594{
56038ef6 595 int64_t guest_nsec;
3b46e624 596
41a9b8b2 597 if (!rtc_running(s)) {
56038ef6 598 return 0;
dff38e7b 599 }
e93379b0
AB
600 if (timer_pending(s->update_timer)) {
601 int64_t next_update_time = timer_expire_time_ns(s->update_timer);
56038ef6 602 /* Latch UIP until the timer expires. */
884f17c2
AB
603 if (qemu_clock_get_ns(rtc_clock) >=
604 (next_update_time - UIP_HOLD_LENGTH)) {
56038ef6
YZ
605 s->cmos_data[RTC_REG_A] |= REG_A_UIP;
606 return 1;
dff38e7b
FB
607 }
608 }
609
56038ef6
YZ
610 guest_nsec = get_guest_rtc_ns(s);
611 /* UIP bit will be set at last 244us of every second. */
612 if ((guest_nsec % NSEC_PER_SEC) >= (NSEC_PER_SEC - UIP_HOLD_LENGTH)) {
613 return 1;
dff38e7b 614 }
56038ef6 615 return 0;
80cabfad
FB
616}
617
0da8c842
AG
618static uint64_t cmos_ioport_read(void *opaque, hwaddr addr,
619 unsigned size)
80cabfad 620{
b41a2cd1 621 RTCState *s = opaque;
80cabfad
FB
622 int ret;
623 if ((addr & 1) == 0) {
624 return 0xff;
625 } else {
626 switch(s->cmos_index) {
e67edb94
PB
627 case RTC_IBM_PS2_CENTURY_BYTE:
628 s->cmos_index = RTC_CENTURY;
629 /* fall through */
630 case RTC_CENTURY:
80cabfad
FB
631 case RTC_SECONDS:
632 case RTC_MINUTES:
633 case RTC_HOURS:
634 case RTC_DAY_OF_WEEK:
635 case RTC_DAY_OF_MONTH:
636 case RTC_MONTH:
637 case RTC_YEAR:
56038ef6
YZ
638 /* if not in set mode, calibrate cmos before
639 * reading*/
41a9b8b2 640 if (rtc_running(s)) {
56038ef6
YZ
641 rtc_update_time(s);
642 }
80cabfad
FB
643 ret = s->cmos_data[s->cmos_index];
644 break;
645 case RTC_REG_A:
56038ef6
YZ
646 if (update_in_progress(s)) {
647 s->cmos_data[s->cmos_index] |= REG_A_UIP;
648 } else {
649 s->cmos_data[s->cmos_index] &= ~REG_A_UIP;
650 }
80cabfad 651 ret = s->cmos_data[s->cmos_index];
80cabfad
FB
652 break;
653 case RTC_REG_C:
654 ret = s->cmos_data[s->cmos_index];
d537cf6c 655 qemu_irq_lower(s->irq);
fbc15e27 656 s->cmos_data[RTC_REG_C] = 0x00;
56038ef6
YZ
657 if (ret & (REG_C_UF | REG_C_AF)) {
658 check_update_timer(s);
659 }
ba32edab
GN
660#ifdef TARGET_I386
661 if(s->irq_coalesced &&
fbc15e27 662 (s->cmos_data[RTC_REG_B] & REG_B_PIE) &&
ba32edab
GN
663 s->irq_reinject_on_ack_count < RTC_REINJECT_ON_ACK_COUNT) {
664 s->irq_reinject_on_ack_count++;
fbc15e27 665 s->cmos_data[RTC_REG_C] |= REG_C_IRQF | REG_C_PF;
ba32edab 666 apic_reset_irq_delivered();
aa6f63ff 667 DPRINTF_C("cmos: injecting on ack\n");
ba32edab 668 qemu_irq_raise(s->irq);
aa6f63ff 669 if (apic_get_irq_delivered()) {
ba32edab 670 s->irq_coalesced--;
aa6f63ff
BS
671 DPRINTF_C("cmos: coalesced irqs decreased to %d\n",
672 s->irq_coalesced);
673 }
ba32edab
GN
674 }
675#endif
80cabfad
FB
676 break;
677 default:
678 ret = s->cmos_data[s->cmos_index];
679 break;
680 }
ec51e364
IY
681 CMOS_DPRINTF("cmos: read index=0x%02x val=0x%02x\n",
682 s->cmos_index, ret);
80cabfad
FB
683 return ret;
684 }
685}
686
1d914fa0 687void rtc_set_memory(ISADevice *dev, int addr, int val)
dff38e7b 688{
0e41271e 689 RTCState *s = MC146818_RTC(dev);
dff38e7b
FB
690 if (addr >= 0 && addr <= 127)
691 s->cmos_data[addr] = val;
692}
693
b8b7456d
IM
694int rtc_get_memory(ISADevice *dev, int addr)
695{
696 RTCState *s = MC146818_RTC(dev);
697 assert(addr >= 0 && addr <= 127);
698 return s->cmos_data[addr];
699}
700
1d914fa0 701static void rtc_set_date_from_host(ISADevice *dev)
ea55ffb3 702{
0e41271e 703 RTCState *s = MC146818_RTC(dev);
f6503059 704 struct tm tm;
ea55ffb3 705
f6503059 706 qemu_get_timedate(&tm, 0);
56038ef6
YZ
707
708 s->base_rtc = mktimegm(&tm);
884f17c2 709 s->last_update = qemu_clock_get_ns(rtc_clock);
56038ef6
YZ
710 s->offset = 0;
711
712 /* set the CMOS date */
e2826cf4 713 rtc_set_cmos(s, &tm);
ea55ffb3
TS
714}
715
6b075b8a 716static int rtc_post_load(void *opaque, int version_id)
80cabfad 717{
dff38e7b
FB
718 RTCState *s = opaque;
719
56038ef6
YZ
720 if (version_id <= 2) {
721 rtc_set_time(s);
722 s->offset = 0;
723 check_update_timer(s);
724 }
725
726#ifdef TARGET_I386
048c74c4 727 if (version_id >= 2) {
104059da 728 if (s->lost_tick_policy == LOST_TICK_POLICY_SLEW) {
048c74c4
JQ
729 rtc_coalesced_timer_update(s);
730 }
048c74c4 731 }
6b075b8a 732#endif
73822ec8
AL
733 return 0;
734}
73822ec8 735
0b102153 736static const VMStateDescription vmstate_rtc_irq_reinject_on_ack_count = {
bb426311 737 .name = "mc146818rtc/irq_reinject_on_ack_count",
0b102153
PD
738 .version_id = 1,
739 .minimum_version_id = 1,
740 .fields = (VMStateField[]) {
741 VMSTATE_UINT16(irq_reinject_on_ack_count, RTCState),
742 VMSTATE_END_OF_LIST()
743 }
744};
745
746static bool rtc_irq_reinject_on_ack_count_needed(void *opaque)
747{
748 RTCState *s = (RTCState *)opaque;
749 return s->irq_reinject_on_ack_count != 0;
750}
751
6b075b8a
JQ
752static const VMStateDescription vmstate_rtc = {
753 .name = "mc146818rtc",
56038ef6 754 .version_id = 3,
6b075b8a 755 .minimum_version_id = 1,
6b075b8a 756 .post_load = rtc_post_load,
d49805ae 757 .fields = (VMStateField[]) {
6b075b8a
JQ
758 VMSTATE_BUFFER(cmos_data, RTCState),
759 VMSTATE_UINT8(cmos_index, RTCState),
89166459 760 VMSTATE_UNUSED(7*4),
e720677e 761 VMSTATE_TIMER_PTR(periodic_timer, RTCState),
6b075b8a 762 VMSTATE_INT64(next_periodic_time, RTCState),
56038ef6 763 VMSTATE_UNUSED(3*8),
6b075b8a
JQ
764 VMSTATE_UINT32_V(irq_coalesced, RTCState, 2),
765 VMSTATE_UINT32_V(period, RTCState, 2),
56038ef6
YZ
766 VMSTATE_UINT64_V(base_rtc, RTCState, 3),
767 VMSTATE_UINT64_V(last_update, RTCState, 3),
768 VMSTATE_INT64_V(offset, RTCState, 3),
e720677e 769 VMSTATE_TIMER_PTR_V(update_timer, RTCState, 3),
00cf5774 770 VMSTATE_UINT64_V(next_alarm_time, RTCState, 3),
6b075b8a 771 VMSTATE_END_OF_LIST()
0b102153
PD
772 },
773 .subsections = (VMStateSubsection[]) {
774 {
775 .vmsd = &vmstate_rtc_irq_reinject_on_ack_count,
776 .needed = rtc_irq_reinject_on_ack_count_needed,
777 }, {
778 /* empty */
779 }
6b075b8a
JQ
780 }
781};
782
17604dac
JK
783static void rtc_notify_clock_reset(Notifier *notifier, void *data)
784{
785 RTCState *s = container_of(notifier, RTCState, clock_reset_notifier);
786 int64_t now = *(int64_t *)data;
787
0e41271e 788 rtc_set_date_from_host(ISA_DEVICE(s));
c4c18e24 789 periodic_timer_update(s, now);
56038ef6 790 check_update_timer(s);
17604dac 791#ifdef TARGET_I386
104059da 792 if (s->lost_tick_policy == LOST_TICK_POLICY_SLEW) {
17604dac
JK
793 rtc_coalesced_timer_update(s);
794 }
795#endif
796}
797
da98c8eb
GH
798/* set CMOS shutdown status register (index 0xF) as S3_resume(0xFE)
799 BIOS will read it and start S3 resume at POST Entry */
800static void rtc_notify_suspend(Notifier *notifier, void *data)
801{
802 RTCState *s = container_of(notifier, RTCState, suspend_notifier);
0e41271e 803 rtc_set_memory(ISA_DEVICE(s), 0xF, 0xFE);
da98c8eb
GH
804}
805
eeb7c03c
GN
806static void rtc_reset(void *opaque)
807{
808 RTCState *s = opaque;
809
72716184
AL
810 s->cmos_data[RTC_REG_B] &= ~(REG_B_PIE | REG_B_AIE | REG_B_SQWE);
811 s->cmos_data[RTC_REG_C] &= ~(REG_C_UF | REG_C_IRQF | REG_C_PF | REG_C_AF);
56038ef6 812 check_update_timer(s);
eeb7c03c 813
72716184 814 qemu_irq_lower(s->irq);
eeb7c03c
GN
815
816#ifdef TARGET_I386
104059da 817 if (s->lost_tick_policy == LOST_TICK_POLICY_SLEW) {
433acf0d 818 s->irq_coalesced = 0;
172dbc52 819 s->irq_reinject_on_ack_count = 0;
433acf0d 820 }
eeb7c03c
GN
821#endif
822}
823
b2c5009b 824static const MemoryRegionOps cmos_ops = {
0da8c842
AG
825 .read = cmos_ioport_read,
826 .write = cmos_ioport_write,
827 .impl = {
828 .min_access_size = 1,
829 .max_access_size = 1,
830 },
831 .endianness = DEVICE_LITTLE_ENDIAN,
b2c5009b
RH
832};
833
8e099d14 834static void rtc_get_date(Object *obj, struct tm *current_tm, Error **errp)
18297050 835{
0e41271e 836 RTCState *s = MC146818_RTC(obj);
18297050 837
56038ef6 838 rtc_update_time(s);
8e099d14 839 rtc_get_time(s, current_tm);
18297050
AL
840}
841
db895a1e 842static void rtc_realizefn(DeviceState *dev, Error **errp)
dff38e7b 843{
db895a1e 844 ISADevice *isadev = ISA_DEVICE(dev);
0e41271e 845 RTCState *s = MC146818_RTC(dev);
32e0c826 846 int base = 0x70;
80cabfad 847
80cabfad
FB
848 s->cmos_data[RTC_REG_A] = 0x26;
849 s->cmos_data[RTC_REG_B] = 0x02;
850 s->cmos_data[RTC_REG_C] = 0x00;
851 s->cmos_data[RTC_REG_D] = 0x80;
852
b8994faf
PB
853 /* This is for historical reasons. The default base year qdev property
854 * was set to 2000 for most machine types before the century byte was
855 * implemented.
856 *
857 * This if statement means that the century byte will be always 0
858 * (at least until 2079...) for base_year = 1980, but will be set
859 * correctly for base_year = 2000.
860 */
861 if (s->base_year == 2000) {
862 s->base_year = 0;
863 }
864
db895a1e 865 rtc_set_date_from_host(isadev);
ea55ffb3 866
93b66569 867#ifdef TARGET_I386
433acf0d 868 switch (s->lost_tick_policy) {
104059da 869 case LOST_TICK_POLICY_SLEW:
6875204c 870 s->coalesced_timer =
884f17c2 871 timer_new_ns(rtc_clock, rtc_coalesced_timer, s);
433acf0d 872 break;
104059da 873 case LOST_TICK_POLICY_DISCARD:
433acf0d
JK
874 break;
875 default:
db895a1e
AF
876 error_setg(errp, "Invalid lost tick policy.");
877 return;
433acf0d 878 }
93b66569 879#endif
433acf0d 880
884f17c2
AB
881 s->periodic_timer = timer_new_ns(rtc_clock, rtc_periodic_timer, s);
882 s->update_timer = timer_new_ns(rtc_clock, rtc_update_timer, s);
56038ef6 883 check_update_timer(s);
dff38e7b 884
17604dac 885 s->clock_reset_notifier.notify = rtc_notify_clock_reset;
13c0cbae 886 qemu_clock_register_reset_notifier(rtc_clock,
884f17c2 887 &s->clock_reset_notifier);
17604dac 888
da98c8eb
GH
889 s->suspend_notifier.notify = rtc_notify_suspend;
890 qemu_register_suspend_notifier(&s->suspend_notifier);
891
853dca12 892 memory_region_init_io(&s->io, OBJECT(s), &cmos_ops, s, "rtc", 2);
db895a1e 893 isa_register_ioport(isadev, &s->io, base);
dff38e7b 894
db895a1e 895 qdev_set_legacy_instance_id(dev, base, 3);
a08d4367 896 qemu_register_reset(rtc_reset, s);
18297050 897
8e099d14 898 object_property_add_tm(OBJECT(s), "date", rtc_get_date, NULL);
654a36d8
MT
899
900 object_property_add_alias(qdev_get_machine(), "rtc-time",
901 OBJECT(s), "date", NULL);
32e0c826
GH
902}
903
48a18b3c 904ISADevice *rtc_init(ISABus *bus, int base_year, qemu_irq intercept_irq)
32e0c826 905{
0e41271e
AF
906 DeviceState *dev;
907 ISADevice *isadev;
7d932dfd 908 RTCState *s;
eeb7c03c 909
0e41271e
AF
910 isadev = isa_create(bus, TYPE_MC146818_RTC);
911 dev = DEVICE(isadev);
912 s = MC146818_RTC(isadev);
913 qdev_prop_set_int32(dev, "base_year", base_year);
914 qdev_init_nofail(dev);
7d932dfd
JK
915 if (intercept_irq) {
916 s->irq = intercept_irq;
917 } else {
0e41271e 918 isa_init_irq(isadev, &s->irq, RTC_ISA_IRQ);
7d932dfd 919 }
f2ae8abf
MT
920 QLIST_INSERT_HEAD(&rtc_devices, s, link);
921
0e41271e 922 return isadev;
80cabfad
FB
923}
924
39bffca2
AL
925static Property mc146818rtc_properties[] = {
926 DEFINE_PROP_INT32("base_year", RTCState, base_year, 1980),
927 DEFINE_PROP_LOSTTICKPOLICY("lost_tick_policy", RTCState,
104059da 928 lost_tick_policy, LOST_TICK_POLICY_DISCARD),
39bffca2
AL
929 DEFINE_PROP_END_OF_LIST(),
930};
931
8f04ee08
AL
932static void rtc_class_initfn(ObjectClass *klass, void *data)
933{
39bffca2 934 DeviceClass *dc = DEVICE_CLASS(klass);
db895a1e
AF
935
936 dc->realize = rtc_realizefn;
39bffca2
AL
937 dc->vmsd = &vmstate_rtc;
938 dc->props = mc146818rtc_properties;
f3b17640
MA
939 /* Reason: needs to be wired up by rtc_init() */
940 dc->cannot_instantiate_with_device_add_yet = true;
8f04ee08
AL
941}
942
654a36d8
MT
943static void rtc_finalize(Object *obj)
944{
945 object_property_del(qdev_get_machine(), "rtc", NULL);
946}
947
8c43a6f0 948static const TypeInfo mc146818rtc_info = {
0e41271e 949 .name = TYPE_MC146818_RTC,
39bffca2
AL
950 .parent = TYPE_ISA_DEVICE,
951 .instance_size = sizeof(RTCState),
952 .class_init = rtc_class_initfn,
654a36d8 953 .instance_finalize = rtc_finalize,
32e0c826
GH
954};
955
83f7d43a 956static void mc146818rtc_register_types(void)
100d9891 957{
39bffca2 958 type_register_static(&mc146818rtc_info);
100d9891 959}
83f7d43a
AF
960
961type_init(mc146818rtc_register_types)
This page took 0.985987 seconds and 4 git commands to generate.