sdl: Fix termination in -no-shutdown mode
[qemu.git] / hw / m48t59.c
blob537c0f7b166d6f47c2e9956e373b68830f21550b
1 /*
2 * QEMU M48T59 and M48T08 NVRAM emulation for PPC PREP and Sparc platforms
4 * Copyright (c) 2003-2005, 2007 Jocelyn Mayer
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:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
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.
24 #include "hw.h"
25 #include "nvram.h"
26 #include "qemu-timer.h"
27 #include "sysemu.h"
28 #include "sysbus.h"
29 #include "isa.h"
31 //#define DEBUG_NVRAM
33 #if defined(DEBUG_NVRAM)
34 #define NVRAM_PRINTF(fmt, ...) do { printf(fmt , ## __VA_ARGS__); } while (0)
35 #else
36 #define NVRAM_PRINTF(fmt, ...) do { } while (0)
37 #endif
40 * The M48T02, M48T08 and M48T59 chips are very similar. The newer '59 has
41 * alarm and a watchdog timer and related control registers. In the
42 * PPC platform there is also a nvram lock function.
46 * Chipset docs:
47 * http://www.st.com/stonline/products/literature/ds/2410/m48t02.pdf
48 * http://www.st.com/stonline/products/literature/ds/2411/m48t08.pdf
49 * http://www.st.com/stonline/products/literature/od/7001/m48t59y.pdf
52 struct M48t59State {
53 /* Model parameters */
54 uint32_t type; // 2 = m48t02, 8 = m48t08, 59 = m48t59
55 /* Hardware parameters */
56 qemu_irq IRQ;
57 uint32_t io_base;
58 uint32_t size;
59 /* RTC management */
60 time_t time_offset;
61 time_t stop_time;
62 /* Alarm & watchdog */
63 struct tm alarm;
64 struct QEMUTimer *alrm_timer;
65 struct QEMUTimer *wd_timer;
66 /* NVRAM storage */
67 uint8_t lock;
68 uint16_t addr;
69 uint8_t *buffer;
72 typedef struct M48t59ISAState {
73 ISADevice busdev;
74 M48t59State state;
75 } M48t59ISAState;
77 typedef struct M48t59SysBusState {
78 SysBusDevice busdev;
79 M48t59State state;
80 } M48t59SysBusState;
82 /* Fake timer functions */
84 /* Alarm management */
85 static void alarm_cb (void *opaque)
87 struct tm tm;
88 uint64_t next_time;
89 M48t59State *NVRAM = opaque;
91 qemu_set_irq(NVRAM->IRQ, 1);
92 if ((NVRAM->buffer[0x1FF5] & 0x80) == 0 &&
93 (NVRAM->buffer[0x1FF4] & 0x80) == 0 &&
94 (NVRAM->buffer[0x1FF3] & 0x80) == 0 &&
95 (NVRAM->buffer[0x1FF2] & 0x80) == 0) {
96 /* Repeat once a month */
97 qemu_get_timedate(&tm, NVRAM->time_offset);
98 tm.tm_mon++;
99 if (tm.tm_mon == 13) {
100 tm.tm_mon = 1;
101 tm.tm_year++;
103 next_time = qemu_timedate_diff(&tm) - NVRAM->time_offset;
104 } else if ((NVRAM->buffer[0x1FF5] & 0x80) != 0 &&
105 (NVRAM->buffer[0x1FF4] & 0x80) == 0 &&
106 (NVRAM->buffer[0x1FF3] & 0x80) == 0 &&
107 (NVRAM->buffer[0x1FF2] & 0x80) == 0) {
108 /* Repeat once a day */
109 next_time = 24 * 60 * 60;
110 } else if ((NVRAM->buffer[0x1FF5] & 0x80) != 0 &&
111 (NVRAM->buffer[0x1FF4] & 0x80) != 0 &&
112 (NVRAM->buffer[0x1FF3] & 0x80) == 0 &&
113 (NVRAM->buffer[0x1FF2] & 0x80) == 0) {
114 /* Repeat once an hour */
115 next_time = 60 * 60;
116 } else if ((NVRAM->buffer[0x1FF5] & 0x80) != 0 &&
117 (NVRAM->buffer[0x1FF4] & 0x80) != 0 &&
118 (NVRAM->buffer[0x1FF3] & 0x80) != 0 &&
119 (NVRAM->buffer[0x1FF2] & 0x80) == 0) {
120 /* Repeat once a minute */
121 next_time = 60;
122 } else {
123 /* Repeat once a second */
124 next_time = 1;
126 qemu_mod_timer(NVRAM->alrm_timer, qemu_get_clock_ns(vm_clock) +
127 next_time * 1000);
128 qemu_set_irq(NVRAM->IRQ, 0);
131 static void set_alarm(M48t59State *NVRAM)
133 int diff;
134 if (NVRAM->alrm_timer != NULL) {
135 qemu_del_timer(NVRAM->alrm_timer);
136 diff = qemu_timedate_diff(&NVRAM->alarm) - NVRAM->time_offset;
137 if (diff > 0)
138 qemu_mod_timer(NVRAM->alrm_timer, diff * 1000);
142 /* RTC management helpers */
143 static inline void get_time(M48t59State *NVRAM, struct tm *tm)
145 qemu_get_timedate(tm, NVRAM->time_offset);
148 static void set_time(M48t59State *NVRAM, struct tm *tm)
150 NVRAM->time_offset = qemu_timedate_diff(tm);
151 set_alarm(NVRAM);
154 /* Watchdog management */
155 static void watchdog_cb (void *opaque)
157 M48t59State *NVRAM = opaque;
159 NVRAM->buffer[0x1FF0] |= 0x80;
160 if (NVRAM->buffer[0x1FF7] & 0x80) {
161 NVRAM->buffer[0x1FF7] = 0x00;
162 NVRAM->buffer[0x1FFC] &= ~0x40;
163 /* May it be a hw CPU Reset instead ? */
164 qemu_system_reset_request();
165 } else {
166 qemu_set_irq(NVRAM->IRQ, 1);
167 qemu_set_irq(NVRAM->IRQ, 0);
171 static void set_up_watchdog(M48t59State *NVRAM, uint8_t value)
173 uint64_t interval; /* in 1/16 seconds */
175 NVRAM->buffer[0x1FF0] &= ~0x80;
176 if (NVRAM->wd_timer != NULL) {
177 qemu_del_timer(NVRAM->wd_timer);
178 if (value != 0) {
179 interval = (1 << (2 * (value & 0x03))) * ((value >> 2) & 0x1F);
180 qemu_mod_timer(NVRAM->wd_timer, ((uint64_t)time(NULL) * 1000) +
181 ((interval * 1000) >> 4));
186 /* Direct access to NVRAM */
187 void m48t59_write (void *opaque, uint32_t addr, uint32_t val)
189 M48t59State *NVRAM = opaque;
190 struct tm tm;
191 int tmp;
193 if (addr > 0x1FF8 && addr < 0x2000)
194 NVRAM_PRINTF("%s: 0x%08x => 0x%08x\n", __func__, addr, val);
196 /* check for NVRAM access */
197 if ((NVRAM->type == 2 && addr < 0x7f8) ||
198 (NVRAM->type == 8 && addr < 0x1ff8) ||
199 (NVRAM->type == 59 && addr < 0x1ff0))
200 goto do_write;
202 /* TOD access */
203 switch (addr) {
204 case 0x1FF0:
205 /* flags register : read-only */
206 break;
207 case 0x1FF1:
208 /* unused */
209 break;
210 case 0x1FF2:
211 /* alarm seconds */
212 tmp = from_bcd(val & 0x7F);
213 if (tmp >= 0 && tmp <= 59) {
214 NVRAM->alarm.tm_sec = tmp;
215 NVRAM->buffer[0x1FF2] = val;
216 set_alarm(NVRAM);
218 break;
219 case 0x1FF3:
220 /* alarm minutes */
221 tmp = from_bcd(val & 0x7F);
222 if (tmp >= 0 && tmp <= 59) {
223 NVRAM->alarm.tm_min = tmp;
224 NVRAM->buffer[0x1FF3] = val;
225 set_alarm(NVRAM);
227 break;
228 case 0x1FF4:
229 /* alarm hours */
230 tmp = from_bcd(val & 0x3F);
231 if (tmp >= 0 && tmp <= 23) {
232 NVRAM->alarm.tm_hour = tmp;
233 NVRAM->buffer[0x1FF4] = val;
234 set_alarm(NVRAM);
236 break;
237 case 0x1FF5:
238 /* alarm date */
239 tmp = from_bcd(val & 0x1F);
240 if (tmp != 0) {
241 NVRAM->alarm.tm_mday = tmp;
242 NVRAM->buffer[0x1FF5] = val;
243 set_alarm(NVRAM);
245 break;
246 case 0x1FF6:
247 /* interrupts */
248 NVRAM->buffer[0x1FF6] = val;
249 break;
250 case 0x1FF7:
251 /* watchdog */
252 NVRAM->buffer[0x1FF7] = val;
253 set_up_watchdog(NVRAM, val);
254 break;
255 case 0x1FF8:
256 case 0x07F8:
257 /* control */
258 NVRAM->buffer[addr] = (val & ~0xA0) | 0x90;
259 break;
260 case 0x1FF9:
261 case 0x07F9:
262 /* seconds (BCD) */
263 tmp = from_bcd(val & 0x7F);
264 if (tmp >= 0 && tmp <= 59) {
265 get_time(NVRAM, &tm);
266 tm.tm_sec = tmp;
267 set_time(NVRAM, &tm);
269 if ((val & 0x80) ^ (NVRAM->buffer[addr] & 0x80)) {
270 if (val & 0x80) {
271 NVRAM->stop_time = time(NULL);
272 } else {
273 NVRAM->time_offset += NVRAM->stop_time - time(NULL);
274 NVRAM->stop_time = 0;
277 NVRAM->buffer[addr] = val & 0x80;
278 break;
279 case 0x1FFA:
280 case 0x07FA:
281 /* minutes (BCD) */
282 tmp = from_bcd(val & 0x7F);
283 if (tmp >= 0 && tmp <= 59) {
284 get_time(NVRAM, &tm);
285 tm.tm_min = tmp;
286 set_time(NVRAM, &tm);
288 break;
289 case 0x1FFB:
290 case 0x07FB:
291 /* hours (BCD) */
292 tmp = from_bcd(val & 0x3F);
293 if (tmp >= 0 && tmp <= 23) {
294 get_time(NVRAM, &tm);
295 tm.tm_hour = tmp;
296 set_time(NVRAM, &tm);
298 break;
299 case 0x1FFC:
300 case 0x07FC:
301 /* day of the week / century */
302 tmp = from_bcd(val & 0x07);
303 get_time(NVRAM, &tm);
304 tm.tm_wday = tmp;
305 set_time(NVRAM, &tm);
306 NVRAM->buffer[addr] = val & 0x40;
307 break;
308 case 0x1FFD:
309 case 0x07FD:
310 /* date */
311 tmp = from_bcd(val & 0x1F);
312 if (tmp != 0) {
313 get_time(NVRAM, &tm);
314 tm.tm_mday = tmp;
315 set_time(NVRAM, &tm);
317 break;
318 case 0x1FFE:
319 case 0x07FE:
320 /* month */
321 tmp = from_bcd(val & 0x1F);
322 if (tmp >= 1 && tmp <= 12) {
323 get_time(NVRAM, &tm);
324 tm.tm_mon = tmp - 1;
325 set_time(NVRAM, &tm);
327 break;
328 case 0x1FFF:
329 case 0x07FF:
330 /* year */
331 tmp = from_bcd(val);
332 if (tmp >= 0 && tmp <= 99) {
333 get_time(NVRAM, &tm);
334 if (NVRAM->type == 8)
335 tm.tm_year = from_bcd(val) + 68; // Base year is 1968
336 else
337 tm.tm_year = from_bcd(val);
338 set_time(NVRAM, &tm);
340 break;
341 default:
342 /* Check lock registers state */
343 if (addr >= 0x20 && addr <= 0x2F && (NVRAM->lock & 1))
344 break;
345 if (addr >= 0x30 && addr <= 0x3F && (NVRAM->lock & 2))
346 break;
347 do_write:
348 if (addr < NVRAM->size) {
349 NVRAM->buffer[addr] = val & 0xFF;
351 break;
355 uint32_t m48t59_read (void *opaque, uint32_t addr)
357 M48t59State *NVRAM = opaque;
358 struct tm tm;
359 uint32_t retval = 0xFF;
361 /* check for NVRAM access */
362 if ((NVRAM->type == 2 && addr < 0x078f) ||
363 (NVRAM->type == 8 && addr < 0x1ff8) ||
364 (NVRAM->type == 59 && addr < 0x1ff0))
365 goto do_read;
367 /* TOD access */
368 switch (addr) {
369 case 0x1FF0:
370 /* flags register */
371 goto do_read;
372 case 0x1FF1:
373 /* unused */
374 retval = 0;
375 break;
376 case 0x1FF2:
377 /* alarm seconds */
378 goto do_read;
379 case 0x1FF3:
380 /* alarm minutes */
381 goto do_read;
382 case 0x1FF4:
383 /* alarm hours */
384 goto do_read;
385 case 0x1FF5:
386 /* alarm date */
387 goto do_read;
388 case 0x1FF6:
389 /* interrupts */
390 goto do_read;
391 case 0x1FF7:
392 /* A read resets the watchdog */
393 set_up_watchdog(NVRAM, NVRAM->buffer[0x1FF7]);
394 goto do_read;
395 case 0x1FF8:
396 case 0x07F8:
397 /* control */
398 goto do_read;
399 case 0x1FF9:
400 case 0x07F9:
401 /* seconds (BCD) */
402 get_time(NVRAM, &tm);
403 retval = (NVRAM->buffer[addr] & 0x80) | to_bcd(tm.tm_sec);
404 break;
405 case 0x1FFA:
406 case 0x07FA:
407 /* minutes (BCD) */
408 get_time(NVRAM, &tm);
409 retval = to_bcd(tm.tm_min);
410 break;
411 case 0x1FFB:
412 case 0x07FB:
413 /* hours (BCD) */
414 get_time(NVRAM, &tm);
415 retval = to_bcd(tm.tm_hour);
416 break;
417 case 0x1FFC:
418 case 0x07FC:
419 /* day of the week / century */
420 get_time(NVRAM, &tm);
421 retval = NVRAM->buffer[addr] | tm.tm_wday;
422 break;
423 case 0x1FFD:
424 case 0x07FD:
425 /* date */
426 get_time(NVRAM, &tm);
427 retval = to_bcd(tm.tm_mday);
428 break;
429 case 0x1FFE:
430 case 0x07FE:
431 /* month */
432 get_time(NVRAM, &tm);
433 retval = to_bcd(tm.tm_mon + 1);
434 break;
435 case 0x1FFF:
436 case 0x07FF:
437 /* year */
438 get_time(NVRAM, &tm);
439 if (NVRAM->type == 8)
440 retval = to_bcd(tm.tm_year - 68); // Base year is 1968
441 else
442 retval = to_bcd(tm.tm_year);
443 break;
444 default:
445 /* Check lock registers state */
446 if (addr >= 0x20 && addr <= 0x2F && (NVRAM->lock & 1))
447 break;
448 if (addr >= 0x30 && addr <= 0x3F && (NVRAM->lock & 2))
449 break;
450 do_read:
451 if (addr < NVRAM->size) {
452 retval = NVRAM->buffer[addr];
454 break;
456 if (addr > 0x1FF9 && addr < 0x2000)
457 NVRAM_PRINTF("%s: 0x%08x <= 0x%08x\n", __func__, addr, retval);
459 return retval;
462 void m48t59_set_addr (void *opaque, uint32_t addr)
464 M48t59State *NVRAM = opaque;
466 NVRAM->addr = addr;
469 void m48t59_toggle_lock (void *opaque, int lock)
471 M48t59State *NVRAM = opaque;
473 NVRAM->lock ^= 1 << lock;
476 /* IO access to NVRAM */
477 static void NVRAM_writeb (void *opaque, uint32_t addr, uint32_t val)
479 M48t59State *NVRAM = opaque;
481 addr -= NVRAM->io_base;
482 NVRAM_PRINTF("%s: 0x%08x => 0x%08x\n", __func__, addr, val);
483 switch (addr) {
484 case 0:
485 NVRAM->addr &= ~0x00FF;
486 NVRAM->addr |= val;
487 break;
488 case 1:
489 NVRAM->addr &= ~0xFF00;
490 NVRAM->addr |= val << 8;
491 break;
492 case 3:
493 m48t59_write(NVRAM, val, NVRAM->addr);
494 NVRAM->addr = 0x0000;
495 break;
496 default:
497 break;
501 static uint32_t NVRAM_readb (void *opaque, uint32_t addr)
503 M48t59State *NVRAM = opaque;
504 uint32_t retval;
506 addr -= NVRAM->io_base;
507 switch (addr) {
508 case 3:
509 retval = m48t59_read(NVRAM, NVRAM->addr);
510 break;
511 default:
512 retval = -1;
513 break;
515 NVRAM_PRINTF("%s: 0x%08x <= 0x%08x\n", __func__, addr, retval);
517 return retval;
520 static void nvram_writeb (void *opaque, target_phys_addr_t addr, uint32_t value)
522 M48t59State *NVRAM = opaque;
524 m48t59_write(NVRAM, addr, value & 0xff);
527 static void nvram_writew (void *opaque, target_phys_addr_t addr, uint32_t value)
529 M48t59State *NVRAM = opaque;
531 m48t59_write(NVRAM, addr, (value >> 8) & 0xff);
532 m48t59_write(NVRAM, addr + 1, value & 0xff);
535 static void nvram_writel (void *opaque, target_phys_addr_t addr, uint32_t value)
537 M48t59State *NVRAM = opaque;
539 m48t59_write(NVRAM, addr, (value >> 24) & 0xff);
540 m48t59_write(NVRAM, addr + 1, (value >> 16) & 0xff);
541 m48t59_write(NVRAM, addr + 2, (value >> 8) & 0xff);
542 m48t59_write(NVRAM, addr + 3, value & 0xff);
545 static uint32_t nvram_readb (void *opaque, target_phys_addr_t addr)
547 M48t59State *NVRAM = opaque;
548 uint32_t retval;
550 retval = m48t59_read(NVRAM, addr);
551 return retval;
554 static uint32_t nvram_readw (void *opaque, target_phys_addr_t addr)
556 M48t59State *NVRAM = opaque;
557 uint32_t retval;
559 retval = m48t59_read(NVRAM, addr) << 8;
560 retval |= m48t59_read(NVRAM, addr + 1);
561 return retval;
564 static uint32_t nvram_readl (void *opaque, target_phys_addr_t addr)
566 M48t59State *NVRAM = opaque;
567 uint32_t retval;
569 retval = m48t59_read(NVRAM, addr) << 24;
570 retval |= m48t59_read(NVRAM, addr + 1) << 16;
571 retval |= m48t59_read(NVRAM, addr + 2) << 8;
572 retval |= m48t59_read(NVRAM, addr + 3);
573 return retval;
576 static CPUWriteMemoryFunc * const nvram_write[] = {
577 &nvram_writeb,
578 &nvram_writew,
579 &nvram_writel,
582 static CPUReadMemoryFunc * const nvram_read[] = {
583 &nvram_readb,
584 &nvram_readw,
585 &nvram_readl,
588 static const VMStateDescription vmstate_m48t59 = {
589 .name = "m48t59",
590 .version_id = 1,
591 .minimum_version_id = 1,
592 .minimum_version_id_old = 1,
593 .fields = (VMStateField[]) {
594 VMSTATE_UINT8(lock, M48t59State),
595 VMSTATE_UINT16(addr, M48t59State),
596 VMSTATE_VBUFFER_UINT32(buffer, M48t59State, 0, NULL, 0, size),
597 VMSTATE_END_OF_LIST()
601 static void m48t59_reset_common(M48t59State *NVRAM)
603 NVRAM->addr = 0;
604 NVRAM->lock = 0;
605 if (NVRAM->alrm_timer != NULL)
606 qemu_del_timer(NVRAM->alrm_timer);
608 if (NVRAM->wd_timer != NULL)
609 qemu_del_timer(NVRAM->wd_timer);
612 static void m48t59_reset_isa(DeviceState *d)
614 M48t59ISAState *isa = container_of(d, M48t59ISAState, busdev.qdev);
615 M48t59State *NVRAM = &isa->state;
617 m48t59_reset_common(NVRAM);
620 static void m48t59_reset_sysbus(DeviceState *d)
622 M48t59SysBusState *sys = container_of(d, M48t59SysBusState, busdev.qdev);
623 M48t59State *NVRAM = &sys->state;
625 m48t59_reset_common(NVRAM);
628 /* Initialisation routine */
629 M48t59State *m48t59_init(qemu_irq IRQ, target_phys_addr_t mem_base,
630 uint32_t io_base, uint16_t size, int type)
632 DeviceState *dev;
633 SysBusDevice *s;
634 M48t59SysBusState *d;
635 M48t59State *state;
637 dev = qdev_create(NULL, "m48t59");
638 qdev_prop_set_uint32(dev, "type", type);
639 qdev_prop_set_uint32(dev, "size", size);
640 qdev_prop_set_uint32(dev, "io_base", io_base);
641 qdev_init_nofail(dev);
642 s = sysbus_from_qdev(dev);
643 d = FROM_SYSBUS(M48t59SysBusState, s);
644 state = &d->state;
645 sysbus_connect_irq(s, 0, IRQ);
646 if (io_base != 0) {
647 register_ioport_read(io_base, 0x04, 1, NVRAM_readb, state);
648 register_ioport_write(io_base, 0x04, 1, NVRAM_writeb, state);
650 if (mem_base != 0) {
651 sysbus_mmio_map(s, 0, mem_base);
654 return state;
657 M48t59State *m48t59_init_isa(uint32_t io_base, uint16_t size, int type)
659 M48t59ISAState *d;
660 ISADevice *dev;
661 M48t59State *s;
663 dev = isa_create("m48t59_isa");
664 qdev_prop_set_uint32(&dev->qdev, "type", type);
665 qdev_prop_set_uint32(&dev->qdev, "size", size);
666 qdev_prop_set_uint32(&dev->qdev, "io_base", io_base);
667 qdev_init_nofail(&dev->qdev);
668 d = DO_UPCAST(M48t59ISAState, busdev, dev);
669 s = &d->state;
671 if (io_base != 0) {
672 register_ioport_read(io_base, 0x04, 1, NVRAM_readb, s);
673 register_ioport_write(io_base, 0x04, 1, NVRAM_writeb, s);
674 isa_init_ioport_range(dev, io_base, 4);
677 return s;
680 static void m48t59_init_common(M48t59State *s)
682 s->buffer = qemu_mallocz(s->size);
683 if (s->type == 59) {
684 s->alrm_timer = qemu_new_timer_ns(vm_clock, &alarm_cb, s);
685 s->wd_timer = qemu_new_timer_ns(vm_clock, &watchdog_cb, s);
687 qemu_get_timedate(&s->alarm, 0);
689 vmstate_register(NULL, -1, &vmstate_m48t59, s);
692 static int m48t59_init_isa1(ISADevice *dev)
694 M48t59ISAState *d = DO_UPCAST(M48t59ISAState, busdev, dev);
695 M48t59State *s = &d->state;
697 isa_init_irq(dev, &s->IRQ, 8);
698 m48t59_init_common(s);
700 return 0;
703 static int m48t59_init1(SysBusDevice *dev)
705 M48t59SysBusState *d = FROM_SYSBUS(M48t59SysBusState, dev);
706 M48t59State *s = &d->state;
707 int mem_index;
709 sysbus_init_irq(dev, &s->IRQ);
711 mem_index = cpu_register_io_memory(nvram_read, nvram_write, s,
712 DEVICE_NATIVE_ENDIAN);
713 sysbus_init_mmio(dev, s->size, mem_index);
714 m48t59_init_common(s);
716 return 0;
719 static ISADeviceInfo m48t59_isa_info = {
720 .init = m48t59_init_isa1,
721 .qdev.name = "m48t59_isa",
722 .qdev.size = sizeof(M48t59ISAState),
723 .qdev.reset = m48t59_reset_isa,
724 .qdev.no_user = 1,
725 .qdev.props = (Property[]) {
726 DEFINE_PROP_UINT32("size", M48t59ISAState, state.size, -1),
727 DEFINE_PROP_UINT32("type", M48t59ISAState, state.type, -1),
728 DEFINE_PROP_HEX32( "io_base", M48t59ISAState, state.io_base, 0),
729 DEFINE_PROP_END_OF_LIST(),
733 static SysBusDeviceInfo m48t59_info = {
734 .init = m48t59_init1,
735 .qdev.name = "m48t59",
736 .qdev.size = sizeof(M48t59SysBusState),
737 .qdev.reset = m48t59_reset_sysbus,
738 .qdev.props = (Property[]) {
739 DEFINE_PROP_UINT32("size", M48t59SysBusState, state.size, -1),
740 DEFINE_PROP_UINT32("type", M48t59SysBusState, state.type, -1),
741 DEFINE_PROP_HEX32( "io_base", M48t59SysBusState, state.io_base, 0),
742 DEFINE_PROP_END_OF_LIST(),
746 static void m48t59_register_devices(void)
748 sysbus_register_withprop(&m48t59_info);
749 isa_qdev_register(&m48t59_isa_info);
752 device_init(m48t59_register_devices)