2017-03-22 14:50:33 +00:00
|
|
|
/*
|
|
|
|
* virmdev.h: helper APIs for managing host mediated devices
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library. If not, see
|
|
|
|
* <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2018-12-13 14:53:50 +00:00
|
|
|
#ifndef LIBVIRT_VIRMDEV_H
|
|
|
|
# define LIBVIRT_VIRMDEV_H
|
2017-03-22 14:50:33 +00:00
|
|
|
|
|
|
|
# include "internal.h"
|
|
|
|
# include "virobject.h"
|
|
|
|
# include "virutil.h"
|
2019-04-01 13:14:30 +00:00
|
|
|
# include "virautoclean.h"
|
2019-04-01 10:14:26 +00:00
|
|
|
# include "virenum.h"
|
2017-03-22 14:50:33 +00:00
|
|
|
|
|
|
|
typedef enum {
|
|
|
|
VIR_MDEV_MODEL_TYPE_VFIO_PCI = 0,
|
2018-05-07 14:41:14 +00:00
|
|
|
VIR_MDEV_MODEL_TYPE_VFIO_CCW = 1,
|
2018-10-18 14:54:07 +00:00
|
|
|
VIR_MDEV_MODEL_TYPE_VFIO_AP = 2,
|
2017-03-22 14:50:33 +00:00
|
|
|
|
|
|
|
VIR_MDEV_MODEL_TYPE_LAST
|
|
|
|
} virMediatedDeviceModelType;
|
|
|
|
|
2019-01-20 16:04:56 +00:00
|
|
|
VIR_ENUM_DECL(virMediatedDeviceModel);
|
2017-03-22 14:50:33 +00:00
|
|
|
|
|
|
|
|
|
|
|
typedef struct _virMediatedDevice virMediatedDevice;
|
|
|
|
typedef virMediatedDevice *virMediatedDevicePtr;
|
|
|
|
typedef struct _virMediatedDeviceList virMediatedDeviceList;
|
|
|
|
typedef virMediatedDeviceList *virMediatedDeviceListPtr;
|
|
|
|
|
2018-01-23 08:47:43 +00:00
|
|
|
typedef struct _virMediatedDeviceType virMediatedDeviceType;
|
|
|
|
typedef virMediatedDeviceType *virMediatedDeviceTypePtr;
|
|
|
|
struct _virMediatedDeviceType {
|
|
|
|
char *id;
|
|
|
|
char *name;
|
|
|
|
char *device_api;
|
|
|
|
unsigned int available_instances;
|
|
|
|
};
|
|
|
|
|
2017-03-22 14:50:33 +00:00
|
|
|
typedef int (*virMediatedDeviceCallback)(virMediatedDevicePtr dev,
|
|
|
|
const char *path, void *opaque);
|
|
|
|
|
|
|
|
virMediatedDevicePtr
|
|
|
|
virMediatedDeviceNew(const char *uuidstr, virMediatedDeviceModelType model);
|
|
|
|
|
|
|
|
virMediatedDevicePtr
|
|
|
|
virMediatedDeviceCopy(virMediatedDevicePtr dev);
|
|
|
|
|
|
|
|
void
|
|
|
|
virMediatedDeviceFree(virMediatedDevicePtr dev);
|
|
|
|
|
|
|
|
const char *
|
|
|
|
virMediatedDeviceGetPath(virMediatedDevicePtr dev);
|
|
|
|
|
|
|
|
void
|
|
|
|
virMediatedDeviceGetUsedBy(virMediatedDevicePtr dev,
|
|
|
|
const char **drvname, const char **domname);
|
|
|
|
|
|
|
|
int
|
|
|
|
virMediatedDeviceSetUsedBy(virMediatedDevicePtr dev,
|
|
|
|
const char *drvname,
|
|
|
|
const char *domname);
|
|
|
|
|
|
|
|
char *
|
2017-04-26 12:47:15 +00:00
|
|
|
virMediatedDeviceGetIOMMUGroupDev(const char *uuidstr);
|
2017-03-22 14:50:33 +00:00
|
|
|
|
|
|
|
int
|
2017-04-26 12:47:15 +00:00
|
|
|
virMediatedDeviceGetIOMMUGroupNum(const char *uuidstr);
|
2017-03-22 14:50:33 +00:00
|
|
|
|
|
|
|
char *
|
|
|
|
virMediatedDeviceGetSysfsPath(const char *uuidstr);
|
|
|
|
|
|
|
|
bool
|
|
|
|
virMediatedDeviceIsUsed(virMediatedDevicePtr dev,
|
|
|
|
virMediatedDeviceListPtr list);
|
|
|
|
|
|
|
|
bool
|
|
|
|
virMediatedDeviceIsUsed(virMediatedDevicePtr dev,
|
|
|
|
virMediatedDeviceListPtr list);
|
|
|
|
|
|
|
|
virMediatedDeviceListPtr
|
|
|
|
virMediatedDeviceListNew(void);
|
|
|
|
|
|
|
|
int
|
|
|
|
virMediatedDeviceListAdd(virMediatedDeviceListPtr list,
|
2017-04-28 07:24:31 +00:00
|
|
|
virMediatedDevicePtr *dev);
|
2017-03-22 14:50:33 +00:00
|
|
|
|
|
|
|
virMediatedDevicePtr
|
|
|
|
virMediatedDeviceListGet(virMediatedDeviceListPtr list,
|
|
|
|
ssize_t idx);
|
|
|
|
|
|
|
|
size_t
|
|
|
|
virMediatedDeviceListCount(virMediatedDeviceListPtr list);
|
|
|
|
|
|
|
|
virMediatedDevicePtr
|
|
|
|
virMediatedDeviceListSteal(virMediatedDeviceListPtr list,
|
|
|
|
virMediatedDevicePtr dev);
|
|
|
|
|
|
|
|
virMediatedDevicePtr
|
|
|
|
virMediatedDeviceListStealIndex(virMediatedDeviceListPtr list,
|
|
|
|
ssize_t idx);
|
|
|
|
|
|
|
|
void
|
|
|
|
virMediatedDeviceListDel(virMediatedDeviceListPtr list,
|
|
|
|
virMediatedDevicePtr dev);
|
|
|
|
|
|
|
|
virMediatedDevicePtr
|
|
|
|
virMediatedDeviceListFind(virMediatedDeviceListPtr list,
|
|
|
|
virMediatedDevicePtr dev);
|
|
|
|
|
|
|
|
int
|
|
|
|
virMediatedDeviceListFindIndex(virMediatedDeviceListPtr list,
|
|
|
|
virMediatedDevicePtr dev);
|
|
|
|
|
|
|
|
int
|
|
|
|
virMediatedDeviceListMarkDevices(virMediatedDeviceListPtr dst,
|
|
|
|
virMediatedDeviceListPtr src,
|
|
|
|
const char *drvname,
|
|
|
|
const char *domname);
|
2018-01-23 08:47:43 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
virMediatedDeviceTypeFree(virMediatedDeviceTypePtr type);
|
2018-01-23 08:55:52 +00:00
|
|
|
|
|
|
|
int
|
|
|
|
virMediatedDeviceTypeReadAttrs(const char *sysfspath,
|
|
|
|
virMediatedDeviceTypePtr *type);
|
|
|
|
|
2019-02-07 17:18:52 +00:00
|
|
|
VIR_DEFINE_AUTOPTR_FUNC(virMediatedDevice, virMediatedDeviceFree);
|
|
|
|
VIR_DEFINE_AUTOPTR_FUNC(virMediatedDeviceType, virMediatedDeviceTypeFree);
|
2018-07-24 15:52:12 +00:00
|
|
|
|
2018-12-13 14:53:50 +00:00
|
|
|
#endif /* LIBVIRT_VIRMDEV_H */
|