]>
Commit | Line | Data |
---|---|---|
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 | */ | |
87ecb68b PB |
24 | #include "hw.h" |
25 | #include "qemu-timer.h" | |
26 | #include "sysemu.h" | |
1d914fa0 | 27 | #include "mc146818rtc.h" |
80cabfad | 28 | |
d362e757 JK |
29 | #ifdef TARGET_I386 |
30 | #include "apic.h" | |
31 | #endif | |
32 | ||
80cabfad | 33 | //#define DEBUG_CMOS |
aa6f63ff | 34 | //#define DEBUG_COALESCED |
80cabfad | 35 | |
ec51e364 IY |
36 | #ifdef DEBUG_CMOS |
37 | # define CMOS_DPRINTF(format, ...) printf(format, ## __VA_ARGS__) | |
38 | #else | |
39 | # define CMOS_DPRINTF(format, ...) do { } while (0) | |
40 | #endif | |
41 | ||
aa6f63ff BS |
42 | #ifdef DEBUG_COALESCED |
43 | # define DPRINTF_C(format, ...) printf(format, ## __VA_ARGS__) | |
44 | #else | |
45 | # define DPRINTF_C(format, ...) do { } while (0) | |
46 | #endif | |
47 | ||
56038ef6 | 48 | #define NSEC_PER_SEC 1000000000LL |
00cf5774 PB |
49 | #define SEC_PER_MIN 60 |
50 | #define MIN_PER_HOUR 60 | |
51 | #define SEC_PER_HOUR 3600 | |
52 | #define HOUR_PER_DAY 24 | |
53 | #define SEC_PER_DAY 86400 | |
56038ef6 | 54 | |
dd17765b | 55 | #define RTC_REINJECT_ON_ACK_COUNT 20 |
e46deaba | 56 | #define RTC_CLOCK_RATE 32768 |
56038ef6 | 57 | #define UIP_HOLD_LENGTH (8 * NSEC_PER_SEC / 32768) |
ba32edab | 58 | |
1d914fa0 | 59 | typedef struct RTCState { |
32e0c826 | 60 | ISADevice dev; |
b2c5009b | 61 | MemoryRegion io; |
dff38e7b FB |
62 | uint8_t cmos_data[128]; |
63 | uint8_t cmos_index; | |
32e0c826 | 64 | int32_t base_year; |
56038ef6 YZ |
65 | uint64_t base_rtc; |
66 | uint64_t last_update; | |
67 | int64_t offset; | |
d537cf6c | 68 | qemu_irq irq; |
100d9891 | 69 | qemu_irq sqw_irq; |
18c6e2ff | 70 | int it_shift; |
dff38e7b FB |
71 | /* periodic timer */ |
72 | QEMUTimer *periodic_timer; | |
73 | int64_t next_periodic_time; | |
56038ef6 YZ |
74 | /* update-ended timer */ |
75 | QEMUTimer *update_timer; | |
00cf5774 | 76 | uint64_t next_alarm_time; |
ba32edab | 77 | uint16_t irq_reinject_on_ack_count; |
73822ec8 AL |
78 | uint32_t irq_coalesced; |
79 | uint32_t period; | |
93b66569 | 80 | QEMUTimer *coalesced_timer; |
17604dac | 81 | Notifier clock_reset_notifier; |
433acf0d | 82 | LostTickPolicy lost_tick_policy; |
da98c8eb | 83 | Notifier suspend_notifier; |
1d914fa0 | 84 | } RTCState; |
dff38e7b FB |
85 | |
86 | static void rtc_set_time(RTCState *s); | |
56038ef6 | 87 | static void rtc_update_time(RTCState *s); |
e2826cf4 | 88 | static void rtc_set_cmos(RTCState *s, const struct tm *tm); |
56038ef6 | 89 | static inline int rtc_from_bcd(RTCState *s, int a); |
00cf5774 | 90 | static uint64_t get_next_alarm(RTCState *s); |
56038ef6 | 91 | |
41a9b8b2 YZ |
92 | static inline bool rtc_running(RTCState *s) |
93 | { | |
94 | return (!(s->cmos_data[RTC_REG_B] & REG_B_SET) && | |
95 | (s->cmos_data[RTC_REG_A] & 0x70) <= 0x20); | |
96 | } | |
97 | ||
56038ef6 YZ |
98 | static uint64_t get_guest_rtc_ns(RTCState *s) |
99 | { | |
100 | uint64_t guest_rtc; | |
101 | uint64_t guest_clock = qemu_get_clock_ns(rtc_clock); | |
102 | ||
103 | guest_rtc = s->base_rtc * NSEC_PER_SEC | |
104 | + guest_clock - s->last_update + s->offset; | |
105 | return guest_rtc; | |
106 | } | |
dff38e7b | 107 | |
93b66569 AL |
108 | #ifdef TARGET_I386 |
109 | static void rtc_coalesced_timer_update(RTCState *s) | |
110 | { | |
111 | if (s->irq_coalesced == 0) { | |
112 | qemu_del_timer(s->coalesced_timer); | |
113 | } else { | |
114 | /* divide each RTC interval to 2 - 8 smaller intervals */ | |
115 | int c = MIN(s->irq_coalesced, 7) + 1; | |
74475455 | 116 | int64_t next_clock = qemu_get_clock_ns(rtc_clock) + |
e46deaba | 117 | muldiv64(s->period / c, get_ticks_per_sec(), RTC_CLOCK_RATE); |
93b66569 AL |
118 | qemu_mod_timer(s->coalesced_timer, next_clock); |
119 | } | |
120 | } | |
121 | ||
122 | static void rtc_coalesced_timer(void *opaque) | |
123 | { | |
124 | RTCState *s = opaque; | |
125 | ||
126 | if (s->irq_coalesced != 0) { | |
127 | apic_reset_irq_delivered(); | |
128 | s->cmos_data[RTC_REG_C] |= 0xc0; | |
aa6f63ff | 129 | DPRINTF_C("cmos: injecting from timer\n"); |
7d932dfd | 130 | qemu_irq_raise(s->irq); |
93b66569 AL |
131 | if (apic_get_irq_delivered()) { |
132 | s->irq_coalesced--; | |
aa6f63ff BS |
133 | DPRINTF_C("cmos: coalesced irqs decreased to %d\n", |
134 | s->irq_coalesced); | |
93b66569 AL |
135 | } |
136 | } | |
137 | ||
138 | rtc_coalesced_timer_update(s); | |
139 | } | |
140 | #endif | |
141 | ||
56038ef6 | 142 | /* handle periodic timer */ |
c4c18e24 | 143 | static void periodic_timer_update(RTCState *s, int64_t current_time) |
dff38e7b FB |
144 | { |
145 | int period_code, period; | |
146 | int64_t cur_clock, next_irq_clock; | |
147 | ||
148 | period_code = s->cmos_data[RTC_REG_A] & 0x0f; | |
100d9891 | 149 | if (period_code != 0 |
7d932dfd | 150 | && ((s->cmos_data[RTC_REG_B] & REG_B_PIE) |
100d9891 | 151 | || ((s->cmos_data[RTC_REG_B] & REG_B_SQWE) && s->sqw_irq))) { |
dff38e7b FB |
152 | if (period_code <= 2) |
153 | period_code += 7; | |
154 | /* period in 32 Khz cycles */ | |
155 | period = 1 << (period_code - 1); | |
73822ec8 | 156 | #ifdef TARGET_I386 |
aa6f63ff | 157 | if (period != s->period) { |
73822ec8 | 158 | s->irq_coalesced = (s->irq_coalesced * s->period) / period; |
aa6f63ff BS |
159 | DPRINTF_C("cmos: coalesced irqs scaled to %d\n", s->irq_coalesced); |
160 | } | |
73822ec8 AL |
161 | s->period = period; |
162 | #endif | |
dff38e7b | 163 | /* compute 32 khz clock */ |
e46deaba | 164 | cur_clock = muldiv64(current_time, RTC_CLOCK_RATE, get_ticks_per_sec()); |
dff38e7b | 165 | next_irq_clock = (cur_clock & ~(period - 1)) + period; |
6875204c | 166 | s->next_periodic_time = |
e46deaba | 167 | muldiv64(next_irq_clock, get_ticks_per_sec(), RTC_CLOCK_RATE) + 1; |
dff38e7b FB |
168 | qemu_mod_timer(s->periodic_timer, s->next_periodic_time); |
169 | } else { | |
73822ec8 AL |
170 | #ifdef TARGET_I386 |
171 | s->irq_coalesced = 0; | |
172 | #endif | |
dff38e7b FB |
173 | qemu_del_timer(s->periodic_timer); |
174 | } | |
175 | } | |
176 | ||
177 | static void rtc_periodic_timer(void *opaque) | |
178 | { | |
179 | RTCState *s = opaque; | |
180 | ||
c4c18e24 | 181 | periodic_timer_update(s, s->next_periodic_time); |
663447d4 | 182 | s->cmos_data[RTC_REG_C] |= REG_C_PF; |
100d9891 | 183 | if (s->cmos_data[RTC_REG_B] & REG_B_PIE) { |
663447d4 | 184 | s->cmos_data[RTC_REG_C] |= REG_C_IRQF; |
93b66569 | 185 | #ifdef TARGET_I386 |
433acf0d | 186 | if (s->lost_tick_policy == LOST_TICK_SLEW) { |
ba32edab GN |
187 | if (s->irq_reinject_on_ack_count >= RTC_REINJECT_ON_ACK_COUNT) |
188 | s->irq_reinject_on_ack_count = 0; | |
93b66569 | 189 | apic_reset_irq_delivered(); |
7d932dfd | 190 | qemu_irq_raise(s->irq); |
93b66569 AL |
191 | if (!apic_get_irq_delivered()) { |
192 | s->irq_coalesced++; | |
193 | rtc_coalesced_timer_update(s); | |
aa6f63ff BS |
194 | DPRINTF_C("cmos: coalesced irqs increased to %d\n", |
195 | s->irq_coalesced); | |
93b66569 AL |
196 | } |
197 | } else | |
198 | #endif | |
7d932dfd | 199 | qemu_irq_raise(s->irq); |
100d9891 AJ |
200 | } |
201 | if (s->cmos_data[RTC_REG_B] & REG_B_SQWE) { | |
202 | /* Not square wave at all but we don't want 2048Hz interrupts! | |
203 | Must be seen as a pulse. */ | |
204 | qemu_irq_raise(s->sqw_irq); | |
205 | } | |
dff38e7b | 206 | } |
80cabfad | 207 | |
56038ef6 YZ |
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; | |
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 YZ |
220 | if ((s->cmos_data[RTC_REG_A] & 0x60) == 0x60) { |
221 | qemu_del_timer(s->update_timer); | |
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)) { | |
226 | qemu_del_timer(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 | qemu_del_timer(s->update_timer); | |
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 */ |
56038ef6 YZ |
237 | next_update_time = qemu_get_clock_ns(rtc_clock) |
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 | } | |
56038ef6 YZ |
251 | if (next_update_time != qemu_timer_expire_time_ns(s->update_timer)) { |
252 | qemu_mod_timer(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 | ||
00cf5774 | 267 | static 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 | ||
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 | ||
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 | ||
00cf5774 | 370 | if (qemu_get_clock_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 | ||
b41a2cd1 | 386 | static void cmos_ioport_write(void *opaque, uint32_t addr, uint32_t data) |
80cabfad | 387 | { |
b41a2cd1 | 388 | RTCState *s = opaque; |
80cabfad FB |
389 | |
390 | if ((addr & 1) == 0) { | |
391 | s->cmos_index = data & 0x7f; | |
392 | } else { | |
ec51e364 IY |
393 | CMOS_DPRINTF("cmos: write index=0x%02x val=0x%02x\n", |
394 | s->cmos_index, data); | |
dff38e7b | 395 | switch(s->cmos_index) { |
80cabfad FB |
396 | case RTC_SECONDS_ALARM: |
397 | case RTC_MINUTES_ALARM: | |
398 | case RTC_HOURS_ALARM: | |
80cabfad | 399 | s->cmos_data[s->cmos_index] = data; |
56038ef6 | 400 | check_update_timer(s); |
80cabfad | 401 | break; |
e67edb94 PB |
402 | case RTC_IBM_PS2_CENTURY_BYTE: |
403 | s->cmos_index = RTC_CENTURY; | |
404 | /* fall through */ | |
405 | case RTC_CENTURY: | |
80cabfad FB |
406 | case RTC_SECONDS: |
407 | case RTC_MINUTES: | |
408 | case RTC_HOURS: | |
409 | case RTC_DAY_OF_WEEK: | |
410 | case RTC_DAY_OF_MONTH: | |
411 | case RTC_MONTH: | |
412 | case RTC_YEAR: | |
413 | s->cmos_data[s->cmos_index] = data; | |
dff38e7b | 414 | /* if in set mode, do not update the time */ |
41a9b8b2 | 415 | if (rtc_running(s)) { |
dff38e7b | 416 | rtc_set_time(s); |
56038ef6 | 417 | check_update_timer(s); |
dff38e7b | 418 | } |
80cabfad FB |
419 | break; |
420 | case RTC_REG_A: | |
41a9b8b2 YZ |
421 | if ((data & 0x60) == 0x60) { |
422 | if (rtc_running(s)) { | |
423 | rtc_update_time(s); | |
424 | } | |
425 | /* What happens to UIP when divider reset is enabled is | |
426 | * unclear from the datasheet. Shouldn't matter much | |
427 | * though. | |
428 | */ | |
429 | s->cmos_data[RTC_REG_A] &= ~REG_A_UIP; | |
430 | } else if (((s->cmos_data[RTC_REG_A] & 0x60) == 0x60) && | |
431 | (data & 0x70) <= 0x20) { | |
432 | /* when the divider reset is removed, the first update cycle | |
433 | * begins one-half second later*/ | |
434 | if (!(s->cmos_data[RTC_REG_B] & REG_B_SET)) { | |
435 | s->offset = 500000000; | |
436 | rtc_set_time(s); | |
437 | } | |
438 | s->cmos_data[RTC_REG_A] &= ~REG_A_UIP; | |
439 | } | |
dff38e7b FB |
440 | /* UIP bit is read only */ |
441 | s->cmos_data[RTC_REG_A] = (data & ~REG_A_UIP) | | |
442 | (s->cmos_data[RTC_REG_A] & REG_A_UIP); | |
c4c18e24 | 443 | periodic_timer_update(s, qemu_get_clock_ns(rtc_clock)); |
56038ef6 | 444 | check_update_timer(s); |
dff38e7b | 445 | break; |
80cabfad | 446 | case RTC_REG_B: |
dff38e7b | 447 | if (data & REG_B_SET) { |
56038ef6 | 448 | /* update cmos to when the rtc was stopping */ |
41a9b8b2 | 449 | if (rtc_running(s)) { |
56038ef6 YZ |
450 | rtc_update_time(s); |
451 | } | |
dff38e7b FB |
452 | /* set mode: reset UIP mode */ |
453 | s->cmos_data[RTC_REG_A] &= ~REG_A_UIP; | |
454 | data &= ~REG_B_UIE; | |
455 | } else { | |
456 | /* if disabling set mode, update the time */ | |
41a9b8b2 YZ |
457 | if ((s->cmos_data[RTC_REG_B] & REG_B_SET) && |
458 | (s->cmos_data[RTC_REG_A] & 0x70) <= 0x20) { | |
56038ef6 | 459 | s->offset = get_guest_rtc_ns(s) % NSEC_PER_SEC; |
dff38e7b FB |
460 | rtc_set_time(s); |
461 | } | |
462 | } | |
9324cc50 YZ |
463 | /* if an interrupt flag is already set when the interrupt |
464 | * becomes enabled, raise an interrupt immediately. */ | |
465 | if (data & s->cmos_data[RTC_REG_C] & REG_C_MASK) { | |
466 | s->cmos_data[RTC_REG_C] |= REG_C_IRQF; | |
467 | qemu_irq_raise(s->irq); | |
468 | } else { | |
469 | s->cmos_data[RTC_REG_C] &= ~REG_C_IRQF; | |
470 | qemu_irq_lower(s->irq); | |
471 | } | |
bedc572e | 472 | s->cmos_data[RTC_REG_B] = data; |
c4c18e24 | 473 | periodic_timer_update(s, qemu_get_clock_ns(rtc_clock)); |
56038ef6 | 474 | check_update_timer(s); |
80cabfad FB |
475 | break; |
476 | case RTC_REG_C: | |
477 | case RTC_REG_D: | |
478 | /* cannot write to them */ | |
479 | break; | |
480 | default: | |
481 | s->cmos_data[s->cmos_index] = data; | |
482 | break; | |
483 | } | |
484 | } | |
485 | } | |
486 | ||
abd0c6bd | 487 | static inline int rtc_to_bcd(RTCState *s, int a) |
80cabfad | 488 | { |
6f1bf24d | 489 | if (s->cmos_data[RTC_REG_B] & REG_B_DM) { |
dff38e7b FB |
490 | return a; |
491 | } else { | |
492 | return ((a / 10) << 4) | (a % 10); | |
493 | } | |
80cabfad FB |
494 | } |
495 | ||
abd0c6bd | 496 | static inline int rtc_from_bcd(RTCState *s, int a) |
80cabfad | 497 | { |
00cf5774 PB |
498 | if ((a & 0xc0) == 0xc0) { |
499 | return -1; | |
500 | } | |
6f1bf24d | 501 | if (s->cmos_data[RTC_REG_B] & REG_B_DM) { |
dff38e7b FB |
502 | return a; |
503 | } else { | |
504 | return ((a >> 4) * 10) + (a & 0x0f); | |
505 | } | |
506 | } | |
507 | ||
e2826cf4 | 508 | static void rtc_get_time(RTCState *s, struct tm *tm) |
dff38e7b | 509 | { |
abd0c6bd PB |
510 | tm->tm_sec = rtc_from_bcd(s, s->cmos_data[RTC_SECONDS]); |
511 | tm->tm_min = rtc_from_bcd(s, s->cmos_data[RTC_MINUTES]); | |
512 | tm->tm_hour = rtc_from_bcd(s, s->cmos_data[RTC_HOURS] & 0x7f); | |
3b89eb43 PB |
513 | if (!(s->cmos_data[RTC_REG_B] & REG_B_24H)) { |
514 | tm->tm_hour %= 12; | |
515 | if (s->cmos_data[RTC_HOURS] & 0x80) { | |
516 | tm->tm_hour += 12; | |
517 | } | |
43f493af | 518 | } |
abd0c6bd PB |
519 | tm->tm_wday = rtc_from_bcd(s, s->cmos_data[RTC_DAY_OF_WEEK]) - 1; |
520 | tm->tm_mday = rtc_from_bcd(s, s->cmos_data[RTC_DAY_OF_MONTH]); | |
521 | tm->tm_mon = rtc_from_bcd(s, s->cmos_data[RTC_MONTH]) - 1; | |
b8994faf PB |
522 | tm->tm_year = |
523 | rtc_from_bcd(s, s->cmos_data[RTC_YEAR]) + s->base_year + | |
524 | rtc_from_bcd(s, s->cmos_data[RTC_CENTURY]) * 100 - 1900; | |
e2826cf4 PB |
525 | } |
526 | ||
527 | static void rtc_set_time(RTCState *s) | |
528 | { | |
529 | struct tm tm; | |
80cd3478 | 530 | |
e2826cf4 | 531 | rtc_get_time(s, &tm); |
e2826cf4 | 532 | s->base_rtc = mktimegm(&tm); |
56038ef6 YZ |
533 | s->last_update = qemu_get_clock_ns(rtc_clock); |
534 | ||
e2826cf4 | 535 | rtc_change_mon_event(&tm); |
43f493af FB |
536 | } |
537 | ||
e2826cf4 | 538 | static void rtc_set_cmos(RTCState *s, const struct tm *tm) |
43f493af | 539 | { |
42fc73a1 | 540 | int year; |
dff38e7b | 541 | |
abd0c6bd PB |
542 | s->cmos_data[RTC_SECONDS] = rtc_to_bcd(s, tm->tm_sec); |
543 | s->cmos_data[RTC_MINUTES] = rtc_to_bcd(s, tm->tm_min); | |
c29cd656 | 544 | if (s->cmos_data[RTC_REG_B] & REG_B_24H) { |
43f493af | 545 | /* 24 hour format */ |
abd0c6bd | 546 | s->cmos_data[RTC_HOURS] = rtc_to_bcd(s, tm->tm_hour); |
43f493af FB |
547 | } else { |
548 | /* 12 hour format */ | |
3b89eb43 PB |
549 | int h = (tm->tm_hour % 12) ? tm->tm_hour % 12 : 12; |
550 | s->cmos_data[RTC_HOURS] = rtc_to_bcd(s, h); | |
43f493af FB |
551 | if (tm->tm_hour >= 12) |
552 | s->cmos_data[RTC_HOURS] |= 0x80; | |
553 | } | |
abd0c6bd PB |
554 | s->cmos_data[RTC_DAY_OF_WEEK] = rtc_to_bcd(s, tm->tm_wday + 1); |
555 | s->cmos_data[RTC_DAY_OF_MONTH] = rtc_to_bcd(s, tm->tm_mday); | |
556 | s->cmos_data[RTC_MONTH] = rtc_to_bcd(s, tm->tm_mon + 1); | |
b8994faf PB |
557 | year = tm->tm_year + 1900 - s->base_year; |
558 | s->cmos_data[RTC_YEAR] = rtc_to_bcd(s, year % 100); | |
559 | s->cmos_data[RTC_CENTURY] = rtc_to_bcd(s, year / 100); | |
43f493af FB |
560 | } |
561 | ||
56038ef6 | 562 | static void rtc_update_time(RTCState *s) |
43f493af | 563 | { |
56038ef6 YZ |
564 | struct tm ret; |
565 | time_t guest_sec; | |
566 | int64_t guest_nsec; | |
567 | ||
568 | guest_nsec = get_guest_rtc_ns(s); | |
569 | guest_sec = guest_nsec / NSEC_PER_SEC; | |
570 | gmtime_r(&guest_sec, &ret); | |
e2826cf4 | 571 | rtc_set_cmos(s, &ret); |
43f493af FB |
572 | } |
573 | ||
56038ef6 | 574 | static int update_in_progress(RTCState *s) |
43f493af | 575 | { |
56038ef6 | 576 | int64_t guest_nsec; |
3b46e624 | 577 | |
41a9b8b2 | 578 | if (!rtc_running(s)) { |
56038ef6 | 579 | return 0; |
dff38e7b | 580 | } |
56038ef6 YZ |
581 | if (qemu_timer_pending(s->update_timer)) { |
582 | int64_t next_update_time = qemu_timer_expire_time_ns(s->update_timer); | |
583 | /* Latch UIP until the timer expires. */ | |
584 | if (qemu_get_clock_ns(rtc_clock) >= (next_update_time - UIP_HOLD_LENGTH)) { | |
585 | s->cmos_data[RTC_REG_A] |= REG_A_UIP; | |
586 | return 1; | |
dff38e7b FB |
587 | } |
588 | } | |
589 | ||
56038ef6 YZ |
590 | guest_nsec = get_guest_rtc_ns(s); |
591 | /* UIP bit will be set at last 244us of every second. */ | |
592 | if ((guest_nsec % NSEC_PER_SEC) >= (NSEC_PER_SEC - UIP_HOLD_LENGTH)) { | |
593 | return 1; | |
dff38e7b | 594 | } |
56038ef6 | 595 | return 0; |
80cabfad FB |
596 | } |
597 | ||
b41a2cd1 | 598 | static uint32_t cmos_ioport_read(void *opaque, uint32_t addr) |
80cabfad | 599 | { |
b41a2cd1 | 600 | RTCState *s = opaque; |
80cabfad FB |
601 | int ret; |
602 | if ((addr & 1) == 0) { | |
603 | return 0xff; | |
604 | } else { | |
605 | switch(s->cmos_index) { | |
e67edb94 PB |
606 | case RTC_IBM_PS2_CENTURY_BYTE: |
607 | s->cmos_index = RTC_CENTURY; | |
608 | /* fall through */ | |
609 | case RTC_CENTURY: | |
80cabfad FB |
610 | case RTC_SECONDS: |
611 | case RTC_MINUTES: | |
612 | case RTC_HOURS: | |
613 | case RTC_DAY_OF_WEEK: | |
614 | case RTC_DAY_OF_MONTH: | |
615 | case RTC_MONTH: | |
616 | case RTC_YEAR: | |
56038ef6 YZ |
617 | /* if not in set mode, calibrate cmos before |
618 | * reading*/ | |
41a9b8b2 | 619 | if (rtc_running(s)) { |
56038ef6 YZ |
620 | rtc_update_time(s); |
621 | } | |
80cabfad FB |
622 | ret = s->cmos_data[s->cmos_index]; |
623 | break; | |
624 | case RTC_REG_A: | |
56038ef6 YZ |
625 | if (update_in_progress(s)) { |
626 | s->cmos_data[s->cmos_index] |= REG_A_UIP; | |
627 | } else { | |
628 | s->cmos_data[s->cmos_index] &= ~REG_A_UIP; | |
629 | } | |
80cabfad | 630 | ret = s->cmos_data[s->cmos_index]; |
80cabfad FB |
631 | break; |
632 | case RTC_REG_C: | |
633 | ret = s->cmos_data[s->cmos_index]; | |
d537cf6c | 634 | qemu_irq_lower(s->irq); |
fbc15e27 | 635 | s->cmos_data[RTC_REG_C] = 0x00; |
56038ef6 YZ |
636 | if (ret & (REG_C_UF | REG_C_AF)) { |
637 | check_update_timer(s); | |
638 | } | |
ba32edab GN |
639 | #ifdef TARGET_I386 |
640 | if(s->irq_coalesced && | |
fbc15e27 | 641 | (s->cmos_data[RTC_REG_B] & REG_B_PIE) && |
ba32edab GN |
642 | s->irq_reinject_on_ack_count < RTC_REINJECT_ON_ACK_COUNT) { |
643 | s->irq_reinject_on_ack_count++; | |
fbc15e27 | 644 | s->cmos_data[RTC_REG_C] |= REG_C_IRQF | REG_C_PF; |
ba32edab | 645 | apic_reset_irq_delivered(); |
aa6f63ff | 646 | DPRINTF_C("cmos: injecting on ack\n"); |
ba32edab | 647 | qemu_irq_raise(s->irq); |
aa6f63ff | 648 | if (apic_get_irq_delivered()) { |
ba32edab | 649 | s->irq_coalesced--; |
aa6f63ff BS |
650 | DPRINTF_C("cmos: coalesced irqs decreased to %d\n", |
651 | s->irq_coalesced); | |
652 | } | |
ba32edab GN |
653 | } |
654 | #endif | |
80cabfad FB |
655 | break; |
656 | default: | |
657 | ret = s->cmos_data[s->cmos_index]; | |
658 | break; | |
659 | } | |
ec51e364 IY |
660 | CMOS_DPRINTF("cmos: read index=0x%02x val=0x%02x\n", |
661 | s->cmos_index, ret); | |
80cabfad FB |
662 | return ret; |
663 | } | |
664 | } | |
665 | ||
1d914fa0 | 666 | void rtc_set_memory(ISADevice *dev, int addr, int val) |
dff38e7b | 667 | { |
1d914fa0 | 668 | RTCState *s = DO_UPCAST(RTCState, dev, dev); |
dff38e7b FB |
669 | if (addr >= 0 && addr <= 127) |
670 | s->cmos_data[addr] = val; | |
671 | } | |
672 | ||
1d914fa0 | 673 | static void rtc_set_date_from_host(ISADevice *dev) |
ea55ffb3 | 674 | { |
1d914fa0 | 675 | RTCState *s = DO_UPCAST(RTCState, dev, dev); |
f6503059 | 676 | struct tm tm; |
ea55ffb3 | 677 | |
f6503059 | 678 | qemu_get_timedate(&tm, 0); |
56038ef6 YZ |
679 | |
680 | s->base_rtc = mktimegm(&tm); | |
681 | s->last_update = qemu_get_clock_ns(rtc_clock); | |
682 | s->offset = 0; | |
683 | ||
684 | /* set the CMOS date */ | |
e2826cf4 | 685 | rtc_set_cmos(s, &tm); |
ea55ffb3 TS |
686 | } |
687 | ||
6b075b8a | 688 | static int rtc_post_load(void *opaque, int version_id) |
80cabfad | 689 | { |
dff38e7b FB |
690 | RTCState *s = opaque; |
691 | ||
56038ef6 YZ |
692 | if (version_id <= 2) { |
693 | rtc_set_time(s); | |
694 | s->offset = 0; | |
695 | check_update_timer(s); | |
696 | } | |
697 | ||
698 | #ifdef TARGET_I386 | |
048c74c4 | 699 | if (version_id >= 2) { |
433acf0d | 700 | if (s->lost_tick_policy == LOST_TICK_SLEW) { |
048c74c4 JQ |
701 | rtc_coalesced_timer_update(s); |
702 | } | |
048c74c4 | 703 | } |
6b075b8a | 704 | #endif |
73822ec8 AL |
705 | return 0; |
706 | } | |
73822ec8 | 707 | |
6b075b8a JQ |
708 | static const VMStateDescription vmstate_rtc = { |
709 | .name = "mc146818rtc", | |
56038ef6 | 710 | .version_id = 3, |
6b075b8a JQ |
711 | .minimum_version_id = 1, |
712 | .minimum_version_id_old = 1, | |
713 | .post_load = rtc_post_load, | |
714 | .fields = (VMStateField []) { | |
715 | VMSTATE_BUFFER(cmos_data, RTCState), | |
716 | VMSTATE_UINT8(cmos_index, RTCState), | |
89166459 | 717 | VMSTATE_UNUSED(7*4), |
6b075b8a JQ |
718 | VMSTATE_TIMER(periodic_timer, RTCState), |
719 | VMSTATE_INT64(next_periodic_time, RTCState), | |
56038ef6 | 720 | VMSTATE_UNUSED(3*8), |
6b075b8a JQ |
721 | VMSTATE_UINT32_V(irq_coalesced, RTCState, 2), |
722 | VMSTATE_UINT32_V(period, RTCState, 2), | |
56038ef6 YZ |
723 | VMSTATE_UINT64_V(base_rtc, RTCState, 3), |
724 | VMSTATE_UINT64_V(last_update, RTCState, 3), | |
725 | VMSTATE_INT64_V(offset, RTCState, 3), | |
726 | VMSTATE_TIMER_V(update_timer, RTCState, 3), | |
00cf5774 | 727 | VMSTATE_UINT64_V(next_alarm_time, RTCState, 3), |
6b075b8a JQ |
728 | VMSTATE_END_OF_LIST() |
729 | } | |
730 | }; | |
731 | ||
17604dac JK |
732 | static void rtc_notify_clock_reset(Notifier *notifier, void *data) |
733 | { | |
734 | RTCState *s = container_of(notifier, RTCState, clock_reset_notifier); | |
735 | int64_t now = *(int64_t *)data; | |
736 | ||
737 | rtc_set_date_from_host(&s->dev); | |
c4c18e24 | 738 | periodic_timer_update(s, now); |
56038ef6 | 739 | check_update_timer(s); |
17604dac | 740 | #ifdef TARGET_I386 |
433acf0d | 741 | if (s->lost_tick_policy == LOST_TICK_SLEW) { |
17604dac JK |
742 | rtc_coalesced_timer_update(s); |
743 | } | |
744 | #endif | |
745 | } | |
746 | ||
da98c8eb GH |
747 | /* set CMOS shutdown status register (index 0xF) as S3_resume(0xFE) |
748 | BIOS will read it and start S3 resume at POST Entry */ | |
749 | static void rtc_notify_suspend(Notifier *notifier, void *data) | |
750 | { | |
751 | RTCState *s = container_of(notifier, RTCState, suspend_notifier); | |
752 | rtc_set_memory(&s->dev, 0xF, 0xFE); | |
753 | } | |
754 | ||
eeb7c03c GN |
755 | static void rtc_reset(void *opaque) |
756 | { | |
757 | RTCState *s = opaque; | |
758 | ||
72716184 AL |
759 | s->cmos_data[RTC_REG_B] &= ~(REG_B_PIE | REG_B_AIE | REG_B_SQWE); |
760 | s->cmos_data[RTC_REG_C] &= ~(REG_C_UF | REG_C_IRQF | REG_C_PF | REG_C_AF); | |
56038ef6 | 761 | check_update_timer(s); |
eeb7c03c | 762 | |
72716184 | 763 | qemu_irq_lower(s->irq); |
eeb7c03c GN |
764 | |
765 | #ifdef TARGET_I386 | |
433acf0d JK |
766 | if (s->lost_tick_policy == LOST_TICK_SLEW) { |
767 | s->irq_coalesced = 0; | |
768 | } | |
eeb7c03c GN |
769 | #endif |
770 | } | |
771 | ||
b2c5009b RH |
772 | static const MemoryRegionPortio cmos_portio[] = { |
773 | {0, 2, 1, .read = cmos_ioport_read, .write = cmos_ioport_write }, | |
774 | PORTIO_END_OF_LIST(), | |
775 | }; | |
776 | ||
777 | static const MemoryRegionOps cmos_ops = { | |
778 | .old_portio = cmos_portio | |
779 | }; | |
780 | ||
57c9fafe | 781 | static void rtc_get_date(Object *obj, Visitor *v, void *opaque, |
18297050 AL |
782 | const char *name, Error **errp) |
783 | { | |
57c9fafe | 784 | ISADevice *isa = ISA_DEVICE(obj); |
18297050 | 785 | RTCState *s = DO_UPCAST(RTCState, dev, isa); |
e2826cf4 | 786 | struct tm current_tm; |
18297050 | 787 | |
56038ef6 | 788 | rtc_update_time(s); |
e2826cf4 | 789 | rtc_get_time(s, ¤t_tm); |
18297050 | 790 | visit_start_struct(v, NULL, "struct tm", name, 0, errp); |
e2826cf4 PB |
791 | visit_type_int32(v, ¤t_tm.tm_year, "tm_year", errp); |
792 | visit_type_int32(v, ¤t_tm.tm_mon, "tm_mon", errp); | |
793 | visit_type_int32(v, ¤t_tm.tm_mday, "tm_mday", errp); | |
794 | visit_type_int32(v, ¤t_tm.tm_hour, "tm_hour", errp); | |
795 | visit_type_int32(v, ¤t_tm.tm_min, "tm_min", errp); | |
796 | visit_type_int32(v, ¤t_tm.tm_sec, "tm_sec", errp); | |
18297050 AL |
797 | visit_end_struct(v, errp); |
798 | } | |
799 | ||
32e0c826 | 800 | static int rtc_initfn(ISADevice *dev) |
dff38e7b | 801 | { |
32e0c826 GH |
802 | RTCState *s = DO_UPCAST(RTCState, dev, dev); |
803 | int base = 0x70; | |
80cabfad | 804 | |
80cabfad FB |
805 | s->cmos_data[RTC_REG_A] = 0x26; |
806 | s->cmos_data[RTC_REG_B] = 0x02; | |
807 | s->cmos_data[RTC_REG_C] = 0x00; | |
808 | s->cmos_data[RTC_REG_D] = 0x80; | |
809 | ||
b8994faf PB |
810 | /* This is for historical reasons. The default base year qdev property |
811 | * was set to 2000 for most machine types before the century byte was | |
812 | * implemented. | |
813 | * | |
814 | * This if statement means that the century byte will be always 0 | |
815 | * (at least until 2079...) for base_year = 1980, but will be set | |
816 | * correctly for base_year = 2000. | |
817 | */ | |
818 | if (s->base_year == 2000) { | |
819 | s->base_year = 0; | |
820 | } | |
821 | ||
1d914fa0 | 822 | rtc_set_date_from_host(dev); |
ea55ffb3 | 823 | |
93b66569 | 824 | #ifdef TARGET_I386 |
433acf0d JK |
825 | switch (s->lost_tick_policy) { |
826 | case LOST_TICK_SLEW: | |
6875204c | 827 | s->coalesced_timer = |
74475455 | 828 | qemu_new_timer_ns(rtc_clock, rtc_coalesced_timer, s); |
433acf0d JK |
829 | break; |
830 | case LOST_TICK_DISCARD: | |
831 | break; | |
832 | default: | |
833 | return -EINVAL; | |
834 | } | |
93b66569 | 835 | #endif |
433acf0d JK |
836 | |
837 | s->periodic_timer = qemu_new_timer_ns(rtc_clock, rtc_periodic_timer, s); | |
56038ef6 YZ |
838 | s->update_timer = qemu_new_timer_ns(rtc_clock, rtc_update_timer, s); |
839 | check_update_timer(s); | |
dff38e7b | 840 | |
17604dac JK |
841 | s->clock_reset_notifier.notify = rtc_notify_clock_reset; |
842 | qemu_register_clock_reset_notifier(rtc_clock, &s->clock_reset_notifier); | |
843 | ||
da98c8eb GH |
844 | s->suspend_notifier.notify = rtc_notify_suspend; |
845 | qemu_register_suspend_notifier(&s->suspend_notifier); | |
846 | ||
b2c5009b RH |
847 | memory_region_init_io(&s->io, &cmos_ops, s, "rtc", 2); |
848 | isa_register_ioport(dev, &s->io, base); | |
dff38e7b | 849 | |
56038ef6 | 850 | qdev_set_legacy_instance_id(&dev->qdev, base, 3); |
a08d4367 | 851 | qemu_register_reset(rtc_reset, s); |
18297050 | 852 | |
57c9fafe AL |
853 | object_property_add(OBJECT(s), "date", "struct tm", |
854 | rtc_get_date, NULL, NULL, s, NULL); | |
18297050 | 855 | |
32e0c826 GH |
856 | return 0; |
857 | } | |
858 | ||
48a18b3c | 859 | ISADevice *rtc_init(ISABus *bus, int base_year, qemu_irq intercept_irq) |
32e0c826 GH |
860 | { |
861 | ISADevice *dev; | |
7d932dfd | 862 | RTCState *s; |
eeb7c03c | 863 | |
48a18b3c | 864 | dev = isa_create(bus, "mc146818rtc"); |
7d932dfd | 865 | s = DO_UPCAST(RTCState, dev, dev); |
32e0c826 | 866 | qdev_prop_set_int32(&dev->qdev, "base_year", base_year); |
e23a1b33 | 867 | qdev_init_nofail(&dev->qdev); |
7d932dfd JK |
868 | if (intercept_irq) { |
869 | s->irq = intercept_irq; | |
870 | } else { | |
871 | isa_init_irq(dev, &s->irq, RTC_ISA_IRQ); | |
872 | } | |
1d914fa0 | 873 | return dev; |
80cabfad FB |
874 | } |
875 | ||
39bffca2 AL |
876 | static Property mc146818rtc_properties[] = { |
877 | DEFINE_PROP_INT32("base_year", RTCState, base_year, 1980), | |
878 | DEFINE_PROP_LOSTTICKPOLICY("lost_tick_policy", RTCState, | |
879 | lost_tick_policy, LOST_TICK_DISCARD), | |
880 | DEFINE_PROP_END_OF_LIST(), | |
881 | }; | |
882 | ||
8f04ee08 AL |
883 | static void rtc_class_initfn(ObjectClass *klass, void *data) |
884 | { | |
39bffca2 | 885 | DeviceClass *dc = DEVICE_CLASS(klass); |
8f04ee08 AL |
886 | ISADeviceClass *ic = ISA_DEVICE_CLASS(klass); |
887 | ic->init = rtc_initfn; | |
39bffca2 AL |
888 | dc->no_user = 1; |
889 | dc->vmsd = &vmstate_rtc; | |
890 | dc->props = mc146818rtc_properties; | |
8f04ee08 AL |
891 | } |
892 | ||
39bffca2 AL |
893 | static TypeInfo mc146818rtc_info = { |
894 | .name = "mc146818rtc", | |
895 | .parent = TYPE_ISA_DEVICE, | |
896 | .instance_size = sizeof(RTCState), | |
897 | .class_init = rtc_class_initfn, | |
32e0c826 GH |
898 | }; |
899 | ||
83f7d43a | 900 | static void mc146818rtc_register_types(void) |
100d9891 | 901 | { |
39bffca2 | 902 | type_register_static(&mc146818rtc_info); |
100d9891 | 903 | } |
83f7d43a AF |
904 | |
905 | type_init(mc146818rtc_register_types) |