2014-02-05 16:36:44 +01:00
|
|
|
/*
|
|
|
|
* Hotplug handler interface.
|
|
|
|
*
|
|
|
|
* Copyright (c) 2014 Red Hat Inc.
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Igor Mammedov <imammedo@redhat.com>,
|
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
|
|
|
* See the COPYING file in the top-level directory.
|
|
|
|
*/
|
|
|
|
#ifndef HOTPLUG_H
|
|
|
|
#define HOTPLUG_H
|
|
|
|
|
|
|
|
#include "qom/object.h"
|
|
|
|
|
|
|
|
#define TYPE_HOTPLUG_HANDLER "hotplug-handler"
|
|
|
|
|
2020-09-03 22:43:22 +02:00
|
|
|
typedef struct HotplugHandlerClass HotplugHandlerClass;
|
2020-08-31 23:07:33 +02:00
|
|
|
DECLARE_CLASS_CHECKERS(HotplugHandlerClass, HOTPLUG_HANDLER,
|
|
|
|
TYPE_HOTPLUG_HANDLER)
|
2014-02-05 16:36:44 +01:00
|
|
|
#define HOTPLUG_HANDLER(obj) \
|
|
|
|
INTERFACE_CHECK(HotplugHandler, (obj), TYPE_HOTPLUG_HANDLER)
|
|
|
|
|
2018-12-04 15:20:06 +01:00
|
|
|
typedef struct HotplugHandler HotplugHandler;
|
2014-02-05 16:36:44 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* hotplug_fn:
|
|
|
|
* @plug_handler: a device performing plug/uplug action
|
|
|
|
* @plugged_dev: a device that has been (un)plugged
|
|
|
|
* @errp: returns an error if this function fails
|
|
|
|
*/
|
|
|
|
typedef void (*hotplug_fn)(HotplugHandler *plug_handler,
|
|
|
|
DeviceState *plugged_dev, Error **errp);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* HotplugDeviceClass:
|
|
|
|
*
|
|
|
|
* Interface to be implemented by a device performing
|
|
|
|
* hardware (un)plug functions.
|
|
|
|
*
|
|
|
|
* @parent: Opaque parent interface.
|
2016-05-12 05:48:15 +02:00
|
|
|
* @pre_plug: pre plug callback called at start of device.realize(true)
|
|
|
|
* @plug: plug callback called at end of device.realize(true).
|
2014-09-26 11:28:19 +02:00
|
|
|
* @unplug_request: unplug request callback.
|
|
|
|
* Used as a means to initiate device unplug for devices that
|
|
|
|
* require asynchronous unplug handling.
|
2014-09-26 11:28:20 +02:00
|
|
|
* @unplug: unplug callback.
|
|
|
|
* Used for device removal with devices that implement
|
2015-01-03 14:41:39 +01:00
|
|
|
* asynchronous and synchronous (surprise) removal.
|
2014-02-05 16:36:44 +01:00
|
|
|
*/
|
2020-09-03 22:43:22 +02:00
|
|
|
struct HotplugHandlerClass {
|
2014-02-05 16:36:44 +01:00
|
|
|
/* <private> */
|
|
|
|
InterfaceClass parent;
|
|
|
|
|
|
|
|
/* <public> */
|
2016-05-12 05:48:15 +02:00
|
|
|
hotplug_fn pre_plug;
|
2014-02-05 16:36:44 +01:00
|
|
|
hotplug_fn plug;
|
2014-09-26 11:28:19 +02:00
|
|
|
hotplug_fn unplug_request;
|
2014-09-26 11:28:20 +02:00
|
|
|
hotplug_fn unplug;
|
2020-09-03 22:43:22 +02:00
|
|
|
};
|
2014-02-05 16:36:44 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* hotplug_handler_plug:
|
|
|
|
*
|
|
|
|
* Call #HotplugHandlerClass.plug callback of @plug_handler.
|
|
|
|
*/
|
|
|
|
void hotplug_handler_plug(HotplugHandler *plug_handler,
|
|
|
|
DeviceState *plugged_dev,
|
|
|
|
Error **errp);
|
|
|
|
|
2016-05-12 05:48:15 +02:00
|
|
|
/**
|
|
|
|
* hotplug_handler_pre_plug:
|
|
|
|
*
|
|
|
|
* Call #HotplugHandlerClass.pre_plug callback of @plug_handler.
|
|
|
|
*/
|
|
|
|
void hotplug_handler_pre_plug(HotplugHandler *plug_handler,
|
|
|
|
DeviceState *plugged_dev,
|
|
|
|
Error **errp);
|
|
|
|
|
2014-02-05 16:36:44 +01:00
|
|
|
/**
|
2014-09-26 11:28:19 +02:00
|
|
|
* hotplug_handler_unplug_request:
|
2014-02-05 16:36:44 +01:00
|
|
|
*
|
2014-09-26 11:28:19 +02:00
|
|
|
* Calls #HotplugHandlerClass.unplug_request callback of @plug_handler.
|
2014-02-05 16:36:44 +01:00
|
|
|
*/
|
2014-09-26 11:28:19 +02:00
|
|
|
void hotplug_handler_unplug_request(HotplugHandler *plug_handler,
|
|
|
|
DeviceState *plugged_dev,
|
|
|
|
Error **errp);
|
2014-09-26 11:28:20 +02:00
|
|
|
/**
|
|
|
|
* hotplug_handler_unplug:
|
|
|
|
*
|
|
|
|
* Calls #HotplugHandlerClass.unplug callback of @plug_handler.
|
|
|
|
*/
|
|
|
|
void hotplug_handler_unplug(HotplugHandler *plug_handler,
|
|
|
|
DeviceState *plugged_dev,
|
|
|
|
Error **errp);
|
2014-02-05 16:36:44 +01:00
|
|
|
#endif
|