summaryrefslogtreecommitdiff
path: root/src/qemu/qemu_hostdev.h
blob: 3e9adc57a9ec9845f4e2b5322066c792c9b1d777 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
/*
 * qemu_hostdev.h: QEMU hostdev management
 *
 * Copyright (C) 2006-2007, 2009-2013 Red Hat, Inc.
 * Copyright (C) 2006 Daniel P. Berrange
 *
 * 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/>.
 */

#pragma once

#include "qemu_conf.h"

bool qemuHostdevNeedsVFIO(const virDomainHostdevDef *hostdev);

bool qemuHostdevHostSupportsPassthroughVFIO(void);

int qemuHostdevUpdateActiveNVMeDisks(virQEMUDriver *driver,
                                     virDomainDef *def);
int qemuHostdevUpdateActiveMediatedDevices(virQEMUDriver *driver,
                                           virDomainDef *def);
int qemuHostdevUpdateActivePCIDevices(virQEMUDriver *driver,
                                      virDomainDef *def);
int qemuHostdevUpdateActiveUSBDevices(virQEMUDriver *driver,
                                      virDomainDef *def);
int qemuHostdevUpdateActiveSCSIDevices(virQEMUDriver *driver,
                                       virDomainDef *def);
int qemuHostdevUpdateActiveDomainDevices(virQEMUDriver *driver,
                                         virDomainDef *def);

int qemuHostdevPrepareOneNVMeDisk(virQEMUDriver *driver,
                                  const char *name,
                                  virStorageSource *src);
int qemuHostdevPrepareNVMeDisks(virQEMUDriver *driver,
                                const char *name,
                                virDomainDiskDef **disks,
                                size_t ndisks);
int qemuHostdevPreparePCIDevices(virQEMUDriver *driver,
                                 const char *name,
                                 const unsigned char *uuid,
                                 virDomainHostdevDef **hostdevs,
                                 int nhostdevs,
                                 unsigned int flags);
int qemuHostdevPrepareUSBDevices(virQEMUDriver *driver,
                                 const char *name,
                                 virDomainHostdevDef **hostdevs,
                                 int nhostdevs,
                                 unsigned int flags);
int qemuHostdevPrepareSCSIDevices(virQEMUDriver *driver,
                                  const char *name,
                                  virDomainHostdevDef **hostdevs,
                                  int nhostdevs);
int qemuHostdevPrepareSCSIVHostDevices(virQEMUDriver *driver,
                                       const char *name,
                                       virDomainHostdevDef **hostdevs,
                                       int nhostdevs);
int qemuHostdevPrepareMediatedDevices(virQEMUDriver *driver,
                                      const char *name,
                                      virDomainHostdevDef **hostdevs,
                                      int nhostdevs);
int qemuHostdevPrepareDomainDevices(virQEMUDriver *driver,
                                    virDomainDef *def,
                                    unsigned int flags);

void qemuHostdevReAttachOneNVMeDisk(virQEMUDriver *driver,
                                    const char *name,
                                    virStorageSource *src);
void qemuHostdevReAttachNVMeDisks(virQEMUDriver *driver,
                                  const char *name,
                                  virDomainDiskDef **disks,
                                  size_t ndisks);
void qemuHostdevReAttachPCIDevices(virQEMUDriver *driver,
                                   const char *name,
                                   virDomainHostdevDef **hostdevs,
                                   int nhostdevs);
void qemuHostdevReAttachUSBDevices(virQEMUDriver *driver,
                                   const char *name,
                                   virDomainHostdevDef **hostdevs,
                                   int nhostdevs);
void qemuHostdevReAttachSCSIDevices(virQEMUDriver *driver,
                                    const char *name,
                                    virDomainHostdevDef **hostdevs,
                                    int nhostdevs);
void qemuHostdevReAttachSCSIVHostDevices(virQEMUDriver *driver,
                                         const char *name,
                                         virDomainHostdevDef **hostdevs,
                                         int nhostdevs);
void qemuHostdevReAttachMediatedDevices(virQEMUDriver *driver,
                                        const char *name,
                                        virDomainHostdevDef **hostdevs,
                                        int nhostdevs);
void qemuHostdevReAttachDomainDevices(virQEMUDriver *driver,
                                      virDomainDef *def);