m48t59.c 20.5 KB
Newer Older
1
/*
2
 * QEMU M48T59 and M48T08 NVRAM emulation for PPC PREP and Sparc platforms
3
 *
4
 * Copyright (c) 2003-2005, 2007 Jocelyn Mayer
5
 *
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */
24
#include "hw/hw.h"
P
Paolo Bonzini 已提交
25
#include "hw/timer/m48t59.h"
26
#include "qemu/timer.h"
27
#include "sysemu/sysemu.h"
28
#include "hw/sysbus.h"
P
Paolo Bonzini 已提交
29
#include "hw/isa/isa.h"
30
#include "exec/address-spaces.h"
31

B
bellard 已提交
32
//#define DEBUG_NVRAM
33

B
bellard 已提交
34
#if defined(DEBUG_NVRAM)
35
#define NVRAM_PRINTF(fmt, ...) do { printf(fmt , ## __VA_ARGS__); } while (0)
36
#else
37
#define NVRAM_PRINTF(fmt, ...) do { } while (0)
38 39
#endif

40
/*
B
blueswir1 已提交
41
 * The M48T02, M48T08 and M48T59 chips are very similar. The newer '59 has
42 43 44
 * alarm and a watchdog timer and related control registers. In the
 * PPC platform there is also a nvram lock function.
 */
B
Blue Swirl 已提交
45 46 47 48 49 50 51 52

/*
 * Chipset docs:
 * http://www.st.com/stonline/products/literature/ds/2410/m48t02.pdf
 * http://www.st.com/stonline/products/literature/ds/2411/m48t08.pdf
 * http://www.st.com/stonline/products/literature/od/7001/m48t59y.pdf
 */

53
struct M48t59State {
54
    /* Hardware parameters */
P
pbrook 已提交
55
    qemu_irq IRQ;
A
Avi Kivity 已提交
56
    MemoryRegion iomem;
57
    uint32_t io_base;
G
Gerd Hoffmann 已提交
58
    uint32_t size;
59 60 61 62
    /* RTC management */
    time_t   time_offset;
    time_t   stop_time;
    /* Alarm & watchdog */
63
    struct tm alarm;
64 65 66 67
    struct QEMUTimer *alrm_timer;
    struct QEMUTimer *wd_timer;
    /* NVRAM storage */
    uint8_t *buffer;
68
    /* Model parameters */
69
    uint32_t model; /* 2 = m48t02, 8 = m48t08, 59 = m48t59 */
70 71 72
    /* NVRAM storage */
    uint16_t addr;
    uint8_t  lock;
73
};
74

75 76 77 78
#define TYPE_ISA_M48T59 "m48t59_isa"
#define ISA_M48T59(obj) \
    OBJECT_CHECK(M48t59ISAState, (obj), TYPE_ISA_M48T59)

B
Blue Swirl 已提交
79
typedef struct M48t59ISAState {
80 81
    ISADevice parent_obj;

82
    M48t59State state;
83
    MemoryRegion io;
B
Blue Swirl 已提交
84 85 86 87
} M48t59ISAState;

typedef struct M48t59SysBusState {
    SysBusDevice busdev;
88
    M48t59State state;
89
    MemoryRegion io;
B
Blue Swirl 已提交
90 91
} M48t59SysBusState;

92 93 94 95 96
/* Fake timer functions */

/* Alarm management */
static void alarm_cb (void *opaque)
{
97
    struct tm tm;
98
    uint64_t next_time;
99
    M48t59State *NVRAM = opaque;
100

P
pbrook 已提交
101
    qemu_set_irq(NVRAM->IRQ, 1);
102
    if ((NVRAM->buffer[0x1FF5] & 0x80) == 0 &&
103 104 105
	(NVRAM->buffer[0x1FF4] & 0x80) == 0 &&
	(NVRAM->buffer[0x1FF3] & 0x80) == 0 &&
	(NVRAM->buffer[0x1FF2] & 0x80) == 0) {
106 107 108 109 110 111 112 113
        /* Repeat once a month */
        qemu_get_timedate(&tm, NVRAM->time_offset);
        tm.tm_mon++;
        if (tm.tm_mon == 13) {
            tm.tm_mon = 1;
            tm.tm_year++;
        }
        next_time = qemu_timedate_diff(&tm) - NVRAM->time_offset;
114 115 116 117
    } else if ((NVRAM->buffer[0x1FF5] & 0x80) != 0 &&
	       (NVRAM->buffer[0x1FF4] & 0x80) == 0 &&
	       (NVRAM->buffer[0x1FF3] & 0x80) == 0 &&
	       (NVRAM->buffer[0x1FF2] & 0x80) == 0) {
118 119
        /* Repeat once a day */
        next_time = 24 * 60 * 60;
120 121 122 123
    } else if ((NVRAM->buffer[0x1FF5] & 0x80) != 0 &&
	       (NVRAM->buffer[0x1FF4] & 0x80) != 0 &&
	       (NVRAM->buffer[0x1FF3] & 0x80) == 0 &&
	       (NVRAM->buffer[0x1FF2] & 0x80) == 0) {
124 125
        /* Repeat once an hour */
        next_time = 60 * 60;
126 127 128 129
    } else if ((NVRAM->buffer[0x1FF5] & 0x80) != 0 &&
	       (NVRAM->buffer[0x1FF4] & 0x80) != 0 &&
	       (NVRAM->buffer[0x1FF3] & 0x80) != 0 &&
	       (NVRAM->buffer[0x1FF2] & 0x80) == 0) {
130 131
        /* Repeat once a minute */
        next_time = 60;
132
    } else {
133 134
        /* Repeat once a second */
        next_time = 1;
135
    }
136
    qemu_mod_timer(NVRAM->alrm_timer, qemu_get_clock_ns(rtc_clock) +
137
                    next_time * 1000);
P
pbrook 已提交
138
    qemu_set_irq(NVRAM->IRQ, 0);
139 140
}

141
static void set_alarm(M48t59State *NVRAM)
142 143 144 145 146 147 148 149 150
{
    int diff;
    if (NVRAM->alrm_timer != NULL) {
        qemu_del_timer(NVRAM->alrm_timer);
        diff = qemu_timedate_diff(&NVRAM->alarm) - NVRAM->time_offset;
        if (diff > 0)
            qemu_mod_timer(NVRAM->alrm_timer, diff * 1000);
    }
}
151

152
/* RTC management helpers */
153
static inline void get_time(M48t59State *NVRAM, struct tm *tm)
154
{
155
    qemu_get_timedate(tm, NVRAM->time_offset);
156 157
}

158
static void set_time(M48t59State *NVRAM, struct tm *tm)
159
{
160 161
    NVRAM->time_offset = qemu_timedate_diff(tm);
    set_alarm(NVRAM);
162 163 164 165 166
}

/* Watchdog management */
static void watchdog_cb (void *opaque)
{
167
    M48t59State *NVRAM = opaque;
168 169 170 171 172

    NVRAM->buffer[0x1FF0] |= 0x80;
    if (NVRAM->buffer[0x1FF7] & 0x80) {
	NVRAM->buffer[0x1FF7] = 0x00;
	NVRAM->buffer[0x1FFC] &= ~0x40;
B
bellard 已提交
173
        /* May it be a hw CPU Reset instead ? */
B
bellard 已提交
174
        qemu_system_reset_request();
175
    } else {
P
pbrook 已提交
176 177
	qemu_set_irq(NVRAM->IRQ, 1);
	qemu_set_irq(NVRAM->IRQ, 0);
178 179 180
    }
}

181
static void set_up_watchdog(M48t59State *NVRAM, uint8_t value)
182 183 184
{
    uint64_t interval; /* in 1/16 seconds */

J
j_mayer 已提交
185
    NVRAM->buffer[0x1FF0] &= ~0x80;
186 187
    if (NVRAM->wd_timer != NULL) {
        qemu_del_timer(NVRAM->wd_timer);
J
j_mayer 已提交
188 189 190 191 192
        if (value != 0) {
            interval = (1 << (2 * (value & 0x03))) * ((value >> 2) & 0x1F);
            qemu_mod_timer(NVRAM->wd_timer, ((uint64_t)time(NULL) * 1000) +
                           ((interval * 1000) >> 4));
        }
193 194 195 196
    }
}

/* Direct access to NVRAM */
197
void m48t59_write (void *opaque, uint32_t addr, uint32_t val)
198
{
199
    M48t59State *NVRAM = opaque;
200 201 202
    struct tm tm;
    int tmp;

203 204
    if (addr > 0x1FF8 && addr < 0x2000)
	NVRAM_PRINTF("%s: 0x%08x => 0x%08x\n", __func__, addr, val);
B
blueswir1 已提交
205 206

    /* check for NVRAM access */
207 208 209
    if ((NVRAM->model == 2 && addr < 0x7f8) ||
        (NVRAM->model == 8 && addr < 0x1ff8) ||
        (NVRAM->model == 59 && addr < 0x1ff0)) {
210
        goto do_write;
211
    }
B
blueswir1 已提交
212 213

    /* TOD access */
214
    switch (addr) {
215 216 217 218 219 220 221 222
    case 0x1FF0:
        /* flags register : read-only */
        break;
    case 0x1FF1:
        /* unused */
        break;
    case 0x1FF2:
        /* alarm seconds */
P
Paul Brook 已提交
223
        tmp = from_bcd(val & 0x7F);
224
        if (tmp >= 0 && tmp <= 59) {
225
            NVRAM->alarm.tm_sec = tmp;
226
            NVRAM->buffer[0x1FF2] = val;
227
            set_alarm(NVRAM);
228
        }
229 230 231
        break;
    case 0x1FF3:
        /* alarm minutes */
P
Paul Brook 已提交
232
        tmp = from_bcd(val & 0x7F);
233
        if (tmp >= 0 && tmp <= 59) {
234
            NVRAM->alarm.tm_min = tmp;
235
            NVRAM->buffer[0x1FF3] = val;
236
            set_alarm(NVRAM);
237
        }
238 239 240
        break;
    case 0x1FF4:
        /* alarm hours */
P
Paul Brook 已提交
241
        tmp = from_bcd(val & 0x3F);
242
        if (tmp >= 0 && tmp <= 23) {
243
            NVRAM->alarm.tm_hour = tmp;
244
            NVRAM->buffer[0x1FF4] = val;
245
            set_alarm(NVRAM);
246
        }
247 248 249
        break;
    case 0x1FF5:
        /* alarm date */
250
        tmp = from_bcd(val & 0x3F);
251
        if (tmp != 0) {
252
            NVRAM->alarm.tm_mday = tmp;
253
            NVRAM->buffer[0x1FF5] = val;
254
            set_alarm(NVRAM);
255
        }
256 257 258
        break;
    case 0x1FF6:
        /* interrupts */
259
        NVRAM->buffer[0x1FF6] = val;
260 261 262
        break;
    case 0x1FF7:
        /* watchdog */
263 264
        NVRAM->buffer[0x1FF7] = val;
        set_up_watchdog(NVRAM, val);
265 266
        break;
    case 0x1FF8:
B
blueswir1 已提交
267
    case 0x07F8:
268
        /* control */
B
blueswir1 已提交
269
       NVRAM->buffer[addr] = (val & ~0xA0) | 0x90;
270 271
        break;
    case 0x1FF9:
B
blueswir1 已提交
272
    case 0x07F9:
273
        /* seconds (BCD) */
P
Paul Brook 已提交
274
	tmp = from_bcd(val & 0x7F);
275 276 277 278 279
	if (tmp >= 0 && tmp <= 59) {
	    get_time(NVRAM, &tm);
	    tm.tm_sec = tmp;
	    set_time(NVRAM, &tm);
	}
280
        if ((val & 0x80) ^ (NVRAM->buffer[addr] & 0x80)) {
281 282 283 284 285 286 287
	    if (val & 0x80) {
		NVRAM->stop_time = time(NULL);
	    } else {
		NVRAM->time_offset += NVRAM->stop_time - time(NULL);
		NVRAM->stop_time = 0;
	    }
	}
288
        NVRAM->buffer[addr] = val & 0x80;
289 290
        break;
    case 0x1FFA:
B
blueswir1 已提交
291
    case 0x07FA:
292
        /* minutes (BCD) */
P
Paul Brook 已提交
293
	tmp = from_bcd(val & 0x7F);
294 295 296 297 298 299 300
	if (tmp >= 0 && tmp <= 59) {
	    get_time(NVRAM, &tm);
	    tm.tm_min = tmp;
	    set_time(NVRAM, &tm);
	}
        break;
    case 0x1FFB:
B
blueswir1 已提交
301
    case 0x07FB:
302
        /* hours (BCD) */
P
Paul Brook 已提交
303
	tmp = from_bcd(val & 0x3F);
304 305 306 307 308 309 310
	if (tmp >= 0 && tmp <= 23) {
	    get_time(NVRAM, &tm);
	    tm.tm_hour = tmp;
	    set_time(NVRAM, &tm);
	}
        break;
    case 0x1FFC:
B
blueswir1 已提交
311
    case 0x07FC:
312
        /* day of the week / century */
P
Paul Brook 已提交
313
	tmp = from_bcd(val & 0x07);
314 315 316
	get_time(NVRAM, &tm);
	tm.tm_wday = tmp;
	set_time(NVRAM, &tm);
B
blueswir1 已提交
317
        NVRAM->buffer[addr] = val & 0x40;
318 319
        break;
    case 0x1FFD:
B
blueswir1 已提交
320
    case 0x07FD:
321 322
        /* date (BCD) */
       tmp = from_bcd(val & 0x3F);
323 324 325 326 327 328 329
	if (tmp != 0) {
	    get_time(NVRAM, &tm);
	    tm.tm_mday = tmp;
	    set_time(NVRAM, &tm);
	}
        break;
    case 0x1FFE:
B
blueswir1 已提交
330
    case 0x07FE:
331
        /* month */
P
Paul Brook 已提交
332
	tmp = from_bcd(val & 0x1F);
333 334 335 336 337 338 339
	if (tmp >= 1 && tmp <= 12) {
	    get_time(NVRAM, &tm);
	    tm.tm_mon = tmp - 1;
	    set_time(NVRAM, &tm);
	}
        break;
    case 0x1FFF:
B
blueswir1 已提交
340
    case 0x07FF:
341
        /* year */
P
Paul Brook 已提交
342
	tmp = from_bcd(val);
343 344
	if (tmp >= 0 && tmp <= 99) {
	    get_time(NVRAM, &tm);
345
            if (NVRAM->model == 8) {
P
Paul Brook 已提交
346
                tm.tm_year = from_bcd(val) + 68; // Base year is 1968
347
            } else {
P
Paul Brook 已提交
348
                tm.tm_year = from_bcd(val);
349
            }
350 351 352 353
	    set_time(NVRAM, &tm);
	}
        break;
    default:
B
bellard 已提交
354
        /* Check lock registers state */
355
        if (addr >= 0x20 && addr <= 0x2F && (NVRAM->lock & 1))
B
bellard 已提交
356
            break;
357
        if (addr >= 0x30 && addr <= 0x3F && (NVRAM->lock & 2))
B
bellard 已提交
358
            break;
359 360 361
    do_write:
        if (addr < NVRAM->size) {
            NVRAM->buffer[addr] = val & 0xFF;
362 363 364 365 366
	}
        break;
    }
}

367
uint32_t m48t59_read (void *opaque, uint32_t addr)
368
{
369
    M48t59State *NVRAM = opaque;
370 371 372
    struct tm tm;
    uint32_t retval = 0xFF;

B
blueswir1 已提交
373
    /* check for NVRAM access */
374 375 376
    if ((NVRAM->model == 2 && addr < 0x078f) ||
        (NVRAM->model == 8 && addr < 0x1ff8) ||
        (NVRAM->model == 59 && addr < 0x1ff0)) {
377
        goto do_read;
378
    }
B
blueswir1 已提交
379 380

    /* TOD access */
381
    switch (addr) {
382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408
    case 0x1FF0:
        /* flags register */
	goto do_read;
    case 0x1FF1:
        /* unused */
	retval = 0;
        break;
    case 0x1FF2:
        /* alarm seconds */
	goto do_read;
    case 0x1FF3:
        /* alarm minutes */
	goto do_read;
    case 0x1FF4:
        /* alarm hours */
	goto do_read;
    case 0x1FF5:
        /* alarm date */
	goto do_read;
    case 0x1FF6:
        /* interrupts */
	goto do_read;
    case 0x1FF7:
	/* A read resets the watchdog */
	set_up_watchdog(NVRAM, NVRAM->buffer[0x1FF7]);
	goto do_read;
    case 0x1FF8:
B
blueswir1 已提交
409
    case 0x07F8:
410 411 412
        /* control */
	goto do_read;
    case 0x1FF9:
B
blueswir1 已提交
413
    case 0x07F9:
414 415
        /* seconds (BCD) */
        get_time(NVRAM, &tm);
P
Paul Brook 已提交
416
        retval = (NVRAM->buffer[addr] & 0x80) | to_bcd(tm.tm_sec);
417 418
        break;
    case 0x1FFA:
B
blueswir1 已提交
419
    case 0x07FA:
420 421
        /* minutes (BCD) */
        get_time(NVRAM, &tm);
P
Paul Brook 已提交
422
        retval = to_bcd(tm.tm_min);
423 424
        break;
    case 0x1FFB:
B
blueswir1 已提交
425
    case 0x07FB:
426 427
        /* hours (BCD) */
        get_time(NVRAM, &tm);
P
Paul Brook 已提交
428
        retval = to_bcd(tm.tm_hour);
429 430
        break;
    case 0x1FFC:
B
blueswir1 已提交
431
    case 0x07FC:
432 433
        /* day of the week / century */
        get_time(NVRAM, &tm);
B
blueswir1 已提交
434
        retval = NVRAM->buffer[addr] | tm.tm_wday;
435 436
        break;
    case 0x1FFD:
B
blueswir1 已提交
437
    case 0x07FD:
438 439
        /* date */
        get_time(NVRAM, &tm);
P
Paul Brook 已提交
440
        retval = to_bcd(tm.tm_mday);
441 442
        break;
    case 0x1FFE:
B
blueswir1 已提交
443
    case 0x07FE:
444 445
        /* month */
        get_time(NVRAM, &tm);
P
Paul Brook 已提交
446
        retval = to_bcd(tm.tm_mon + 1);
447 448
        break;
    case 0x1FFF:
B
blueswir1 已提交
449
    case 0x07FF:
450 451
        /* year */
        get_time(NVRAM, &tm);
452
        if (NVRAM->model == 8) {
P
Paul Brook 已提交
453
            retval = to_bcd(tm.tm_year - 68); // Base year is 1968
454
        } else {
P
Paul Brook 已提交
455
            retval = to_bcd(tm.tm_year);
456
        }
457 458
        break;
    default:
B
bellard 已提交
459
        /* Check lock registers state */
460
        if (addr >= 0x20 && addr <= 0x2F && (NVRAM->lock & 1))
B
bellard 已提交
461
            break;
462
        if (addr >= 0x30 && addr <= 0x3F && (NVRAM->lock & 2))
B
bellard 已提交
463
            break;
464 465 466
    do_read:
        if (addr < NVRAM->size) {
            retval = NVRAM->buffer[addr];
467 468 469
	}
        break;
    }
470
    if (addr > 0x1FF9 && addr < 0x2000)
471
       NVRAM_PRINTF("%s: 0x%08x <= 0x%08x\n", __func__, addr, retval);
472 473 474 475

    return retval;
}

476
void m48t59_toggle_lock (void *opaque, int lock)
B
bellard 已提交
477
{
478
    M48t59State *NVRAM = opaque;
479

B
bellard 已提交
480 481 482
    NVRAM->lock ^= 1 << lock;
}

483
/* IO access to NVRAM */
484 485
static void NVRAM_writeb(void *opaque, hwaddr addr, uint64_t val,
                         unsigned size)
486
{
487
    M48t59State *NVRAM = opaque;
488

489
    NVRAM_PRINTF("%s: 0x%08x => 0x%08x\n", __func__, addr, val);
490 491 492 493 494 495 496 497 498 499
    switch (addr) {
    case 0:
        NVRAM->addr &= ~0x00FF;
        NVRAM->addr |= val;
        break;
    case 1:
        NVRAM->addr &= ~0xFF00;
        NVRAM->addr |= val << 8;
        break;
    case 3:
B
Blue Swirl 已提交
500
        m48t59_write(NVRAM, NVRAM->addr, val);
501 502 503 504 505 506 507
        NVRAM->addr = 0x0000;
        break;
    default:
        break;
    }
}

508
static uint64_t NVRAM_readb(void *opaque, hwaddr addr, unsigned size)
509
{
510
    M48t59State *NVRAM = opaque;
B
bellard 已提交
511
    uint32_t retval;
512

B
bellard 已提交
513 514
    switch (addr) {
    case 3:
515
        retval = m48t59_read(NVRAM, NVRAM->addr);
B
bellard 已提交
516 517 518 519 520
        break;
    default:
        retval = -1;
        break;
    }
521
    NVRAM_PRINTF("%s: 0x%08x <= 0x%08x\n", __func__, addr, retval);
522

B
bellard 已提交
523
    return retval;
524 525
}

A
Avi Kivity 已提交
526
static void nvram_writeb (void *opaque, hwaddr addr, uint32_t value)
B
bellard 已提交
527
{
528
    M48t59State *NVRAM = opaque;
529

530
    m48t59_write(NVRAM, addr, value & 0xff);
B
bellard 已提交
531 532
}

A
Avi Kivity 已提交
533
static void nvram_writew (void *opaque, hwaddr addr, uint32_t value)
B
bellard 已提交
534
{
535
    M48t59State *NVRAM = opaque;
536

537 538
    m48t59_write(NVRAM, addr, (value >> 8) & 0xff);
    m48t59_write(NVRAM, addr + 1, value & 0xff);
B
bellard 已提交
539 540
}

A
Avi Kivity 已提交
541
static void nvram_writel (void *opaque, hwaddr addr, uint32_t value)
B
bellard 已提交
542
{
543
    M48t59State *NVRAM = opaque;
544

545 546 547 548
    m48t59_write(NVRAM, addr, (value >> 24) & 0xff);
    m48t59_write(NVRAM, addr + 1, (value >> 16) & 0xff);
    m48t59_write(NVRAM, addr + 2, (value >> 8) & 0xff);
    m48t59_write(NVRAM, addr + 3, value & 0xff);
B
bellard 已提交
549 550
}

A
Avi Kivity 已提交
551
static uint32_t nvram_readb (void *opaque, hwaddr addr)
B
bellard 已提交
552
{
553
    M48t59State *NVRAM = opaque;
554
    uint32_t retval;
555

556
    retval = m48t59_read(NVRAM, addr);
B
bellard 已提交
557 558 559
    return retval;
}

A
Avi Kivity 已提交
560
static uint32_t nvram_readw (void *opaque, hwaddr addr)
B
bellard 已提交
561
{
562
    M48t59State *NVRAM = opaque;
563
    uint32_t retval;
564

565 566
    retval = m48t59_read(NVRAM, addr) << 8;
    retval |= m48t59_read(NVRAM, addr + 1);
B
bellard 已提交
567 568 569
    return retval;
}

A
Avi Kivity 已提交
570
static uint32_t nvram_readl (void *opaque, hwaddr addr)
B
bellard 已提交
571
{
572
    M48t59State *NVRAM = opaque;
573
    uint32_t retval;
B
bellard 已提交
574

575 576 577 578
    retval = m48t59_read(NVRAM, addr) << 24;
    retval |= m48t59_read(NVRAM, addr + 1) << 16;
    retval |= m48t59_read(NVRAM, addr + 2) << 8;
    retval |= m48t59_read(NVRAM, addr + 3);
B
bellard 已提交
579 580 581
    return retval;
}

A
Avi Kivity 已提交
582 583 584 585 586 587
static const MemoryRegionOps nvram_ops = {
    .old_mmio = {
        .read = { nvram_readb, nvram_readw, nvram_readl, },
        .write = { nvram_writeb, nvram_writew, nvram_writel, },
    },
    .endianness = DEVICE_NATIVE_ENDIAN,
B
bellard 已提交
588
};
589

J
Juan Quintela 已提交
590 591 592 593 594 595 596 597 598 599 600 601
static const VMStateDescription vmstate_m48t59 = {
    .name = "m48t59",
    .version_id = 1,
    .minimum_version_id = 1,
    .minimum_version_id_old = 1,
    .fields      = (VMStateField[]) {
        VMSTATE_UINT8(lock, M48t59State),
        VMSTATE_UINT16(addr, M48t59State),
        VMSTATE_VBUFFER_UINT32(buffer, M48t59State, 0, NULL, 0, size),
        VMSTATE_END_OF_LIST()
    }
};
602

603
static void m48t59_reset_common(M48t59State *NVRAM)
604
{
B
blueswir1 已提交
605 606
    NVRAM->addr = 0;
    NVRAM->lock = 0;
607 608 609 610 611 612 613
    if (NVRAM->alrm_timer != NULL)
        qemu_del_timer(NVRAM->alrm_timer);

    if (NVRAM->wd_timer != NULL)
        qemu_del_timer(NVRAM->wd_timer);
}

B
Blue Swirl 已提交
614 615
static void m48t59_reset_isa(DeviceState *d)
{
616
    M48t59ISAState *isa = ISA_M48T59(d);
617
    M48t59State *NVRAM = &isa->state;
B
Blue Swirl 已提交
618 619 620 621 622 623 624

    m48t59_reset_common(NVRAM);
}

static void m48t59_reset_sysbus(DeviceState *d)
{
    M48t59SysBusState *sys = container_of(d, M48t59SysBusState, busdev.qdev);
625
    M48t59State *NVRAM = &sys->state;
B
Blue Swirl 已提交
626 627 628 629

    m48t59_reset_common(NVRAM);
}

630
static const MemoryRegionOps m48t59_io_ops = {
631 632 633 634 635 636 637
    .read = NVRAM_readb,
    .write = NVRAM_writeb,
    .impl = {
        .min_access_size = 1,
        .max_access_size = 1,
    },
    .endianness = DEVICE_LITTLE_ENDIAN,
638 639
};

640
/* Initialisation routine */
A
Avi Kivity 已提交
641
M48t59State *m48t59_init(qemu_irq IRQ, hwaddr mem_base,
642
                         uint32_t io_base, uint16_t size, int model)
643
{
644 645
    DeviceState *dev;
    SysBusDevice *s;
B
Blue Swirl 已提交
646
    M48t59SysBusState *d;
647
    M48t59State *state;
648 649

    dev = qdev_create(NULL, "m48t59");
650
    qdev_prop_set_uint32(dev, "model", model);
G
Gerd Hoffmann 已提交
651 652
    qdev_prop_set_uint32(dev, "size", size);
    qdev_prop_set_uint32(dev, "io_base", io_base);
M
Markus Armbruster 已提交
653
    qdev_init_nofail(dev);
654
    s = SYS_BUS_DEVICE(dev);
655 656
    d = FROM_SYSBUS(M48t59SysBusState, s);
    state = &d->state;
657
    sysbus_connect_irq(s, 0, IRQ);
658
    memory_region_init_io(&d->io, NULL, &m48t59_io_ops, state, "m48t59", 4);
659
    if (io_base != 0) {
660
        memory_region_add_subregion(get_system_io(), io_base, &d->io);
661
    }
B
bellard 已提交
662
    if (mem_base != 0) {
663
        sysbus_mmio_map(s, 0, mem_base);
B
bellard 已提交
664
    }
665

666
    return state;
667 668
}

669
M48t59State *m48t59_init_isa(ISABus *bus, uint32_t io_base, uint16_t size,
670
                             int model)
671
{
B
Blue Swirl 已提交
672
    M48t59ISAState *d;
673 674
    ISADevice *isadev;
    DeviceState *dev;
675
    M48t59State *s;
B
Blue Swirl 已提交
676

677 678 679 680 681 682 683
    isadev = isa_create(bus, TYPE_ISA_M48T59);
    dev = DEVICE(isadev);
    qdev_prop_set_uint32(dev, "model", model);
    qdev_prop_set_uint32(dev, "size", size);
    qdev_prop_set_uint32(dev, "io_base", io_base);
    qdev_init_nofail(dev);
    d = ISA_M48T59(isadev);
B
Blue Swirl 已提交
684
    s = &d->state;
685

686
    memory_region_init_io(&d->io, NULL, &m48t59_io_ops, s, "m48t59", 4);
B
Blue Swirl 已提交
687
    if (io_base != 0) {
688
        isa_register_ioport(isadev, &d->io, io_base);
B
Blue Swirl 已提交
689
    }
690

B
Blue Swirl 已提交
691 692
    return s;
}
693

694
static void m48t59_realize_common(M48t59State *s, Error **errp)
B
Blue Swirl 已提交
695
{
696
    s->buffer = g_malloc0(s->size);
697
    if (s->model == 59) {
698
        s->alrm_timer = qemu_new_timer_ns(rtc_clock, &alarm_cb, s);
699
        s->wd_timer = qemu_new_timer_ns(vm_clock, &watchdog_cb, s);
700
    }
701
    qemu_get_timedate(&s->alarm, 0);
B
bellard 已提交
702

J
Juan Quintela 已提交
703
    vmstate_register(NULL, -1, &vmstate_m48t59, s);
B
Blue Swirl 已提交
704 705
}

706
static void m48t59_isa_realize(DeviceState *dev, Error **errp)
B
Blue Swirl 已提交
707
{
708
    ISADevice *isadev = ISA_DEVICE(dev);
709
    M48t59ISAState *d = ISA_M48T59(dev);
710
    M48t59State *s = &d->state;
B
Blue Swirl 已提交
711

712 713
    isa_init_irq(isadev, &s->IRQ, 8);
    m48t59_realize_common(s, errp);
714
}
715

B
Blue Swirl 已提交
716 717 718
static int m48t59_init1(SysBusDevice *dev)
{
    M48t59SysBusState *d = FROM_SYSBUS(M48t59SysBusState, dev);
719
    M48t59State *s = &d->state;
720
    Error *err = NULL;
B
Blue Swirl 已提交
721 722 723

    sysbus_init_irq(dev, &s->IRQ);

724
    memory_region_init_io(&s->iomem, NULL, &nvram_ops, s, "m48t59.nvram", s->size);
725
    sysbus_init_mmio(dev, &s->iomem);
726 727 728 729 730
    m48t59_realize_common(s, &err);
    if (err != NULL) {
        error_free(err);
        return -1;
    }
B
Blue Swirl 已提交
731 732 733 734

    return 0;
}

735 736
static Property m48t59_isa_properties[] = {
    DEFINE_PROP_UINT32("size",    M48t59ISAState, state.size,    -1),
737
    DEFINE_PROP_UINT32("model",   M48t59ISAState, state.model,   -1),
738 739 740 741
    DEFINE_PROP_HEX32( "io_base", M48t59ISAState, state.io_base,  0),
    DEFINE_PROP_END_OF_LIST(),
};

742
static void m48t59_isa_class_init(ObjectClass *klass, void *data)
743
{
744
    DeviceClass *dc = DEVICE_CLASS(klass);
745 746

    dc->realize = m48t59_isa_realize;
747 748 749
    dc->no_user = 1;
    dc->reset = m48t59_reset_isa;
    dc->props = m48t59_isa_properties;
750 751
}

752
static const TypeInfo m48t59_isa_info = {
753
    .name          = TYPE_ISA_M48T59,
754 755
    .parent        = TYPE_ISA_DEVICE,
    .instance_size = sizeof(M48t59ISAState),
756
    .class_init    = m48t59_isa_class_init,
B
Blue Swirl 已提交
757 758
};

759 760
static Property m48t59_properties[] = {
    DEFINE_PROP_UINT32("size",    M48t59SysBusState, state.size,    -1),
761
    DEFINE_PROP_UINT32("model",   M48t59SysBusState, state.model,   -1),
762 763 764 765 766 767
    DEFINE_PROP_HEX32( "io_base", M48t59SysBusState, state.io_base,  0),
    DEFINE_PROP_END_OF_LIST(),
};

static void m48t59_class_init(ObjectClass *klass, void *data)
{
768
    DeviceClass *dc = DEVICE_CLASS(klass);
769 770 771
    SysBusDeviceClass *k = SYS_BUS_DEVICE_CLASS(klass);

    k->init = m48t59_init1;
772 773
    dc->reset = m48t59_reset_sysbus;
    dc->props = m48t59_properties;
774 775
}

776
static const TypeInfo m48t59_info = {
777 778 779 780
    .name          = "m48t59",
    .parent        = TYPE_SYS_BUS_DEVICE,
    .instance_size = sizeof(M48t59SysBusState),
    .class_init    = m48t59_class_init,
G
Gerd Hoffmann 已提交
781 782
};

A
Andreas Färber 已提交
783
static void m48t59_register_types(void)
784
{
785 786
    type_register_static(&m48t59_info);
    type_register_static(&m48t59_isa_info);
787
}
788

A
Andreas Färber 已提交
789
type_init(m48t59_register_types)