]>
Commit | Line | Data |
---|---|---|
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 |
10 | typedef struct Property Property; |
11 | ||
12 | typedef struct PropertyInfo PropertyInfo; | |
aae9460e | 13 | |
b6b61144 GH |
14 | typedef struct CompatProperty CompatProperty; |
15 | ||
ee6847d1 | 16 | typedef struct DeviceInfo DeviceInfo; |
aae9460e | 17 | |
02e2da45 | 18 | typedef struct BusState BusState; |
4d6ae674 | 19 | |
10c4c98a GH |
20 | typedef struct BusInfo BusInfo; |
21 | ||
131ec1bd GH |
22 | enum 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 | 29 | struct 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; |
72cf2d4f | 42 | QLIST_ENTRY(DeviceState) sibling; |
02e2da45 PB |
43 | }; |
44 | ||
10c4c98a GH |
45 | typedef void (*bus_dev_printfn)(Monitor *mon, DeviceState *dev, int indent); |
46 | struct BusInfo { | |
47 | const char *name; | |
48 | size_t size; | |
49 | bus_dev_printfn print_dev; | |
ee6847d1 | 50 | Property *props; |
10c4c98a | 51 | }; |
02e2da45 PB |
52 | |
53 | struct 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 |
63 | struct Property { |
64 | const char *name; | |
65 | PropertyInfo *info; | |
66 | int offset; | |
d2364ee4 | 67 | int bitnr; |
ee6847d1 GH |
68 | void *defval; |
69 | }; | |
70 | ||
71 | enum 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, |
851bec09 | 84 | PROP_TYPE_VLAN, |
ee6847d1 | 85 | PROP_TYPE_PTR, |
d2364ee4 | 86 | PROP_TYPE_BIT, |
ee6847d1 GH |
87 | }; |
88 | ||
89 | struct PropertyInfo { | |
90 | const char *name; | |
91 | size_t size; | |
92 | enum PropertyType type; | |
93 | int (*parse)(DeviceState *dev, Property *prop, const char *str); | |
94 | int (*print)(DeviceState *dev, Property *prop, char *dest, size_t len); | |
95 | }; | |
96 | ||
458fb679 | 97 | typedef struct GlobalProperty { |
b6b61144 GH |
98 | const char *driver; |
99 | const char *property; | |
100 | const char *value; | |
458fb679 GH |
101 | QTAILQ_ENTRY(GlobalProperty) next; |
102 | } GlobalProperty; | |
b6b61144 | 103 | |
aae9460e PB |
104 | /*** Board API. This should go away once we have a machine config file. ***/ |
105 | ||
02e2da45 | 106 | DeviceState *qdev_create(BusState *bus, const char *name); |
ff952ba2 | 107 | int qdev_device_help(QemuOpts *opts); |
f31d07d1 | 108 | DeviceState *qdev_device_add(QemuOpts *opts); |
747bbdf7 | 109 | int qdev_init(DeviceState *dev) QEMU_WARN_UNUSED_RESULT; |
e23a1b33 | 110 | void qdev_init_nofail(DeviceState *dev); |
3418bd25 | 111 | int qdev_unplug(DeviceState *dev); |
02e2da45 | 112 | void qdev_free(DeviceState *dev); |
3418bd25 GH |
113 | int qdev_simple_unplug_cb(DeviceState *dev); |
114 | void qdev_machine_creation_done(void); | |
aae9460e | 115 | |
aae9460e PB |
116 | qemu_irq qdev_get_gpio_in(DeviceState *dev, int n); |
117 | void qdev_connect_gpio_out(DeviceState *dev, int n, qemu_irq pin); | |
118 | ||
02e2da45 | 119 | BusState *qdev_get_child_bus(DeviceState *dev, const char *name); |
4d6ae674 | 120 | |
aae9460e PB |
121 | /*** Device API. ***/ |
122 | ||
81a322d4 | 123 | typedef int (*qdev_initfn)(DeviceState *dev, DeviceInfo *info); |
3418bd25 | 124 | typedef int (*qdev_event)(DeviceState *dev); |
7f23f812 | 125 | typedef void (*qdev_resetfn)(DeviceState *dev); |
aae9460e | 126 | |
02e2da45 | 127 | struct DeviceInfo { |
074f2fff | 128 | const char *name; |
3320e56e GH |
129 | const char *alias; |
130 | const char *desc; | |
074f2fff | 131 | size_t size; |
ee6847d1 | 132 | Property *props; |
3320e56e | 133 | int no_user; |
074f2fff | 134 | |
959f733a | 135 | /* callbacks */ |
7f23f812 | 136 | qdev_resetfn reset; |
959f733a | 137 | |
391a079e GH |
138 | /* device state */ |
139 | const VMStateDescription *vmsd; | |
140 | ||
074f2fff | 141 | /* Private to qdev / bus. */ |
02e2da45 | 142 | qdev_initfn init; |
3418bd25 GH |
143 | qdev_event unplug; |
144 | qdev_event exit; | |
10c4c98a | 145 | BusInfo *bus_info; |
042f84d0 | 146 | struct DeviceInfo *next; |
02e2da45 | 147 | }; |
0958b4cc | 148 | extern DeviceInfo *device_info_list; |
02e2da45 | 149 | |
074f2fff | 150 | void qdev_register(DeviceInfo *info); |
aae9460e PB |
151 | |
152 | /* Register device properties. */ | |
067a3ddc | 153 | /* GPIO inputs also double as IRQ sinks. */ |
aae9460e PB |
154 | void qdev_init_gpio_in(DeviceState *dev, qemu_irq_handler handler, int n); |
155 | void qdev_init_gpio_out(DeviceState *dev, qemu_irq *pins, int n); | |
156 | ||
157 | CharDriverState *qdev_init_chardev(DeviceState *dev); | |
158 | ||
02e2da45 | 159 | BusState *qdev_get_parent_bus(DeviceState *dev); |
aae9460e | 160 | |
02e2da45 PB |
161 | /*** BUS API. ***/ |
162 | ||
cd739fb6 GH |
163 | void qbus_create_inplace(BusState *bus, BusInfo *info, |
164 | DeviceState *parent, const char *name); | |
10c4c98a | 165 | BusState *qbus_create(BusInfo *info, DeviceState *parent, const char *name); |
131ec1bd | 166 | void 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 | ||
172 | void do_info_qtree(Monitor *mon); | |
f6c64e0e | 173 | void do_info_qdm(Monitor *mon); |
3418bd25 GH |
174 | void do_device_add(Monitor *mon, const QDict *qdict); |
175 | void do_device_del(Monitor *mon, const QDict *qdict); | |
cae4956e | 176 | |
ee6847d1 GH |
177 | /*** qdev-properties.c ***/ |
178 | ||
d2364ee4 | 179 | extern PropertyInfo qdev_prop_bit; |
c7cc172d | 180 | extern PropertyInfo qdev_prop_uint8; |
ee6847d1 GH |
181 | extern PropertyInfo qdev_prop_uint16; |
182 | extern PropertyInfo qdev_prop_uint32; | |
316940b0 | 183 | extern PropertyInfo qdev_prop_int32; |
5a053d1f | 184 | extern PropertyInfo qdev_prop_uint64; |
ee6847d1 | 185 | extern PropertyInfo qdev_prop_hex32; |
5a053d1f | 186 | extern PropertyInfo qdev_prop_hex64; |
59419663 | 187 | extern PropertyInfo qdev_prop_string; |
313feaab | 188 | extern PropertyInfo qdev_prop_chr; |
ee6847d1 GH |
189 | extern PropertyInfo qdev_prop_ptr; |
190 | extern PropertyInfo qdev_prop_macaddr; | |
14b41872 | 191 | extern PropertyInfo qdev_prop_drive; |
851bec09 GH |
192 | extern PropertyInfo qdev_prop_netdev; |
193 | extern PropertyInfo qdev_prop_vlan; | |
05cb5fe4 | 194 | extern PropertyInfo qdev_prop_pci_devfn; |
ee6847d1 | 195 | |
cf12b95b GH |
196 | #define DEFINE_PROP(_name, _state, _field, _prop, _type) { \ |
197 | .name = (_name), \ | |
198 | .info = &(_prop), \ | |
199 | .offset = offsetof(_state, _field) \ | |
200 | + type_check(_type,typeof_field(_state, _field)), \ | |
201 | } | |
202 | #define DEFINE_PROP_DEFAULT(_name, _state, _field, _defval, _prop, _type) { \ | |
203 | .name = (_name), \ | |
204 | .info = &(_prop), \ | |
205 | .offset = offsetof(_state, _field) \ | |
206 | + type_check(_type,typeof_field(_state, _field)), \ | |
207 | .defval = (_type[]) { _defval }, \ | |
208 | } | |
d2364ee4 MT |
209 | #define DEFINE_PROP_BIT(_name, _state, _field, _bit, _defval) { \ |
210 | .name = (_name), \ | |
211 | .info = &(qdev_prop_bit), \ | |
212 | .bitnr = (_bit), \ | |
213 | .offset = offsetof(_state, _field) \ | |
214 | + type_check(uint32_t,typeof_field(_state, _field)), \ | |
215 | .defval = (bool[]) { (_defval) }, \ | |
216 | } | |
cf12b95b | 217 | |
c7cc172d JQ |
218 | #define DEFINE_PROP_UINT8(_n, _s, _f, _d) \ |
219 | DEFINE_PROP_DEFAULT(_n, _s, _f, _d, qdev_prop_uint8, uint8_t) | |
cf12b95b GH |
220 | #define DEFINE_PROP_UINT16(_n, _s, _f, _d) \ |
221 | DEFINE_PROP_DEFAULT(_n, _s, _f, _d, qdev_prop_uint16, uint16_t) | |
222 | #define DEFINE_PROP_UINT32(_n, _s, _f, _d) \ | |
223 | DEFINE_PROP_DEFAULT(_n, _s, _f, _d, qdev_prop_uint32, uint32_t) | |
316940b0 GH |
224 | #define DEFINE_PROP_INT32(_n, _s, _f, _d) \ |
225 | DEFINE_PROP_DEFAULT(_n, _s, _f, _d, qdev_prop_int32, int32_t) | |
cf12b95b GH |
226 | #define DEFINE_PROP_UINT64(_n, _s, _f, _d) \ |
227 | DEFINE_PROP_DEFAULT(_n, _s, _f, _d, qdev_prop_uint64, uint64_t) | |
228 | #define DEFINE_PROP_HEX32(_n, _s, _f, _d) \ | |
229 | DEFINE_PROP_DEFAULT(_n, _s, _f, _d, qdev_prop_hex32, uint32_t) | |
230 | #define DEFINE_PROP_HEX64(_n, _s, _f, _d) \ | |
231 | DEFINE_PROP_DEFAULT(_n, _s, _f, _d, qdev_prop_hex64, uint64_t) | |
232 | #define DEFINE_PROP_PCI_DEVFN(_n, _s, _f, _d) \ | |
233 | DEFINE_PROP_DEFAULT(_n, _s, _f, _d, qdev_prop_pci_devfn, uint32_t) | |
234 | ||
235 | #define DEFINE_PROP_PTR(_n, _s, _f) \ | |
236 | DEFINE_PROP(_n, _s, _f, qdev_prop_ptr, void*) | |
313feaab GH |
237 | #define DEFINE_PROP_CHR(_n, _s, _f) \ |
238 | DEFINE_PROP(_n, _s, _f, qdev_prop_chr, CharDriverState*) | |
59419663 GH |
239 | #define DEFINE_PROP_STRING(_n, _s, _f) \ |
240 | DEFINE_PROP(_n, _s, _f, qdev_prop_string, char*) | |
2ef924b4 GH |
241 | #define DEFINE_PROP_NETDEV(_n, _s, _f) \ |
242 | DEFINE_PROP(_n, _s, _f, qdev_prop_netdev, VLANClientState*) | |
851bec09 GH |
243 | #define DEFINE_PROP_VLAN(_n, _s, _f) \ |
244 | DEFINE_PROP(_n, _s, _f, qdev_prop_vlan, VLANState*) | |
f6c64e0e | 245 | #define DEFINE_PROP_DRIVE(_n, _s, _f) \ |
c981d39c | 246 | DEFINE_PROP(_n, _s, _f, qdev_prop_drive, DriveInfo*) |
cf12b95b | 247 | #define DEFINE_PROP_MACADDR(_n, _s, _f) \ |
1503fff3 | 248 | DEFINE_PROP(_n, _s, _f, qdev_prop_macaddr, MACAddr) |
cf12b95b GH |
249 | |
250 | #define DEFINE_PROP_END_OF_LIST() \ | |
251 | {} | |
252 | ||
ee6847d1 GH |
253 | /* Set properties between creation and init. */ |
254 | void *qdev_get_prop_ptr(DeviceState *dev, Property *prop); | |
d8ed79ae | 255 | int qdev_prop_exists(DeviceState *dev, const char *name); |
ee6847d1 GH |
256 | int qdev_prop_parse(DeviceState *dev, const char *name, const char *value); |
257 | void qdev_prop_set(DeviceState *dev, const char *name, void *src, enum PropertyType type); | |
c7cc172d | 258 | void qdev_prop_set_uint8(DeviceState *dev, const char *name, uint8_t value); |
ee6847d1 GH |
259 | void qdev_prop_set_uint16(DeviceState *dev, const char *name, uint16_t value); |
260 | void qdev_prop_set_uint32(DeviceState *dev, const char *name, uint32_t value); | |
316940b0 | 261 | void qdev_prop_set_int32(DeviceState *dev, const char *name, int32_t value); |
5a053d1f | 262 | void qdev_prop_set_uint64(DeviceState *dev, const char *name, uint64_t value); |
313feaab | 263 | void qdev_prop_set_chr(DeviceState *dev, const char *name, CharDriverState *value); |
2ef924b4 | 264 | void qdev_prop_set_netdev(DeviceState *dev, const char *name, VLANClientState *value); |
851bec09 | 265 | void qdev_prop_set_vlan(DeviceState *dev, const char *name, VLANState *value); |
14b41872 | 266 | void qdev_prop_set_drive(DeviceState *dev, const char *name, DriveInfo *value); |
1503fff3 | 267 | void qdev_prop_set_macaddr(DeviceState *dev, const char *name, uint8_t *value); |
ee6847d1 GH |
268 | /* FIXME: Remove opaque pointer properties. */ |
269 | void qdev_prop_set_ptr(DeviceState *dev, const char *name, void *value); | |
270 | void qdev_prop_set_defaults(DeviceState *dev, Property *props); | |
271 | ||
458fb679 GH |
272 | void qdev_prop_register_global(GlobalProperty *prop); |
273 | void qdev_prop_register_global_list(GlobalProperty *props); | |
274 | void qdev_prop_set_globals(DeviceState *dev); | |
b6b61144 | 275 | |
a9ff9df1 BS |
276 | /* This is a nasty hack to allow passing a NULL bus to qdev_create. */ |
277 | extern struct BusInfo system_bus_info; | |
278 | ||
aae9460e | 279 | #endif |