]> git.proxmox.com Git - mirror_qemu.git/blob - hw/timer/mc146818rtc.c
mc146818rtc: register the clock reset notifier on the right clock
[mirror_qemu.git] / hw / timer / mc146818rtc.c
1 /*
2 * QEMU MC146818 RTC emulation
3 *
4 * Copyright (c) 2003-2004 Fabrice Bellard
5 *
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 */
24 #include "hw/hw.h"
25 #include "qemu/timer.h"
26 #include "sysemu/sysemu.h"
27 #include "hw/timer/mc146818rtc.h"
28 #include "qapi/visitor.h"
29 #include "qapi-event.h"
30 #include "qmp-commands.h"
31
32 #ifdef TARGET_I386
33 #include "hw/i386/apic.h"
34 #endif
35
36 //#define DEBUG_CMOS
37 //#define DEBUG_COALESCED
38
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
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
51 #define NSEC_PER_SEC 1000000000LL
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
57
58 #define RTC_REINJECT_ON_ACK_COUNT 20
59 #define RTC_CLOCK_RATE 32768
60 #define UIP_HOLD_LENGTH (8 * NSEC_PER_SEC / 32768)
61
62 #define MC146818_RTC(obj) OBJECT_CHECK(RTCState, (obj), TYPE_MC146818_RTC)
63
64 typedef struct RTCState {
65 ISADevice parent_obj;
66
67 MemoryRegion io;
68 uint8_t cmos_data[128];
69 uint8_t cmos_index;
70 int32_t base_year;
71 uint64_t base_rtc;
72 uint64_t last_update;
73 int64_t offset;
74 qemu_irq irq;
75 int it_shift;
76 /* periodic timer */
77 QEMUTimer *periodic_timer;
78 int64_t next_periodic_time;
79 /* update-ended timer */
80 QEMUTimer *update_timer;
81 uint64_t next_alarm_time;
82 uint16_t irq_reinject_on_ack_count;
83 uint32_t irq_coalesced;
84 uint32_t period;
85 QEMUTimer *coalesced_timer;
86 Notifier clock_reset_notifier;
87 LostTickPolicy lost_tick_policy;
88 Notifier suspend_notifier;
89 QLIST_ENTRY(RTCState) link;
90 } RTCState;
91
92 static void rtc_set_time(RTCState *s);
93 static void rtc_update_time(RTCState *s);
94 static void rtc_set_cmos(RTCState *s, const struct tm *tm);
95 static inline int rtc_from_bcd(RTCState *s, int a);
96 static uint64_t get_next_alarm(RTCState *s);
97
98 static 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
104 static uint64_t get_guest_rtc_ns(RTCState *s)
105 {
106 uint64_t guest_rtc;
107 uint64_t guest_clock = qemu_clock_get_ns(rtc_clock);
108
109 guest_rtc = s->base_rtc * NSEC_PER_SEC
110 + guest_clock - s->last_update + s->offset;
111 return guest_rtc;
112 }
113
114 #ifdef TARGET_I386
115 static void rtc_coalesced_timer_update(RTCState *s)
116 {
117 if (s->irq_coalesced == 0) {
118 timer_del(s->coalesced_timer);
119 } else {
120 /* divide each RTC interval to 2 - 8 smaller intervals */
121 int c = MIN(s->irq_coalesced, 7) + 1;
122 int64_t next_clock = qemu_clock_get_ns(rtc_clock) +
123 muldiv64(s->period / c, get_ticks_per_sec(), RTC_CLOCK_RATE);
124 timer_mod(s->coalesced_timer, next_clock);
125 }
126 }
127
128 static 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;
135 DPRINTF_C("cmos: injecting from timer\n");
136 qemu_irq_raise(s->irq);
137 if (apic_get_irq_delivered()) {
138 s->irq_coalesced--;
139 DPRINTF_C("cmos: coalesced irqs decreased to %d\n",
140 s->irq_coalesced);
141 }
142 }
143
144 rtc_coalesced_timer_update(s);
145 }
146 #endif
147
148 /* handle periodic timer */
149 static void periodic_timer_update(RTCState *s, int64_t current_time)
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;
155 if (period_code != 0
156 && (s->cmos_data[RTC_REG_B] & REG_B_PIE)) {
157 if (period_code <= 2)
158 period_code += 7;
159 /* period in 32 Khz cycles */
160 period = 1 << (period_code - 1);
161 #ifdef TARGET_I386
162 if (period != s->period) {
163 s->irq_coalesced = (s->irq_coalesced * s->period) / period;
164 DPRINTF_C("cmos: coalesced irqs scaled to %d\n", s->irq_coalesced);
165 }
166 s->period = period;
167 #endif
168 /* compute 32 khz clock */
169 cur_clock = muldiv64(current_time, RTC_CLOCK_RATE, get_ticks_per_sec());
170 next_irq_clock = (cur_clock & ~(period - 1)) + period;
171 s->next_periodic_time =
172 muldiv64(next_irq_clock, get_ticks_per_sec(), RTC_CLOCK_RATE) + 1;
173 timer_mod(s->periodic_timer, s->next_periodic_time);
174 } else {
175 #ifdef TARGET_I386
176 s->irq_coalesced = 0;
177 #endif
178 timer_del(s->periodic_timer);
179 }
180 }
181
182 static void rtc_periodic_timer(void *opaque)
183 {
184 RTCState *s = opaque;
185
186 periodic_timer_update(s, s->next_periodic_time);
187 s->cmos_data[RTC_REG_C] |= REG_C_PF;
188 if (s->cmos_data[RTC_REG_B] & REG_B_PIE) {
189 s->cmos_data[RTC_REG_C] |= REG_C_IRQF;
190 #ifdef TARGET_I386
191 if (s->lost_tick_policy == LOST_TICK_POLICY_SLEW) {
192 if (s->irq_reinject_on_ack_count >= RTC_REINJECT_ON_ACK_COUNT)
193 s->irq_reinject_on_ack_count = 0;
194 apic_reset_irq_delivered();
195 qemu_irq_raise(s->irq);
196 if (!apic_get_irq_delivered()) {
197 s->irq_coalesced++;
198 rtc_coalesced_timer_update(s);
199 DPRINTF_C("cmos: coalesced irqs increased to %d\n",
200 s->irq_coalesced);
201 }
202 } else
203 #endif
204 qemu_irq_raise(s->irq);
205 }
206 }
207
208 /* handle update-ended timer */
209 static void check_update_timer(RTCState *s)
210 {
211 uint64_t next_update_time;
212 uint64_t guest_nsec;
213 int next_alarm_sec;
214
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.
219 */
220 if ((s->cmos_data[RTC_REG_A] & 0x60) == 0x60) {
221 timer_del(s->update_timer);
222 return;
223 }
224 if ((s->cmos_data[RTC_REG_C] & REG_C_UF) &&
225 (s->cmos_data[RTC_REG_B] & REG_B_SET)) {
226 timer_del(s->update_timer);
227 return;
228 }
229 if ((s->cmos_data[RTC_REG_C] & REG_C_UF) &&
230 (s->cmos_data[RTC_REG_C] & REG_C_AF)) {
231 timer_del(s->update_timer);
232 return;
233 }
234
235 guest_nsec = get_guest_rtc_ns(s) % NSEC_PER_SEC;
236 /* if UF is clear, reprogram to next second */
237 next_update_time = qemu_clock_get_ns(rtc_clock)
238 + NSEC_PER_SEC - guest_nsec;
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 }
251 if (next_update_time != timer_expire_time_ns(s->update_timer)) {
252 timer_mod(s->update_timer, next_update_time);
253 }
254 }
255
256 static 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
267 static uint64_t get_next_alarm(RTCState *s)
268 {
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);
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]);
277 alarm_hour = alarm_hour == -1 ? -1 : convert_hour(s, alarm_hour);
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
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 }
331 }
332
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;
356 }
357
358 static void rtc_update_timer(void *opaque)
359 {
360 RTCState *s = opaque;
361 int32_t irqs = REG_C_UF;
362 int32_t new_irqs;
363
364 assert((s->cmos_data[RTC_REG_A] & 0x60) != 0x60);
365
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
370 if (qemu_clock_get_ns(rtc_clock) >= s->next_alarm_time) {
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 }
376
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
386 static void cmos_ioport_write(void *opaque, hwaddr addr,
387 uint64_t data, unsigned size)
388 {
389 RTCState *s = opaque;
390
391 if ((addr & 1) == 0) {
392 s->cmos_index = data & 0x7f;
393 } else {
394 CMOS_DPRINTF("cmos: write index=0x%02x val=0x%02x\n",
395 s->cmos_index, data);
396 switch(s->cmos_index) {
397 case RTC_SECONDS_ALARM:
398 case RTC_MINUTES_ALARM:
399 case RTC_HOURS_ALARM:
400 s->cmos_data[s->cmos_index] = data;
401 check_update_timer(s);
402 break;
403 case RTC_IBM_PS2_CENTURY_BYTE:
404 s->cmos_index = RTC_CENTURY;
405 /* fall through */
406 case RTC_CENTURY:
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;
415 /* if in set mode, do not update the time */
416 if (rtc_running(s)) {
417 rtc_set_time(s);
418 check_update_timer(s);
419 }
420 break;
421 case RTC_REG_A:
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 }
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);
444 periodic_timer_update(s, qemu_clock_get_ns(rtc_clock));
445 check_update_timer(s);
446 break;
447 case RTC_REG_B:
448 if (data & REG_B_SET) {
449 /* update cmos to when the rtc was stopping */
450 if (rtc_running(s)) {
451 rtc_update_time(s);
452 }
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 */
458 if ((s->cmos_data[RTC_REG_B] & REG_B_SET) &&
459 (s->cmos_data[RTC_REG_A] & 0x70) <= 0x20) {
460 s->offset = get_guest_rtc_ns(s) % NSEC_PER_SEC;
461 rtc_set_time(s);
462 }
463 }
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 }
473 s->cmos_data[RTC_REG_B] = data;
474 periodic_timer_update(s, qemu_clock_get_ns(rtc_clock));
475 check_update_timer(s);
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
488 static inline int rtc_to_bcd(RTCState *s, int a)
489 {
490 if (s->cmos_data[RTC_REG_B] & REG_B_DM) {
491 return a;
492 } else {
493 return ((a / 10) << 4) | (a % 10);
494 }
495 }
496
497 static inline int rtc_from_bcd(RTCState *s, int a)
498 {
499 if ((a & 0xc0) == 0xc0) {
500 return -1;
501 }
502 if (s->cmos_data[RTC_REG_B] & REG_B_DM) {
503 return a;
504 } else {
505 return ((a >> 4) * 10) + (a & 0x0f);
506 }
507 }
508
509 static void rtc_get_time(RTCState *s, struct tm *tm)
510 {
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);
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 }
519 }
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;
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;
526 }
527
528 static QLIST_HEAD(, RTCState) rtc_devices =
529 QLIST_HEAD_INITIALIZER(rtc_devices);
530
531 #ifdef TARGET_I386
532 void 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
542 static void rtc_set_time(RTCState *s)
543 {
544 struct tm tm;
545
546 rtc_get_time(s, &tm);
547 s->base_rtc = mktimegm(&tm);
548 s->last_update = qemu_clock_get_ns(rtc_clock);
549
550 qapi_event_send_rtc_change(qemu_timedate_diff(&tm), &error_abort);
551 }
552
553 static void rtc_set_cmos(RTCState *s, const struct tm *tm)
554 {
555 int year;
556
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);
559 if (s->cmos_data[RTC_REG_B] & REG_B_24H) {
560 /* 24 hour format */
561 s->cmos_data[RTC_HOURS] = rtc_to_bcd(s, tm->tm_hour);
562 } else {
563 /* 12 hour format */
564 int h = (tm->tm_hour % 12) ? tm->tm_hour % 12 : 12;
565 s->cmos_data[RTC_HOURS] = rtc_to_bcd(s, h);
566 if (tm->tm_hour >= 12)
567 s->cmos_data[RTC_HOURS] |= 0x80;
568 }
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);
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);
575 }
576
577 static void rtc_update_time(RTCState *s)
578 {
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);
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 }
591 }
592
593 static int update_in_progress(RTCState *s)
594 {
595 int64_t guest_nsec;
596
597 if (!rtc_running(s)) {
598 return 0;
599 }
600 if (timer_pending(s->update_timer)) {
601 int64_t next_update_time = timer_expire_time_ns(s->update_timer);
602 /* Latch UIP until the timer expires. */
603 if (qemu_clock_get_ns(rtc_clock) >=
604 (next_update_time - UIP_HOLD_LENGTH)) {
605 s->cmos_data[RTC_REG_A] |= REG_A_UIP;
606 return 1;
607 }
608 }
609
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;
614 }
615 return 0;
616 }
617
618 static uint64_t cmos_ioport_read(void *opaque, hwaddr addr,
619 unsigned size)
620 {
621 RTCState *s = opaque;
622 int ret;
623 if ((addr & 1) == 0) {
624 return 0xff;
625 } else {
626 switch(s->cmos_index) {
627 case RTC_IBM_PS2_CENTURY_BYTE:
628 s->cmos_index = RTC_CENTURY;
629 /* fall through */
630 case RTC_CENTURY:
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:
638 /* if not in set mode, calibrate cmos before
639 * reading*/
640 if (rtc_running(s)) {
641 rtc_update_time(s);
642 }
643 ret = s->cmos_data[s->cmos_index];
644 break;
645 case RTC_REG_A:
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 }
651 ret = s->cmos_data[s->cmos_index];
652 break;
653 case RTC_REG_C:
654 ret = s->cmos_data[s->cmos_index];
655 qemu_irq_lower(s->irq);
656 s->cmos_data[RTC_REG_C] = 0x00;
657 if (ret & (REG_C_UF | REG_C_AF)) {
658 check_update_timer(s);
659 }
660 #ifdef TARGET_I386
661 if(s->irq_coalesced &&
662 (s->cmos_data[RTC_REG_B] & REG_B_PIE) &&
663 s->irq_reinject_on_ack_count < RTC_REINJECT_ON_ACK_COUNT) {
664 s->irq_reinject_on_ack_count++;
665 s->cmos_data[RTC_REG_C] |= REG_C_IRQF | REG_C_PF;
666 apic_reset_irq_delivered();
667 DPRINTF_C("cmos: injecting on ack\n");
668 qemu_irq_raise(s->irq);
669 if (apic_get_irq_delivered()) {
670 s->irq_coalesced--;
671 DPRINTF_C("cmos: coalesced irqs decreased to %d\n",
672 s->irq_coalesced);
673 }
674 }
675 #endif
676 break;
677 default:
678 ret = s->cmos_data[s->cmos_index];
679 break;
680 }
681 CMOS_DPRINTF("cmos: read index=0x%02x val=0x%02x\n",
682 s->cmos_index, ret);
683 return ret;
684 }
685 }
686
687 void rtc_set_memory(ISADevice *dev, int addr, int val)
688 {
689 RTCState *s = MC146818_RTC(dev);
690 if (addr >= 0 && addr <= 127)
691 s->cmos_data[addr] = val;
692 }
693
694 int 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
701 static void rtc_set_date_from_host(ISADevice *dev)
702 {
703 RTCState *s = MC146818_RTC(dev);
704 struct tm tm;
705
706 qemu_get_timedate(&tm, 0);
707
708 s->base_rtc = mktimegm(&tm);
709 s->last_update = qemu_clock_get_ns(rtc_clock);
710 s->offset = 0;
711
712 /* set the CMOS date */
713 rtc_set_cmos(s, &tm);
714 }
715
716 static int rtc_post_load(void *opaque, int version_id)
717 {
718 RTCState *s = opaque;
719
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
727 if (version_id >= 2) {
728 if (s->lost_tick_policy == LOST_TICK_POLICY_SLEW) {
729 rtc_coalesced_timer_update(s);
730 }
731 }
732 #endif
733 return 0;
734 }
735
736 static const VMStateDescription vmstate_rtc = {
737 .name = "mc146818rtc",
738 .version_id = 3,
739 .minimum_version_id = 1,
740 .post_load = rtc_post_load,
741 .fields = (VMStateField[]) {
742 VMSTATE_BUFFER(cmos_data, RTCState),
743 VMSTATE_UINT8(cmos_index, RTCState),
744 VMSTATE_UNUSED(7*4),
745 VMSTATE_TIMER(periodic_timer, RTCState),
746 VMSTATE_INT64(next_periodic_time, RTCState),
747 VMSTATE_UNUSED(3*8),
748 VMSTATE_UINT32_V(irq_coalesced, RTCState, 2),
749 VMSTATE_UINT32_V(period, RTCState, 2),
750 VMSTATE_UINT64_V(base_rtc, RTCState, 3),
751 VMSTATE_UINT64_V(last_update, RTCState, 3),
752 VMSTATE_INT64_V(offset, RTCState, 3),
753 VMSTATE_TIMER_V(update_timer, RTCState, 3),
754 VMSTATE_UINT64_V(next_alarm_time, RTCState, 3),
755 VMSTATE_END_OF_LIST()
756 }
757 };
758
759 static void rtc_notify_clock_reset(Notifier *notifier, void *data)
760 {
761 RTCState *s = container_of(notifier, RTCState, clock_reset_notifier);
762 int64_t now = *(int64_t *)data;
763
764 rtc_set_date_from_host(ISA_DEVICE(s));
765 periodic_timer_update(s, now);
766 check_update_timer(s);
767 #ifdef TARGET_I386
768 if (s->lost_tick_policy == LOST_TICK_POLICY_SLEW) {
769 rtc_coalesced_timer_update(s);
770 }
771 #endif
772 }
773
774 /* set CMOS shutdown status register (index 0xF) as S3_resume(0xFE)
775 BIOS will read it and start S3 resume at POST Entry */
776 static void rtc_notify_suspend(Notifier *notifier, void *data)
777 {
778 RTCState *s = container_of(notifier, RTCState, suspend_notifier);
779 rtc_set_memory(ISA_DEVICE(s), 0xF, 0xFE);
780 }
781
782 static void rtc_reset(void *opaque)
783 {
784 RTCState *s = opaque;
785
786 s->cmos_data[RTC_REG_B] &= ~(REG_B_PIE | REG_B_AIE | REG_B_SQWE);
787 s->cmos_data[RTC_REG_C] &= ~(REG_C_UF | REG_C_IRQF | REG_C_PF | REG_C_AF);
788 check_update_timer(s);
789
790 qemu_irq_lower(s->irq);
791
792 #ifdef TARGET_I386
793 if (s->lost_tick_policy == LOST_TICK_POLICY_SLEW) {
794 s->irq_coalesced = 0;
795 }
796 #endif
797 }
798
799 static const MemoryRegionOps cmos_ops = {
800 .read = cmos_ioport_read,
801 .write = cmos_ioport_write,
802 .impl = {
803 .min_access_size = 1,
804 .max_access_size = 1,
805 },
806 .endianness = DEVICE_LITTLE_ENDIAN,
807 };
808
809 static void rtc_get_date(Object *obj, Visitor *v, void *opaque,
810 const char *name, Error **errp)
811 {
812 Error *err = NULL;
813 RTCState *s = MC146818_RTC(obj);
814 struct tm current_tm;
815
816 rtc_update_time(s);
817 rtc_get_time(s, &current_tm);
818 visit_start_struct(v, NULL, "struct tm", name, 0, &err);
819 if (err) {
820 goto out;
821 }
822 visit_type_int32(v, &current_tm.tm_year, "tm_year", &err);
823 if (err) {
824 goto out_end;
825 }
826 visit_type_int32(v, &current_tm.tm_mon, "tm_mon", &err);
827 if (err) {
828 goto out_end;
829 }
830 visit_type_int32(v, &current_tm.tm_mday, "tm_mday", &err);
831 if (err) {
832 goto out_end;
833 }
834 visit_type_int32(v, &current_tm.tm_hour, "tm_hour", &err);
835 if (err) {
836 goto out_end;
837 }
838 visit_type_int32(v, &current_tm.tm_min, "tm_min", &err);
839 if (err) {
840 goto out_end;
841 }
842 visit_type_int32(v, &current_tm.tm_sec, "tm_sec", &err);
843 if (err) {
844 goto out_end;
845 }
846 out_end:
847 error_propagate(errp, err);
848 err = NULL;
849 visit_end_struct(v, errp);
850 out:
851 error_propagate(errp, err);
852 }
853
854 static void rtc_realizefn(DeviceState *dev, Error **errp)
855 {
856 ISADevice *isadev = ISA_DEVICE(dev);
857 RTCState *s = MC146818_RTC(dev);
858 int base = 0x70;
859
860 s->cmos_data[RTC_REG_A] = 0x26;
861 s->cmos_data[RTC_REG_B] = 0x02;
862 s->cmos_data[RTC_REG_C] = 0x00;
863 s->cmos_data[RTC_REG_D] = 0x80;
864
865 /* This is for historical reasons. The default base year qdev property
866 * was set to 2000 for most machine types before the century byte was
867 * implemented.
868 *
869 * This if statement means that the century byte will be always 0
870 * (at least until 2079...) for base_year = 1980, but will be set
871 * correctly for base_year = 2000.
872 */
873 if (s->base_year == 2000) {
874 s->base_year = 0;
875 }
876
877 rtc_set_date_from_host(isadev);
878
879 #ifdef TARGET_I386
880 switch (s->lost_tick_policy) {
881 case LOST_TICK_POLICY_SLEW:
882 s->coalesced_timer =
883 timer_new_ns(rtc_clock, rtc_coalesced_timer, s);
884 break;
885 case LOST_TICK_POLICY_DISCARD:
886 break;
887 default:
888 error_setg(errp, "Invalid lost tick policy.");
889 return;
890 }
891 #endif
892
893 s->periodic_timer = timer_new_ns(rtc_clock, rtc_periodic_timer, s);
894 s->update_timer = timer_new_ns(rtc_clock, rtc_update_timer, s);
895 check_update_timer(s);
896
897 s->clock_reset_notifier.notify = rtc_notify_clock_reset;
898 qemu_clock_register_reset_notifier(rtc_clock,
899 &s->clock_reset_notifier);
900
901 s->suspend_notifier.notify = rtc_notify_suspend;
902 qemu_register_suspend_notifier(&s->suspend_notifier);
903
904 memory_region_init_io(&s->io, OBJECT(s), &cmos_ops, s, "rtc", 2);
905 isa_register_ioport(isadev, &s->io, base);
906
907 qdev_set_legacy_instance_id(dev, base, 3);
908 qemu_register_reset(rtc_reset, s);
909
910 object_property_add(OBJECT(s), "date", "struct tm",
911 rtc_get_date, NULL, NULL, s, NULL);
912
913 object_property_add_alias(qdev_get_machine(), "rtc-time",
914 OBJECT(s), "date", NULL);
915 }
916
917 ISADevice *rtc_init(ISABus *bus, int base_year, qemu_irq intercept_irq)
918 {
919 DeviceState *dev;
920 ISADevice *isadev;
921 RTCState *s;
922
923 isadev = isa_create(bus, TYPE_MC146818_RTC);
924 dev = DEVICE(isadev);
925 s = MC146818_RTC(isadev);
926 qdev_prop_set_int32(dev, "base_year", base_year);
927 qdev_init_nofail(dev);
928 if (intercept_irq) {
929 s->irq = intercept_irq;
930 } else {
931 isa_init_irq(isadev, &s->irq, RTC_ISA_IRQ);
932 }
933 QLIST_INSERT_HEAD(&rtc_devices, s, link);
934
935 return isadev;
936 }
937
938 static Property mc146818rtc_properties[] = {
939 DEFINE_PROP_INT32("base_year", RTCState, base_year, 1980),
940 DEFINE_PROP_LOSTTICKPOLICY("lost_tick_policy", RTCState,
941 lost_tick_policy, LOST_TICK_POLICY_DISCARD),
942 DEFINE_PROP_END_OF_LIST(),
943 };
944
945 static void rtc_class_initfn(ObjectClass *klass, void *data)
946 {
947 DeviceClass *dc = DEVICE_CLASS(klass);
948
949 dc->realize = rtc_realizefn;
950 dc->vmsd = &vmstate_rtc;
951 dc->props = mc146818rtc_properties;
952 /* Reason: needs to be wired up by rtc_init() */
953 dc->cannot_instantiate_with_device_add_yet = true;
954 }
955
956 static void rtc_finalize(Object *obj)
957 {
958 object_property_del(qdev_get_machine(), "rtc", NULL);
959 }
960
961 static const TypeInfo mc146818rtc_info = {
962 .name = TYPE_MC146818_RTC,
963 .parent = TYPE_ISA_DEVICE,
964 .instance_size = sizeof(RTCState),
965 .class_init = rtc_class_initfn,
966 .instance_finalize = rtc_finalize,
967 };
968
969 static void mc146818rtc_register_types(void)
970 {
971 type_register_static(&mc146818rtc_info);
972 }
973
974 type_init(mc146818rtc_register_types)