2 * Hotplug handler interface.
4 * Copyright (c) 2014 Red Hat Inc.
7 * Igor Mammedov <imammedo@redhat.com>,
9 * This work is licensed under the terms of the GNU GPL, version 2 or later.
10 * See the COPYING file in the top-level directory.
15 #include "qom/object.h"
17 #define TYPE_HOTPLUG_HANDLER "hotplug-handler"
19 typedef struct HotplugHandlerClass HotplugHandlerClass
;
20 DECLARE_CLASS_CHECKERS(HotplugHandlerClass
, HOTPLUG_HANDLER
,
22 #define HOTPLUG_HANDLER(obj) \
23 INTERFACE_CHECK(HotplugHandler, (obj), TYPE_HOTPLUG_HANDLER)
25 typedef struct HotplugHandler HotplugHandler
;
29 * @plug_handler: a device performing plug/uplug action
30 * @plugged_dev: a device that has been (un)plugged
31 * @errp: returns an error if this function fails
33 typedef void (*hotplug_fn
)(HotplugHandler
*plug_handler
,
34 DeviceState
*plugged_dev
, Error
**errp
);
39 * Interface to be implemented by a device performing
40 * hardware (un)plug functions.
42 * @parent: Opaque parent interface.
43 * @pre_plug: pre plug callback called at start of device.realize(true)
44 * @plug: plug callback called at end of device.realize(true).
45 * @unplug_request: unplug request callback.
46 * Used as a means to initiate device unplug for devices that
47 * require asynchronous unplug handling.
48 * @unplug: unplug callback.
49 * Used for device removal with devices that implement
50 * asynchronous and synchronous (surprise) removal.
52 struct HotplugHandlerClass
{
54 InterfaceClass parent
;
59 hotplug_fn unplug_request
;
64 * hotplug_handler_plug:
66 * Call #HotplugHandlerClass.plug callback of @plug_handler.
68 void hotplug_handler_plug(HotplugHandler
*plug_handler
,
69 DeviceState
*plugged_dev
,
73 * hotplug_handler_pre_plug:
75 * Call #HotplugHandlerClass.pre_plug callback of @plug_handler.
77 void hotplug_handler_pre_plug(HotplugHandler
*plug_handler
,
78 DeviceState
*plugged_dev
,
82 * hotplug_handler_unplug_request:
84 * Calls #HotplugHandlerClass.unplug_request callback of @plug_handler.
86 void hotplug_handler_unplug_request(HotplugHandler
*plug_handler
,
87 DeviceState
*plugged_dev
,
90 * hotplug_handler_unplug:
92 * Calls #HotplugHandlerClass.unplug callback of @plug_handler.
94 void hotplug_handler_unplug(HotplugHandler
*plug_handler
,
95 DeviceState
*plugged_dev
,