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