Merge tag 'v9.1.0'
[qemu/ar7.git] / hw / core / qdev.c
blobf3a996f57dee975f9c793f4db8e4db4271f496b5
1 /*
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.1 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
26 this API directly. */
28 #include "qemu/osdep.h"
29 #include "qapi/error.h"
30 #include "qapi/qapi-events-qdev.h"
31 #include "qapi/qmp/qdict.h"
32 #include "qapi/visitor.h"
33 #include "qemu/error-report.h"
34 #include "qemu/option.h"
35 #include "hw/irq.h"
36 #include "hw/qdev-properties.h"
37 #include "hw/boards.h"
38 #include "hw/sysbus.h"
39 #include "hw/qdev-clock.h"
40 #include "migration/vmstate.h"
41 #include "trace.h"
43 static bool qdev_hot_added = false;
44 bool qdev_hot_removed = false;
46 const VMStateDescription *qdev_get_vmsd(DeviceState *dev)
48 DeviceClass *dc = DEVICE_GET_CLASS(dev);
49 return dc->vmsd;
52 static void bus_free_bus_child(BusChild *kid)
54 object_unref(OBJECT(kid->child));
55 g_free(kid);
58 static void bus_remove_child(BusState *bus, DeviceState *child)
60 BusChild *kid;
62 QTAILQ_FOREACH(kid, &bus->children, sibling) {
63 if (kid->child == child) {
64 char name[32];
66 snprintf(name, sizeof(name), "child[%d]", kid->index);
67 QTAILQ_REMOVE_RCU(&bus->children, kid, sibling);
69 bus->num_children--;
71 /* This gives back ownership of kid->child back to us. */
72 object_property_del(OBJECT(bus), name);
74 /* free the bus kid, when it is safe to do so*/
75 call_rcu(kid, bus_free_bus_child, rcu);
76 break;
81 static void bus_add_child(BusState *bus, DeviceState *child)
83 char name[32];
84 BusChild *kid = g_malloc0(sizeof(*kid));
86 bus->num_children++;
87 kid->index = bus->max_index++;
88 kid->child = child;
89 object_ref(OBJECT(kid->child));
91 QTAILQ_INSERT_HEAD_RCU(&bus->children, kid, sibling);
93 /* This transfers ownership of kid->child to the property. */
94 snprintf(name, sizeof(name), "child[%d]", kid->index);
95 object_property_add_link(OBJECT(bus), name,
96 object_get_typename(OBJECT(child)),
97 (Object **)&kid->child,
98 NULL, /* read-only property */
99 0);
102 static bool bus_check_address(BusState *bus, DeviceState *child, Error **errp)
104 BusClass *bc = BUS_GET_CLASS(bus);
105 return !bc->check_address || bc->check_address(bus, child, errp);
108 bool qdev_set_parent_bus(DeviceState *dev, BusState *bus, Error **errp)
110 BusState *old_parent_bus = dev->parent_bus;
111 DeviceClass *dc = DEVICE_GET_CLASS(dev);
113 assert(dc->bus_type && object_dynamic_cast(OBJECT(bus), dc->bus_type));
115 if (!bus_check_address(bus, dev, errp)) {
116 return false;
119 if (old_parent_bus) {
120 trace_qdev_update_parent_bus(dev, object_get_typename(OBJECT(dev)),
121 old_parent_bus, object_get_typename(OBJECT(old_parent_bus)),
122 OBJECT(bus), object_get_typename(OBJECT(bus)));
124 * Keep a reference to the device while it's not plugged into
125 * any bus, to avoid it potentially evaporating when it is
126 * dereffed in bus_remove_child().
127 * Also keep the ref of the parent bus until the end, so that
128 * we can safely call resettable_change_parent() below.
130 object_ref(OBJECT(dev));
131 bus_remove_child(dev->parent_bus, dev);
133 dev->parent_bus = bus;
134 object_ref(OBJECT(bus));
135 bus_add_child(bus, dev);
136 if (dev->realized) {
137 resettable_change_parent(OBJECT(dev), OBJECT(bus),
138 OBJECT(old_parent_bus));
140 if (old_parent_bus) {
141 object_unref(OBJECT(old_parent_bus));
142 object_unref(OBJECT(dev));
144 return true;
147 DeviceState *qdev_new(const char *name)
149 ObjectClass *oc = object_class_by_name(name);
150 #ifdef CONFIG_MODULES
151 if (!oc) {
152 int rv = module_load_qom(name, &error_fatal);
153 if (rv > 0) {
154 oc = object_class_by_name(name);
155 } else {
156 error_report("could not find a module for type '%s'", name);
157 exit(1);
160 #endif
161 if (!oc) {
162 error_report("unknown type '%s'", name);
163 abort();
165 return DEVICE(object_new(name));
168 DeviceState *qdev_try_new(const char *name)
170 if (!module_object_class_by_name(name)) {
171 return NULL;
173 return DEVICE(object_new(name));
176 static QTAILQ_HEAD(, DeviceListener) device_listeners
177 = QTAILQ_HEAD_INITIALIZER(device_listeners);
179 enum ListenerDirection { Forward, Reverse };
181 #define DEVICE_LISTENER_CALL(_callback, _direction, _args...) \
182 do { \
183 DeviceListener *_listener; \
185 switch (_direction) { \
186 case Forward: \
187 QTAILQ_FOREACH(_listener, &device_listeners, link) { \
188 if (_listener->_callback) { \
189 _listener->_callback(_listener, ##_args); \
192 break; \
193 case Reverse: \
194 QTAILQ_FOREACH_REVERSE(_listener, &device_listeners, \
195 link) { \
196 if (_listener->_callback) { \
197 _listener->_callback(_listener, ##_args); \
200 break; \
201 default: \
202 abort(); \
204 } while (0)
206 static int device_listener_add(DeviceState *dev, void *opaque)
208 DEVICE_LISTENER_CALL(realize, Forward, dev);
210 return 0;
213 void device_listener_register(DeviceListener *listener)
215 QTAILQ_INSERT_TAIL(&device_listeners, listener, link);
217 qbus_walk_children(sysbus_get_default(), NULL, NULL, device_listener_add,
218 NULL, NULL);
221 void device_listener_unregister(DeviceListener *listener)
223 QTAILQ_REMOVE(&device_listeners, listener, link);
226 bool qdev_should_hide_device(const QDict *opts, bool from_json, Error **errp)
228 ERRP_GUARD();
229 DeviceListener *listener;
231 QTAILQ_FOREACH(listener, &device_listeners, link) {
232 if (listener->hide_device) {
233 if (listener->hide_device(listener, opts, from_json, errp)) {
234 return true;
235 } else if (*errp) {
236 return false;
241 return false;
244 void qdev_set_legacy_instance_id(DeviceState *dev, int alias_id,
245 int required_for_version)
247 assert(!dev->realized);
248 dev->instance_id_alias = alias_id;
249 dev->alias_required_for_version = required_for_version;
252 void device_cold_reset(DeviceState *dev)
254 resettable_reset(OBJECT(dev), RESET_TYPE_COLD);
257 bool device_is_in_reset(DeviceState *dev)
259 return resettable_is_in_reset(OBJECT(dev));
262 static ResettableState *device_get_reset_state(Object *obj)
264 DeviceState *dev = DEVICE(obj);
265 return &dev->reset;
268 static void device_reset_child_foreach(Object *obj, ResettableChildCallback cb,
269 void *opaque, ResetType type)
271 DeviceState *dev = DEVICE(obj);
272 BusState *bus;
274 QLIST_FOREACH(bus, &dev->child_bus, sibling) {
275 cb(OBJECT(bus), opaque, type);
279 bool qdev_realize(DeviceState *dev, BusState *bus, Error **errp)
281 assert(!dev->realized && !dev->parent_bus);
283 if (bus) {
284 if (!qdev_set_parent_bus(dev, bus, errp)) {
285 return false;
287 } else {
288 assert(!DEVICE_GET_CLASS(dev)->bus_type);
291 return object_property_set_bool(OBJECT(dev), "realized", true, errp);
294 bool qdev_realize_and_unref(DeviceState *dev, BusState *bus, Error **errp)
296 bool ret;
298 ret = qdev_realize(dev, bus, errp);
299 object_unref(OBJECT(dev));
300 return ret;
303 void qdev_unrealize(DeviceState *dev)
305 object_property_set_bool(OBJECT(dev), "realized", false, &error_abort);
308 static int qdev_assert_realized_properly_cb(Object *obj, void *opaque)
310 DeviceState *dev = DEVICE(object_dynamic_cast(obj, TYPE_DEVICE));
311 DeviceClass *dc;
313 if (dev) {
314 dc = DEVICE_GET_CLASS(dev);
315 assert(dev->realized);
316 assert(dev->parent_bus || !dc->bus_type);
318 return 0;
321 void qdev_assert_realized_properly(void)
323 object_child_foreach_recursive(object_get_root(),
324 qdev_assert_realized_properly_cb, NULL);
327 bool qdev_machine_modified(void)
329 return qdev_hot_added || qdev_hot_removed;
332 BusState *qdev_get_parent_bus(const DeviceState *dev)
334 return dev->parent_bus;
337 BusState *qdev_get_child_bus(DeviceState *dev, const char *name)
339 BusState *bus;
340 Object *child = object_resolve_path_component(OBJECT(dev), name);
342 bus = (BusState *)object_dynamic_cast(child, TYPE_BUS);
343 if (bus) {
344 return bus;
347 QLIST_FOREACH(bus, &dev->child_bus, sibling) {
348 if (strcmp(name, bus->name) == 0) {
349 return bus;
352 return NULL;
355 int qdev_walk_children(DeviceState *dev,
356 qdev_walkerfn *pre_devfn, qbus_walkerfn *pre_busfn,
357 qdev_walkerfn *post_devfn, qbus_walkerfn *post_busfn,
358 void *opaque)
360 BusState *bus;
361 int err;
363 if (pre_devfn) {
364 err = pre_devfn(dev, opaque);
365 if (err) {
366 return err;
370 QLIST_FOREACH(bus, &dev->child_bus, sibling) {
371 err = qbus_walk_children(bus, pre_devfn, pre_busfn,
372 post_devfn, post_busfn, opaque);
373 if (err < 0) {
374 return err;
378 if (post_devfn) {
379 err = post_devfn(dev, opaque);
380 if (err) {
381 return err;
385 return 0;
388 DeviceState *qdev_find_recursive(BusState *bus, const char *id)
390 BusChild *kid;
391 DeviceState *ret;
392 BusState *child;
394 WITH_RCU_READ_LOCK_GUARD() {
395 QTAILQ_FOREACH_RCU(kid, &bus->children, sibling) {
396 DeviceState *dev = kid->child;
398 if (dev->id && strcmp(dev->id, id) == 0) {
399 return dev;
402 QLIST_FOREACH(child, &dev->child_bus, sibling) {
403 ret = qdev_find_recursive(child, id);
404 if (ret) {
405 return ret;
410 return NULL;
413 char *qdev_get_dev_path(DeviceState *dev)
415 BusClass *bc;
417 if (!dev || !dev->parent_bus) {
418 return NULL;
421 bc = BUS_GET_CLASS(dev->parent_bus);
422 if (bc->get_dev_path) {
423 return bc->get_dev_path(dev);
426 return NULL;
429 void qdev_add_unplug_blocker(DeviceState *dev, Error *reason)
431 dev->unplug_blockers = g_slist_prepend(dev->unplug_blockers, reason);
434 void qdev_del_unplug_blocker(DeviceState *dev, Error *reason)
436 dev->unplug_blockers = g_slist_remove(dev->unplug_blockers, reason);
439 bool qdev_unplug_blocked(DeviceState *dev, Error **errp)
441 if (dev->unplug_blockers) {
442 error_propagate(errp, error_copy(dev->unplug_blockers->data));
443 return true;
446 return false;
449 static bool device_get_realized(Object *obj, Error **errp)
451 DeviceState *dev = DEVICE(obj);
452 return dev->realized;
455 static bool check_only_migratable(Object *obj, Error **errp)
457 DeviceClass *dc = DEVICE_GET_CLASS(obj);
459 if (!vmstate_check_only_migratable(dc->vmsd)) {
460 error_setg(errp, "Device %s is not migratable, but "
461 "--only-migratable was specified",
462 object_get_typename(obj));
463 return false;
466 return true;
469 static void device_set_realized(Object *obj, bool value, Error **errp)
471 DeviceState *dev = DEVICE(obj);
472 DeviceClass *dc = DEVICE_GET_CLASS(dev);
473 HotplugHandler *hotplug_ctrl;
474 BusState *bus;
475 NamedClockList *ncl;
476 Error *local_err = NULL;
477 bool unattached_parent = false;
478 static int unattached_count;
480 if (dev->hotplugged && !dc->hotpluggable) {
481 error_setg(errp, "Device '%s' does not support hotplugging",
482 object_get_typename(obj));
483 return;
486 if (value && !dev->realized) {
487 if (!check_only_migratable(obj, errp)) {
488 goto fail;
491 if (!obj->parent) {
492 gchar *name = g_strdup_printf("device[%d]", unattached_count++);
494 object_property_add_child(container_get(qdev_get_machine(),
495 "/unattached"),
496 name, obj);
497 unattached_parent = true;
498 g_free(name);
501 hotplug_ctrl = qdev_get_hotplug_handler(dev);
502 if (hotplug_ctrl) {
503 hotplug_handler_pre_plug(hotplug_ctrl, dev, &local_err);
504 if (local_err != NULL) {
505 goto fail;
509 if (dc->realize) {
510 dc->realize(dev, &local_err);
511 if (local_err != NULL) {
512 goto fail;
516 DEVICE_LISTENER_CALL(realize, Forward, dev);
519 * always free/re-initialize here since the value cannot be cleaned up
520 * in device_unrealize due to its usage later on in the unplug path
522 g_free(dev->canonical_path);
523 dev->canonical_path = object_get_canonical_path(OBJECT(dev));
524 QLIST_FOREACH(ncl, &dev->clocks, node) {
525 if (ncl->alias) {
526 continue;
527 } else {
528 clock_setup_canonical_path(ncl->clock);
532 if (qdev_get_vmsd(dev)) {
533 if (vmstate_register_with_alias_id(VMSTATE_IF(dev),
534 VMSTATE_INSTANCE_ID_ANY,
535 qdev_get_vmsd(dev), dev,
536 dev->instance_id_alias,
537 dev->alias_required_for_version,
538 &local_err) < 0) {
539 goto post_realize_fail;
544 * Clear the reset state, in case the object was previously unrealized
545 * with a dirty state.
547 resettable_state_clear(&dev->reset);
549 QLIST_FOREACH(bus, &dev->child_bus, sibling) {
550 if (!qbus_realize(bus, errp)) {
551 goto child_realize_fail;
554 if (dev->hotplugged) {
556 * Reset the device, as well as its subtree which, at this point,
557 * should be realized too.
559 resettable_assert_reset(OBJECT(dev), RESET_TYPE_COLD);
560 resettable_change_parent(OBJECT(dev), OBJECT(dev->parent_bus),
561 NULL);
562 resettable_release_reset(OBJECT(dev), RESET_TYPE_COLD);
564 dev->pending_deleted_event = false;
566 if (hotplug_ctrl) {
567 hotplug_handler_plug(hotplug_ctrl, dev, &local_err);
568 if (local_err != NULL) {
569 goto child_realize_fail;
573 qatomic_store_release(&dev->realized, value);
575 } else if (!value && dev->realized) {
578 * Change the value so that any concurrent users are aware
579 * that the device is going to be unrealized
581 * TODO: change .realized property to enum that states
582 * each phase of the device realization/unrealization
585 qatomic_set(&dev->realized, value);
587 * Ensure that concurrent users see this update prior to
588 * any other changes done by unrealize.
590 smp_wmb();
592 QLIST_FOREACH(bus, &dev->child_bus, sibling) {
593 qbus_unrealize(bus);
595 if (qdev_get_vmsd(dev)) {
596 vmstate_unregister(VMSTATE_IF(dev), qdev_get_vmsd(dev), dev);
598 if (dc->unrealize) {
599 dc->unrealize(dev);
601 dev->pending_deleted_event = true;
602 DEVICE_LISTENER_CALL(unrealize, Reverse, dev);
605 assert(local_err == NULL);
606 return;
608 child_realize_fail:
609 QLIST_FOREACH(bus, &dev->child_bus, sibling) {
610 qbus_unrealize(bus);
613 if (qdev_get_vmsd(dev)) {
614 vmstate_unregister(VMSTATE_IF(dev), qdev_get_vmsd(dev), dev);
617 post_realize_fail:
618 g_free(dev->canonical_path);
619 dev->canonical_path = NULL;
620 if (dc->unrealize) {
621 dc->unrealize(dev);
624 fail:
625 error_propagate(errp, local_err);
626 if (unattached_parent) {
628 * Beware, this doesn't just revert
629 * object_property_add_child(), it also runs bus_remove()!
631 object_unparent(OBJECT(dev));
632 unattached_count--;
636 static bool device_get_hotpluggable(Object *obj, Error **errp)
638 DeviceClass *dc = DEVICE_GET_CLASS(obj);
639 DeviceState *dev = DEVICE(obj);
641 return dc->hotpluggable && (dev->parent_bus == NULL ||
642 qbus_is_hotpluggable(dev->parent_bus));
645 static bool device_get_hotplugged(Object *obj, Error **errp)
647 DeviceState *dev = DEVICE(obj);
649 return dev->hotplugged;
652 static void device_initfn(Object *obj)
654 DeviceState *dev = DEVICE(obj);
656 if (phase_check(PHASE_MACHINE_READY)) {
657 dev->hotplugged = 1;
658 qdev_hot_added = true;
661 dev->instance_id_alias = -1;
662 dev->realized = false;
663 dev->allow_unplug_during_migration = false;
665 QLIST_INIT(&dev->gpios);
666 QLIST_INIT(&dev->clocks);
669 static void device_post_init(Object *obj)
672 * Note: ordered so that the user's global properties take
673 * precedence.
675 object_apply_compat_props(obj);
676 qdev_prop_set_globals(DEVICE(obj));
679 /* Unlink device from bus and free the structure. */
680 static void device_finalize(Object *obj)
682 NamedGPIOList *ngl, *next;
684 DeviceState *dev = DEVICE(obj);
686 g_assert(!dev->unplug_blockers);
688 QLIST_FOREACH_SAFE(ngl, &dev->gpios, node, next) {
689 QLIST_REMOVE(ngl, node);
690 qemu_free_irqs(ngl->in, ngl->num_in);
691 g_free(ngl->name);
692 g_free(ngl);
693 /* ngl->out irqs are owned by the other end and should not be freed
694 * here
698 qdev_finalize_clocklist(dev);
700 /* Only send event if the device had been completely realized */
701 if (dev->pending_deleted_event) {
702 g_assert(dev->canonical_path);
704 qapi_event_send_device_deleted(dev->id, dev->canonical_path);
705 g_free(dev->canonical_path);
706 dev->canonical_path = NULL;
709 qobject_unref(dev->opts);
710 g_free(dev->id);
713 static void device_class_base_init(ObjectClass *class, void *data)
715 DeviceClass *klass = DEVICE_CLASS(class);
717 /* We explicitly look up properties in the superclasses,
718 * so do not propagate them to the subclasses.
720 klass->props_ = NULL;
723 static void device_unparent(Object *obj)
725 DeviceState *dev = DEVICE(obj);
726 BusState *bus;
728 if (dev->realized) {
729 qdev_unrealize(dev);
731 while (dev->num_child_bus) {
732 bus = QLIST_FIRST(&dev->child_bus);
733 object_unparent(OBJECT(bus));
735 if (dev->parent_bus) {
736 bus_remove_child(dev->parent_bus, dev);
737 object_unref(OBJECT(dev->parent_bus));
738 dev->parent_bus = NULL;
742 static char *
743 device_vmstate_if_get_id(VMStateIf *obj)
745 DeviceState *dev = DEVICE(obj);
747 return qdev_get_dev_path(dev);
751 * device_phases_reset:
752 * Transition reset method for devices to allow moving
753 * smoothly from legacy reset method to multi-phases
755 static void device_phases_reset(DeviceState *dev)
757 ResettableClass *rc = RESETTABLE_GET_CLASS(dev);
759 if (rc->phases.enter) {
760 rc->phases.enter(OBJECT(dev), RESET_TYPE_COLD);
762 if (rc->phases.hold) {
763 rc->phases.hold(OBJECT(dev), RESET_TYPE_COLD);
765 if (rc->phases.exit) {
766 rc->phases.exit(OBJECT(dev), RESET_TYPE_COLD);
770 static void device_transitional_reset(Object *obj)
772 DeviceClass *dc = DEVICE_GET_CLASS(obj);
775 * This will call either @device_phases_reset (for multi-phases transitioned
776 * devices) or a device's specific method for not-yet transitioned devices.
777 * In both case, it does not reset children.
779 if (dc->reset) {
780 dc->reset(DEVICE(obj));
785 * device_get_transitional_reset:
786 * check if the device's class is ready for multi-phase
788 static ResettableTrFunction device_get_transitional_reset(Object *obj)
790 DeviceClass *dc = DEVICE_GET_CLASS(obj);
791 if (dc->reset != device_phases_reset) {
793 * dc->reset has been overridden by a subclass,
794 * the device is not ready for multi phase yet.
796 return device_transitional_reset;
798 return NULL;
801 static void device_class_init(ObjectClass *class, void *data)
803 DeviceClass *dc = DEVICE_CLASS(class);
804 VMStateIfClass *vc = VMSTATE_IF_CLASS(class);
805 ResettableClass *rc = RESETTABLE_CLASS(class);
807 class->unparent = device_unparent;
809 /* by default all devices were considered as hotpluggable,
810 * so with intent to check it in generic qdev_unplug() /
811 * device_set_realized() functions make every device
812 * hotpluggable. Devices that shouldn't be hotpluggable,
813 * should override it in their class_init()
815 dc->hotpluggable = true;
816 dc->user_creatable = true;
817 vc->get_id = device_vmstate_if_get_id;
818 rc->get_state = device_get_reset_state;
819 rc->child_foreach = device_reset_child_foreach;
822 * @device_phases_reset is put as the default reset method below, allowing
823 * to do the multi-phase transition from base classes to leaf classes. It
824 * allows a legacy-reset Device class to extend a multi-phases-reset
825 * Device class for the following reason:
826 * + If a base class B has been moved to multi-phase, then it does not
827 * override this default reset method and may have defined phase methods.
828 * + A child class C (extending class B) which uses
829 * device_class_set_parent_reset() (or similar means) to override the
830 * reset method will still work as expected. @device_phases_reset function
831 * will be registered as the parent reset method and effectively call
832 * parent reset phases.
834 dc->reset = device_phases_reset;
835 rc->get_transitional_function = device_get_transitional_reset;
837 object_class_property_add_bool(class, "realized",
838 device_get_realized, device_set_realized);
839 object_class_property_add_bool(class, "hotpluggable",
840 device_get_hotpluggable, NULL);
841 object_class_property_add_bool(class, "hotplugged",
842 device_get_hotplugged, NULL);
843 object_class_property_add_link(class, "parent_bus", TYPE_BUS,
844 offsetof(DeviceState, parent_bus), NULL, 0);
847 void device_class_set_parent_reset(DeviceClass *dc,
848 DeviceReset dev_reset,
849 DeviceReset *parent_reset)
851 *parent_reset = dc->reset;
852 dc->reset = dev_reset;
855 void device_class_set_parent_realize(DeviceClass *dc,
856 DeviceRealize dev_realize,
857 DeviceRealize *parent_realize)
859 *parent_realize = dc->realize;
860 dc->realize = dev_realize;
863 void device_class_set_parent_unrealize(DeviceClass *dc,
864 DeviceUnrealize dev_unrealize,
865 DeviceUnrealize *parent_unrealize)
867 *parent_unrealize = dc->unrealize;
868 dc->unrealize = dev_unrealize;
871 Object *qdev_get_machine(void)
873 static Object *dev;
875 if (dev == NULL) {
876 dev = container_get(object_get_root(), "/machine");
879 return dev;
882 char *qdev_get_human_name(DeviceState *dev)
884 g_assert(dev != NULL);
886 return dev->id ?
887 g_strdup(dev->id) : object_get_canonical_path(OBJECT(dev));
890 static MachineInitPhase machine_phase;
892 bool phase_check(MachineInitPhase phase)
894 return machine_phase >= phase;
897 void phase_advance(MachineInitPhase phase)
899 assert(machine_phase == phase - 1);
900 machine_phase = phase;
903 static const TypeInfo device_type_info = {
904 .name = TYPE_DEVICE,
905 .parent = TYPE_OBJECT,
906 .instance_size = sizeof(DeviceState),
907 .instance_init = device_initfn,
908 .instance_post_init = device_post_init,
909 .instance_finalize = device_finalize,
910 .class_base_init = device_class_base_init,
911 .class_init = device_class_init,
912 .abstract = true,
913 .class_size = sizeof(DeviceClass),
914 .interfaces = (InterfaceInfo[]) {
915 { TYPE_VMSTATE_IF },
916 { TYPE_RESETTABLE_INTERFACE },
921 static void qdev_register_types(void)
923 type_register_static(&device_type_info);
926 type_init(qdev_register_types)