pci: Allow PCI bus subtypes to support extended config space accesses
[qemu/ar7.git] / include / hw / hotplug.h
blob6321e292fddc0b0e611da6f3767d9b680fc674a3
1 /*
2 * Hotplug handler interface.
4 * Copyright (c) 2014 Red Hat Inc.
6 * Authors:
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.
12 #ifndef HOTPLUG_H
13 #define HOTPLUG_H
15 #include "qom/object.h"
17 #define TYPE_HOTPLUG_HANDLER "hotplug-handler"
19 #define HOTPLUG_HANDLER_CLASS(klass) \
20 OBJECT_CLASS_CHECK(HotplugHandlerClass, (klass), TYPE_HOTPLUG_HANDLER)
21 #define HOTPLUG_HANDLER_GET_CLASS(obj) \
22 OBJECT_GET_CLASS(HotplugHandlerClass, (obj), TYPE_HOTPLUG_HANDLER)
23 #define HOTPLUG_HANDLER(obj) \
24 INTERFACE_CHECK(HotplugHandler, (obj), TYPE_HOTPLUG_HANDLER)
26 typedef struct HotplugHandler HotplugHandler;
28 /**
29 * hotplug_fn:
30 * @plug_handler: a device performing plug/uplug action
31 * @plugged_dev: a device that has been (un)plugged
32 * @errp: returns an error if this function fails
34 typedef void (*hotplug_fn)(HotplugHandler *plug_handler,
35 DeviceState *plugged_dev, Error **errp);
37 /**
38 * HotplugDeviceClass:
40 * Interface to be implemented by a device performing
41 * hardware (un)plug functions.
43 * @parent: Opaque parent interface.
44 * @pre_plug: pre plug callback called at start of device.realize(true)
45 * @plug: plug callback called at end of device.realize(true).
46 * @unplug_request: unplug request callback.
47 * Used as a means to initiate device unplug for devices that
48 * require asynchronous unplug handling.
49 * @unplug: unplug callback.
50 * Used for device removal with devices that implement
51 * asynchronous and synchronous (surprise) removal.
53 typedef struct HotplugHandlerClass {
54 /* <private> */
55 InterfaceClass parent;
57 /* <public> */
58 hotplug_fn pre_plug;
59 hotplug_fn plug;
60 hotplug_fn unplug_request;
61 hotplug_fn unplug;
62 } HotplugHandlerClass;
64 /**
65 * hotplug_handler_plug:
67 * Call #HotplugHandlerClass.plug callback of @plug_handler.
69 void hotplug_handler_plug(HotplugHandler *plug_handler,
70 DeviceState *plugged_dev,
71 Error **errp);
73 /**
74 * hotplug_handler_pre_plug:
76 * Call #HotplugHandlerClass.pre_plug callback of @plug_handler.
78 void hotplug_handler_pre_plug(HotplugHandler *plug_handler,
79 DeviceState *plugged_dev,
80 Error **errp);
82 /**
83 * hotplug_handler_unplug_request:
85 * Calls #HotplugHandlerClass.unplug_request callback of @plug_handler.
87 void hotplug_handler_unplug_request(HotplugHandler *plug_handler,
88 DeviceState *plugged_dev,
89 Error **errp);
90 /**
91 * hotplug_handler_unplug:
93 * Calls #HotplugHandlerClass.unplug callback of @plug_handler.
95 void hotplug_handler_unplug(HotplugHandler *plug_handler,
96 DeviceState *plugged_dev,
97 Error **errp);
98 #endif