1074a86fcSAnthony Liguori #ifndef QDEV_CORE_H 2074a86fcSAnthony Liguori #define QDEV_CORE_H 3074a86fcSAnthony Liguori 41de7afc9SPaolo Bonzini #include "qemu/queue.h" 51de7afc9SPaolo Bonzini #include "qemu/option.h" 61de7afc9SPaolo Bonzini #include "qemu/typedefs.h" 7949fc823SMarcel Apfelbaum #include "qemu/bitmap.h" 814cccb61SPaolo Bonzini #include "qom/object.h" 9074a86fcSAnthony Liguori #include "hw/irq.h" 107b1b5d19SPaolo Bonzini #include "qapi/error.h" 110ee4de6cSIgor Mammedov #include "hw/hotplug.h" 12074a86fcSAnthony Liguori 13074a86fcSAnthony Liguori enum { 14074a86fcSAnthony Liguori DEV_NVECTORS_UNSPECIFIED = -1, 15074a86fcSAnthony Liguori }; 16074a86fcSAnthony Liguori 17074a86fcSAnthony Liguori #define TYPE_DEVICE "device" 18074a86fcSAnthony Liguori #define DEVICE(obj) OBJECT_CHECK(DeviceState, (obj), TYPE_DEVICE) 19074a86fcSAnthony Liguori #define DEVICE_CLASS(klass) OBJECT_CLASS_CHECK(DeviceClass, (klass), TYPE_DEVICE) 20074a86fcSAnthony Liguori #define DEVICE_GET_CLASS(obj) OBJECT_GET_CLASS(DeviceClass, (obj), TYPE_DEVICE) 21074a86fcSAnthony Liguori 223d1237fbSMarcel Apfelbaum typedef enum DeviceCategory { 233d1237fbSMarcel Apfelbaum DEVICE_CATEGORY_BRIDGE, 243d1237fbSMarcel Apfelbaum DEVICE_CATEGORY_USB, 253d1237fbSMarcel Apfelbaum DEVICE_CATEGORY_STORAGE, 263d1237fbSMarcel Apfelbaum DEVICE_CATEGORY_NETWORK, 273d1237fbSMarcel Apfelbaum DEVICE_CATEGORY_INPUT, 283d1237fbSMarcel Apfelbaum DEVICE_CATEGORY_DISPLAY, 293d1237fbSMarcel Apfelbaum DEVICE_CATEGORY_SOUND, 303d1237fbSMarcel Apfelbaum DEVICE_CATEGORY_MISC, 313d1237fbSMarcel Apfelbaum DEVICE_CATEGORY_MAX 323d1237fbSMarcel Apfelbaum } DeviceCategory; 333d1237fbSMarcel Apfelbaum 34074a86fcSAnthony Liguori typedef int (*qdev_initfn)(DeviceState *dev); 35074a86fcSAnthony Liguori typedef int (*qdev_event)(DeviceState *dev); 36074a86fcSAnthony Liguori typedef void (*qdev_resetfn)(DeviceState *dev); 37249d4172SAndreas Färber typedef void (*DeviceRealize)(DeviceState *dev, Error **errp); 38249d4172SAndreas Färber typedef void (*DeviceUnrealize)(DeviceState *dev, Error **errp); 3902e7f85dSBandan Das typedef void (*BusRealize)(BusState *bus, Error **errp); 4002e7f85dSBandan Das typedef void (*BusUnrealize)(BusState *bus, Error **errp); 41074a86fcSAnthony Liguori 42074a86fcSAnthony Liguori struct VMStateDescription; 43074a86fcSAnthony Liguori 44249d4172SAndreas Färber /** 45249d4172SAndreas Färber * DeviceClass: 46249d4172SAndreas Färber * @props: Properties accessing state fields. 47249d4172SAndreas Färber * @realize: Callback function invoked when the #DeviceState:realized 48249d4172SAndreas Färber * property is changed to %true. The default invokes @init if not %NULL. 49249d4172SAndreas Färber * @unrealize: Callback function invoked when the #DeviceState:realized 50249d4172SAndreas Färber * property is changed to %false. 51249d4172SAndreas Färber * @init: Callback function invoked when the #DeviceState::realized property 52249d4172SAndreas Färber * is changed to %true. Deprecated, new types inheriting directly from 53249d4172SAndreas Färber * TYPE_DEVICE should use @realize instead, new leaf types should consult 54249d4172SAndreas Färber * their respective parent type. 551a37eca1SIgor Mammedov * @hotpluggable: indicates if #DeviceClass is hotpluggable, available 561a37eca1SIgor Mammedov * as readonly "hotpluggable" property of #DeviceState instance 57249d4172SAndreas Färber * 58249d4172SAndreas Färber * # Realization # 59249d4172SAndreas Färber * Devices are constructed in two stages, 60249d4172SAndreas Färber * 1) object instantiation via object_initialize() and 61249d4172SAndreas Färber * 2) device realization via #DeviceState:realized property. 62249d4172SAndreas Färber * The former may not fail (it might assert or exit), the latter may return 63249d4172SAndreas Färber * error information to the caller and must be re-entrant. 64249d4172SAndreas Färber * Trivial field initializations should go into #TypeInfo.instance_init. 65249d4172SAndreas Färber * Operations depending on @props static properties should go into @realize. 66249d4172SAndreas Färber * After successful realization, setting static properties will fail. 67249d4172SAndreas Färber * 68249d4172SAndreas Färber * As an interim step, the #DeviceState:realized property is set by deprecated 69249d4172SAndreas Färber * functions qdev_init() and qdev_init_nofail(). 70249d4172SAndreas Färber * In the future, devices will propagate this state change to their children 71249d4172SAndreas Färber * and along busses they expose. 72249d4172SAndreas Färber * The point in time will be deferred to machine creation, so that values 73249d4172SAndreas Färber * set in @realize will not be introspectable beforehand. Therefore devices 74249d4172SAndreas Färber * must not create children during @realize; they should initialize them via 75249d4172SAndreas Färber * object_initialize() in their own #TypeInfo.instance_init and forward the 76249d4172SAndreas Färber * realization events appropriately. 77249d4172SAndreas Färber * 78249d4172SAndreas Färber * The @init callback is considered private to a particular bus implementation 79249d4172SAndreas Färber * (immediate abstract child types of TYPE_DEVICE). Derived leaf types set an 80249d4172SAndreas Färber * "init" callback on their parent class instead. 81782beb52SAndreas Färber * 82249d4172SAndreas Färber * Any type may override the @realize and/or @unrealize callbacks but needs 83782beb52SAndreas Färber * to call the parent type's implementation if keeping their functionality 84782beb52SAndreas Färber * is desired. Refer to QOM documentation for further discussion and examples. 85782beb52SAndreas Färber * 86782beb52SAndreas Färber * <note> 87782beb52SAndreas Färber * <para> 88249d4172SAndreas Färber * If a type derived directly from TYPE_DEVICE implements @realize, it does 89249d4172SAndreas Färber * not need to implement @init and therefore does not need to store and call 90249d4172SAndreas Färber * #DeviceClass' default @realize callback. 91782beb52SAndreas Färber * For other types consult the documentation and implementation of the 92782beb52SAndreas Färber * respective parent types. 93782beb52SAndreas Färber * </para> 94782beb52SAndreas Färber * </note> 95249d4172SAndreas Färber */ 96074a86fcSAnthony Liguori typedef struct DeviceClass { 97249d4172SAndreas Färber /*< private >*/ 98074a86fcSAnthony Liguori ObjectClass parent_class; 99249d4172SAndreas Färber /*< public >*/ 100074a86fcSAnthony Liguori 1013d1237fbSMarcel Apfelbaum DECLARE_BITMAP(categories, DEVICE_CATEGORY_MAX); 102074a86fcSAnthony Liguori const char *fw_name; 103074a86fcSAnthony Liguori const char *desc; 104074a86fcSAnthony Liguori Property *props; 105efec3dd6SMarkus Armbruster 106efec3dd6SMarkus Armbruster /* 107efec3dd6SMarkus Armbruster * Shall we hide this device model from -device / device_add? 108efec3dd6SMarkus Armbruster * All devices should support instantiation with device_add, and 109efec3dd6SMarkus Armbruster * this flag should not exist. But we're not there, yet. Some 110efec3dd6SMarkus Armbruster * devices fail to instantiate with cryptic error messages. 111efec3dd6SMarkus Armbruster * Others instantiate, but don't work. Exposing users to such 112efec3dd6SMarkus Armbruster * behavior would be cruel; this flag serves to protect them. It 113efec3dd6SMarkus Armbruster * should never be set without a comment explaining why it is set. 114efec3dd6SMarkus Armbruster * TODO remove once we're there 115efec3dd6SMarkus Armbruster */ 116efec3dd6SMarkus Armbruster bool cannot_instantiate_with_device_add_yet; 1171a37eca1SIgor Mammedov bool hotpluggable; 118074a86fcSAnthony Liguori 119074a86fcSAnthony Liguori /* callbacks */ 120074a86fcSAnthony Liguori void (*reset)(DeviceState *dev); 121249d4172SAndreas Färber DeviceRealize realize; 122249d4172SAndreas Färber DeviceUnrealize unrealize; 123074a86fcSAnthony Liguori 124074a86fcSAnthony Liguori /* device state */ 125074a86fcSAnthony Liguori const struct VMStateDescription *vmsd; 126074a86fcSAnthony Liguori 127074a86fcSAnthony Liguori /* Private to qdev / bus. */ 128249d4172SAndreas Färber qdev_initfn init; /* TODO remove, once users are converted to realize */ 129074a86fcSAnthony Liguori qdev_event unplug; 130fe6c2117SAndreas Färber qdev_event exit; /* TODO remove, once users are converted to unrealize */ 131074a86fcSAnthony Liguori const char *bus_type; 132074a86fcSAnthony Liguori } DeviceClass; 133074a86fcSAnthony Liguori 134a5f54290SPeter Crosthwaite typedef struct NamedGPIOList NamedGPIOList; 135a5f54290SPeter Crosthwaite 136a5f54290SPeter Crosthwaite struct NamedGPIOList { 137a5f54290SPeter Crosthwaite char *name; 138a5f54290SPeter Crosthwaite qemu_irq *in; 139a5f54290SPeter Crosthwaite int num_in; 140a5f54290SPeter Crosthwaite qemu_irq *out; 141a5f54290SPeter Crosthwaite int num_out; 142a5f54290SPeter Crosthwaite QLIST_ENTRY(NamedGPIOList) node; 143a5f54290SPeter Crosthwaite }; 144a5f54290SPeter Crosthwaite 1457983c8a3SAndreas Färber /** 1467983c8a3SAndreas Färber * DeviceState: 1477983c8a3SAndreas Färber * @realized: Indicates whether the device has been fully constructed. 1487983c8a3SAndreas Färber * 1497983c8a3SAndreas Färber * This structure should not be accessed directly. We declare it here 1507983c8a3SAndreas Färber * so that it can be embedded in individual device state structures. 1517983c8a3SAndreas Färber */ 152074a86fcSAnthony Liguori struct DeviceState { 1537983c8a3SAndreas Färber /*< private >*/ 154074a86fcSAnthony Liguori Object parent_obj; 1557983c8a3SAndreas Färber /*< public >*/ 156074a86fcSAnthony Liguori 157074a86fcSAnthony Liguori const char *id; 1587983c8a3SAndreas Färber bool realized; 159352e8da7SPaolo Bonzini bool pending_deleted_event; 160074a86fcSAnthony Liguori QemuOpts *opts; 161074a86fcSAnthony Liguori int hotplugged; 162074a86fcSAnthony Liguori BusState *parent_bus; 163a5f54290SPeter Crosthwaite QLIST_HEAD(, NamedGPIOList) gpios; 164074a86fcSAnthony Liguori QLIST_HEAD(, BusState) child_bus; 165074a86fcSAnthony Liguori int num_child_bus; 166074a86fcSAnthony Liguori int instance_id_alias; 167074a86fcSAnthony Liguori int alias_required_for_version; 168074a86fcSAnthony Liguori }; 169074a86fcSAnthony Liguori 170074a86fcSAnthony Liguori #define TYPE_BUS "bus" 171074a86fcSAnthony Liguori #define BUS(obj) OBJECT_CHECK(BusState, (obj), TYPE_BUS) 172074a86fcSAnthony Liguori #define BUS_CLASS(klass) OBJECT_CLASS_CHECK(BusClass, (klass), TYPE_BUS) 173074a86fcSAnthony Liguori #define BUS_GET_CLASS(obj) OBJECT_GET_CLASS(BusClass, (obj), TYPE_BUS) 174074a86fcSAnthony Liguori 175074a86fcSAnthony Liguori struct BusClass { 176074a86fcSAnthony Liguori ObjectClass parent_class; 177074a86fcSAnthony Liguori 178074a86fcSAnthony Liguori /* FIXME first arg should be BusState */ 179074a86fcSAnthony Liguori void (*print_dev)(Monitor *mon, DeviceState *dev, int indent); 180074a86fcSAnthony Liguori char *(*get_dev_path)(DeviceState *dev); 181074a86fcSAnthony Liguori /* 182074a86fcSAnthony Liguori * This callback is used to create Open Firmware device path in accordance 183074a86fcSAnthony Liguori * with OF spec http://forthworks.com/standards/of1275.pdf. Individual bus 184074a86fcSAnthony Liguori * bindings can be found at http://playground.sun.com/1275/bindings/. 185074a86fcSAnthony Liguori */ 186074a86fcSAnthony Liguori char *(*get_fw_dev_path)(DeviceState *dev); 187dcc20931SPaolo Bonzini void (*reset)(BusState *bus); 18802e7f85dSBandan Das BusRealize realize; 18902e7f85dSBandan Das BusUnrealize unrealize; 19002e7f85dSBandan Das 1911395af6fSKONRAD Frederic /* maximum devices allowed on the bus, 0: no limit. */ 1921395af6fSKONRAD Frederic int max_dev; 19361de3676SAlexander Graf /* number of automatically allocated bus ids (e.g. ide.0) */ 19461de3676SAlexander Graf int automatic_ids; 195074a86fcSAnthony Liguori }; 196074a86fcSAnthony Liguori 197074a86fcSAnthony Liguori typedef struct BusChild { 198074a86fcSAnthony Liguori DeviceState *child; 199074a86fcSAnthony Liguori int index; 200074a86fcSAnthony Liguori QTAILQ_ENTRY(BusChild) sibling; 201074a86fcSAnthony Liguori } BusChild; 202074a86fcSAnthony Liguori 2030ee4de6cSIgor Mammedov #define QDEV_HOTPLUG_HANDLER_PROPERTY "hotplug-handler" 2040ee4de6cSIgor Mammedov 205074a86fcSAnthony Liguori /** 206074a86fcSAnthony Liguori * BusState: 2070ee4de6cSIgor Mammedov * @hotplug_device: link to a hotplug device associated with bus. 208074a86fcSAnthony Liguori */ 209074a86fcSAnthony Liguori struct BusState { 210074a86fcSAnthony Liguori Object obj; 211074a86fcSAnthony Liguori DeviceState *parent; 212074a86fcSAnthony Liguori const char *name; 213074a86fcSAnthony Liguori int allow_hotplug; 2140ee4de6cSIgor Mammedov HotplugHandler *hotplug_handler; 215074a86fcSAnthony Liguori int max_index; 21602e7f85dSBandan Das bool realized; 217074a86fcSAnthony Liguori QTAILQ_HEAD(ChildrenHead, BusChild) children; 218074a86fcSAnthony Liguori QLIST_ENTRY(BusState) sibling; 219074a86fcSAnthony Liguori }; 220074a86fcSAnthony Liguori 221074a86fcSAnthony Liguori struct Property { 222074a86fcSAnthony Liguori const char *name; 223074a86fcSAnthony Liguori PropertyInfo *info; 224074a86fcSAnthony Liguori int offset; 225074a86fcSAnthony Liguori uint8_t bitnr; 226074a86fcSAnthony Liguori uint8_t qtype; 227074a86fcSAnthony Liguori int64_t defval; 2280be6bfacSPeter Maydell int arrayoffset; 2290be6bfacSPeter Maydell PropertyInfo *arrayinfo; 2300be6bfacSPeter Maydell int arrayfieldsize; 231074a86fcSAnthony Liguori }; 232074a86fcSAnthony Liguori 233074a86fcSAnthony Liguori struct PropertyInfo { 234074a86fcSAnthony Liguori const char *name; 235074a86fcSAnthony Liguori const char *legacy_name; 236074a86fcSAnthony Liguori const char **enum_table; 237074a86fcSAnthony Liguori int (*print)(DeviceState *dev, Property *prop, char *dest, size_t len); 238074a86fcSAnthony Liguori ObjectPropertyAccessor *get; 239074a86fcSAnthony Liguori ObjectPropertyAccessor *set; 240074a86fcSAnthony Liguori ObjectPropertyRelease *release; 241074a86fcSAnthony Liguori }; 242074a86fcSAnthony Liguori 2439f9260a3SDon Slutz /** 2449f9260a3SDon Slutz * GlobalProperty: 245b3ce84feSEduardo Habkost * @user_provided: Set to true if property comes from user-provided config 246b3ce84feSEduardo Habkost * (command-line or config file). 247b3ce84feSEduardo Habkost * @used: Set to true if property was used when initializing a device. 2489f9260a3SDon Slutz */ 249074a86fcSAnthony Liguori typedef struct GlobalProperty { 250074a86fcSAnthony Liguori const char *driver; 251074a86fcSAnthony Liguori const char *property; 252074a86fcSAnthony Liguori const char *value; 253b3ce84feSEduardo Habkost bool user_provided; 254b3ce84feSEduardo Habkost bool used; 255074a86fcSAnthony Liguori QTAILQ_ENTRY(GlobalProperty) next; 256074a86fcSAnthony Liguori } GlobalProperty; 257074a86fcSAnthony Liguori 258074a86fcSAnthony Liguori /*** Board API. This should go away once we have a machine config file. ***/ 259074a86fcSAnthony Liguori 260074a86fcSAnthony Liguori DeviceState *qdev_create(BusState *bus, const char *name); 261074a86fcSAnthony Liguori DeviceState *qdev_try_create(BusState *bus, const char *name); 262074a86fcSAnthony Liguori int qdev_init(DeviceState *dev) QEMU_WARN_UNUSED_RESULT; 263074a86fcSAnthony Liguori void qdev_init_nofail(DeviceState *dev); 264074a86fcSAnthony Liguori void qdev_set_legacy_instance_id(DeviceState *dev, int alias_id, 265074a86fcSAnthony Liguori int required_for_version); 266074a86fcSAnthony Liguori void qdev_unplug(DeviceState *dev, Error **errp); 267074a86fcSAnthony Liguori int qdev_simple_unplug_cb(DeviceState *dev); 268*014176f9SIgor Mammedov void qdev_simple_device_unplug_cb(HotplugHandler *hotplug_dev, 269*014176f9SIgor Mammedov DeviceState *dev, Error **errp); 270074a86fcSAnthony Liguori void qdev_machine_creation_done(void); 271074a86fcSAnthony Liguori bool qdev_machine_modified(void); 272074a86fcSAnthony Liguori 273074a86fcSAnthony Liguori qemu_irq qdev_get_gpio_in(DeviceState *dev, int n); 274a5f54290SPeter Crosthwaite qemu_irq qdev_get_gpio_in_named(DeviceState *dev, const char *name, int n); 275a5f54290SPeter Crosthwaite 276074a86fcSAnthony Liguori void qdev_connect_gpio_out(DeviceState *dev, int n, qemu_irq pin); 277a5f54290SPeter Crosthwaite void qdev_connect_gpio_out_named(DeviceState *dev, const char *name, int n, 278a5f54290SPeter Crosthwaite qemu_irq pin); 279074a86fcSAnthony Liguori 280074a86fcSAnthony Liguori BusState *qdev_get_child_bus(DeviceState *dev, const char *name); 281074a86fcSAnthony Liguori 282074a86fcSAnthony Liguori /*** Device API. ***/ 283074a86fcSAnthony Liguori 284074a86fcSAnthony Liguori /* Register device properties. */ 285074a86fcSAnthony Liguori /* GPIO inputs also double as IRQ sinks. */ 286074a86fcSAnthony Liguori void qdev_init_gpio_in(DeviceState *dev, qemu_irq_handler handler, int n); 287074a86fcSAnthony Liguori void qdev_init_gpio_out(DeviceState *dev, qemu_irq *pins, int n); 288a5f54290SPeter Crosthwaite void qdev_init_gpio_in_named(DeviceState *dev, qemu_irq_handler handler, 289a5f54290SPeter Crosthwaite const char *name, int n); 290a5f54290SPeter Crosthwaite void qdev_init_gpio_out_named(DeviceState *dev, qemu_irq *pins, 291a5f54290SPeter Crosthwaite const char *name, int n); 292074a86fcSAnthony Liguori 293074a86fcSAnthony Liguori BusState *qdev_get_parent_bus(DeviceState *dev); 294074a86fcSAnthony Liguori 295074a86fcSAnthony Liguori /*** BUS API. ***/ 296074a86fcSAnthony Liguori 297074a86fcSAnthony Liguori DeviceState *qdev_find_recursive(BusState *bus, const char *id); 298074a86fcSAnthony Liguori 299074a86fcSAnthony Liguori /* Returns 0 to walk children, > 0 to skip walk, < 0 to terminate walk. */ 300074a86fcSAnthony Liguori typedef int (qbus_walkerfn)(BusState *bus, void *opaque); 301074a86fcSAnthony Liguori typedef int (qdev_walkerfn)(DeviceState *dev, void *opaque); 302074a86fcSAnthony Liguori 303fb17dfe0SAndreas Färber void qbus_create_inplace(void *bus, size_t size, const char *typename, 304074a86fcSAnthony Liguori DeviceState *parent, const char *name); 305074a86fcSAnthony Liguori BusState *qbus_create(const char *typename, DeviceState *parent, const char *name); 306074a86fcSAnthony Liguori /* Returns > 0 if either devfn or busfn skip walk somewhere in cursion, 307074a86fcSAnthony Liguori * < 0 if either devfn or busfn terminate walk somewhere in cursion, 308074a86fcSAnthony Liguori * 0 otherwise. */ 3090293214bSPaolo Bonzini int qbus_walk_children(BusState *bus, 3100293214bSPaolo Bonzini qdev_walkerfn *pre_devfn, qbus_walkerfn *pre_busfn, 3110293214bSPaolo Bonzini qdev_walkerfn *post_devfn, qbus_walkerfn *post_busfn, 3120293214bSPaolo Bonzini void *opaque); 3130293214bSPaolo Bonzini int qdev_walk_children(DeviceState *dev, 3140293214bSPaolo Bonzini qdev_walkerfn *pre_devfn, qbus_walkerfn *pre_busfn, 3150293214bSPaolo Bonzini qdev_walkerfn *post_devfn, qbus_walkerfn *post_busfn, 3160293214bSPaolo Bonzini void *opaque); 3170293214bSPaolo Bonzini 318074a86fcSAnthony Liguori void qdev_reset_all(DeviceState *dev); 319d0508c36SPaolo Bonzini 320d0508c36SPaolo Bonzini /** 321d0508c36SPaolo Bonzini * @qbus_reset_all: 322d0508c36SPaolo Bonzini * @bus: Bus to be reset. 323d0508c36SPaolo Bonzini * 324d0508c36SPaolo Bonzini * Reset @bus and perform a bus-level ("hard") reset of all devices connected 325d0508c36SPaolo Bonzini * to it, including recursive processing of all buses below @bus itself. A 326d0508c36SPaolo Bonzini * hard reset means that qbus_reset_all will reset all state of the device. 327d0508c36SPaolo Bonzini * For PCI devices, for example, this will include the base address registers 328d0508c36SPaolo Bonzini * or configuration space. 329d0508c36SPaolo Bonzini */ 330d0508c36SPaolo Bonzini void qbus_reset_all(BusState *bus); 331074a86fcSAnthony Liguori void qbus_reset_all_fn(void *opaque); 332074a86fcSAnthony Liguori 333074a86fcSAnthony Liguori /* This should go away once we get rid of the NULL bus hack */ 334074a86fcSAnthony Liguori BusState *sysbus_get_default(void); 335074a86fcSAnthony Liguori 336074a86fcSAnthony Liguori char *qdev_get_fw_dev_path(DeviceState *dev); 337074a86fcSAnthony Liguori 338074a86fcSAnthony Liguori /** 339074a86fcSAnthony Liguori * @qdev_machine_init 340074a86fcSAnthony Liguori * 341074a86fcSAnthony Liguori * Initialize platform devices before machine init. This is a hack until full 342074a86fcSAnthony Liguori * support for composition is added. 343074a86fcSAnthony Liguori */ 344074a86fcSAnthony Liguori void qdev_machine_init(void); 345074a86fcSAnthony Liguori 346074a86fcSAnthony Liguori /** 347074a86fcSAnthony Liguori * @device_reset 348074a86fcSAnthony Liguori * 349074a86fcSAnthony Liguori * Reset a single device (by calling the reset method). 350074a86fcSAnthony Liguori */ 351074a86fcSAnthony Liguori void device_reset(DeviceState *dev); 352074a86fcSAnthony Liguori 353074a86fcSAnthony Liguori const struct VMStateDescription *qdev_get_vmsd(DeviceState *dev); 354074a86fcSAnthony Liguori 355074a86fcSAnthony Liguori const char *qdev_fw_name(DeviceState *dev); 356074a86fcSAnthony Liguori 357074a86fcSAnthony Liguori Object *qdev_get_machine(void); 358074a86fcSAnthony Liguori 359074a86fcSAnthony Liguori /* FIXME: make this a link<> */ 360074a86fcSAnthony Liguori void qdev_set_parent_bus(DeviceState *dev, BusState *bus); 361074a86fcSAnthony Liguori 362074a86fcSAnthony Liguori extern int qdev_hotplug; 363074a86fcSAnthony Liguori 364074a86fcSAnthony Liguori char *qdev_get_dev_path(DeviceState *dev); 365074a86fcSAnthony Liguori 3660ee4de6cSIgor Mammedov static inline void qbus_set_hotplug_handler(BusState *bus, DeviceState *handler, 3670ee4de6cSIgor Mammedov Error **errp) 3680ee4de6cSIgor Mammedov { 3690ee4de6cSIgor Mammedov object_property_set_link(OBJECT(bus), OBJECT(handler), 3700ee4de6cSIgor Mammedov QDEV_HOTPLUG_HANDLER_PROPERTY, errp); 3710ee4de6cSIgor Mammedov bus->allow_hotplug = 1; 3720ee4de6cSIgor Mammedov } 37339b888bdSIgor Mammedov 37439b888bdSIgor Mammedov static inline bool qbus_is_hotpluggable(BusState *bus) 37539b888bdSIgor Mammedov { 37639b888bdSIgor Mammedov return bus->allow_hotplug || bus->hotplug_handler; 37739b888bdSIgor Mammedov } 378074a86fcSAnthony Liguori #endif 379