]> Git Repo - qemu.git/blame_incremental - hw/qdev.h
lsi: Properly initialize controller state on reset
[qemu.git] / hw / qdev.h
... / ...
CommitLineData
1#ifndef QDEV_H
2#define QDEV_H
3
4#include "hw.h"
5#include "sysemu.h"
6#include "qemu-queue.h"
7#include "qemu-char.h"
8#include "qemu-option.h"
9
10typedef struct Property Property;
11
12typedef struct PropertyInfo PropertyInfo;
13
14typedef struct CompatProperty CompatProperty;
15
16typedef struct DeviceInfo DeviceInfo;
17
18typedef struct BusState BusState;
19
20typedef struct BusInfo BusInfo;
21
22enum DevState {
23 DEV_STATE_CREATED = 1,
24 DEV_STATE_INITIALIZED,
25};
26
27enum {
28 DEV_NVECTORS_UNSPECIFIED = -1,
29};
30
31/* This structure should not be accessed directly. We declare it here
32 so that it can be embedded in individual device state structures. */
33struct DeviceState {
34 const char *id;
35 enum DevState state;
36 QemuOpts *opts;
37 int hotplugged;
38 DeviceInfo *info;
39 BusState *parent_bus;
40 int num_gpio_out;
41 qemu_irq *gpio_out;
42 int num_gpio_in;
43 qemu_irq *gpio_in;
44 QLIST_HEAD(, BusState) child_bus;
45 int num_child_bus;
46 QLIST_ENTRY(DeviceState) sibling;
47};
48
49typedef void (*bus_dev_printfn)(Monitor *mon, DeviceState *dev, int indent);
50struct BusInfo {
51 const char *name;
52 size_t size;
53 bus_dev_printfn print_dev;
54 Property *props;
55};
56
57struct BusState {
58 DeviceState *parent;
59 BusInfo *info;
60 const char *name;
61 int allow_hotplug;
62 int qdev_allocated;
63 QLIST_HEAD(, DeviceState) children;
64 QLIST_ENTRY(BusState) sibling;
65};
66
67struct Property {
68 const char *name;
69 PropertyInfo *info;
70 int offset;
71 int bitnr;
72 void *defval;
73};
74
75enum PropertyType {
76 PROP_TYPE_UNSPEC = 0,
77 PROP_TYPE_UINT8,
78 PROP_TYPE_UINT16,
79 PROP_TYPE_UINT32,
80 PROP_TYPE_INT32,
81 PROP_TYPE_UINT64,
82 PROP_TYPE_TADDR,
83 PROP_TYPE_MACADDR,
84 PROP_TYPE_DRIVE,
85 PROP_TYPE_CHR,
86 PROP_TYPE_STRING,
87 PROP_TYPE_NETDEV,
88 PROP_TYPE_VLAN,
89 PROP_TYPE_PTR,
90 PROP_TYPE_BIT,
91};
92
93struct PropertyInfo {
94 const char *name;
95 size_t size;
96 enum PropertyType type;
97 int (*parse)(DeviceState *dev, Property *prop, const char *str);
98 int (*print)(DeviceState *dev, Property *prop, char *dest, size_t len);
99};
100
101typedef struct GlobalProperty {
102 const char *driver;
103 const char *property;
104 const char *value;
105 QTAILQ_ENTRY(GlobalProperty) next;
106} GlobalProperty;
107
108/*** Board API. This should go away once we have a machine config file. ***/
109
110DeviceState *qdev_create(BusState *bus, const char *name);
111int qdev_device_help(QemuOpts *opts);
112DeviceState *qdev_device_add(QemuOpts *opts);
113int qdev_init(DeviceState *dev) QEMU_WARN_UNUSED_RESULT;
114void qdev_init_nofail(DeviceState *dev);
115int qdev_unplug(DeviceState *dev);
116void qdev_free(DeviceState *dev);
117int qdev_simple_unplug_cb(DeviceState *dev);
118void qdev_machine_creation_done(void);
119
120qemu_irq qdev_get_gpio_in(DeviceState *dev, int n);
121void qdev_connect_gpio_out(DeviceState *dev, int n, qemu_irq pin);
122
123BusState *qdev_get_child_bus(DeviceState *dev, const char *name);
124
125/*** Device API. ***/
126
127typedef int (*qdev_initfn)(DeviceState *dev, DeviceInfo *info);
128typedef int (*qdev_event)(DeviceState *dev);
129typedef void (*qdev_resetfn)(DeviceState *dev);
130
131struct DeviceInfo {
132 const char *name;
133 const char *alias;
134 const char *desc;
135 size_t size;
136 Property *props;
137 int no_user;
138
139 /* callbacks */
140 qdev_resetfn reset;
141
142 /* device state */
143 const VMStateDescription *vmsd;
144
145 /* Private to qdev / bus. */
146 qdev_initfn init;
147 qdev_event unplug;
148 qdev_event exit;
149 BusInfo *bus_info;
150 struct DeviceInfo *next;
151};
152extern DeviceInfo *device_info_list;
153
154void qdev_register(DeviceInfo *info);
155
156/* Register device properties. */
157/* GPIO inputs also double as IRQ sinks. */
158void qdev_init_gpio_in(DeviceState *dev, qemu_irq_handler handler, int n);
159void qdev_init_gpio_out(DeviceState *dev, qemu_irq *pins, int n);
160
161CharDriverState *qdev_init_chardev(DeviceState *dev);
162
163BusState *qdev_get_parent_bus(DeviceState *dev);
164
165/*** BUS API. ***/
166
167void qbus_create_inplace(BusState *bus, BusInfo *info,
168 DeviceState *parent, const char *name);
169BusState *qbus_create(BusInfo *info, DeviceState *parent, const char *name);
170void qbus_free(BusState *bus);
171
172#define FROM_QBUS(type, dev) DO_UPCAST(type, qbus, dev)
173
174/*** monitor commands ***/
175
176void do_info_qtree(Monitor *mon);
177void do_info_qdm(Monitor *mon);
178int do_device_add(Monitor *mon, const QDict *qdict, QObject **ret_data);
179int do_device_del(Monitor *mon, const QDict *qdict, QObject **ret_data);
180
181/*** qdev-properties.c ***/
182
183extern PropertyInfo qdev_prop_bit;
184extern PropertyInfo qdev_prop_uint8;
185extern PropertyInfo qdev_prop_uint16;
186extern PropertyInfo qdev_prop_uint32;
187extern PropertyInfo qdev_prop_int32;
188extern PropertyInfo qdev_prop_uint64;
189extern PropertyInfo qdev_prop_hex32;
190extern PropertyInfo qdev_prop_hex64;
191extern PropertyInfo qdev_prop_string;
192extern PropertyInfo qdev_prop_chr;
193extern PropertyInfo qdev_prop_ptr;
194extern PropertyInfo qdev_prop_macaddr;
195extern PropertyInfo qdev_prop_drive;
196extern PropertyInfo qdev_prop_netdev;
197extern PropertyInfo qdev_prop_vlan;
198extern PropertyInfo qdev_prop_pci_devfn;
199
200#define DEFINE_PROP(_name, _state, _field, _prop, _type) { \
201 .name = (_name), \
202 .info = &(_prop), \
203 .offset = offsetof(_state, _field) \
204 + type_check(_type,typeof_field(_state, _field)), \
205 }
206#define DEFINE_PROP_DEFAULT(_name, _state, _field, _defval, _prop, _type) { \
207 .name = (_name), \
208 .info = &(_prop), \
209 .offset = offsetof(_state, _field) \
210 + type_check(_type,typeof_field(_state, _field)), \
211 .defval = (_type[]) { _defval }, \
212 }
213#define DEFINE_PROP_BIT(_name, _state, _field, _bit, _defval) { \
214 .name = (_name), \
215 .info = &(qdev_prop_bit), \
216 .bitnr = (_bit), \
217 .offset = offsetof(_state, _field) \
218 + type_check(uint32_t,typeof_field(_state, _field)), \
219 .defval = (bool[]) { (_defval) }, \
220 }
221
222#define DEFINE_PROP_UINT8(_n, _s, _f, _d) \
223 DEFINE_PROP_DEFAULT(_n, _s, _f, _d, qdev_prop_uint8, uint8_t)
224#define DEFINE_PROP_UINT16(_n, _s, _f, _d) \
225 DEFINE_PROP_DEFAULT(_n, _s, _f, _d, qdev_prop_uint16, uint16_t)
226#define DEFINE_PROP_UINT32(_n, _s, _f, _d) \
227 DEFINE_PROP_DEFAULT(_n, _s, _f, _d, qdev_prop_uint32, uint32_t)
228#define DEFINE_PROP_INT32(_n, _s, _f, _d) \
229 DEFINE_PROP_DEFAULT(_n, _s, _f, _d, qdev_prop_int32, int32_t)
230#define DEFINE_PROP_UINT64(_n, _s, _f, _d) \
231 DEFINE_PROP_DEFAULT(_n, _s, _f, _d, qdev_prop_uint64, uint64_t)
232#define DEFINE_PROP_HEX32(_n, _s, _f, _d) \
233 DEFINE_PROP_DEFAULT(_n, _s, _f, _d, qdev_prop_hex32, uint32_t)
234#define DEFINE_PROP_HEX64(_n, _s, _f, _d) \
235 DEFINE_PROP_DEFAULT(_n, _s, _f, _d, qdev_prop_hex64, uint64_t)
236#define DEFINE_PROP_PCI_DEVFN(_n, _s, _f, _d) \
237 DEFINE_PROP_DEFAULT(_n, _s, _f, _d, qdev_prop_pci_devfn, uint32_t)
238
239#define DEFINE_PROP_PTR(_n, _s, _f) \
240 DEFINE_PROP(_n, _s, _f, qdev_prop_ptr, void*)
241#define DEFINE_PROP_CHR(_n, _s, _f) \
242 DEFINE_PROP(_n, _s, _f, qdev_prop_chr, CharDriverState*)
243#define DEFINE_PROP_STRING(_n, _s, _f) \
244 DEFINE_PROP(_n, _s, _f, qdev_prop_string, char*)
245#define DEFINE_PROP_NETDEV(_n, _s, _f) \
246 DEFINE_PROP(_n, _s, _f, qdev_prop_netdev, VLANClientState*)
247#define DEFINE_PROP_VLAN(_n, _s, _f) \
248 DEFINE_PROP(_n, _s, _f, qdev_prop_vlan, VLANState*)
249#define DEFINE_PROP_DRIVE(_n, _s, _f) \
250 DEFINE_PROP(_n, _s, _f, qdev_prop_drive, DriveInfo*)
251#define DEFINE_PROP_MACADDR(_n, _s, _f) \
252 DEFINE_PROP(_n, _s, _f, qdev_prop_macaddr, MACAddr)
253
254#define DEFINE_PROP_END_OF_LIST() \
255 {}
256
257/* Set properties between creation and init. */
258void *qdev_get_prop_ptr(DeviceState *dev, Property *prop);
259int qdev_prop_exists(DeviceState *dev, const char *name);
260int qdev_prop_parse(DeviceState *dev, const char *name, const char *value);
261void qdev_prop_set(DeviceState *dev, const char *name, void *src, enum PropertyType type);
262void qdev_prop_set_uint8(DeviceState *dev, const char *name, uint8_t value);
263void qdev_prop_set_uint16(DeviceState *dev, const char *name, uint16_t value);
264void qdev_prop_set_uint32(DeviceState *dev, const char *name, uint32_t value);
265void qdev_prop_set_int32(DeviceState *dev, const char *name, int32_t value);
266void qdev_prop_set_uint64(DeviceState *dev, const char *name, uint64_t value);
267void qdev_prop_set_chr(DeviceState *dev, const char *name, CharDriverState *value);
268void qdev_prop_set_netdev(DeviceState *dev, const char *name, VLANClientState *value);
269void qdev_prop_set_vlan(DeviceState *dev, const char *name, VLANState *value);
270void qdev_prop_set_drive(DeviceState *dev, const char *name, DriveInfo *value);
271void qdev_prop_set_macaddr(DeviceState *dev, const char *name, uint8_t *value);
272/* FIXME: Remove opaque pointer properties. */
273void qdev_prop_set_ptr(DeviceState *dev, const char *name, void *value);
274void qdev_prop_set_defaults(DeviceState *dev, Property *props);
275
276void qdev_prop_register_global_list(GlobalProperty *props);
277void qdev_prop_set_globals(DeviceState *dev);
278
279/* This is a nasty hack to allow passing a NULL bus to qdev_create. */
280extern struct BusInfo system_bus_info;
281
282#endif
This page took 0.024927 seconds and 4 git commands to generate.