]> git.proxmox.com Git - pve-docs.git/blame_incremental - qm-pci-passthrough.adoc
zfs: make swap and encryption real sections
[pve-docs.git] / qm-pci-passthrough.adoc
... / ...
CommitLineData
1[[qm_pci_passthrough]]
2PCI(e) Passthrough
3------------------
4ifdef::wiki[]
5:pve-toplevel:
6endif::wiki[]
7
8PCI(e) passthrough is a mechanism to give a virtual machine control over
9a PCI device from the host. This can have some advantages over using
10virtualized hardware, for example lower latency, higher performance, or more
11features (e.g., offloading).
12
13But, if you pass through a device to a virtual machine, you cannot use that
14device anymore on the host or in any other VM.
15
16General Requirements
17~~~~~~~~~~~~~~~~~~~~
18
19Since passthrough is a feature which also needs hardware support, there are
20some requirements to check and preparations to be done to make it work.
21
22
23Hardware
24^^^^^^^^
25Your hardware needs to support `IOMMU` (*I*/*O* **M**emory **M**anagement
26**U**nit) interrupt remapping, this includes the CPU and the mainboard.
27
28Generally, Intel systems with VT-d, and AMD systems with AMD-Vi support this.
29But it is not guaranteed that everything will work out of the box, due
30to bad hardware implementation and missing or low quality drivers.
31
32Further, server grade hardware has often better support than consumer grade
33hardware, but even then, many modern system can support this.
34
35Please refer to your hardware vendor to check if they support this feature
36under Linux for your specific setup.
37
38
39Configuration
40^^^^^^^^^^^^^
41
42Once you ensured that your hardware supports passthrough, you will need to do
43some configuration to enable PCI(e) passthrough.
44
45
46.IOMMU
47
48The IOMMU has to be activated on the
49xref:sysboot_edit_kernel_cmdline[kernel commandline].
50
51The command line parameters are:
52
53* for Intel CPUs:
54+
55----
56 intel_iommu=on
57----
58* for AMD CPUs:
59+
60----
61 amd_iommu=on
62----
63
64
65.Kernel Modules
66
67You have to make sure the following modules are loaded. This can be achieved by
68adding them to `'/etc/modules''
69
70----
71 vfio
72 vfio_iommu_type1
73 vfio_pci
74 vfio_virqfd
75----
76
77[[qm_pci_passthrough_update_initramfs]]
78After changing anything modules related, you need to refresh your
79`initramfs`. On {pve} this can be done by executing:
80
81----
82# update-initramfs -u -k all
83----
84
85If you are using `systemd-boot` make sure to
86xref:sysboot_systemd_boot_refresh[sync the new initramfs to the bootable partitions].
87
88.Finish Configuration
89
90Finally reboot to bring the changes into effect and check that it is indeed
91enabled.
92
93----
94# dmesg | grep -e DMAR -e IOMMU -e AMD-Vi
95----
96
97should display that `IOMMU`, `Directed I/O` or `Interrupt Remapping` is
98enabled, depending on hardware and kernel the exact message can vary.
99
100It is also important that the device(s) you want to pass through
101are in a *separate* `IOMMU` group. This can be checked with:
102
103----
104# find /sys/kernel/iommu_groups/ -type l
105----
106
107It is okay if the device is in an `IOMMU` group together with its functions
108(e.g. a GPU with the HDMI Audio device) or with its root port or PCI(e) bridge.
109
110.PCI(e) slots
111[NOTE]
112====
113Some platforms handle their physical PCI(e) slots differently. So, sometimes
114it can help to put the card in a another PCI(e) slot, if you do not get the
115desired `IOMMU` group separation.
116====
117
118.Unsafe interrupts
119[NOTE]
120====
121For some platforms, it may be necessary to allow unsafe interrupts.
122For this add the following line in a file ending with `.conf' file in
123*/etc/modprobe.d/*:
124
125----
126 options vfio_iommu_type1 allow_unsafe_interrupts=1
127----
128
129Please be aware that this option can make your system unstable.
130====
131
132GPU Passthrough Notes
133^^^^^^^^^^^^^^^^^^^^^
134
135It is not possible to display the frame buffer of the GPU via NoVNC or SPICE on
136the {pve} web interface.
137
138When passing through a whole GPU or a vGPU and graphic output is wanted, one
139has to either physically connect a monitor to the card, or configure a remote
140desktop software (for example, VNC or RDP) inside the guest.
141
142If you want to use the GPU as a hardware accelerator, for example, for
143programs using OpenCL or CUDA, this is not required.
144
145Host Device Passthrough
146~~~~~~~~~~~~~~~~~~~~~~~
147
148The most used variant of PCI(e) passthrough is to pass through a whole
149PCI(e) card, for example a GPU or a network card.
150
151
152Host Configuration
153^^^^^^^^^^^^^^^^^^
154
155In this case, the host cannot use the card. There are two methods to achieve
156this:
157
158* pass the device IDs to the options of the 'vfio-pci' modules by adding
159+
160----
161 options vfio-pci ids=1234:5678,4321:8765
162----
163+
164to a .conf file in */etc/modprobe.d/* where `1234:5678` and `4321:8765` are
165the vendor and device IDs obtained by:
166+
167----
168# lcpci -nn
169----
170
171* blacklist the driver completely on the host, ensuring that it is free to bind
172for passthrough, with
173+
174----
175 blacklist DRIVERNAME
176----
177+
178in a .conf file in */etc/modprobe.d/*.
179
180For both methods you need to
181xref:qm_pci_passthrough_update_initramfs[update the `initramfs`] again and
182reboot after that.
183
184[[qm_pci_passthrough_vm_config]]
185VM Configuration
186^^^^^^^^^^^^^^^^
187To pass through the device you need to set the *hostpciX* option in the VM
188configuration, for example by executing:
189
190----
191# qm set VMID -hostpci0 00:02.0
192----
193
194If your device has multiple functions (e.g., ``00:02.0`' and ``00:02.1`' ),
195you can pass them through all together with the shortened syntax ``00:02`'
196
197There are some options to which may be necessary, depending on the device
198and guest OS:
199
200* *x-vga=on|off* marks the PCI(e) device as the primary GPU of the VM.
201With this enabled the *vga* configuration option will be ignored.
202
203* *pcie=on|off* tells {pve} to use a PCIe or PCI port. Some guests/device
204combination require PCIe rather than PCI. PCIe is only available for 'q35'
205machine types.
206
207* *rombar=on|off* makes the firmware ROM visible for the guest. Default is on.
208Some PCI(e) devices need this disabled.
209
210* *romfile=<path>*, is an optional path to a ROM file for the device to use.
211This is a relative path under */usr/share/kvm/*.
212
213.Example
214
215An example of PCIe passthrough with a GPU set to primary:
216
217----
218# qm set VMID -hostpci0 02:00,pcie=on,x-vga=on
219----
220
221
222Other considerations
223^^^^^^^^^^^^^^^^^^^^
224
225When passing through a GPU, the best compatibility is reached when using
226'q35' as machine type, 'OVMF' ('EFI' for VMs) instead of SeaBIOS and PCIe
227instead of PCI. Note that if you want to use 'OVMF' for GPU passthrough, the
228GPU needs to have an EFI capable ROM, otherwise use SeaBIOS instead.
229
230SR-IOV
231~~~~~~
232
233Another variant for passing through PCI(e) devices, is to use the hardware
234virtualization features of your devices, if available.
235
236'SR-IOV' (**S**ingle-**R**oot **I**nput/**O**utput **V**irtualization) enables
237a single device to provide multiple 'VF' (**V**irtual **F**unctions) to the
238system. Each of those 'VF' can be used in a different VM, with full hardware
239features and also better performance and lower latency than software
240virtualized devices.
241
242Currently, the most common use case for this are NICs (**N**etwork
243**I**nterface **C**ard) with SR-IOV support, which can provide multiple VFs per
244physical port. This allows using features such as checksum offloading, etc. to
245be used inside a VM, reducing the (host) CPU overhead.
246
247
248Host Configuration
249^^^^^^^^^^^^^^^^^^
250
251Generally, there are two methods for enabling virtual functions on a device.
252
253* sometimes there is an option for the driver module e.g. for some
254Intel drivers
255+
256----
257 max_vfs=4
258----
259+
260which could be put file with '.conf' ending under */etc/modprobe.d/*.
261(Do not forget to update your initramfs after that)
262+
263Please refer to your driver module documentation for the exact
264parameters and options.
265
266* The second, more generic, approach is using the `sysfs`.
267If a device and driver supports this you can change the number of VFs on
268the fly. For example, to setup 4 VFs on device 0000:01:00.0 execute:
269+
270----
271# echo 4 > /sys/bus/pci/devices/0000:01:00.0/sriov_numvfs
272----
273+
274To make this change persistent you can use the `sysfsutils` Debian package.
275After installation configure it via */etc/sysfs.conf* or a `FILE.conf' in
276*/etc/sysfs.d/*.
277
278VM Configuration
279^^^^^^^^^^^^^^^^
280
281After creating VFs, you should see them as separate PCI(e) devices when
282outputting them with `lspci`. Get their ID and pass them through like a
283xref:qm_pci_passthrough_vm_config[normal PCI(e) device].
284
285Other considerations
286^^^^^^^^^^^^^^^^^^^^
287
288For this feature, platform support is especially important. It may be necessary
289to enable this feature in the BIOS/EFI first, or to use a specific PCI(e) port
290for it to work. In doubt, consult the manual of the platform or contact its
291vendor.
292
293Mediated Devices (vGPU, GVT-g)
294~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
295
296Mediated devices are another method to reuse features and performance from
297physical hardware for virtualized hardware. These are found most common in
298virtualized GPU setups such as Intels GVT-g and Nvidias vGPUs used in their
299GRID technology.
300
301With this, a physical Card is able to create virtual cards, similar to SR-IOV.
302The difference is that mediated devices do not appear as PCI(e) devices in the
303host, and are such only suited for using in virtual machines.
304
305
306Host Configuration
307^^^^^^^^^^^^^^^^^^
308
309In general your card's driver must support that feature, otherwise it will
310not work. So please refer to your vendor for compatible drivers and how to
311configure them.
312
313Intels drivers for GVT-g are integrated in the Kernel and should work
314with 5th, 6th and 7th generation Intel Core Processors, as well as E3 v4, E3
315v5 and E3 v6 Xeon Processors.
316
317To enable it for Intel Graphics, you have to make sure to load the module
318'kvmgt' (for example via `/etc/modules`) and to enable it on the
319xref:sysboot_edit_kernel_cmdline[Kernel commandline] and add the following parameter:
320
321----
322 i915.enable_gvt=1
323----
324
325After that remember to
326xref:qm_pci_passthrough_update_initramfs[update the `initramfs`],
327and reboot your host.
328
329VM Configuration
330^^^^^^^^^^^^^^^^
331
332To use a mediated device, simply specify the `mdev` property on a `hostpciX`
333VM configuration option.
334
335You can get the supported devices via the 'sysfs'. For example, to list the
336supported types for the device '0000:00:02.0' you would simply execute:
337
338----
339# ls /sys/bus/pci/devices/0000:00:02.0/mdev_supported_types
340----
341
342Each entry is a directory which contains the following important files:
343
344* 'available_instances' contains the amount of still available instances of
345this type, each 'mdev' use in a VM reduces this.
346* 'description' contains a short description about the capabilities of the type
347* 'create' is the endpoint to create such a device, {pve} does this
348automatically for you, if a 'hostpciX' option with `mdev` is configured.
349
350Example configuration with an `Intel GVT-g vGPU` (`Intel Skylake 6700k`):
351
352----
353# qm set VMID -hostpci0 00:02.0,mdev=i915-GVTg_V5_4
354----
355
356With this set, {pve} automatically creates such a device on VM start, and
357cleans it up again when the VM stops.
358
359ifdef::wiki[]
360
361See Also
362~~~~~~~~
363
364* link:/wiki/Pci_passthrough[PCI Passthrough Examples]
365
366endif::wiki[]