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