]> git.proxmox.com Git - mirror_qemu.git/blame - hw/watchdog/wdt_ib700.c
Include qemu/module.h where needed, drop it from qemu-common.h
[mirror_qemu.git] / hw / watchdog / wdt_ib700.c
CommitLineData
9dd986cc
RJ
1/*
2 * Virtual hardware watchdog.
3 *
4 * Copyright (C) 2009 Red Hat Inc.
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
8167ee88 17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
9dd986cc
RJ
18 *
19 * By Richard W.M. Jones (rjones@redhat.com).
20 */
21
0430891c 22#include "qemu/osdep.h"
0b8fa32f 23#include "qemu/module.h"
1de7afc9 24#include "qemu/timer.h"
0d09e41a 25#include "sysemu/watchdog.h"
83c9f4ca 26#include "hw/hw.h"
0d09e41a 27#include "hw/isa/isa.h"
9dd986cc
RJ
28
29/*#define IB700_DEBUG 1*/
30
31#ifdef IB700_DEBUG
32#define ib700_debug(fs,...) \
33 fprintf(stderr,"ib700: %s: "fs,__func__,##__VA_ARGS__)
34#else
35#define ib700_debug(fs,...)
36#endif
37
61e477f4
AF
38#define TYPE_IB700 "ib700"
39#define IB700(obj) OBJECT_CHECK(IB700State, (obj), TYPE_IB700)
40
f309270b 41typedef struct IB700state {
61e477f4
AF
42 ISADevice parent_obj;
43
e8f27c72 44 QEMUTimer *timer;
848696bf
KB
45
46 PortioList port_list;
f309270b
JQ
47} IB700State;
48
9dd986cc
RJ
49/* This is the timer. We use a global here because the watchdog
50 * code ensures there is only one watchdog (it is located at a fixed,
66a0a2cb 51 * unchangeable IO port, so there could only ever be one anyway).
9dd986cc 52 */
9dd986cc
RJ
53
54/* A write to this register enables the timer. */
55static void ib700_write_enable_reg(void *vp, uint32_t addr, uint32_t data)
56{
e8f27c72 57 IB700State *s = vp;
9dd986cc
RJ
58 static int time_map[] = {
59 30, 28, 26, 24, 22, 20, 18, 16,
60 14, 12, 10, 8, 6, 4, 2, 0
61 };
c910cf96 62 int64_t timeout;
9dd986cc
RJ
63
64 ib700_debug("addr = %x, data = %x\n", addr, data);
65
73bcb24d 66 timeout = (int64_t) time_map[data & 0xF] * NANOSECONDS_PER_SECOND;
bc72ad67 67 timer_mod(s->timer, qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL) + timeout);
9dd986cc
RJ
68}
69
70/* A write (of any value) to this register disables the timer. */
71static void ib700_write_disable_reg(void *vp, uint32_t addr, uint32_t data)
72{
e8f27c72
JQ
73 IB700State *s = vp;
74
9dd986cc
RJ
75 ib700_debug("addr = %x, data = %x\n", addr, data);
76
bc72ad67 77 timer_del(s->timer);
9dd986cc
RJ
78}
79
80/* This is called when the watchdog expires. */
81static void ib700_timer_expired(void *vp)
82{
e8f27c72
JQ
83 IB700State *s = vp;
84
9dd986cc
RJ
85 ib700_debug("watchdog expired\n");
86
87 watchdog_perform_action();
bc72ad67 88 timer_del(s->timer);
9dd986cc
RJ
89}
90
9958068d
JQ
91static const VMStateDescription vmstate_ib700 = {
92 .name = "ib700_wdt",
93 .version_id = 0,
94 .minimum_version_id = 0,
d49805ae 95 .fields = (VMStateField[]) {
e720677e 96 VMSTATE_TIMER_PTR(timer, IB700State),
9958068d
JQ
97 VMSTATE_END_OF_LIST()
98 }
99};
9dd986cc 100
0c6c4e28
JK
101static const MemoryRegionPortio wdt_portio_list[] = {
102 { 0x441, 2, 1, .write = ib700_write_disable_reg, },
103 { 0x443, 2, 1, .write = ib700_write_enable_reg, },
104 PORTIO_END_OF_LIST(),
105};
106
db895a1e 107static void wdt_ib700_realize(DeviceState *dev, Error **errp)
9dd986cc 108{
61e477f4 109 IB700State *s = IB700(dev);
f309270b 110
36888c63
RJ
111 ib700_debug("watchdog init\n");
112
bc72ad67 113 s->timer = timer_new_ns(QEMU_CLOCK_VIRTUAL, ib700_timer_expired, s);
0c6c4e28 114
848696bf
KB
115 portio_list_init(&s->port_list, OBJECT(s), wdt_portio_list, s, "ib700");
116 portio_list_add(&s->port_list, isa_address_space_io(&s->parent_obj), 0);
9dd986cc
RJ
117}
118
36888c63
RJ
119static void wdt_ib700_reset(DeviceState *dev)
120{
61e477f4 121 IB700State *s = IB700(dev);
36888c63
RJ
122
123 ib700_debug("watchdog reset\n");
124
bc72ad67 125 timer_del(s->timer);
36888c63
RJ
126}
127
9dd986cc
RJ
128static WatchdogTimerModel model = {
129 .wdt_name = "ib700",
130 .wdt_description = "iBASE 700",
9dd986cc
RJ
131};
132
8f04ee08
AL
133static void wdt_ib700_class_init(ObjectClass *klass, void *data)
134{
39bffca2 135 DeviceClass *dc = DEVICE_CLASS(klass);
db895a1e
AF
136
137 dc->realize = wdt_ib700_realize;
39bffca2
AL
138 dc->reset = wdt_ib700_reset;
139 dc->vmsd = &vmstate_ib700;
125ee0ed 140 set_bit(DEVICE_CATEGORY_MISC, dc->categories);
8f04ee08
AL
141}
142
8c43a6f0 143static const TypeInfo wdt_ib700_info = {
61e477f4 144 .name = TYPE_IB700,
39bffca2
AL
145 .parent = TYPE_ISA_DEVICE,
146 .instance_size = sizeof(IB700State),
147 .class_init = wdt_ib700_class_init,
09aaa160
MA
148};
149
83f7d43a 150static void wdt_ib700_register_types(void)
9dd986cc
RJ
151{
152 watchdog_add_model(&model);
39bffca2 153 type_register_static(&wdt_ib700_info);
9dd986cc 154}
09aaa160 155
83f7d43a 156type_init(wdt_ib700_register_types)