2004-04-12 22:39:29 +02:00
|
|
|
/*
|
2005-10-30 17:58:32 +01:00
|
|
|
* QEMU M48T59 and M48T08 NVRAM emulation for PPC PREP and Sparc platforms
|
2007-09-16 23:08:06 +02:00
|
|
|
*
|
2017-05-15 23:41:13 +02:00
|
|
|
* Copyright (c) 2003-2005, 2007, 2017 Jocelyn Mayer
|
2015-03-02 23:23:27 +01:00
|
|
|
* Copyright (c) 2013 Hervé Poussineau
|
2007-09-16 23:08:06 +02:00
|
|
|
*
|
2004-04-12 22:39:29 +02:00
|
|
|
* 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.
|
|
|
|
*/
|
2016-01-26 19:17:18 +01:00
|
|
|
#include "qemu/osdep.h"
|
2013-02-04 15:40:22 +01:00
|
|
|
#include "hw/hw.h"
|
2013-02-05 17:06:20 +01:00
|
|
|
#include "hw/timer/m48t59.h"
|
include/qemu/osdep.h: Don't include qapi/error.h
Commit 57cb38b included qapi/error.h into qemu/osdep.h to get the
Error typedef. Since then, we've moved to include qemu/osdep.h
everywhere. Its file comment explains: "To avoid getting into
possible circular include dependencies, this file should not include
any other QEMU headers, with the exceptions of config-host.h,
compiler.h, os-posix.h and os-win32.h, all of which are doing a
similar job to this file and are under similar constraints."
qapi/error.h doesn't do a similar job, and it doesn't adhere to
similar constraints: it includes qapi-types.h. That's in excess of
100KiB of crap most .c files don't actually need.
Add the typedef to qemu/typedefs.h, and include that instead of
qapi/error.h. Include qapi/error.h in .c files that need it and don't
get it now. Include qapi-types.h in qom/object.h for uint16List.
Update scripts/clean-includes accordingly. Update it further to match
reality: replace config.h by config-target.h, add sysemu/os-posix.h,
sysemu/os-win32.h. Update the list of includes in the qemu/osdep.h
comment quoted above similarly.
This reduces the number of objects depending on qapi/error.h from "all
of them" to less than a third. Unfortunately, the number depending on
qapi-types.h shrinks only a little. More work is needed for that one.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
[Fix compilation without the spice devel packages. - Paolo]
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
2016-03-14 09:01:28 +01:00
|
|
|
#include "qapi/error.h"
|
2012-12-17 18:20:00 +01:00
|
|
|
#include "qemu/timer.h"
|
2012-12-17 18:20:04 +01:00
|
|
|
#include "sysemu/sysemu.h"
|
2013-02-04 15:40:22 +01:00
|
|
|
#include "hw/sysbus.h"
|
2012-12-17 18:19:49 +01:00
|
|
|
#include "exec/address-spaces.h"
|
2016-03-20 18:16:19 +01:00
|
|
|
#include "qemu/bcd.h"
|
2004-04-12 22:39:29 +02:00
|
|
|
|
2016-11-08 07:00:35 +01:00
|
|
|
#include "m48t59-internal.h"
|
2004-04-12 22:39:29 +02:00
|
|
|
|
2015-03-02 23:23:27 +01:00
|
|
|
#define TYPE_M48TXX_SYS_BUS "sysbus-m48txx"
|
|
|
|
#define M48TXX_SYS_BUS_GET_CLASS(obj) \
|
|
|
|
OBJECT_GET_CLASS(M48txxSysBusDeviceClass, (obj), TYPE_M48TXX_SYS_BUS)
|
|
|
|
#define M48TXX_SYS_BUS_CLASS(klass) \
|
|
|
|
OBJECT_CLASS_CHECK(M48txxSysBusDeviceClass, (klass), TYPE_M48TXX_SYS_BUS)
|
|
|
|
#define M48TXX_SYS_BUS(obj) \
|
|
|
|
OBJECT_CHECK(M48txxSysBusState, (obj), TYPE_M48TXX_SYS_BUS)
|
|
|
|
|
2009-10-13 20:56:27 +02:00
|
|
|
/*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
2015-03-02 23:23:27 +01:00
|
|
|
typedef struct M48txxSysBusState {
|
2013-07-27 15:01:49 +02:00
|
|
|
SysBusDevice parent_obj;
|
2010-02-07 09:05:03 +01:00
|
|
|
M48t59State state;
|
2012-10-08 13:19:48 +02:00
|
|
|
MemoryRegion io;
|
2015-03-02 23:23:27 +01:00
|
|
|
} M48txxSysBusState;
|
|
|
|
|
|
|
|
typedef struct M48txxSysBusDeviceClass {
|
|
|
|
SysBusDeviceClass parent_class;
|
|
|
|
M48txxInfo info;
|
|
|
|
} M48txxSysBusDeviceClass;
|
|
|
|
|
2016-11-08 07:00:35 +01:00
|
|
|
static M48txxInfo m48txx_sysbus_info[] = {
|
2015-03-02 23:23:27 +01:00
|
|
|
{
|
2016-11-08 07:00:35 +01:00
|
|
|
.bus_name = "sysbus-m48t02",
|
2015-03-02 23:23:27 +01:00
|
|
|
.model = 2,
|
|
|
|
.size = 0x800,
|
|
|
|
},{
|
2016-11-08 07:00:35 +01:00
|
|
|
.bus_name = "sysbus-m48t08",
|
2015-03-02 23:23:27 +01:00
|
|
|
.model = 8,
|
|
|
|
.size = 0x2000,
|
2015-03-02 23:23:27 +01:00
|
|
|
},{
|
2016-11-08 07:00:35 +01:00
|
|
|
.bus_name = "sysbus-m48t59",
|
2015-03-02 23:23:27 +01:00
|
|
|
.model = 59,
|
|
|
|
.size = 0x2000,
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2009-09-14 17:33:28 +02:00
|
|
|
|
2004-04-12 22:39:29 +02:00
|
|
|
/* Fake timer functions */
|
|
|
|
|
|
|
|
/* Alarm management */
|
|
|
|
static void alarm_cb (void *opaque)
|
|
|
|
{
|
2008-02-17 12:42:19 +01:00
|
|
|
struct tm tm;
|
2004-04-12 22:39:29 +02:00
|
|
|
uint64_t next_time;
|
2010-02-07 09:05:03 +01:00
|
|
|
M48t59State *NVRAM = opaque;
|
2004-04-12 22:39:29 +02:00
|
|
|
|
2007-04-07 20:14:41 +02:00
|
|
|
qemu_set_irq(NVRAM->IRQ, 1);
|
2007-09-16 23:08:06 +02:00
|
|
|
if ((NVRAM->buffer[0x1FF5] & 0x80) == 0 &&
|
2004-04-12 22:39:29 +02:00
|
|
|
(NVRAM->buffer[0x1FF4] & 0x80) == 0 &&
|
|
|
|
(NVRAM->buffer[0x1FF3] & 0x80) == 0 &&
|
|
|
|
(NVRAM->buffer[0x1FF2] & 0x80) == 0) {
|
2008-02-17 12:42:19 +01:00
|
|
|
/* 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;
|
2004-04-12 22:39:29 +02:00
|
|
|
} else if ((NVRAM->buffer[0x1FF5] & 0x80) != 0 &&
|
|
|
|
(NVRAM->buffer[0x1FF4] & 0x80) == 0 &&
|
|
|
|
(NVRAM->buffer[0x1FF3] & 0x80) == 0 &&
|
|
|
|
(NVRAM->buffer[0x1FF2] & 0x80) == 0) {
|
2008-02-17 12:42:19 +01:00
|
|
|
/* Repeat once a day */
|
|
|
|
next_time = 24 * 60 * 60;
|
2004-04-12 22:39:29 +02:00
|
|
|
} else if ((NVRAM->buffer[0x1FF5] & 0x80) != 0 &&
|
|
|
|
(NVRAM->buffer[0x1FF4] & 0x80) != 0 &&
|
|
|
|
(NVRAM->buffer[0x1FF3] & 0x80) == 0 &&
|
|
|
|
(NVRAM->buffer[0x1FF2] & 0x80) == 0) {
|
2008-02-17 12:42:19 +01:00
|
|
|
/* Repeat once an hour */
|
|
|
|
next_time = 60 * 60;
|
2004-04-12 22:39:29 +02:00
|
|
|
} else if ((NVRAM->buffer[0x1FF5] & 0x80) != 0 &&
|
|
|
|
(NVRAM->buffer[0x1FF4] & 0x80) != 0 &&
|
|
|
|
(NVRAM->buffer[0x1FF3] & 0x80) != 0 &&
|
|
|
|
(NVRAM->buffer[0x1FF2] & 0x80) == 0) {
|
2008-02-17 12:42:19 +01:00
|
|
|
/* Repeat once a minute */
|
|
|
|
next_time = 60;
|
2004-04-12 22:39:29 +02:00
|
|
|
} else {
|
2008-02-17 12:42:19 +01:00
|
|
|
/* Repeat once a second */
|
|
|
|
next_time = 1;
|
2004-04-12 22:39:29 +02:00
|
|
|
}
|
2013-08-21 17:03:08 +02:00
|
|
|
timer_mod(NVRAM->alrm_timer, qemu_clock_get_ns(rtc_clock) +
|
2008-02-17 12:42:19 +01:00
|
|
|
next_time * 1000);
|
2007-04-07 20:14:41 +02:00
|
|
|
qemu_set_irq(NVRAM->IRQ, 0);
|
2004-04-12 22:39:29 +02:00
|
|
|
}
|
|
|
|
|
2010-02-07 09:05:03 +01:00
|
|
|
static void set_alarm(M48t59State *NVRAM)
|
2008-02-17 12:42:19 +01:00
|
|
|
{
|
|
|
|
int diff;
|
|
|
|
if (NVRAM->alrm_timer != NULL) {
|
2013-08-21 17:03:08 +02:00
|
|
|
timer_del(NVRAM->alrm_timer);
|
2008-02-17 12:42:19 +01:00
|
|
|
diff = qemu_timedate_diff(&NVRAM->alarm) - NVRAM->time_offset;
|
|
|
|
if (diff > 0)
|
2013-08-21 17:03:08 +02:00
|
|
|
timer_mod(NVRAM->alrm_timer, diff * 1000);
|
2008-02-17 12:42:19 +01:00
|
|
|
}
|
|
|
|
}
|
2004-04-12 22:39:29 +02:00
|
|
|
|
2008-02-17 12:42:19 +01:00
|
|
|
/* RTC management helpers */
|
2010-02-07 09:05:03 +01:00
|
|
|
static inline void get_time(M48t59State *NVRAM, struct tm *tm)
|
2004-04-12 22:39:29 +02:00
|
|
|
{
|
2008-02-17 12:42:19 +01:00
|
|
|
qemu_get_timedate(tm, NVRAM->time_offset);
|
2004-04-12 22:39:29 +02:00
|
|
|
}
|
|
|
|
|
2010-02-07 09:05:03 +01:00
|
|
|
static void set_time(M48t59State *NVRAM, struct tm *tm)
|
2004-04-12 22:39:29 +02:00
|
|
|
{
|
2008-02-17 12:42:19 +01:00
|
|
|
NVRAM->time_offset = qemu_timedate_diff(tm);
|
|
|
|
set_alarm(NVRAM);
|
2004-04-12 22:39:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Watchdog management */
|
|
|
|
static void watchdog_cb (void *opaque)
|
|
|
|
{
|
2010-02-07 09:05:03 +01:00
|
|
|
M48t59State *NVRAM = opaque;
|
2004-04-12 22:39:29 +02:00
|
|
|
|
|
|
|
NVRAM->buffer[0x1FF0] |= 0x80;
|
|
|
|
if (NVRAM->buffer[0x1FF7] & 0x80) {
|
|
|
|
NVRAM->buffer[0x1FF7] = 0x00;
|
|
|
|
NVRAM->buffer[0x1FFC] &= ~0x40;
|
2004-05-17 22:21:49 +02:00
|
|
|
/* May it be a hw CPU Reset instead ? */
|
2017-05-15 23:41:13 +02:00
|
|
|
qemu_system_reset_request(SHUTDOWN_CAUSE_GUEST_RESET);
|
2004-04-12 22:39:29 +02:00
|
|
|
} else {
|
2007-04-07 20:14:41 +02:00
|
|
|
qemu_set_irq(NVRAM->IRQ, 1);
|
|
|
|
qemu_set_irq(NVRAM->IRQ, 0);
|
2004-04-12 22:39:29 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-02-07 09:05:03 +01:00
|
|
|
static void set_up_watchdog(M48t59State *NVRAM, uint8_t value)
|
2004-04-12 22:39:29 +02:00
|
|
|
{
|
|
|
|
uint64_t interval; /* in 1/16 seconds */
|
|
|
|
|
2007-09-30 03:29:07 +02:00
|
|
|
NVRAM->buffer[0x1FF0] &= ~0x80;
|
2004-04-12 22:39:29 +02:00
|
|
|
if (NVRAM->wd_timer != NULL) {
|
2013-08-21 17:03:08 +02:00
|
|
|
timer_del(NVRAM->wd_timer);
|
2007-09-30 03:29:07 +02:00
|
|
|
if (value != 0) {
|
|
|
|
interval = (1 << (2 * (value & 0x03))) * ((value >> 2) & 0x1F);
|
2013-08-21 17:03:08 +02:00
|
|
|
timer_mod(NVRAM->wd_timer, ((uint64_t)time(NULL) * 1000) +
|
2007-09-30 03:29:07 +02:00
|
|
|
((interval * 1000) >> 4));
|
|
|
|
}
|
2004-04-12 22:39:29 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Direct access to NVRAM */
|
2016-11-08 07:00:35 +01:00
|
|
|
void m48t59_write(M48t59State *NVRAM, uint32_t addr, uint32_t val)
|
2004-04-12 22:39:29 +02:00
|
|
|
{
|
|
|
|
struct tm tm;
|
|
|
|
int tmp;
|
|
|
|
|
2005-10-30 17:58:32 +01:00
|
|
|
if (addr > 0x1FF8 && addr < 0x2000)
|
|
|
|
NVRAM_PRINTF("%s: 0x%08x => 0x%08x\n", __func__, addr, val);
|
2007-12-29 10:05:30 +01:00
|
|
|
|
|
|
|
/* check for NVRAM access */
|
2012-05-23 19:25:34 +02:00
|
|
|
if ((NVRAM->model == 2 && addr < 0x7f8) ||
|
|
|
|
(NVRAM->model == 8 && addr < 0x1ff8) ||
|
|
|
|
(NVRAM->model == 59 && addr < 0x1ff0)) {
|
2005-10-30 17:58:32 +01:00
|
|
|
goto do_write;
|
2012-05-23 19:25:34 +02:00
|
|
|
}
|
2007-12-29 10:05:30 +01:00
|
|
|
|
|
|
|
/* TOD access */
|
2005-10-30 17:58:32 +01:00
|
|
|
switch (addr) {
|
2004-04-12 22:39:29 +02:00
|
|
|
case 0x1FF0:
|
|
|
|
/* flags register : read-only */
|
|
|
|
break;
|
|
|
|
case 0x1FF1:
|
|
|
|
/* unused */
|
|
|
|
break;
|
|
|
|
case 0x1FF2:
|
|
|
|
/* alarm seconds */
|
2009-11-20 01:03:47 +01:00
|
|
|
tmp = from_bcd(val & 0x7F);
|
2005-10-30 17:58:32 +01:00
|
|
|
if (tmp >= 0 && tmp <= 59) {
|
2008-02-17 12:42:19 +01:00
|
|
|
NVRAM->alarm.tm_sec = tmp;
|
2005-10-30 17:58:32 +01:00
|
|
|
NVRAM->buffer[0x1FF2] = val;
|
2008-02-17 12:42:19 +01:00
|
|
|
set_alarm(NVRAM);
|
2005-10-30 17:58:32 +01:00
|
|
|
}
|
2004-04-12 22:39:29 +02:00
|
|
|
break;
|
|
|
|
case 0x1FF3:
|
|
|
|
/* alarm minutes */
|
2009-11-20 01:03:47 +01:00
|
|
|
tmp = from_bcd(val & 0x7F);
|
2005-10-30 17:58:32 +01:00
|
|
|
if (tmp >= 0 && tmp <= 59) {
|
2008-02-17 12:42:19 +01:00
|
|
|
NVRAM->alarm.tm_min = tmp;
|
2005-10-30 17:58:32 +01:00
|
|
|
NVRAM->buffer[0x1FF3] = val;
|
2008-02-17 12:42:19 +01:00
|
|
|
set_alarm(NVRAM);
|
2005-10-30 17:58:32 +01:00
|
|
|
}
|
2004-04-12 22:39:29 +02:00
|
|
|
break;
|
|
|
|
case 0x1FF4:
|
|
|
|
/* alarm hours */
|
2009-11-20 01:03:47 +01:00
|
|
|
tmp = from_bcd(val & 0x3F);
|
2005-10-30 17:58:32 +01:00
|
|
|
if (tmp >= 0 && tmp <= 23) {
|
2008-02-17 12:42:19 +01:00
|
|
|
NVRAM->alarm.tm_hour = tmp;
|
2005-10-30 17:58:32 +01:00
|
|
|
NVRAM->buffer[0x1FF4] = val;
|
2008-02-17 12:42:19 +01:00
|
|
|
set_alarm(NVRAM);
|
2005-10-30 17:58:32 +01:00
|
|
|
}
|
2004-04-12 22:39:29 +02:00
|
|
|
break;
|
|
|
|
case 0x1FF5:
|
|
|
|
/* alarm date */
|
2012-04-23 16:48:31 +02:00
|
|
|
tmp = from_bcd(val & 0x3F);
|
2005-10-30 17:58:32 +01:00
|
|
|
if (tmp != 0) {
|
2008-02-17 12:42:19 +01:00
|
|
|
NVRAM->alarm.tm_mday = tmp;
|
2005-10-30 17:58:32 +01:00
|
|
|
NVRAM->buffer[0x1FF5] = val;
|
2008-02-17 12:42:19 +01:00
|
|
|
set_alarm(NVRAM);
|
2005-10-30 17:58:32 +01:00
|
|
|
}
|
2004-04-12 22:39:29 +02:00
|
|
|
break;
|
|
|
|
case 0x1FF6:
|
|
|
|
/* interrupts */
|
2005-10-30 17:58:32 +01:00
|
|
|
NVRAM->buffer[0x1FF6] = val;
|
2004-04-12 22:39:29 +02:00
|
|
|
break;
|
|
|
|
case 0x1FF7:
|
|
|
|
/* watchdog */
|
2005-10-30 17:58:32 +01:00
|
|
|
NVRAM->buffer[0x1FF7] = val;
|
|
|
|
set_up_watchdog(NVRAM, val);
|
2004-04-12 22:39:29 +02:00
|
|
|
break;
|
|
|
|
case 0x1FF8:
|
2007-12-29 10:05:30 +01:00
|
|
|
case 0x07F8:
|
2004-04-12 22:39:29 +02:00
|
|
|
/* control */
|
2007-12-29 10:05:30 +01:00
|
|
|
NVRAM->buffer[addr] = (val & ~0xA0) | 0x90;
|
2004-04-12 22:39:29 +02:00
|
|
|
break;
|
|
|
|
case 0x1FF9:
|
2007-12-29 10:05:30 +01:00
|
|
|
case 0x07F9:
|
2004-04-12 22:39:29 +02:00
|
|
|
/* seconds (BCD) */
|
2009-11-20 01:03:47 +01:00
|
|
|
tmp = from_bcd(val & 0x7F);
|
2004-04-12 22:39:29 +02:00
|
|
|
if (tmp >= 0 && tmp <= 59) {
|
|
|
|
get_time(NVRAM, &tm);
|
|
|
|
tm.tm_sec = tmp;
|
|
|
|
set_time(NVRAM, &tm);
|
|
|
|
}
|
2008-02-17 12:42:19 +01:00
|
|
|
if ((val & 0x80) ^ (NVRAM->buffer[addr] & 0x80)) {
|
2004-04-12 22:39:29 +02:00
|
|
|
if (val & 0x80) {
|
|
|
|
NVRAM->stop_time = time(NULL);
|
|
|
|
} else {
|
|
|
|
NVRAM->time_offset += NVRAM->stop_time - time(NULL);
|
|
|
|
NVRAM->stop_time = 0;
|
|
|
|
}
|
|
|
|
}
|
2008-02-17 12:42:19 +01:00
|
|
|
NVRAM->buffer[addr] = val & 0x80;
|
2004-04-12 22:39:29 +02:00
|
|
|
break;
|
|
|
|
case 0x1FFA:
|
2007-12-29 10:05:30 +01:00
|
|
|
case 0x07FA:
|
2004-04-12 22:39:29 +02:00
|
|
|
/* minutes (BCD) */
|
2009-11-20 01:03:47 +01:00
|
|
|
tmp = from_bcd(val & 0x7F);
|
2004-04-12 22:39:29 +02:00
|
|
|
if (tmp >= 0 && tmp <= 59) {
|
|
|
|
get_time(NVRAM, &tm);
|
|
|
|
tm.tm_min = tmp;
|
|
|
|
set_time(NVRAM, &tm);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 0x1FFB:
|
2007-12-29 10:05:30 +01:00
|
|
|
case 0x07FB:
|
2004-04-12 22:39:29 +02:00
|
|
|
/* hours (BCD) */
|
2009-11-20 01:03:47 +01:00
|
|
|
tmp = from_bcd(val & 0x3F);
|
2004-04-12 22:39:29 +02:00
|
|
|
if (tmp >= 0 && tmp <= 23) {
|
|
|
|
get_time(NVRAM, &tm);
|
|
|
|
tm.tm_hour = tmp;
|
|
|
|
set_time(NVRAM, &tm);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 0x1FFC:
|
2007-12-29 10:05:30 +01:00
|
|
|
case 0x07FC:
|
2004-04-12 22:39:29 +02:00
|
|
|
/* day of the week / century */
|
2009-11-20 01:03:47 +01:00
|
|
|
tmp = from_bcd(val & 0x07);
|
2004-04-12 22:39:29 +02:00
|
|
|
get_time(NVRAM, &tm);
|
|
|
|
tm.tm_wday = tmp;
|
|
|
|
set_time(NVRAM, &tm);
|
2007-12-29 10:05:30 +01:00
|
|
|
NVRAM->buffer[addr] = val & 0x40;
|
2004-04-12 22:39:29 +02:00
|
|
|
break;
|
|
|
|
case 0x1FFD:
|
2007-12-29 10:05:30 +01:00
|
|
|
case 0x07FD:
|
2012-04-23 16:48:31 +02:00
|
|
|
/* date (BCD) */
|
|
|
|
tmp = from_bcd(val & 0x3F);
|
2004-04-12 22:39:29 +02:00
|
|
|
if (tmp != 0) {
|
|
|
|
get_time(NVRAM, &tm);
|
|
|
|
tm.tm_mday = tmp;
|
|
|
|
set_time(NVRAM, &tm);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 0x1FFE:
|
2007-12-29 10:05:30 +01:00
|
|
|
case 0x07FE:
|
2004-04-12 22:39:29 +02:00
|
|
|
/* month */
|
2009-11-20 01:03:47 +01:00
|
|
|
tmp = from_bcd(val & 0x1F);
|
2004-04-12 22:39:29 +02:00
|
|
|
if (tmp >= 1 && tmp <= 12) {
|
|
|
|
get_time(NVRAM, &tm);
|
|
|
|
tm.tm_mon = tmp - 1;
|
|
|
|
set_time(NVRAM, &tm);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 0x1FFF:
|
2007-12-29 10:05:30 +01:00
|
|
|
case 0x07FF:
|
2004-04-12 22:39:29 +02:00
|
|
|
/* year */
|
2009-11-20 01:03:47 +01:00
|
|
|
tmp = from_bcd(val);
|
2004-04-12 22:39:29 +02:00
|
|
|
if (tmp >= 0 && tmp <= 99) {
|
|
|
|
get_time(NVRAM, &tm);
|
2015-03-02 23:23:27 +01:00
|
|
|
tm.tm_year = from_bcd(val) + NVRAM->base_year - 1900;
|
2004-04-12 22:39:29 +02:00
|
|
|
set_time(NVRAM, &tm);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
2004-05-17 22:21:49 +02:00
|
|
|
/* Check lock registers state */
|
2005-10-30 17:58:32 +01:00
|
|
|
if (addr >= 0x20 && addr <= 0x2F && (NVRAM->lock & 1))
|
2004-05-17 22:21:49 +02:00
|
|
|
break;
|
2005-10-30 17:58:32 +01:00
|
|
|
if (addr >= 0x30 && addr <= 0x3F && (NVRAM->lock & 2))
|
2004-05-17 22:21:49 +02:00
|
|
|
break;
|
2005-10-30 17:58:32 +01:00
|
|
|
do_write:
|
|
|
|
if (addr < NVRAM->size) {
|
|
|
|
NVRAM->buffer[addr] = val & 0xFF;
|
2004-04-12 22:39:29 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-08 07:00:35 +01:00
|
|
|
uint32_t m48t59_read(M48t59State *NVRAM, uint32_t addr)
|
2004-04-12 22:39:29 +02:00
|
|
|
{
|
|
|
|
struct tm tm;
|
|
|
|
uint32_t retval = 0xFF;
|
|
|
|
|
2007-12-29 10:05:30 +01:00
|
|
|
/* check for NVRAM access */
|
2012-05-23 19:25:34 +02:00
|
|
|
if ((NVRAM->model == 2 && addr < 0x078f) ||
|
|
|
|
(NVRAM->model == 8 && addr < 0x1ff8) ||
|
|
|
|
(NVRAM->model == 59 && addr < 0x1ff0)) {
|
2005-10-30 17:58:32 +01:00
|
|
|
goto do_read;
|
2012-05-23 19:25:34 +02:00
|
|
|
}
|
2007-12-29 10:05:30 +01:00
|
|
|
|
|
|
|
/* TOD access */
|
2005-10-30 17:58:32 +01:00
|
|
|
switch (addr) {
|
2004-04-12 22:39:29 +02:00
|
|
|
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:
|
2007-12-29 10:05:30 +01:00
|
|
|
case 0x07F8:
|
2004-04-12 22:39:29 +02:00
|
|
|
/* control */
|
|
|
|
goto do_read;
|
|
|
|
case 0x1FF9:
|
2007-12-29 10:05:30 +01:00
|
|
|
case 0x07F9:
|
2004-04-12 22:39:29 +02:00
|
|
|
/* seconds (BCD) */
|
|
|
|
get_time(NVRAM, &tm);
|
2009-11-20 01:03:47 +01:00
|
|
|
retval = (NVRAM->buffer[addr] & 0x80) | to_bcd(tm.tm_sec);
|
2004-04-12 22:39:29 +02:00
|
|
|
break;
|
|
|
|
case 0x1FFA:
|
2007-12-29 10:05:30 +01:00
|
|
|
case 0x07FA:
|
2004-04-12 22:39:29 +02:00
|
|
|
/* minutes (BCD) */
|
|
|
|
get_time(NVRAM, &tm);
|
2009-11-20 01:03:47 +01:00
|
|
|
retval = to_bcd(tm.tm_min);
|
2004-04-12 22:39:29 +02:00
|
|
|
break;
|
|
|
|
case 0x1FFB:
|
2007-12-29 10:05:30 +01:00
|
|
|
case 0x07FB:
|
2004-04-12 22:39:29 +02:00
|
|
|
/* hours (BCD) */
|
|
|
|
get_time(NVRAM, &tm);
|
2009-11-20 01:03:47 +01:00
|
|
|
retval = to_bcd(tm.tm_hour);
|
2004-04-12 22:39:29 +02:00
|
|
|
break;
|
|
|
|
case 0x1FFC:
|
2007-12-29 10:05:30 +01:00
|
|
|
case 0x07FC:
|
2004-04-12 22:39:29 +02:00
|
|
|
/* day of the week / century */
|
|
|
|
get_time(NVRAM, &tm);
|
2007-12-29 10:05:30 +01:00
|
|
|
retval = NVRAM->buffer[addr] | tm.tm_wday;
|
2004-04-12 22:39:29 +02:00
|
|
|
break;
|
|
|
|
case 0x1FFD:
|
2007-12-29 10:05:30 +01:00
|
|
|
case 0x07FD:
|
2004-04-12 22:39:29 +02:00
|
|
|
/* date */
|
|
|
|
get_time(NVRAM, &tm);
|
2009-11-20 01:03:47 +01:00
|
|
|
retval = to_bcd(tm.tm_mday);
|
2004-04-12 22:39:29 +02:00
|
|
|
break;
|
|
|
|
case 0x1FFE:
|
2007-12-29 10:05:30 +01:00
|
|
|
case 0x07FE:
|
2004-04-12 22:39:29 +02:00
|
|
|
/* month */
|
|
|
|
get_time(NVRAM, &tm);
|
2009-11-20 01:03:47 +01:00
|
|
|
retval = to_bcd(tm.tm_mon + 1);
|
2004-04-12 22:39:29 +02:00
|
|
|
break;
|
|
|
|
case 0x1FFF:
|
2007-12-29 10:05:30 +01:00
|
|
|
case 0x07FF:
|
2004-04-12 22:39:29 +02:00
|
|
|
/* year */
|
|
|
|
get_time(NVRAM, &tm);
|
2015-03-02 23:23:27 +01:00
|
|
|
retval = to_bcd((tm.tm_year + 1900 - NVRAM->base_year) % 100);
|
2004-04-12 22:39:29 +02:00
|
|
|
break;
|
|
|
|
default:
|
2004-05-17 22:21:49 +02:00
|
|
|
/* Check lock registers state */
|
2005-10-30 17:58:32 +01:00
|
|
|
if (addr >= 0x20 && addr <= 0x2F && (NVRAM->lock & 1))
|
2004-05-17 22:21:49 +02:00
|
|
|
break;
|
2005-10-30 17:58:32 +01:00
|
|
|
if (addr >= 0x30 && addr <= 0x3F && (NVRAM->lock & 2))
|
2004-05-17 22:21:49 +02:00
|
|
|
break;
|
2005-10-30 17:58:32 +01:00
|
|
|
do_read:
|
|
|
|
if (addr < NVRAM->size) {
|
|
|
|
retval = NVRAM->buffer[addr];
|
2004-04-12 22:39:29 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2005-10-30 17:58:32 +01:00
|
|
|
if (addr > 0x1FF9 && addr < 0x2000)
|
2007-12-29 10:03:43 +01:00
|
|
|
NVRAM_PRINTF("%s: 0x%08x <= 0x%08x\n", __func__, addr, retval);
|
2004-04-12 22:39:29 +02:00
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* IO access to NVRAM */
|
2012-10-08 13:19:48 +02:00
|
|
|
static void NVRAM_writeb(void *opaque, hwaddr addr, uint64_t val,
|
|
|
|
unsigned size)
|
2004-04-12 22:39:29 +02:00
|
|
|
{
|
2010-02-07 09:05:03 +01:00
|
|
|
M48t59State *NVRAM = opaque;
|
2004-04-12 22:39:29 +02:00
|
|
|
|
2007-12-29 10:03:43 +01:00
|
|
|
NVRAM_PRINTF("%s: 0x%08x => 0x%08x\n", __func__, addr, val);
|
2004-04-12 22:39:29 +02:00
|
|
|
switch (addr) {
|
|
|
|
case 0:
|
|
|
|
NVRAM->addr &= ~0x00FF;
|
|
|
|
NVRAM->addr |= val;
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
NVRAM->addr &= ~0xFF00;
|
|
|
|
NVRAM->addr |= val << 8;
|
|
|
|
break;
|
|
|
|
case 3:
|
2011-10-15 10:05:18 +02:00
|
|
|
m48t59_write(NVRAM, NVRAM->addr, val);
|
2004-04-12 22:39:29 +02:00
|
|
|
NVRAM->addr = 0x0000;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-08 13:19:48 +02:00
|
|
|
static uint64_t NVRAM_readb(void *opaque, hwaddr addr, unsigned size)
|
2004-04-12 22:39:29 +02:00
|
|
|
{
|
2010-02-07 09:05:03 +01:00
|
|
|
M48t59State *NVRAM = opaque;
|
2004-05-17 22:21:49 +02:00
|
|
|
uint32_t retval;
|
2004-04-12 22:39:29 +02:00
|
|
|
|
2004-05-17 22:21:49 +02:00
|
|
|
switch (addr) {
|
|
|
|
case 3:
|
2005-10-30 17:58:32 +01:00
|
|
|
retval = m48t59_read(NVRAM, NVRAM->addr);
|
2004-05-17 22:21:49 +02:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
retval = -1;
|
|
|
|
break;
|
|
|
|
}
|
2007-12-29 10:03:43 +01:00
|
|
|
NVRAM_PRINTF("%s: 0x%08x <= 0x%08x\n", __func__, addr, retval);
|
2004-04-12 22:39:29 +02:00
|
|
|
|
2004-05-17 22:21:49 +02:00
|
|
|
return retval;
|
2004-04-12 22:39:29 +02:00
|
|
|
}
|
|
|
|
|
2012-10-23 12:30:10 +02:00
|
|
|
static void nvram_writeb (void *opaque, hwaddr addr, uint32_t value)
|
2004-06-21 18:49:53 +02:00
|
|
|
{
|
2010-02-07 09:05:03 +01:00
|
|
|
M48t59State *NVRAM = opaque;
|
2007-09-17 10:09:54 +02:00
|
|
|
|
2005-10-30 17:58:32 +01:00
|
|
|
m48t59_write(NVRAM, addr, value & 0xff);
|
2004-06-21 18:49:53 +02:00
|
|
|
}
|
|
|
|
|
2012-10-23 12:30:10 +02:00
|
|
|
static void nvram_writew (void *opaque, hwaddr addr, uint32_t value)
|
2004-06-21 18:49:53 +02:00
|
|
|
{
|
2010-02-07 09:05:03 +01:00
|
|
|
M48t59State *NVRAM = opaque;
|
2007-09-17 10:09:54 +02:00
|
|
|
|
2005-10-30 17:58:32 +01:00
|
|
|
m48t59_write(NVRAM, addr, (value >> 8) & 0xff);
|
|
|
|
m48t59_write(NVRAM, addr + 1, value & 0xff);
|
2004-06-21 18:49:53 +02:00
|
|
|
}
|
|
|
|
|
2012-10-23 12:30:10 +02:00
|
|
|
static void nvram_writel (void *opaque, hwaddr addr, uint32_t value)
|
2004-06-21 18:49:53 +02:00
|
|
|
{
|
2010-02-07 09:05:03 +01:00
|
|
|
M48t59State *NVRAM = opaque;
|
2007-09-17 10:09:54 +02:00
|
|
|
|
2005-10-30 17:58:32 +01:00
|
|
|
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);
|
2004-06-21 18:49:53 +02:00
|
|
|
}
|
|
|
|
|
2012-10-23 12:30:10 +02:00
|
|
|
static uint32_t nvram_readb (void *opaque, hwaddr addr)
|
2004-06-21 18:49:53 +02:00
|
|
|
{
|
2010-02-07 09:05:03 +01:00
|
|
|
M48t59State *NVRAM = opaque;
|
2007-09-17 10:09:54 +02:00
|
|
|
|
2015-09-25 16:36:03 +02:00
|
|
|
return m48t59_read(NVRAM, addr);
|
2004-06-21 18:49:53 +02:00
|
|
|
}
|
|
|
|
|
2012-10-23 12:30:10 +02:00
|
|
|
static uint32_t nvram_readw (void *opaque, hwaddr addr)
|
2004-06-21 18:49:53 +02:00
|
|
|
{
|
2010-02-07 09:05:03 +01:00
|
|
|
M48t59State *NVRAM = opaque;
|
2005-10-30 17:58:32 +01:00
|
|
|
uint32_t retval;
|
2007-09-17 10:09:54 +02:00
|
|
|
|
2005-10-30 17:58:32 +01:00
|
|
|
retval = m48t59_read(NVRAM, addr) << 8;
|
|
|
|
retval |= m48t59_read(NVRAM, addr + 1);
|
2004-06-21 18:49:53 +02:00
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2012-10-23 12:30:10 +02:00
|
|
|
static uint32_t nvram_readl (void *opaque, hwaddr addr)
|
2004-06-21 18:49:53 +02:00
|
|
|
{
|
2010-02-07 09:05:03 +01:00
|
|
|
M48t59State *NVRAM = opaque;
|
2005-10-30 17:58:32 +01:00
|
|
|
uint32_t retval;
|
2004-06-21 18:49:53 +02:00
|
|
|
|
2005-10-30 17:58:32 +01:00
|
|
|
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);
|
2004-06-21 18:49:53 +02:00
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2011-11-13 11:16:07 +01:00
|
|
|
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,
|
2004-06-21 18:49:53 +02:00
|
|
|
};
|
2005-10-30 17:58:32 +01:00
|
|
|
|
2010-12-02 00:16:33 +01:00
|
|
|
static const VMStateDescription vmstate_m48t59 = {
|
|
|
|
.name = "m48t59",
|
|
|
|
.version_id = 1,
|
|
|
|
.minimum_version_id = 1,
|
2014-04-16 15:24:04 +02:00
|
|
|
.fields = (VMStateField[]) {
|
2010-12-02 00:16:33 +01:00
|
|
|
VMSTATE_UINT8(lock, M48t59State),
|
|
|
|
VMSTATE_UINT16(addr, M48t59State),
|
2017-02-03 18:52:17 +01:00
|
|
|
VMSTATE_VBUFFER_UINT32(buffer, M48t59State, 0, NULL, size),
|
2010-12-02 00:16:33 +01:00
|
|
|
VMSTATE_END_OF_LIST()
|
|
|
|
}
|
|
|
|
};
|
2007-04-14 15:01:31 +02:00
|
|
|
|
2016-11-08 07:00:35 +01:00
|
|
|
void m48t59_reset_common(M48t59State *NVRAM)
|
2007-04-14 15:01:31 +02:00
|
|
|
{
|
2008-12-28 19:27:10 +01:00
|
|
|
NVRAM->addr = 0;
|
|
|
|
NVRAM->lock = 0;
|
2007-04-14 15:01:31 +02:00
|
|
|
if (NVRAM->alrm_timer != NULL)
|
2013-08-21 17:03:08 +02:00
|
|
|
timer_del(NVRAM->alrm_timer);
|
2007-04-14 15:01:31 +02:00
|
|
|
|
|
|
|
if (NVRAM->wd_timer != NULL)
|
2013-08-21 17:03:08 +02:00
|
|
|
timer_del(NVRAM->wd_timer);
|
2007-04-14 15:01:31 +02:00
|
|
|
}
|
|
|
|
|
2009-10-24 21:22:56 +02:00
|
|
|
static void m48t59_reset_sysbus(DeviceState *d)
|
|
|
|
{
|
2015-03-02 23:23:27 +01:00
|
|
|
M48txxSysBusState *sys = M48TXX_SYS_BUS(d);
|
2010-02-07 09:05:03 +01:00
|
|
|
M48t59State *NVRAM = &sys->state;
|
2009-10-24 21:22:56 +02:00
|
|
|
|
|
|
|
m48t59_reset_common(NVRAM);
|
|
|
|
}
|
|
|
|
|
2016-11-08 07:00:35 +01:00
|
|
|
const MemoryRegionOps m48t59_io_ops = {
|
2012-10-08 13:19:48 +02:00
|
|
|
.read = NVRAM_readb,
|
|
|
|
.write = NVRAM_writeb,
|
|
|
|
.impl = {
|
|
|
|
.min_access_size = 1,
|
|
|
|
.max_access_size = 1,
|
|
|
|
},
|
|
|
|
.endianness = DEVICE_LITTLE_ENDIAN,
|
2011-08-16 00:33:40 +02:00
|
|
|
};
|
|
|
|
|
2004-04-12 22:39:29 +02:00
|
|
|
/* Initialisation routine */
|
2015-03-02 23:23:27 +01:00
|
|
|
Nvram *m48t59_init(qemu_irq IRQ, hwaddr mem_base,
|
2015-03-02 23:23:27 +01:00
|
|
|
uint32_t io_base, uint16_t size, int base_year,
|
|
|
|
int model)
|
2004-04-12 22:39:29 +02:00
|
|
|
{
|
2009-07-12 22:07:07 +02:00
|
|
|
DeviceState *dev;
|
|
|
|
SysBusDevice *s;
|
2015-03-02 23:23:27 +01:00
|
|
|
int i;
|
2009-07-12 22:07:07 +02:00
|
|
|
|
2016-11-08 07:00:35 +01:00
|
|
|
for (i = 0; i < ARRAY_SIZE(m48txx_sysbus_info); i++) {
|
|
|
|
if (m48txx_sysbus_info[i].size != size ||
|
|
|
|
m48txx_sysbus_info[i].model != model) {
|
2015-03-02 23:23:27 +01:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2016-11-08 07:00:35 +01:00
|
|
|
dev = qdev_create(NULL, m48txx_sysbus_info[i].bus_name);
|
2015-03-02 23:23:27 +01:00
|
|
|
qdev_prop_set_int32(dev, "base-year", base_year);
|
2015-03-02 23:23:27 +01:00
|
|
|
qdev_init_nofail(dev);
|
|
|
|
s = SYS_BUS_DEVICE(dev);
|
|
|
|
sysbus_connect_irq(s, 0, IRQ);
|
|
|
|
if (io_base != 0) {
|
|
|
|
memory_region_add_subregion(get_system_io(), io_base,
|
|
|
|
sysbus_mmio_get_region(s, 1));
|
|
|
|
}
|
|
|
|
if (mem_base != 0) {
|
|
|
|
sysbus_mmio_map(s, 0, mem_base);
|
|
|
|
}
|
|
|
|
|
2015-03-02 23:23:27 +01:00
|
|
|
return NVRAM(s);
|
2004-06-21 18:49:53 +02:00
|
|
|
}
|
2009-07-12 22:07:07 +02:00
|
|
|
|
2015-03-02 23:23:27 +01:00
|
|
|
assert(false);
|
|
|
|
return NULL;
|
2009-07-12 22:07:07 +02:00
|
|
|
}
|
|
|
|
|
2016-11-08 07:00:35 +01:00
|
|
|
void m48t59_realize_common(M48t59State *s, Error **errp)
|
2009-09-14 17:33:28 +02:00
|
|
|
{
|
2011-08-21 05:09:37 +02:00
|
|
|
s->buffer = g_malloc0(s->size);
|
2012-05-23 19:25:34 +02:00
|
|
|
if (s->model == 59) {
|
2013-08-21 17:03:04 +02:00
|
|
|
s->alrm_timer = timer_new_ns(rtc_clock, &alarm_cb, s);
|
2013-08-21 17:03:08 +02:00
|
|
|
s->wd_timer = timer_new_ns(QEMU_CLOCK_VIRTUAL, &watchdog_cb, s);
|
2005-10-30 17:58:32 +01:00
|
|
|
}
|
2008-02-17 12:42:19 +01:00
|
|
|
qemu_get_timedate(&s->alarm, 0);
|
2009-09-14 17:33:28 +02:00
|
|
|
}
|
|
|
|
|
2017-05-25 15:34:48 +02:00
|
|
|
static void m48t59_init1(Object *obj)
|
2009-09-14 17:33:28 +02:00
|
|
|
{
|
2017-05-25 15:34:48 +02:00
|
|
|
M48txxSysBusDeviceClass *u = M48TXX_SYS_BUS_GET_CLASS(obj);
|
|
|
|
M48txxSysBusState *d = M48TXX_SYS_BUS(obj);
|
|
|
|
SysBusDevice *dev = SYS_BUS_DEVICE(obj);
|
2010-02-07 09:05:03 +01:00
|
|
|
M48t59State *s = &d->state;
|
2009-09-14 17:33:28 +02:00
|
|
|
|
2015-03-02 23:23:27 +01:00
|
|
|
s->model = u->info.model;
|
|
|
|
s->size = u->info.size;
|
2009-09-14 17:33:28 +02:00
|
|
|
sysbus_init_irq(dev, &s->IRQ);
|
|
|
|
|
2017-05-25 15:34:48 +02:00
|
|
|
memory_region_init_io(&s->iomem, obj, &nvram_ops, s, "m48t59.nvram",
|
2015-03-02 23:23:27 +01:00
|
|
|
s->size);
|
2017-05-25 15:34:48 +02:00
|
|
|
memory_region_init_io(&d->io, obj, &m48t59_io_ops, s, "m48t59", 4);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void m48t59_realize(DeviceState *dev, Error **errp)
|
|
|
|
{
|
|
|
|
M48txxSysBusState *d = M48TXX_SYS_BUS(dev);
|
|
|
|
M48t59State *s = &d->state;
|
|
|
|
SysBusDevice *sbd = SYS_BUS_DEVICE(dev);
|
2009-09-14 17:33:28 +02:00
|
|
|
|
2017-05-25 15:34:48 +02:00
|
|
|
sysbus_init_mmio(sbd, &s->iomem);
|
|
|
|
sysbus_init_mmio(sbd, &d->io);
|
|
|
|
m48t59_realize_common(s, errp);
|
2009-09-14 17:33:28 +02:00
|
|
|
}
|
|
|
|
|
2015-03-02 23:23:27 +01:00
|
|
|
static uint32_t m48txx_sysbus_read(Nvram *obj, uint32_t addr)
|
|
|
|
{
|
|
|
|
M48txxSysBusState *d = M48TXX_SYS_BUS(obj);
|
|
|
|
return m48t59_read(&d->state, addr);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void m48txx_sysbus_write(Nvram *obj, uint32_t addr, uint32_t val)
|
|
|
|
{
|
|
|
|
M48txxSysBusState *d = M48TXX_SYS_BUS(obj);
|
|
|
|
m48t59_write(&d->state, addr, val);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void m48txx_sysbus_toggle_lock(Nvram *obj, int lock)
|
|
|
|
{
|
|
|
|
M48txxSysBusState *d = M48TXX_SYS_BUS(obj);
|
|
|
|
m48t59_toggle_lock(&d->state, lock);
|
|
|
|
}
|
|
|
|
|
2015-03-02 23:23:27 +01:00
|
|
|
static Property m48t59_sysbus_properties[] = {
|
|
|
|
DEFINE_PROP_INT32("base-year", M48txxSysBusState, state.base_year, 0),
|
|
|
|
DEFINE_PROP_END_OF_LIST(),
|
|
|
|
};
|
|
|
|
|
2015-03-02 23:23:27 +01:00
|
|
|
static void m48txx_sysbus_class_init(ObjectClass *klass, void *data)
|
2012-01-24 20:12:29 +01:00
|
|
|
{
|
2011-12-08 04:34:16 +01:00
|
|
|
DeviceClass *dc = DEVICE_CLASS(klass);
|
2015-03-02 23:23:27 +01:00
|
|
|
NvramClass *nc = NVRAM_CLASS(klass);
|
2012-01-24 20:12:29 +01:00
|
|
|
|
2017-05-25 15:34:48 +02:00
|
|
|
dc->realize = m48t59_realize;
|
2011-12-08 04:34:16 +01:00
|
|
|
dc->reset = m48t59_reset_sysbus;
|
2015-03-02 23:23:27 +01:00
|
|
|
dc->props = m48t59_sysbus_properties;
|
2017-05-25 15:34:48 +02:00
|
|
|
dc->vmsd = &vmstate_m48t59;
|
2015-03-02 23:23:27 +01:00
|
|
|
nc->read = m48txx_sysbus_read;
|
|
|
|
nc->write = m48txx_sysbus_write;
|
|
|
|
nc->toggle_lock = m48txx_sysbus_toggle_lock;
|
2012-01-24 20:12:29 +01:00
|
|
|
}
|
|
|
|
|
2015-03-02 23:23:27 +01:00
|
|
|
static void m48txx_sysbus_concrete_class_init(ObjectClass *klass, void *data)
|
|
|
|
{
|
|
|
|
M48txxSysBusDeviceClass *u = M48TXX_SYS_BUS_CLASS(klass);
|
|
|
|
M48txxInfo *info = data;
|
|
|
|
|
|
|
|
u->info = *info;
|
|
|
|
}
|
|
|
|
|
2015-03-02 23:23:27 +01:00
|
|
|
static const TypeInfo nvram_info = {
|
|
|
|
.name = TYPE_NVRAM,
|
|
|
|
.parent = TYPE_INTERFACE,
|
|
|
|
.class_size = sizeof(NvramClass),
|
|
|
|
};
|
|
|
|
|
2015-03-02 23:23:27 +01:00
|
|
|
static const TypeInfo m48txx_sysbus_type_info = {
|
|
|
|
.name = TYPE_M48TXX_SYS_BUS,
|
|
|
|
.parent = TYPE_SYS_BUS_DEVICE,
|
|
|
|
.instance_size = sizeof(M48txxSysBusState),
|
2017-05-25 15:34:48 +02:00
|
|
|
.instance_init = m48t59_init1,
|
2015-03-02 23:23:27 +01:00
|
|
|
.abstract = true,
|
|
|
|
.class_init = m48txx_sysbus_class_init,
|
2015-03-02 23:23:27 +01:00
|
|
|
.interfaces = (InterfaceInfo[]) {
|
|
|
|
{ TYPE_NVRAM },
|
|
|
|
{ }
|
|
|
|
}
|
2015-03-02 23:23:27 +01:00
|
|
|
};
|
|
|
|
|
2012-02-09 15:20:55 +01:00
|
|
|
static void m48t59_register_types(void)
|
2009-07-12 22:07:07 +02:00
|
|
|
{
|
2015-03-02 23:23:27 +01:00
|
|
|
TypeInfo sysbus_type_info = {
|
|
|
|
.parent = TYPE_M48TXX_SYS_BUS,
|
|
|
|
.class_size = sizeof(M48txxSysBusDeviceClass),
|
|
|
|
.class_init = m48txx_sysbus_concrete_class_init,
|
|
|
|
};
|
|
|
|
int i;
|
|
|
|
|
2015-03-02 23:23:27 +01:00
|
|
|
type_register_static(&nvram_info);
|
2015-03-02 23:23:27 +01:00
|
|
|
type_register_static(&m48txx_sysbus_type_info);
|
|
|
|
|
2016-11-08 07:00:35 +01:00
|
|
|
for (i = 0; i < ARRAY_SIZE(m48txx_sysbus_info); i++) {
|
|
|
|
sysbus_type_info.name = m48txx_sysbus_info[i].bus_name;
|
|
|
|
sysbus_type_info.class_data = &m48txx_sysbus_info[i];
|
|
|
|
type_register(&sysbus_type_info);
|
2015-03-02 23:23:27 +01:00
|
|
|
}
|
2004-04-12 22:39:29 +02:00
|
|
|
}
|
2009-07-12 22:07:07 +02:00
|
|
|
|
2012-02-09 15:20:55 +01:00
|
|
|
type_init(m48t59_register_types)
|