]>
Commit | Line | Data |
---|---|---|
aae9460e PB |
1 | #ifndef QDEV_H |
2 | #define QDEV_H | |
3 | ||
4 | #include "hw.h" | |
72cf2d4f | 5 | #include "qemu-queue.h" |
313feaab | 6 | #include "qemu-char.h" |
f31d07d1 | 7 | #include "qemu-option.h" |
aae9460e | 8 | |
ee6847d1 GH |
9 | typedef struct Property Property; |
10 | ||
11 | typedef struct PropertyInfo PropertyInfo; | |
aae9460e | 12 | |
b6b61144 GH |
13 | typedef struct CompatProperty CompatProperty; |
14 | ||
ee6847d1 | 15 | typedef struct DeviceInfo DeviceInfo; |
aae9460e | 16 | |
02e2da45 | 17 | typedef struct BusState BusState; |
4d6ae674 | 18 | |
10c4c98a GH |
19 | typedef struct BusInfo BusInfo; |
20 | ||
131ec1bd GH |
21 | enum DevState { |
22 | DEV_STATE_CREATED = 1, | |
23 | DEV_STATE_INITIALIZED, | |
24 | }; | |
25 | ||
75422b0d AS |
26 | enum { |
27 | DEV_NVECTORS_UNSPECIFIED = -1, | |
28 | }; | |
29 | ||
aae9460e PB |
30 | /* This structure should not be accessed directly. We declare it here |
31 | so that it can be embedded in individual device state structures. */ | |
02e2da45 | 32 | struct DeviceState { |
f31d07d1 | 33 | const char *id; |
131ec1bd | 34 | enum DevState state; |
ef80b466 | 35 | QemuOpts *opts; |
3418bd25 | 36 | int hotplugged; |
042f84d0 | 37 | DeviceInfo *info; |
02e2da45 | 38 | BusState *parent_bus; |
aae9460e PB |
39 | int num_gpio_out; |
40 | qemu_irq *gpio_out; | |
41 | int num_gpio_in; | |
42 | qemu_irq *gpio_in; | |
72cf2d4f | 43 | QLIST_HEAD(, BusState) child_bus; |
d271de9f | 44 | int num_child_bus; |
d8bb00d6 | 45 | QTAILQ_ENTRY(DeviceState) sibling; |
4d2ffa08 JK |
46 | int instance_id_alias; |
47 | int alias_required_for_version; | |
02e2da45 PB |
48 | }; |
49 | ||
10c4c98a | 50 | typedef void (*bus_dev_printfn)(Monitor *mon, DeviceState *dev, int indent); |
6772b936 | 51 | typedef char *(*bus_get_dev_path)(DeviceState *dev); |
21150814 GN |
52 | /* |
53 | * This callback is used to create Open Firmware device path in accordance with | |
54 | * OF spec http://forthworks.com/standards/of1275.pdf. Indicidual bus bindings | |
55 | * can be found here http://playground.sun.com/1275/bindings/. | |
56 | */ | |
57 | typedef char *(*bus_get_fw_dev_path)(DeviceState *dev); | |
b4694b7c | 58 | typedef int (qbus_resetfn)(BusState *bus); |
6772b936 | 59 | |
10c4c98a GH |
60 | struct BusInfo { |
61 | const char *name; | |
62 | size_t size; | |
63 | bus_dev_printfn print_dev; | |
6772b936 | 64 | bus_get_dev_path get_dev_path; |
21150814 | 65 | bus_get_fw_dev_path get_fw_dev_path; |
b4694b7c | 66 | qbus_resetfn *reset; |
ee6847d1 | 67 | Property *props; |
10c4c98a | 68 | }; |
02e2da45 PB |
69 | |
70 | struct BusState { | |
71 | DeviceState *parent; | |
10c4c98a | 72 | BusInfo *info; |
02e2da45 | 73 | const char *name; |
3418bd25 | 74 | int allow_hotplug; |
cd739fb6 | 75 | int qdev_allocated; |
f48a7a6e | 76 | QTAILQ_HEAD(ChildrenHead, DeviceState) children; |
72cf2d4f | 77 | QLIST_ENTRY(BusState) sibling; |
aae9460e PB |
78 | }; |
79 | ||
ee6847d1 GH |
80 | struct Property { |
81 | const char *name; | |
82 | PropertyInfo *info; | |
83 | int offset; | |
d2364ee4 | 84 | int bitnr; |
ee6847d1 GH |
85 | void *defval; |
86 | }; | |
87 | ||
88 | enum PropertyType { | |
89 | PROP_TYPE_UNSPEC = 0, | |
c7cc172d | 90 | PROP_TYPE_UINT8, |
ee6847d1 GH |
91 | PROP_TYPE_UINT16, |
92 | PROP_TYPE_UINT32, | |
316940b0 | 93 | PROP_TYPE_INT32, |
5a053d1f | 94 | PROP_TYPE_UINT64, |
ee6847d1 GH |
95 | PROP_TYPE_TADDR, |
96 | PROP_TYPE_MACADDR, | |
14b41872 | 97 | PROP_TYPE_DRIVE, |
313feaab | 98 | PROP_TYPE_CHR, |
59419663 | 99 | PROP_TYPE_STRING, |
2ef924b4 | 100 | PROP_TYPE_NETDEV, |
851bec09 | 101 | PROP_TYPE_VLAN, |
ee6847d1 | 102 | PROP_TYPE_PTR, |
d2364ee4 | 103 | PROP_TYPE_BIT, |
ee6847d1 GH |
104 | }; |
105 | ||
106 | struct PropertyInfo { | |
107 | const char *name; | |
108 | size_t size; | |
109 | enum PropertyType type; | |
110 | int (*parse)(DeviceState *dev, Property *prop, const char *str); | |
111 | int (*print)(DeviceState *dev, Property *prop, char *dest, size_t len); | |
d21357df | 112 | void (*free)(DeviceState *dev, Property *prop); |
ee6847d1 GH |
113 | }; |
114 | ||
458fb679 | 115 | typedef struct GlobalProperty { |
b6b61144 GH |
116 | const char *driver; |
117 | const char *property; | |
118 | const char *value; | |
458fb679 GH |
119 | QTAILQ_ENTRY(GlobalProperty) next; |
120 | } GlobalProperty; | |
b6b61144 | 121 | |
aae9460e PB |
122 | /*** Board API. This should go away once we have a machine config file. ***/ |
123 | ||
02e2da45 | 124 | DeviceState *qdev_create(BusState *bus, const char *name); |
0bcdeda7 | 125 | DeviceState *qdev_try_create(BusState *bus, const char *name); |
ff952ba2 | 126 | int qdev_device_help(QemuOpts *opts); |
f31d07d1 | 127 | DeviceState *qdev_device_add(QemuOpts *opts); |
747bbdf7 | 128 | int qdev_init(DeviceState *dev) QEMU_WARN_UNUSED_RESULT; |
e23a1b33 | 129 | void qdev_init_nofail(DeviceState *dev); |
4d2ffa08 JK |
130 | void qdev_set_legacy_instance_id(DeviceState *dev, int alias_id, |
131 | int required_for_version); | |
3418bd25 | 132 | int qdev_unplug(DeviceState *dev); |
02e2da45 | 133 | void qdev_free(DeviceState *dev); |
3418bd25 GH |
134 | int qdev_simple_unplug_cb(DeviceState *dev); |
135 | void qdev_machine_creation_done(void); | |
0ac8ef71 | 136 | bool qdev_machine_modified(void); |
aae9460e | 137 | |
aae9460e PB |
138 | qemu_irq qdev_get_gpio_in(DeviceState *dev, int n); |
139 | void qdev_connect_gpio_out(DeviceState *dev, int n, qemu_irq pin); | |
140 | ||
02e2da45 | 141 | BusState *qdev_get_child_bus(DeviceState *dev, const char *name); |
4d6ae674 | 142 | |
aae9460e PB |
143 | /*** Device API. ***/ |
144 | ||
81a322d4 | 145 | typedef int (*qdev_initfn)(DeviceState *dev, DeviceInfo *info); |
3418bd25 | 146 | typedef int (*qdev_event)(DeviceState *dev); |
7f23f812 | 147 | typedef void (*qdev_resetfn)(DeviceState *dev); |
aae9460e | 148 | |
02e2da45 | 149 | struct DeviceInfo { |
074f2fff | 150 | const char *name; |
779206de | 151 | const char *fw_name; |
3320e56e GH |
152 | const char *alias; |
153 | const char *desc; | |
074f2fff | 154 | size_t size; |
ee6847d1 | 155 | Property *props; |
3320e56e | 156 | int no_user; |
074f2fff | 157 | |
959f733a | 158 | /* callbacks */ |
7f23f812 | 159 | qdev_resetfn reset; |
959f733a | 160 | |
391a079e GH |
161 | /* device state */ |
162 | const VMStateDescription *vmsd; | |
163 | ||
074f2fff | 164 | /* Private to qdev / bus. */ |
02e2da45 | 165 | qdev_initfn init; |
3418bd25 GH |
166 | qdev_event unplug; |
167 | qdev_event exit; | |
10c4c98a | 168 | BusInfo *bus_info; |
042f84d0 | 169 | struct DeviceInfo *next; |
02e2da45 | 170 | }; |
0958b4cc | 171 | extern DeviceInfo *device_info_list; |
02e2da45 | 172 | |
074f2fff | 173 | void qdev_register(DeviceInfo *info); |
aae9460e PB |
174 | |
175 | /* Register device properties. */ | |
067a3ddc | 176 | /* GPIO inputs also double as IRQ sinks. */ |
aae9460e PB |
177 | void qdev_init_gpio_in(DeviceState *dev, qemu_irq_handler handler, int n); |
178 | void qdev_init_gpio_out(DeviceState *dev, qemu_irq *pins, int n); | |
179 | ||
180 | CharDriverState *qdev_init_chardev(DeviceState *dev); | |
181 | ||
02e2da45 | 182 | BusState *qdev_get_parent_bus(DeviceState *dev); |
aae9460e | 183 | |
02e2da45 PB |
184 | /*** BUS API. ***/ |
185 | ||
a2ee6b4f IY |
186 | DeviceState *qdev_find_recursive(BusState *bus, const char *id); |
187 | ||
81699d8a AL |
188 | /* Returns 0 to walk children, > 0 to skip walk, < 0 to terminate walk. */ |
189 | typedef int (qbus_walkerfn)(BusState *bus, void *opaque); | |
190 | typedef int (qdev_walkerfn)(DeviceState *dev, void *opaque); | |
191 | ||
cd739fb6 GH |
192 | void qbus_create_inplace(BusState *bus, BusInfo *info, |
193 | DeviceState *parent, const char *name); | |
10c4c98a | 194 | BusState *qbus_create(BusInfo *info, DeviceState *parent, const char *name); |
81699d8a AL |
195 | /* Returns > 0 if either devfn or busfn skip walk somewhere in cursion, |
196 | * < 0 if either devfn or busfn terminate walk somewhere in cursion, | |
197 | * 0 otherwise. */ | |
198 | int qbus_walk_children(BusState *bus, qdev_walkerfn *devfn, | |
199 | qbus_walkerfn *busfn, void *opaque); | |
200 | int qdev_walk_children(DeviceState *dev, qdev_walkerfn *devfn, | |
201 | qbus_walkerfn *busfn, void *opaque); | |
5af0a04b | 202 | void qdev_reset_all(DeviceState *dev); |
80376c3f IY |
203 | void qbus_reset_all_fn(void *opaque); |
204 | ||
131ec1bd | 205 | void qbus_free(BusState *bus); |
02e2da45 PB |
206 | |
207 | #define FROM_QBUS(type, dev) DO_UPCAST(type, qbus, dev) | |
208 | ||
ec990eb6 AL |
209 | /* This should go away once we get rid of the NULL bus hack */ |
210 | BusState *sysbus_get_default(void); | |
211 | ||
cae4956e GH |
212 | /*** monitor commands ***/ |
213 | ||
214 | void do_info_qtree(Monitor *mon); | |
f6c64e0e | 215 | void do_info_qdm(Monitor *mon); |
8bc27249 | 216 | int do_device_add(Monitor *mon, const QDict *qdict, QObject **ret_data); |
17a38eaa | 217 | int do_device_del(Monitor *mon, const QDict *qdict, QObject **ret_data); |
cae4956e | 218 | |
ee6847d1 GH |
219 | /*** qdev-properties.c ***/ |
220 | ||
d2364ee4 | 221 | extern PropertyInfo qdev_prop_bit; |
c7cc172d | 222 | extern PropertyInfo qdev_prop_uint8; |
ee6847d1 GH |
223 | extern PropertyInfo qdev_prop_uint16; |
224 | extern PropertyInfo qdev_prop_uint32; | |
316940b0 | 225 | extern PropertyInfo qdev_prop_int32; |
5a053d1f | 226 | extern PropertyInfo qdev_prop_uint64; |
6835678c | 227 | extern PropertyInfo qdev_prop_hex8; |
ee6847d1 | 228 | extern PropertyInfo qdev_prop_hex32; |
5a053d1f | 229 | extern PropertyInfo qdev_prop_hex64; |
59419663 | 230 | extern PropertyInfo qdev_prop_string; |
313feaab | 231 | extern PropertyInfo qdev_prop_chr; |
ee6847d1 GH |
232 | extern PropertyInfo qdev_prop_ptr; |
233 | extern PropertyInfo qdev_prop_macaddr; | |
14b41872 | 234 | extern PropertyInfo qdev_prop_drive; |
851bec09 GH |
235 | extern PropertyInfo qdev_prop_netdev; |
236 | extern PropertyInfo qdev_prop_vlan; | |
05cb5fe4 | 237 | extern PropertyInfo qdev_prop_pci_devfn; |
ee6847d1 | 238 | |
cf12b95b GH |
239 | #define DEFINE_PROP(_name, _state, _field, _prop, _type) { \ |
240 | .name = (_name), \ | |
241 | .info = &(_prop), \ | |
242 | .offset = offsetof(_state, _field) \ | |
243 | + type_check(_type,typeof_field(_state, _field)), \ | |
244 | } | |
245 | #define DEFINE_PROP_DEFAULT(_name, _state, _field, _defval, _prop, _type) { \ | |
246 | .name = (_name), \ | |
247 | .info = &(_prop), \ | |
248 | .offset = offsetof(_state, _field) \ | |
249 | + type_check(_type,typeof_field(_state, _field)), \ | |
250 | .defval = (_type[]) { _defval }, \ | |
251 | } | |
d2364ee4 MT |
252 | #define DEFINE_PROP_BIT(_name, _state, _field, _bit, _defval) { \ |
253 | .name = (_name), \ | |
254 | .info = &(qdev_prop_bit), \ | |
255 | .bitnr = (_bit), \ | |
256 | .offset = offsetof(_state, _field) \ | |
257 | + type_check(uint32_t,typeof_field(_state, _field)), \ | |
258 | .defval = (bool[]) { (_defval) }, \ | |
259 | } | |
cf12b95b | 260 | |
c7cc172d JQ |
261 | #define DEFINE_PROP_UINT8(_n, _s, _f, _d) \ |
262 | DEFINE_PROP_DEFAULT(_n, _s, _f, _d, qdev_prop_uint8, uint8_t) | |
cf12b95b GH |
263 | #define DEFINE_PROP_UINT16(_n, _s, _f, _d) \ |
264 | DEFINE_PROP_DEFAULT(_n, _s, _f, _d, qdev_prop_uint16, uint16_t) | |
265 | #define DEFINE_PROP_UINT32(_n, _s, _f, _d) \ | |
266 | DEFINE_PROP_DEFAULT(_n, _s, _f, _d, qdev_prop_uint32, uint32_t) | |
316940b0 GH |
267 | #define DEFINE_PROP_INT32(_n, _s, _f, _d) \ |
268 | DEFINE_PROP_DEFAULT(_n, _s, _f, _d, qdev_prop_int32, int32_t) | |
cf12b95b GH |
269 | #define DEFINE_PROP_UINT64(_n, _s, _f, _d) \ |
270 | DEFINE_PROP_DEFAULT(_n, _s, _f, _d, qdev_prop_uint64, uint64_t) | |
6835678c JK |
271 | #define DEFINE_PROP_HEX8(_n, _s, _f, _d) \ |
272 | DEFINE_PROP_DEFAULT(_n, _s, _f, _d, qdev_prop_hex8, uint8_t) | |
cf12b95b GH |
273 | #define DEFINE_PROP_HEX32(_n, _s, _f, _d) \ |
274 | DEFINE_PROP_DEFAULT(_n, _s, _f, _d, qdev_prop_hex32, uint32_t) | |
275 | #define DEFINE_PROP_HEX64(_n, _s, _f, _d) \ | |
276 | DEFINE_PROP_DEFAULT(_n, _s, _f, _d, qdev_prop_hex64, uint64_t) | |
277 | #define DEFINE_PROP_PCI_DEVFN(_n, _s, _f, _d) \ | |
278 | DEFINE_PROP_DEFAULT(_n, _s, _f, _d, qdev_prop_pci_devfn, uint32_t) | |
279 | ||
280 | #define DEFINE_PROP_PTR(_n, _s, _f) \ | |
281 | DEFINE_PROP(_n, _s, _f, qdev_prop_ptr, void*) | |
313feaab GH |
282 | #define DEFINE_PROP_CHR(_n, _s, _f) \ |
283 | DEFINE_PROP(_n, _s, _f, qdev_prop_chr, CharDriverState*) | |
59419663 GH |
284 | #define DEFINE_PROP_STRING(_n, _s, _f) \ |
285 | DEFINE_PROP(_n, _s, _f, qdev_prop_string, char*) | |
2ef924b4 GH |
286 | #define DEFINE_PROP_NETDEV(_n, _s, _f) \ |
287 | DEFINE_PROP(_n, _s, _f, qdev_prop_netdev, VLANClientState*) | |
851bec09 GH |
288 | #define DEFINE_PROP_VLAN(_n, _s, _f) \ |
289 | DEFINE_PROP(_n, _s, _f, qdev_prop_vlan, VLANState*) | |
f8b6cc00 MA |
290 | #define DEFINE_PROP_DRIVE(_n, _s, _f) \ |
291 | DEFINE_PROP(_n, _s, _f, qdev_prop_drive, BlockDriverState *) | |
cf12b95b | 292 | #define DEFINE_PROP_MACADDR(_n, _s, _f) \ |
1503fff3 | 293 | DEFINE_PROP(_n, _s, _f, qdev_prop_macaddr, MACAddr) |
cf12b95b GH |
294 | |
295 | #define DEFINE_PROP_END_OF_LIST() \ | |
296 | {} | |
297 | ||
ee6847d1 GH |
298 | /* Set properties between creation and init. */ |
299 | void *qdev_get_prop_ptr(DeviceState *dev, Property *prop); | |
d8ed79ae | 300 | int qdev_prop_exists(DeviceState *dev, const char *name); |
ee6847d1 GH |
301 | int qdev_prop_parse(DeviceState *dev, const char *name, const char *value); |
302 | void qdev_prop_set(DeviceState *dev, const char *name, void *src, enum PropertyType type); | |
f4594a3b | 303 | void qdev_prop_set_bit(DeviceState *dev, const char *name, bool value); |
c7cc172d | 304 | void qdev_prop_set_uint8(DeviceState *dev, const char *name, uint8_t value); |
ee6847d1 GH |
305 | void qdev_prop_set_uint16(DeviceState *dev, const char *name, uint16_t value); |
306 | void qdev_prop_set_uint32(DeviceState *dev, const char *name, uint32_t value); | |
316940b0 | 307 | void qdev_prop_set_int32(DeviceState *dev, const char *name, int32_t value); |
5a053d1f | 308 | void qdev_prop_set_uint64(DeviceState *dev, const char *name, uint64_t value); |
cc984673 | 309 | void qdev_prop_set_string(DeviceState *dev, const char *name, char *value); |
313feaab | 310 | void qdev_prop_set_chr(DeviceState *dev, const char *name, CharDriverState *value); |
2ef924b4 | 311 | void qdev_prop_set_netdev(DeviceState *dev, const char *name, VLANClientState *value); |
851bec09 | 312 | void qdev_prop_set_vlan(DeviceState *dev, const char *name, VLANState *value); |
18846dee MA |
313 | int qdev_prop_set_drive(DeviceState *dev, const char *name, BlockDriverState *value) QEMU_WARN_UNUSED_RESULT; |
314 | void qdev_prop_set_drive_nofail(DeviceState *dev, const char *name, BlockDriverState *value); | |
1503fff3 | 315 | void qdev_prop_set_macaddr(DeviceState *dev, const char *name, uint8_t *value); |
ee6847d1 GH |
316 | /* FIXME: Remove opaque pointer properties. */ |
317 | void qdev_prop_set_ptr(DeviceState *dev, const char *name, void *value); | |
318 | void qdev_prop_set_defaults(DeviceState *dev, Property *props); | |
319 | ||
458fb679 GH |
320 | void qdev_prop_register_global_list(GlobalProperty *props); |
321 | void qdev_prop_set_globals(DeviceState *dev); | |
b6b61144 | 322 | |
779206de GN |
323 | static inline const char *qdev_fw_name(DeviceState *dev) |
324 | { | |
325 | return dev->info->fw_name ? : dev->info->alias ? : dev->info->name; | |
326 | } | |
327 | ||
1ca4d09a | 328 | char *qdev_get_fw_dev_path(DeviceState *dev); |
a9ff9df1 BS |
329 | /* This is a nasty hack to allow passing a NULL bus to qdev_create. */ |
330 | extern struct BusInfo system_bus_info; | |
331 | ||
aae9460e | 332 | #endif |