]>
Commit | Line | Data |
---|---|---|
ee46d8a5 AL |
1 | /* |
2 | * Dynamic device configuration and creation. | |
3 | * | |
4 | * Copyright (c) 2009 CodeSourcery | |
5 | * | |
6 | * This library is free software; you can redistribute it and/or | |
7 | * modify it under the terms of the GNU Lesser General Public | |
8 | * License as published by the Free Software Foundation; either | |
9 | * version 2 of the License, or (at your option) any later version. | |
10 | * | |
11 | * This library is distributed in the hope that it will be useful, | |
12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
14 | * Lesser General Public License for more details. | |
15 | * | |
16 | * You should have received a copy of the GNU Lesser General Public | |
17 | * License along with this library; if not, see <http://www.gnu.org/licenses/>. | |
18 | */ | |
19 | ||
b4a42f81 | 20 | #include "hw/qdev.h" |
2f7bd829 | 21 | #include "hw/sysbus.h" |
83c9089e | 22 | #include "monitor/monitor.h" |
b4a42f81 | 23 | #include "monitor/qdev.h" |
a15fef21 | 24 | #include "qmp-commands.h" |
9c17d615 | 25 | #include "sysemu/arch_init.h" |
1de7afc9 | 26 | #include "qemu/config-file.h" |
ee46d8a5 AL |
27 | |
28 | /* | |
29 | * Aliases were a bad idea from the start. Let's keep them | |
30 | * from spreading further. | |
31 | */ | |
32 | typedef struct QDevAlias | |
33 | { | |
34 | const char *typename; | |
35 | const char *alias; | |
5f629d94 | 36 | uint32_t arch_mask; |
ee46d8a5 AL |
37 | } QDevAlias; |
38 | ||
39 | static const QDevAlias qdev_alias_table[] = { | |
5f629d94 AG |
40 | { "virtio-blk-pci", "virtio-blk", QEMU_ARCH_ALL & ~QEMU_ARCH_S390X }, |
41 | { "virtio-net-pci", "virtio-net", QEMU_ARCH_ALL & ~QEMU_ARCH_S390X }, | |
42 | { "virtio-serial-pci", "virtio-serial", QEMU_ARCH_ALL & ~QEMU_ARCH_S390X }, | |
43 | { "virtio-balloon-pci", "virtio-balloon", | |
44 | QEMU_ARCH_ALL & ~QEMU_ARCH_S390X }, | |
45 | { "virtio-blk-s390", "virtio-blk", QEMU_ARCH_S390X }, | |
46 | { "virtio-net-s390", "virtio-net", QEMU_ARCH_S390X }, | |
47 | { "virtio-serial-s390", "virtio-serial", QEMU_ARCH_S390X }, | |
ee46d8a5 AL |
48 | { "lsi53c895a", "lsi" }, |
49 | { "ich9-ahci", "ahci" }, | |
c3ebd3ba | 50 | { "kvm-pci-assign", "pci-assign" }, |
ee46d8a5 AL |
51 | { } |
52 | }; | |
53 | ||
54 | static const char *qdev_class_get_alias(DeviceClass *dc) | |
55 | { | |
56 | const char *typename = object_class_get_name(OBJECT_CLASS(dc)); | |
57 | int i; | |
58 | ||
59 | for (i = 0; qdev_alias_table[i].typename; i++) { | |
5f629d94 AG |
60 | if (qdev_alias_table[i].arch_mask && |
61 | !(qdev_alias_table[i].arch_mask & arch_type)) { | |
62 | continue; | |
63 | } | |
64 | ||
ee46d8a5 AL |
65 | if (strcmp(qdev_alias_table[i].typename, typename) == 0) { |
66 | return qdev_alias_table[i].alias; | |
67 | } | |
68 | } | |
69 | ||
70 | return NULL; | |
71 | } | |
72 | ||
73 | static bool qdev_class_has_alias(DeviceClass *dc) | |
74 | { | |
75 | return (qdev_class_get_alias(dc) != NULL); | |
76 | } | |
77 | ||
a3400aee | 78 | static void qdev_print_devinfo(DeviceClass *dc) |
ee46d8a5 | 79 | { |
a3400aee | 80 | error_printf("name \"%s\"", object_class_get_name(OBJECT_CLASS(dc))); |
0d936928 AL |
81 | if (dc->bus_type) { |
82 | error_printf(", bus %s", dc->bus_type); | |
ee46d8a5 AL |
83 | } |
84 | if (qdev_class_has_alias(dc)) { | |
85 | error_printf(", alias \"%s\"", qdev_class_get_alias(dc)); | |
86 | } | |
87 | if (dc->desc) { | |
88 | error_printf(", desc \"%s\"", dc->desc); | |
89 | } | |
efec3dd6 | 90 | if (dc->cannot_instantiate_with_device_add_yet) { |
ee46d8a5 AL |
91 | error_printf(", no-user"); |
92 | } | |
93 | error_printf("\n"); | |
94 | } | |
95 | ||
a3400aee MA |
96 | static gint devinfo_cmp(gconstpointer a, gconstpointer b) |
97 | { | |
98 | return strcasecmp(object_class_get_name((ObjectClass *)a), | |
99 | object_class_get_name((ObjectClass *)b)); | |
100 | } | |
101 | ||
102 | static void qdev_print_devinfos(bool show_no_user) | |
103 | { | |
104 | static const char *cat_name[DEVICE_CATEGORY_MAX + 1] = { | |
105 | [DEVICE_CATEGORY_BRIDGE] = "Controller/Bridge/Hub", | |
106 | [DEVICE_CATEGORY_USB] = "USB", | |
107 | [DEVICE_CATEGORY_STORAGE] = "Storage", | |
108 | [DEVICE_CATEGORY_NETWORK] = "Network", | |
109 | [DEVICE_CATEGORY_INPUT] = "Input", | |
110 | [DEVICE_CATEGORY_DISPLAY] = "Display", | |
111 | [DEVICE_CATEGORY_SOUND] = "Sound", | |
112 | [DEVICE_CATEGORY_MISC] = "Misc", | |
113 | [DEVICE_CATEGORY_MAX] = "Uncategorized", | |
114 | }; | |
115 | GSList *list, *elt; | |
116 | int i; | |
117 | bool cat_printed; | |
118 | ||
119 | list = g_slist_sort(object_class_get_list(TYPE_DEVICE, false), | |
120 | devinfo_cmp); | |
121 | ||
122 | for (i = 0; i <= DEVICE_CATEGORY_MAX; i++) { | |
123 | cat_printed = false; | |
124 | for (elt = list; elt; elt = elt->next) { | |
125 | DeviceClass *dc = OBJECT_CLASS_CHECK(DeviceClass, elt->data, | |
126 | TYPE_DEVICE); | |
127 | if ((i < DEVICE_CATEGORY_MAX | |
128 | ? !test_bit(i, dc->categories) | |
129 | : !bitmap_empty(dc->categories, DEVICE_CATEGORY_MAX)) | |
efec3dd6 MA |
130 | || (!show_no_user |
131 | && dc->cannot_instantiate_with_device_add_yet)) { | |
a3400aee MA |
132 | continue; |
133 | } | |
134 | if (!cat_printed) { | |
135 | error_printf("%s%s devices:\n", i ? "\n" : "", | |
136 | cat_name[i]); | |
137 | cat_printed = true; | |
138 | } | |
139 | qdev_print_devinfo(dc); | |
140 | } | |
141 | } | |
142 | ||
143 | g_slist_free(list); | |
144 | } | |
145 | ||
ee46d8a5 AL |
146 | static int set_property(const char *name, const char *value, void *opaque) |
147 | { | |
98a65284 | 148 | Object *obj = opaque; |
b1fe9bcb | 149 | Error *err = NULL; |
ee46d8a5 AL |
150 | |
151 | if (strcmp(name, "driver") == 0) | |
152 | return 0; | |
153 | if (strcmp(name, "bus") == 0) | |
154 | return 0; | |
155 | ||
98a65284 | 156 | object_property_parse(obj, value, name, &err); |
b1fe9bcb AF |
157 | if (err != NULL) { |
158 | qerror_report_err(err); | |
159 | error_free(err); | |
ee46d8a5 AL |
160 | return -1; |
161 | } | |
162 | return 0; | |
163 | } | |
164 | ||
165 | static const char *find_typename_by_alias(const char *alias) | |
166 | { | |
167 | int i; | |
168 | ||
169 | for (i = 0; qdev_alias_table[i].alias; i++) { | |
5f629d94 AG |
170 | if (qdev_alias_table[i].arch_mask && |
171 | !(qdev_alias_table[i].arch_mask & arch_type)) { | |
172 | continue; | |
173 | } | |
174 | ||
ee46d8a5 AL |
175 | if (strcmp(qdev_alias_table[i].alias, alias) == 0) { |
176 | return qdev_alias_table[i].typename; | |
177 | } | |
178 | } | |
179 | ||
180 | return NULL; | |
181 | } | |
182 | ||
183 | int qdev_device_help(QemuOpts *opts) | |
184 | { | |
185 | const char *driver; | |
186 | Property *prop; | |
187 | ObjectClass *klass; | |
ee46d8a5 AL |
188 | |
189 | driver = qemu_opt_get(opts, "driver"); | |
c8057f95 | 190 | if (driver && is_help_option(driver)) { |
a3400aee | 191 | qdev_print_devinfos(false); |
ee46d8a5 AL |
192 | return 1; |
193 | } | |
194 | ||
c8057f95 | 195 | if (!driver || !qemu_opt_has_help_opt(opts)) { |
ee46d8a5 AL |
196 | return 0; |
197 | } | |
198 | ||
199 | klass = object_class_by_name(driver); | |
200 | if (!klass) { | |
201 | const char *typename = find_typename_by_alias(driver); | |
202 | ||
203 | if (typename) { | |
204 | driver = typename; | |
205 | klass = object_class_by_name(driver); | |
206 | } | |
207 | } | |
208 | ||
ce0abca3 | 209 | if (!object_class_dynamic_cast(klass, TYPE_DEVICE)) { |
ee46d8a5 AL |
210 | return 0; |
211 | } | |
bce54474 PB |
212 | do { |
213 | for (prop = DEVICE_CLASS(klass)->props; prop && prop->name; prop++) { | |
214 | /* | |
215 | * TODO Properties without a parser are just for dirty hacks. | |
216 | * qdev_prop_ptr is the only such PropertyInfo. It's marked | |
217 | * for removal. This conditional should be removed along with | |
218 | * it. | |
219 | */ | |
90ca64a9 | 220 | if (!prop->info->set) { |
d03d6b4e AL |
221 | continue; /* no way to set it, don't show */ |
222 | } | |
223 | error_printf("%s.%s=%s\n", driver, prop->name, | |
224 | prop->info->legacy_name ?: prop->info->name); | |
ee46d8a5 | 225 | } |
bce54474 PB |
226 | klass = object_class_get_parent(klass); |
227 | } while (klass != object_class_by_name(TYPE_DEVICE)); | |
ee46d8a5 AL |
228 | return 1; |
229 | } | |
230 | ||
57c9fafe | 231 | static Object *qdev_get_peripheral(void) |
ee46d8a5 | 232 | { |
8b45d447 | 233 | static Object *dev; |
ee46d8a5 AL |
234 | |
235 | if (dev == NULL) { | |
dfe47e70 | 236 | dev = container_get(qdev_get_machine(), "/peripheral"); |
ee46d8a5 AL |
237 | } |
238 | ||
8b45d447 | 239 | return dev; |
ee46d8a5 AL |
240 | } |
241 | ||
57c9fafe | 242 | static Object *qdev_get_peripheral_anon(void) |
ee46d8a5 | 243 | { |
8b45d447 | 244 | static Object *dev; |
ee46d8a5 AL |
245 | |
246 | if (dev == NULL) { | |
dfe47e70 | 247 | dev = container_get(qdev_get_machine(), "/peripheral-anon"); |
ee46d8a5 AL |
248 | } |
249 | ||
8b45d447 | 250 | return dev; |
ee46d8a5 AL |
251 | } |
252 | ||
253 | static void qbus_list_bus(DeviceState *dev) | |
254 | { | |
255 | BusState *child; | |
256 | const char *sep = " "; | |
257 | ||
258 | error_printf("child busses at \"%s\":", | |
259 | dev->id ? dev->id : object_get_typename(OBJECT(dev))); | |
260 | QLIST_FOREACH(child, &dev->child_bus, sibling) { | |
261 | error_printf("%s\"%s\"", sep, child->name); | |
262 | sep = ", "; | |
263 | } | |
264 | error_printf("\n"); | |
265 | } | |
266 | ||
267 | static void qbus_list_dev(BusState *bus) | |
268 | { | |
0866aca1 | 269 | BusChild *kid; |
ee46d8a5 AL |
270 | const char *sep = " "; |
271 | ||
272 | error_printf("devices at \"%s\":", bus->name); | |
0866aca1 AL |
273 | QTAILQ_FOREACH(kid, &bus->children, sibling) { |
274 | DeviceState *dev = kid->child; | |
ee46d8a5 AL |
275 | error_printf("%s\"%s\"", sep, object_get_typename(OBJECT(dev))); |
276 | if (dev->id) | |
277 | error_printf("/\"%s\"", dev->id); | |
278 | sep = ", "; | |
279 | } | |
280 | error_printf("\n"); | |
281 | } | |
282 | ||
283 | static BusState *qbus_find_bus(DeviceState *dev, char *elem) | |
284 | { | |
285 | BusState *child; | |
286 | ||
287 | QLIST_FOREACH(child, &dev->child_bus, sibling) { | |
288 | if (strcmp(child->name, elem) == 0) { | |
289 | return child; | |
290 | } | |
291 | } | |
292 | return NULL; | |
293 | } | |
294 | ||
295 | static DeviceState *qbus_find_dev(BusState *bus, char *elem) | |
296 | { | |
0866aca1 | 297 | BusChild *kid; |
ee46d8a5 AL |
298 | |
299 | /* | |
300 | * try to match in order: | |
301 | * (1) instance id, if present | |
302 | * (2) driver name | |
303 | * (3) driver alias, if present | |
304 | */ | |
0866aca1 AL |
305 | QTAILQ_FOREACH(kid, &bus->children, sibling) { |
306 | DeviceState *dev = kid->child; | |
ee46d8a5 AL |
307 | if (dev->id && strcmp(dev->id, elem) == 0) { |
308 | return dev; | |
309 | } | |
310 | } | |
0866aca1 AL |
311 | QTAILQ_FOREACH(kid, &bus->children, sibling) { |
312 | DeviceState *dev = kid->child; | |
ee46d8a5 AL |
313 | if (strcmp(object_get_typename(OBJECT(dev)), elem) == 0) { |
314 | return dev; | |
315 | } | |
316 | } | |
0866aca1 AL |
317 | QTAILQ_FOREACH(kid, &bus->children, sibling) { |
318 | DeviceState *dev = kid->child; | |
ee46d8a5 AL |
319 | DeviceClass *dc = DEVICE_GET_CLASS(dev); |
320 | ||
321 | if (qdev_class_has_alias(dc) && | |
322 | strcmp(qdev_class_get_alias(dc), elem) == 0) { | |
323 | return dev; | |
324 | } | |
325 | } | |
326 | return NULL; | |
327 | } | |
328 | ||
329 | static BusState *qbus_find_recursive(BusState *bus, const char *name, | |
0d936928 | 330 | const char *bus_typename) |
ee46d8a5 | 331 | { |
1395af6f | 332 | BusClass *bus_class = BUS_GET_CLASS(bus); |
0866aca1 | 333 | BusChild *kid; |
ee46d8a5 AL |
334 | BusState *child, *ret; |
335 | int match = 1; | |
336 | ||
337 | if (name && (strcmp(bus->name, name) != 0)) { | |
338 | match = 0; | |
95e2af98 | 339 | } else if (bus_typename && !object_dynamic_cast(OBJECT(bus), bus_typename)) { |
ee46d8a5 | 340 | match = 0; |
95e2af98 | 341 | } else if ((bus_class->max_dev != 0) && (bus_class->max_dev <= bus->max_index)) { |
1395af6f FK |
342 | if (name != NULL) { |
343 | /* bus was explicitly specified: return an error. */ | |
344 | qerror_report(ERROR_CLASS_GENERIC_ERROR, "Bus '%s' is full", | |
345 | bus->name); | |
346 | return NULL; | |
347 | } else { | |
348 | /* bus was not specified: try to find another one. */ | |
349 | match = 0; | |
350 | } | |
351 | } | |
ee46d8a5 AL |
352 | if (match) { |
353 | return bus; | |
354 | } | |
355 | ||
0866aca1 AL |
356 | QTAILQ_FOREACH(kid, &bus->children, sibling) { |
357 | DeviceState *dev = kid->child; | |
ee46d8a5 | 358 | QLIST_FOREACH(child, &dev->child_bus, sibling) { |
0d936928 | 359 | ret = qbus_find_recursive(child, name, bus_typename); |
ee46d8a5 AL |
360 | if (ret) { |
361 | return ret; | |
362 | } | |
363 | } | |
364 | } | |
365 | return NULL; | |
366 | } | |
367 | ||
368 | static BusState *qbus_find(const char *path) | |
369 | { | |
370 | DeviceState *dev; | |
371 | BusState *bus; | |
372 | char elem[128]; | |
373 | int pos, len; | |
374 | ||
375 | /* find start element */ | |
376 | if (path[0] == '/') { | |
377 | bus = sysbus_get_default(); | |
378 | pos = 0; | |
379 | } else { | |
380 | if (sscanf(path, "%127[^/]%n", elem, &len) != 1) { | |
381 | assert(!path[0]); | |
382 | elem[0] = len = 0; | |
383 | } | |
384 | bus = qbus_find_recursive(sysbus_get_default(), elem, NULL); | |
385 | if (!bus) { | |
386 | qerror_report(QERR_BUS_NOT_FOUND, elem); | |
387 | return NULL; | |
388 | } | |
389 | pos = len; | |
390 | } | |
391 | ||
392 | for (;;) { | |
393 | assert(path[pos] == '/' || !path[pos]); | |
394 | while (path[pos] == '/') { | |
395 | pos++; | |
396 | } | |
397 | if (path[pos] == '\0') { | |
398 | return bus; | |
399 | } | |
400 | ||
401 | /* find device */ | |
402 | if (sscanf(path+pos, "%127[^/]%n", elem, &len) != 1) { | |
dfc6f865 | 403 | g_assert_not_reached(); |
ee46d8a5 AL |
404 | elem[0] = len = 0; |
405 | } | |
406 | pos += len; | |
407 | dev = qbus_find_dev(bus, elem); | |
408 | if (!dev) { | |
409 | qerror_report(QERR_DEVICE_NOT_FOUND, elem); | |
410 | if (!monitor_cur_is_qmp()) { | |
411 | qbus_list_dev(bus); | |
412 | } | |
413 | return NULL; | |
414 | } | |
415 | ||
416 | assert(path[pos] == '/' || !path[pos]); | |
417 | while (path[pos] == '/') { | |
418 | pos++; | |
419 | } | |
420 | if (path[pos] == '\0') { | |
421 | /* last specified element is a device. If it has exactly | |
422 | * one child bus accept it nevertheless */ | |
423 | switch (dev->num_child_bus) { | |
424 | case 0: | |
f231b88d CR |
425 | qerror_report(ERROR_CLASS_GENERIC_ERROR, |
426 | "Device '%s' has no child bus", elem); | |
ee46d8a5 AL |
427 | return NULL; |
428 | case 1: | |
429 | return QLIST_FIRST(&dev->child_bus); | |
430 | default: | |
f231b88d CR |
431 | qerror_report(ERROR_CLASS_GENERIC_ERROR, |
432 | "Device '%s' has multiple child busses", elem); | |
ee46d8a5 AL |
433 | if (!monitor_cur_is_qmp()) { |
434 | qbus_list_bus(dev); | |
435 | } | |
436 | return NULL; | |
437 | } | |
438 | } | |
439 | ||
440 | /* find bus */ | |
441 | if (sscanf(path+pos, "%127[^/]%n", elem, &len) != 1) { | |
dfc6f865 | 442 | g_assert_not_reached(); |
ee46d8a5 AL |
443 | elem[0] = len = 0; |
444 | } | |
445 | pos += len; | |
446 | bus = qbus_find_bus(dev, elem); | |
447 | if (!bus) { | |
448 | qerror_report(QERR_BUS_NOT_FOUND, elem); | |
449 | if (!monitor_cur_is_qmp()) { | |
450 | qbus_list_bus(dev); | |
451 | } | |
452 | return NULL; | |
453 | } | |
454 | } | |
455 | } | |
456 | ||
457 | DeviceState *qdev_device_add(QemuOpts *opts) | |
458 | { | |
f4d85795 AF |
459 | ObjectClass *oc; |
460 | DeviceClass *dc; | |
ee46d8a5 | 461 | const char *driver, *path, *id; |
2bcb0c62 | 462 | DeviceState *dev; |
2f7bd829 | 463 | BusState *bus = NULL; |
852e2c50 | 464 | Error *err = NULL; |
ee46d8a5 AL |
465 | |
466 | driver = qemu_opt_get(opts, "driver"); | |
467 | if (!driver) { | |
468 | qerror_report(QERR_MISSING_PARAMETER, "driver"); | |
469 | return NULL; | |
470 | } | |
471 | ||
472 | /* find driver */ | |
f4d85795 AF |
473 | oc = object_class_by_name(driver); |
474 | if (!oc) { | |
ee46d8a5 AL |
475 | const char *typename = find_typename_by_alias(driver); |
476 | ||
477 | if (typename) { | |
478 | driver = typename; | |
f4d85795 | 479 | oc = object_class_by_name(driver); |
ee46d8a5 AL |
480 | } |
481 | } | |
482 | ||
061e84f7 | 483 | if (!object_class_dynamic_cast(oc, TYPE_DEVICE)) { |
11c308b1 MA |
484 | qerror_report(ERROR_CLASS_GENERIC_ERROR, |
485 | "'%s' is not a valid device model name", driver); | |
ee46d8a5 AL |
486 | return NULL; |
487 | } | |
488 | ||
2fa4e56d IM |
489 | if (object_class_is_abstract(oc)) { |
490 | qerror_report(QERR_INVALID_PARAMETER_VALUE, "driver", | |
491 | "non-abstract device type"); | |
492 | return NULL; | |
493 | } | |
494 | ||
f4d85795 | 495 | dc = DEVICE_CLASS(oc); |
7ea5e78f MA |
496 | if (dc->cannot_instantiate_with_device_add_yet) { |
497 | qerror_report(QERR_INVALID_PARAMETER_VALUE, "driver", | |
498 | "pluggable device type"); | |
499 | return NULL; | |
500 | } | |
ee46d8a5 AL |
501 | |
502 | /* find bus */ | |
503 | path = qemu_opt_get(opts, "bus"); | |
504 | if (path != NULL) { | |
505 | bus = qbus_find(path); | |
506 | if (!bus) { | |
507 | return NULL; | |
508 | } | |
f4d85795 | 509 | if (!object_dynamic_cast(OBJECT(bus), dc->bus_type)) { |
f231b88d CR |
510 | qerror_report(ERROR_CLASS_GENERIC_ERROR, |
511 | "Device '%s' can't go on a %s bus", | |
0d936928 | 512 | driver, object_get_typename(OBJECT(bus))); |
ee46d8a5 AL |
513 | return NULL; |
514 | } | |
f4d85795 AF |
515 | } else if (dc->bus_type != NULL) { |
516 | bus = qbus_find_recursive(sysbus_get_default(), NULL, dc->bus_type); | |
ee46d8a5 | 517 | if (!bus) { |
f231b88d CR |
518 | qerror_report(ERROR_CLASS_GENERIC_ERROR, |
519 | "No '%s' bus found for device '%s'", | |
f4d85795 | 520 | dc->bus_type, driver); |
ee46d8a5 AL |
521 | return NULL; |
522 | } | |
523 | } | |
2f7bd829 | 524 | if (qdev_hotplug && bus && !bus->allow_hotplug) { |
ee46d8a5 AL |
525 | qerror_report(QERR_BUS_NO_HOTPLUG, bus->name); |
526 | return NULL; | |
527 | } | |
528 | ||
7b030949 | 529 | /* create device */ |
2bcb0c62 | 530 | dev = DEVICE(object_new(driver)); |
2f7bd829 AF |
531 | |
532 | if (bus) { | |
2bcb0c62 | 533 | qdev_set_parent_bus(dev, bus); |
2f7bd829 | 534 | } |
ee46d8a5 AL |
535 | |
536 | id = qemu_opts_id(opts); | |
537 | if (id) { | |
2bcb0c62 | 538 | dev->id = id; |
b2d4b3f7 | 539 | } |
7b030949 | 540 | |
2bcb0c62 AF |
541 | if (dev->id) { |
542 | object_property_add_child(qdev_get_peripheral(), dev->id, | |
543 | OBJECT(dev), NULL); | |
ee46d8a5 AL |
544 | } else { |
545 | static int anon_count; | |
546 | gchar *name = g_strdup_printf("device[%d]", anon_count++); | |
57c9fafe | 547 | object_property_add_child(qdev_get_peripheral_anon(), name, |
2bcb0c62 | 548 | OBJECT(dev), NULL); |
ee46d8a5 | 549 | g_free(name); |
2bcb0c62 | 550 | } |
52aa17cb | 551 | |
7b030949 AK |
552 | /* set properties */ |
553 | if (qemu_opt_foreach(opts, set_property, dev, 1) != 0) { | |
554 | object_unparent(OBJECT(dev)); | |
555 | object_unref(OBJECT(dev)); | |
556 | return NULL; | |
557 | } | |
558 | ||
52aa17cb | 559 | dev->opts = opts; |
852e2c50 AF |
560 | object_property_set_bool(OBJECT(dev), true, "realized", &err); |
561 | if (err != NULL) { | |
562 | qerror_report_err(err); | |
563 | error_free(err); | |
52aa17cb | 564 | dev->opts = NULL; |
852e2c50 | 565 | object_unparent(OBJECT(dev)); |
2bcb0c62 | 566 | object_unref(OBJECT(dev)); |
f424d5c4 PB |
567 | qerror_report(QERR_DEVICE_INIT_FAILED, driver); |
568 | return NULL; | |
569 | } | |
2bcb0c62 | 570 | return dev; |
ee46d8a5 AL |
571 | } |
572 | ||
573 | ||
574 | #define qdev_printf(fmt, ...) monitor_printf(mon, "%*s" fmt, indent, "", ## __VA_ARGS__) | |
575 | static void qbus_print(Monitor *mon, BusState *bus, int indent); | |
576 | ||
577 | static void qdev_print_props(Monitor *mon, DeviceState *dev, Property *props, | |
bce54474 | 578 | int indent) |
ee46d8a5 | 579 | { |
ee46d8a5 AL |
580 | if (!props) |
581 | return; | |
d822979b PB |
582 | for (; props->name; props++) { |
583 | Error *err = NULL; | |
584 | char *value; | |
585 | char *legacy_name = g_strdup_printf("legacy-%s", props->name); | |
586 | if (object_property_get_type(OBJECT(dev), legacy_name, NULL)) { | |
587 | value = object_property_get_str(OBJECT(dev), legacy_name, &err); | |
588 | } else { | |
dae3bda4 | 589 | value = object_property_print(OBJECT(dev), props->name, true, &err); |
d822979b PB |
590 | } |
591 | g_free(legacy_name); | |
592 | ||
593 | if (err) { | |
594 | error_free(err); | |
595 | continue; | |
ee46d8a5 | 596 | } |
bce54474 | 597 | qdev_printf("%s = %s\n", props->name, |
d822979b PB |
598 | value && *value ? value : "<null>"); |
599 | g_free(value); | |
ee46d8a5 AL |
600 | } |
601 | } | |
602 | ||
0d936928 AL |
603 | static void bus_print_dev(BusState *bus, Monitor *mon, DeviceState *dev, int indent) |
604 | { | |
605 | BusClass *bc = BUS_GET_CLASS(bus); | |
606 | ||
607 | if (bc->print_dev) { | |
608 | bc->print_dev(mon, dev, indent); | |
609 | } | |
610 | } | |
611 | ||
ee46d8a5 AL |
612 | static void qdev_print(Monitor *mon, DeviceState *dev, int indent) |
613 | { | |
bce54474 | 614 | ObjectClass *class; |
ee46d8a5 | 615 | BusState *child; |
a5f54290 PC |
616 | NamedGPIOList *ngl; |
617 | ||
ee46d8a5 AL |
618 | qdev_printf("dev: %s, id \"%s\"\n", object_get_typename(OBJECT(dev)), |
619 | dev->id ? dev->id : ""); | |
620 | indent += 2; | |
a5f54290 PC |
621 | QLIST_FOREACH(ngl, &dev->gpios, node) { |
622 | if (ngl->num_in) { | |
623 | qdev_printf("gpio-in \"%s\" %d\n", ngl->name ? ngl->name : "", | |
624 | ngl->num_in); | |
625 | } | |
626 | if (ngl->num_out) { | |
627 | qdev_printf("gpio-out \"%s\" %d\n", ngl->name ? ngl->name : "", | |
628 | ngl->num_out); | |
629 | } | |
ee46d8a5 | 630 | } |
bce54474 PB |
631 | class = object_get_class(OBJECT(dev)); |
632 | do { | |
633 | qdev_print_props(mon, dev, DEVICE_CLASS(class)->props, indent); | |
634 | class = object_class_get_parent(class); | |
635 | } while (class != object_class_by_name(TYPE_DEVICE)); | |
da9fbe76 | 636 | bus_print_dev(dev->parent_bus, mon, dev, indent); |
ee46d8a5 AL |
637 | QLIST_FOREACH(child, &dev->child_bus, sibling) { |
638 | qbus_print(mon, child, indent); | |
639 | } | |
640 | } | |
641 | ||
642 | static void qbus_print(Monitor *mon, BusState *bus, int indent) | |
643 | { | |
0866aca1 | 644 | BusChild *kid; |
ee46d8a5 AL |
645 | |
646 | qdev_printf("bus: %s\n", bus->name); | |
647 | indent += 2; | |
0d936928 | 648 | qdev_printf("type %s\n", object_get_typename(OBJECT(bus))); |
0866aca1 AL |
649 | QTAILQ_FOREACH(kid, &bus->children, sibling) { |
650 | DeviceState *dev = kid->child; | |
ee46d8a5 AL |
651 | qdev_print(mon, dev, indent); |
652 | } | |
653 | } | |
654 | #undef qdev_printf | |
655 | ||
84f2d0ea | 656 | void do_info_qtree(Monitor *mon, const QDict *qdict) |
ee46d8a5 AL |
657 | { |
658 | if (sysbus_get_default()) | |
659 | qbus_print(mon, sysbus_get_default(), 0); | |
660 | } | |
661 | ||
84f2d0ea | 662 | void do_info_qdm(Monitor *mon, const QDict *qdict) |
ee46d8a5 | 663 | { |
a3400aee | 664 | qdev_print_devinfos(true); |
ee46d8a5 AL |
665 | } |
666 | ||
667 | int do_device_add(Monitor *mon, const QDict *qdict, QObject **ret_data) | |
668 | { | |
4e89978e | 669 | Error *local_err = NULL; |
ee46d8a5 | 670 | QemuOpts *opts; |
b09995ae | 671 | DeviceState *dev; |
ee46d8a5 | 672 | |
4e89978e | 673 | opts = qemu_opts_from_qdict(qemu_find_opts("device"), qdict, &local_err); |
84d18f06 | 674 | if (local_err) { |
4e89978e LC |
675 | qerror_report_err(local_err); |
676 | error_free(local_err); | |
ee46d8a5 AL |
677 | return -1; |
678 | } | |
679 | if (!monitor_cur_is_qmp() && qdev_device_help(opts)) { | |
680 | qemu_opts_del(opts); | |
681 | return 0; | |
682 | } | |
b09995ae PB |
683 | dev = qdev_device_add(opts); |
684 | if (!dev) { | |
ee46d8a5 AL |
685 | qemu_opts_del(opts); |
686 | return -1; | |
687 | } | |
b09995ae | 688 | object_unref(OBJECT(dev)); |
ee46d8a5 AL |
689 | return 0; |
690 | } | |
691 | ||
a15fef21 | 692 | void qmp_device_del(const char *id, Error **errp) |
ee46d8a5 | 693 | { |
ee46d8a5 AL |
694 | DeviceState *dev; |
695 | ||
696 | dev = qdev_find_recursive(sysbus_get_default(), id); | |
697 | if (NULL == dev) { | |
a15fef21 LC |
698 | error_set(errp, QERR_DEVICE_NOT_FOUND, id); |
699 | return; | |
56f9107e LC |
700 | } |
701 | ||
a15fef21 | 702 | qdev_unplug(dev, errp); |
ee46d8a5 AL |
703 | } |
704 | ||
705 | void qdev_machine_init(void) | |
706 | { | |
707 | qdev_get_peripheral_anon(); | |
708 | qdev_get_peripheral(); | |
709 | } | |
4d454574 PB |
710 | |
711 | QemuOptsList qemu_device_opts = { | |
712 | .name = "device", | |
713 | .implied_opt_name = "driver", | |
714 | .head = QTAILQ_HEAD_INITIALIZER(qemu_device_opts.head), | |
715 | .desc = { | |
716 | /* | |
717 | * no elements => accept any | |
718 | * sanity checking will happen later | |
719 | * when setting device properties | |
720 | */ | |
721 | { /* end of list */ } | |
722 | }, | |
723 | }; | |
724 | ||
725 | QemuOptsList qemu_global_opts = { | |
726 | .name = "global", | |
727 | .head = QTAILQ_HEAD_INITIALIZER(qemu_global_opts.head), | |
728 | .desc = { | |
729 | { | |
730 | .name = "driver", | |
731 | .type = QEMU_OPT_STRING, | |
732 | },{ | |
733 | .name = "property", | |
734 | .type = QEMU_OPT_STRING, | |
735 | },{ | |
736 | .name = "value", | |
737 | .type = QEMU_OPT_STRING, | |
738 | }, | |
739 | { /* end of list */ } | |
740 | }, | |
741 | }; | |
742 | ||
743 | int qemu_global_option(const char *str) | |
744 | { | |
745 | char driver[64], property[64]; | |
746 | QemuOpts *opts; | |
747 | int rc, offset; | |
748 | ||
749 | rc = sscanf(str, "%63[^.].%63[^=]%n", driver, property, &offset); | |
750 | if (rc < 2 || str[offset] != '=') { | |
751 | error_report("can't parse: \"%s\"", str); | |
752 | return -1; | |
753 | } | |
754 | ||
87ea75d5 | 755 | opts = qemu_opts_create(&qemu_global_opts, NULL, 0, &error_abort); |
4d454574 PB |
756 | qemu_opt_set(opts, "driver", driver); |
757 | qemu_opt_set(opts, "property", property); | |
758 | qemu_opt_set(opts, "value", str+offset+1); | |
759 | return 0; | |
760 | } |