blob: a1b4d6ae5feb01126b0e8299453232922b1c466b [file] [log] [blame]
Anthony Liguoriee46d8a2011-12-22 15:24:20 -06001/*
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
20#include "qdev.h"
21#include "monitor.h"
Luiz Capitulinoa15fef22012-03-29 12:38:50 -030022#include "qmp-commands.h"
Alexander Graf5f629d92012-05-18 02:36:26 +020023#include "arch_init.h"
Anthony Liguoriee46d8a2011-12-22 15:24:20 -060024
25/*
26 * Aliases were a bad idea from the start. Let's keep them
27 * from spreading further.
28 */
29typedef struct QDevAlias
30{
31 const char *typename;
32 const char *alias;
Alexander Graf5f629d92012-05-18 02:36:26 +020033 uint32_t arch_mask;
Anthony Liguoriee46d8a2011-12-22 15:24:20 -060034} QDevAlias;
35
36static const QDevAlias qdev_alias_table[] = {
Alexander Graf5f629d92012-05-18 02:36:26 +020037 { "virtio-blk-pci", "virtio-blk", QEMU_ARCH_ALL & ~QEMU_ARCH_S390X },
38 { "virtio-net-pci", "virtio-net", QEMU_ARCH_ALL & ~QEMU_ARCH_S390X },
39 { "virtio-serial-pci", "virtio-serial", QEMU_ARCH_ALL & ~QEMU_ARCH_S390X },
40 { "virtio-balloon-pci", "virtio-balloon",
41 QEMU_ARCH_ALL & ~QEMU_ARCH_S390X },
42 { "virtio-blk-s390", "virtio-blk", QEMU_ARCH_S390X },
43 { "virtio-net-s390", "virtio-net", QEMU_ARCH_S390X },
44 { "virtio-serial-s390", "virtio-serial", QEMU_ARCH_S390X },
Anthony Liguoriee46d8a2011-12-22 15:24:20 -060045 { "lsi53c895a", "lsi" },
46 { "ich9-ahci", "ahci" },
Jan Kiszkac3ebd3b2012-08-30 20:30:00 +020047 { "kvm-pci-assign", "pci-assign" },
Anthony Liguoriee46d8a2011-12-22 15:24:20 -060048 { }
49};
50
51static const char *qdev_class_get_alias(DeviceClass *dc)
52{
53 const char *typename = object_class_get_name(OBJECT_CLASS(dc));
54 int i;
55
56 for (i = 0; qdev_alias_table[i].typename; i++) {
Alexander Graf5f629d92012-05-18 02:36:26 +020057 if (qdev_alias_table[i].arch_mask &&
58 !(qdev_alias_table[i].arch_mask & arch_type)) {
59 continue;
60 }
61
Anthony Liguoriee46d8a2011-12-22 15:24:20 -060062 if (strcmp(qdev_alias_table[i].typename, typename) == 0) {
63 return qdev_alias_table[i].alias;
64 }
65 }
66
67 return NULL;
68}
69
70static bool qdev_class_has_alias(DeviceClass *dc)
71{
72 return (qdev_class_get_alias(dc) != NULL);
73}
74
75static void qdev_print_devinfo(ObjectClass *klass, void *opaque)
76{
77 DeviceClass *dc;
78 bool *show_no_user = opaque;
79
80 dc = (DeviceClass *)object_class_dynamic_cast(klass, TYPE_DEVICE);
81
82 if (!dc || (show_no_user && !*show_no_user && dc->no_user)) {
83 return;
84 }
85
86 error_printf("name \"%s\"", object_class_get_name(klass));
Anthony Liguori0d936922012-05-02 09:00:20 +020087 if (dc->bus_type) {
88 error_printf(", bus %s", dc->bus_type);
Anthony Liguoriee46d8a2011-12-22 15:24:20 -060089 }
90 if (qdev_class_has_alias(dc)) {
91 error_printf(", alias \"%s\"", qdev_class_get_alias(dc));
92 }
93 if (dc->desc) {
94 error_printf(", desc \"%s\"", dc->desc);
95 }
96 if (dc->no_user) {
97 error_printf(", no-user");
98 }
99 error_printf("\n");
100}
101
102static int set_property(const char *name, const char *value, void *opaque)
103{
104 DeviceState *dev = opaque;
105
106 if (strcmp(name, "driver") == 0)
107 return 0;
108 if (strcmp(name, "bus") == 0)
109 return 0;
110
111 if (qdev_prop_parse(dev, name, value) == -1) {
112 return -1;
113 }
114 return 0;
115}
116
117static const char *find_typename_by_alias(const char *alias)
118{
119 int i;
120
121 for (i = 0; qdev_alias_table[i].alias; i++) {
Alexander Graf5f629d92012-05-18 02:36:26 +0200122 if (qdev_alias_table[i].arch_mask &&
123 !(qdev_alias_table[i].arch_mask & arch_type)) {
124 continue;
125 }
126
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600127 if (strcmp(qdev_alias_table[i].alias, alias) == 0) {
128 return qdev_alias_table[i].typename;
129 }
130 }
131
132 return NULL;
133}
134
135int qdev_device_help(QemuOpts *opts)
136{
137 const char *driver;
138 Property *prop;
139 ObjectClass *klass;
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600140
141 driver = qemu_opt_get(opts, "driver");
Peter Maydellc8057f92012-08-02 13:45:54 +0100142 if (driver && is_help_option(driver)) {
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600143 bool show_no_user = false;
144 object_class_foreach(qdev_print_devinfo, TYPE_DEVICE, false, &show_no_user);
145 return 1;
146 }
147
Peter Maydellc8057f92012-08-02 13:45:54 +0100148 if (!driver || !qemu_opt_has_help_opt(opts)) {
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600149 return 0;
150 }
151
152 klass = object_class_by_name(driver);
153 if (!klass) {
154 const char *typename = find_typename_by_alias(driver);
155
156 if (typename) {
157 driver = typename;
158 klass = object_class_by_name(driver);
159 }
160 }
161
162 if (!klass) {
163 return 0;
164 }
Paolo Bonzinibce54472012-03-28 18:12:47 +0200165 do {
166 for (prop = DEVICE_CLASS(klass)->props; prop && prop->name; prop++) {
167 /*
168 * TODO Properties without a parser are just for dirty hacks.
169 * qdev_prop_ptr is the only such PropertyInfo. It's marked
170 * for removal. This conditional should be removed along with
171 * it.
172 */
Paolo Bonzini90ca64a2012-05-02 13:30:59 +0200173 if (!prop->info->set) {
Anthony Liguorid03d6b42011-12-23 08:16:58 -0600174 continue; /* no way to set it, don't show */
175 }
176 error_printf("%s.%s=%s\n", driver, prop->name,
177 prop->info->legacy_name ?: prop->info->name);
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600178 }
Paolo Bonzinibce54472012-03-28 18:12:47 +0200179 klass = object_class_get_parent(klass);
180 } while (klass != object_class_by_name(TYPE_DEVICE));
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600181 return 1;
182}
183
Anthony Liguori57c9faf2012-01-30 08:55:55 -0600184static Object *qdev_get_peripheral(void)
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600185{
Anthony Liguori8b45d442011-12-23 09:08:05 -0600186 static Object *dev;
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600187
188 if (dev == NULL) {
Andreas Färberdfe47e72012-04-05 13:21:46 +0200189 dev = container_get(qdev_get_machine(), "/peripheral");
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600190 }
191
Anthony Liguori8b45d442011-12-23 09:08:05 -0600192 return dev;
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600193}
194
Anthony Liguori57c9faf2012-01-30 08:55:55 -0600195static Object *qdev_get_peripheral_anon(void)
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600196{
Anthony Liguori8b45d442011-12-23 09:08:05 -0600197 static Object *dev;
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600198
199 if (dev == NULL) {
Andreas Färberdfe47e72012-04-05 13:21:46 +0200200 dev = container_get(qdev_get_machine(), "/peripheral-anon");
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600201 }
202
Anthony Liguori8b45d442011-12-23 09:08:05 -0600203 return dev;
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600204}
205
206static void qbus_list_bus(DeviceState *dev)
207{
208 BusState *child;
209 const char *sep = " ";
210
211 error_printf("child busses at \"%s\":",
212 dev->id ? dev->id : object_get_typename(OBJECT(dev)));
213 QLIST_FOREACH(child, &dev->child_bus, sibling) {
214 error_printf("%s\"%s\"", sep, child->name);
215 sep = ", ";
216 }
217 error_printf("\n");
218}
219
220static void qbus_list_dev(BusState *bus)
221{
Anthony Liguori0866aca2011-12-23 15:34:39 -0600222 BusChild *kid;
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600223 const char *sep = " ";
224
225 error_printf("devices at \"%s\":", bus->name);
Anthony Liguori0866aca2011-12-23 15:34:39 -0600226 QTAILQ_FOREACH(kid, &bus->children, sibling) {
227 DeviceState *dev = kid->child;
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600228 error_printf("%s\"%s\"", sep, object_get_typename(OBJECT(dev)));
229 if (dev->id)
230 error_printf("/\"%s\"", dev->id);
231 sep = ", ";
232 }
233 error_printf("\n");
234}
235
236static BusState *qbus_find_bus(DeviceState *dev, char *elem)
237{
238 BusState *child;
239
240 QLIST_FOREACH(child, &dev->child_bus, sibling) {
241 if (strcmp(child->name, elem) == 0) {
242 return child;
243 }
244 }
245 return NULL;
246}
247
248static DeviceState *qbus_find_dev(BusState *bus, char *elem)
249{
Anthony Liguori0866aca2011-12-23 15:34:39 -0600250 BusChild *kid;
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600251
252 /*
253 * try to match in order:
254 * (1) instance id, if present
255 * (2) driver name
256 * (3) driver alias, if present
257 */
Anthony Liguori0866aca2011-12-23 15:34:39 -0600258 QTAILQ_FOREACH(kid, &bus->children, sibling) {
259 DeviceState *dev = kid->child;
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600260 if (dev->id && strcmp(dev->id, elem) == 0) {
261 return dev;
262 }
263 }
Anthony Liguori0866aca2011-12-23 15:34:39 -0600264 QTAILQ_FOREACH(kid, &bus->children, sibling) {
265 DeviceState *dev = kid->child;
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600266 if (strcmp(object_get_typename(OBJECT(dev)), elem) == 0) {
267 return dev;
268 }
269 }
Anthony Liguori0866aca2011-12-23 15:34:39 -0600270 QTAILQ_FOREACH(kid, &bus->children, sibling) {
271 DeviceState *dev = kid->child;
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600272 DeviceClass *dc = DEVICE_GET_CLASS(dev);
273
274 if (qdev_class_has_alias(dc) &&
275 strcmp(qdev_class_get_alias(dc), elem) == 0) {
276 return dev;
277 }
278 }
279 return NULL;
280}
281
282static BusState *qbus_find_recursive(BusState *bus, const char *name,
Anthony Liguori0d936922012-05-02 09:00:20 +0200283 const char *bus_typename)
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600284{
Anthony Liguori0866aca2011-12-23 15:34:39 -0600285 BusChild *kid;
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600286 BusState *child, *ret;
287 int match = 1;
288
289 if (name && (strcmp(bus->name, name) != 0)) {
290 match = 0;
291 }
Anthony Liguorie912c962012-11-29 07:46:23 -0600292 if (bus_typename && !object_dynamic_cast(OBJECT(bus), bus_typename)) {
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600293 match = 0;
294 }
295 if (match) {
296 return bus;
297 }
298
Anthony Liguori0866aca2011-12-23 15:34:39 -0600299 QTAILQ_FOREACH(kid, &bus->children, sibling) {
300 DeviceState *dev = kid->child;
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600301 QLIST_FOREACH(child, &dev->child_bus, sibling) {
Anthony Liguori0d936922012-05-02 09:00:20 +0200302 ret = qbus_find_recursive(child, name, bus_typename);
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600303 if (ret) {
304 return ret;
305 }
306 }
307 }
308 return NULL;
309}
310
311static BusState *qbus_find(const char *path)
312{
313 DeviceState *dev;
314 BusState *bus;
315 char elem[128];
316 int pos, len;
317
318 /* find start element */
319 if (path[0] == '/') {
320 bus = sysbus_get_default();
321 pos = 0;
322 } else {
323 if (sscanf(path, "%127[^/]%n", elem, &len) != 1) {
324 assert(!path[0]);
325 elem[0] = len = 0;
326 }
327 bus = qbus_find_recursive(sysbus_get_default(), elem, NULL);
328 if (!bus) {
329 qerror_report(QERR_BUS_NOT_FOUND, elem);
330 return NULL;
331 }
332 pos = len;
333 }
334
335 for (;;) {
336 assert(path[pos] == '/' || !path[pos]);
337 while (path[pos] == '/') {
338 pos++;
339 }
340 if (path[pos] == '\0') {
341 return bus;
342 }
343
344 /* find device */
345 if (sscanf(path+pos, "%127[^/]%n", elem, &len) != 1) {
346 assert(0);
347 elem[0] = len = 0;
348 }
349 pos += len;
350 dev = qbus_find_dev(bus, elem);
351 if (!dev) {
352 qerror_report(QERR_DEVICE_NOT_FOUND, elem);
353 if (!monitor_cur_is_qmp()) {
354 qbus_list_dev(bus);
355 }
356 return NULL;
357 }
358
359 assert(path[pos] == '/' || !path[pos]);
360 while (path[pos] == '/') {
361 pos++;
362 }
363 if (path[pos] == '\0') {
364 /* last specified element is a device. If it has exactly
365 * one child bus accept it nevertheless */
366 switch (dev->num_child_bus) {
367 case 0:
368 qerror_report(QERR_DEVICE_NO_BUS, elem);
369 return NULL;
370 case 1:
371 return QLIST_FIRST(&dev->child_bus);
372 default:
373 qerror_report(QERR_DEVICE_MULTIPLE_BUSSES, elem);
374 if (!monitor_cur_is_qmp()) {
375 qbus_list_bus(dev);
376 }
377 return NULL;
378 }
379 }
380
381 /* find bus */
382 if (sscanf(path+pos, "%127[^/]%n", elem, &len) != 1) {
383 assert(0);
384 elem[0] = len = 0;
385 }
386 pos += len;
387 bus = qbus_find_bus(dev, elem);
388 if (!bus) {
389 qerror_report(QERR_BUS_NOT_FOUND, elem);
390 if (!monitor_cur_is_qmp()) {
391 qbus_list_bus(dev);
392 }
393 return NULL;
394 }
395 }
396}
397
398DeviceState *qdev_device_add(QemuOpts *opts)
399{
400 ObjectClass *obj;
401 DeviceClass *k;
402 const char *driver, *path, *id;
403 DeviceState *qdev;
404 BusState *bus;
405
406 driver = qemu_opt_get(opts, "driver");
407 if (!driver) {
408 qerror_report(QERR_MISSING_PARAMETER, "driver");
409 return NULL;
410 }
411
412 /* find driver */
413 obj = object_class_by_name(driver);
414 if (!obj) {
415 const char *typename = find_typename_by_alias(driver);
416
417 if (typename) {
418 driver = typename;
419 obj = object_class_by_name(driver);
420 }
421 }
422
423 if (!obj) {
424 qerror_report(QERR_INVALID_PARAMETER_VALUE, "driver", "device type");
425 return NULL;
426 }
427
428 k = DEVICE_CLASS(obj);
429
430 /* find bus */
431 path = qemu_opt_get(opts, "bus");
432 if (path != NULL) {
433 bus = qbus_find(path);
434 if (!bus) {
435 return NULL;
436 }
Anthony Liguorie912c962012-11-29 07:46:23 -0600437 if (!object_dynamic_cast(OBJECT(bus), k->bus_type)) {
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600438 qerror_report(QERR_BAD_BUS_FOR_DEVICE,
Anthony Liguori0d936922012-05-02 09:00:20 +0200439 driver, object_get_typename(OBJECT(bus)));
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600440 return NULL;
441 }
442 } else {
Anthony Liguori0d936922012-05-02 09:00:20 +0200443 bus = qbus_find_recursive(sysbus_get_default(), NULL, k->bus_type);
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600444 if (!bus) {
445 qerror_report(QERR_NO_BUS_FOR_DEVICE,
Alberto Garciac3594ed2012-08-14 14:41:28 +0300446 k->bus_type, driver);
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600447 return NULL;
448 }
449 }
450 if (qdev_hotplug && !bus->allow_hotplug) {
451 qerror_report(QERR_BUS_NO_HOTPLUG, bus->name);
452 return NULL;
453 }
454
455 if (!bus) {
456 bus = sysbus_get_default();
457 }
458
459 /* create device, set properties */
460 qdev = DEVICE(object_new(driver));
461 qdev_set_parent_bus(qdev, bus);
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600462
463 id = qemu_opts_id(opts);
464 if (id) {
465 qdev->id = id;
Anthony Liguorib2d4b3f2012-02-12 11:36:24 -0600466 }
467 if (qemu_opt_foreach(opts, set_property, qdev, 1) != 0) {
468 qdev_free(qdev);
469 return NULL;
470 }
Anthony Liguorib2d4b3f2012-02-12 11:36:24 -0600471 if (qdev->id) {
Anthony Liguori57c9faf2012-01-30 08:55:55 -0600472 object_property_add_child(qdev_get_peripheral(), qdev->id,
473 OBJECT(qdev), NULL);
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600474 } else {
475 static int anon_count;
476 gchar *name = g_strdup_printf("device[%d]", anon_count++);
Anthony Liguori57c9faf2012-01-30 08:55:55 -0600477 object_property_add_child(qdev_get_peripheral_anon(), name,
478 OBJECT(qdev), NULL);
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600479 g_free(name);
480 }
Paolo Bonzinif424d5c2012-03-27 18:38:46 +0200481 if (qdev_init(qdev) < 0) {
482 qerror_report(QERR_DEVICE_INIT_FAILED, driver);
483 return NULL;
484 }
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600485 qdev->opts = opts;
486 return qdev;
487}
488
489
490#define qdev_printf(fmt, ...) monitor_printf(mon, "%*s" fmt, indent, "", ## __VA_ARGS__)
491static void qbus_print(Monitor *mon, BusState *bus, int indent);
492
493static void qdev_print_props(Monitor *mon, DeviceState *dev, Property *props,
Paolo Bonzinibce54472012-03-28 18:12:47 +0200494 int indent)
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600495{
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600496 if (!props)
497 return;
Paolo Bonzinid8229792012-02-02 09:47:13 +0100498 for (; props->name; props++) {
499 Error *err = NULL;
500 char *value;
501 char *legacy_name = g_strdup_printf("legacy-%s", props->name);
502 if (object_property_get_type(OBJECT(dev), legacy_name, NULL)) {
503 value = object_property_get_str(OBJECT(dev), legacy_name, &err);
504 } else {
Paolo Bonzini8185bfc2012-05-02 13:31:00 +0200505 value = object_property_print(OBJECT(dev), props->name, &err);
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600506 }
Paolo Bonzinid8229792012-02-02 09:47:13 +0100507 g_free(legacy_name);
508
509 if (err) {
510 error_free(err);
511 continue;
512 }
Paolo Bonzinibce54472012-03-28 18:12:47 +0200513 qdev_printf("%s = %s\n", props->name,
Paolo Bonzinid8229792012-02-02 09:47:13 +0100514 value && *value ? value : "<null>");
515 g_free(value);
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600516 }
517}
518
Anthony Liguori0d936922012-05-02 09:00:20 +0200519static void bus_print_dev(BusState *bus, Monitor *mon, DeviceState *dev, int indent)
520{
521 BusClass *bc = BUS_GET_CLASS(bus);
522
523 if (bc->print_dev) {
524 bc->print_dev(mon, dev, indent);
525 }
526}
527
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600528static void qdev_print(Monitor *mon, DeviceState *dev, int indent)
529{
Paolo Bonzinibce54472012-03-28 18:12:47 +0200530 ObjectClass *class;
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600531 BusState *child;
532 qdev_printf("dev: %s, id \"%s\"\n", object_get_typename(OBJECT(dev)),
533 dev->id ? dev->id : "");
534 indent += 2;
535 if (dev->num_gpio_in) {
536 qdev_printf("gpio-in %d\n", dev->num_gpio_in);
537 }
538 if (dev->num_gpio_out) {
539 qdev_printf("gpio-out %d\n", dev->num_gpio_out);
540 }
Paolo Bonzinibce54472012-03-28 18:12:47 +0200541 class = object_get_class(OBJECT(dev));
542 do {
543 qdev_print_props(mon, dev, DEVICE_CLASS(class)->props, indent);
544 class = object_class_get_parent(class);
545 } while (class != object_class_by_name(TYPE_DEVICE));
Gerd Hoffmannda9fbe72012-07-11 12:21:23 +0200546 bus_print_dev(dev->parent_bus, mon, dev, indent);
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600547 QLIST_FOREACH(child, &dev->child_bus, sibling) {
548 qbus_print(mon, child, indent);
549 }
550}
551
552static void qbus_print(Monitor *mon, BusState *bus, int indent)
553{
Anthony Liguori0866aca2011-12-23 15:34:39 -0600554 BusChild *kid;
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600555
556 qdev_printf("bus: %s\n", bus->name);
557 indent += 2;
Anthony Liguori0d936922012-05-02 09:00:20 +0200558 qdev_printf("type %s\n", object_get_typename(OBJECT(bus)));
Anthony Liguori0866aca2011-12-23 15:34:39 -0600559 QTAILQ_FOREACH(kid, &bus->children, sibling) {
560 DeviceState *dev = kid->child;
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600561 qdev_print(mon, dev, indent);
562 }
563}
564#undef qdev_printf
565
566void do_info_qtree(Monitor *mon)
567{
568 if (sysbus_get_default())
569 qbus_print(mon, sysbus_get_default(), 0);
570}
571
572void do_info_qdm(Monitor *mon)
573{
574 object_class_foreach(qdev_print_devinfo, TYPE_DEVICE, false, NULL);
575}
576
577int do_device_add(Monitor *mon, const QDict *qdict, QObject **ret_data)
578{
Luiz Capitulino4e899782012-04-18 17:24:01 -0300579 Error *local_err = NULL;
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600580 QemuOpts *opts;
581
Luiz Capitulino4e899782012-04-18 17:24:01 -0300582 opts = qemu_opts_from_qdict(qemu_find_opts("device"), qdict, &local_err);
583 if (error_is_set(&local_err)) {
584 qerror_report_err(local_err);
585 error_free(local_err);
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600586 return -1;
587 }
588 if (!monitor_cur_is_qmp() && qdev_device_help(opts)) {
589 qemu_opts_del(opts);
590 return 0;
591 }
592 if (!qdev_device_add(opts)) {
593 qemu_opts_del(opts);
594 return -1;
595 }
596 return 0;
597}
598
Luiz Capitulinoa15fef22012-03-29 12:38:50 -0300599void qmp_device_del(const char *id, Error **errp)
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600600{
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600601 DeviceState *dev;
602
603 dev = qdev_find_recursive(sysbus_get_default(), id);
604 if (NULL == dev) {
Luiz Capitulinoa15fef22012-03-29 12:38:50 -0300605 error_set(errp, QERR_DEVICE_NOT_FOUND, id);
606 return;
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600607 }
Luiz Capitulino56f91072012-03-14 17:37:38 -0300608
Luiz Capitulinoa15fef22012-03-29 12:38:50 -0300609 qdev_unplug(dev, errp);
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600610}
611
612void qdev_machine_init(void)
613{
614 qdev_get_peripheral_anon();
615 qdev_get_peripheral();
616}