]> git.proxmox.com Git - pve-docs.git/blame_incremental - qm-pci-passthrough.adoc
followup: typos, formatting and wording improvements
[pve-docs.git] / qm-pci-passthrough.adoc
... / ...
CommitLineData
1[[qm_pci_passthrough]]
2PCI(e) Passthrough
3------------------
4
5PCI(e) passthrough is a mechanism to give a virtual machine control over
6a PCI device from the host. This can have some advantages over using
7virtualized hardware, for example lower latency, higher performance, or more
8features (e.g., offloading).
9
10But, if you pass through a device to a virtual machine, you cannot use that
11device anymore on the host or in any other VM.
12
13General Requirements
14~~~~~~~~~~~~~~~~~~~~
15
16Since passthrough is a feature which also needs hardware support, there are
17some requirements to check and preparations to be done to make it work.
18
19
20Hardware
21^^^^^^^^
22Your hardware needs to support `IOMMU` (*I*/*O* **M**emory **M**anagement
23**U**nit) interrupt remapping, this includes the CPU and the mainboard.
24
25Generally, Intel systems with VT-d, and AMD systems with AMD-Vi support this.
26But it is not guaranteed that everything will work out of the box, due
27to bad hardware implementation and missing or low quality drivers.
28
29Further, server grade hardware has often better support than consumer grade
30hardware, but even then, many modern system can support this.
31
32Please refer to your hardware vendor to check if they support this feature
33under Linux for your specific setup
34
35
36Configuration
37^^^^^^^^^^^^^
38
39Once you ensured that your hardware supports passthrough, you will need to do
40some configuration to enable PCI(e) passthrough.
41
42
43IOMMU
44+++++
45
46The IOMMU has to be activated on the kernel commandline. The easiest way is to
47enable trough grub. Edit `'/etc/default/grub'' and add the following to th
48'GRUB_CMDLINE_LINUX_DEFAULT' variable:
49
50* for Intel CPUs:
51+
52----
53 intel_iommu=on
54----
55* for AMD CPUs:
56+
57----
58 amd_iommu=on
59----
60
61To bring this change in effect, make sure you run:
62
63----
64# update-grub
65----
66
67Kernel Modules
68++++++++++++++
69
70You have to make sure the following modules are loaded. This can be achieved by
71adding them to `'/etc/modules''
72
73----
74 vfio
75 vfio_iommu_type1
76 vfio_pci
77 vfio_virqfd
78----
79
80[[qm_pci_passthrough_update_initramfs]]
81After changing anything modules related, you need to refresh your
82`initramfs`. On {pve} this can be done by executing:
83
84----
85# update-initramfs -u -k all
86----
87
88Finish Configuration
89++++++++++++++++++++
90
91Finally reboot to bring the changes into effect and check that it is indeed
92enabled.
93
94----
95# dmesg -e DMAR -e IOMMU -e AMD-Vi
96----
97
98should display that `IOMMU`, `Directed I/O` or `Interrupt Remapping` is
99enabled, depending on hardware and kernel the exact message can vary.
100
101It is also important that the device(s) you want to pass through
102are in a *separate* `IOMMU` group. This can be checked with:
103
104----
105# find /sys/kernel/iommu_groups/ -type l
106----
107
108It is okay if the device is in an `IOMMU` group together with its functions
109(e.g. a GPU with the HDMI Audio device) or with its root port or PCI(e) bridge.
110
111.PCI(e) slots
112[NOTE]
113====
114Some platforms handle their physical PCI(e) slots differently. So, sometimes
115it can help to put the card in a another PCI(e) slot, if you do not get the
116desired `IOMMU` group separation.
117====
118
119.Unsafe interrupts
120[NOTE]
121====
122For some platforms, it may be necessary to allow unsafe interrupts.
123For this add the following line in a file ending with `.conf' file in
124*/etc/modprobe.d/*:
125
126----
127 options vfio_iommu_type1 allow_unsafe_interrupts=1
128----
129
130Please be aware that this option can make your system unstable.
131====
132
133Host Device Passthrough
134~~~~~~~~~~~~~~~~~~~~~~~
135
136The most used variant of PCI(e) passthrough is to pass through a whole
137PCI(e) card, for example a GPU or a network card.
138
139
140Host Configuration
141^^^^^^^^^^^^^^^^^^
142
143In this case, the host cannot use the card. There are two methods to achieve
144this:
145
146* pass the device IDs to the options of the 'vfio-pci' modules by adding
147+
148----
149 options vfio-pci ids=1234:5678,4321:8765
150----
151+
152to a .conf file in */etc/modprobe.d/* where `1234:5678` and `4321:8765` are
153the vendor and device IDs obtained by:
154+
155----
156# lcpci -nn
157----
158
159* blacklist the driver completely on the host, ensuring that it is free to bind
160for passthrough, with
161+
162----
163 blacklist DRIVERNAME
164----
165+
166in a .conf file in */etc/modprobe.d/*.
167
168For both methods you need to
169xref:qm_pci_passthrough_update_initramfs[update the `initramfs`] again and
170reboot after that.
171
172[[qm_pci_passthrough_vm_config]]
173VM Configuration
174^^^^^^^^^^^^^^^^
175To pass through the device you need to set the *hostpciX* option in the VM
176configuration, for example by executing:
177
178----
179# qm set VMID -hostpci0 00:02.0
180----
181
182If your device has multiple functions, you can pass them through all together
183with the shortened syntax ``00:02`'
184
185There are some options to which may be necessary, depending on the device
186and guest OS:
187
188* *x-vga=on|off* marks the PCI(e) device as the primary GPU of the VM.
189With this enabled the *vga* configuration option will be ignored.
190
191* *pcie=on|off* tells {pve} to use a PCIe or PCI port. Some guests/device
192combination require PCIe rather than PCI. PCIe is only available for 'q35'
193machine types.
194
195* *rombar=on|off* makes the firmware ROM visible for the guest. Default is on.
196Some PCI(e) devices need this disabled.
197
198* *romfile=<path>*, is an optional path to a ROM file for the device to use.
199This is a relative path under */usr/share/kvm/*.
200
201Example
202+++++++
203
204An example of PCIe passthrough with a GPU set to primary:
205
206----
207# qm set VMID -hostpci0 02:00,pcie=on,x-vga=on
208----
209
210
211Other considerations
212^^^^^^^^^^^^^^^^^^^^
213
214When passing through a GPU, the best compatibility is reached when using
215'q35' as machine type, 'OVMF' ('EFI' for VMs) instead of SeaBIOS and PCIe
216instead of PCI. Note that if you want to use 'OVMF' for GPU passthrough, the
217GPU needs to have an EFI capable ROM, otherwise use SeaBIOS instead.
218
219SR-IOV
220~~~~~~
221
222Another variant for passing through PCI(e) devices, is to use the hardware
223virtualization features of your devices, if available.
224
225'SR-IOV' (**S**ingle-**R**oot **I**nput/**O**utput **V**irtualization) enables
226a single device to provide multiple 'VF' (**V**irtual **F**unctions) to the
227system. Each of those 'VF' can be used in a different VM, with full hardware
228features and also better performance and lower latency than software
229virtualized devices.
230
231Currently, the most common use case for this are NICs (**N**etwork
232**I**nterface **C**ard) with SR-IOV support, which can provide multiple VFs per
233physical port. This allows using features such as checksum offloading, etc. to
234be used inside a VM, reducing the (host) CPU overhead.
235
236
237Host Configuration
238^^^^^^^^^^^^^^^^^^
239
240Generally, there are two methods for enabling virtual functions on a device.
241
242* sometimes there is an option for the driver module e.g. for some
243Intel drivers
244+
245----
246 max_vfs=4
247----
248+
249which could be put file with '.conf' ending under */etc/modprobe.d/*.
250(Do not forget to update your initramfs after that)
251+
252Please refer to your driver module documentation for the exact
253parameters and options.
254
255* The second, more generic, approach is using the `sysfs`.
256If a device and driver supports this you can change the number of VFs on
257the fly. For example, to setup 4 VFs on device 0000:01:00.0 execute:
258+
259----
260# echo 4 > /sys/bus/pci/devices/0000:01:00.0/sriov_numvfs
261----
262+
263To make this change persistent you can use the `sysfsutils` Debian package.
264After installation configure it via */etc/sysfs.conf* or a `FILE.conf' inf
265*/etc/sysfs.d/*.
266
267VM Configuration
268^^^^^^^^^^^^^^^^
269
270After creating VFs, you should see them as separate PCI(e) devices when
271outputting them with `lspci`. Get their ID and pass them through like a
272xref:qm_pci_passthrough_vm_config[normal PCI(e) device].
273
274Other considerations
275^^^^^^^^^^^^^^^^^^^^
276
277For this feature, platform support is especially important. It may be necessary
278to enable this feature in the BIOS/EFI first, or to use a specific PCI(e) port
279for it to work. In doubt, consult the manual of the platform or contact its
280vendor.