2 * Dynamic device configuration and creation.
4 * Copyright (c) 2009 CodeSourcery
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.
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.
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/>.
20 /* The theory here is that it should be possible to create a machine without
21 knowledge of specific devices. Historically board init routines have
22 passed a bunch of arguments to each device, requiring the board know
23 exactly which device it is dealing with. This file provides an abstract
24 API for device configuration and initialization. Devices will generally
25 inherit from a particular bus (e.g. PCI or I2C) rather than
29 #include "hw/fw-path-provider.h"
30 #include "sysemu/sysemu.h"
31 #include "qapi/error.h"
32 #include "qapi/qmp/qerror.h"
33 #include "qapi/visitor.h"
34 #include "qapi/qmp/qjson.h"
35 #include "hw/hotplug.h"
36 #include "hw/boards.h"
37 #include "qapi-event.h"
40 static bool qdev_hot_added
= false;
41 static bool qdev_hot_removed
= false;
43 const VMStateDescription
*qdev_get_vmsd(DeviceState
*dev
)
45 DeviceClass
*dc
= DEVICE_GET_CLASS(dev
);
49 const char *qdev_fw_name(DeviceState
*dev
)
51 DeviceClass
*dc
= DEVICE_GET_CLASS(dev
);
57 return object_get_typename(OBJECT(dev
));
60 static void qdev_property_add_legacy(DeviceState
*dev
, Property
*prop
,
63 static void bus_remove_child(BusState
*bus
, DeviceState
*child
)
67 QTAILQ_FOREACH(kid
, &bus
->children
, sibling
) {
68 if (kid
->child
== child
) {
71 snprintf(name
, sizeof(name
), "child[%d]", kid
->index
);
72 QTAILQ_REMOVE(&bus
->children
, kid
, sibling
);
74 /* This gives back ownership of kid->child back to us. */
75 object_property_del(OBJECT(bus
), name
, NULL
);
76 object_unref(OBJECT(kid
->child
));
83 static void bus_add_child(BusState
*bus
, DeviceState
*child
)
86 BusChild
*kid
= g_malloc0(sizeof(*kid
));
88 kid
->index
= bus
->max_index
++;
90 object_ref(OBJECT(kid
->child
));
92 QTAILQ_INSERT_HEAD(&bus
->children
, kid
, sibling
);
94 /* This transfers ownership of kid->child to the property. */
95 snprintf(name
, sizeof(name
), "child[%d]", kid
->index
);
96 object_property_add_link(OBJECT(bus
), name
,
97 object_get_typename(OBJECT(child
)),
98 (Object
**)&kid
->child
,
99 NULL
, /* read-only property */
100 0, /* return ownership on prop deletion */
104 void qdev_set_parent_bus(DeviceState
*dev
, BusState
*bus
)
106 dev
->parent_bus
= bus
;
107 object_ref(OBJECT(bus
));
108 bus_add_child(bus
, dev
);
111 static void qbus_set_hotplug_handler_internal(BusState
*bus
, Object
*handler
,
115 object_property_set_link(OBJECT(bus
), OBJECT(handler
),
116 QDEV_HOTPLUG_HANDLER_PROPERTY
, errp
);
119 void qbus_set_hotplug_handler(BusState
*bus
, DeviceState
*handler
, Error
**errp
)
121 qbus_set_hotplug_handler_internal(bus
, OBJECT(handler
), errp
);
124 void qbus_set_bus_hotplug_handler(BusState
*bus
, Error
**errp
)
126 qbus_set_hotplug_handler_internal(bus
, OBJECT(bus
), errp
);
129 /* Create a new device. This only initializes the device state structure
130 and allows properties to be set. qdev_init should be called to
131 initialize the actual device emulation. */
132 DeviceState
*qdev_create(BusState
*bus
, const char *name
)
136 dev
= qdev_try_create(bus
, name
);
139 error_report("Unknown device '%s' for bus '%s'", name
,
140 object_get_typename(OBJECT(bus
)));
142 error_report("Unknown device '%s' for default sysbus", name
);
150 DeviceState
*qdev_try_create(BusState
*bus
, const char *type
)
154 if (object_class_by_name(type
) == NULL
) {
157 dev
= DEVICE(object_new(type
));
163 bus
= sysbus_get_default();
166 qdev_set_parent_bus(dev
, bus
);
167 object_unref(OBJECT(dev
));
171 /* Initialize a device. Device properties should be set before calling
172 this function. IRQs and MMIO regions should be connected/mapped after
173 calling this function.
174 On failure, destroy the device and return negative value.
175 Return 0 on success. */
176 int qdev_init(DeviceState
*dev
)
178 Error
*local_err
= NULL
;
180 assert(!dev
->realized
);
182 object_property_set_bool(OBJECT(dev
), true, "realized", &local_err
);
183 if (local_err
!= NULL
) {
184 qerror_report_err(local_err
);
185 error_free(local_err
);
186 object_unparent(OBJECT(dev
));
192 static void device_realize(DeviceState
*dev
, Error
**errp
)
194 DeviceClass
*dc
= DEVICE_GET_CLASS(dev
);
197 int rc
= dc
->init(dev
);
199 error_setg(errp
, "Device initialization failed.");
205 static void device_unrealize(DeviceState
*dev
, Error
**errp
)
207 DeviceClass
*dc
= DEVICE_GET_CLASS(dev
);
210 int rc
= dc
->exit(dev
);
212 error_setg(errp
, "Device exit failed.");
218 void qdev_set_legacy_instance_id(DeviceState
*dev
, int alias_id
,
219 int required_for_version
)
221 assert(!dev
->realized
);
222 dev
->instance_id_alias
= alias_id
;
223 dev
->alias_required_for_version
= required_for_version
;
226 static HotplugHandler
*qdev_get_hotplug_handler(DeviceState
*dev
)
228 HotplugHandler
*hotplug_ctrl
= NULL
;
230 if (dev
->parent_bus
&& dev
->parent_bus
->hotplug_handler
) {
231 hotplug_ctrl
= dev
->parent_bus
->hotplug_handler
;
232 } else if (object_dynamic_cast(qdev_get_machine(), TYPE_MACHINE
)) {
233 MachineState
*machine
= MACHINE(qdev_get_machine());
234 MachineClass
*mc
= MACHINE_GET_CLASS(machine
);
236 if (mc
->get_hotplug_handler
) {
237 hotplug_ctrl
= mc
->get_hotplug_handler(machine
, dev
);
243 void qdev_unplug(DeviceState
*dev
, Error
**errp
)
245 DeviceClass
*dc
= DEVICE_GET_CLASS(dev
);
246 HotplugHandler
*hotplug_ctrl
;
247 HotplugHandlerClass
*hdc
;
249 if (dev
->parent_bus
&& !qbus_is_hotpluggable(dev
->parent_bus
)) {
250 error_set(errp
, QERR_BUS_NO_HOTPLUG
, dev
->parent_bus
->name
);
254 if (!dc
->hotpluggable
) {
255 error_set(errp
, QERR_DEVICE_NO_HOTPLUG
,
256 object_get_typename(OBJECT(dev
)));
260 qdev_hot_removed
= true;
262 hotplug_ctrl
= qdev_get_hotplug_handler(dev
);
263 /* hotpluggable device MUST have HotplugHandler, if it doesn't
264 * then something is very wrong with it */
265 g_assert(hotplug_ctrl
);
267 /* If device supports async unplug just request it to be done,
268 * otherwise just remove it synchronously */
269 hdc
= HOTPLUG_HANDLER_GET_CLASS(hotplug_ctrl
);
270 if (hdc
->unplug_request
) {
271 hotplug_handler_unplug_request(hotplug_ctrl
, dev
, errp
);
273 hotplug_handler_unplug(hotplug_ctrl
, dev
, errp
);
277 static int qdev_reset_one(DeviceState
*dev
, void *opaque
)
284 static int qbus_reset_one(BusState
*bus
, void *opaque
)
286 BusClass
*bc
= BUS_GET_CLASS(bus
);
293 void qdev_reset_all(DeviceState
*dev
)
295 qdev_walk_children(dev
, NULL
, NULL
, qdev_reset_one
, qbus_reset_one
, NULL
);
298 void qbus_reset_all(BusState
*bus
)
300 qbus_walk_children(bus
, NULL
, NULL
, qdev_reset_one
, qbus_reset_one
, NULL
);
303 void qbus_reset_all_fn(void *opaque
)
305 BusState
*bus
= opaque
;
309 /* can be used as ->unplug() callback for the simple cases */
310 void qdev_simple_device_unplug_cb(HotplugHandler
*hotplug_dev
,
311 DeviceState
*dev
, Error
**errp
)
314 object_unparent(OBJECT(dev
));
317 /* Like qdev_init(), but terminate program via error_report() instead of
318 returning an error value. This is okay during machine creation.
319 Don't use for hotplug, because there callers need to recover from
320 failure. Exception: if you know the device's init() callback can't
321 fail, then qdev_init_nofail() can't fail either, and is therefore
322 usable even then. But relying on the device implementation that
323 way is somewhat unclean, and best avoided. */
324 void qdev_init_nofail(DeviceState
*dev
)
326 const char *typename
= object_get_typename(OBJECT(dev
));
328 if (qdev_init(dev
) < 0) {
329 error_report("Initialization of device %s failed", typename
);
334 void qdev_machine_creation_done(void)
337 * ok, initial machine setup is done, starting from now we can
338 * only create hotpluggable devices
343 bool qdev_machine_modified(void)
345 return qdev_hot_added
|| qdev_hot_removed
;
348 BusState
*qdev_get_parent_bus(DeviceState
*dev
)
350 return dev
->parent_bus
;
353 static NamedGPIOList
*qdev_get_named_gpio_list(DeviceState
*dev
,
358 QLIST_FOREACH(ngl
, &dev
->gpios
, node
) {
359 /* NULL is a valid and matchable name, otherwise do a normal
362 if ((!ngl
->name
&& !name
) ||
363 (name
&& ngl
->name
&& strcmp(name
, ngl
->name
) == 0)) {
368 ngl
= g_malloc0(sizeof(*ngl
));
369 ngl
->name
= g_strdup(name
);
370 QLIST_INSERT_HEAD(&dev
->gpios
, ngl
, node
);
374 void qdev_init_gpio_in_named(DeviceState
*dev
, qemu_irq_handler handler
,
375 const char *name
, int n
)
378 NamedGPIOList
*gpio_list
= qdev_get_named_gpio_list(dev
, name
);
379 char *propname
= g_strdup_printf("%s[*]", name
? name
: "unnamed-gpio-in");
381 assert(gpio_list
->num_out
== 0 || !name
);
382 gpio_list
->in
= qemu_extend_irqs(gpio_list
->in
, gpio_list
->num_in
, handler
,
385 for (i
= gpio_list
->num_in
; i
< gpio_list
->num_in
+ n
; i
++) {
386 object_property_add_child(OBJECT(dev
), propname
,
387 OBJECT(gpio_list
->in
[i
]), &error_abort
);
391 gpio_list
->num_in
+= n
;
394 void qdev_init_gpio_in(DeviceState
*dev
, qemu_irq_handler handler
, int n
)
396 qdev_init_gpio_in_named(dev
, handler
, NULL
, n
);
399 void qdev_init_gpio_out_named(DeviceState
*dev
, qemu_irq
*pins
,
400 const char *name
, int n
)
403 NamedGPIOList
*gpio_list
= qdev_get_named_gpio_list(dev
, name
);
404 char *propname
= g_strdup_printf("%s[*]", name
? name
: "unnamed-gpio-out");
406 assert(gpio_list
->num_in
== 0 || !name
);
407 gpio_list
->num_out
+= n
;
409 for (i
= 0; i
< n
; ++i
) {
410 memset(&pins
[i
], 0, sizeof(*pins
));
411 object_property_add_link(OBJECT(dev
), propname
, TYPE_IRQ
,
413 object_property_allow_set_link
,
414 OBJ_PROP_LINK_UNREF_ON_RELEASE
,
420 void qdev_init_gpio_out(DeviceState
*dev
, qemu_irq
*pins
, int n
)
422 qdev_init_gpio_out_named(dev
, pins
, NULL
, n
);
425 qemu_irq
qdev_get_gpio_in_named(DeviceState
*dev
, const char *name
, int n
)
427 NamedGPIOList
*gpio_list
= qdev_get_named_gpio_list(dev
, name
);
429 assert(n
>= 0 && n
< gpio_list
->num_in
);
430 return gpio_list
->in
[n
];
433 qemu_irq
qdev_get_gpio_in(DeviceState
*dev
, int n
)
435 return qdev_get_gpio_in_named(dev
, NULL
, n
);
438 void qdev_connect_gpio_out_named(DeviceState
*dev
, const char *name
, int n
,
441 char *propname
= g_strdup_printf("%s[%d]",
442 name
? name
: "unnamed-gpio-out", n
);
444 /* We need a name for object_property_set_link to work. If the
445 * object has a parent, object_property_add_child will come back
446 * with an error without doing anything. If it has none, it will
447 * never fail. So we can just call it with a NULL Error pointer.
449 object_property_add_child(qdev_get_machine(), "non-qdev-gpio[*]",
452 object_property_set_link(OBJECT(dev
), OBJECT(pin
), propname
, &error_abort
);
456 qemu_irq
qdev_get_gpio_out_connector(DeviceState
*dev
, const char *name
, int n
)
458 char *propname
= g_strdup_printf("%s[%d]",
459 name
? name
: "unnamed-gpio-out", n
);
461 qemu_irq ret
= (qemu_irq
)object_property_get_link(OBJECT(dev
), propname
,
467 /* disconnect a GPIO ouput, returning the disconnected input (if any) */
469 static qemu_irq
qdev_disconnect_gpio_out_named(DeviceState
*dev
,
470 const char *name
, int n
)
472 char *propname
= g_strdup_printf("%s[%d]",
473 name
? name
: "unnamed-gpio-out", n
);
475 qemu_irq ret
= (qemu_irq
)object_property_get_link(OBJECT(dev
), propname
,
478 object_property_set_link(OBJECT(dev
), NULL
, propname
, NULL
);
484 qemu_irq
qdev_intercept_gpio_out(DeviceState
*dev
, qemu_irq icpt
,
485 const char *name
, int n
)
487 qemu_irq disconnected
= qdev_disconnect_gpio_out_named(dev
, name
, n
);
488 qdev_connect_gpio_out_named(dev
, name
, n
, icpt
);
492 void qdev_connect_gpio_out(DeviceState
* dev
, int n
, qemu_irq pin
)
494 qdev_connect_gpio_out_named(dev
, NULL
, n
, pin
);
497 void qdev_pass_gpios(DeviceState
*dev
, DeviceState
*container
,
501 NamedGPIOList
*ngl
= qdev_get_named_gpio_list(dev
, name
);
503 for (i
= 0; i
< ngl
->num_in
; i
++) {
504 const char *nm
= ngl
->name
? ngl
->name
: "unnamed-gpio-in";
505 char *propname
= g_strdup_printf("%s[%d]", nm
, i
);
507 object_property_add_alias(OBJECT(container
), propname
,
508 OBJECT(dev
), propname
,
511 for (i
= 0; i
< ngl
->num_out
; i
++) {
512 const char *nm
= ngl
->name
? ngl
->name
: "unnamed-gpio-out";
513 char *propname
= g_strdup_printf("%s[%d]", nm
, i
);
515 object_property_add_alias(OBJECT(container
), propname
,
516 OBJECT(dev
), propname
,
519 QLIST_REMOVE(ngl
, node
);
520 QLIST_INSERT_HEAD(&container
->gpios
, ngl
, node
);
523 BusState
*qdev_get_child_bus(DeviceState
*dev
, const char *name
)
527 QLIST_FOREACH(bus
, &dev
->child_bus
, sibling
) {
528 if (strcmp(name
, bus
->name
) == 0) {
535 int qbus_walk_children(BusState
*bus
,
536 qdev_walkerfn
*pre_devfn
, qbus_walkerfn
*pre_busfn
,
537 qdev_walkerfn
*post_devfn
, qbus_walkerfn
*post_busfn
,
544 err
= pre_busfn(bus
, opaque
);
550 QTAILQ_FOREACH(kid
, &bus
->children
, sibling
) {
551 err
= qdev_walk_children(kid
->child
,
552 pre_devfn
, pre_busfn
,
553 post_devfn
, post_busfn
, opaque
);
560 err
= post_busfn(bus
, opaque
);
569 int qdev_walk_children(DeviceState
*dev
,
570 qdev_walkerfn
*pre_devfn
, qbus_walkerfn
*pre_busfn
,
571 qdev_walkerfn
*post_devfn
, qbus_walkerfn
*post_busfn
,
578 err
= pre_devfn(dev
, opaque
);
584 QLIST_FOREACH(bus
, &dev
->child_bus
, sibling
) {
585 err
= qbus_walk_children(bus
, pre_devfn
, pre_busfn
,
586 post_devfn
, post_busfn
, opaque
);
593 err
= post_devfn(dev
, opaque
);
602 DeviceState
*qdev_find_recursive(BusState
*bus
, const char *id
)
608 QTAILQ_FOREACH(kid
, &bus
->children
, sibling
) {
609 DeviceState
*dev
= kid
->child
;
611 if (dev
->id
&& strcmp(dev
->id
, id
) == 0) {
615 QLIST_FOREACH(child
, &dev
->child_bus
, sibling
) {
616 ret
= qdev_find_recursive(child
, id
);
625 static void qbus_realize(BusState
*bus
, DeviceState
*parent
, const char *name
)
627 const char *typename
= object_get_typename(OBJECT(bus
));
632 bus
->parent
= parent
;
635 bus
->name
= g_strdup(name
);
636 } else if (bus
->parent
&& bus
->parent
->id
) {
637 /* parent device has id -> use it plus parent-bus-id for bus name */
638 bus_id
= bus
->parent
->num_child_bus
;
640 len
= strlen(bus
->parent
->id
) + 16;
642 snprintf(buf
, len
, "%s.%d", bus
->parent
->id
, bus_id
);
645 /* no id -> use lowercase bus type plus global bus-id for bus name */
646 bc
= BUS_GET_CLASS(bus
);
647 bus_id
= bc
->automatic_ids
++;
649 len
= strlen(typename
) + 16;
651 len
= snprintf(buf
, len
, "%s.%d", typename
, bus_id
);
652 for (i
= 0; i
< len
; i
++) {
653 buf
[i
] = qemu_tolower(buf
[i
]);
659 QLIST_INSERT_HEAD(&bus
->parent
->child_bus
, bus
, sibling
);
660 bus
->parent
->num_child_bus
++;
661 object_property_add_child(OBJECT(bus
->parent
), bus
->name
, OBJECT(bus
), NULL
);
662 object_unref(OBJECT(bus
));
663 } else if (bus
!= sysbus_get_default()) {
664 /* TODO: once all bus devices are qdevified,
665 only reset handler for main_system_bus should be registered here. */
666 qemu_register_reset(qbus_reset_all_fn
, bus
);
670 static void bus_unparent(Object
*obj
)
672 BusState
*bus
= BUS(obj
);
675 while ((kid
= QTAILQ_FIRST(&bus
->children
)) != NULL
) {
676 DeviceState
*dev
= kid
->child
;
677 object_unparent(OBJECT(dev
));
680 QLIST_REMOVE(bus
, sibling
);
681 bus
->parent
->num_child_bus
--;
684 assert(bus
!= sysbus_get_default()); /* main_system_bus is never freed */
685 qemu_unregister_reset(qbus_reset_all_fn
, bus
);
689 static bool bus_get_realized(Object
*obj
, Error
**errp
)
691 BusState
*bus
= BUS(obj
);
693 return bus
->realized
;
696 static void bus_set_realized(Object
*obj
, bool value
, Error
**errp
)
698 BusState
*bus
= BUS(obj
);
699 BusClass
*bc
= BUS_GET_CLASS(bus
);
701 Error
*local_err
= NULL
;
703 if (value
&& !bus
->realized
) {
705 bc
->realize(bus
, &local_err
);
708 /* TODO: recursive realization */
709 } else if (!value
&& bus
->realized
) {
710 QTAILQ_FOREACH(kid
, &bus
->children
, sibling
) {
711 DeviceState
*dev
= kid
->child
;
712 object_property_set_bool(OBJECT(dev
), false, "realized",
714 if (local_err
!= NULL
) {
718 if (bc
->unrealize
&& local_err
== NULL
) {
719 bc
->unrealize(bus
, &local_err
);
723 if (local_err
!= NULL
) {
724 error_propagate(errp
, local_err
);
728 bus
->realized
= value
;
731 void qbus_create_inplace(void *bus
, size_t size
, const char *typename
,
732 DeviceState
*parent
, const char *name
)
734 object_initialize(bus
, size
, typename
);
735 qbus_realize(bus
, parent
, name
);
738 BusState
*qbus_create(const char *typename
, DeviceState
*parent
, const char *name
)
742 bus
= BUS(object_new(typename
));
743 qbus_realize(bus
, parent
, name
);
748 static char *bus_get_fw_dev_path(BusState
*bus
, DeviceState
*dev
)
750 BusClass
*bc
= BUS_GET_CLASS(bus
);
752 if (bc
->get_fw_dev_path
) {
753 return bc
->get_fw_dev_path(dev
);
759 static char *qdev_get_fw_dev_path_from_handler(BusState
*bus
, DeviceState
*dev
)
761 Object
*obj
= OBJECT(dev
);
764 while (!d
&& obj
->parent
) {
766 d
= fw_path_provider_try_get_dev_path(obj
, bus
, dev
);
771 static int qdev_get_fw_dev_path_helper(DeviceState
*dev
, char *p
, int size
)
775 if (dev
&& dev
->parent_bus
) {
777 l
= qdev_get_fw_dev_path_helper(dev
->parent_bus
->parent
, p
, size
);
778 d
= qdev_get_fw_dev_path_from_handler(dev
->parent_bus
, dev
);
780 d
= bus_get_fw_dev_path(dev
->parent_bus
, dev
);
783 l
+= snprintf(p
+ l
, size
- l
, "%s", d
);
789 l
+= snprintf(p
+ l
, size
- l
, "/");
794 char* qdev_get_fw_dev_path(DeviceState
*dev
)
799 l
= qdev_get_fw_dev_path_helper(dev
, path
, 128);
803 return g_strdup(path
);
806 char *qdev_get_dev_path(DeviceState
*dev
)
810 if (!dev
|| !dev
->parent_bus
) {
814 bc
= BUS_GET_CLASS(dev
->parent_bus
);
815 if (bc
->get_dev_path
) {
816 return bc
->get_dev_path(dev
);
823 * Legacy property handling
826 static void qdev_get_legacy_property(Object
*obj
, Visitor
*v
, void *opaque
,
827 const char *name
, Error
**errp
)
829 DeviceState
*dev
= DEVICE(obj
);
830 Property
*prop
= opaque
;
835 prop
->info
->print(dev
, prop
, buffer
, sizeof(buffer
));
836 visit_type_str(v
, &ptr
, name
, errp
);
840 * @qdev_add_legacy_property - adds a legacy property
842 * Do not use this is new code! Properties added through this interface will
843 * be given names and types in the "legacy" namespace.
845 * Legacy properties are string versions of other OOM properties. The format
846 * of the string depends on the property type.
848 static void qdev_property_add_legacy(DeviceState
*dev
, Property
*prop
,
853 /* Register pointer properties as legacy properties */
854 if (!prop
->info
->print
&& prop
->info
->get
) {
858 name
= g_strdup_printf("legacy-%s", prop
->name
);
859 object_property_add(OBJECT(dev
), name
, "str",
860 prop
->info
->print
? qdev_get_legacy_property
: prop
->info
->get
,
869 * @qdev_property_add_static - add a @Property to a device.
871 * Static properties access data in a struct. The actual type of the
872 * property and the field depends on the property type.
874 void qdev_property_add_static(DeviceState
*dev
, Property
*prop
,
877 Error
*local_err
= NULL
;
878 Object
*obj
= OBJECT(dev
);
881 * TODO qdev_prop_ptr does not have getters or setters. It must
882 * go now that it can be replaced with links. The test should be
883 * removed along with it: all static properties are read/write.
885 if (!prop
->info
->get
&& !prop
->info
->set
) {
889 object_property_add(obj
, prop
->name
, prop
->info
->name
,
890 prop
->info
->get
, prop
->info
->set
,
895 error_propagate(errp
, local_err
);
899 object_property_set_description(obj
, prop
->name
,
900 prop
->info
->description
,
903 if (prop
->qtype
== QTYPE_NONE
) {
907 if (prop
->qtype
== QTYPE_QBOOL
) {
908 object_property_set_bool(obj
, prop
->defval
, prop
->name
, &error_abort
);
909 } else if (prop
->info
->enum_table
) {
910 object_property_set_str(obj
, prop
->info
->enum_table
[prop
->defval
],
911 prop
->name
, &error_abort
);
912 } else if (prop
->qtype
== QTYPE_QINT
) {
913 object_property_set_int(obj
, prop
->defval
, prop
->name
, &error_abort
);
917 /* @qdev_alias_all_properties - Add alias properties to the source object for
918 * all qdev properties on the target DeviceState.
920 void qdev_alias_all_properties(DeviceState
*target
, Object
*source
)
925 class = object_get_class(OBJECT(target
));
927 DeviceClass
*dc
= DEVICE_CLASS(class);
929 for (prop
= dc
->props
; prop
&& prop
->name
; prop
++) {
930 object_property_add_alias(source
, prop
->name
,
931 OBJECT(target
), prop
->name
,
934 class = object_class_get_parent(class);
935 } while (class != object_class_by_name(TYPE_DEVICE
));
938 static int qdev_add_hotpluggable_device(Object
*obj
, void *opaque
)
940 GSList
**list
= opaque
;
941 DeviceState
*dev
= DEVICE(obj
);
943 if (dev
->realized
&& object_property_get_bool(obj
, "hotpluggable", NULL
)) {
944 *list
= g_slist_append(*list
, dev
);
950 GSList
*qdev_build_hotpluggable_device_list(Object
*peripheral
)
954 object_child_foreach(peripheral
, qdev_add_hotpluggable_device
, &list
);
959 static bool device_get_realized(Object
*obj
, Error
**errp
)
961 DeviceState
*dev
= DEVICE(obj
);
962 return dev
->realized
;
965 static void device_set_realized(Object
*obj
, bool value
, Error
**errp
)
967 DeviceState
*dev
= DEVICE(obj
);
968 DeviceClass
*dc
= DEVICE_GET_CLASS(dev
);
969 HotplugHandler
*hotplug_ctrl
;
971 Error
*local_err
= NULL
;
973 if (dev
->hotplugged
&& !dc
->hotpluggable
) {
974 error_set(errp
, QERR_DEVICE_NO_HOTPLUG
, object_get_typename(obj
));
978 if (value
&& !dev
->realized
) {
980 static int unattached_count
;
981 gchar
*name
= g_strdup_printf("device[%d]", unattached_count
++);
983 object_property_add_child(container_get(qdev_get_machine(),
985 name
, obj
, &error_abort
);
990 dc
->realize(dev
, &local_err
);
993 if (local_err
!= NULL
) {
997 hotplug_ctrl
= qdev_get_hotplug_handler(dev
);
999 hotplug_handler_plug(hotplug_ctrl
, dev
, &local_err
);
1002 if (local_err
!= NULL
) {
1003 goto post_realize_fail
;
1006 if (qdev_get_vmsd(dev
)) {
1007 vmstate_register_with_alias_id(dev
, -1, qdev_get_vmsd(dev
), dev
,
1008 dev
->instance_id_alias
,
1009 dev
->alias_required_for_version
);
1012 QLIST_FOREACH(bus
, &dev
->child_bus
, sibling
) {
1013 object_property_set_bool(OBJECT(bus
), true, "realized",
1015 if (local_err
!= NULL
) {
1016 goto child_realize_fail
;
1019 if (dev
->hotplugged
) {
1022 dev
->pending_deleted_event
= false;
1023 } else if (!value
&& dev
->realized
) {
1024 Error
**local_errp
= NULL
;
1025 QLIST_FOREACH(bus
, &dev
->child_bus
, sibling
) {
1026 local_errp
= local_err
? NULL
: &local_err
;
1027 object_property_set_bool(OBJECT(bus
), false, "realized",
1030 if (qdev_get_vmsd(dev
)) {
1031 vmstate_unregister(dev
, qdev_get_vmsd(dev
), dev
);
1033 if (dc
->unrealize
) {
1034 local_errp
= local_err
? NULL
: &local_err
;
1035 dc
->unrealize(dev
, local_errp
);
1037 dev
->pending_deleted_event
= true;
1040 if (local_err
!= NULL
) {
1044 dev
->realized
= value
;
1048 QLIST_FOREACH(bus
, &dev
->child_bus
, sibling
) {
1049 object_property_set_bool(OBJECT(bus
), false, "realized",
1053 if (qdev_get_vmsd(dev
)) {
1054 vmstate_unregister(dev
, qdev_get_vmsd(dev
), dev
);
1058 if (dc
->unrealize
) {
1059 dc
->unrealize(dev
, NULL
);
1063 error_propagate(errp
, local_err
);
1067 static bool device_get_hotpluggable(Object
*obj
, Error
**errp
)
1069 DeviceClass
*dc
= DEVICE_GET_CLASS(obj
);
1070 DeviceState
*dev
= DEVICE(obj
);
1072 return dc
->hotpluggable
&& (dev
->parent_bus
== NULL
||
1073 qbus_is_hotpluggable(dev
->parent_bus
));
1076 static bool device_get_hotplugged(Object
*obj
, Error
**err
)
1078 DeviceState
*dev
= DEVICE(obj
);
1080 return dev
->hotplugged
;
1083 static void device_set_hotplugged(Object
*obj
, bool value
, Error
**err
)
1085 DeviceState
*dev
= DEVICE(obj
);
1087 dev
->hotplugged
= value
;
1090 static void device_initfn(Object
*obj
)
1092 DeviceState
*dev
= DEVICE(obj
);
1097 dev
->hotplugged
= 1;
1098 qdev_hot_added
= true;
1101 dev
->instance_id_alias
= -1;
1102 dev
->realized
= false;
1104 object_property_add_bool(obj
, "realized",
1105 device_get_realized
, device_set_realized
, NULL
);
1106 object_property_add_bool(obj
, "hotpluggable",
1107 device_get_hotpluggable
, NULL
, NULL
);
1108 object_property_add_bool(obj
, "hotplugged",
1109 device_get_hotplugged
, device_set_hotplugged
,
1112 class = object_get_class(OBJECT(dev
));
1114 for (prop
= DEVICE_CLASS(class)->props
; prop
&& prop
->name
; prop
++) {
1115 qdev_property_add_legacy(dev
, prop
, &error_abort
);
1116 qdev_property_add_static(dev
, prop
, &error_abort
);
1118 class = object_class_get_parent(class);
1119 } while (class != object_class_by_name(TYPE_DEVICE
));
1121 object_property_add_link(OBJECT(dev
), "parent_bus", TYPE_BUS
,
1122 (Object
**)&dev
->parent_bus
, NULL
, 0,
1124 QLIST_INIT(&dev
->gpios
);
1127 static void device_post_init(Object
*obj
)
1130 qdev_prop_set_globals(DEVICE(obj
), &err
);
1132 qerror_report_err(err
);
1138 /* Unlink device from bus and free the structure. */
1139 static void device_finalize(Object
*obj
)
1141 NamedGPIOList
*ngl
, *next
;
1143 DeviceState
*dev
= DEVICE(obj
);
1144 qemu_opts_del(dev
->opts
);
1146 QLIST_FOREACH_SAFE(ngl
, &dev
->gpios
, node
, next
) {
1147 QLIST_REMOVE(ngl
, node
);
1148 qemu_free_irqs(ngl
->in
, ngl
->num_in
);
1151 /* ngl->out irqs are owned by the other end and should not be freed
1157 static void device_class_base_init(ObjectClass
*class, void *data
)
1159 DeviceClass
*klass
= DEVICE_CLASS(class);
1161 /* We explicitly look up properties in the superclasses,
1162 * so do not propagate them to the subclasses.
1164 klass
->props
= NULL
;
1167 static void device_unparent(Object
*obj
)
1169 DeviceState
*dev
= DEVICE(obj
);
1172 if (dev
->realized
) {
1173 object_property_set_bool(obj
, false, "realized", NULL
);
1175 while (dev
->num_child_bus
) {
1176 bus
= QLIST_FIRST(&dev
->child_bus
);
1177 object_unparent(OBJECT(bus
));
1179 if (dev
->parent_bus
) {
1180 bus_remove_child(dev
->parent_bus
, dev
);
1181 object_unref(OBJECT(dev
->parent_bus
));
1182 dev
->parent_bus
= NULL
;
1185 /* Only send event if the device had been completely realized */
1186 if (dev
->pending_deleted_event
) {
1187 gchar
*path
= object_get_canonical_path(OBJECT(dev
));
1189 qapi_event_send_device_deleted(!!dev
->id
, dev
->id
, path
, &error_abort
);
1194 static void device_class_init(ObjectClass
*class, void *data
)
1196 DeviceClass
*dc
= DEVICE_CLASS(class);
1198 class->unparent
= device_unparent
;
1199 dc
->realize
= device_realize
;
1200 dc
->unrealize
= device_unrealize
;
1202 /* by default all devices were considered as hotpluggable,
1203 * so with intent to check it in generic qdev_unplug() /
1204 * device_set_realized() functions make every device
1205 * hotpluggable. Devices that shouldn't be hotpluggable,
1206 * should override it in their class_init()
1208 dc
->hotpluggable
= true;
1211 void device_reset(DeviceState
*dev
)
1213 DeviceClass
*klass
= DEVICE_GET_CLASS(dev
);
1220 Object
*qdev_get_machine(void)
1225 dev
= container_get(object_get_root(), "/machine");
1231 static const TypeInfo device_type_info
= {
1232 .name
= TYPE_DEVICE
,
1233 .parent
= TYPE_OBJECT
,
1234 .instance_size
= sizeof(DeviceState
),
1235 .instance_init
= device_initfn
,
1236 .instance_post_init
= device_post_init
,
1237 .instance_finalize
= device_finalize
,
1238 .class_base_init
= device_class_base_init
,
1239 .class_init
= device_class_init
,
1241 .class_size
= sizeof(DeviceClass
),
1244 static void qbus_initfn(Object
*obj
)
1246 BusState
*bus
= BUS(obj
);
1248 QTAILQ_INIT(&bus
->children
);
1249 object_property_add_link(obj
, QDEV_HOTPLUG_HANDLER_PROPERTY
,
1250 TYPE_HOTPLUG_HANDLER
,
1251 (Object
**)&bus
->hotplug_handler
,
1252 object_property_allow_set_link
,
1253 OBJ_PROP_LINK_UNREF_ON_RELEASE
,
1255 object_property_add_bool(obj
, "realized",
1256 bus_get_realized
, bus_set_realized
, NULL
);
1259 static char *default_bus_get_fw_dev_path(DeviceState
*dev
)
1261 return g_strdup(object_get_typename(OBJECT(dev
)));
1264 static void bus_class_init(ObjectClass
*class, void *data
)
1266 BusClass
*bc
= BUS_CLASS(class);
1268 class->unparent
= bus_unparent
;
1269 bc
->get_fw_dev_path
= default_bus_get_fw_dev_path
;
1272 static void qbus_finalize(Object
*obj
)
1274 BusState
*bus
= BUS(obj
);
1276 g_free((char *)bus
->name
);
1279 static const TypeInfo bus_info
= {
1281 .parent
= TYPE_OBJECT
,
1282 .instance_size
= sizeof(BusState
),
1284 .class_size
= sizeof(BusClass
),
1285 .instance_init
= qbus_initfn
,
1286 .instance_finalize
= qbus_finalize
,
1287 .class_init
= bus_class_init
,
1290 static void qdev_register_types(void)
1292 type_register_static(&bus_info
);
1293 type_register_static(&device_type_info
);
1296 type_init(qdev_register_types
)