qdev.h 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. #ifndef MONITOR_QDEV_H
  2. #define MONITOR_QDEV_H
  3. /*** monitor commands ***/
  4. void hmp_info_qtree(Monitor *mon, const QDict *qdict);
  5. void hmp_info_qdm(Monitor *mon, const QDict *qdict);
  6. void qmp_device_add(QDict *qdict, QObject **ret_data, Error **errp);
  7. int qdev_device_help(QemuOpts *opts);
  8. DeviceState *qdev_device_add(QemuOpts *opts, Error **errp);
  9. DeviceState *qdev_device_add_from_qdict(const QDict *opts,
  10. bool from_json, Error **errp);
  11. /**
  12. * qdev_set_id: parent the device and set its id if provided.
  13. * @dev: device to handle
  14. * @id: id to be given to the device, or NULL.
  15. *
  16. * Returns: the id of the device in case of success; otherwise NULL.
  17. *
  18. * @dev must be unrealized, unparented and must not have an id.
  19. *
  20. * If @id is non-NULL, this function tries to setup @dev qom path as
  21. * "/peripheral/id". If @id is already taken, it fails. If it succeeds,
  22. * the id field of @dev is set to @id (@dev now owns the given @id
  23. * parameter).
  24. *
  25. * If @id is NULL, this function generates a unique name and setups @dev
  26. * qom path as "/peripheral-anon/name". This name is not set as the id
  27. * of @dev.
  28. *
  29. * Upon success, it returns the id/name (generated or provided). The
  30. * returned string is owned by the corresponding child property and must
  31. * not be freed by the caller.
  32. */
  33. const char *qdev_set_id(DeviceState *dev, char *id, Error **errp);
  34. #endif