blob: 414b7fe1cf7bc18fef12c8e2212600487b99c469 [file] [log] [blame]
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001.. SPDX-License-Identifier: GPL-2.0
2
3===================================================================
Avi Kivity9c1b96e2009-06-09 12:37:58 +03004The Definitive KVM (Kernel-based Virtual Machine) API Documentation
5===================================================================
6
71. General description
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01008======================
Avi Kivity9c1b96e2009-06-09 12:37:58 +03009
10The kvm API is a set of ioctls that are issued to control various aspects
Wainer dos Santos Moschetta80b10aa2019-11-29 13:17:30 -050011of a virtual machine. The ioctls belong to the following classes:
Avi Kivity9c1b96e2009-06-09 12:37:58 +030012
13 - System ioctls: These query and set global attributes which affect the
14 whole kvm subsystem. In addition a system ioctl is used to create
Sean Christopherson5e124902019-02-15 12:48:38 -080015 virtual machines.
Avi Kivity9c1b96e2009-06-09 12:37:58 +030016
17 - VM ioctls: These query and set attributes that affect an entire virtual
18 machine, for example memory layout. In addition a VM ioctl is used to
Sean Christophersonddba9182019-02-15 12:48:39 -080019 create virtual cpus (vcpus) and devices.
Avi Kivity9c1b96e2009-06-09 12:37:58 +030020
Sean Christopherson5e124902019-02-15 12:48:38 -080021 VM ioctls must be issued from the same process (address space) that was
22 used to create the VM.
Avi Kivity9c1b96e2009-06-09 12:37:58 +030023
24 - vcpu ioctls: These query and set attributes that control the operation
25 of a single virtual cpu.
26
Sean Christopherson5e124902019-02-15 12:48:38 -080027 vcpu ioctls should be issued from the same thread that was used to create
28 the vcpu, except for asynchronous vcpu ioctl that are marked as such in
29 the documentation. Otherwise, the first ioctl after switching threads
30 could see a performance impact.
Avi Kivity9c1b96e2009-06-09 12:37:58 +030031
Sean Christophersonddba9182019-02-15 12:48:39 -080032 - device ioctls: These query and set attributes that control the operation
33 of a single device.
34
35 device ioctls must be issued from the same process (address space) that
36 was used to create the VM.
Jan Kiszka414fa982012-04-24 16:40:15 +020037
Wu Fengguang2044892d2009-12-24 09:04:16 +0800382. File descriptors
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +010039===================
Avi Kivity9c1b96e2009-06-09 12:37:58 +030040
41The kvm API is centered around file descriptors. An initial
42open("/dev/kvm") obtains a handle to the kvm subsystem; this handle
43can be used to issue system ioctls. A KVM_CREATE_VM ioctl on this
Wu Fengguang2044892d2009-12-24 09:04:16 +080044handle will create a VM file descriptor which can be used to issue VM
Sean Christophersonddba9182019-02-15 12:48:39 -080045ioctls. A KVM_CREATE_VCPU or KVM_CREATE_DEVICE ioctl on a VM fd will
46create a virtual cpu or device and return a file descriptor pointing to
47the new resource. Finally, ioctls on a vcpu or device fd can be used
48to control the vcpu or device. For vcpus, this includes the important
49task of actually running guest code.
Avi Kivity9c1b96e2009-06-09 12:37:58 +030050
51In general file descriptors can be migrated among processes by means
52of fork() and the SCM_RIGHTS facility of unix domain socket. These
53kinds of tricks are explicitly not supported by kvm. While they will
54not cause harm to the host, their actual behavior is not guaranteed by
Sean Christopherson5e124902019-02-15 12:48:38 -080055the API. See "General description" for details on the ioctl usage
56model that is supported by KVM.
Jan Kiszka414fa982012-04-24 16:40:15 +020057
Sean Christophersoneca6be52019-02-15 12:48:40 -080058It is important to note that althought VM ioctls may only be issued from
59the process that created the VM, a VM's lifecycle is associated with its
60file descriptor, not its creator (process). In other words, the VM and
61its resources, *including the associated address space*, are not freed
62until the last reference to the VM's file descriptor has been released.
63For example, if fork() is issued after ioctl(KVM_CREATE_VM), the VM will
64not be freed until both the parent (original) process and its child have
65put their references to the VM's file descriptor.
66
67Because a VM's resources are not freed until the last reference to its
Randy Dunlap3747c5d2020-07-03 14:29:06 -070068file descriptor is released, creating additional references to a VM
Sean Christophersoneca6be52019-02-15 12:48:40 -080069via fork(), dup(), etc... without careful consideration is strongly
70discouraged and may have unwanted side effects, e.g. memory allocated
71by and on behalf of the VM's process may not be freed/unaccounted when
72the VM is shut down.
73
74
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300753. Extensions
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +010076=============
Avi Kivity9c1b96e2009-06-09 12:37:58 +030077
78As of Linux 2.6.22, the KVM ABI has been stabilized: no backward
79incompatible change are allowed. However, there is an extension
80facility that allows backward-compatible extensions to the API to be
81queried and used.
82
Masanari Iidac9f3f2d2013-07-18 01:29:12 +090083The extension mechanism is not based on the Linux version number.
Avi Kivity9c1b96e2009-06-09 12:37:58 +030084Instead, kvm defines extension identifiers and a facility to query
85whether a particular extension identifier is available. If it is, a
86set of ioctls is available for application use.
87
Jan Kiszka414fa982012-04-24 16:40:15 +020088
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300894. API description
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +010090==================
Avi Kivity9c1b96e2009-06-09 12:37:58 +030091
92This section describes ioctls that can be used to control kvm guests.
93For each ioctl, the following information is provided along with a
94description:
95
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +010096 Capability:
97 which KVM extension provides this ioctl. Can be 'basic',
Avi Kivity9c1b96e2009-06-09 12:37:58 +030098 which means that is will be provided by any kernel that supports
Michael S. Tsirkin7f05db62014-10-12 11:34:00 +030099 API version 12 (see section 4.1), a KVM_CAP_xyz constant, which
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300100 means availability needs to be checked with KVM_CHECK_EXTENSION
Michael S. Tsirkin7f05db62014-10-12 11:34:00 +0300101 (see section 4.4), or 'none' which means that while not all kernels
102 support this ioctl, there's no capability bit to check its
103 availability: for kernels that don't support the ioctl,
104 the ioctl returns -ENOTTY.
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300105
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100106 Architectures:
107 which instruction set architectures provide this ioctl.
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300108 x86 includes both i386 and x86_64.
109
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100110 Type:
111 system, vm, or vcpu.
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300112
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100113 Parameters:
114 what parameters are accepted by the ioctl.
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300115
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100116 Returns:
117 the return value. General error numbers (EBADF, ENOMEM, EINVAL)
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300118 are not detailed, but errors with specific meanings are.
119
Jan Kiszka414fa982012-04-24 16:40:15 +0200120
Avi Kivity9c1b96e2009-06-09 12:37:58 +03001214.1 KVM_GET_API_VERSION
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100122-----------------------
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300123
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100124:Capability: basic
125:Architectures: all
126:Type: system ioctl
127:Parameters: none
128:Returns: the constant KVM_API_VERSION (=12)
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300129
130This identifies the API version as the stable kvm API. It is not
131expected that this number will change. However, Linux 2.6.20 and
1322.6.21 report earlier versions; these are not documented and not
133supported. Applications should refuse to run if KVM_GET_API_VERSION
134returns a value other than 12. If this check passes, all ioctls
135described as 'basic' will be available.
136
Jan Kiszka414fa982012-04-24 16:40:15 +0200137
Avi Kivity9c1b96e2009-06-09 12:37:58 +03001384.2 KVM_CREATE_VM
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100139-----------------
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300140
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100141:Capability: basic
142:Architectures: all
143:Type: system ioctl
144:Parameters: machine type identifier (KVM_VM_*)
145:Returns: a VM fd that can be used to control the new virtual machine.
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300146
Jann Hornbcb85c82017-04-24 11:16:49 +0200147The new VM has no virtual cpus and no memory.
James Hogana8a3c422017-03-14 10:15:19 +0000148You probably want to use 0 as machine type.
Carsten Ottee08b9632012-01-04 10:25:20 +0100149
150In order to create user controlled virtual machines on S390, check
151KVM_CAP_S390_UCONTROL and use the flag KVM_VM_S390_UCONTROL as
152privileged user (CAP_SYS_ADMIN).
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300153
James Hogana8a3c422017-03-14 10:15:19 +0000154To use hardware assisted virtualization on MIPS (VZ ASE) rather than
155the default trap & emulate implementation (which changes the virtual
156memory layout to fit in user mode), check KVM_CAP_MIPS_VZ and use the
157flag KVM_VM_MIPS_VZ.
158
Jan Kiszka414fa982012-04-24 16:40:15 +0200159
Suzuki K Poulose233a7cb2018-09-26 17:32:54 +0100160On arm64, the physical address size for a VM (IPA Size limit) is limited
161to 40bits by default. The limit can be configured if the host supports the
162extension KVM_CAP_ARM_VM_IPA_SIZE. When supported, use
163KVM_VM_TYPE_ARM_IPA_SIZE(IPA_Bits) to set the size in the machine type
164identifier, where IPA_Bits is the maximum width of any physical
165address used by the VM. The IPA_Bits is encoded in bits[7-0] of the
166machine type identifier.
167
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100168e.g, to configure a guest to use 48bit physical address size::
Suzuki K Poulose233a7cb2018-09-26 17:32:54 +0100169
170 vm_fd = ioctl(dev_fd, KVM_CREATE_VM, KVM_VM_TYPE_ARM_IPA_SIZE(48));
171
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100172The requested size (IPA_Bits) must be:
Suzuki K Poulose233a7cb2018-09-26 17:32:54 +0100173
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100174 == =========================================================
175 0 Implies default size, 40bits (for backward compatibility)
176 N Implies N bits, where N is a positive integer such that,
Suzuki K Poulose233a7cb2018-09-26 17:32:54 +0100177 32 <= N <= Host_IPA_Limit
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100178 == =========================================================
Suzuki K Poulose233a7cb2018-09-26 17:32:54 +0100179
180Host_IPA_Limit is the maximum possible value for IPA_Bits on the host and
181is dependent on the CPU capability and the kernel configuration. The limit can
182be retrieved using KVM_CAP_ARM_VM_IPA_SIZE of the KVM_CHECK_EXTENSION
183ioctl() at run-time.
184
Marc Zyngier7d717552021-03-11 10:00:15 +0000185Creation of the VM will fail if the requested IPA size (whether it is
186implicit or explicit) is unsupported on the host.
187
Suzuki K Poulose233a7cb2018-09-26 17:32:54 +0100188Please note that configuring the IPA size does not affect the capability
189exposed by the guest CPUs in ID_AA64MMFR0_EL1[PARange]. It only affects
190size of the address translated by the stage2 level (guest physical to
191host physical address translations).
192
193
Tom Lendacky801e4592018-02-21 13:39:51 -06001944.3 KVM_GET_MSR_INDEX_LIST, KVM_GET_MSR_FEATURE_INDEX_LIST
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100195----------------------------------------------------------
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300196
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100197:Capability: basic, KVM_CAP_GET_MSR_FEATURES for KVM_GET_MSR_FEATURE_INDEX_LIST
198:Architectures: x86
199:Type: system ioctl
200:Parameters: struct kvm_msr_list (in/out)
201:Returns: 0 on success; -1 on error
202
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300203Errors:
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300204
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100205 ====== ============================================================
206 EFAULT the msr index list cannot be read from or written to
Emanuele Giuseppe Esposito24e74752021-03-16 18:08:14 +0100207 E2BIG the msr index list is too big to fit in the array specified by
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100208 the user.
209 ====== ============================================================
210
211::
212
213 struct kvm_msr_list {
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300214 __u32 nmsrs; /* number of msrs in entries */
215 __u32 indices[0];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100216 };
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300217
Tom Lendacky801e4592018-02-21 13:39:51 -0600218The user fills in the size of the indices array in nmsrs, and in return
219kvm adjusts nmsrs to reflect the actual number of msrs and fills in the
220indices array with their numbers.
221
222KVM_GET_MSR_INDEX_LIST returns the guest msrs that are supported. The list
223varies by kvm version and host processor, but does not change otherwise.
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300224
Avi Kivity2e2602c2010-07-07 14:09:39 +0300225Note: if kvm indicates supports MCE (KVM_CAP_MCE), then the MCE bank MSRs are
226not returned in the MSR list, as different vcpus can have a different number
227of banks, as set via the KVM_X86_SETUP_MCE ioctl.
228
Tom Lendacky801e4592018-02-21 13:39:51 -0600229KVM_GET_MSR_FEATURE_INDEX_LIST returns the list of MSRs that can be passed
230to the KVM_GET_MSRS system ioctl. This lets userspace probe host capabilities
231and processor features that are exposed via MSRs (e.g., VMX capabilities).
232This list also varies by kvm version and host processor, but does not change
233otherwise.
234
Jan Kiszka414fa982012-04-24 16:40:15 +0200235
Avi Kivity9c1b96e2009-06-09 12:37:58 +03002364.4 KVM_CHECK_EXTENSION
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100237-----------------------
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300238
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100239:Capability: basic, KVM_CAP_CHECK_EXTENSION_VM for vm ioctl
240:Architectures: all
241:Type: system ioctl, vm ioctl
242:Parameters: extension identifier (KVM_CAP_*)
243:Returns: 0 if unsupported; 1 (or some other positive integer) if supported
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300244
245The API allows the application to query about extensions to the core
246kvm API. Userspace passes an extension identifier (an integer) and
247receives an integer that describes the extension availability.
248Generally 0 means no and 1 means yes, but some extensions may report
249additional information in the integer return value.
250
Alexander Graf92b591a2014-07-14 18:33:08 +0200251Based on their initialization different VMs may have different capabilities.
252It is thus encouraged to use the vm ioctl to query for capabilities (available
253with KVM_CAP_CHECK_EXTENSION_VM on the vm fd)
Jan Kiszka414fa982012-04-24 16:40:15 +0200254
Avi Kivity9c1b96e2009-06-09 12:37:58 +03002554.5 KVM_GET_VCPU_MMAP_SIZE
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100256--------------------------
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300257
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100258:Capability: basic
259:Architectures: all
260:Type: system ioctl
261:Parameters: none
262:Returns: size of vcpu mmap area, in bytes
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300263
264The KVM_RUN ioctl (cf.) communicates with userspace via a shared
265memory region. This ioctl returns the size of that region. See the
266KVM_RUN documentation for details.
267
Peter Xufb04a1e2020-09-30 21:22:22 -0400268Besides the size of the KVM_RUN communication region, other areas of
269the VCPU file descriptor can be mmap-ed, including:
270
271- if KVM_CAP_COALESCED_MMIO is available, a page at
272 KVM_COALESCED_MMIO_PAGE_OFFSET * PAGE_SIZE; for historical reasons,
273 this page is included in the result of KVM_GET_VCPU_MMAP_SIZE.
274 KVM_CAP_COALESCED_MMIO is not documented yet.
275
276- if KVM_CAP_DIRTY_LOG_RING is available, a number of pages at
277 KVM_DIRTY_LOG_PAGE_OFFSET * PAGE_SIZE. For more information on
278 KVM_CAP_DIRTY_LOG_RING, see section 8.3.
279
Jan Kiszka414fa982012-04-24 16:40:15 +0200280
Avi Kivity9c1b96e2009-06-09 12:37:58 +03002814.6 KVM_SET_MEMORY_REGION
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100282-------------------------
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300283
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100284:Capability: basic
285:Architectures: all
286:Type: vm ioctl
287:Parameters: struct kvm_memory_region (in)
288:Returns: 0 on success, -1 on error
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300289
Avi Kivityb74a07b2010-06-21 11:48:05 +0300290This ioctl is obsolete and has been removed.
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300291
Jan Kiszka414fa982012-04-24 16:40:15 +0200292
Paul Bolle68ba6972011-02-15 00:05:59 +01002934.7 KVM_CREATE_VCPU
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100294-------------------
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300295
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100296:Capability: basic
297:Architectures: all
298:Type: vm ioctl
299:Parameters: vcpu id (apic id on x86)
300:Returns: vcpu fd on success, -1 on error
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300301
Greg Kurz0b1b1df2016-05-09 18:13:37 +0200302This API adds a vcpu to a virtual machine. No more than max_vcpus may be added.
303The vcpu id is an integer in the range [0, max_vcpu_id).
Sasha Levin8c3ba332011-07-18 17:17:15 +0300304
305The recommended max_vcpus value can be retrieved using the KVM_CAP_NR_VCPUS of
306the KVM_CHECK_EXTENSION ioctl() at run-time.
307The maximum possible value for max_vcpus can be retrieved using the
308KVM_CAP_MAX_VCPUS of the KVM_CHECK_EXTENSION ioctl() at run-time.
309
Pekka Enberg76d25402011-05-09 22:48:54 +0300310If the KVM_CAP_NR_VCPUS does not exist, you should assume that max_vcpus is 4
311cpus max.
Sasha Levin8c3ba332011-07-18 17:17:15 +0300312If the KVM_CAP_MAX_VCPUS does not exist, you should assume that max_vcpus is
313same as the value returned from KVM_CAP_NR_VCPUS.
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300314
Greg Kurz0b1b1df2016-05-09 18:13:37 +0200315The maximum possible value for max_vcpu_id can be retrieved using the
316KVM_CAP_MAX_VCPU_ID of the KVM_CHECK_EXTENSION ioctl() at run-time.
317
318If the KVM_CAP_MAX_VCPU_ID does not exist, you should assume that max_vcpu_id
319is the same as the value returned from KVM_CAP_MAX_VCPUS.
320
Paul Mackerras371fefd2011-06-29 00:23:08 +0000321On powerpc using book3s_hv mode, the vcpus are mapped onto virtual
322threads in one or more virtual CPU cores. (This is because the
323hardware requires all the hardware threads in a CPU core to be in the
324same partition.) The KVM_CAP_PPC_SMT capability indicates the number
325of vcpus per virtual core (vcore). The vcore id is obtained by
326dividing the vcpu id by the number of vcpus per vcore. The vcpus in a
327given vcore will always be in the same physical core as each other
328(though that might be a different physical core from time to time).
329Userspace can control the threading (SMT) mode of the guest by its
330allocation of vcpu ids. For example, if userspace wants
331single-threaded guest vcpus, it should make all vcpu ids be a multiple
332of the number of vcpus per vcore.
333
Carsten Otte5b1c1492012-01-04 10:25:23 +0100334For virtual cpus that have been created with S390 user controlled virtual
335machines, the resulting vcpu fd can be memory mapped at page offset
336KVM_S390_SIE_PAGE_OFFSET in order to obtain a memory map of the virtual
337cpu's hardware control block.
338
Jan Kiszka414fa982012-04-24 16:40:15 +0200339
Paul Bolle68ba6972011-02-15 00:05:59 +01003404.8 KVM_GET_DIRTY_LOG (vm ioctl)
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100341--------------------------------
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300342
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100343:Capability: basic
344:Architectures: all
345:Type: vm ioctl
346:Parameters: struct kvm_dirty_log (in/out)
347:Returns: 0 on success, -1 on error
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300348
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100349::
350
351 /* for KVM_GET_DIRTY_LOG */
352 struct kvm_dirty_log {
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300353 __u32 slot;
354 __u32 padding;
355 union {
356 void __user *dirty_bitmap; /* one bit per page */
357 __u64 padding;
358 };
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100359 };
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300360
361Given a memory slot, return a bitmap containing any pages dirtied
362since the last call to this ioctl. Bit 0 is the first page in the
363memory slot. Ensure the entire structure is cleared to avoid padding
364issues.
365
Zenghui Yu01ead842020-12-08 12:34:39 +0800366If KVM_CAP_MULTI_ADDRESS_SPACE is available, bits 16-31 of slot field specifies
367the address space for which you want to return the dirty bitmap. See
368KVM_SET_USER_MEMORY_REGION for details on the usage of slot field.
Paolo Bonzinif481b062015-05-17 17:30:37 +0200369
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +0200370The bits in the dirty bitmap are cleared before the ioctl returns, unless
Peter Xud7547c52019-05-08 17:15:47 +0800371KVM_CAP_MANUAL_DIRTY_LOG_PROTECT2 is enabled. For more information,
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +0200372see the description of the capability.
Jan Kiszka414fa982012-04-24 16:40:15 +0200373
Paul Bolle68ba6972011-02-15 00:05:59 +01003744.9 KVM_SET_MEMORY_ALIAS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100375------------------------
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300376
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100377:Capability: basic
378:Architectures: x86
379:Type: vm ioctl
380:Parameters: struct kvm_memory_alias (in)
381:Returns: 0 (success), -1 (error)
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300382
Avi Kivitya1f4d3952010-06-21 11:44:20 +0300383This ioctl is obsolete and has been removed.
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300384
Jan Kiszka414fa982012-04-24 16:40:15 +0200385
Paul Bolle68ba6972011-02-15 00:05:59 +01003864.10 KVM_RUN
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100387------------
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300388
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100389:Capability: basic
390:Architectures: all
391:Type: vcpu ioctl
392:Parameters: none
393:Returns: 0 on success, -1 on error
394
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300395Errors:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100396
Alexandru Elisei3557ae12020-12-01 15:01:53 +0000397 ======= ==============================================================
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100398 EINTR an unmasked signal is pending
Alexandru Elisei3557ae12020-12-01 15:01:53 +0000399 ENOEXEC the vcpu hasn't been initialized or the guest tried to execute
400 instructions from device memory (arm64)
401 ENOSYS data abort outside memslots with no syndrome info and
402 KVM_CAP_ARM_NISV_TO_USER not enabled (arm64)
403 EPERM SVE feature set but not finalized (arm64)
404 ======= ==============================================================
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300405
406This ioctl is used to run a guest virtual cpu. While there are no
407explicit parameters, there is an implicit parameter block that can be
408obtained by mmap()ing the vcpu fd at offset 0, with the size given by
409KVM_GET_VCPU_MMAP_SIZE. The parameter block is formatted as a 'struct
410kvm_run' (see below).
411
Jan Kiszka414fa982012-04-24 16:40:15 +0200412
Paul Bolle68ba6972011-02-15 00:05:59 +01004134.11 KVM_GET_REGS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100414-----------------
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300415
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100416:Capability: basic
417:Architectures: all except ARM, arm64
418:Type: vcpu ioctl
419:Parameters: struct kvm_regs (out)
420:Returns: 0 on success, -1 on error
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300421
422Reads the general purpose registers from the vcpu.
423
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100424::
425
426 /* x86 */
427 struct kvm_regs {
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300428 /* out (KVM_GET_REGS) / in (KVM_SET_REGS) */
429 __u64 rax, rbx, rcx, rdx;
430 __u64 rsi, rdi, rsp, rbp;
431 __u64 r8, r9, r10, r11;
432 __u64 r12, r13, r14, r15;
433 __u64 rip, rflags;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100434 };
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300435
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100436 /* mips */
437 struct kvm_regs {
James Hoganc2d2c212014-07-04 15:11:35 +0100438 /* out (KVM_GET_REGS) / in (KVM_SET_REGS) */
439 __u64 gpr[32];
440 __u64 hi;
441 __u64 lo;
442 __u64 pc;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100443 };
James Hoganc2d2c212014-07-04 15:11:35 +0100444
Jan Kiszka414fa982012-04-24 16:40:15 +0200445
Paul Bolle68ba6972011-02-15 00:05:59 +01004464.12 KVM_SET_REGS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100447-----------------
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300448
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100449:Capability: basic
450:Architectures: all except ARM, arm64
451:Type: vcpu ioctl
452:Parameters: struct kvm_regs (in)
453:Returns: 0 on success, -1 on error
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300454
455Writes the general purpose registers into the vcpu.
456
457See KVM_GET_REGS for the data structure.
458
Jan Kiszka414fa982012-04-24 16:40:15 +0200459
Paul Bolle68ba6972011-02-15 00:05:59 +01004604.13 KVM_GET_SREGS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100461------------------
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300462
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100463:Capability: basic
464:Architectures: x86, ppc
465:Type: vcpu ioctl
466:Parameters: struct kvm_sregs (out)
467:Returns: 0 on success, -1 on error
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300468
469Reads special registers from the vcpu.
470
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100471::
472
473 /* x86 */
474 struct kvm_sregs {
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300475 struct kvm_segment cs, ds, es, fs, gs, ss;
476 struct kvm_segment tr, ldt;
477 struct kvm_dtable gdt, idt;
478 __u64 cr0, cr2, cr3, cr4, cr8;
479 __u64 efer;
480 __u64 apic_base;
481 __u64 interrupt_bitmap[(KVM_NR_INTERRUPTS + 63) / 64];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100482 };
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300483
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100484 /* ppc -- see arch/powerpc/include/uapi/asm/kvm.h */
Scott Wood5ce941e2011-04-27 17:24:21 -0500485
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300486interrupt_bitmap is a bitmap of pending external interrupts. At most
487one bit may be set. This interrupt has been acknowledged by the APIC
488but not yet injected into the cpu core.
489
Jan Kiszka414fa982012-04-24 16:40:15 +0200490
Paul Bolle68ba6972011-02-15 00:05:59 +01004914.14 KVM_SET_SREGS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100492------------------
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300493
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100494:Capability: basic
495:Architectures: x86, ppc
496:Type: vcpu ioctl
497:Parameters: struct kvm_sregs (in)
498:Returns: 0 on success, -1 on error
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300499
500Writes special registers into the vcpu. See KVM_GET_SREGS for the
501data structures.
502
Jan Kiszka414fa982012-04-24 16:40:15 +0200503
Paul Bolle68ba6972011-02-15 00:05:59 +01005044.15 KVM_TRANSLATE
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100505------------------
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300506
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100507:Capability: basic
508:Architectures: x86
509:Type: vcpu ioctl
510:Parameters: struct kvm_translation (in/out)
511:Returns: 0 on success, -1 on error
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300512
513Translates a virtual address according to the vcpu's current address
514translation mode.
515
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100516::
517
518 struct kvm_translation {
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300519 /* in */
520 __u64 linear_address;
521
522 /* out */
523 __u64 physical_address;
524 __u8 valid;
525 __u8 writeable;
526 __u8 usermode;
527 __u8 pad[5];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100528 };
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300529
Jan Kiszka414fa982012-04-24 16:40:15 +0200530
Paul Bolle68ba6972011-02-15 00:05:59 +01005314.16 KVM_INTERRUPT
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100532------------------
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300533
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100534:Capability: basic
535:Architectures: x86, ppc, mips
536:Type: vcpu ioctl
537:Parameters: struct kvm_interrupt (in)
538:Returns: 0 on success, negative on failure.
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300539
Steve Rutherford1c1a9ce2015-07-30 11:27:16 +0200540Queues a hardware interrupt vector to be injected.
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300541
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100542::
543
544 /* for KVM_INTERRUPT */
545 struct kvm_interrupt {
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300546 /* in */
547 __u32 irq;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100548 };
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300549
Alexander Graf6f7a2bd2010-08-31 02:03:32 +0200550X86:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100551^^^^
Alexander Graf6f7a2bd2010-08-31 02:03:32 +0200552
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100553:Returns:
554
555 ========= ===================================
556 0 on success,
557 -EEXIST if an interrupt is already enqueued
Randy Dunlap3747c5d2020-07-03 14:29:06 -0700558 -EINVAL the irq number is invalid
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100559 -ENXIO if the PIC is in the kernel
560 -EFAULT if the pointer is invalid
561 ========= ===================================
Steve Rutherford1c1a9ce2015-07-30 11:27:16 +0200562
563Note 'irq' is an interrupt vector, not an interrupt pin or line. This
564ioctl is useful if the in-kernel PIC is not used.
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300565
Alexander Graf6f7a2bd2010-08-31 02:03:32 +0200566PPC:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100567^^^^
Alexander Graf6f7a2bd2010-08-31 02:03:32 +0200568
569Queues an external interrupt to be injected. This ioctl is overleaded
570with 3 different irq values:
571
572a) KVM_INTERRUPT_SET
573
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100574 This injects an edge type external interrupt into the guest once it's ready
575 to receive interrupts. When injected, the interrupt is done.
Alexander Graf6f7a2bd2010-08-31 02:03:32 +0200576
577b) KVM_INTERRUPT_UNSET
578
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100579 This unsets any pending interrupt.
Alexander Graf6f7a2bd2010-08-31 02:03:32 +0200580
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100581 Only available with KVM_CAP_PPC_UNSET_IRQ.
Alexander Graf6f7a2bd2010-08-31 02:03:32 +0200582
583c) KVM_INTERRUPT_SET_LEVEL
584
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100585 This injects a level type external interrupt into the guest context. The
586 interrupt stays pending until a specific ioctl with KVM_INTERRUPT_UNSET
587 is triggered.
Alexander Graf6f7a2bd2010-08-31 02:03:32 +0200588
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100589 Only available with KVM_CAP_PPC_IRQ_LEVEL.
Alexander Graf6f7a2bd2010-08-31 02:03:32 +0200590
591Note that any value for 'irq' other than the ones stated above is invalid
592and incurs unexpected behavior.
593
Sean Christopherson5e124902019-02-15 12:48:38 -0800594This is an asynchronous vcpu ioctl and can be invoked from any thread.
595
James Hoganc2d2c212014-07-04 15:11:35 +0100596MIPS:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100597^^^^^
James Hoganc2d2c212014-07-04 15:11:35 +0100598
599Queues an external interrupt to be injected into the virtual CPU. A negative
600interrupt number dequeues the interrupt.
601
Sean Christopherson5e124902019-02-15 12:48:38 -0800602This is an asynchronous vcpu ioctl and can be invoked from any thread.
603
Jan Kiszka414fa982012-04-24 16:40:15 +0200604
Paul Bolle68ba6972011-02-15 00:05:59 +01006054.17 KVM_DEBUG_GUEST
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100606--------------------
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300607
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100608:Capability: basic
609:Architectures: none
610:Type: vcpu ioctl
611:Parameters: none)
612:Returns: -1 on error
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300613
614Support for this has been removed. Use KVM_SET_GUEST_DEBUG instead.
615
Jan Kiszka414fa982012-04-24 16:40:15 +0200616
Paul Bolle68ba6972011-02-15 00:05:59 +01006174.18 KVM_GET_MSRS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100618-----------------
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300619
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100620:Capability: basic (vcpu), KVM_CAP_GET_MSR_FEATURES (system)
621:Architectures: x86
622:Type: system ioctl, vcpu ioctl
623:Parameters: struct kvm_msrs (in/out)
624:Returns: number of msrs successfully returned;
625 -1 on error
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300626
Tom Lendacky801e4592018-02-21 13:39:51 -0600627When used as a system ioctl:
628Reads the values of MSR-based features that are available for the VM. This
629is similar to KVM_GET_SUPPORTED_CPUID, but it returns MSR indices and values.
630The list of msr-based features can be obtained using KVM_GET_MSR_FEATURE_INDEX_LIST
631in a system ioctl.
632
633When used as a vcpu ioctl:
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300634Reads model-specific registers from the vcpu. Supported msr indices can
Tom Lendacky801e4592018-02-21 13:39:51 -0600635be obtained using KVM_GET_MSR_INDEX_LIST in a system ioctl.
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300636
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100637::
638
639 struct kvm_msrs {
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300640 __u32 nmsrs; /* number of msrs in entries */
641 __u32 pad;
642
643 struct kvm_msr_entry entries[0];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100644 };
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300645
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100646 struct kvm_msr_entry {
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300647 __u32 index;
648 __u32 reserved;
649 __u64 data;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100650 };
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300651
652Application code should set the 'nmsrs' member (which indicates the
653size of the entries array) and the 'index' member of each array entry.
654kvm will fill in the 'data' member.
655
Jan Kiszka414fa982012-04-24 16:40:15 +0200656
Paul Bolle68ba6972011-02-15 00:05:59 +01006574.19 KVM_SET_MSRS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100658-----------------
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300659
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100660:Capability: basic
661:Architectures: x86
662:Type: vcpu ioctl
663:Parameters: struct kvm_msrs (in)
664:Returns: number of msrs successfully set (see below), -1 on error
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300665
666Writes model-specific registers to the vcpu. See KVM_GET_MSRS for the
667data structures.
668
669Application code should set the 'nmsrs' member (which indicates the
670size of the entries array), and the 'index' and 'data' members of each
671array entry.
672
Xiaoyao Lib274a292019-09-05 08:57:37 +0800673It tries to set the MSRs in array entries[] one by one. If setting an MSR
674fails, e.g., due to setting reserved bits, the MSR isn't supported/emulated
675by KVM, etc..., it stops processing the MSR list and returns the number of
676MSRs that have been set successfully.
677
Jan Kiszka414fa982012-04-24 16:40:15 +0200678
Paul Bolle68ba6972011-02-15 00:05:59 +01006794.20 KVM_SET_CPUID
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100680------------------
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300681
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100682:Capability: basic
683:Architectures: x86
684:Type: vcpu ioctl
685:Parameters: struct kvm_cpuid (in)
686:Returns: 0 on success, -1 on error
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300687
688Defines the vcpu responses to the cpuid instruction. Applications
689should use the KVM_SET_CPUID2 ioctl if available.
690
Xiaoyao Li18964092020-07-08 14:50:47 +0800691Note, when this IOCTL fails, KVM gives no guarantees that previous valid CPUID
692configuration (if there is) is not corrupted. Userspace can get a copy of the
693resulting CPUID configuration through KVM_GET_CPUID2 in case.
694
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100695::
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300696
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100697 struct kvm_cpuid_entry {
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300698 __u32 function;
699 __u32 eax;
700 __u32 ebx;
701 __u32 ecx;
702 __u32 edx;
703 __u32 padding;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100704 };
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300705
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100706 /* for KVM_SET_CPUID */
707 struct kvm_cpuid {
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300708 __u32 nent;
709 __u32 padding;
710 struct kvm_cpuid_entry entries[0];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100711 };
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300712
Jan Kiszka414fa982012-04-24 16:40:15 +0200713
Paul Bolle68ba6972011-02-15 00:05:59 +01007144.21 KVM_SET_SIGNAL_MASK
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100715------------------------
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300716
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100717:Capability: basic
718:Architectures: all
719:Type: vcpu ioctl
720:Parameters: struct kvm_signal_mask (in)
721:Returns: 0 on success, -1 on error
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300722
723Defines which signals are blocked during execution of KVM_RUN. This
724signal mask temporarily overrides the threads signal mask. Any
725unblocked signal received (except SIGKILL and SIGSTOP, which retain
726their traditional behaviour) will cause KVM_RUN to return with -EINTR.
727
728Note the signal will only be delivered if not blocked by the original
729signal mask.
730
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100731::
732
733 /* for KVM_SET_SIGNAL_MASK */
734 struct kvm_signal_mask {
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300735 __u32 len;
736 __u8 sigset[0];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100737 };
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300738
Jan Kiszka414fa982012-04-24 16:40:15 +0200739
Paul Bolle68ba6972011-02-15 00:05:59 +01007404.22 KVM_GET_FPU
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100741----------------
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300742
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100743:Capability: basic
744:Architectures: x86
745:Type: vcpu ioctl
746:Parameters: struct kvm_fpu (out)
747:Returns: 0 on success, -1 on error
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300748
749Reads the floating point state from the vcpu.
750
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100751::
752
753 /* for KVM_GET_FPU and KVM_SET_FPU */
754 struct kvm_fpu {
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300755 __u8 fpr[8][16];
756 __u16 fcw;
757 __u16 fsw;
758 __u8 ftwx; /* in fxsave format */
759 __u8 pad1;
760 __u16 last_opcode;
761 __u64 last_ip;
762 __u64 last_dp;
763 __u8 xmm[16][16];
764 __u32 mxcsr;
765 __u32 pad2;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100766 };
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300767
Jan Kiszka414fa982012-04-24 16:40:15 +0200768
Paul Bolle68ba6972011-02-15 00:05:59 +01007694.23 KVM_SET_FPU
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100770----------------
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300771
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100772:Capability: basic
773:Architectures: x86
774:Type: vcpu ioctl
775:Parameters: struct kvm_fpu (in)
776:Returns: 0 on success, -1 on error
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300777
778Writes the floating point state to the vcpu.
779
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100780::
781
782 /* for KVM_GET_FPU and KVM_SET_FPU */
783 struct kvm_fpu {
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300784 __u8 fpr[8][16];
785 __u16 fcw;
786 __u16 fsw;
787 __u8 ftwx; /* in fxsave format */
788 __u8 pad1;
789 __u16 last_opcode;
790 __u64 last_ip;
791 __u64 last_dp;
792 __u8 xmm[16][16];
793 __u32 mxcsr;
794 __u32 pad2;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100795 };
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300796
Jan Kiszka414fa982012-04-24 16:40:15 +0200797
Paul Bolle68ba6972011-02-15 00:05:59 +01007984.24 KVM_CREATE_IRQCHIP
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100799-----------------------
Avi Kivity5dadbfd2009-08-23 17:08:04 +0300800
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100801:Capability: KVM_CAP_IRQCHIP, KVM_CAP_S390_IRQCHIP (s390)
802:Architectures: x86, ARM, arm64, s390
803:Type: vm ioctl
804:Parameters: none
805:Returns: 0 on success, -1 on error
Avi Kivity5dadbfd2009-08-23 17:08:04 +0300806
Andre Przywaraac3d3732014-06-03 10:26:30 +0200807Creates an interrupt controller model in the kernel.
808On x86, creates a virtual ioapic, a virtual PIC (two PICs, nested), and sets up
809future vcpus to have a local APIC. IRQ routing for GSIs 0-15 is set to both
810PIC and IOAPIC; GSI 16-23 only go to the IOAPIC.
811On ARM/arm64, a GICv2 is created. Any other GIC versions require the usage of
812KVM_CREATE_DEVICE, which also supports creating a GICv2. Using
813KVM_CREATE_DEVICE is preferred over KVM_CREATE_IRQCHIP for GICv2.
814On s390, a dummy irq routing table is created.
Cornelia Huck84223592013-07-15 13:36:01 +0200815
816Note that on s390 the KVM_CAP_S390_IRQCHIP vm capability needs to be enabled
817before KVM_CREATE_IRQCHIP can be used.
Avi Kivity5dadbfd2009-08-23 17:08:04 +0300818
Jan Kiszka414fa982012-04-24 16:40:15 +0200819
Paul Bolle68ba6972011-02-15 00:05:59 +01008204.25 KVM_IRQ_LINE
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100821-----------------
Avi Kivity5dadbfd2009-08-23 17:08:04 +0300822
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100823:Capability: KVM_CAP_IRQCHIP
824:Architectures: x86, arm, arm64
825:Type: vm ioctl
826:Parameters: struct kvm_irq_level
827:Returns: 0 on success, -1 on error
Avi Kivity5dadbfd2009-08-23 17:08:04 +0300828
829Sets the level of a GSI input to the interrupt controller model in the kernel.
Christoffer Dall86ce8532013-01-20 18:28:08 -0500830On some architectures it is required that an interrupt controller model has
831been previously created with KVM_CREATE_IRQCHIP. Note that edge-triggered
832interrupts require the level to be set to 1 and then back to 0.
833
Gabriel L. Somlo100943c2014-02-27 23:06:17 -0500834On real hardware, interrupt pins can be active-low or active-high. This
835does not matter for the level field of struct kvm_irq_level: 1 always
836means active (asserted), 0 means inactive (deasserted).
837
838x86 allows the operating system to program the interrupt polarity
839(active-low/active-high) for level-triggered interrupts, and KVM used
840to consider the polarity. However, due to bitrot in the handling of
841active-low interrupts, the above convention is now valid on x86 too.
842This is signaled by KVM_CAP_X86_IOAPIC_POLARITY_IGNORED. Userspace
843should not present interrupts to the guest as active-low unless this
844capability is present (or unless it is not using the in-kernel irqchip,
845of course).
846
847
Marc Zyngier379e04c72013-04-02 17:46:31 +0100848ARM/arm64 can signal an interrupt either at the CPU level, or at the
849in-kernel irqchip (GIC), and for in-kernel irqchip can tell the GIC to
850use PPIs designated for specific cpus. The irq field is interpreted
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100851like this::
Christoffer Dall86ce8532013-01-20 18:28:08 -0500852
Marc Zyngier92f35b72019-08-18 14:09:47 +0100853  bits: | 31 ... 28 | 27 ... 24 | 23 ... 16 | 15 ... 0 |
854 field: | vcpu2_index | irq_type | vcpu_index | irq_id |
Christoffer Dall86ce8532013-01-20 18:28:08 -0500855
856The irq_type field has the following values:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100857
858- irq_type[0]:
859 out-of-kernel GIC: irq_id 0 is IRQ, irq_id 1 is FIQ
860- irq_type[1]:
861 in-kernel GIC: SPI, irq_id between 32 and 1019 (incl.)
Christoffer Dall86ce8532013-01-20 18:28:08 -0500862 (the vcpu_index field is ignored)
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100863- irq_type[2]:
864 in-kernel GIC: PPI, irq_id between 16 and 31 (incl.)
Christoffer Dall86ce8532013-01-20 18:28:08 -0500865
866(The irq_id field thus corresponds nicely to the IRQ ID in the ARM GIC specs)
867
Gabriel L. Somlo100943c2014-02-27 23:06:17 -0500868In both cases, level is used to assert/deassert the line.
Avi Kivity5dadbfd2009-08-23 17:08:04 +0300869
Marc Zyngier92f35b72019-08-18 14:09:47 +0100870When KVM_CAP_ARM_IRQ_LINE_LAYOUT_2 is supported, the target vcpu is
871identified as (256 * vcpu2_index + vcpu_index). Otherwise, vcpu2_index
872must be zero.
873
874Note that on arm/arm64, the KVM_CAP_IRQCHIP capability only conditions
875injection of interrupts for the in-kernel irqchip. KVM_IRQ_LINE can always
876be used for a userspace interrupt controller.
877
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100878::
879
880 struct kvm_irq_level {
Avi Kivity5dadbfd2009-08-23 17:08:04 +0300881 union {
882 __u32 irq; /* GSI */
883 __s32 status; /* not used for KVM_IRQ_LEVEL */
884 };
885 __u32 level; /* 0 or 1 */
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100886 };
Avi Kivity5dadbfd2009-08-23 17:08:04 +0300887
Jan Kiszka414fa982012-04-24 16:40:15 +0200888
Paul Bolle68ba6972011-02-15 00:05:59 +01008894.26 KVM_GET_IRQCHIP
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100890--------------------
Avi Kivity5dadbfd2009-08-23 17:08:04 +0300891
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100892:Capability: KVM_CAP_IRQCHIP
893:Architectures: x86
894:Type: vm ioctl
895:Parameters: struct kvm_irqchip (in/out)
896:Returns: 0 on success, -1 on error
Avi Kivity5dadbfd2009-08-23 17:08:04 +0300897
898Reads the state of a kernel interrupt controller created with
899KVM_CREATE_IRQCHIP into a buffer provided by the caller.
900
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100901::
902
903 struct kvm_irqchip {
Avi Kivity5dadbfd2009-08-23 17:08:04 +0300904 __u32 chip_id; /* 0 = PIC1, 1 = PIC2, 2 = IOAPIC */
905 __u32 pad;
906 union {
907 char dummy[512]; /* reserving space */
908 struct kvm_pic_state pic;
909 struct kvm_ioapic_state ioapic;
910 } chip;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100911 };
Avi Kivity5dadbfd2009-08-23 17:08:04 +0300912
Jan Kiszka414fa982012-04-24 16:40:15 +0200913
Paul Bolle68ba6972011-02-15 00:05:59 +01009144.27 KVM_SET_IRQCHIP
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100915--------------------
Avi Kivity5dadbfd2009-08-23 17:08:04 +0300916
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100917:Capability: KVM_CAP_IRQCHIP
918:Architectures: x86
919:Type: vm ioctl
920:Parameters: struct kvm_irqchip (in)
921:Returns: 0 on success, -1 on error
Avi Kivity5dadbfd2009-08-23 17:08:04 +0300922
923Sets the state of a kernel interrupt controller created with
924KVM_CREATE_IRQCHIP from a buffer provided by the caller.
925
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100926::
927
928 struct kvm_irqchip {
Avi Kivity5dadbfd2009-08-23 17:08:04 +0300929 __u32 chip_id; /* 0 = PIC1, 1 = PIC2, 2 = IOAPIC */
930 __u32 pad;
931 union {
932 char dummy[512]; /* reserving space */
933 struct kvm_pic_state pic;
934 struct kvm_ioapic_state ioapic;
935 } chip;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100936 };
Avi Kivity5dadbfd2009-08-23 17:08:04 +0300937
Jan Kiszka414fa982012-04-24 16:40:15 +0200938
Paul Bolle68ba6972011-02-15 00:05:59 +01009394.28 KVM_XEN_HVM_CONFIG
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100940-----------------------
Ed Swierkffde22a2009-10-15 15:21:43 -0700941
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100942:Capability: KVM_CAP_XEN_HVM
943:Architectures: x86
944:Type: vm ioctl
945:Parameters: struct kvm_xen_hvm_config (in)
946:Returns: 0 on success, -1 on error
Ed Swierkffde22a2009-10-15 15:21:43 -0700947
948Sets the MSR that the Xen HVM guest uses to initialize its hypercall
949page, and provides the starting address and size of the hypercall
950blobs in userspace. When the guest writes the MSR, kvm copies one
951page of a blob (32- or 64-bit, depending on the vcpu mode) to guest
952memory.
953
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100954::
955
956 struct kvm_xen_hvm_config {
Ed Swierkffde22a2009-10-15 15:21:43 -0700957 __u32 flags;
958 __u32 msr;
959 __u64 blob_addr_32;
960 __u64 blob_addr_64;
961 __u8 blob_size_32;
962 __u8 blob_size_64;
963 __u8 pad2[30];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100964 };
Ed Swierkffde22a2009-10-15 15:21:43 -0700965
David Woodhousee1f68162020-12-04 09:03:56 +0000966If the KVM_XEN_HVM_CONFIG_INTERCEPT_HCALL flag is returned from the
967KVM_CAP_XEN_HVM check, it may be set in the flags field of this ioctl.
968This requests KVM to generate the contents of the hypercall page
969automatically; hypercalls will be intercepted and passed to userspace
970through KVM_EXIT_XEN. In this case, all of the blob size and address
971fields must be zero.
972
973No other flags are currently valid in the struct kvm_xen_hvm_config.
Jan Kiszka414fa982012-04-24 16:40:15 +0200974
Paul Bolle68ba6972011-02-15 00:05:59 +01009754.29 KVM_GET_CLOCK
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100976------------------
Glauber Costaafbcf7a2009-10-16 15:28:36 -0400977
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100978:Capability: KVM_CAP_ADJUST_CLOCK
979:Architectures: x86
980:Type: vm ioctl
981:Parameters: struct kvm_clock_data (out)
982:Returns: 0 on success, -1 on error
Glauber Costaafbcf7a2009-10-16 15:28:36 -0400983
984Gets the current timestamp of kvmclock as seen by the current guest. In
985conjunction with KVM_SET_CLOCK, it is used to ensure monotonicity on scenarios
986such as migration.
987
Paolo Bonzinie3fd9a92016-11-09 17:48:15 +0100988When KVM_CAP_ADJUST_CLOCK is passed to KVM_CHECK_EXTENSION, it returns the
989set of bits that KVM can return in struct kvm_clock_data's flag member.
990
991The only flag defined now is KVM_CLOCK_TSC_STABLE. If set, the returned
992value is the exact kvmclock value seen by all VCPUs at the instant
993when KVM_GET_CLOCK was called. If clear, the returned value is simply
994CLOCK_MONOTONIC plus a constant offset; the offset can be modified
995with KVM_SET_CLOCK. KVM will try to make all VCPUs follow this clock,
996but the exact value read by each VCPU could differ, because the host
997TSC is not stable.
998
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100999::
1000
1001 struct kvm_clock_data {
Glauber Costaafbcf7a2009-10-16 15:28:36 -04001002 __u64 clock; /* kvmclock current value */
1003 __u32 flags;
1004 __u32 pad[9];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001005 };
Glauber Costaafbcf7a2009-10-16 15:28:36 -04001006
Jan Kiszka414fa982012-04-24 16:40:15 +02001007
Paul Bolle68ba6972011-02-15 00:05:59 +010010084.30 KVM_SET_CLOCK
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001009------------------
Glauber Costaafbcf7a2009-10-16 15:28:36 -04001010
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001011:Capability: KVM_CAP_ADJUST_CLOCK
1012:Architectures: x86
1013:Type: vm ioctl
1014:Parameters: struct kvm_clock_data (in)
1015:Returns: 0 on success, -1 on error
Glauber Costaafbcf7a2009-10-16 15:28:36 -04001016
Wu Fengguang2044892d2009-12-24 09:04:16 +08001017Sets the current timestamp of kvmclock to the value specified in its parameter.
Glauber Costaafbcf7a2009-10-16 15:28:36 -04001018In conjunction with KVM_GET_CLOCK, it is used to ensure monotonicity on scenarios
1019such as migration.
1020
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001021::
1022
1023 struct kvm_clock_data {
Glauber Costaafbcf7a2009-10-16 15:28:36 -04001024 __u64 clock; /* kvmclock current value */
1025 __u32 flags;
1026 __u32 pad[9];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001027 };
Glauber Costaafbcf7a2009-10-16 15:28:36 -04001028
Jan Kiszka414fa982012-04-24 16:40:15 +02001029
Paul Bolle68ba6972011-02-15 00:05:59 +010010304.31 KVM_GET_VCPU_EVENTS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001031------------------------
Jan Kiszka3cfc3092009-11-12 01:04:25 +01001032
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001033:Capability: KVM_CAP_VCPU_EVENTS
1034:Extended by: KVM_CAP_INTR_SHADOW
1035:Architectures: x86, arm, arm64
1036:Type: vcpu ioctl
1037:Parameters: struct kvm_vcpu_event (out)
1038:Returns: 0 on success, -1 on error
Jan Kiszka3cfc3092009-11-12 01:04:25 +01001039
Dongjiu Gengb7b27fa2018-07-19 16:24:22 +01001040X86:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001041^^^^
Dongjiu Gengb7b27fa2018-07-19 16:24:22 +01001042
Jan Kiszka3cfc3092009-11-12 01:04:25 +01001043Gets currently pending exceptions, interrupts, and NMIs as well as related
1044states of the vcpu.
1045
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001046::
1047
1048 struct kvm_vcpu_events {
Jan Kiszka3cfc3092009-11-12 01:04:25 +01001049 struct {
1050 __u8 injected;
1051 __u8 nr;
1052 __u8 has_error_code;
Jim Mattson59073aa2018-10-16 14:29:20 -07001053 __u8 pending;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01001054 __u32 error_code;
1055 } exception;
1056 struct {
1057 __u8 injected;
1058 __u8 nr;
1059 __u8 soft;
Jan Kiszka48005f62010-02-19 19:38:07 +01001060 __u8 shadow;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01001061 } interrupt;
1062 struct {
1063 __u8 injected;
1064 __u8 pending;
1065 __u8 masked;
1066 __u8 pad;
1067 } nmi;
1068 __u32 sipi_vector;
Jan Kiszkadab4b912009-12-06 18:24:15 +01001069 __u32 flags;
Paolo Bonzinif0778252015-04-01 15:06:40 +02001070 struct {
1071 __u8 smm;
1072 __u8 pending;
1073 __u8 smm_inside_nmi;
1074 __u8 latched_init;
1075 } smi;
Jim Mattson59073aa2018-10-16 14:29:20 -07001076 __u8 reserved[27];
1077 __u8 exception_has_payload;
1078 __u64 exception_payload;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001079 };
Jan Kiszka3cfc3092009-11-12 01:04:25 +01001080
Jim Mattson59073aa2018-10-16 14:29:20 -07001081The following bits are defined in the flags field:
Jan Kiszka48005f62010-02-19 19:38:07 +01001082
Jim Mattson59073aa2018-10-16 14:29:20 -07001083- KVM_VCPUEVENT_VALID_SHADOW may be set to signal that
Paolo Bonzinif0778252015-04-01 15:06:40 +02001084 interrupt.shadow contains a valid state.
1085
Jim Mattson59073aa2018-10-16 14:29:20 -07001086- KVM_VCPUEVENT_VALID_SMM may be set to signal that smi contains a
1087 valid state.
1088
1089- KVM_VCPUEVENT_VALID_PAYLOAD may be set to signal that the
1090 exception_has_payload, exception_payload, and exception.pending
1091 fields contain a valid state. This bit will be set whenever
1092 KVM_CAP_EXCEPTION_PAYLOAD is enabled.
Jan Kiszka414fa982012-04-24 16:40:15 +02001093
James Morseb0960b92018-07-19 16:24:25 +01001094ARM/ARM64:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001095^^^^^^^^^^
Dongjiu Gengb7b27fa2018-07-19 16:24:22 +01001096
1097If the guest accesses a device that is being emulated by the host kernel in
1098such a way that a real device would generate a physical SError, KVM may make
1099a virtual SError pending for that VCPU. This system error interrupt remains
1100pending until the guest takes the exception by unmasking PSTATE.A.
1101
1102Running the VCPU may cause it to take a pending SError, or make an access that
1103causes an SError to become pending. The event's description is only valid while
1104the VPCU is not running.
1105
1106This API provides a way to read and write the pending 'event' state that is not
1107visible to the guest. To save, restore or migrate a VCPU the struct representing
1108the state can be read then written using this GET/SET API, along with the other
1109guest-visible registers. It is not possible to 'cancel' an SError that has been
1110made pending.
1111
1112A device being emulated in user-space may also wish to generate an SError. To do
1113this the events structure can be populated by user-space. The current state
1114should be read first, to ensure no existing SError is pending. If an existing
1115SError is pending, the architecture's 'Multiple SError interrupts' rules should
1116be followed. (2.5.3 of DDI0587.a "ARM Reliability, Availability, and
1117Serviceability (RAS) Specification").
1118
Dongjiu Gengbe26b3a2018-07-19 16:24:23 +01001119SError exceptions always have an ESR value. Some CPUs have the ability to
1120specify what the virtual SError's ESR value should be. These systems will
Dongjiu Geng688e0582018-08-20 17:39:25 -04001121advertise KVM_CAP_ARM_INJECT_SERROR_ESR. In this case exception.has_esr will
Dongjiu Gengbe26b3a2018-07-19 16:24:23 +01001122always have a non-zero value when read, and the agent making an SError pending
1123should specify the ISS field in the lower 24 bits of exception.serror_esr. If
Dongjiu Geng688e0582018-08-20 17:39:25 -04001124the system supports KVM_CAP_ARM_INJECT_SERROR_ESR, but user-space sets the events
Dongjiu Gengbe26b3a2018-07-19 16:24:23 +01001125with exception.has_esr as zero, KVM will choose an ESR.
1126
1127Specifying exception.has_esr on a system that does not support it will return
1128-EINVAL. Setting anything other than the lower 24bits of exception.serror_esr
1129will return -EINVAL.
1130
Christoffer Dallda345172019-10-11 13:07:06 +02001131It is not possible to read back a pending external abort (injected via
1132KVM_SET_VCPU_EVENTS or otherwise) because such an exception is always delivered
1133directly to the virtual CPU).
1134
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001135::
Christoffer Dallda345172019-10-11 13:07:06 +02001136
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001137 struct kvm_vcpu_events {
Dongjiu Gengb7b27fa2018-07-19 16:24:22 +01001138 struct {
1139 __u8 serror_pending;
1140 __u8 serror_has_esr;
Christoffer Dallda345172019-10-11 13:07:06 +02001141 __u8 ext_dabt_pending;
Dongjiu Gengb7b27fa2018-07-19 16:24:22 +01001142 /* Align it to 8 bytes */
Christoffer Dallda345172019-10-11 13:07:06 +02001143 __u8 pad[5];
Dongjiu Gengb7b27fa2018-07-19 16:24:22 +01001144 __u64 serror_esr;
1145 } exception;
1146 __u32 reserved[12];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001147 };
Dongjiu Gengb7b27fa2018-07-19 16:24:22 +01001148
Paul Bolle68ba6972011-02-15 00:05:59 +010011494.32 KVM_SET_VCPU_EVENTS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001150------------------------
Jan Kiszka3cfc3092009-11-12 01:04:25 +01001151
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001152:Capability: KVM_CAP_VCPU_EVENTS
1153:Extended by: KVM_CAP_INTR_SHADOW
1154:Architectures: x86, arm, arm64
1155:Type: vcpu ioctl
1156:Parameters: struct kvm_vcpu_event (in)
1157:Returns: 0 on success, -1 on error
Jan Kiszka3cfc3092009-11-12 01:04:25 +01001158
Dongjiu Gengb7b27fa2018-07-19 16:24:22 +01001159X86:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001160^^^^
Dongjiu Gengb7b27fa2018-07-19 16:24:22 +01001161
Jan Kiszka3cfc3092009-11-12 01:04:25 +01001162Set pending exceptions, interrupts, and NMIs as well as related states of the
1163vcpu.
1164
1165See KVM_GET_VCPU_EVENTS for the data structure.
1166
Jan Kiszkadab4b912009-12-06 18:24:15 +01001167Fields that may be modified asynchronously by running VCPUs can be excluded
Paolo Bonzinif0778252015-04-01 15:06:40 +02001168from the update. These fields are nmi.pending, sipi_vector, smi.smm,
1169smi.pending. Keep the corresponding bits in the flags field cleared to
1170suppress overwriting the current in-kernel state. The bits are:
Jan Kiszkadab4b912009-12-06 18:24:15 +01001171
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001172=============================== ==================================
1173KVM_VCPUEVENT_VALID_NMI_PENDING transfer nmi.pending to the kernel
1174KVM_VCPUEVENT_VALID_SIPI_VECTOR transfer sipi_vector
1175KVM_VCPUEVENT_VALID_SMM transfer the smi sub-struct.
1176=============================== ==================================
Jan Kiszkadab4b912009-12-06 18:24:15 +01001177
Jan Kiszka48005f62010-02-19 19:38:07 +01001178If KVM_CAP_INTR_SHADOW is available, KVM_VCPUEVENT_VALID_SHADOW can be set in
1179the flags field to signal that interrupt.shadow contains a valid state and
1180shall be written into the VCPU.
1181
Paolo Bonzinif0778252015-04-01 15:06:40 +02001182KVM_VCPUEVENT_VALID_SMM can only be set if KVM_CAP_X86_SMM is available.
1183
Jim Mattson59073aa2018-10-16 14:29:20 -07001184If KVM_CAP_EXCEPTION_PAYLOAD is enabled, KVM_VCPUEVENT_VALID_PAYLOAD
1185can be set in the flags field to signal that the
1186exception_has_payload, exception_payload, and exception.pending fields
1187contain a valid state and shall be written into the VCPU.
1188
James Morseb0960b92018-07-19 16:24:25 +01001189ARM/ARM64:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001190^^^^^^^^^^
Dongjiu Gengb7b27fa2018-07-19 16:24:22 +01001191
Christoffer Dallda345172019-10-11 13:07:06 +02001192User space may need to inject several types of events to the guest.
1193
Dongjiu Gengb7b27fa2018-07-19 16:24:22 +01001194Set the pending SError exception state for this VCPU. It is not possible to
1195'cancel' an Serror that has been made pending.
1196
Christoffer Dallda345172019-10-11 13:07:06 +02001197If the guest performed an access to I/O memory which could not be handled by
1198userspace, for example because of missing instruction syndrome decode
1199information or because there is no device mapped at the accessed IPA, then
1200userspace can ask the kernel to inject an external abort using the address
1201from the exiting fault on the VCPU. It is a programming error to set
1202ext_dabt_pending after an exit which was not either KVM_EXIT_MMIO or
1203KVM_EXIT_ARM_NISV. This feature is only available if the system supports
1204KVM_CAP_ARM_INJECT_EXT_DABT. This is a helper which provides commonality in
1205how userspace reports accesses for the above cases to guests, across different
1206userspace implementations. Nevertheless, userspace can still emulate all Arm
1207exceptions by manipulating individual registers using the KVM_SET_ONE_REG API.
1208
Dongjiu Gengb7b27fa2018-07-19 16:24:22 +01001209See KVM_GET_VCPU_EVENTS for the data structure.
1210
Jan Kiszka414fa982012-04-24 16:40:15 +02001211
Paul Bolle68ba6972011-02-15 00:05:59 +010012124.33 KVM_GET_DEBUGREGS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001213----------------------
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01001214
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001215:Capability: KVM_CAP_DEBUGREGS
1216:Architectures: x86
1217:Type: vm ioctl
1218:Parameters: struct kvm_debugregs (out)
1219:Returns: 0 on success, -1 on error
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01001220
1221Reads debug registers from the vcpu.
1222
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001223::
1224
1225 struct kvm_debugregs {
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01001226 __u64 db[4];
1227 __u64 dr6;
1228 __u64 dr7;
1229 __u64 flags;
1230 __u64 reserved[9];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001231 };
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01001232
Jan Kiszka414fa982012-04-24 16:40:15 +02001233
Paul Bolle68ba6972011-02-15 00:05:59 +010012344.34 KVM_SET_DEBUGREGS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001235----------------------
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01001236
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001237:Capability: KVM_CAP_DEBUGREGS
1238:Architectures: x86
1239:Type: vm ioctl
1240:Parameters: struct kvm_debugregs (in)
1241:Returns: 0 on success, -1 on error
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01001242
1243Writes debug registers into the vcpu.
1244
1245See KVM_GET_DEBUGREGS for the data structure. The flags field is unused
1246yet and must be cleared on entry.
1247
Jan Kiszka414fa982012-04-24 16:40:15 +02001248
Paul Bolle68ba6972011-02-15 00:05:59 +010012494.35 KVM_SET_USER_MEMORY_REGION
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001250-------------------------------
Avi Kivity0f2d8f42010-03-25 12:16:48 +02001251
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001252:Capability: KVM_CAP_USER_MEMORY
1253:Architectures: all
1254:Type: vm ioctl
1255:Parameters: struct kvm_userspace_memory_region (in)
1256:Returns: 0 on success, -1 on error
Avi Kivity0f2d8f42010-03-25 12:16:48 +02001257
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001258::
1259
1260 struct kvm_userspace_memory_region {
Avi Kivity0f2d8f42010-03-25 12:16:48 +02001261 __u32 slot;
1262 __u32 flags;
1263 __u64 guest_phys_addr;
1264 __u64 memory_size; /* bytes */
1265 __u64 userspace_addr; /* start of the userspace allocated memory */
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001266 };
Avi Kivity0f2d8f42010-03-25 12:16:48 +02001267
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001268 /* for kvm_memory_region::flags */
1269 #define KVM_MEM_LOG_DIRTY_PAGES (1UL << 0)
1270 #define KVM_MEM_READONLY (1UL << 1)
Avi Kivity0f2d8f42010-03-25 12:16:48 +02001271
Paolo Bonzinie2788c42019-03-28 17:22:31 +01001272This ioctl allows the user to create, modify or delete a guest physical
1273memory slot. Bits 0-15 of "slot" specify the slot id and this value
1274should be less than the maximum number of user memory slots supported per
Paolo Bonzinic110ae52019-03-28 17:24:03 +01001275VM. The maximum allowed slots can be queried using KVM_CAP_NR_MEMSLOTS.
1276Slots may not overlap in guest physical address space.
Avi Kivity0f2d8f42010-03-25 12:16:48 +02001277
Paolo Bonzinif481b062015-05-17 17:30:37 +02001278If KVM_CAP_MULTI_ADDRESS_SPACE is available, bits 16-31 of "slot"
1279specifies the address space which is being modified. They must be
1280less than the value that KVM_CHECK_EXTENSION returns for the
1281KVM_CAP_MULTI_ADDRESS_SPACE capability. Slots in separate address spaces
1282are unrelated; the restriction on overlapping slots only applies within
1283each address space.
1284
Paolo Bonzinie2788c42019-03-28 17:22:31 +01001285Deleting a slot is done by passing zero for memory_size. When changing
1286an existing slot, it may be moved in the guest physical memory space,
1287or its flags may be modified, but it may not be resized.
1288
Avi Kivity0f2d8f42010-03-25 12:16:48 +02001289Memory for the region is taken starting at the address denoted by the
1290field userspace_addr, which must point at user addressable memory for
1291the entire memory slot size. Any object may back this memory, including
1292anonymous memory, ordinary files, and hugetlbfs.
1293
Marc Zyngier139bc8a2021-01-21 12:08:15 +00001294On architectures that support a form of address tagging, userspace_addr must
1295be an untagged address.
1296
Avi Kivity0f2d8f42010-03-25 12:16:48 +02001297It is recommended that the lower 21 bits of guest_phys_addr and userspace_addr
1298be identical. This allows large pages in the guest to be backed by large
1299pages in the host.
1300
Takuya Yoshikawa75d61fb2013-01-30 19:40:41 +09001301The flags field supports two flags: KVM_MEM_LOG_DIRTY_PAGES and
1302KVM_MEM_READONLY. The former can be set to instruct KVM to keep track of
1303writes to memory within the slot. See KVM_GET_DIRTY_LOG ioctl to know how to
1304use it. The latter can be set, if KVM_CAP_READONLY_MEM capability allows it,
1305to make a new slot read-only. In this case, writes to this memory will be
1306posted to userspace as KVM_EXIT_MMIO exits.
Avi Kivity0f2d8f42010-03-25 12:16:48 +02001307
Jan Kiszka7efd8fa2012-09-07 13:17:47 +02001308When the KVM_CAP_SYNC_MMU capability is available, changes in the backing of
1309the memory region are automatically reflected into the guest. For example, an
1310mmap() that affects the region will be made visible immediately. Another
1311example is madvise(MADV_DROP).
Avi Kivity0f2d8f42010-03-25 12:16:48 +02001312
1313It is recommended to use this API instead of the KVM_SET_MEMORY_REGION ioctl.
1314The KVM_SET_MEMORY_REGION does not allow fine grained control over memory
1315allocation and is deprecated.
Jan Kiszka3cfc3092009-11-12 01:04:25 +01001316
Jan Kiszka414fa982012-04-24 16:40:15 +02001317
Paul Bolle68ba6972011-02-15 00:05:59 +010013184.36 KVM_SET_TSS_ADDR
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001319---------------------
Avi Kivity8a5416d2010-03-25 12:27:30 +02001320
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001321:Capability: KVM_CAP_SET_TSS_ADDR
1322:Architectures: x86
1323:Type: vm ioctl
1324:Parameters: unsigned long tss_address (in)
1325:Returns: 0 on success, -1 on error
Avi Kivity8a5416d2010-03-25 12:27:30 +02001326
1327This ioctl defines the physical address of a three-page region in the guest
1328physical address space. The region must be within the first 4GB of the
1329guest physical address space and must not conflict with any memory slot
1330or any mmio address. The guest may malfunction if it accesses this memory
1331region.
1332
1333This ioctl is required on Intel-based hosts. This is needed on Intel hardware
1334because of a quirk in the virtualization implementation (see the internals
1335documentation when it pops into existence).
1336
Jan Kiszka414fa982012-04-24 16:40:15 +02001337
Paul Bolle68ba6972011-02-15 00:05:59 +010013384.37 KVM_ENABLE_CAP
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001339-------------------
Alexander Graf71fbfd52010-03-24 21:48:29 +01001340
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001341:Capability: KVM_CAP_ENABLE_CAP
1342:Architectures: mips, ppc, s390
1343:Type: vcpu ioctl
1344:Parameters: struct kvm_enable_cap (in)
1345:Returns: 0 on success; -1 on error
Paolo Bonzinie5d83c72017-02-16 10:40:56 +01001346
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001347:Capability: KVM_CAP_ENABLE_CAP_VM
1348:Architectures: all
Quentin Perreta10f3732021-01-08 16:53:49 +00001349:Type: vm ioctl
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001350:Parameters: struct kvm_enable_cap (in)
1351:Returns: 0 on success; -1 on error
Alexander Graf71fbfd52010-03-24 21:48:29 +01001352
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001353.. note::
1354
1355 Not all extensions are enabled by default. Using this ioctl the application
1356 can enable an extension, making it available to the guest.
Alexander Graf71fbfd52010-03-24 21:48:29 +01001357
1358On systems that do not support this ioctl, it always fails. On systems that
1359do support it, it only works for extensions that are supported for enablement.
1360
1361To check if a capability can be enabled, the KVM_CHECK_EXTENSION ioctl should
1362be used.
1363
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001364::
1365
1366 struct kvm_enable_cap {
Alexander Graf71fbfd52010-03-24 21:48:29 +01001367 /* in */
1368 __u32 cap;
1369
1370The capability that is supposed to get enabled.
1371
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001372::
1373
Alexander Graf71fbfd52010-03-24 21:48:29 +01001374 __u32 flags;
1375
1376A bitfield indicating future enhancements. Has to be 0 for now.
1377
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001378::
1379
Alexander Graf71fbfd52010-03-24 21:48:29 +01001380 __u64 args[4];
1381
1382Arguments for enabling a feature. If a feature needs initial values to
1383function properly, this is the place to put them.
1384
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001385::
1386
Alexander Graf71fbfd52010-03-24 21:48:29 +01001387 __u8 pad[64];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001388 };
Alexander Graf71fbfd52010-03-24 21:48:29 +01001389
Cornelia Huckd938dc52013-10-23 18:26:34 +02001390The vcpu ioctl should be used for vcpu-specific capabilities, the vm ioctl
1391for vm-wide capabilities.
Jan Kiszka414fa982012-04-24 16:40:15 +02001392
Paul Bolle68ba6972011-02-15 00:05:59 +010013934.38 KVM_GET_MP_STATE
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001394---------------------
Avi Kivityb843f062010-04-25 15:51:46 +03001395
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001396:Capability: KVM_CAP_MP_STATE
1397:Architectures: x86, s390, arm, arm64
1398:Type: vcpu ioctl
1399:Parameters: struct kvm_mp_state (out)
1400:Returns: 0 on success; -1 on error
Avi Kivityb843f062010-04-25 15:51:46 +03001401
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001402::
1403
1404 struct kvm_mp_state {
Avi Kivityb843f062010-04-25 15:51:46 +03001405 __u32 mp_state;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001406 };
Avi Kivityb843f062010-04-25 15:51:46 +03001407
1408Returns the vcpu's current "multiprocessing state" (though also valid on
1409uniprocessor guests).
1410
1411Possible values are:
1412
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001413 ========================== ===============================================
1414 KVM_MP_STATE_RUNNABLE the vcpu is currently running [x86,arm/arm64]
1415 KVM_MP_STATE_UNINITIALIZED the vcpu is an application processor (AP)
Tiejun Chenc32a4272014-11-20 11:07:18 +01001416 which has not yet received an INIT signal [x86]
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001417 KVM_MP_STATE_INIT_RECEIVED the vcpu has received an INIT signal, and is
Tiejun Chenc32a4272014-11-20 11:07:18 +01001418 now ready for a SIPI [x86]
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001419 KVM_MP_STATE_HALTED the vcpu has executed a HLT instruction and
Tiejun Chenc32a4272014-11-20 11:07:18 +01001420 is waiting for an interrupt [x86]
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001421 KVM_MP_STATE_SIPI_RECEIVED the vcpu has just received a SIPI (vector
Tiejun Chenc32a4272014-11-20 11:07:18 +01001422 accessible via KVM_GET_VCPU_EVENTS) [x86]
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001423 KVM_MP_STATE_STOPPED the vcpu is stopped [s390,arm/arm64]
1424 KVM_MP_STATE_CHECK_STOP the vcpu is in a special error state [s390]
1425 KVM_MP_STATE_OPERATING the vcpu is operating (running or halted)
David Hildenbrand6352e4d2014-04-10 17:35:00 +02001426 [s390]
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001427 KVM_MP_STATE_LOAD the vcpu is in a special load/startup state
David Hildenbrand6352e4d2014-04-10 17:35:00 +02001428 [s390]
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001429 ========================== ===============================================
Avi Kivityb843f062010-04-25 15:51:46 +03001430
Tiejun Chenc32a4272014-11-20 11:07:18 +01001431On x86, this ioctl is only useful after KVM_CREATE_IRQCHIP. Without an
David Hildenbrand0b4820d2014-05-12 16:05:13 +02001432in-kernel irqchip, the multiprocessing state must be maintained by userspace on
1433these architectures.
Avi Kivityb843f062010-04-25 15:51:46 +03001434
Alex Bennéeecccf0c2015-03-13 17:02:52 +00001435For arm/arm64:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001436^^^^^^^^^^^^^^
Alex Bennéeecccf0c2015-03-13 17:02:52 +00001437
1438The only states that are valid are KVM_MP_STATE_STOPPED and
1439KVM_MP_STATE_RUNNABLE which reflect if the vcpu is paused or not.
Jan Kiszka414fa982012-04-24 16:40:15 +02001440
Paul Bolle68ba6972011-02-15 00:05:59 +010014414.39 KVM_SET_MP_STATE
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001442---------------------
Avi Kivityb843f062010-04-25 15:51:46 +03001443
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001444:Capability: KVM_CAP_MP_STATE
1445:Architectures: x86, s390, arm, arm64
1446:Type: vcpu ioctl
1447:Parameters: struct kvm_mp_state (in)
1448:Returns: 0 on success; -1 on error
Avi Kivityb843f062010-04-25 15:51:46 +03001449
1450Sets the vcpu's current "multiprocessing state"; see KVM_GET_MP_STATE for
1451arguments.
1452
Tiejun Chenc32a4272014-11-20 11:07:18 +01001453On x86, this ioctl is only useful after KVM_CREATE_IRQCHIP. Without an
David Hildenbrand0b4820d2014-05-12 16:05:13 +02001454in-kernel irqchip, the multiprocessing state must be maintained by userspace on
1455these architectures.
Avi Kivityb843f062010-04-25 15:51:46 +03001456
Alex Bennéeecccf0c2015-03-13 17:02:52 +00001457For arm/arm64:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001458^^^^^^^^^^^^^^
Alex Bennéeecccf0c2015-03-13 17:02:52 +00001459
1460The only states that are valid are KVM_MP_STATE_STOPPED and
1461KVM_MP_STATE_RUNNABLE which reflect if the vcpu should be paused or not.
Jan Kiszka414fa982012-04-24 16:40:15 +02001462
Paul Bolle68ba6972011-02-15 00:05:59 +010014634.40 KVM_SET_IDENTITY_MAP_ADDR
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001464------------------------------
Avi Kivity47dbb842010-04-29 12:08:56 +03001465
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001466:Capability: KVM_CAP_SET_IDENTITY_MAP_ADDR
1467:Architectures: x86
1468:Type: vm ioctl
1469:Parameters: unsigned long identity (in)
1470:Returns: 0 on success, -1 on error
Avi Kivity47dbb842010-04-29 12:08:56 +03001471
1472This ioctl defines the physical address of a one-page region in the guest
1473physical address space. The region must be within the first 4GB of the
1474guest physical address space and must not conflict with any memory slot
1475or any mmio address. The guest may malfunction if it accesses this memory
1476region.
1477
David Hildenbrand726b99c2017-08-24 20:51:35 +02001478Setting the address to 0 will result in resetting the address to its default
1479(0xfffbc000).
1480
Avi Kivity47dbb842010-04-29 12:08:56 +03001481This ioctl is required on Intel-based hosts. This is needed on Intel hardware
1482because of a quirk in the virtualization implementation (see the internals
1483documentation when it pops into existence).
1484
David Hildenbrand1af1ac92017-08-24 20:51:36 +02001485Fails if any VCPU has already been created.
Jan Kiszka414fa982012-04-24 16:40:15 +02001486
Paul Bolle68ba6972011-02-15 00:05:59 +010014874.41 KVM_SET_BOOT_CPU_ID
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001488------------------------
Avi Kivity57bc24c2010-04-29 12:12:57 +03001489
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001490:Capability: KVM_CAP_SET_BOOT_CPU_ID
1491:Architectures: x86
1492:Type: vm ioctl
1493:Parameters: unsigned long vcpu_id
1494:Returns: 0 on success, -1 on error
Avi Kivity57bc24c2010-04-29 12:12:57 +03001495
1496Define which vcpu is the Bootstrap Processor (BSP). Values are the same
1497as the vcpu id in KVM_CREATE_VCPU. If this ioctl is not called, the default
1498is vcpu 0.
1499
Jan Kiszka414fa982012-04-24 16:40:15 +02001500
Paul Bolle68ba6972011-02-15 00:05:59 +010015014.42 KVM_GET_XSAVE
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001502------------------
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001503
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001504:Capability: KVM_CAP_XSAVE
1505:Architectures: x86
1506:Type: vcpu ioctl
1507:Parameters: struct kvm_xsave (out)
1508:Returns: 0 on success, -1 on error
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001509
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001510
1511::
1512
1513 struct kvm_xsave {
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001514 __u32 region[1024];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001515 };
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001516
1517This ioctl would copy current vcpu's xsave struct to the userspace.
1518
Jan Kiszka414fa982012-04-24 16:40:15 +02001519
Paul Bolle68ba6972011-02-15 00:05:59 +010015204.43 KVM_SET_XSAVE
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001521------------------
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001522
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001523:Capability: KVM_CAP_XSAVE
1524:Architectures: x86
1525:Type: vcpu ioctl
1526:Parameters: struct kvm_xsave (in)
1527:Returns: 0 on success, -1 on error
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001528
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001529::
1530
1531
1532 struct kvm_xsave {
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001533 __u32 region[1024];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001534 };
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001535
1536This ioctl would copy userspace's xsave struct to the kernel.
1537
Jan Kiszka414fa982012-04-24 16:40:15 +02001538
Paul Bolle68ba6972011-02-15 00:05:59 +010015394.44 KVM_GET_XCRS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001540-----------------
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001541
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001542:Capability: KVM_CAP_XCRS
1543:Architectures: x86
1544:Type: vcpu ioctl
1545:Parameters: struct kvm_xcrs (out)
1546:Returns: 0 on success, -1 on error
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001547
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001548::
1549
1550 struct kvm_xcr {
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001551 __u32 xcr;
1552 __u32 reserved;
1553 __u64 value;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001554 };
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001555
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001556 struct kvm_xcrs {
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001557 __u32 nr_xcrs;
1558 __u32 flags;
1559 struct kvm_xcr xcrs[KVM_MAX_XCRS];
1560 __u64 padding[16];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001561 };
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001562
1563This ioctl would copy current vcpu's xcrs to the userspace.
1564
Jan Kiszka414fa982012-04-24 16:40:15 +02001565
Paul Bolle68ba6972011-02-15 00:05:59 +010015664.45 KVM_SET_XCRS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001567-----------------
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001568
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001569:Capability: KVM_CAP_XCRS
1570:Architectures: x86
1571:Type: vcpu ioctl
1572:Parameters: struct kvm_xcrs (in)
1573:Returns: 0 on success, -1 on error
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001574
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001575::
1576
1577 struct kvm_xcr {
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001578 __u32 xcr;
1579 __u32 reserved;
1580 __u64 value;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001581 };
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001582
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001583 struct kvm_xcrs {
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001584 __u32 nr_xcrs;
1585 __u32 flags;
1586 struct kvm_xcr xcrs[KVM_MAX_XCRS];
1587 __u64 padding[16];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001588 };
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001589
1590This ioctl would set vcpu's xcr to the value userspace specified.
1591
Jan Kiszka414fa982012-04-24 16:40:15 +02001592
Paul Bolle68ba6972011-02-15 00:05:59 +010015934.46 KVM_GET_SUPPORTED_CPUID
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001594----------------------------
Avi Kivityd1535132010-07-14 09:45:21 +03001595
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001596:Capability: KVM_CAP_EXT_CPUID
1597:Architectures: x86
1598:Type: system ioctl
1599:Parameters: struct kvm_cpuid2 (in/out)
1600:Returns: 0 on success, -1 on error
Avi Kivityd1535132010-07-14 09:45:21 +03001601
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001602::
1603
1604 struct kvm_cpuid2 {
Avi Kivityd1535132010-07-14 09:45:21 +03001605 __u32 nent;
1606 __u32 padding;
1607 struct kvm_cpuid_entry2 entries[0];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001608 };
Avi Kivityd1535132010-07-14 09:45:21 +03001609
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001610 #define KVM_CPUID_FLAG_SIGNIFCANT_INDEX BIT(0)
Sean Christopherson7ff6c032020-03-02 15:56:51 -08001611 #define KVM_CPUID_FLAG_STATEFUL_FUNC BIT(1) /* deprecated */
1612 #define KVM_CPUID_FLAG_STATE_READ_NEXT BIT(2) /* deprecated */
Avi Kivityd1535132010-07-14 09:45:21 +03001613
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001614 struct kvm_cpuid_entry2 {
Avi Kivityd1535132010-07-14 09:45:21 +03001615 __u32 function;
1616 __u32 index;
1617 __u32 flags;
1618 __u32 eax;
1619 __u32 ebx;
1620 __u32 ecx;
1621 __u32 edx;
1622 __u32 padding[3];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001623 };
Avi Kivityd1535132010-07-14 09:45:21 +03001624
Jim Mattsondf9cb9c2018-05-24 11:59:54 -07001625This ioctl returns x86 cpuid features which are supported by both the
1626hardware and kvm in its default configuration. Userspace can use the
1627information returned by this ioctl to construct cpuid information (for
1628KVM_SET_CPUID2) that is consistent with hardware, kernel, and
1629userspace capabilities, and with user requirements (for example, the
1630user may wish to constrain cpuid to emulate older hardware, or for
1631feature consistency across a cluster).
1632
1633Note that certain capabilities, such as KVM_CAP_X86_DISABLE_EXITS, may
1634expose cpuid features (e.g. MONITOR) which are not supported by kvm in
1635its default configuration. If userspace enables such capabilities, it
1636is responsible for modifying the results of this ioctl appropriately.
Avi Kivityd1535132010-07-14 09:45:21 +03001637
1638Userspace invokes KVM_GET_SUPPORTED_CPUID by passing a kvm_cpuid2 structure
1639with the 'nent' field indicating the number of entries in the variable-size
1640array 'entries'. If the number of entries is too low to describe the cpu
1641capabilities, an error (E2BIG) is returned. If the number is too high,
1642the 'nent' field is adjusted and an error (ENOMEM) is returned. If the
1643number is just right, the 'nent' field is adjusted to the number of valid
1644entries in the 'entries' array, which is then filled.
1645
1646The entries returned are the host cpuid as returned by the cpuid instruction,
Avi Kivityc39cbd22010-09-12 16:39:11 +02001647with unknown or unsupported features masked out. Some features (for example,
1648x2apic), may not be present in the host cpu, but are exposed by kvm if it can
1649emulate them efficiently. The fields in each entry are defined as follows:
Avi Kivityd1535132010-07-14 09:45:21 +03001650
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001651 function:
1652 the eax value used to obtain the entry
1653
1654 index:
1655 the ecx value used to obtain the entry (for entries that are
Avi Kivityd1535132010-07-14 09:45:21 +03001656 affected by ecx)
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001657
1658 flags:
1659 an OR of zero or more of the following:
1660
Avi Kivityd1535132010-07-14 09:45:21 +03001661 KVM_CPUID_FLAG_SIGNIFCANT_INDEX:
1662 if the index field is valid
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001663
1664 eax, ebx, ecx, edx:
1665 the values returned by the cpuid instruction for
Avi Kivityd1535132010-07-14 09:45:21 +03001666 this function/index combination
1667
Jan Kiszka4d25a0662011-12-21 12:28:29 +01001668The TSC deadline timer feature (CPUID leaf 1, ecx[24]) is always returned
1669as false, since the feature depends on KVM_CREATE_IRQCHIP for local APIC
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001670support. Instead it is reported via::
Jan Kiszka4d25a0662011-12-21 12:28:29 +01001671
1672 ioctl(KVM_CHECK_EXTENSION, KVM_CAP_TSC_DEADLINE_TIMER)
1673
1674if that returns true and you use KVM_CREATE_IRQCHIP, or if you emulate the
1675feature in userspace, then you can enable the feature for KVM_SET_CPUID2.
1676
Jan Kiszka414fa982012-04-24 16:40:15 +02001677
Paul Bolle68ba6972011-02-15 00:05:59 +010016784.47 KVM_PPC_GET_PVINFO
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001679-----------------------
Alexander Graf15711e92010-07-29 14:48:08 +02001680
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001681:Capability: KVM_CAP_PPC_GET_PVINFO
1682:Architectures: ppc
1683:Type: vm ioctl
1684:Parameters: struct kvm_ppc_pvinfo (out)
1685:Returns: 0 on success, !0 on error
Alexander Graf15711e92010-07-29 14:48:08 +02001686
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001687::
1688
1689 struct kvm_ppc_pvinfo {
Alexander Graf15711e92010-07-29 14:48:08 +02001690 __u32 flags;
1691 __u32 hcall[4];
1692 __u8 pad[108];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001693 };
Alexander Graf15711e92010-07-29 14:48:08 +02001694
1695This ioctl fetches PV specific information that need to be passed to the guest
1696using the device tree or other means from vm context.
1697
Liu Yu-B132019202e072012-07-03 05:48:52 +00001698The hcall array defines 4 instructions that make up a hypercall.
Alexander Graf15711e92010-07-29 14:48:08 +02001699
1700If any additional field gets added to this structure later on, a bit for that
1701additional piece of information will be set in the flags bitmap.
1702
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001703The flags bitmap is defined as::
Liu Yu-B132019202e072012-07-03 05:48:52 +00001704
1705 /* the host supports the ePAPR idle hcall
1706 #define KVM_PPC_PVINFO_FLAGS_EV_IDLE (1<<0)
Jan Kiszka414fa982012-04-24 16:40:15 +02001707
Paul Bolle68ba6972011-02-15 00:05:59 +010017084.52 KVM_SET_GSI_ROUTING
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001709------------------------
Jan Kiszka49f48172010-11-16 22:30:07 +01001710
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001711:Capability: KVM_CAP_IRQ_ROUTING
1712:Architectures: x86 s390 arm arm64
1713:Type: vm ioctl
1714:Parameters: struct kvm_irq_routing (in)
1715:Returns: 0 on success, -1 on error
Jan Kiszka49f48172010-11-16 22:30:07 +01001716
1717Sets the GSI routing table entries, overwriting any previously set entries.
1718
Eric Auger180ae7b2016-07-22 16:20:41 +00001719On arm/arm64, GSI routing has the following limitation:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001720
Eric Auger180ae7b2016-07-22 16:20:41 +00001721- GSI routing does not apply to KVM_IRQ_LINE but only to KVM_IRQFD.
1722
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001723::
1724
1725 struct kvm_irq_routing {
Jan Kiszka49f48172010-11-16 22:30:07 +01001726 __u32 nr;
1727 __u32 flags;
1728 struct kvm_irq_routing_entry entries[0];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001729 };
Jan Kiszka49f48172010-11-16 22:30:07 +01001730
1731No flags are specified so far, the corresponding field must be set to zero.
1732
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001733::
1734
1735 struct kvm_irq_routing_entry {
Jan Kiszka49f48172010-11-16 22:30:07 +01001736 __u32 gsi;
1737 __u32 type;
1738 __u32 flags;
1739 __u32 pad;
1740 union {
1741 struct kvm_irq_routing_irqchip irqchip;
1742 struct kvm_irq_routing_msi msi;
Cornelia Huck84223592013-07-15 13:36:01 +02001743 struct kvm_irq_routing_s390_adapter adapter;
Andrey Smetanin5c9194122015-11-10 15:36:34 +03001744 struct kvm_irq_routing_hv_sint hv_sint;
Jan Kiszka49f48172010-11-16 22:30:07 +01001745 __u32 pad[8];
1746 } u;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001747 };
Jan Kiszka49f48172010-11-16 22:30:07 +01001748
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001749 /* gsi routing entry types */
1750 #define KVM_IRQ_ROUTING_IRQCHIP 1
1751 #define KVM_IRQ_ROUTING_MSI 2
1752 #define KVM_IRQ_ROUTING_S390_ADAPTER 3
1753 #define KVM_IRQ_ROUTING_HV_SINT 4
Jan Kiszka49f48172010-11-16 22:30:07 +01001754
Eric Auger76a10b82016-07-22 16:20:37 +00001755flags:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001756
Paolo Bonzini6f49b2f2016-08-04 13:59:56 +02001757- KVM_MSI_VALID_DEVID: used along with KVM_IRQ_ROUTING_MSI routing entry
1758 type, specifies that the devid field contains a valid value. The per-VM
1759 KVM_CAP_MSI_DEVID capability advertises the requirement to provide
1760 the device ID. If this capability is not available, userspace should
1761 never set the KVM_MSI_VALID_DEVID flag as the ioctl might fail.
Eric Auger76a10b82016-07-22 16:20:37 +00001762- zero otherwise
Jan Kiszka49f48172010-11-16 22:30:07 +01001763
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001764::
1765
1766 struct kvm_irq_routing_irqchip {
Jan Kiszka49f48172010-11-16 22:30:07 +01001767 __u32 irqchip;
1768 __u32 pin;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001769 };
Jan Kiszka49f48172010-11-16 22:30:07 +01001770
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001771 struct kvm_irq_routing_msi {
Jan Kiszka49f48172010-11-16 22:30:07 +01001772 __u32 address_lo;
1773 __u32 address_hi;
1774 __u32 data;
Eric Auger76a10b82016-07-22 16:20:37 +00001775 union {
1776 __u32 pad;
1777 __u32 devid;
1778 };
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001779 };
Jan Kiszka49f48172010-11-16 22:30:07 +01001780
Paolo Bonzini6f49b2f2016-08-04 13:59:56 +02001781If KVM_MSI_VALID_DEVID is set, devid contains a unique device identifier
1782for the device that wrote the MSI message. For PCI, this is usually a
1783BFD identifier in the lower 16 bits.
Eric Auger76a10b82016-07-22 16:20:37 +00001784
Radim Krčmář371313132016-07-12 22:09:27 +02001785On x86, address_hi is ignored unless the KVM_X2APIC_API_USE_32BIT_IDS
1786feature of KVM_CAP_X2APIC_API capability is enabled. If it is enabled,
1787address_hi bits 31-8 provide bits 31-8 of the destination id. Bits 7-0 of
1788address_hi must be zero.
1789
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001790::
1791
1792 struct kvm_irq_routing_s390_adapter {
Cornelia Huck84223592013-07-15 13:36:01 +02001793 __u64 ind_addr;
1794 __u64 summary_addr;
1795 __u64 ind_offset;
1796 __u32 summary_offset;
1797 __u32 adapter_id;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001798 };
Cornelia Huck84223592013-07-15 13:36:01 +02001799
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001800 struct kvm_irq_routing_hv_sint {
Andrey Smetanin5c9194122015-11-10 15:36:34 +03001801 __u32 vcpu;
1802 __u32 sint;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001803 };
Jan Kiszka414fa982012-04-24 16:40:15 +02001804
Jan Kiszka414fa982012-04-24 16:40:15 +02001805
18064.55 KVM_SET_TSC_KHZ
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001807--------------------
Joerg Roedel92a1f122011-03-25 09:44:51 +01001808
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001809:Capability: KVM_CAP_TSC_CONTROL
1810:Architectures: x86
1811:Type: vcpu ioctl
1812:Parameters: virtual tsc_khz
1813:Returns: 0 on success, -1 on error
Joerg Roedel92a1f122011-03-25 09:44:51 +01001814
1815Specifies the tsc frequency for the virtual machine. The unit of the
1816frequency is KHz.
1817
Jan Kiszka414fa982012-04-24 16:40:15 +02001818
18194.56 KVM_GET_TSC_KHZ
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001820--------------------
Joerg Roedel92a1f122011-03-25 09:44:51 +01001821
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001822:Capability: KVM_CAP_GET_TSC_KHZ
1823:Architectures: x86
1824:Type: vcpu ioctl
1825:Parameters: none
1826:Returns: virtual tsc-khz on success, negative value on error
Joerg Roedel92a1f122011-03-25 09:44:51 +01001827
1828Returns the tsc frequency of the guest. The unit of the return value is
1829KHz. If the host has unstable tsc this ioctl returns -EIO instead as an
1830error.
1831
Jan Kiszka414fa982012-04-24 16:40:15 +02001832
18334.57 KVM_GET_LAPIC
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001834------------------
Avi Kivitye7677932011-05-11 08:30:51 -04001835
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001836:Capability: KVM_CAP_IRQCHIP
1837:Architectures: x86
1838:Type: vcpu ioctl
1839:Parameters: struct kvm_lapic_state (out)
1840:Returns: 0 on success, -1 on error
Avi Kivitye7677932011-05-11 08:30:51 -04001841
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001842::
1843
1844 #define KVM_APIC_REG_SIZE 0x400
1845 struct kvm_lapic_state {
Avi Kivitye7677932011-05-11 08:30:51 -04001846 char regs[KVM_APIC_REG_SIZE];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001847 };
Avi Kivitye7677932011-05-11 08:30:51 -04001848
1849Reads the Local APIC registers and copies them into the input argument. The
1850data format and layout are the same as documented in the architecture manual.
1851
Radim Krčmář371313132016-07-12 22:09:27 +02001852If KVM_X2APIC_API_USE_32BIT_IDS feature of KVM_CAP_X2APIC_API is
1853enabled, then the format of APIC_ID register depends on the APIC mode
1854(reported by MSR_IA32_APICBASE) of its VCPU. x2APIC stores APIC ID in
1855the APIC_ID register (bytes 32-35). xAPIC only allows an 8-bit APIC ID
1856which is stored in bits 31-24 of the APIC register, or equivalently in
1857byte 35 of struct kvm_lapic_state's regs field. KVM_GET_LAPIC must then
1858be called after MSR_IA32_APICBASE has been set with KVM_SET_MSR.
1859
1860If KVM_X2APIC_API_USE_32BIT_IDS feature is disabled, struct kvm_lapic_state
1861always uses xAPIC format.
1862
Jan Kiszka414fa982012-04-24 16:40:15 +02001863
18644.58 KVM_SET_LAPIC
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001865------------------
Avi Kivitye7677932011-05-11 08:30:51 -04001866
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001867:Capability: KVM_CAP_IRQCHIP
1868:Architectures: x86
1869:Type: vcpu ioctl
1870:Parameters: struct kvm_lapic_state (in)
1871:Returns: 0 on success, -1 on error
Avi Kivitye7677932011-05-11 08:30:51 -04001872
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001873::
1874
1875 #define KVM_APIC_REG_SIZE 0x400
1876 struct kvm_lapic_state {
Avi Kivitye7677932011-05-11 08:30:51 -04001877 char regs[KVM_APIC_REG_SIZE];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001878 };
Avi Kivitye7677932011-05-11 08:30:51 -04001879
Masanari Iidadf5cbb22014-03-21 10:04:30 +09001880Copies the input argument into the Local APIC registers. The data format
Avi Kivitye7677932011-05-11 08:30:51 -04001881and layout are the same as documented in the architecture manual.
1882
Radim Krčmář371313132016-07-12 22:09:27 +02001883The format of the APIC ID register (bytes 32-35 of struct kvm_lapic_state's
1884regs field) depends on the state of the KVM_CAP_X2APIC_API capability.
1885See the note in KVM_GET_LAPIC.
1886
Jan Kiszka414fa982012-04-24 16:40:15 +02001887
18884.59 KVM_IOEVENTFD
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001889------------------
Sasha Levin55399a02011-05-28 14:12:30 +03001890
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001891:Capability: KVM_CAP_IOEVENTFD
1892:Architectures: all
1893:Type: vm ioctl
1894:Parameters: struct kvm_ioeventfd (in)
1895:Returns: 0 on success, !0 on error
Sasha Levin55399a02011-05-28 14:12:30 +03001896
1897This ioctl attaches or detaches an ioeventfd to a legal pio/mmio address
1898within the guest. A guest write in the registered address will signal the
1899provided event instead of triggering an exit.
1900
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001901::
1902
1903 struct kvm_ioeventfd {
Sasha Levin55399a02011-05-28 14:12:30 +03001904 __u64 datamatch;
1905 __u64 addr; /* legal pio/mmio address */
Jason Wange9ea5062015-09-15 14:41:59 +08001906 __u32 len; /* 0, 1, 2, 4, or 8 bytes */
Sasha Levin55399a02011-05-28 14:12:30 +03001907 __s32 fd;
1908 __u32 flags;
1909 __u8 pad[36];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001910 };
Sasha Levin55399a02011-05-28 14:12:30 +03001911
Cornelia Huck2b834512013-02-28 12:33:20 +01001912For the special case of virtio-ccw devices on s390, the ioevent is matched
1913to a subchannel/virtqueue tuple instead.
1914
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001915The following flags are defined::
Sasha Levin55399a02011-05-28 14:12:30 +03001916
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001917 #define KVM_IOEVENTFD_FLAG_DATAMATCH (1 << kvm_ioeventfd_flag_nr_datamatch)
1918 #define KVM_IOEVENTFD_FLAG_PIO (1 << kvm_ioeventfd_flag_nr_pio)
1919 #define KVM_IOEVENTFD_FLAG_DEASSIGN (1 << kvm_ioeventfd_flag_nr_deassign)
1920 #define KVM_IOEVENTFD_FLAG_VIRTIO_CCW_NOTIFY \
Cornelia Huck2b834512013-02-28 12:33:20 +01001921 (1 << kvm_ioeventfd_flag_nr_virtio_ccw_notify)
Sasha Levin55399a02011-05-28 14:12:30 +03001922
1923If datamatch flag is set, the event will be signaled only if the written value
1924to the registered address is equal to datamatch in struct kvm_ioeventfd.
1925
Cornelia Huck2b834512013-02-28 12:33:20 +01001926For virtio-ccw devices, addr contains the subchannel id and datamatch the
1927virtqueue index.
1928
Jason Wange9ea5062015-09-15 14:41:59 +08001929With KVM_CAP_IOEVENTFD_ANY_LENGTH, a zero length ioeventfd is allowed, and
1930the kernel will ignore the length of guest write and may get a faster vmexit.
1931The speedup may only apply to specific architectures, but the ioeventfd will
1932work anyway.
Jan Kiszka414fa982012-04-24 16:40:15 +02001933
19344.60 KVM_DIRTY_TLB
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001935------------------
Scott Wooddc83b8b2011-08-18 15:25:21 -05001936
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001937:Capability: KVM_CAP_SW_TLB
1938:Architectures: ppc
1939:Type: vcpu ioctl
1940:Parameters: struct kvm_dirty_tlb (in)
1941:Returns: 0 on success, -1 on error
Scott Wooddc83b8b2011-08-18 15:25:21 -05001942
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001943::
1944
1945 struct kvm_dirty_tlb {
Scott Wooddc83b8b2011-08-18 15:25:21 -05001946 __u64 bitmap;
1947 __u32 num_dirty;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001948 };
Scott Wooddc83b8b2011-08-18 15:25:21 -05001949
1950This must be called whenever userspace has changed an entry in the shared
1951TLB, prior to calling KVM_RUN on the associated vcpu.
1952
1953The "bitmap" field is the userspace address of an array. This array
1954consists of a number of bits, equal to the total number of TLB entries as
1955determined by the last successful call to KVM_CONFIG_TLB, rounded up to the
1956nearest multiple of 64.
1957
1958Each bit corresponds to one TLB entry, ordered the same as in the shared TLB
1959array.
1960
1961The array is little-endian: the bit 0 is the least significant bit of the
1962first byte, bit 8 is the least significant bit of the second byte, etc.
1963This avoids any complications with differing word sizes.
1964
1965The "num_dirty" field is a performance hint for KVM to determine whether it
1966should skip processing the bitmap and just invalidate everything. It must
1967be set to the number of set bits in the bitmap.
1968
Jan Kiszka414fa982012-04-24 16:40:15 +02001969
David Gibson54738c02011-06-29 00:22:41 +000019704.62 KVM_CREATE_SPAPR_TCE
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001971-------------------------
David Gibson54738c02011-06-29 00:22:41 +00001972
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001973:Capability: KVM_CAP_SPAPR_TCE
1974:Architectures: powerpc
1975:Type: vm ioctl
1976:Parameters: struct kvm_create_spapr_tce (in)
1977:Returns: file descriptor for manipulating the created TCE table
David Gibson54738c02011-06-29 00:22:41 +00001978
1979This creates a virtual TCE (translation control entry) table, which
1980is an IOMMU for PAPR-style virtual I/O. It is used to translate
1981logical addresses used in virtual I/O into guest physical addresses,
1982and provides a scatter/gather capability for PAPR virtual I/O.
1983
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001984::
1985
1986 /* for KVM_CAP_SPAPR_TCE */
1987 struct kvm_create_spapr_tce {
David Gibson54738c02011-06-29 00:22:41 +00001988 __u64 liobn;
1989 __u32 window_size;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001990 };
David Gibson54738c02011-06-29 00:22:41 +00001991
1992The liobn field gives the logical IO bus number for which to create a
1993TCE table. The window_size field specifies the size of the DMA window
1994which this TCE table will translate - the table will contain one 64
1995bit TCE entry for every 4kiB of the DMA window.
1996
1997When the guest issues an H_PUT_TCE hcall on a liobn for which a TCE
1998table has been created using this ioctl(), the kernel will handle it
1999in real mode, updating the TCE table. H_PUT_TCE calls for other
2000liobns will cause a vm exit and must be handled by userspace.
2001
2002The return value is a file descriptor which can be passed to mmap(2)
2003to map the created TCE table into userspace. This lets userspace read
2004the entries written by kernel-handled H_PUT_TCE calls, and also lets
2005userspace update the TCE table directly which is useful in some
2006circumstances.
2007
Jan Kiszka414fa982012-04-24 16:40:15 +02002008
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +000020094.63 KVM_ALLOCATE_RMA
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002010---------------------
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00002011
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002012:Capability: KVM_CAP_PPC_RMA
2013:Architectures: powerpc
2014:Type: vm ioctl
2015:Parameters: struct kvm_allocate_rma (out)
2016:Returns: file descriptor for mapping the allocated RMA
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00002017
2018This allocates a Real Mode Area (RMA) from the pool allocated at boot
2019time by the kernel. An RMA is a physically-contiguous, aligned region
2020of memory used on older POWER processors to provide the memory which
2021will be accessed by real-mode (MMU off) accesses in a KVM guest.
2022POWER processors support a set of sizes for the RMA that usually
2023includes 64MB, 128MB, 256MB and some larger powers of two.
2024
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002025::
2026
2027 /* for KVM_ALLOCATE_RMA */
2028 struct kvm_allocate_rma {
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00002029 __u64 rma_size;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002030 };
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00002031
2032The return value is a file descriptor which can be passed to mmap(2)
2033to map the allocated RMA into userspace. The mapped area can then be
2034passed to the KVM_SET_USER_MEMORY_REGION ioctl to establish it as the
2035RMA for a virtual machine. The size of the RMA in bytes (which is
2036fixed at host kernel boot time) is returned in the rma_size field of
2037the argument structure.
2038
2039The KVM_CAP_PPC_RMA capability is 1 or 2 if the KVM_ALLOCATE_RMA ioctl
2040is supported; 2 if the processor requires all virtual machines to have
2041an RMA, or 1 if the processor can use an RMA but doesn't require it,
2042because it supports the Virtual RMA (VRMA) facility.
2043
Jan Kiszka414fa982012-04-24 16:40:15 +02002044
Avi Kivity3f745f12011-12-07 12:42:47 +020020454.64 KVM_NMI
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002046------------
Avi Kivity3f745f12011-12-07 12:42:47 +02002047
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002048:Capability: KVM_CAP_USER_NMI
2049:Architectures: x86
2050:Type: vcpu ioctl
2051:Parameters: none
2052:Returns: 0 on success, -1 on error
Avi Kivity3f745f12011-12-07 12:42:47 +02002053
2054Queues an NMI on the thread's vcpu. Note this is well defined only
2055when KVM_CREATE_IRQCHIP has not been called, since this is an interface
2056between the virtual cpu core and virtual local APIC. After KVM_CREATE_IRQCHIP
2057has been called, this interface is completely emulated within the kernel.
2058
2059To use this to emulate the LINT1 input with KVM_CREATE_IRQCHIP, use the
2060following algorithm:
2061
Masanari Iida5d4f6f32015-10-04 00:46:21 +09002062 - pause the vcpu
Avi Kivity3f745f12011-12-07 12:42:47 +02002063 - read the local APIC's state (KVM_GET_LAPIC)
2064 - check whether changing LINT1 will queue an NMI (see the LVT entry for LINT1)
2065 - if so, issue KVM_NMI
2066 - resume the vcpu
2067
2068Some guests configure the LINT1 NMI input to cause a panic, aiding in
2069debugging.
2070
Jan Kiszka414fa982012-04-24 16:40:15 +02002071
Alexander Grafe24ed812011-09-14 10:02:41 +020020724.65 KVM_S390_UCAS_MAP
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002073----------------------
Carsten Otte27e03932012-01-04 10:25:21 +01002074
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002075:Capability: KVM_CAP_S390_UCONTROL
2076:Architectures: s390
2077:Type: vcpu ioctl
2078:Parameters: struct kvm_s390_ucas_mapping (in)
2079:Returns: 0 in case of success
Carsten Otte27e03932012-01-04 10:25:21 +01002080
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002081The parameter is defined like this::
2082
Carsten Otte27e03932012-01-04 10:25:21 +01002083 struct kvm_s390_ucas_mapping {
2084 __u64 user_addr;
2085 __u64 vcpu_addr;
2086 __u64 length;
2087 };
2088
2089This ioctl maps the memory at "user_addr" with the length "length" to
2090the vcpu's address space starting at "vcpu_addr". All parameters need to
Anatol Pomozovf884ab12013-05-08 16:56:16 -07002091be aligned by 1 megabyte.
Carsten Otte27e03932012-01-04 10:25:21 +01002092
Jan Kiszka414fa982012-04-24 16:40:15 +02002093
Alexander Grafe24ed812011-09-14 10:02:41 +020020944.66 KVM_S390_UCAS_UNMAP
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002095------------------------
Carsten Otte27e03932012-01-04 10:25:21 +01002096
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002097:Capability: KVM_CAP_S390_UCONTROL
2098:Architectures: s390
2099:Type: vcpu ioctl
2100:Parameters: struct kvm_s390_ucas_mapping (in)
2101:Returns: 0 in case of success
Carsten Otte27e03932012-01-04 10:25:21 +01002102
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002103The parameter is defined like this::
2104
Carsten Otte27e03932012-01-04 10:25:21 +01002105 struct kvm_s390_ucas_mapping {
2106 __u64 user_addr;
2107 __u64 vcpu_addr;
2108 __u64 length;
2109 };
2110
2111This ioctl unmaps the memory in the vcpu's address space starting at
2112"vcpu_addr" with the length "length". The field "user_addr" is ignored.
Anatol Pomozovf884ab12013-05-08 16:56:16 -07002113All parameters need to be aligned by 1 megabyte.
Carsten Otte27e03932012-01-04 10:25:21 +01002114
Jan Kiszka414fa982012-04-24 16:40:15 +02002115
Alexander Grafe24ed812011-09-14 10:02:41 +020021164.67 KVM_S390_VCPU_FAULT
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002117------------------------
Carsten Otteccc79102012-01-04 10:25:26 +01002118
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002119:Capability: KVM_CAP_S390_UCONTROL
2120:Architectures: s390
2121:Type: vcpu ioctl
2122:Parameters: vcpu absolute address (in)
2123:Returns: 0 in case of success
Carsten Otteccc79102012-01-04 10:25:26 +01002124
2125This call creates a page table entry on the virtual cpu's address space
2126(for user controlled virtual machines) or the virtual machine's address
2127space (for regular virtual machines). This only works for minor faults,
2128thus it's recommended to access subject memory page via the user page
2129table upfront. This is useful to handle validity intercepts for user
2130controlled virtual machines to fault in the virtual cpu's lowcore pages
2131prior to calling the KVM_RUN ioctl.
2132
Jan Kiszka414fa982012-04-24 16:40:15 +02002133
Alexander Grafe24ed812011-09-14 10:02:41 +020021344.68 KVM_SET_ONE_REG
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002135--------------------
Alexander Grafe24ed812011-09-14 10:02:41 +02002136
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002137:Capability: KVM_CAP_ONE_REG
2138:Architectures: all
2139:Type: vcpu ioctl
2140:Parameters: struct kvm_one_reg (in)
2141:Returns: 0 on success, negative value on failure
2142
Dave Martin395f5622019-01-15 17:02:08 +00002143Errors:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002144
2145 ====== ============================================================
2146  ENOENT   no such register
Janosch Frank68cf7b12019-06-14 13:11:21 +02002147  EINVAL   invalid register ID, or no such register or used with VMs in
2148 protected virtualization mode on s390
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002149  EPERM    (arm64) register access not allowed before vcpu finalization
2150 ====== ============================================================
2151
Dave Martinfe365b42019-04-12 12:59:47 +01002152(These error codes are indicative only: do not rely on a specific error
2153code being returned in a specific situation.)
Alexander Grafe24ed812011-09-14 10:02:41 +02002154
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002155::
2156
2157 struct kvm_one_reg {
Alexander Grafe24ed812011-09-14 10:02:41 +02002158 __u64 id;
2159 __u64 addr;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002160 };
Alexander Grafe24ed812011-09-14 10:02:41 +02002161
2162Using this ioctl, a single vcpu register can be set to a specific value
2163defined by user space with the passed in struct kvm_one_reg, where id
2164refers to the register identifier as described below and addr is a pointer
2165to a variable with the respective size. There can be architecture agnostic
2166and architecture specific registers. Each have their own range of operation
2167and their own constants and width. To keep track of the implemented
2168registers, find a list below:
2169
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002170 ======= =============================== ============
2171 Arch Register Width (bits)
2172 ======= =============================== ============
2173 PPC KVM_REG_PPC_HIOR 64
2174 PPC KVM_REG_PPC_IAC1 64
2175 PPC KVM_REG_PPC_IAC2 64
2176 PPC KVM_REG_PPC_IAC3 64
2177 PPC KVM_REG_PPC_IAC4 64
2178 PPC KVM_REG_PPC_DAC1 64
2179 PPC KVM_REG_PPC_DAC2 64
2180 PPC KVM_REG_PPC_DABR 64
2181 PPC KVM_REG_PPC_DSCR 64
2182 PPC KVM_REG_PPC_PURR 64
2183 PPC KVM_REG_PPC_SPURR 64
2184 PPC KVM_REG_PPC_DAR 64
2185 PPC KVM_REG_PPC_DSISR 32
2186 PPC KVM_REG_PPC_AMR 64
2187 PPC KVM_REG_PPC_UAMOR 64
2188 PPC KVM_REG_PPC_MMCR0 64
2189 PPC KVM_REG_PPC_MMCR1 64
2190 PPC KVM_REG_PPC_MMCRA 64
2191 PPC KVM_REG_PPC_MMCR2 64
2192 PPC KVM_REG_PPC_MMCRS 64
Athira Rajeev5752fe02020-07-17 10:38:17 -04002193 PPC KVM_REG_PPC_MMCR3 64
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002194 PPC KVM_REG_PPC_SIAR 64
2195 PPC KVM_REG_PPC_SDAR 64
2196 PPC KVM_REG_PPC_SIER 64
Athira Rajeev5752fe02020-07-17 10:38:17 -04002197 PPC KVM_REG_PPC_SIER2 64
2198 PPC KVM_REG_PPC_SIER3 64
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002199 PPC KVM_REG_PPC_PMC1 32
2200 PPC KVM_REG_PPC_PMC2 32
2201 PPC KVM_REG_PPC_PMC3 32
2202 PPC KVM_REG_PPC_PMC4 32
2203 PPC KVM_REG_PPC_PMC5 32
2204 PPC KVM_REG_PPC_PMC6 32
2205 PPC KVM_REG_PPC_PMC7 32
2206 PPC KVM_REG_PPC_PMC8 32
2207 PPC KVM_REG_PPC_FPR0 64
2208 ...
2209 PPC KVM_REG_PPC_FPR31 64
2210 PPC KVM_REG_PPC_VR0 128
2211 ...
2212 PPC KVM_REG_PPC_VR31 128
2213 PPC KVM_REG_PPC_VSR0 128
2214 ...
2215 PPC KVM_REG_PPC_VSR31 128
2216 PPC KVM_REG_PPC_FPSCR 64
2217 PPC KVM_REG_PPC_VSCR 32
2218 PPC KVM_REG_PPC_VPA_ADDR 64
2219 PPC KVM_REG_PPC_VPA_SLB 128
2220 PPC KVM_REG_PPC_VPA_DTL 128
2221 PPC KVM_REG_PPC_EPCR 32
2222 PPC KVM_REG_PPC_EPR 32
2223 PPC KVM_REG_PPC_TCR 32
2224 PPC KVM_REG_PPC_TSR 32
2225 PPC KVM_REG_PPC_OR_TSR 32
2226 PPC KVM_REG_PPC_CLEAR_TSR 32
2227 PPC KVM_REG_PPC_MAS0 32
2228 PPC KVM_REG_PPC_MAS1 32
2229 PPC KVM_REG_PPC_MAS2 64
2230 PPC KVM_REG_PPC_MAS7_3 64
2231 PPC KVM_REG_PPC_MAS4 32
2232 PPC KVM_REG_PPC_MAS6 32
2233 PPC KVM_REG_PPC_MMUCFG 32
2234 PPC KVM_REG_PPC_TLB0CFG 32
2235 PPC KVM_REG_PPC_TLB1CFG 32
2236 PPC KVM_REG_PPC_TLB2CFG 32
2237 PPC KVM_REG_PPC_TLB3CFG 32
2238 PPC KVM_REG_PPC_TLB0PS 32
2239 PPC KVM_REG_PPC_TLB1PS 32
2240 PPC KVM_REG_PPC_TLB2PS 32
2241 PPC KVM_REG_PPC_TLB3PS 32
2242 PPC KVM_REG_PPC_EPTCFG 32
2243 PPC KVM_REG_PPC_ICP_STATE 64
2244 PPC KVM_REG_PPC_VP_STATE 128
2245 PPC KVM_REG_PPC_TB_OFFSET 64
2246 PPC KVM_REG_PPC_SPMC1 32
2247 PPC KVM_REG_PPC_SPMC2 32
2248 PPC KVM_REG_PPC_IAMR 64
2249 PPC KVM_REG_PPC_TFHAR 64
2250 PPC KVM_REG_PPC_TFIAR 64
2251 PPC KVM_REG_PPC_TEXASR 64
2252 PPC KVM_REG_PPC_FSCR 64
2253 PPC KVM_REG_PPC_PSPB 32
2254 PPC KVM_REG_PPC_EBBHR 64
2255 PPC KVM_REG_PPC_EBBRR 64
2256 PPC KVM_REG_PPC_BESCR 64
2257 PPC KVM_REG_PPC_TAR 64
2258 PPC KVM_REG_PPC_DPDES 64
2259 PPC KVM_REG_PPC_DAWR 64
2260 PPC KVM_REG_PPC_DAWRX 64
2261 PPC KVM_REG_PPC_CIABR 64
2262 PPC KVM_REG_PPC_IC 64
2263 PPC KVM_REG_PPC_VTB 64
2264 PPC KVM_REG_PPC_CSIGR 64
2265 PPC KVM_REG_PPC_TACR 64
2266 PPC KVM_REG_PPC_TCSCR 64
2267 PPC KVM_REG_PPC_PID 64
2268 PPC KVM_REG_PPC_ACOP 64
2269 PPC KVM_REG_PPC_VRSAVE 32
2270 PPC KVM_REG_PPC_LPCR 32
2271 PPC KVM_REG_PPC_LPCR_64 64
2272 PPC KVM_REG_PPC_PPR 64
2273 PPC KVM_REG_PPC_ARCH_COMPAT 32
2274 PPC KVM_REG_PPC_DABRX 32
2275 PPC KVM_REG_PPC_WORT 64
2276 PPC KVM_REG_PPC_SPRG9 64
2277 PPC KVM_REG_PPC_DBSR 32
2278 PPC KVM_REG_PPC_TIDR 64
2279 PPC KVM_REG_PPC_PSSCR 64
2280 PPC KVM_REG_PPC_DEC_EXPIRY 64
2281 PPC KVM_REG_PPC_PTCR 64
Ravi Bangoriabd1de1a2020-12-16 16:12:18 +05302282 PPC KVM_REG_PPC_DAWR1 64
2283 PPC KVM_REG_PPC_DAWRX1 64
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002284 PPC KVM_REG_PPC_TM_GPR0 64
2285 ...
2286 PPC KVM_REG_PPC_TM_GPR31 64
2287 PPC KVM_REG_PPC_TM_VSR0 128
2288 ...
2289 PPC KVM_REG_PPC_TM_VSR63 128
2290 PPC KVM_REG_PPC_TM_CR 64
2291 PPC KVM_REG_PPC_TM_LR 64
2292 PPC KVM_REG_PPC_TM_CTR 64
2293 PPC KVM_REG_PPC_TM_FPSCR 64
2294 PPC KVM_REG_PPC_TM_AMR 64
2295 PPC KVM_REG_PPC_TM_PPR 64
2296 PPC KVM_REG_PPC_TM_VRSAVE 64
2297 PPC KVM_REG_PPC_TM_VSCR 32
2298 PPC KVM_REG_PPC_TM_DSCR 64
2299 PPC KVM_REG_PPC_TM_TAR 64
2300 PPC KVM_REG_PPC_TM_XER 64
2301
2302 MIPS KVM_REG_MIPS_R0 64
2303 ...
2304 MIPS KVM_REG_MIPS_R31 64
2305 MIPS KVM_REG_MIPS_HI 64
2306 MIPS KVM_REG_MIPS_LO 64
2307 MIPS KVM_REG_MIPS_PC 64
2308 MIPS KVM_REG_MIPS_CP0_INDEX 32
2309 MIPS KVM_REG_MIPS_CP0_ENTRYLO0 64
2310 MIPS KVM_REG_MIPS_CP0_ENTRYLO1 64
2311 MIPS KVM_REG_MIPS_CP0_CONTEXT 64
2312 MIPS KVM_REG_MIPS_CP0_CONTEXTCONFIG 32
2313 MIPS KVM_REG_MIPS_CP0_USERLOCAL 64
2314 MIPS KVM_REG_MIPS_CP0_XCONTEXTCONFIG 64
2315 MIPS KVM_REG_MIPS_CP0_PAGEMASK 32
2316 MIPS KVM_REG_MIPS_CP0_PAGEGRAIN 32
2317 MIPS KVM_REG_MIPS_CP0_SEGCTL0 64
2318 MIPS KVM_REG_MIPS_CP0_SEGCTL1 64
2319 MIPS KVM_REG_MIPS_CP0_SEGCTL2 64
2320 MIPS KVM_REG_MIPS_CP0_PWBASE 64
2321 MIPS KVM_REG_MIPS_CP0_PWFIELD 64
2322 MIPS KVM_REG_MIPS_CP0_PWSIZE 64
2323 MIPS KVM_REG_MIPS_CP0_WIRED 32
2324 MIPS KVM_REG_MIPS_CP0_PWCTL 32
2325 MIPS KVM_REG_MIPS_CP0_HWRENA 32
2326 MIPS KVM_REG_MIPS_CP0_BADVADDR 64
2327 MIPS KVM_REG_MIPS_CP0_BADINSTR 32
2328 MIPS KVM_REG_MIPS_CP0_BADINSTRP 32
2329 MIPS KVM_REG_MIPS_CP0_COUNT 32
2330 MIPS KVM_REG_MIPS_CP0_ENTRYHI 64
2331 MIPS KVM_REG_MIPS_CP0_COMPARE 32
2332 MIPS KVM_REG_MIPS_CP0_STATUS 32
2333 MIPS KVM_REG_MIPS_CP0_INTCTL 32
2334 MIPS KVM_REG_MIPS_CP0_CAUSE 32
2335 MIPS KVM_REG_MIPS_CP0_EPC 64
2336 MIPS KVM_REG_MIPS_CP0_PRID 32
2337 MIPS KVM_REG_MIPS_CP0_EBASE 64
2338 MIPS KVM_REG_MIPS_CP0_CONFIG 32
2339 MIPS KVM_REG_MIPS_CP0_CONFIG1 32
2340 MIPS KVM_REG_MIPS_CP0_CONFIG2 32
2341 MIPS KVM_REG_MIPS_CP0_CONFIG3 32
2342 MIPS KVM_REG_MIPS_CP0_CONFIG4 32
2343 MIPS KVM_REG_MIPS_CP0_CONFIG5 32
2344 MIPS KVM_REG_MIPS_CP0_CONFIG7 32
2345 MIPS KVM_REG_MIPS_CP0_XCONTEXT 64
2346 MIPS KVM_REG_MIPS_CP0_ERROREPC 64
2347 MIPS KVM_REG_MIPS_CP0_KSCRATCH1 64
2348 MIPS KVM_REG_MIPS_CP0_KSCRATCH2 64
2349 MIPS KVM_REG_MIPS_CP0_KSCRATCH3 64
2350 MIPS KVM_REG_MIPS_CP0_KSCRATCH4 64
2351 MIPS KVM_REG_MIPS_CP0_KSCRATCH5 64
2352 MIPS KVM_REG_MIPS_CP0_KSCRATCH6 64
2353 MIPS KVM_REG_MIPS_CP0_MAAR(0..63) 64
2354 MIPS KVM_REG_MIPS_COUNT_CTL 64
2355 MIPS KVM_REG_MIPS_COUNT_RESUME 64
2356 MIPS KVM_REG_MIPS_COUNT_HZ 64
2357 MIPS KVM_REG_MIPS_FPR_32(0..31) 32
2358 MIPS KVM_REG_MIPS_FPR_64(0..31) 64
2359 MIPS KVM_REG_MIPS_VEC_128(0..31) 128
2360 MIPS KVM_REG_MIPS_FCR_IR 32
2361 MIPS KVM_REG_MIPS_FCR_CSR 32
2362 MIPS KVM_REG_MIPS_MSA_IR 32
2363 MIPS KVM_REG_MIPS_MSA_CSR 32
2364 ======= =============================== ============
Jan Kiszka414fa982012-04-24 16:40:15 +02002365
Christoffer Dall749cf76c2013-01-20 18:28:06 -05002366ARM registers are mapped using the lower 32 bits. The upper 16 of that
2367is the register group type, or coprocessor number:
2368
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002369ARM core registers have the following id bit patterns::
2370
Christoffer Dallaa404dd2013-04-22 18:57:46 -07002371 0x4020 0000 0010 <index into the kvm_regs struct:16>
Christoffer Dall749cf76c2013-01-20 18:28:06 -05002372
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002373ARM 32-bit CP15 registers have the following id bit patterns::
2374
Christoffer Dallaa404dd2013-04-22 18:57:46 -07002375 0x4020 0000 000F <zero:1> <crn:4> <crm:4> <opc1:4> <opc2:3>
Christoffer Dall11382452013-01-20 18:28:10 -05002376
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002377ARM 64-bit CP15 registers have the following id bit patterns::
2378
Christoffer Dallaa404dd2013-04-22 18:57:46 -07002379 0x4030 0000 000F <zero:1> <zero:4> <crm:4> <opc1:4> <zero:3>
Christoffer Dall749cf76c2013-01-20 18:28:06 -05002380
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002381ARM CCSIDR registers are demultiplexed by CSSELR value::
2382
Christoffer Dallaa404dd2013-04-22 18:57:46 -07002383 0x4020 0000 0011 00 <csselr:8>
Christoffer Dall749cf76c2013-01-20 18:28:06 -05002384
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002385ARM 32-bit VFP control registers have the following id bit patterns::
2386
Christoffer Dallaa404dd2013-04-22 18:57:46 -07002387 0x4020 0000 0012 1 <regno:12>
Rusty Russell4fe21e42013-01-20 18:28:11 -05002388
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002389ARM 64-bit FP registers have the following id bit patterns::
2390
Christoffer Dallaa404dd2013-04-22 18:57:46 -07002391 0x4030 0000 0012 0 <regno:12>
Rusty Russell4fe21e42013-01-20 18:28:11 -05002392
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002393ARM firmware pseudo-registers have the following bit pattern::
2394
Marc Zyngier85bd0ba2018-01-21 16:42:56 +00002395 0x4030 0000 0014 <regno:16>
2396
Marc Zyngier379e04c72013-04-02 17:46:31 +01002397
2398arm64 registers are mapped using the lower 32 bits. The upper 16 of
2399that is the register group type, or coprocessor number:
2400
2401arm64 core/FP-SIMD registers have the following id bit patterns. Note
2402that the size of the access is variable, as the kvm_regs structure
2403contains elements ranging from 32 to 128 bits. The index is a 32bit
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002404value in the kvm_regs structure seen as a 32bit array::
2405
Marc Zyngier379e04c72013-04-02 17:46:31 +01002406 0x60x0 0000 0010 <index into the kvm_regs struct:16>
2407
Dave Martinfd3bc912018-09-28 14:39:26 +01002408Specifically:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002409
2410======================= ========= ===== =======================================
Dave Martinfd3bc912018-09-28 14:39:26 +01002411 Encoding Register Bits kvm_regs member
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002412======================= ========= ===== =======================================
Dave Martinfd3bc912018-09-28 14:39:26 +01002413 0x6030 0000 0010 0000 X0 64 regs.regs[0]
2414 0x6030 0000 0010 0002 X1 64 regs.regs[1]
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002415 ...
Dave Martinfd3bc912018-09-28 14:39:26 +01002416 0x6030 0000 0010 003c X30 64 regs.regs[30]
2417 0x6030 0000 0010 003e SP 64 regs.sp
2418 0x6030 0000 0010 0040 PC 64 regs.pc
2419 0x6030 0000 0010 0042 PSTATE 64 regs.pstate
2420 0x6030 0000 0010 0044 SP_EL1 64 sp_el1
2421 0x6030 0000 0010 0046 ELR_EL1 64 elr_el1
2422 0x6030 0000 0010 0048 SPSR_EL1 64 spsr[KVM_SPSR_EL1] (alias SPSR_SVC)
2423 0x6030 0000 0010 004a SPSR_ABT 64 spsr[KVM_SPSR_ABT]
2424 0x6030 0000 0010 004c SPSR_UND 64 spsr[KVM_SPSR_UND]
2425 0x6030 0000 0010 004e SPSR_IRQ 64 spsr[KVM_SPSR_IRQ]
2426 0x6060 0000 0010 0050 SPSR_FIQ 64 spsr[KVM_SPSR_FIQ]
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002427 0x6040 0000 0010 0054 V0 128 fp_regs.vregs[0] [1]_
2428 0x6040 0000 0010 0058 V1 128 fp_regs.vregs[1] [1]_
2429 ...
2430 0x6040 0000 0010 00d0 V31 128 fp_regs.vregs[31] [1]_
Dave Martinfd3bc912018-09-28 14:39:26 +01002431 0x6020 0000 0010 00d4 FPSR 32 fp_regs.fpsr
2432 0x6020 0000 0010 00d5 FPCR 32 fp_regs.fpcr
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002433======================= ========= ===== =======================================
Dave Martinfd3bc912018-09-28 14:39:26 +01002434
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002435.. [1] These encodings are not accepted for SVE-enabled vcpus. See
2436 KVM_ARM_VCPU_INIT.
Dave Martin50036ad2018-09-28 14:39:27 +01002437
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002438 The equivalent register content can be accessed via bits [127:0] of
2439 the corresponding SVE Zn registers instead for vcpus that have SVE
2440 enabled (see below).
Dave Martin50036ad2018-09-28 14:39:27 +01002441
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002442arm64 CCSIDR registers are demultiplexed by CSSELR value::
2443
Marc Zyngier379e04c72013-04-02 17:46:31 +01002444 0x6020 0000 0011 00 <csselr:8>
2445
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002446arm64 system registers have the following id bit patterns::
2447
Marc Zyngier379e04c72013-04-02 17:46:31 +01002448 0x6030 0000 0013 <op0:2> <op1:3> <crn:4> <crm:4> <op2:3>
2449
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002450.. warning::
2451
Andrew Jones290a6bb2020-01-20 14:08:25 +01002452 Two system register IDs do not follow the specified pattern. These
2453 are KVM_REG_ARM_TIMER_CVAL and KVM_REG_ARM_TIMER_CNT, which map to
2454 system registers CNTV_CVAL_EL0 and CNTVCT_EL0 respectively. These
2455 two had their values accidentally swapped, which means TIMER_CVAL is
2456 derived from the register encoding for CNTVCT_EL0 and TIMER_CNT is
2457 derived from the register encoding for CNTV_CVAL_EL0. As this is
2458 API, it must remain this way.
2459
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002460arm64 firmware pseudo-registers have the following bit pattern::
2461
Marc Zyngier85bd0ba2018-01-21 16:42:56 +00002462 0x6030 0000 0014 <regno:16>
2463
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002464arm64 SVE registers have the following bit patterns::
2465
Dave Martin50036ad2018-09-28 14:39:27 +01002466 0x6080 0000 0015 00 <n:5> <slice:5> Zn bits[2048*slice + 2047 : 2048*slice]
2467 0x6050 0000 0015 04 <n:4> <slice:5> Pn bits[256*slice + 255 : 256*slice]
2468 0x6050 0000 0015 060 <slice:5> FFR bits[256*slice + 255 : 256*slice]
2469 0x6060 0000 0015 ffff KVM_REG_ARM64_SVE_VLS pseudo-register
2470
Dave Martin43b8e1f2019-04-12 13:25:38 +01002471Access to register IDs where 2048 * slice >= 128 * max_vq will fail with
2472ENOENT. max_vq is the vcpu's maximum supported vector length in 128-bit
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002473quadwords: see [2]_ below.
Dave Martin50036ad2018-09-28 14:39:27 +01002474
2475These registers are only accessible on vcpus for which SVE is enabled.
2476See KVM_ARM_VCPU_INIT for details.
2477
2478In addition, except for KVM_REG_ARM64_SVE_VLS, these registers are not
2479accessible until the vcpu's SVE configuration has been finalized
2480using KVM_ARM_VCPU_FINALIZE(KVM_ARM_VCPU_SVE). See KVM_ARM_VCPU_INIT
2481and KVM_ARM_VCPU_FINALIZE for more information about this procedure.
2482
2483KVM_REG_ARM64_SVE_VLS is a pseudo-register that allows the set of vector
2484lengths supported by the vcpu to be discovered and configured by
2485userspace. When transferred to or from user memory via KVM_GET_ONE_REG
Dave Martin4bd774e2019-04-11 17:09:59 +01002486or KVM_SET_ONE_REG, the value of this register is of type
2487__u64[KVM_ARM64_SVE_VLS_WORDS], and encodes the set of vector lengths as
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002488follows::
Dave Martin50036ad2018-09-28 14:39:27 +01002489
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002490 __u64 vector_lengths[KVM_ARM64_SVE_VLS_WORDS];
Dave Martin50036ad2018-09-28 14:39:27 +01002491
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002492 if (vq >= SVE_VQ_MIN && vq <= SVE_VQ_MAX &&
2493 ((vector_lengths[(vq - KVM_ARM64_SVE_VQ_MIN) / 64] >>
Dave Martin4bd774e2019-04-11 17:09:59 +01002494 ((vq - KVM_ARM64_SVE_VQ_MIN) % 64)) & 1))
Dave Martin50036ad2018-09-28 14:39:27 +01002495 /* Vector length vq * 16 bytes supported */
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002496 else
Dave Martin50036ad2018-09-28 14:39:27 +01002497 /* Vector length vq * 16 bytes not supported */
2498
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002499.. [2] The maximum value vq for which the above condition is true is
2500 max_vq. This is the maximum vector length available to the guest on
2501 this vcpu, and determines which register slices are visible through
2502 this ioctl interface.
Dave Martin50036ad2018-09-28 14:39:27 +01002503
Mauro Carvalho Chehabb693d0b2019-06-12 14:52:38 -03002504(See Documentation/arm64/sve.rst for an explanation of the "vq"
Dave Martin50036ad2018-09-28 14:39:27 +01002505nomenclature.)
2506
2507KVM_REG_ARM64_SVE_VLS is only accessible after KVM_ARM_VCPU_INIT.
2508KVM_ARM_VCPU_INIT initialises it to the best set of vector lengths that
2509the host supports.
2510
2511Userspace may subsequently modify it if desired until the vcpu's SVE
2512configuration is finalized using KVM_ARM_VCPU_FINALIZE(KVM_ARM_VCPU_SVE).
2513
2514Apart from simply removing all vector lengths from the host set that
2515exceed some value, support for arbitrarily chosen sets of vector lengths
2516is hardware-dependent and may not be available. Attempting to configure
2517an invalid set of vector lengths via KVM_SET_ONE_REG will fail with
2518EINVAL.
2519
2520After the vcpu's SVE configuration is finalized, further attempts to
2521write this register will fail with EPERM.
2522
James Hoganc2d2c212014-07-04 15:11:35 +01002523
2524MIPS registers are mapped using the lower 32 bits. The upper 16 of that is
2525the register group type:
2526
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002527MIPS core registers (see above) have the following id bit patterns::
2528
James Hoganc2d2c212014-07-04 15:11:35 +01002529 0x7030 0000 0000 <reg:16>
2530
2531MIPS CP0 registers (see KVM_REG_MIPS_CP0_* above) have the following id bit
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002532patterns depending on whether they're 32-bit or 64-bit registers::
2533
James Hoganc2d2c212014-07-04 15:11:35 +01002534 0x7020 0000 0001 00 <reg:5> <sel:3> (32-bit)
2535 0x7030 0000 0001 00 <reg:5> <sel:3> (64-bit)
2536
James Hogan013044c2016-12-07 17:16:37 +00002537Note: KVM_REG_MIPS_CP0_ENTRYLO0 and KVM_REG_MIPS_CP0_ENTRYLO1 are the MIPS64
2538versions of the EntryLo registers regardless of the word size of the host
2539hardware, host kernel, guest, and whether XPA is present in the guest, i.e.
2540with the RI and XI bits (if they exist) in bits 63 and 62 respectively, and
2541the PFNX field starting at bit 30.
2542
James Hogand42a0082017-03-14 10:15:38 +00002543MIPS MAARs (see KVM_REG_MIPS_CP0_MAAR(*) above) have the following id bit
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002544patterns::
2545
James Hogand42a0082017-03-14 10:15:38 +00002546 0x7030 0000 0001 01 <reg:8>
2547
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002548MIPS KVM control registers (see above) have the following id bit patterns::
2549
James Hoganc2d2c212014-07-04 15:11:35 +01002550 0x7030 0000 0002 <reg:16>
2551
James Hogan379245c2014-12-02 15:48:24 +00002552MIPS FPU registers (see KVM_REG_MIPS_FPR_{32,64}() above) have the following
2553id bit patterns depending on the size of the register being accessed. They are
2554always accessed according to the current guest FPU mode (Status.FR and
2555Config5.FRE), i.e. as the guest would see them, and they become unpredictable
James Hoganab86bd62014-12-02 15:48:24 +00002556if the guest FPU mode is changed. MIPS SIMD Architecture (MSA) vector
2557registers (see KVM_REG_MIPS_VEC_128() above) have similar patterns as they
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002558overlap the FPU registers::
2559
James Hogan379245c2014-12-02 15:48:24 +00002560 0x7020 0000 0003 00 <0:3> <reg:5> (32-bit FPU registers)
2561 0x7030 0000 0003 00 <0:3> <reg:5> (64-bit FPU registers)
James Hoganab86bd62014-12-02 15:48:24 +00002562 0x7040 0000 0003 00 <0:3> <reg:5> (128-bit MSA vector registers)
James Hogan379245c2014-12-02 15:48:24 +00002563
2564MIPS FPU control registers (see KVM_REG_MIPS_FCR_{IR,CSR} above) have the
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002565following id bit patterns::
2566
James Hogan379245c2014-12-02 15:48:24 +00002567 0x7020 0000 0003 01 <0:3> <reg:5>
2568
James Hoganab86bd62014-12-02 15:48:24 +00002569MIPS MSA control registers (see KVM_REG_MIPS_MSA_{IR,CSR} above) have the
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002570following id bit patterns::
2571
James Hoganab86bd62014-12-02 15:48:24 +00002572 0x7020 0000 0003 02 <0:3> <reg:5>
2573
James Hoganc2d2c212014-07-04 15:11:35 +01002574
Alexander Grafe24ed812011-09-14 10:02:41 +020025754.69 KVM_GET_ONE_REG
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002576--------------------
Alexander Grafe24ed812011-09-14 10:02:41 +02002577
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002578:Capability: KVM_CAP_ONE_REG
2579:Architectures: all
2580:Type: vcpu ioctl
2581:Parameters: struct kvm_one_reg (in and out)
2582:Returns: 0 on success, negative value on failure
2583
Dave Martinfe365b42019-04-12 12:59:47 +01002584Errors include:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002585
2586 ======== ============================================================
2587  ENOENT   no such register
Janosch Frank68cf7b12019-06-14 13:11:21 +02002588  EINVAL   invalid register ID, or no such register or used with VMs in
2589 protected virtualization mode on s390
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002590  EPERM    (arm64) register access not allowed before vcpu finalization
2591 ======== ============================================================
2592
Dave Martinfe365b42019-04-12 12:59:47 +01002593(These error codes are indicative only: do not rely on a specific error
2594code being returned in a specific situation.)
Alexander Grafe24ed812011-09-14 10:02:41 +02002595
2596This ioctl allows to receive the value of a single register implemented
2597in a vcpu. The register to read is indicated by the "id" field of the
2598kvm_one_reg struct passed in. On success, the register value can be found
2599at the memory location pointed to by "addr".
2600
2601The list of registers accessible using this interface is identical to the
Bharat Bhushan2e232702012-08-15 17:37:13 +00002602list in 4.68.
Alexander Grafe24ed812011-09-14 10:02:41 +02002603
Jan Kiszka414fa982012-04-24 16:40:15 +02002604
Eric B Munson1c0b28c2012-03-10 14:37:27 -050026054.70 KVM_KVMCLOCK_CTRL
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002606----------------------
Eric B Munson1c0b28c2012-03-10 14:37:27 -05002607
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002608:Capability: KVM_CAP_KVMCLOCK_CTRL
2609:Architectures: Any that implement pvclocks (currently x86 only)
2610:Type: vcpu ioctl
2611:Parameters: None
2612:Returns: 0 on success, -1 on error
Eric B Munson1c0b28c2012-03-10 14:37:27 -05002613
Joshua Abraham35c59992020-05-01 18:36:24 -04002614This ioctl sets a flag accessible to the guest indicating that the specified
2615vCPU has been paused by the host userspace.
2616
2617The host will set a flag in the pvclock structure that is checked from the
2618soft lockup watchdog. The flag is part of the pvclock structure that is
2619shared between guest and host, specifically the second bit of the flags
Eric B Munson1c0b28c2012-03-10 14:37:27 -05002620field of the pvclock_vcpu_time_info structure. It will be set exclusively by
2621the host and read/cleared exclusively by the guest. The guest operation of
Joshua Abraham35c59992020-05-01 18:36:24 -04002622checking and clearing the flag must be an atomic operation so
Eric B Munson1c0b28c2012-03-10 14:37:27 -05002623load-link/store-conditional, or equivalent must be used. There are two cases
2624where the guest will clear the flag: when the soft lockup watchdog timer resets
2625itself or when a soft lockup is detected. This ioctl can be called any time
2626after pausing the vcpu, but before it is resumed.
2627
Jan Kiszka414fa982012-04-24 16:40:15 +02002628
Jan Kiszka07975ad2012-03-29 21:14:12 +020026294.71 KVM_SIGNAL_MSI
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002630-------------------
Jan Kiszka07975ad2012-03-29 21:14:12 +02002631
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002632:Capability: KVM_CAP_SIGNAL_MSI
2633:Architectures: x86 arm arm64
2634:Type: vm ioctl
2635:Parameters: struct kvm_msi (in)
2636:Returns: >0 on delivery, 0 if guest blocked the MSI, and -1 on error
Jan Kiszka07975ad2012-03-29 21:14:12 +02002637
2638Directly inject a MSI message. Only valid with in-kernel irqchip that handles
2639MSI messages.
2640
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002641::
2642
2643 struct kvm_msi {
Jan Kiszka07975ad2012-03-29 21:14:12 +02002644 __u32 address_lo;
2645 __u32 address_hi;
2646 __u32 data;
2647 __u32 flags;
Andre Przywara2b8ddd92016-07-15 12:43:24 +01002648 __u32 devid;
2649 __u8 pad[12];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002650 };
Jan Kiszka07975ad2012-03-29 21:14:12 +02002651
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002652flags:
2653 KVM_MSI_VALID_DEVID: devid contains a valid value. The per-VM
Paolo Bonzini6f49b2f2016-08-04 13:59:56 +02002654 KVM_CAP_MSI_DEVID capability advertises the requirement to provide
2655 the device ID. If this capability is not available, userspace
2656 should never set the KVM_MSI_VALID_DEVID flag as the ioctl might fail.
Andre Przywara2b8ddd92016-07-15 12:43:24 +01002657
Paolo Bonzini6f49b2f2016-08-04 13:59:56 +02002658If KVM_MSI_VALID_DEVID is set, devid contains a unique device identifier
2659for the device that wrote the MSI message. For PCI, this is usually a
2660BFD identifier in the lower 16 bits.
Jan Kiszka07975ad2012-03-29 21:14:12 +02002661
Paolo Bonzini055b6ae2016-08-04 14:01:05 +02002662On x86, address_hi is ignored unless the KVM_X2APIC_API_USE_32BIT_IDS
2663feature of KVM_CAP_X2APIC_API capability is enabled. If it is enabled,
2664address_hi bits 31-8 provide bits 31-8 of the destination id. Bits 7-0 of
2665address_hi must be zero.
Radim Krčmář371313132016-07-12 22:09:27 +02002666
Jan Kiszka414fa982012-04-24 16:40:15 +02002667
Jan Kiszka0589ff62012-04-24 16:40:16 +020026684.71 KVM_CREATE_PIT2
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002669--------------------
Jan Kiszka0589ff62012-04-24 16:40:16 +02002670
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002671:Capability: KVM_CAP_PIT2
2672:Architectures: x86
2673:Type: vm ioctl
2674:Parameters: struct kvm_pit_config (in)
2675:Returns: 0 on success, -1 on error
Jan Kiszka0589ff62012-04-24 16:40:16 +02002676
2677Creates an in-kernel device model for the i8254 PIT. This call is only valid
2678after enabling in-kernel irqchip support via KVM_CREATE_IRQCHIP. The following
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002679parameters have to be passed::
Jan Kiszka0589ff62012-04-24 16:40:16 +02002680
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002681 struct kvm_pit_config {
Jan Kiszka0589ff62012-04-24 16:40:16 +02002682 __u32 flags;
2683 __u32 pad[15];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002684 };
Jan Kiszka0589ff62012-04-24 16:40:16 +02002685
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002686Valid flags are::
Jan Kiszka0589ff62012-04-24 16:40:16 +02002687
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002688 #define KVM_PIT_SPEAKER_DUMMY 1 /* emulate speaker port stub */
Jan Kiszka0589ff62012-04-24 16:40:16 +02002689
Jan Kiszkab6ddf052012-04-24 16:40:17 +02002690PIT timer interrupts may use a per-VM kernel thread for injection. If it
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002691exists, this thread will have a name of the following pattern::
Jan Kiszkab6ddf052012-04-24 16:40:17 +02002692
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002693 kvm-pit/<owner-process-pid>
Jan Kiszkab6ddf052012-04-24 16:40:17 +02002694
2695When running a guest with elevated priorities, the scheduling parameters of
2696this thread may have to be adjusted accordingly.
2697
Jan Kiszka0589ff62012-04-24 16:40:16 +02002698This IOCTL replaces the obsolete KVM_CREATE_PIT.
2699
2700
27014.72 KVM_GET_PIT2
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002702-----------------
Jan Kiszka0589ff62012-04-24 16:40:16 +02002703
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002704:Capability: KVM_CAP_PIT_STATE2
2705:Architectures: x86
2706:Type: vm ioctl
2707:Parameters: struct kvm_pit_state2 (out)
2708:Returns: 0 on success, -1 on error
Jan Kiszka0589ff62012-04-24 16:40:16 +02002709
2710Retrieves the state of the in-kernel PIT model. Only valid after
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002711KVM_CREATE_PIT2. The state is returned in the following structure::
Jan Kiszka0589ff62012-04-24 16:40:16 +02002712
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002713 struct kvm_pit_state2 {
Jan Kiszka0589ff62012-04-24 16:40:16 +02002714 struct kvm_pit_channel_state channels[3];
2715 __u32 flags;
2716 __u32 reserved[9];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002717 };
Jan Kiszka0589ff62012-04-24 16:40:16 +02002718
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002719Valid flags are::
Jan Kiszka0589ff62012-04-24 16:40:16 +02002720
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002721 /* disable PIT in HPET legacy mode */
2722 #define KVM_PIT_FLAGS_HPET_LEGACY 0x00000001
Jan Kiszka0589ff62012-04-24 16:40:16 +02002723
2724This IOCTL replaces the obsolete KVM_GET_PIT.
2725
2726
27274.73 KVM_SET_PIT2
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002728-----------------
Jan Kiszka0589ff62012-04-24 16:40:16 +02002729
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002730:Capability: KVM_CAP_PIT_STATE2
2731:Architectures: x86
2732:Type: vm ioctl
2733:Parameters: struct kvm_pit_state2 (in)
2734:Returns: 0 on success, -1 on error
Jan Kiszka0589ff62012-04-24 16:40:16 +02002735
2736Sets the state of the in-kernel PIT model. Only valid after KVM_CREATE_PIT2.
2737See KVM_GET_PIT2 for details on struct kvm_pit_state2.
2738
2739This IOCTL replaces the obsolete KVM_SET_PIT.
2740
2741
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +000027424.74 KVM_PPC_GET_SMMU_INFO
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002743--------------------------
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00002744
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002745:Capability: KVM_CAP_PPC_GET_SMMU_INFO
2746:Architectures: powerpc
2747:Type: vm ioctl
2748:Parameters: None
2749:Returns: 0 on success, -1 on error
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00002750
2751This populates and returns a structure describing the features of
2752the "Server" class MMU emulation supported by KVM.
Stefan Hubercc22c352013-06-05 12:24:37 +02002753This can in turn be used by userspace to generate the appropriate
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00002754device-tree properties for the guest operating system.
2755
Carlos Garciac98be0c2014-04-04 22:31:00 -04002756The structure contains some global information, followed by an
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002757array of supported segment page sizes::
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00002758
2759 struct kvm_ppc_smmu_info {
2760 __u64 flags;
2761 __u32 slb_size;
2762 __u32 pad;
2763 struct kvm_ppc_one_seg_page_size sps[KVM_PPC_PAGE_SIZES_MAX_SZ];
2764 };
2765
2766The supported flags are:
2767
2768 - KVM_PPC_PAGE_SIZES_REAL:
2769 When that flag is set, guest page sizes must "fit" the backing
2770 store page sizes. When not set, any page size in the list can
2771 be used regardless of how they are backed by userspace.
2772
2773 - KVM_PPC_1T_SEGMENTS
2774 The emulated MMU supports 1T segments in addition to the
2775 standard 256M ones.
2776
Paul Mackerras901f8c32018-10-08 14:24:30 +11002777 - KVM_PPC_NO_HASH
2778 This flag indicates that HPT guests are not supported by KVM,
2779 thus all guests must use radix MMU mode.
2780
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00002781The "slb_size" field indicates how many SLB entries are supported
2782
2783The "sps" array contains 8 entries indicating the supported base
2784page sizes for a segment in increasing order. Each entry is defined
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002785as follow::
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00002786
2787 struct kvm_ppc_one_seg_page_size {
2788 __u32 page_shift; /* Base page shift of segment (or 0) */
2789 __u32 slb_enc; /* SLB encoding for BookS */
2790 struct kvm_ppc_one_page_size enc[KVM_PPC_PAGE_SIZES_MAX_SZ];
2791 };
2792
2793An entry with a "page_shift" of 0 is unused. Because the array is
2794organized in increasing order, a lookup can stop when encoutering
2795such an entry.
2796
2797The "slb_enc" field provides the encoding to use in the SLB for the
2798page size. The bits are in positions such as the value can directly
2799be OR'ed into the "vsid" argument of the slbmte instruction.
2800
2801The "enc" array is a list which for each of those segment base page
2802size provides the list of supported actual page sizes (which can be
2803only larger or equal to the base page size), along with the
Anatol Pomozovf884ab12013-05-08 16:56:16 -07002804corresponding encoding in the hash PTE. Similarly, the array is
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +000028058 entries sorted by increasing sizes and an entry with a "0" shift
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002806is an empty entry and a terminator::
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00002807
2808 struct kvm_ppc_one_page_size {
2809 __u32 page_shift; /* Page shift (or 0) */
2810 __u32 pte_enc; /* Encoding in the HPTE (>>12) */
2811 };
2812
2813The "pte_enc" field provides a value that can OR'ed into the hash
2814PTE's RPN field (ie, it needs to be shifted left by 12 to OR it
2815into the hash PTE second double word).
2816
Alex Williamsonf36992e2012-06-29 09:56:16 -060028174.75 KVM_IRQFD
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002818--------------
Alex Williamsonf36992e2012-06-29 09:56:16 -06002819
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002820:Capability: KVM_CAP_IRQFD
2821:Architectures: x86 s390 arm arm64
2822:Type: vm ioctl
2823:Parameters: struct kvm_irqfd (in)
2824:Returns: 0 on success, -1 on error
Alex Williamsonf36992e2012-06-29 09:56:16 -06002825
2826Allows setting an eventfd to directly trigger a guest interrupt.
2827kvm_irqfd.fd specifies the file descriptor to use as the eventfd and
2828kvm_irqfd.gsi specifies the irqchip pin toggled by this event. When
Masanari Iida17180032013-12-22 01:21:23 +09002829an event is triggered on the eventfd, an interrupt is injected into
Alex Williamsonf36992e2012-06-29 09:56:16 -06002830the guest using the specified gsi pin. The irqfd is removed using
2831the KVM_IRQFD_FLAG_DEASSIGN flag, specifying both kvm_irqfd.fd
2832and kvm_irqfd.gsi.
2833
Alex Williamson7a844282012-09-21 11:58:03 -06002834With KVM_CAP_IRQFD_RESAMPLE, KVM_IRQFD supports a de-assert and notify
2835mechanism allowing emulation of level-triggered, irqfd-based
2836interrupts. When KVM_IRQFD_FLAG_RESAMPLE is set the user must pass an
2837additional eventfd in the kvm_irqfd.resamplefd field. When operating
2838in resample mode, posting of an interrupt through kvm_irq.fd asserts
2839the specified gsi in the irqchip. When the irqchip is resampled, such
Masanari Iida17180032013-12-22 01:21:23 +09002840as from an EOI, the gsi is de-asserted and the user is notified via
Alex Williamson7a844282012-09-21 11:58:03 -06002841kvm_irqfd.resamplefd. It is the user's responsibility to re-queue
2842the interrupt if the device making use of it still requires service.
2843Note that closing the resamplefd is not sufficient to disable the
2844irqfd. The KVM_IRQFD_FLAG_RESAMPLE is only necessary on assignment
2845and need not be specified with KVM_IRQFD_FLAG_DEASSIGN.
2846
Eric Auger180ae7b2016-07-22 16:20:41 +00002847On arm/arm64, gsi routing being supported, the following can happen:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002848
Eric Auger180ae7b2016-07-22 16:20:41 +00002849- in case no routing entry is associated to this gsi, injection fails
2850- in case the gsi is associated to an irqchip routing entry,
2851 irqchip.pin + 32 corresponds to the injected SPI ID.
Eric Auger995a0ee2016-07-22 16:20:42 +00002852- in case the gsi is associated to an MSI routing entry, the MSI
2853 message and device ID are translated into an LPI (support restricted
2854 to GICv3 ITS in-kernel emulation).
Eric Auger174178f2015-03-04 11:14:36 +01002855
Linus Torvalds5fecc9d2012-07-24 12:01:20 -070028564.76 KVM_PPC_ALLOCATE_HTAB
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002857--------------------------
Paul Mackerras32fad282012-05-04 02:32:53 +00002858
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002859:Capability: KVM_CAP_PPC_ALLOC_HTAB
2860:Architectures: powerpc
2861:Type: vm ioctl
2862:Parameters: Pointer to u32 containing hash table order (in/out)
2863:Returns: 0 on success, -1 on error
Paul Mackerras32fad282012-05-04 02:32:53 +00002864
2865This requests the host kernel to allocate an MMU hash table for a
2866guest using the PAPR paravirtualization interface. This only does
2867anything if the kernel is configured to use the Book 3S HV style of
2868virtualization. Otherwise the capability doesn't exist and the ioctl
2869returns an ENOTTY error. The rest of this description assumes Book 3S
2870HV.
2871
2872There must be no vcpus running when this ioctl is called; if there
2873are, it will do nothing and return an EBUSY error.
2874
2875The parameter is a pointer to a 32-bit unsigned integer variable
2876containing the order (log base 2) of the desired size of the hash
2877table, which must be between 18 and 46. On successful return from the
David Gibsonf98a8bf2016-12-20 16:49:03 +11002878ioctl, the value will not be changed by the kernel.
Paul Mackerras32fad282012-05-04 02:32:53 +00002879
2880If no hash table has been allocated when any vcpu is asked to run
2881(with the KVM_RUN ioctl), the host kernel will allocate a
2882default-sized hash table (16 MB).
2883
2884If this ioctl is called when a hash table has already been allocated,
David Gibsonf98a8bf2016-12-20 16:49:03 +11002885with a different order from the existing hash table, the existing hash
2886table will be freed and a new one allocated. If this is ioctl is
2887called when a hash table has already been allocated of the same order
2888as specified, the kernel will clear out the existing hash table (zero
2889all HPTEs). In either case, if the guest is using the virtualized
2890real-mode area (VRMA) facility, the kernel will re-create the VMRA
2891HPTEs on the next KVM_RUN of any vcpu.
Paul Mackerras32fad282012-05-04 02:32:53 +00002892
Cornelia Huck416ad652012-10-02 16:25:37 +020028934.77 KVM_S390_INTERRUPT
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002894-----------------------
Cornelia Huck416ad652012-10-02 16:25:37 +02002895
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002896:Capability: basic
2897:Architectures: s390
2898:Type: vm ioctl, vcpu ioctl
2899:Parameters: struct kvm_s390_interrupt (in)
2900:Returns: 0 on success, -1 on error
Cornelia Huck416ad652012-10-02 16:25:37 +02002901
2902Allows to inject an interrupt to the guest. Interrupts can be floating
2903(vm ioctl) or per cpu (vcpu ioctl), depending on the interrupt type.
2904
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002905Interrupt parameters are passed via kvm_s390_interrupt::
Cornelia Huck416ad652012-10-02 16:25:37 +02002906
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002907 struct kvm_s390_interrupt {
Cornelia Huck416ad652012-10-02 16:25:37 +02002908 __u32 type;
2909 __u32 parm;
2910 __u64 parm64;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002911 };
Cornelia Huck416ad652012-10-02 16:25:37 +02002912
2913type can be one of the following:
2914
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002915KVM_S390_SIGP_STOP (vcpu)
2916 - sigp stop; optional flags in parm
2917KVM_S390_PROGRAM_INT (vcpu)
2918 - program check; code in parm
2919KVM_S390_SIGP_SET_PREFIX (vcpu)
2920 - sigp set prefix; prefix address in parm
2921KVM_S390_RESTART (vcpu)
2922 - restart
2923KVM_S390_INT_CLOCK_COMP (vcpu)
2924 - clock comparator interrupt
2925KVM_S390_INT_CPU_TIMER (vcpu)
2926 - CPU timer interrupt
2927KVM_S390_INT_VIRTIO (vm)
2928 - virtio external interrupt; external interrupt
2929 parameters in parm and parm64
2930KVM_S390_INT_SERVICE (vm)
2931 - sclp external interrupt; sclp parameter in parm
2932KVM_S390_INT_EMERGENCY (vcpu)
2933 - sigp emergency; source cpu in parm
2934KVM_S390_INT_EXTERNAL_CALL (vcpu)
2935 - sigp external call; source cpu in parm
2936KVM_S390_INT_IO(ai,cssid,ssid,schid) (vm)
2937 - compound value to indicate an
2938 I/O interrupt (ai - adapter interrupt; cssid,ssid,schid - subchannel);
2939 I/O interruption parameters in parm (subchannel) and parm64 (intparm,
2940 interruption subclass)
2941KVM_S390_MCHK (vm, vcpu)
2942 - machine check interrupt; cr 14 bits in parm, machine check interrupt
2943 code in parm64 (note that machine checks needing further payload are not
2944 supported by this ioctl)
Cornelia Huck416ad652012-10-02 16:25:37 +02002945
Sean Christopherson5e124902019-02-15 12:48:38 -08002946This is an asynchronous vcpu ioctl and can be invoked from any thread.
Cornelia Huck416ad652012-10-02 16:25:37 +02002947
Paul Mackerrasa2932922012-11-19 22:57:20 +000029484.78 KVM_PPC_GET_HTAB_FD
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002949------------------------
Paul Mackerrasa2932922012-11-19 22:57:20 +00002950
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002951:Capability: KVM_CAP_PPC_HTAB_FD
2952:Architectures: powerpc
2953:Type: vm ioctl
2954:Parameters: Pointer to struct kvm_get_htab_fd (in)
2955:Returns: file descriptor number (>= 0) on success, -1 on error
Paul Mackerrasa2932922012-11-19 22:57:20 +00002956
2957This returns a file descriptor that can be used either to read out the
2958entries in the guest's hashed page table (HPT), or to write entries to
2959initialize the HPT. The returned fd can only be written to if the
2960KVM_GET_HTAB_WRITE bit is set in the flags field of the argument, and
2961can only be read if that bit is clear. The argument struct looks like
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002962this::
Paul Mackerrasa2932922012-11-19 22:57:20 +00002963
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002964 /* For KVM_PPC_GET_HTAB_FD */
2965 struct kvm_get_htab_fd {
Paul Mackerrasa2932922012-11-19 22:57:20 +00002966 __u64 flags;
2967 __u64 start_index;
2968 __u64 reserved[2];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002969 };
Paul Mackerrasa2932922012-11-19 22:57:20 +00002970
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002971 /* Values for kvm_get_htab_fd.flags */
2972 #define KVM_GET_HTAB_BOLTED_ONLY ((__u64)0x1)
2973 #define KVM_GET_HTAB_WRITE ((__u64)0x2)
Paul Mackerrasa2932922012-11-19 22:57:20 +00002974
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002975The 'start_index' field gives the index in the HPT of the entry at
Paul Mackerrasa2932922012-11-19 22:57:20 +00002976which to start reading. It is ignored when writing.
2977
2978Reads on the fd will initially supply information about all
2979"interesting" HPT entries. Interesting entries are those with the
2980bolted bit set, if the KVM_GET_HTAB_BOLTED_ONLY bit is set, otherwise
2981all entries. When the end of the HPT is reached, the read() will
2982return. If read() is called again on the fd, it will start again from
2983the beginning of the HPT, but will only return HPT entries that have
2984changed since they were last read.
2985
2986Data read or written is structured as a header (8 bytes) followed by a
2987series of valid HPT entries (16 bytes) each. The header indicates how
2988many valid HPT entries there are and how many invalid entries follow
2989the valid entries. The invalid entries are not represented explicitly
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002990in the stream. The header format is::
Paul Mackerrasa2932922012-11-19 22:57:20 +00002991
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002992 struct kvm_get_htab_header {
Paul Mackerrasa2932922012-11-19 22:57:20 +00002993 __u32 index;
2994 __u16 n_valid;
2995 __u16 n_invalid;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002996 };
Paul Mackerrasa2932922012-11-19 22:57:20 +00002997
2998Writes to the fd create HPT entries starting at the index given in the
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002999header; first 'n_valid' valid entries with contents from the data
3000written, then 'n_invalid' invalid entries, invalidating any previously
Paul Mackerrasa2932922012-11-19 22:57:20 +00003001valid entries found.
3002
Scott Wood852b6d52013-04-12 14:08:42 +000030034.79 KVM_CREATE_DEVICE
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003004----------------------
Scott Wood852b6d52013-04-12 14:08:42 +00003005
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003006:Capability: KVM_CAP_DEVICE_CTRL
3007:Type: vm ioctl
3008:Parameters: struct kvm_create_device (in/out)
3009:Returns: 0 on success, -1 on error
3010
Scott Wood852b6d52013-04-12 14:08:42 +00003011Errors:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003012
3013 ====== =======================================================
3014 ENODEV The device type is unknown or unsupported
3015 EEXIST Device already created, and this type of device may not
Scott Wood852b6d52013-04-12 14:08:42 +00003016 be instantiated multiple times
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003017 ====== =======================================================
Scott Wood852b6d52013-04-12 14:08:42 +00003018
3019 Other error conditions may be defined by individual device types or
3020 have their standard meanings.
3021
3022Creates an emulated device in the kernel. The file descriptor returned
3023in fd can be used with KVM_SET/GET/HAS_DEVICE_ATTR.
3024
3025If the KVM_CREATE_DEVICE_TEST flag is set, only test whether the
3026device type is supported (not necessarily whether it can be created
3027in the current vm).
3028
3029Individual devices should not define flags. Attributes should be used
3030for specifying any behavior that is not implied by the device type
3031number.
3032
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003033::
3034
3035 struct kvm_create_device {
Scott Wood852b6d52013-04-12 14:08:42 +00003036 __u32 type; /* in: KVM_DEV_TYPE_xxx */
3037 __u32 fd; /* out: device handle */
3038 __u32 flags; /* in: KVM_CREATE_DEVICE_xxx */
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003039 };
Scott Wood852b6d52013-04-12 14:08:42 +00003040
30414.80 KVM_SET_DEVICE_ATTR/KVM_GET_DEVICE_ATTR
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003042--------------------------------------------
Scott Wood852b6d52013-04-12 14:08:42 +00003043
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003044:Capability: KVM_CAP_DEVICE_CTRL, KVM_CAP_VM_ATTRIBUTES for vm device,
3045 KVM_CAP_VCPU_ATTRIBUTES for vcpu device
3046:Type: device ioctl, vm ioctl, vcpu ioctl
3047:Parameters: struct kvm_device_attr
3048:Returns: 0 on success, -1 on error
3049
Scott Wood852b6d52013-04-12 14:08:42 +00003050Errors:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003051
3052 ===== =============================================================
3053 ENXIO The group or attribute is unknown/unsupported for this device
David Hildenbrandf9cbd9b2016-03-03 09:48:47 +01003054 or hardware support is missing.
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003055 EPERM The attribute cannot (currently) be accessed this way
Scott Wood852b6d52013-04-12 14:08:42 +00003056 (e.g. read-only attribute, or attribute that only makes
3057 sense when the device is in a different state)
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003058 ===== =============================================================
Scott Wood852b6d52013-04-12 14:08:42 +00003059
3060 Other error conditions may be defined by individual device types.
3061
3062Gets/sets a specified piece of device configuration and/or state. The
3063semantics are device-specific. See individual device documentation in
3064the "devices" directory. As with ONE_REG, the size of the data
3065transferred is defined by the particular attribute.
3066
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003067::
3068
3069 struct kvm_device_attr {
Scott Wood852b6d52013-04-12 14:08:42 +00003070 __u32 flags; /* no flags currently defined */
3071 __u32 group; /* device-defined */
3072 __u64 attr; /* group-defined */
3073 __u64 addr; /* userspace address of attr data */
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003074 };
Scott Wood852b6d52013-04-12 14:08:42 +00003075
30764.81 KVM_HAS_DEVICE_ATTR
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003077------------------------
Scott Wood852b6d52013-04-12 14:08:42 +00003078
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003079:Capability: KVM_CAP_DEVICE_CTRL, KVM_CAP_VM_ATTRIBUTES for vm device,
3080 KVM_CAP_VCPU_ATTRIBUTES for vcpu device
3081:Type: device ioctl, vm ioctl, vcpu ioctl
3082:Parameters: struct kvm_device_attr
3083:Returns: 0 on success, -1 on error
3084
Scott Wood852b6d52013-04-12 14:08:42 +00003085Errors:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003086
3087 ===== =============================================================
3088 ENXIO The group or attribute is unknown/unsupported for this device
David Hildenbrandf9cbd9b2016-03-03 09:48:47 +01003089 or hardware support is missing.
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003090 ===== =============================================================
Scott Wood852b6d52013-04-12 14:08:42 +00003091
3092Tests whether a device supports a particular attribute. A successful
3093return indicates the attribute is implemented. It does not necessarily
3094indicate that the attribute can be read or written in the device's
3095current state. "addr" is ignored.
Alex Williamsonf36992e2012-06-29 09:56:16 -06003096
Alexey Kardashevskiyd8968f12013-06-19 11:42:07 +100030974.82 KVM_ARM_VCPU_INIT
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003098----------------------
Christoffer Dall749cf76c2013-01-20 18:28:06 -05003099
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003100:Capability: basic
3101:Architectures: arm, arm64
3102:Type: vcpu ioctl
3103:Parameters: struct kvm_vcpu_init (in)
3104:Returns: 0 on success; -1 on error
3105
Christoffer Dall749cf76c2013-01-20 18:28:06 -05003106Errors:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003107
3108 ====== =================================================================
3109  EINVAL    the target is unknown, or the combination of features is invalid.
3110  ENOENT    a features bit specified is unknown.
3111 ====== =================================================================
Christoffer Dall749cf76c2013-01-20 18:28:06 -05003112
3113This tells KVM what type of CPU to present to the guest, and what
3114optional features it should have.  This will cause a reset of the cpu
3115registers to their initial values.  If this is not called, KVM_RUN will
3116return ENOEXEC for that vcpu.
3117
3118Note that because some registers reflect machine topology, all vcpus
3119should be created before this ioctl is invoked.
3120
Christoffer Dallf7fa034d2014-10-16 16:40:53 +02003121Userspace can call this function multiple times for a given vcpu, including
3122after the vcpu has been run. This will reset the vcpu to its initial
3123state. All calls to this function after the initial call must use the same
3124target and same set of feature flags, otherwise EINVAL will be returned.
3125
Marc Zyngieraa024c22013-01-20 18:28:13 -05003126Possible features:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003127
Marc Zyngieraa024c22013-01-20 18:28:13 -05003128 - KVM_ARM_VCPU_POWER_OFF: Starts the CPU in a power-off state.
Christoffer Dall3ad8b3d2014-10-16 16:14:43 +02003129 Depends on KVM_CAP_ARM_PSCI. If not set, the CPU will be powered on
3130 and execute guest code when KVM_RUN is called.
Marc Zyngier379e04c72013-04-02 17:46:31 +01003131 - KVM_ARM_VCPU_EL1_32BIT: Starts the CPU in a 32bit mode.
3132 Depends on KVM_CAP_ARM_EL1_32BIT (arm64 only).
Marc Zyngier85bd0ba2018-01-21 16:42:56 +00003133 - KVM_ARM_VCPU_PSCI_0_2: Emulate PSCI v0.2 (or a future revision
3134 backward compatible with v0.2) for the CPU.
Anup Patel50bb0c92014-04-29 11:24:17 +05303135 Depends on KVM_CAP_ARM_PSCI_0_2.
Shannon Zhao808e7382016-01-11 22:46:15 +08003136 - KVM_ARM_VCPU_PMU_V3: Emulate PMUv3 for the CPU.
3137 Depends on KVM_CAP_ARM_PMU_V3.
Marc Zyngieraa024c22013-01-20 18:28:13 -05003138
Amit Daniel Kachhapa22fa322019-04-23 10:12:36 +05303139 - KVM_ARM_VCPU_PTRAUTH_ADDRESS: Enables Address Pointer authentication
3140 for arm64 only.
Amit Daniel Kachhapa243c162019-04-23 10:12:37 +05303141 Depends on KVM_CAP_ARM_PTRAUTH_ADDRESS.
3142 If KVM_CAP_ARM_PTRAUTH_ADDRESS and KVM_CAP_ARM_PTRAUTH_GENERIC are
3143 both present, then both KVM_ARM_VCPU_PTRAUTH_ADDRESS and
3144 KVM_ARM_VCPU_PTRAUTH_GENERIC must be requested or neither must be
3145 requested.
Amit Daniel Kachhapa22fa322019-04-23 10:12:36 +05303146
3147 - KVM_ARM_VCPU_PTRAUTH_GENERIC: Enables Generic Pointer authentication
3148 for arm64 only.
Amit Daniel Kachhapa243c162019-04-23 10:12:37 +05303149 Depends on KVM_CAP_ARM_PTRAUTH_GENERIC.
3150 If KVM_CAP_ARM_PTRAUTH_ADDRESS and KVM_CAP_ARM_PTRAUTH_GENERIC are
3151 both present, then both KVM_ARM_VCPU_PTRAUTH_ADDRESS and
3152 KVM_ARM_VCPU_PTRAUTH_GENERIC must be requested or neither must be
3153 requested.
Amit Daniel Kachhapa22fa322019-04-23 10:12:36 +05303154
Dave Martin50036ad2018-09-28 14:39:27 +01003155 - KVM_ARM_VCPU_SVE: Enables SVE for the CPU (arm64 only).
3156 Depends on KVM_CAP_ARM_SVE.
3157 Requires KVM_ARM_VCPU_FINALIZE(KVM_ARM_VCPU_SVE):
3158
3159 * After KVM_ARM_VCPU_INIT:
3160
3161 - KVM_REG_ARM64_SVE_VLS may be read using KVM_GET_ONE_REG: the
3162 initial value of this pseudo-register indicates the best set of
3163 vector lengths possible for a vcpu on this host.
3164
3165 * Before KVM_ARM_VCPU_FINALIZE(KVM_ARM_VCPU_SVE):
3166
3167 - KVM_RUN and KVM_GET_REG_LIST are not available;
3168
3169 - KVM_GET_ONE_REG and KVM_SET_ONE_REG cannot be used to access
3170 the scalable archietctural SVE registers
3171 KVM_REG_ARM64_SVE_ZREG(), KVM_REG_ARM64_SVE_PREG() or
3172 KVM_REG_ARM64_SVE_FFR;
3173
3174 - KVM_REG_ARM64_SVE_VLS may optionally be written using
3175 KVM_SET_ONE_REG, to modify the set of vector lengths available
3176 for the vcpu.
3177
3178 * After KVM_ARM_VCPU_FINALIZE(KVM_ARM_VCPU_SVE):
3179
3180 - the KVM_REG_ARM64_SVE_VLS pseudo-register is immutable, and can
3181 no longer be written using KVM_SET_ONE_REG.
Christoffer Dall749cf76c2013-01-20 18:28:06 -05003182
Anup Patel740edfc2013-09-30 14:20:08 +053031834.83 KVM_ARM_PREFERRED_TARGET
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003184-----------------------------
Anup Patel740edfc2013-09-30 14:20:08 +05303185
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003186:Capability: basic
3187:Architectures: arm, arm64
3188:Type: vm ioctl
Randy Dunlapa84b7572020-07-07 11:04:14 -07003189:Parameters: struct kvm_vcpu_init (out)
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003190:Returns: 0 on success; -1 on error
3191
Anup Patel740edfc2013-09-30 14:20:08 +05303192Errors:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003193
3194 ====== ==========================================
3195 ENODEV no preferred target available for the host
3196 ====== ==========================================
Anup Patel740edfc2013-09-30 14:20:08 +05303197
3198This queries KVM for preferred CPU target type which can be emulated
3199by KVM on underlying host.
3200
3201The ioctl returns struct kvm_vcpu_init instance containing information
3202about preferred CPU target type and recommended features for it. The
3203kvm_vcpu_init->features bitmap returned will have feature bits set if
3204the preferred target recommends setting these features, but this is
3205not mandatory.
3206
3207The information returned by this ioctl can be used to prepare an instance
3208of struct kvm_vcpu_init for KVM_ARM_VCPU_INIT ioctl which will result in
Randy Dunlap3747c5d2020-07-03 14:29:06 -07003209VCPU matching underlying host.
Anup Patel740edfc2013-09-30 14:20:08 +05303210
3211
32124.84 KVM_GET_REG_LIST
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003213---------------------
Christoffer Dall749cf76c2013-01-20 18:28:06 -05003214
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003215:Capability: basic
3216:Architectures: arm, arm64, mips
3217:Type: vcpu ioctl
3218:Parameters: struct kvm_reg_list (in/out)
3219:Returns: 0 on success; -1 on error
3220
Christoffer Dall749cf76c2013-01-20 18:28:06 -05003221Errors:
Christoffer Dall749cf76c2013-01-20 18:28:06 -05003222
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003223 ===== ==============================================================
3224  E2BIG     the reg index list is too big to fit in the array specified by
3225             the user (the number required will be written into n).
3226 ===== ==============================================================
3227
3228::
3229
3230 struct kvm_reg_list {
Christoffer Dall749cf76c2013-01-20 18:28:06 -05003231 __u64 n; /* number of registers in reg[] */
3232 __u64 reg[0];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003233 };
Christoffer Dall749cf76c2013-01-20 18:28:06 -05003234
3235This ioctl returns the guest registers that are supported for the
3236KVM_GET_ONE_REG/KVM_SET_ONE_REG calls.
3237
Christoffer Dallce01e4e2013-09-23 14:55:56 -07003238
32394.85 KVM_ARM_SET_DEVICE_ADDR (deprecated)
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003240-----------------------------------------
Christoffer Dall3401d5462013-01-23 13:18:04 -05003241
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003242:Capability: KVM_CAP_ARM_SET_DEVICE_ADDR
3243:Architectures: arm, arm64
3244:Type: vm ioctl
3245:Parameters: struct kvm_arm_device_address (in)
3246:Returns: 0 on success, -1 on error
3247
Christoffer Dall3401d5462013-01-23 13:18:04 -05003248Errors:
Christoffer Dall3401d5462013-01-23 13:18:04 -05003249
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003250 ====== ============================================
3251 ENODEV The device id is unknown
3252 ENXIO Device not supported on current system
3253 EEXIST Address already set
3254 E2BIG Address outside guest physical address space
3255 EBUSY Address overlaps with other device range
3256 ====== ============================================
3257
3258::
3259
3260 struct kvm_arm_device_addr {
Christoffer Dall3401d5462013-01-23 13:18:04 -05003261 __u64 id;
3262 __u64 addr;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003263 };
Christoffer Dall3401d5462013-01-23 13:18:04 -05003264
3265Specify a device address in the guest's physical address space where guests
3266can access emulated or directly exposed devices, which the host kernel needs
3267to know about. The id field is an architecture specific identifier for a
3268specific device.
3269
Marc Zyngier379e04c72013-04-02 17:46:31 +01003270ARM/arm64 divides the id field into two parts, a device id and an
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003271address type id specific to the individual device::
Christoffer Dall3401d5462013-01-23 13:18:04 -05003272
3273  bits: | 63 ... 32 | 31 ... 16 | 15 ... 0 |
3274 field: | 0x00000000 | device id | addr type id |
3275
Marc Zyngier379e04c72013-04-02 17:46:31 +01003276ARM/arm64 currently only require this when using the in-kernel GIC
3277support for the hardware VGIC features, using KVM_ARM_DEVICE_VGIC_V2
3278as the device id. When setting the base address for the guest's
3279mapping of the VGIC virtual CPU and distributor interface, the ioctl
3280must be called after calling KVM_CREATE_IRQCHIP, but before calling
3281KVM_RUN on any of the VCPUs. Calling this ioctl twice for any of the
3282base addresses will return -EEXIST.
Christoffer Dall3401d5462013-01-23 13:18:04 -05003283
Christoffer Dallce01e4e2013-09-23 14:55:56 -07003284Note, this IOCTL is deprecated and the more flexible SET/GET_DEVICE_ATTR API
3285should be used instead.
3286
3287
Anup Patel740edfc2013-09-30 14:20:08 +053032884.86 KVM_PPC_RTAS_DEFINE_TOKEN
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003289------------------------------
Michael Ellerman8e591cb2013-04-17 20:30:00 +00003290
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003291:Capability: KVM_CAP_PPC_RTAS
3292:Architectures: ppc
3293:Type: vm ioctl
3294:Parameters: struct kvm_rtas_token_args
3295:Returns: 0 on success, -1 on error
Michael Ellerman8e591cb2013-04-17 20:30:00 +00003296
3297Defines a token value for a RTAS (Run Time Abstraction Services)
3298service in order to allow it to be handled in the kernel. The
3299argument struct gives the name of the service, which must be the name
3300of a service that has a kernel-side implementation. If the token
3301value is non-zero, it will be associated with that service, and
3302subsequent RTAS calls by the guest specifying that token will be
3303handled by the kernel. If the token value is 0, then any token
3304associated with the service will be forgotten, and subsequent RTAS
3305calls by the guest for that service will be passed to userspace to be
3306handled.
3307
Alex Bennée4bd9d342014-09-09 17:27:18 +010033084.87 KVM_SET_GUEST_DEBUG
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003309------------------------
Alex Bennée4bd9d342014-09-09 17:27:18 +01003310
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003311:Capability: KVM_CAP_SET_GUEST_DEBUG
3312:Architectures: x86, s390, ppc, arm64
3313:Type: vcpu ioctl
3314:Parameters: struct kvm_guest_debug (in)
3315:Returns: 0 on success; -1 on error
Alex Bennée4bd9d342014-09-09 17:27:18 +01003316
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003317::
3318
3319 struct kvm_guest_debug {
Alex Bennée4bd9d342014-09-09 17:27:18 +01003320 __u32 control;
3321 __u32 pad;
3322 struct kvm_guest_debug_arch arch;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003323 };
Alex Bennée4bd9d342014-09-09 17:27:18 +01003324
3325Set up the processor specific debug registers and configure vcpu for
3326handling guest debug events. There are two parts to the structure, the
3327first a control bitfield indicates the type of debug events to handle
3328when running. Common control bits are:
3329
3330 - KVM_GUESTDBG_ENABLE: guest debugging is enabled
3331 - KVM_GUESTDBG_SINGLESTEP: the next run should single-step
3332
3333The top 16 bits of the control field are architecture specific control
3334flags which can include the following:
3335
Alex Bennée4bd611c2015-07-07 17:29:57 +01003336 - KVM_GUESTDBG_USE_SW_BP: using software breakpoints [x86, arm64]
Alex Bennée834bf882015-07-07 17:30:02 +01003337 - KVM_GUESTDBG_USE_HW_BP: using hardware breakpoints [x86, s390, arm64]
Alex Bennée4bd9d342014-09-09 17:27:18 +01003338 - KVM_GUESTDBG_INJECT_DB: inject DB type exception [x86]
3339 - KVM_GUESTDBG_INJECT_BP: inject BP type exception [x86]
3340 - KVM_GUESTDBG_EXIT_PENDING: trigger an immediate guest exit [s390]
3341
3342For example KVM_GUESTDBG_USE_SW_BP indicates that software breakpoints
3343are enabled in memory so we need to ensure breakpoint exceptions are
3344correctly trapped and the KVM run loop exits at the breakpoint and not
3345running off into the normal guest vector. For KVM_GUESTDBG_USE_HW_BP
3346we need to ensure the guest vCPUs architecture specific registers are
3347updated to the correct (supplied) values.
3348
3349The second part of the structure is architecture specific and
3350typically contains a set of debug registers.
3351
Alex Bennée834bf882015-07-07 17:30:02 +01003352For arm64 the number of debug registers is implementation defined and
3353can be determined by querying the KVM_CAP_GUEST_DEBUG_HW_BPS and
3354KVM_CAP_GUEST_DEBUG_HW_WPS capabilities which return a positive number
3355indicating the number of supported registers.
3356
Fabiano Rosas1a9167a2019-06-19 13:01:27 -03003357For ppc, the KVM_CAP_PPC_GUEST_DEBUG_SSTEP capability indicates whether
3358the single-step debug event (KVM_GUESTDBG_SINGLESTEP) is supported.
3359
Paolo Bonzini8b13c362021-04-06 10:24:07 -04003360Also when supported, KVM_CAP_SET_GUEST_DEBUG2 capability indicates the
3361supported KVM_GUESTDBG_* bits in the control field.
3362
Alex Bennée4bd9d342014-09-09 17:27:18 +01003363When debug events exit the main run loop with the reason
3364KVM_EXIT_DEBUG with the kvm_debug_exit_arch part of the kvm_run
3365structure containing architecture specific debug information.
Christoffer Dall3401d5462013-01-23 13:18:04 -05003366
Alex Bennée209cf192014-09-09 17:27:19 +010033674.88 KVM_GET_EMULATED_CPUID
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003368---------------------------
Alex Bennée209cf192014-09-09 17:27:19 +01003369
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003370:Capability: KVM_CAP_EXT_EMUL_CPUID
3371:Architectures: x86
3372:Type: system ioctl
3373:Parameters: struct kvm_cpuid2 (in/out)
3374:Returns: 0 on success, -1 on error
Alex Bennée209cf192014-09-09 17:27:19 +01003375
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003376::
3377
3378 struct kvm_cpuid2 {
Alex Bennée209cf192014-09-09 17:27:19 +01003379 __u32 nent;
3380 __u32 flags;
3381 struct kvm_cpuid_entry2 entries[0];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003382 };
Alex Bennée209cf192014-09-09 17:27:19 +01003383
3384The member 'flags' is used for passing flags from userspace.
3385
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003386::
Alex Bennée209cf192014-09-09 17:27:19 +01003387
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003388 #define KVM_CPUID_FLAG_SIGNIFCANT_INDEX BIT(0)
Sean Christopherson7ff6c032020-03-02 15:56:51 -08003389 #define KVM_CPUID_FLAG_STATEFUL_FUNC BIT(1) /* deprecated */
3390 #define KVM_CPUID_FLAG_STATE_READ_NEXT BIT(2) /* deprecated */
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003391
3392 struct kvm_cpuid_entry2 {
Alex Bennée209cf192014-09-09 17:27:19 +01003393 __u32 function;
3394 __u32 index;
3395 __u32 flags;
3396 __u32 eax;
3397 __u32 ebx;
3398 __u32 ecx;
3399 __u32 edx;
3400 __u32 padding[3];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003401 };
Alex Bennée209cf192014-09-09 17:27:19 +01003402
3403This ioctl returns x86 cpuid features which are emulated by
3404kvm.Userspace can use the information returned by this ioctl to query
3405which features are emulated by kvm instead of being present natively.
3406
3407Userspace invokes KVM_GET_EMULATED_CPUID by passing a kvm_cpuid2
3408structure with the 'nent' field indicating the number of entries in
3409the variable-size array 'entries'. If the number of entries is too low
3410to describe the cpu capabilities, an error (E2BIG) is returned. If the
3411number is too high, the 'nent' field is adjusted and an error (ENOMEM)
3412is returned. If the number is just right, the 'nent' field is adjusted
3413to the number of valid entries in the 'entries' array, which is then
3414filled.
3415
3416The entries returned are the set CPUID bits of the respective features
3417which kvm emulates, as returned by the CPUID instruction, with unknown
3418or unsupported feature bits cleared.
3419
3420Features like x2apic, for example, may not be present in the host cpu
3421but are exposed by kvm in KVM_GET_SUPPORTED_CPUID because they can be
3422emulated efficiently and thus not included here.
3423
3424The fields in each entry are defined as follows:
3425
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003426 function:
3427 the eax value used to obtain the entry
3428 index:
3429 the ecx value used to obtain the entry (for entries that are
Alex Bennée209cf192014-09-09 17:27:19 +01003430 affected by ecx)
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003431 flags:
3432 an OR of zero or more of the following:
3433
Alex Bennée209cf192014-09-09 17:27:19 +01003434 KVM_CPUID_FLAG_SIGNIFCANT_INDEX:
3435 if the index field is valid
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003436
3437 eax, ebx, ecx, edx:
3438
3439 the values returned by the cpuid instruction for
Alex Bennée209cf192014-09-09 17:27:19 +01003440 this function/index combination
3441
Thomas Huth41408c282015-02-06 15:01:21 +010034424.89 KVM_S390_MEM_OP
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003443--------------------
Thomas Huth41408c282015-02-06 15:01:21 +01003444
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003445:Capability: KVM_CAP_S390_MEM_OP
3446:Architectures: s390
3447:Type: vcpu ioctl
3448:Parameters: struct kvm_s390_mem_op (in)
3449:Returns: = 0 on success,
3450 < 0 on generic error (e.g. -EFAULT or -ENOMEM),
3451 > 0 if an exception occurred while walking the page tables
Thomas Huth41408c282015-02-06 15:01:21 +01003452
Masanari Iida5d4f6f32015-10-04 00:46:21 +09003453Read or write data from/to the logical (virtual) memory of a VCPU.
Thomas Huth41408c282015-02-06 15:01:21 +01003454
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003455Parameters are specified via the following structure::
Thomas Huth41408c282015-02-06 15:01:21 +01003456
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003457 struct kvm_s390_mem_op {
Thomas Huth41408c282015-02-06 15:01:21 +01003458 __u64 gaddr; /* the guest address */
3459 __u64 flags; /* flags */
3460 __u32 size; /* amount of bytes */
3461 __u32 op; /* type of operation */
3462 __u64 buf; /* buffer in userspace */
3463 __u8 ar; /* the access register number */
3464 __u8 reserved[31]; /* should be set to 0 */
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003465 };
Thomas Huth41408c282015-02-06 15:01:21 +01003466
3467The type of operation is specified in the "op" field. It is either
3468KVM_S390_MEMOP_LOGICAL_READ for reading from logical memory space or
3469KVM_S390_MEMOP_LOGICAL_WRITE for writing to logical memory space. The
3470KVM_S390_MEMOP_F_CHECK_ONLY flag can be set in the "flags" field to check
3471whether the corresponding memory access would create an access exception
3472(without touching the data in the memory at the destination). In case an
3473access exception occurred while walking the MMU tables of the guest, the
3474ioctl returns a positive error number to indicate the type of exception.
3475This exception is also raised directly at the corresponding VCPU if the
3476flag KVM_S390_MEMOP_F_INJECT_EXCEPTION is set in the "flags" field.
3477
3478The start address of the memory region has to be specified in the "gaddr"
Cornelia Huckb4d863c2019-08-29 14:47:46 +02003479field, and the length of the region in the "size" field (which must not
3480be 0). The maximum value for "size" can be obtained by checking the
3481KVM_CAP_S390_MEM_OP capability. "buf" is the buffer supplied by the
3482userspace application where the read data should be written to for
3483KVM_S390_MEMOP_LOGICAL_READ, or where the data that should be written is
3484stored for a KVM_S390_MEMOP_LOGICAL_WRITE. When KVM_S390_MEMOP_F_CHECK_ONLY
3485is specified, "buf" is unused and can be NULL. "ar" designates the access
3486register number to be used; the valid range is 0..15.
Thomas Huth41408c282015-02-06 15:01:21 +01003487
3488The "reserved" field is meant for future extensions. It is not used by
3489KVM with the currently defined set of flags.
3490
Jason J. Herne30ee2a92014-09-23 09:23:01 -040034914.90 KVM_S390_GET_SKEYS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003492-----------------------
Jason J. Herne30ee2a92014-09-23 09:23:01 -04003493
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003494:Capability: KVM_CAP_S390_SKEYS
3495:Architectures: s390
3496:Type: vm ioctl
3497:Parameters: struct kvm_s390_skeys
3498:Returns: 0 on success, KVM_S390_GET_KEYS_NONE if guest is not using storage
3499 keys, negative value on error
Jason J. Herne30ee2a92014-09-23 09:23:01 -04003500
3501This ioctl is used to get guest storage key values on the s390
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003502architecture. The ioctl takes parameters via the kvm_s390_skeys struct::
Jason J. Herne30ee2a92014-09-23 09:23:01 -04003503
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003504 struct kvm_s390_skeys {
Jason J. Herne30ee2a92014-09-23 09:23:01 -04003505 __u64 start_gfn;
3506 __u64 count;
3507 __u64 skeydata_addr;
3508 __u32 flags;
3509 __u32 reserved[9];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003510 };
Jason J. Herne30ee2a92014-09-23 09:23:01 -04003511
3512The start_gfn field is the number of the first guest frame whose storage keys
3513you want to get.
3514
3515The count field is the number of consecutive frames (starting from start_gfn)
3516whose storage keys to get. The count field must be at least 1 and the maximum
3517allowed value is defined as KVM_S390_SKEYS_ALLOC_MAX. Values outside this range
3518will cause the ioctl to return -EINVAL.
3519
3520The skeydata_addr field is the address to a buffer large enough to hold count
3521bytes. This buffer will be filled with storage key data by the ioctl.
3522
35234.91 KVM_S390_SET_SKEYS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003524-----------------------
Jason J. Herne30ee2a92014-09-23 09:23:01 -04003525
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003526:Capability: KVM_CAP_S390_SKEYS
3527:Architectures: s390
3528:Type: vm ioctl
3529:Parameters: struct kvm_s390_skeys
3530:Returns: 0 on success, negative value on error
Jason J. Herne30ee2a92014-09-23 09:23:01 -04003531
3532This ioctl is used to set guest storage key values on the s390
3533architecture. The ioctl takes parameters via the kvm_s390_skeys struct.
3534See section on KVM_S390_GET_SKEYS for struct definition.
3535
3536The start_gfn field is the number of the first guest frame whose storage keys
3537you want to set.
3538
3539The count field is the number of consecutive frames (starting from start_gfn)
3540whose storage keys to get. The count field must be at least 1 and the maximum
3541allowed value is defined as KVM_S390_SKEYS_ALLOC_MAX. Values outside this range
3542will cause the ioctl to return -EINVAL.
3543
3544The skeydata_addr field is the address to a buffer containing count bytes of
3545storage keys. Each byte in the buffer will be set as the storage key for a
3546single frame starting at start_gfn for count frames.
3547
3548Note: If any architecturally invalid key value is found in the given data then
3549the ioctl will return -EINVAL.
3550
Jens Freimann47b43c52014-11-11 20:57:06 +010035514.92 KVM_S390_IRQ
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003552-----------------
Jens Freimann47b43c52014-11-11 20:57:06 +01003553
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003554:Capability: KVM_CAP_S390_INJECT_IRQ
3555:Architectures: s390
3556:Type: vcpu ioctl
3557:Parameters: struct kvm_s390_irq (in)
3558:Returns: 0 on success, -1 on error
3559
Jens Freimann47b43c52014-11-11 20:57:06 +01003560Errors:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003561
3562
3563 ====== =================================================================
3564 EINVAL interrupt type is invalid
3565 type is KVM_S390_SIGP_STOP and flag parameter is invalid value,
Jens Freimann47b43c52014-11-11 20:57:06 +01003566 type is KVM_S390_INT_EXTERNAL_CALL and code is bigger
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003567 than the maximum of VCPUs
3568 EBUSY type is KVM_S390_SIGP_SET_PREFIX and vcpu is not stopped,
3569 type is KVM_S390_SIGP_STOP and a stop irq is already pending,
Jens Freimann47b43c52014-11-11 20:57:06 +01003570 type is KVM_S390_INT_EXTERNAL_CALL and an external call interrupt
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003571 is already pending
3572 ====== =================================================================
Jens Freimann47b43c52014-11-11 20:57:06 +01003573
3574Allows to inject an interrupt to the guest.
3575
3576Using struct kvm_s390_irq as a parameter allows
3577to inject additional payload which is not
3578possible via KVM_S390_INTERRUPT.
3579
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003580Interrupt parameters are passed via kvm_s390_irq::
Jens Freimann47b43c52014-11-11 20:57:06 +01003581
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003582 struct kvm_s390_irq {
Jens Freimann47b43c52014-11-11 20:57:06 +01003583 __u64 type;
3584 union {
3585 struct kvm_s390_io_info io;
3586 struct kvm_s390_ext_info ext;
3587 struct kvm_s390_pgm_info pgm;
3588 struct kvm_s390_emerg_info emerg;
3589 struct kvm_s390_extcall_info extcall;
3590 struct kvm_s390_prefix_info prefix;
3591 struct kvm_s390_stop_info stop;
3592 struct kvm_s390_mchk_info mchk;
3593 char reserved[64];
3594 } u;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003595 };
Jens Freimann47b43c52014-11-11 20:57:06 +01003596
3597type can be one of the following:
3598
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003599- KVM_S390_SIGP_STOP - sigp stop; parameter in .stop
3600- KVM_S390_PROGRAM_INT - program check; parameters in .pgm
3601- KVM_S390_SIGP_SET_PREFIX - sigp set prefix; parameters in .prefix
3602- KVM_S390_RESTART - restart; no parameters
3603- KVM_S390_INT_CLOCK_COMP - clock comparator interrupt; no parameters
3604- KVM_S390_INT_CPU_TIMER - CPU timer interrupt; no parameters
3605- KVM_S390_INT_EMERGENCY - sigp emergency; parameters in .emerg
3606- KVM_S390_INT_EXTERNAL_CALL - sigp external call; parameters in .extcall
3607- KVM_S390_MCHK - machine check interrupt; parameters in .mchk
Jens Freimann47b43c52014-11-11 20:57:06 +01003608
Sean Christopherson5e124902019-02-15 12:48:38 -08003609This is an asynchronous vcpu ioctl and can be invoked from any thread.
Jens Freimann47b43c52014-11-11 20:57:06 +01003610
Jens Freimann816c7662014-11-24 17:13:46 +010036114.94 KVM_S390_GET_IRQ_STATE
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003612---------------------------
Jens Freimann816c7662014-11-24 17:13:46 +01003613
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003614:Capability: KVM_CAP_S390_IRQ_STATE
3615:Architectures: s390
3616:Type: vcpu ioctl
3617:Parameters: struct kvm_s390_irq_state (out)
3618:Returns: >= number of bytes copied into buffer,
3619 -EINVAL if buffer size is 0,
3620 -ENOBUFS if buffer size is too small to fit all pending interrupts,
3621 -EFAULT if the buffer address was invalid
Jens Freimann816c7662014-11-24 17:13:46 +01003622
3623This ioctl allows userspace to retrieve the complete state of all currently
3624pending interrupts in a single buffer. Use cases include migration
3625and introspection. The parameter structure contains the address of a
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003626userspace buffer and its length::
Jens Freimann816c7662014-11-24 17:13:46 +01003627
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003628 struct kvm_s390_irq_state {
Jens Freimann816c7662014-11-24 17:13:46 +01003629 __u64 buf;
Christian Borntraegerbb64da92017-11-21 16:02:52 +01003630 __u32 flags; /* will stay unused for compatibility reasons */
Jens Freimann816c7662014-11-24 17:13:46 +01003631 __u32 len;
Christian Borntraegerbb64da92017-11-21 16:02:52 +01003632 __u32 reserved[4]; /* will stay unused for compatibility reasons */
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003633 };
Jens Freimann816c7662014-11-24 17:13:46 +01003634
3635Userspace passes in the above struct and for each pending interrupt a
3636struct kvm_s390_irq is copied to the provided buffer.
3637
Christian Borntraegerbb64da92017-11-21 16:02:52 +01003638The structure contains a flags and a reserved field for future extensions. As
3639the kernel never checked for flags == 0 and QEMU never pre-zeroed flags and
3640reserved, these fields can not be used in the future without breaking
3641compatibility.
3642
Jens Freimann816c7662014-11-24 17:13:46 +01003643If -ENOBUFS is returned the buffer provided was too small and userspace
3644may retry with a bigger buffer.
3645
36464.95 KVM_S390_SET_IRQ_STATE
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003647---------------------------
Jens Freimann816c7662014-11-24 17:13:46 +01003648
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003649:Capability: KVM_CAP_S390_IRQ_STATE
3650:Architectures: s390
3651:Type: vcpu ioctl
3652:Parameters: struct kvm_s390_irq_state (in)
3653:Returns: 0 on success,
3654 -EFAULT if the buffer address was invalid,
3655 -EINVAL for an invalid buffer length (see below),
3656 -EBUSY if there were already interrupts pending,
3657 errors occurring when actually injecting the
Jens Freimann816c7662014-11-24 17:13:46 +01003658 interrupt. See KVM_S390_IRQ.
3659
3660This ioctl allows userspace to set the complete state of all cpu-local
3661interrupts currently pending for the vcpu. It is intended for restoring
3662interrupt state after a migration. The input parameter is a userspace buffer
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003663containing a struct kvm_s390_irq_state::
Jens Freimann816c7662014-11-24 17:13:46 +01003664
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003665 struct kvm_s390_irq_state {
Jens Freimann816c7662014-11-24 17:13:46 +01003666 __u64 buf;
Christian Borntraegerbb64da92017-11-21 16:02:52 +01003667 __u32 flags; /* will stay unused for compatibility reasons */
Jens Freimann816c7662014-11-24 17:13:46 +01003668 __u32 len;
Christian Borntraegerbb64da92017-11-21 16:02:52 +01003669 __u32 reserved[4]; /* will stay unused for compatibility reasons */
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003670 };
Jens Freimann816c7662014-11-24 17:13:46 +01003671
Christian Borntraegerbb64da92017-11-21 16:02:52 +01003672The restrictions for flags and reserved apply as well.
3673(see KVM_S390_GET_IRQ_STATE)
3674
Jens Freimann816c7662014-11-24 17:13:46 +01003675The userspace memory referenced by buf contains a struct kvm_s390_irq
3676for each interrupt to be injected into the guest.
3677If one of the interrupts could not be injected for some reason the
3678ioctl aborts.
3679
3680len must be a multiple of sizeof(struct kvm_s390_irq). It must be > 0
3681and it must not exceed (max_vcpus + 32) * sizeof(struct kvm_s390_irq),
3682which is the maximum number of possibly pending cpu-local interrupts.
Jens Freimann47b43c52014-11-11 20:57:06 +01003683
Alexey Kardashevskiyed8e5a22016-01-19 16:12:28 +110036844.96 KVM_SMI
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003685------------
Paolo Bonzinif0778252015-04-01 15:06:40 +02003686
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003687:Capability: KVM_CAP_X86_SMM
3688:Architectures: x86
3689:Type: vcpu ioctl
3690:Parameters: none
3691:Returns: 0 on success, -1 on error
Paolo Bonzinif0778252015-04-01 15:06:40 +02003692
3693Queues an SMI on the thread's vcpu.
3694
Emanuele Giuseppe Esposito24e74752021-03-16 18:08:14 +010036954.97 KVM_X86_SET_MSR_FILTER
3696----------------------------
Alexey Kardashevskiyd3695aa2016-02-15 12:55:09 +11003697
Emanuele Giuseppe Esposito24e74752021-03-16 18:08:14 +01003698:Capability: KVM_X86_SET_MSR_FILTER
3699:Architectures: x86
3700:Type: vm ioctl
3701:Parameters: struct kvm_msr_filter
3702:Returns: 0 on success, < 0 on error
Alexey Kardashevskiyd3695aa2016-02-15 12:55:09 +11003703
Emanuele Giuseppe Esposito24e74752021-03-16 18:08:14 +01003704::
Alexey Kardashevskiyd3695aa2016-02-15 12:55:09 +11003705
Emanuele Giuseppe Esposito24e74752021-03-16 18:08:14 +01003706 struct kvm_msr_filter_range {
3707 #define KVM_MSR_FILTER_READ (1 << 0)
3708 #define KVM_MSR_FILTER_WRITE (1 << 1)
3709 __u32 flags;
3710 __u32 nmsrs; /* number of msrs in bitmap */
3711 __u32 base; /* MSR index the bitmap starts at */
3712 __u8 *bitmap; /* a 1 bit allows the operations in flags, 0 denies */
3713 };
Alexey Kardashevskiyd3695aa2016-02-15 12:55:09 +11003714
Emanuele Giuseppe Esposito24e74752021-03-16 18:08:14 +01003715 #define KVM_MSR_FILTER_MAX_RANGES 16
3716 struct kvm_msr_filter {
3717 #define KVM_MSR_FILTER_DEFAULT_ALLOW (0 << 0)
3718 #define KVM_MSR_FILTER_DEFAULT_DENY (1 << 0)
3719 __u32 flags;
3720 struct kvm_msr_filter_range ranges[KVM_MSR_FILTER_MAX_RANGES];
3721 };
Alexey Kardashevskiyd3695aa2016-02-15 12:55:09 +11003722
Emanuele Giuseppe Esposito24e74752021-03-16 18:08:14 +01003723flags values for ``struct kvm_msr_filter_range``:
3724
3725``KVM_MSR_FILTER_READ``
3726
3727 Filter read accesses to MSRs using the given bitmap. A 0 in the bitmap
3728 indicates that a read should immediately fail, while a 1 indicates that
3729 a read for a particular MSR should be handled regardless of the default
3730 filter action.
3731
3732``KVM_MSR_FILTER_WRITE``
3733
3734 Filter write accesses to MSRs using the given bitmap. A 0 in the bitmap
3735 indicates that a write should immediately fail, while a 1 indicates that
3736 a write for a particular MSR should be handled regardless of the default
3737 filter action.
3738
3739``KVM_MSR_FILTER_READ | KVM_MSR_FILTER_WRITE``
3740
3741 Filter both read and write accesses to MSRs using the given bitmap. A 0
3742 in the bitmap indicates that both reads and writes should immediately fail,
3743 while a 1 indicates that reads and writes for a particular MSR are not
3744 filtered by this range.
3745
3746flags values for ``struct kvm_msr_filter``:
3747
3748``KVM_MSR_FILTER_DEFAULT_ALLOW``
3749
3750 If no filter range matches an MSR index that is getting accessed, KVM will
3751 fall back to allowing access to the MSR.
3752
3753``KVM_MSR_FILTER_DEFAULT_DENY``
3754
3755 If no filter range matches an MSR index that is getting accessed, KVM will
3756 fall back to rejecting access to the MSR. In this mode, all MSRs that should
3757 be processed by KVM need to explicitly be marked as allowed in the bitmaps.
3758
3759This ioctl allows user space to define up to 16 bitmaps of MSR ranges to
3760specify whether a certain MSR access should be explicitly filtered for or not.
3761
3762If this ioctl has never been invoked, MSR accesses are not guarded and the
3763default KVM in-kernel emulation behavior is fully preserved.
3764
3765Calling this ioctl with an empty set of ranges (all nmsrs == 0) disables MSR
3766filtering. In that mode, ``KVM_MSR_FILTER_DEFAULT_DENY`` is invalid and causes
3767an error.
3768
3769As soon as the filtering is in place, every MSR access is processed through
3770the filtering except for accesses to the x2APIC MSRs (from 0x800 to 0x8ff);
3771x2APIC MSRs are always allowed, independent of the ``default_allow`` setting,
3772and their behavior depends on the ``X2APIC_ENABLE`` bit of the APIC base
3773register.
3774
3775If a bit is within one of the defined ranges, read and write accesses are
3776guarded by the bitmap's value for the MSR index if the kind of access
3777is included in the ``struct kvm_msr_filter_range`` flags. If no range
3778cover this particular access, the behavior is determined by the flags
3779field in the kvm_msr_filter struct: ``KVM_MSR_FILTER_DEFAULT_ALLOW``
3780and ``KVM_MSR_FILTER_DEFAULT_DENY``.
3781
3782Each bitmap range specifies a range of MSRs to potentially allow access on.
3783The range goes from MSR index [base .. base+nmsrs]. The flags field
3784indicates whether reads, writes or both reads and writes are filtered
3785by setting a 1 bit in the bitmap for the corresponding MSR index.
3786
3787If an MSR access is not permitted through the filtering, it generates a
3788#GP inside the guest. When combined with KVM_CAP_X86_USER_SPACE_MSR, that
3789allows user space to deflect and potentially handle various MSR accesses
3790into user space.
3791
3792If a vCPU is in running state while this ioctl is invoked, the vCPU may
3793experience inconsistent filtering behavior on MSR accesses.
Alexey Kardashevskiyd3695aa2016-02-15 12:55:09 +11003794
Alexey Kardashevskiy58ded422016-03-01 17:54:40 +110037954.98 KVM_CREATE_SPAPR_TCE_64
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003796----------------------------
Alexey Kardashevskiy58ded422016-03-01 17:54:40 +11003797
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003798:Capability: KVM_CAP_SPAPR_TCE_64
3799:Architectures: powerpc
3800:Type: vm ioctl
3801:Parameters: struct kvm_create_spapr_tce_64 (in)
3802:Returns: file descriptor for manipulating the created TCE table
Alexey Kardashevskiy58ded422016-03-01 17:54:40 +11003803
3804This is an extension for KVM_CAP_SPAPR_TCE which only supports 32bit
3805windows, described in 4.62 KVM_CREATE_SPAPR_TCE
3806
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003807This capability uses extended struct in ioctl interface::
Alexey Kardashevskiy58ded422016-03-01 17:54:40 +11003808
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003809 /* for KVM_CAP_SPAPR_TCE_64 */
3810 struct kvm_create_spapr_tce_64 {
Alexey Kardashevskiy58ded422016-03-01 17:54:40 +11003811 __u64 liobn;
3812 __u32 page_shift;
3813 __u32 flags;
3814 __u64 offset; /* in pages */
3815 __u64 size; /* in pages */
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003816 };
Alexey Kardashevskiy58ded422016-03-01 17:54:40 +11003817
3818The aim of extension is to support an additional bigger DMA window with
3819a variable page size.
3820KVM_CREATE_SPAPR_TCE_64 receives a 64bit window size, an IOMMU page shift and
3821a bus offset of the corresponding DMA window, @size and @offset are numbers
3822of IOMMU pages.
3823
3824@flags are not used at the moment.
3825
3826The rest of functionality is identical to KVM_CREATE_SPAPR_TCE.
3827
David Gibsonccc4df42016-12-20 16:48:57 +110038284.99 KVM_REINJECT_CONTROL
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003829-------------------------
Radim Krčmář107d44a22016-03-02 22:56:53 +01003830
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003831:Capability: KVM_CAP_REINJECT_CONTROL
3832:Architectures: x86
3833:Type: vm ioctl
3834:Parameters: struct kvm_reinject_control (in)
3835:Returns: 0 on success,
Radim Krčmář107d44a22016-03-02 22:56:53 +01003836 -EFAULT if struct kvm_reinject_control cannot be read,
3837 -ENXIO if KVM_CREATE_PIT or KVM_CREATE_PIT2 didn't succeed earlier.
3838
3839i8254 (PIT) has two modes, reinject and !reinject. The default is reinject,
3840where KVM queues elapsed i8254 ticks and monitors completion of interrupt from
3841vector(s) that i8254 injects. Reinject mode dequeues a tick and injects its
3842interrupt whenever there isn't a pending interrupt from i8254.
3843!reinject mode injects an interrupt as soon as a tick arrives.
3844
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003845::
3846
3847 struct kvm_reinject_control {
Radim Krčmář107d44a22016-03-02 22:56:53 +01003848 __u8 pit_reinject;
3849 __u8 reserved[31];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003850 };
Radim Krčmář107d44a22016-03-02 22:56:53 +01003851
3852pit_reinject = 0 (!reinject mode) is recommended, unless running an old
3853operating system that uses the PIT for timing (e.g. Linux 2.4.x).
3854
David Gibsonccc4df42016-12-20 16:48:57 +110038554.100 KVM_PPC_CONFIGURE_V3_MMU
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003856------------------------------
Paul Mackerrasc9270132017-01-30 21:21:41 +11003857
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003858:Capability: KVM_CAP_PPC_RADIX_MMU or KVM_CAP_PPC_HASH_MMU_V3
3859:Architectures: ppc
3860:Type: vm ioctl
3861:Parameters: struct kvm_ppc_mmuv3_cfg (in)
3862:Returns: 0 on success,
Paul Mackerrasc9270132017-01-30 21:21:41 +11003863 -EFAULT if struct kvm_ppc_mmuv3_cfg cannot be read,
3864 -EINVAL if the configuration is invalid
3865
3866This ioctl controls whether the guest will use radix or HPT (hashed
3867page table) translation, and sets the pointer to the process table for
3868the guest.
3869
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003870::
3871
3872 struct kvm_ppc_mmuv3_cfg {
Paul Mackerrasc9270132017-01-30 21:21:41 +11003873 __u64 flags;
3874 __u64 process_table;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003875 };
Paul Mackerrasc9270132017-01-30 21:21:41 +11003876
3877There are two bits that can be set in flags; KVM_PPC_MMUV3_RADIX and
3878KVM_PPC_MMUV3_GTSE. KVM_PPC_MMUV3_RADIX, if set, configures the guest
3879to use radix tree translation, and if clear, to use HPT translation.
3880KVM_PPC_MMUV3_GTSE, if set and if KVM permits it, configures the guest
3881to be able to use the global TLB and SLB invalidation instructions;
3882if clear, the guest may not use these instructions.
3883
3884The process_table field specifies the address and size of the guest
3885process table, which is in the guest's space. This field is formatted
3886as the second doubleword of the partition table entry, as defined in
3887the Power ISA V3.00, Book III section 5.7.6.1.
3888
David Gibsonccc4df42016-12-20 16:48:57 +110038894.101 KVM_PPC_GET_RMMU_INFO
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003890---------------------------
Paul Mackerrasc9270132017-01-30 21:21:41 +11003891
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003892:Capability: KVM_CAP_PPC_RADIX_MMU
3893:Architectures: ppc
3894:Type: vm ioctl
3895:Parameters: struct kvm_ppc_rmmu_info (out)
3896:Returns: 0 on success,
Paul Mackerrasc9270132017-01-30 21:21:41 +11003897 -EFAULT if struct kvm_ppc_rmmu_info cannot be written,
3898 -EINVAL if no useful information can be returned
3899
3900This ioctl returns a structure containing two things: (a) a list
3901containing supported radix tree geometries, and (b) a list that maps
3902page sizes to put in the "AP" (actual page size) field for the tlbie
3903(TLB invalidate entry) instruction.
3904
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003905::
3906
3907 struct kvm_ppc_rmmu_info {
Paul Mackerrasc9270132017-01-30 21:21:41 +11003908 struct kvm_ppc_radix_geom {
3909 __u8 page_shift;
3910 __u8 level_bits[4];
3911 __u8 pad[3];
3912 } geometries[8];
3913 __u32 ap_encodings[8];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003914 };
Paul Mackerrasc9270132017-01-30 21:21:41 +11003915
3916The geometries[] field gives up to 8 supported geometries for the
3917radix page table, in terms of the log base 2 of the smallest page
3918size, and the number of bits indexed at each level of the tree, from
3919the PTE level up to the PGD level in that order. Any unused entries
3920will have 0 in the page_shift field.
3921
3922The ap_encodings gives the supported page sizes and their AP field
3923encodings, encoded with the AP value in the top 3 bits and the log
3924base 2 of the page size in the bottom 6 bits.
3925
David Gibsonef1ead02016-12-20 16:48:58 +110039264.102 KVM_PPC_RESIZE_HPT_PREPARE
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003927--------------------------------
David Gibsonef1ead02016-12-20 16:48:58 +11003928
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003929:Capability: KVM_CAP_SPAPR_RESIZE_HPT
3930:Architectures: powerpc
3931:Type: vm ioctl
3932:Parameters: struct kvm_ppc_resize_hpt (in)
3933:Returns: 0 on successful completion,
David Gibsonef1ead02016-12-20 16:48:58 +11003934 >0 if a new HPT is being prepared, the value is an estimated
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003935 number of milliseconds until preparation is complete,
David Gibsonef1ead02016-12-20 16:48:58 +11003936 -EFAULT if struct kvm_reinject_control cannot be read,
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003937 -EINVAL if the supplied shift or flags are invalid,
3938 -ENOMEM if unable to allocate the new HPT,
David Gibsonef1ead02016-12-20 16:48:58 +11003939
3940Used to implement the PAPR extension for runtime resizing of a guest's
3941Hashed Page Table (HPT). Specifically this starts, stops or monitors
3942the preparation of a new potential HPT for the guest, essentially
3943implementing the H_RESIZE_HPT_PREPARE hypercall.
3944
Paolo Bonzinie2a0fca2021-02-25 08:37:01 -05003945::
3946
3947 struct kvm_ppc_resize_hpt {
3948 __u64 flags;
3949 __u32 shift;
3950 __u32 pad;
3951 };
3952
David Gibsonef1ead02016-12-20 16:48:58 +11003953If called with shift > 0 when there is no pending HPT for the guest,
3954this begins preparation of a new pending HPT of size 2^(shift) bytes.
3955It then returns a positive integer with the estimated number of
3956milliseconds until preparation is complete.
3957
3958If called when there is a pending HPT whose size does not match that
3959requested in the parameters, discards the existing pending HPT and
3960creates a new one as above.
3961
3962If called when there is a pending HPT of the size requested, will:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003963
David Gibsonef1ead02016-12-20 16:48:58 +11003964 * If preparation of the pending HPT is already complete, return 0
3965 * If preparation of the pending HPT has failed, return an error
3966 code, then discard the pending HPT.
3967 * If preparation of the pending HPT is still in progress, return an
3968 estimated number of milliseconds until preparation is complete.
3969
3970If called with shift == 0, discards any currently pending HPT and
3971returns 0 (i.e. cancels any in-progress preparation).
3972
3973flags is reserved for future expansion, currently setting any bits in
3974flags will result in an -EINVAL.
3975
3976Normally this will be called repeatedly with the same parameters until
3977it returns <= 0. The first call will initiate preparation, subsequent
3978ones will monitor preparation until it completes or fails.
3979
David Gibsonef1ead02016-12-20 16:48:58 +110039804.103 KVM_PPC_RESIZE_HPT_COMMIT
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003981-------------------------------
David Gibsonef1ead02016-12-20 16:48:58 +11003982
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003983:Capability: KVM_CAP_SPAPR_RESIZE_HPT
3984:Architectures: powerpc
3985:Type: vm ioctl
3986:Parameters: struct kvm_ppc_resize_hpt (in)
3987:Returns: 0 on successful completion,
David Gibsonef1ead02016-12-20 16:48:58 +11003988 -EFAULT if struct kvm_reinject_control cannot be read,
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003989 -EINVAL if the supplied shift or flags are invalid,
David Gibsonef1ead02016-12-20 16:48:58 +11003990 -ENXIO is there is no pending HPT, or the pending HPT doesn't
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003991 have the requested size,
3992 -EBUSY if the pending HPT is not fully prepared,
David Gibsonef1ead02016-12-20 16:48:58 +11003993 -ENOSPC if there was a hash collision when moving existing
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003994 HPT entries to the new HPT,
David Gibsonef1ead02016-12-20 16:48:58 +11003995 -EIO on other error conditions
3996
3997Used to implement the PAPR extension for runtime resizing of a guest's
3998Hashed Page Table (HPT). Specifically this requests that the guest be
3999transferred to working with the new HPT, essentially implementing the
4000H_RESIZE_HPT_COMMIT hypercall.
4001
Paolo Bonzinie2a0fca2021-02-25 08:37:01 -05004002::
4003
4004 struct kvm_ppc_resize_hpt {
4005 __u64 flags;
4006 __u32 shift;
4007 __u32 pad;
4008 };
4009
David Gibsonef1ead02016-12-20 16:48:58 +11004010This should only be called after KVM_PPC_RESIZE_HPT_PREPARE has
4011returned 0 with the same parameters. In other cases
4012KVM_PPC_RESIZE_HPT_COMMIT will return an error (usually -ENXIO or
4013-EBUSY, though others may be possible if the preparation was started,
4014but failed).
4015
4016This will have undefined effects on the guest if it has not already
4017placed itself in a quiescent state where no vcpu will make MMU enabled
4018memory accesses.
4019
4020On succsful completion, the pending HPT will become the guest's active
4021HPT and the previous HPT will be discarded.
4022
4023On failure, the guest will still be operating on its previous HPT.
4024
Luiz Capitulino3aa53852017-03-13 09:08:20 -040040254.104 KVM_X86_GET_MCE_CAP_SUPPORTED
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004026-----------------------------------
Luiz Capitulino3aa53852017-03-13 09:08:20 -04004027
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004028:Capability: KVM_CAP_MCE
4029:Architectures: x86
4030:Type: system ioctl
4031:Parameters: u64 mce_cap (out)
4032:Returns: 0 on success, -1 on error
Luiz Capitulino3aa53852017-03-13 09:08:20 -04004033
4034Returns supported MCE capabilities. The u64 mce_cap parameter
4035has the same format as the MSR_IA32_MCG_CAP register. Supported
4036capabilities will have the corresponding bits set.
4037
40384.105 KVM_X86_SETUP_MCE
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004039-----------------------
Luiz Capitulino3aa53852017-03-13 09:08:20 -04004040
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004041:Capability: KVM_CAP_MCE
4042:Architectures: x86
4043:Type: vcpu ioctl
4044:Parameters: u64 mcg_cap (in)
4045:Returns: 0 on success,
Luiz Capitulino3aa53852017-03-13 09:08:20 -04004046 -EFAULT if u64 mcg_cap cannot be read,
4047 -EINVAL if the requested number of banks is invalid,
4048 -EINVAL if requested MCE capability is not supported.
4049
4050Initializes MCE support for use. The u64 mcg_cap parameter
4051has the same format as the MSR_IA32_MCG_CAP register and
4052specifies which capabilities should be enabled. The maximum
4053supported number of error-reporting banks can be retrieved when
4054checking for KVM_CAP_MCE. The supported capabilities can be
4055retrieved with KVM_X86_GET_MCE_CAP_SUPPORTED.
4056
40574.106 KVM_X86_SET_MCE
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004058---------------------
Luiz Capitulino3aa53852017-03-13 09:08:20 -04004059
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004060:Capability: KVM_CAP_MCE
4061:Architectures: x86
4062:Type: vcpu ioctl
4063:Parameters: struct kvm_x86_mce (in)
4064:Returns: 0 on success,
Luiz Capitulino3aa53852017-03-13 09:08:20 -04004065 -EFAULT if struct kvm_x86_mce cannot be read,
4066 -EINVAL if the bank number is invalid,
4067 -EINVAL if VAL bit is not set in status field.
4068
4069Inject a machine check error (MCE) into the guest. The input
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004070parameter is::
Luiz Capitulino3aa53852017-03-13 09:08:20 -04004071
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004072 struct kvm_x86_mce {
Luiz Capitulino3aa53852017-03-13 09:08:20 -04004073 __u64 status;
4074 __u64 addr;
4075 __u64 misc;
4076 __u64 mcg_status;
4077 __u8 bank;
4078 __u8 pad1[7];
4079 __u64 pad2[3];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004080 };
Luiz Capitulino3aa53852017-03-13 09:08:20 -04004081
4082If the MCE being reported is an uncorrected error, KVM will
4083inject it as an MCE exception into the guest. If the guest
4084MCG_STATUS register reports that an MCE is in progress, KVM
4085causes an KVM_EXIT_SHUTDOWN vmexit.
4086
4087Otherwise, if the MCE is a corrected error, KVM will just
4088store it in the corresponding bank (provided this bank is
4089not holding a previously reported uncorrected error).
4090
Claudio Imbrenda4036e382016-08-04 17:58:47 +020040914.107 KVM_S390_GET_CMMA_BITS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004092----------------------------
Claudio Imbrenda4036e382016-08-04 17:58:47 +02004093
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004094:Capability: KVM_CAP_S390_CMMA_MIGRATION
4095:Architectures: s390
4096:Type: vm ioctl
4097:Parameters: struct kvm_s390_cmma_log (in, out)
4098:Returns: 0 on success, a negative value on error
Claudio Imbrenda4036e382016-08-04 17:58:47 +02004099
4100This ioctl is used to get the values of the CMMA bits on the s390
4101architecture. It is meant to be used in two scenarios:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004102
Claudio Imbrenda4036e382016-08-04 17:58:47 +02004103- During live migration to save the CMMA values. Live migration needs
4104 to be enabled via the KVM_REQ_START_MIGRATION VM property.
4105- To non-destructively peek at the CMMA values, with the flag
4106 KVM_S390_CMMA_PEEK set.
4107
4108The ioctl takes parameters via the kvm_s390_cmma_log struct. The desired
4109values are written to a buffer whose location is indicated via the "values"
4110member in the kvm_s390_cmma_log struct. The values in the input struct are
4111also updated as needed.
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004112
Claudio Imbrenda4036e382016-08-04 17:58:47 +02004113Each CMMA value takes up one byte.
4114
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004115::
4116
4117 struct kvm_s390_cmma_log {
Claudio Imbrenda4036e382016-08-04 17:58:47 +02004118 __u64 start_gfn;
4119 __u32 count;
4120 __u32 flags;
4121 union {
4122 __u64 remaining;
4123 __u64 mask;
4124 };
4125 __u64 values;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004126 };
Claudio Imbrenda4036e382016-08-04 17:58:47 +02004127
4128start_gfn is the number of the first guest frame whose CMMA values are
4129to be retrieved,
4130
4131count is the length of the buffer in bytes,
4132
4133values points to the buffer where the result will be written to.
4134
4135If count is greater than KVM_S390_SKEYS_MAX, then it is considered to be
4136KVM_S390_SKEYS_MAX. KVM_S390_SKEYS_MAX is re-used for consistency with
4137other ioctls.
4138
4139The result is written in the buffer pointed to by the field values, and
4140the values of the input parameter are updated as follows.
4141
4142Depending on the flags, different actions are performed. The only
4143supported flag so far is KVM_S390_CMMA_PEEK.
4144
4145The default behaviour if KVM_S390_CMMA_PEEK is not set is:
4146start_gfn will indicate the first page frame whose CMMA bits were dirty.
4147It is not necessarily the same as the one passed as input, as clean pages
4148are skipped.
4149
4150count will indicate the number of bytes actually written in the buffer.
4151It can (and very often will) be smaller than the input value, since the
4152buffer is only filled until 16 bytes of clean values are found (which
4153are then not copied in the buffer). Since a CMMA migration block needs
4154the base address and the length, for a total of 16 bytes, we will send
4155back some clean data if there is some dirty data afterwards, as long as
4156the size of the clean data does not exceed the size of the header. This
4157allows to minimize the amount of data to be saved or transferred over
4158the network at the expense of more roundtrips to userspace. The next
4159invocation of the ioctl will skip over all the clean values, saving
4160potentially more than just the 16 bytes we found.
4161
4162If KVM_S390_CMMA_PEEK is set:
4163the existing storage attributes are read even when not in migration
4164mode, and no other action is performed;
4165
4166the output start_gfn will be equal to the input start_gfn,
4167
4168the output count will be equal to the input count, except if the end of
4169memory has been reached.
4170
4171In both cases:
4172the field "remaining" will indicate the total number of dirty CMMA values
4173still remaining, or 0 if KVM_S390_CMMA_PEEK is set and migration mode is
4174not enabled.
4175
4176mask is unused.
4177
4178values points to the userspace buffer where the result will be stored.
4179
4180This ioctl can fail with -ENOMEM if not enough memory can be allocated to
4181complete the task, with -ENXIO if CMMA is not enabled, with -EINVAL if
4182KVM_S390_CMMA_PEEK is not set but migration mode was not enabled, with
4183-EFAULT if the userspace address is invalid or if no page table is
4184present for the addresses (e.g. when using hugepages).
4185
41864.108 KVM_S390_SET_CMMA_BITS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004187----------------------------
Claudio Imbrenda4036e382016-08-04 17:58:47 +02004188
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004189:Capability: KVM_CAP_S390_CMMA_MIGRATION
4190:Architectures: s390
4191:Type: vm ioctl
4192:Parameters: struct kvm_s390_cmma_log (in)
4193:Returns: 0 on success, a negative value on error
Claudio Imbrenda4036e382016-08-04 17:58:47 +02004194
4195This ioctl is used to set the values of the CMMA bits on the s390
4196architecture. It is meant to be used during live migration to restore
4197the CMMA values, but there are no restrictions on its use.
4198The ioctl takes parameters via the kvm_s390_cmma_values struct.
4199Each CMMA value takes up one byte.
4200
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004201::
4202
4203 struct kvm_s390_cmma_log {
Claudio Imbrenda4036e382016-08-04 17:58:47 +02004204 __u64 start_gfn;
4205 __u32 count;
4206 __u32 flags;
4207 union {
4208 __u64 remaining;
4209 __u64 mask;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004210 };
Claudio Imbrenda4036e382016-08-04 17:58:47 +02004211 __u64 values;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004212 };
Claudio Imbrenda4036e382016-08-04 17:58:47 +02004213
4214start_gfn indicates the starting guest frame number,
4215
4216count indicates how many values are to be considered in the buffer,
4217
4218flags is not used and must be 0.
4219
4220mask indicates which PGSTE bits are to be considered.
4221
4222remaining is not used.
4223
4224values points to the buffer in userspace where to store the values.
4225
4226This ioctl can fail with -ENOMEM if not enough memory can be allocated to
4227complete the task, with -ENXIO if CMMA is not enabled, with -EINVAL if
4228the count field is too large (e.g. more than KVM_S390_CMMA_SIZE_MAX) or
4229if the flags field was not 0, with -EFAULT if the userspace address is
4230invalid, if invalid pages are written to (e.g. after the end of memory)
4231or if no page table is present for the addresses (e.g. when using
4232hugepages).
4233
Radim Krčmář7bf14c22018-02-01 15:04:17 +010042344.109 KVM_PPC_GET_CPU_CHAR
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004235--------------------------
Paul Mackerras3214d012018-01-15 16:06:47 +11004236
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004237:Capability: KVM_CAP_PPC_GET_CPU_CHAR
4238:Architectures: powerpc
4239:Type: vm ioctl
4240:Parameters: struct kvm_ppc_cpu_char (out)
4241:Returns: 0 on successful completion,
Paul Mackerras3214d012018-01-15 16:06:47 +11004242 -EFAULT if struct kvm_ppc_cpu_char cannot be written
4243
4244This ioctl gives userspace information about certain characteristics
4245of the CPU relating to speculative execution of instructions and
4246possible information leakage resulting from speculative execution (see
4247CVE-2017-5715, CVE-2017-5753 and CVE-2017-5754). The information is
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004248returned in struct kvm_ppc_cpu_char, which looks like this::
Paul Mackerras3214d012018-01-15 16:06:47 +11004249
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004250 struct kvm_ppc_cpu_char {
Paul Mackerras3214d012018-01-15 16:06:47 +11004251 __u64 character; /* characteristics of the CPU */
4252 __u64 behaviour; /* recommended software behaviour */
4253 __u64 character_mask; /* valid bits in character */
4254 __u64 behaviour_mask; /* valid bits in behaviour */
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004255 };
Paul Mackerras3214d012018-01-15 16:06:47 +11004256
4257For extensibility, the character_mask and behaviour_mask fields
4258indicate which bits of character and behaviour have been filled in by
4259the kernel. If the set of defined bits is extended in future then
4260userspace will be able to tell whether it is running on a kernel that
4261knows about the new bits.
4262
4263The character field describes attributes of the CPU which can help
4264with preventing inadvertent information disclosure - specifically,
4265whether there is an instruction to flash-invalidate the L1 data cache
4266(ori 30,30,0 or mtspr SPRN_TRIG2,rN), whether the L1 data cache is set
4267to a mode where entries can only be used by the thread that created
4268them, whether the bcctr[l] instruction prevents speculation, and
4269whether a speculation barrier instruction (ori 31,31,0) is provided.
4270
4271The behaviour field describes actions that software should take to
4272prevent inadvertent information disclosure, and thus describes which
4273vulnerabilities the hardware is subject to; specifically whether the
4274L1 data cache should be flushed when returning to user mode from the
4275kernel, and whether a speculation barrier should be placed between an
4276array bounds check and the array access.
4277
4278These fields use the same bit definitions as the new
4279H_GET_CPU_CHARACTERISTICS hypercall.
4280
Radim Krčmář7bf14c22018-02-01 15:04:17 +010042814.110 KVM_MEMORY_ENCRYPT_OP
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004282---------------------------
Brijesh Singh5acc5c02017-12-04 10:57:26 -06004283
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004284:Capability: basic
4285:Architectures: x86
Connor Kuehl46ca9ee2020-08-19 16:19:52 -05004286:Type: vm
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004287:Parameters: an opaque platform specific structure (in/out)
4288:Returns: 0 on success; -1 on error
Brijesh Singh5acc5c02017-12-04 10:57:26 -06004289
4290If the platform supports creating encrypted VMs then this ioctl can be used
4291for issuing platform-specific memory encryption commands to manage those
4292encrypted VMs.
4293
4294Currently, this ioctl is used for issuing Secure Encrypted Virtualization
4295(SEV) commands on AMD Processors. The SEV commands are defined in
Christoph Hellwig2f5947d2019-07-24 09:24:49 +02004296Documentation/virt/kvm/amd-memory-encryption.rst.
Brijesh Singh5acc5c02017-12-04 10:57:26 -06004297
Radim Krčmář7bf14c22018-02-01 15:04:17 +010042984.111 KVM_MEMORY_ENCRYPT_REG_REGION
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004299-----------------------------------
Brijesh Singh69eaede2017-12-04 10:57:26 -06004300
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004301:Capability: basic
4302:Architectures: x86
4303:Type: system
4304:Parameters: struct kvm_enc_region (in)
4305:Returns: 0 on success; -1 on error
Brijesh Singh69eaede2017-12-04 10:57:26 -06004306
4307This ioctl can be used to register a guest memory region which may
4308contain encrypted data (e.g. guest RAM, SMRAM etc).
4309
4310It is used in the SEV-enabled guest. When encryption is enabled, a guest
4311memory region may contain encrypted data. The SEV memory encryption
4312engine uses a tweak such that two identical plaintext pages, each at
4313different locations will have differing ciphertexts. So swapping or
4314moving ciphertext of those pages will not result in plaintext being
4315swapped. So relocating (or migrating) physical backing pages for the SEV
4316guest will require some additional steps.
4317
4318Note: The current SEV key management spec does not provide commands to
4319swap or migrate (move) ciphertext pages. Hence, for now we pin the guest
4320memory region registered with the ioctl.
4321
Radim Krčmář7bf14c22018-02-01 15:04:17 +010043224.112 KVM_MEMORY_ENCRYPT_UNREG_REGION
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004323-------------------------------------
Brijesh Singh69eaede2017-12-04 10:57:26 -06004324
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004325:Capability: basic
4326:Architectures: x86
4327:Type: system
4328:Parameters: struct kvm_enc_region (in)
4329:Returns: 0 on success; -1 on error
Brijesh Singh69eaede2017-12-04 10:57:26 -06004330
4331This ioctl can be used to unregister the guest memory region registered
4332with KVM_MEMORY_ENCRYPT_REG_REGION ioctl above.
4333
Roman Kaganfaeb7832018-02-01 16:48:32 +030043344.113 KVM_HYPERV_EVENTFD
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004335------------------------
Roman Kaganfaeb7832018-02-01 16:48:32 +03004336
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004337:Capability: KVM_CAP_HYPERV_EVENTFD
4338:Architectures: x86
4339:Type: vm ioctl
4340:Parameters: struct kvm_hyperv_eventfd (in)
Roman Kaganfaeb7832018-02-01 16:48:32 +03004341
4342This ioctl (un)registers an eventfd to receive notifications from the guest on
4343the specified Hyper-V connection id through the SIGNAL_EVENT hypercall, without
4344causing a user exit. SIGNAL_EVENT hypercall with non-zero event flag number
4345(bits 24-31) still triggers a KVM_EXIT_HYPERV_HCALL user exit.
4346
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004347::
4348
4349 struct kvm_hyperv_eventfd {
Roman Kaganfaeb7832018-02-01 16:48:32 +03004350 __u32 conn_id;
4351 __s32 fd;
4352 __u32 flags;
4353 __u32 padding[3];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004354 };
Roman Kaganfaeb7832018-02-01 16:48:32 +03004355
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004356The conn_id field should fit within 24 bits::
Roman Kaganfaeb7832018-02-01 16:48:32 +03004357
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004358 #define KVM_HYPERV_CONN_ID_MASK 0x00ffffff
Roman Kaganfaeb7832018-02-01 16:48:32 +03004359
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004360The acceptable values for the flags field are::
Roman Kaganfaeb7832018-02-01 16:48:32 +03004361
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004362 #define KVM_HYPERV_EVENTFD_DEASSIGN (1 << 0)
Roman Kaganfaeb7832018-02-01 16:48:32 +03004363
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004364:Returns: 0 on success,
4365 -EINVAL if conn_id or flags is outside the allowed range,
4366 -ENOENT on deassign if the conn_id isn't registered,
4367 -EEXIST on assign if the conn_id is already registered
Roman Kaganfaeb7832018-02-01 16:48:32 +03004368
Jim Mattson8fcc4b52018-07-10 11:27:20 +020043694.114 KVM_GET_NESTED_STATE
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004370--------------------------
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004371
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004372:Capability: KVM_CAP_NESTED_STATE
4373:Architectures: x86
4374:Type: vcpu ioctl
4375:Parameters: struct kvm_nested_state (in/out)
4376:Returns: 0 on success, -1 on error
4377
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004378Errors:
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004379
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004380 ===== =============================================================
4381 E2BIG the total state size exceeds the value of 'size' specified by
4382 the user; the size required will be written into size.
4383 ===== =============================================================
4384
4385::
4386
4387 struct kvm_nested_state {
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004388 __u16 flags;
4389 __u16 format;
4390 __u32 size;
Liran Alon6ca00df2019-06-16 15:03:10 +03004391
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004392 union {
Liran Alon6ca00df2019-06-16 15:03:10 +03004393 struct kvm_vmx_nested_state_hdr vmx;
4394 struct kvm_svm_nested_state_hdr svm;
4395
4396 /* Pad the header to 128 bytes. */
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004397 __u8 pad[120];
Liran Alon6ca00df2019-06-16 15:03:10 +03004398 } hdr;
4399
4400 union {
4401 struct kvm_vmx_nested_state_data vmx[0];
4402 struct kvm_svm_nested_state_data svm[0];
4403 } data;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004404 };
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004405
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004406 #define KVM_STATE_NESTED_GUEST_MODE 0x00000001
4407 #define KVM_STATE_NESTED_RUN_PENDING 0x00000002
4408 #define KVM_STATE_NESTED_EVMCS 0x00000004
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004409
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004410 #define KVM_STATE_NESTED_FORMAT_VMX 0
4411 #define KVM_STATE_NESTED_FORMAT_SVM 1
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004412
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004413 #define KVM_STATE_NESTED_VMX_VMCS_SIZE 0x1000
Liran Alon6ca00df2019-06-16 15:03:10 +03004414
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004415 #define KVM_STATE_NESTED_VMX_SMM_GUEST_MODE 0x00000001
4416 #define KVM_STATE_NESTED_VMX_SMM_VMXON 0x00000002
Liran Alon6ca00df2019-06-16 15:03:10 +03004417
Mauro Carvalho Chehab3c97f032020-09-09 16:10:48 +02004418 #define KVM_STATE_VMX_PREEMPTION_TIMER_DEADLINE 0x00000001
Peter Shier850448f2020-05-26 14:51:06 -07004419
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004420 struct kvm_vmx_nested_state_hdr {
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004421 __u64 vmxon_pa;
Liran Alon6ca00df2019-06-16 15:03:10 +03004422 __u64 vmcs12_pa;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004423
4424 struct {
4425 __u16 flags;
4426 } smm;
Paolo Bonzini83d31e52020-07-09 13:12:09 -04004427
4428 __u32 flags;
4429 __u64 preemption_timer_deadline;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004430 };
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004431
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004432 struct kvm_vmx_nested_state_data {
Liran Alon6ca00df2019-06-16 15:03:10 +03004433 __u8 vmcs12[KVM_STATE_NESTED_VMX_VMCS_SIZE];
4434 __u8 shadow_vmcs12[KVM_STATE_NESTED_VMX_VMCS_SIZE];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004435 };
Liran Alon6ca00df2019-06-16 15:03:10 +03004436
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004437This ioctl copies the vcpu's nested virtualization state from the kernel to
4438userspace.
4439
Liran Alon6ca00df2019-06-16 15:03:10 +03004440The maximum size of the state can be retrieved by passing KVM_CAP_NESTED_STATE
4441to the KVM_CHECK_EXTENSION ioctl().
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004442
44434.115 KVM_SET_NESTED_STATE
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004444--------------------------
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004445
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004446:Capability: KVM_CAP_NESTED_STATE
4447:Architectures: x86
4448:Type: vcpu ioctl
4449:Parameters: struct kvm_nested_state (in)
4450:Returns: 0 on success, -1 on error
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004451
Liran Alon6ca00df2019-06-16 15:03:10 +03004452This copies the vcpu's kvm_nested_state struct from userspace to the kernel.
4453For the definition of struct kvm_nested_state, see KVM_GET_NESTED_STATE.
Radim Krčmář7bf14c22018-02-01 15:04:17 +01004454
Peng Hao99434502018-10-14 07:09:56 +080044554.116 KVM_(UN)REGISTER_COALESCED_MMIO
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004456-------------------------------------
Peng Hao99434502018-10-14 07:09:56 +08004457
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004458:Capability: KVM_CAP_COALESCED_MMIO (for coalesced mmio)
4459 KVM_CAP_COALESCED_PIO (for coalesced pio)
4460:Architectures: all
4461:Type: vm ioctl
4462:Parameters: struct kvm_coalesced_mmio_zone
4463:Returns: 0 on success, < 0 on error
Peng Hao99434502018-10-14 07:09:56 +08004464
Peng Hao0804c842018-10-14 07:09:55 +08004465Coalesced I/O is a performance optimization that defers hardware
Peng Hao99434502018-10-14 07:09:56 +08004466register write emulation so that userspace exits are avoided. It is
4467typically used to reduce the overhead of emulating frequently accessed
4468hardware registers.
4469
Peng Hao0804c842018-10-14 07:09:55 +08004470When a hardware register is configured for coalesced I/O, write accesses
Peng Hao99434502018-10-14 07:09:56 +08004471do not exit to userspace and their value is recorded in a ring buffer
4472that is shared between kernel and userspace.
4473
Peng Hao0804c842018-10-14 07:09:55 +08004474Coalesced I/O is used if one or more write accesses to a hardware
Peng Hao99434502018-10-14 07:09:56 +08004475register can be deferred until a read or a write to another hardware
4476register on the same device. This last access will cause a vmexit and
4477userspace will process accesses from the ring buffer before emulating
Peng Hao0804c842018-10-14 07:09:55 +08004478it. That will avoid exiting to userspace on repeated writes.
4479
4480Coalesced pio is based on coalesced mmio. There is little difference
4481between coalesced mmio and pio except that coalesced pio records accesses
4482to I/O ports.
Peng Hao99434502018-10-14 07:09:56 +08004483
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +020044844.117 KVM_CLEAR_DIRTY_LOG (vm ioctl)
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004485------------------------------------
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02004486
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004487:Capability: KVM_CAP_MANUAL_DIRTY_LOG_PROTECT2
4488:Architectures: x86, arm, arm64, mips
4489:Type: vm ioctl
Zenghui Yu01ead842020-12-08 12:34:39 +08004490:Parameters: struct kvm_clear_dirty_log (in)
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004491:Returns: 0 on success, -1 on error
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02004492
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004493::
4494
4495 /* for KVM_CLEAR_DIRTY_LOG */
4496 struct kvm_clear_dirty_log {
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02004497 __u32 slot;
4498 __u32 num_pages;
4499 __u64 first_page;
4500 union {
4501 void __user *dirty_bitmap; /* one bit per page */
4502 __u64 padding;
4503 };
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004504 };
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02004505
4506The ioctl clears the dirty status of pages in a memory slot, according to
4507the bitmap that is passed in struct kvm_clear_dirty_log's dirty_bitmap
4508field. Bit 0 of the bitmap corresponds to page "first_page" in the
4509memory slot, and num_pages is the size in bits of the input bitmap.
Paolo Bonzini76d58e02019-04-17 15:28:44 +02004510first_page must be a multiple of 64; num_pages must also be a multiple of
451164 unless first_page + num_pages is the size of the memory slot. For each
4512bit that is set in the input bitmap, the corresponding page is marked "clean"
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02004513in KVM's dirty bitmap, and dirty tracking is re-enabled for that page
4514(for example via write-protection, or by clearing the dirty bit in
4515a page table entry).
4516
Zenghui Yu01ead842020-12-08 12:34:39 +08004517If KVM_CAP_MULTI_ADDRESS_SPACE is available, bits 16-31 of slot field specifies
4518the address space for which you want to clear the dirty status. See
4519KVM_SET_USER_MEMORY_REGION for details on the usage of slot field.
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02004520
Peter Xud7547c52019-05-08 17:15:47 +08004521This ioctl is mostly useful when KVM_CAP_MANUAL_DIRTY_LOG_PROTECT2
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02004522is enabled; for more information, see the description of the capability.
4523However, it can always be used as long as KVM_CHECK_EXTENSION confirms
Peter Xud7547c52019-05-08 17:15:47 +08004524that KVM_CAP_MANUAL_DIRTY_LOG_PROTECT2 is present.
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02004525
Vitaly Kuznetsov2bc39972018-12-10 18:21:56 +010045264.118 KVM_GET_SUPPORTED_HV_CPUID
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004527--------------------------------
Vitaly Kuznetsov2bc39972018-12-10 18:21:56 +01004528
Vitaly Kuznetsovc21d54f2020-09-29 17:09:43 +02004529:Capability: KVM_CAP_HYPERV_CPUID (vcpu), KVM_CAP_SYS_HYPERV_CPUID (system)
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004530:Architectures: x86
Vitaly Kuznetsovc21d54f2020-09-29 17:09:43 +02004531:Type: system ioctl, vcpu ioctl
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004532:Parameters: struct kvm_cpuid2 (in/out)
4533:Returns: 0 on success, -1 on error
Vitaly Kuznetsov2bc39972018-12-10 18:21:56 +01004534
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004535::
4536
4537 struct kvm_cpuid2 {
Vitaly Kuznetsov2bc39972018-12-10 18:21:56 +01004538 __u32 nent;
4539 __u32 padding;
4540 struct kvm_cpuid_entry2 entries[0];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004541 };
Vitaly Kuznetsov2bc39972018-12-10 18:21:56 +01004542
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004543 struct kvm_cpuid_entry2 {
Vitaly Kuznetsov2bc39972018-12-10 18:21:56 +01004544 __u32 function;
4545 __u32 index;
4546 __u32 flags;
4547 __u32 eax;
4548 __u32 ebx;
4549 __u32 ecx;
4550 __u32 edx;
4551 __u32 padding[3];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004552 };
Vitaly Kuznetsov2bc39972018-12-10 18:21:56 +01004553
4554This ioctl returns x86 cpuid features leaves related to Hyper-V emulation in
4555KVM. Userspace can use the information returned by this ioctl to construct
4556cpuid information presented to guests consuming Hyper-V enlightenments (e.g.
4557Windows or Hyper-V guests).
4558
4559CPUID feature leaves returned by this ioctl are defined by Hyper-V Top Level
4560Functional Specification (TLFS). These leaves can't be obtained with
4561KVM_GET_SUPPORTED_CPUID ioctl because some of them intersect with KVM feature
4562leaves (0x40000000, 0x40000001).
4563
4564Currently, the following list of CPUID leaves are returned:
Lukas Bulwahn356c7552021-01-04 10:59:38 +01004565
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004566 - HYPERV_CPUID_VENDOR_AND_MAX_FUNCTIONS
4567 - HYPERV_CPUID_INTERFACE
4568 - HYPERV_CPUID_VERSION
4569 - HYPERV_CPUID_FEATURES
4570 - HYPERV_CPUID_ENLIGHTMENT_INFO
4571 - HYPERV_CPUID_IMPLEMENT_LIMITS
4572 - HYPERV_CPUID_NESTED_FEATURES
Vitaly Kuznetsovb44f50d2020-09-24 16:57:51 +02004573 - HYPERV_CPUID_SYNDBG_VENDOR_AND_MAX_FUNCTIONS
4574 - HYPERV_CPUID_SYNDBG_INTERFACE
4575 - HYPERV_CPUID_SYNDBG_PLATFORM_CAPABILITIES
Vitaly Kuznetsov2bc39972018-12-10 18:21:56 +01004576
Vitaly Kuznetsovb44f50d2020-09-24 16:57:51 +02004577Userspace invokes KVM_GET_SUPPORTED_HV_CPUID by passing a kvm_cpuid2 structure
Vitaly Kuznetsov2bc39972018-12-10 18:21:56 +01004578with the 'nent' field indicating the number of entries in the variable-size
4579array 'entries'. If the number of entries is too low to describe all Hyper-V
4580feature leaves, an error (E2BIG) is returned. If the number is more or equal
4581to the number of Hyper-V feature leaves, the 'nent' field is adjusted to the
4582number of valid entries in the 'entries' array, which is then filled.
4583
4584'index' and 'flags' fields in 'struct kvm_cpuid_entry2' are currently reserved,
4585userspace should not expect to get any particular value there.
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02004586
Vitaly Kuznetsovc21d54f2020-09-29 17:09:43 +02004587Note, vcpu version of KVM_GET_SUPPORTED_HV_CPUID is currently deprecated. Unlike
4588system ioctl which exposes all supported feature bits unconditionally, vcpu
4589version has the following quirks:
Lukas Bulwahn356c7552021-01-04 10:59:38 +01004590
Vitaly Kuznetsovc21d54f2020-09-29 17:09:43 +02004591- HYPERV_CPUID_NESTED_FEATURES leaf and HV_X64_ENLIGHTENED_VMCS_RECOMMENDED
4592 feature bit are only exposed when Enlightened VMCS was previously enabled
4593 on the corresponding vCPU (KVM_CAP_HYPERV_ENLIGHTENED_VMCS).
4594- HV_STIMER_DIRECT_MODE_AVAILABLE bit is only exposed with in-kernel LAPIC.
4595 (presumes KVM_CREATE_IRQCHIP has already been called).
4596
Dave Martin50036ad2018-09-28 14:39:27 +010045974.119 KVM_ARM_VCPU_FINALIZE
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004598---------------------------
Dave Martin50036ad2018-09-28 14:39:27 +01004599
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004600:Architectures: arm, arm64
4601:Type: vcpu ioctl
4602:Parameters: int feature (in)
4603:Returns: 0 on success, -1 on error
4604
Dave Martin50036ad2018-09-28 14:39:27 +01004605Errors:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004606
4607 ====== ==============================================================
4608 EPERM feature not enabled, needs configuration, or already finalized
4609 EINVAL feature unknown or not present
4610 ====== ==============================================================
Dave Martin50036ad2018-09-28 14:39:27 +01004611
4612Recognised values for feature:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004613
4614 ===== ===========================================
Dave Martin9df2d662019-04-12 13:28:05 +01004615 arm64 KVM_ARM_VCPU_SVE (requires KVM_CAP_ARM_SVE)
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004616 ===== ===========================================
Dave Martin50036ad2018-09-28 14:39:27 +01004617
4618Finalizes the configuration of the specified vcpu feature.
4619
4620The vcpu must already have been initialised, enabling the affected feature, by
4621means of a successful KVM_ARM_VCPU_INIT call with the appropriate flag set in
4622features[].
4623
4624For affected vcpu features, this is a mandatory step that must be performed
4625before the vcpu is fully usable.
4626
4627Between KVM_ARM_VCPU_INIT and KVM_ARM_VCPU_FINALIZE, the feature may be
4628configured by use of ioctls such as KVM_SET_ONE_REG. The exact configuration
4629that should be performaned and how to do it are feature-dependent.
4630
4631Other calls that depend on a particular feature being finalized, such as
4632KVM_RUN, KVM_GET_REG_LIST, KVM_GET_ONE_REG and KVM_SET_ONE_REG, will fail with
4633-EPERM unless the feature has already been finalized by means of a
4634KVM_ARM_VCPU_FINALIZE call.
4635
4636See KVM_ARM_VCPU_INIT for details of vcpu features that require finalization
4637using this ioctl.
4638
Eric Hankland66bb8a02019-07-10 18:25:15 -070046394.120 KVM_SET_PMU_EVENT_FILTER
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004640------------------------------
Eric Hankland66bb8a02019-07-10 18:25:15 -07004641
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004642:Capability: KVM_CAP_PMU_EVENT_FILTER
4643:Architectures: x86
4644:Type: vm ioctl
4645:Parameters: struct kvm_pmu_event_filter (in)
4646:Returns: 0 on success, -1 on error
Eric Hankland66bb8a02019-07-10 18:25:15 -07004647
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004648::
4649
4650 struct kvm_pmu_event_filter {
Eric Hankland30cd8602019-07-18 11:38:18 -07004651 __u32 action;
4652 __u32 nevents;
4653 __u32 fixed_counter_bitmap;
4654 __u32 flags;
4655 __u32 pad[4];
4656 __u64 events[0];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004657 };
Eric Hankland66bb8a02019-07-10 18:25:15 -07004658
4659This ioctl restricts the set of PMU events that the guest can program.
4660The argument holds a list of events which will be allowed or denied.
4661The eventsel+umask of each event the guest attempts to program is compared
4662against the events field to determine whether the guest should have access.
Eric Hankland30cd8602019-07-18 11:38:18 -07004663The events field only controls general purpose counters; fixed purpose
4664counters are controlled by the fixed_counter_bitmap.
4665
4666No flags are defined yet, the field must be zero.
Eric Hankland66bb8a02019-07-10 18:25:15 -07004667
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004668Valid values for 'action'::
4669
4670 #define KVM_PMU_EVENT_ALLOW 0
4671 #define KVM_PMU_EVENT_DENY 1
Eric Hankland66bb8a02019-07-10 18:25:15 -07004672
Bharata B Rao22945682019-11-25 08:36:30 +053046734.121 KVM_PPC_SVM_OFF
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004674---------------------
Bharata B Rao22945682019-11-25 08:36:30 +05304675
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004676:Capability: basic
4677:Architectures: powerpc
4678:Type: vm ioctl
4679:Parameters: none
4680:Returns: 0 on successful completion,
4681
Bharata B Rao22945682019-11-25 08:36:30 +05304682Errors:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004683
4684 ====== ================================================================
4685 EINVAL if ultravisor failed to terminate the secure guest
4686 ENOMEM if hypervisor failed to allocate new radix page tables for guest
4687 ====== ================================================================
Bharata B Rao22945682019-11-25 08:36:30 +05304688
4689This ioctl is used to turn off the secure mode of the guest or transition
4690the guest from secure mode to normal mode. This is invoked when the guest
4691is reset. This has no effect if called for a normal guest.
4692
4693This ioctl issues an ultravisor call to terminate the secure guest,
4694unpins the VPA pages and releases all the device pages that are used to
4695track the secure pages by hypervisor.
Eric Hankland66bb8a02019-07-10 18:25:15 -07004696
Janosch Frank7de3f142020-01-31 05:02:02 -050046974.122 KVM_S390_NORMAL_RESET
Christian Borntraegera93236f2020-02-24 11:15:59 +01004698---------------------------
Janosch Frank7de3f142020-01-31 05:02:02 -05004699
Christian Borntraegera93236f2020-02-24 11:15:59 +01004700:Capability: KVM_CAP_S390_VCPU_RESETS
4701:Architectures: s390
4702:Type: vcpu ioctl
4703:Parameters: none
4704:Returns: 0
Janosch Frank7de3f142020-01-31 05:02:02 -05004705
4706This ioctl resets VCPU registers and control structures according to
4707the cpu reset definition in the POP (Principles Of Operation).
4708
47094.123 KVM_S390_INITIAL_RESET
Christian Borntraegera93236f2020-02-24 11:15:59 +01004710----------------------------
Janosch Frank7de3f142020-01-31 05:02:02 -05004711
Christian Borntraegera93236f2020-02-24 11:15:59 +01004712:Capability: none
4713:Architectures: s390
4714:Type: vcpu ioctl
4715:Parameters: none
4716:Returns: 0
Janosch Frank7de3f142020-01-31 05:02:02 -05004717
4718This ioctl resets VCPU registers and control structures according to
4719the initial cpu reset definition in the POP. However, the cpu is not
4720put into ESA mode. This reset is a superset of the normal reset.
4721
47224.124 KVM_S390_CLEAR_RESET
Christian Borntraegera93236f2020-02-24 11:15:59 +01004723--------------------------
Janosch Frank7de3f142020-01-31 05:02:02 -05004724
Christian Borntraegera93236f2020-02-24 11:15:59 +01004725:Capability: KVM_CAP_S390_VCPU_RESETS
4726:Architectures: s390
4727:Type: vcpu ioctl
4728:Parameters: none
4729:Returns: 0
Janosch Frank7de3f142020-01-31 05:02:02 -05004730
4731This ioctl resets VCPU registers and control structures according to
4732the clear cpu reset definition in the POP. However, the cpu is not put
4733into ESA mode. This reset is a superset of the initial reset.
4734
4735
Janosch Frank04ed89d2019-11-08 05:05:26 -050047364.125 KVM_S390_PV_COMMAND
4737-------------------------
4738
4739:Capability: KVM_CAP_S390_PROTECTED
4740:Architectures: s390
4741:Type: vm ioctl
4742:Parameters: struct kvm_pv_cmd
4743:Returns: 0 on success, < 0 on error
4744
4745::
4746
4747 struct kvm_pv_cmd {
4748 __u32 cmd; /* Command to be executed */
4749 __u16 rc; /* Ultravisor return code */
4750 __u16 rrc; /* Ultravisor return reason code */
4751 __u64 data; /* Data or address */
4752 __u32 flags; /* flags for future extensions. Must be 0 for now */
4753 __u32 reserved[3];
4754 };
4755
4756cmd values:
4757
4758KVM_PV_ENABLE
4759 Allocate memory and register the VM with the Ultravisor, thereby
4760 donating memory to the Ultravisor that will become inaccessible to
4761 KVM. All existing CPUs are converted to protected ones. After this
4762 command has succeeded, any CPU added via hotplug will become
4763 protected during its creation as well.
4764
Christian Borntraeger7a265362020-03-27 08:06:42 +01004765 Errors:
4766
4767 ===== =============================
4768 EINTR an unmasked signal is pending
4769 ===== =============================
4770
Janosch Frank04ed89d2019-11-08 05:05:26 -05004771KVM_PV_DISABLE
4772
4773 Deregister the VM from the Ultravisor and reclaim the memory that
4774 had been donated to the Ultravisor, making it usable by the kernel
4775 again. All registered VCPUs are converted back to non-protected
4776 ones.
4777
4778KVM_PV_VM_SET_SEC_PARMS
4779 Pass the image header from VM memory to the Ultravisor in
4780 preparation of image unpacking and verification.
4781
4782KVM_PV_VM_UNPACK
4783 Unpack (protect and decrypt) a page of the encrypted boot image.
4784
4785KVM_PV_VM_VERIFY
4786 Verify the integrity of the unpacked image. Only if this succeeds,
4787 KVM is allowed to start protected VCPUs.
4788
Emanuele Giuseppe Esposito24e74752021-03-16 18:08:14 +010047894.126 KVM_XEN_HVM_SET_ATTR
David Woodhousee1f68162020-12-04 09:03:56 +00004790--------------------------
4791
4792:Capability: KVM_CAP_XEN_HVM / KVM_XEN_HVM_CONFIG_SHARED_INFO
4793:Architectures: x86
4794:Type: vm ioctl
4795:Parameters: struct kvm_xen_hvm_attr
4796:Returns: 0 on success, < 0 on error
4797
4798::
4799
4800 struct kvm_xen_hvm_attr {
4801 __u16 type;
4802 __u16 pad[3];
4803 union {
4804 __u8 long_mode;
4805 __u8 vector;
4806 struct {
4807 __u64 gfn;
4808 } shared_info;
4809 __u64 pad[4];
4810 } u;
4811 };
4812
4813type values:
4814
4815KVM_XEN_ATTR_TYPE_LONG_MODE
4816 Sets the ABI mode of the VM to 32-bit or 64-bit (long mode). This
4817 determines the layout of the shared info pages exposed to the VM.
4818
4819KVM_XEN_ATTR_TYPE_SHARED_INFO
4820 Sets the guest physical frame number at which the Xen "shared info"
4821 page resides. Note that although Xen places vcpu_info for the first
4822 32 vCPUs in the shared_info page, KVM does not automatically do so
4823 and instead requires that KVM_XEN_VCPU_ATTR_TYPE_VCPU_INFO be used
4824 explicitly even when the vcpu_info for a given vCPU resides at the
4825 "default" location in the shared_info page. This is because KVM is
4826 not aware of the Xen CPU id which is used as the index into the
4827 vcpu_info[] array, so cannot know the correct default location.
4828
4829KVM_XEN_ATTR_TYPE_UPCALL_VECTOR
4830 Sets the exception vector used to deliver Xen event channel upcalls.
4831
Emanuele Giuseppe Esposito24e74752021-03-16 18:08:14 +010048324.127 KVM_XEN_HVM_GET_ATTR
David Woodhousee1f68162020-12-04 09:03:56 +00004833--------------------------
4834
4835:Capability: KVM_CAP_XEN_HVM / KVM_XEN_HVM_CONFIG_SHARED_INFO
4836:Architectures: x86
4837:Type: vm ioctl
4838:Parameters: struct kvm_xen_hvm_attr
4839:Returns: 0 on success, < 0 on error
4840
4841Allows Xen VM attributes to be read. For the structure and types,
4842see KVM_XEN_HVM_SET_ATTR above.
4843
Emanuele Giuseppe Esposito24e74752021-03-16 18:08:14 +010048444.128 KVM_XEN_VCPU_SET_ATTR
David Woodhousee1f68162020-12-04 09:03:56 +00004845---------------------------
4846
4847:Capability: KVM_CAP_XEN_HVM / KVM_XEN_HVM_CONFIG_SHARED_INFO
4848:Architectures: x86
4849:Type: vcpu ioctl
4850:Parameters: struct kvm_xen_vcpu_attr
4851:Returns: 0 on success, < 0 on error
4852
4853::
4854
4855 struct kvm_xen_vcpu_attr {
4856 __u16 type;
4857 __u16 pad[3];
4858 union {
4859 __u64 gpa;
4860 __u64 pad[4];
David Woodhouse30b5c852021-03-01 12:53:09 +00004861 struct {
4862 __u64 state;
4863 __u64 state_entry_time;
4864 __u64 time_running;
4865 __u64 time_runnable;
4866 __u64 time_blocked;
4867 __u64 time_offline;
4868 } runstate;
David Woodhousee1f68162020-12-04 09:03:56 +00004869 } u;
4870 };
4871
4872type values:
4873
4874KVM_XEN_VCPU_ATTR_TYPE_VCPU_INFO
4875 Sets the guest physical address of the vcpu_info for a given vCPU.
4876
4877KVM_XEN_VCPU_ATTR_TYPE_VCPU_TIME_INFO
4878 Sets the guest physical address of an additional pvclock structure
4879 for a given vCPU. This is typically used for guest vsyscall support.
4880
David Woodhouse30b5c852021-03-01 12:53:09 +00004881KVM_XEN_VCPU_ATTR_TYPE_RUNSTATE_ADDR
4882 Sets the guest physical address of the vcpu_runstate_info for a given
4883 vCPU. This is how a Xen guest tracks CPU state such as steal time.
4884
4885KVM_XEN_VCPU_ATTR_TYPE_RUNSTATE_CURRENT
4886 Sets the runstate (RUNSTATE_running/_runnable/_blocked/_offline) of
4887 the given vCPU from the .u.runstate.state member of the structure.
4888 KVM automatically accounts running and runnable time but blocked
4889 and offline states are only entered explicitly.
4890
4891KVM_XEN_VCPU_ATTR_TYPE_RUNSTATE_DATA
4892 Sets all fields of the vCPU runstate data from the .u.runstate member
4893 of the structure, including the current runstate. The state_entry_time
4894 must equal the sum of the other four times.
4895
4896KVM_XEN_VCPU_ATTR_TYPE_RUNSTATE_ADJUST
4897 This *adds* the contents of the .u.runstate members of the structure
4898 to the corresponding members of the given vCPU's runstate data, thus
4899 permitting atomic adjustments to the runstate times. The adjustment
4900 to the state_entry_time must equal the sum of the adjustments to the
4901 other four times. The state field must be set to -1, or to a valid
4902 runstate value (RUNSTATE_running, RUNSTATE_runnable, RUNSTATE_blocked
4903 or RUNSTATE_offline) to set the current accounted state as of the
4904 adjusted state_entry_time.
4905
Emanuele Giuseppe Esposito24e74752021-03-16 18:08:14 +010049064.129 KVM_XEN_VCPU_GET_ATTR
Paolo Bonzini9294b8a2021-02-09 05:07:45 -05004907---------------------------
David Woodhousee1f68162020-12-04 09:03:56 +00004908
4909:Capability: KVM_CAP_XEN_HVM / KVM_XEN_HVM_CONFIG_SHARED_INFO
4910:Architectures: x86
4911:Type: vcpu ioctl
4912:Parameters: struct kvm_xen_vcpu_attr
4913:Returns: 0 on success, < 0 on error
4914
4915Allows Xen vCPU attributes to be read. For the structure and types,
4916see KVM_XEN_VCPU_SET_ATTR above.
Janosch Frank04ed89d2019-11-08 05:05:26 -05004917
David Woodhouse30b5c852021-03-01 12:53:09 +00004918The KVM_XEN_VCPU_ATTR_TYPE_RUNSTATE_ADJUST type may not be used
4919with the KVM_XEN_VCPU_GET_ATTR ioctl.
4920
Avi Kivity9c1b96e2009-06-09 12:37:58 +030049215. The kvm_run structure
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004922========================
Avi Kivity9c1b96e2009-06-09 12:37:58 +03004923
4924Application code obtains a pointer to the kvm_run structure by
4925mmap()ing a vcpu fd. From that point, application code can control
4926execution by changing fields in kvm_run prior to calling the KVM_RUN
4927ioctl, and obtain information about the reason KVM_RUN returned by
4928looking up structure members.
4929
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004930::
4931
4932 struct kvm_run {
Avi Kivity9c1b96e2009-06-09 12:37:58 +03004933 /* in */
4934 __u8 request_interrupt_window;
4935
4936Request that KVM_RUN return when it becomes possible to inject external
4937interrupts into the guest. Useful in conjunction with KVM_INTERRUPT.
4938
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004939::
4940
Paolo Bonzini460df4c2017-02-08 11:50:15 +01004941 __u8 immediate_exit;
4942
4943This field is polled once when KVM_RUN starts; if non-zero, KVM_RUN
4944exits immediately, returning -EINTR. In the common scenario where a
4945signal is used to "kick" a VCPU out of KVM_RUN, this field can be used
4946to avoid usage of KVM_SET_SIGNAL_MASK, which has worse scalability.
4947Rather than blocking the signal outside KVM_RUN, userspace can set up
4948a signal handler that sets run->immediate_exit to a non-zero value.
4949
4950This field is ignored if KVM_CAP_IMMEDIATE_EXIT is not available.
4951
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004952::
4953
Paolo Bonzini460df4c2017-02-08 11:50:15 +01004954 __u8 padding1[6];
Avi Kivity9c1b96e2009-06-09 12:37:58 +03004955
4956 /* out */
4957 __u32 exit_reason;
4958
4959When KVM_RUN has returned successfully (return value 0), this informs
4960application code why KVM_RUN has returned. Allowable values for this
4961field are detailed below.
4962
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004963::
4964
Avi Kivity9c1b96e2009-06-09 12:37:58 +03004965 __u8 ready_for_interrupt_injection;
4966
4967If request_interrupt_window has been specified, this field indicates
4968an interrupt can be injected now with KVM_INTERRUPT.
4969
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004970::
4971
Avi Kivity9c1b96e2009-06-09 12:37:58 +03004972 __u8 if_flag;
4973
4974The value of the current interrupt flag. Only valid if in-kernel
4975local APIC is not used.
4976
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004977::
4978
Paolo Bonzinif0778252015-04-01 15:06:40 +02004979 __u16 flags;
4980
4981More architecture-specific flags detailing state of the VCPU that may
Chenyi Qiang96564d72021-02-26 15:55:41 +08004982affect the device's behavior. Current defined flags::
4983
Chenyi Qiangc32b1b892020-11-06 17:03:15 +08004984 /* x86, set if the VCPU is in system management mode */
4985 #define KVM_RUN_X86_SMM (1 << 0)
4986 /* x86, set if bus lock detected in VM */
4987 #define KVM_RUN_BUS_LOCK (1 << 1)
Avi Kivity9c1b96e2009-06-09 12:37:58 +03004988
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004989::
4990
Avi Kivity9c1b96e2009-06-09 12:37:58 +03004991 /* in (pre_kvm_run), out (post_kvm_run) */
4992 __u64 cr8;
4993
4994The value of the cr8 register. Only valid if in-kernel local APIC is
4995not used. Both input and output.
4996
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004997::
4998
Avi Kivity9c1b96e2009-06-09 12:37:58 +03004999 __u64 apic_base;
5000
5001The value of the APIC BASE msr. Only valid if in-kernel local
5002APIC is not used. Both input and output.
5003
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005004::
5005
Avi Kivity9c1b96e2009-06-09 12:37:58 +03005006 union {
5007 /* KVM_EXIT_UNKNOWN */
5008 struct {
5009 __u64 hardware_exit_reason;
5010 } hw;
5011
5012If exit_reason is KVM_EXIT_UNKNOWN, the vcpu has exited due to unknown
5013reasons. Further architecture-specific information is available in
5014hardware_exit_reason.
5015
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005016::
5017
Avi Kivity9c1b96e2009-06-09 12:37:58 +03005018 /* KVM_EXIT_FAIL_ENTRY */
5019 struct {
5020 __u64 hardware_entry_failure_reason;
Jim Mattson1aa561b2020-06-03 16:56:21 -07005021 __u32 cpu; /* if KVM_LAST_CPU */
Avi Kivity9c1b96e2009-06-09 12:37:58 +03005022 } fail_entry;
5023
5024If exit_reason is KVM_EXIT_FAIL_ENTRY, the vcpu could not be run due
5025to unknown reasons. Further architecture-specific information is
5026available in hardware_entry_failure_reason.
5027
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005028::
5029
Avi Kivity9c1b96e2009-06-09 12:37:58 +03005030 /* KVM_EXIT_EXCEPTION */
5031 struct {
5032 __u32 exception;
5033 __u32 error_code;
5034 } ex;
5035
5036Unused.
5037
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005038::
5039
Avi Kivity9c1b96e2009-06-09 12:37:58 +03005040 /* KVM_EXIT_IO */
5041 struct {
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005042 #define KVM_EXIT_IO_IN 0
5043 #define KVM_EXIT_IO_OUT 1
Avi Kivity9c1b96e2009-06-09 12:37:58 +03005044 __u8 direction;
5045 __u8 size; /* bytes */
5046 __u16 port;
5047 __u32 count;
5048 __u64 data_offset; /* relative to kvm_run start */
5049 } io;
5050
Wu Fengguang2044892d2009-12-24 09:04:16 +08005051If exit_reason is KVM_EXIT_IO, then the vcpu has
Avi Kivity9c1b96e2009-06-09 12:37:58 +03005052executed a port I/O instruction which could not be satisfied by kvm.
5053data_offset describes where the data is located (KVM_EXIT_IO_OUT) or
5054where kvm expects application code to place the data for the next
Wu Fengguang2044892d2009-12-24 09:04:16 +08005055KVM_RUN invocation (KVM_EXIT_IO_IN). Data format is a packed array.
Avi Kivity9c1b96e2009-06-09 12:37:58 +03005056
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005057::
5058
Alex Bennée8ab30c12015-07-07 17:29:53 +01005059 /* KVM_EXIT_DEBUG */
Avi Kivity9c1b96e2009-06-09 12:37:58 +03005060 struct {
5061 struct kvm_debug_exit_arch arch;
5062 } debug;
5063
Alex Bennée8ab30c12015-07-07 17:29:53 +01005064If the exit_reason is KVM_EXIT_DEBUG, then a vcpu is processing a debug event
5065for which architecture specific information is returned.
Avi Kivity9c1b96e2009-06-09 12:37:58 +03005066
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005067::
5068
Avi Kivity9c1b96e2009-06-09 12:37:58 +03005069 /* KVM_EXIT_MMIO */
5070 struct {
5071 __u64 phys_addr;
5072 __u8 data[8];
5073 __u32 len;
5074 __u8 is_write;
5075 } mmio;
5076
Wu Fengguang2044892d2009-12-24 09:04:16 +08005077If exit_reason is KVM_EXIT_MMIO, then the vcpu has
Avi Kivity9c1b96e2009-06-09 12:37:58 +03005078executed a memory-mapped I/O instruction which could not be satisfied
5079by kvm. The 'data' member contains the written data if 'is_write' is
5080true, and should be filled by application code otherwise.
5081
Christoffer Dall6acdb162014-01-28 08:28:42 -08005082The 'data' member contains, in its first 'len' bytes, the value as it would
5083appear if the VCPU performed a load or store of the appropriate width directly
5084to the byte array.
5085
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005086.. note::
5087
David Woodhousee1f68162020-12-04 09:03:56 +00005088 For KVM_EXIT_IO, KVM_EXIT_MMIO, KVM_EXIT_OSI, KVM_EXIT_PAPR, KVM_EXIT_XEN,
Alexander Graf1ae09952020-09-25 16:34:16 +02005089 KVM_EXIT_EPR, KVM_EXIT_X86_RDMSR and KVM_EXIT_X86_WRMSR the corresponding
5090 operations are complete (and guest state is consistent) only after userspace
5091 has re-entered the kernel with KVM_RUN. The kernel side will first finish
David Woodhousee1f68162020-12-04 09:03:56 +00005092 incomplete operations and then check for pending signals.
5093
5094 The pending state of the operation is not preserved in state which is
5095 visible to userspace, thus userspace should ensure that the operation is
5096 completed before performing a live migration. Userspace can re-enter the
5097 guest with an unmasked signal pending or with the immediate_exit field set
5098 to complete pending operations without allowing any further instructions
5099 to be executed.
Marcelo Tosatti67961342010-02-13 16:10:26 -02005100
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005101::
5102
Avi Kivity9c1b96e2009-06-09 12:37:58 +03005103 /* KVM_EXIT_HYPERCALL */
5104 struct {
5105 __u64 nr;
5106 __u64 args[6];
5107 __u64 ret;
5108 __u32 longmode;
5109 __u32 pad;
5110 } hypercall;
5111
Avi Kivity647dc492010-04-01 14:39:21 +03005112Unused. This was once used for 'hypercall to userspace'. To implement
5113such functionality, use KVM_EXIT_IO (x86) or KVM_EXIT_MMIO (all except s390).
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005114
5115.. note:: KVM_EXIT_IO is significantly faster than KVM_EXIT_MMIO.
5116
5117::
Avi Kivity9c1b96e2009-06-09 12:37:58 +03005118
5119 /* KVM_EXIT_TPR_ACCESS */
5120 struct {
5121 __u64 rip;
5122 __u32 is_write;
5123 __u32 pad;
5124 } tpr_access;
5125
5126To be documented (KVM_TPR_ACCESS_REPORTING).
5127
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005128::
5129
Avi Kivity9c1b96e2009-06-09 12:37:58 +03005130 /* KVM_EXIT_S390_SIEIC */
5131 struct {
5132 __u8 icptcode;
5133 __u64 mask; /* psw upper half */
5134 __u64 addr; /* psw lower half */
5135 __u16 ipa;
5136 __u32 ipb;
5137 } s390_sieic;
5138
5139s390 specific.
5140
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005141::
5142
Avi Kivity9c1b96e2009-06-09 12:37:58 +03005143 /* KVM_EXIT_S390_RESET */
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005144 #define KVM_S390_RESET_POR 1
5145 #define KVM_S390_RESET_CLEAR 2
5146 #define KVM_S390_RESET_SUBSYSTEM 4
5147 #define KVM_S390_RESET_CPU_INIT 8
5148 #define KVM_S390_RESET_IPL 16
Avi Kivity9c1b96e2009-06-09 12:37:58 +03005149 __u64 s390_reset_flags;
5150
5151s390 specific.
5152
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005153::
5154
Carsten Ottee168bf82012-01-04 10:25:22 +01005155 /* KVM_EXIT_S390_UCONTROL */
5156 struct {
5157 __u64 trans_exc_code;
5158 __u32 pgm_code;
5159 } s390_ucontrol;
5160
5161s390 specific. A page fault has occurred for a user controlled virtual
5162machine (KVM_VM_S390_UNCONTROL) on it's host page table that cannot be
5163resolved by the kernel.
5164The program code and the translation exception code that were placed
5165in the cpu's lowcore are presented here as defined by the z Architecture
5166Principles of Operation Book in the Chapter for Dynamic Address Translation
5167(DAT)
5168
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005169::
5170
Avi Kivity9c1b96e2009-06-09 12:37:58 +03005171 /* KVM_EXIT_DCR */
5172 struct {
5173 __u32 dcrn;
5174 __u32 data;
5175 __u8 is_write;
5176 } dcr;
5177
Alexander Grafce91ddc2014-07-28 19:29:13 +02005178Deprecated - was used for 440 KVM.
Avi Kivity9c1b96e2009-06-09 12:37:58 +03005179
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005180::
5181
Alexander Grafad0a0482010-03-24 21:48:30 +01005182 /* KVM_EXIT_OSI */
5183 struct {
5184 __u64 gprs[32];
5185 } osi;
5186
5187MOL uses a special hypercall interface it calls 'OSI'. To enable it, we catch
5188hypercalls and exit with this exit struct that contains all the guest gprs.
5189
5190If exit_reason is KVM_EXIT_OSI, then the vcpu has triggered such a hypercall.
5191Userspace can now handle the hypercall and when it's done modify the gprs as
5192necessary. Upon guest entry all guest GPRs will then be replaced by the values
5193in this struct.
5194
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005195::
5196
Paul Mackerrasde56a942011-06-29 00:21:34 +00005197 /* KVM_EXIT_PAPR_HCALL */
5198 struct {
5199 __u64 nr;
5200 __u64 ret;
5201 __u64 args[9];
5202 } papr_hcall;
5203
5204This is used on 64-bit PowerPC when emulating a pSeries partition,
5205e.g. with the 'pseries' machine type in qemu. It occurs when the
5206guest does a hypercall using the 'sc 1' instruction. The 'nr' field
5207contains the hypercall number (from the guest R3), and 'args' contains
5208the arguments (from the guest R4 - R12). Userspace should put the
5209return code in 'ret' and any extra returned values in args[].
5210The possible hypercalls are defined in the Power Architecture Platform
5211Requirements (PAPR) document available from www.power.org (free
5212developer registration required to access it).
5213
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005214::
5215
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +01005216 /* KVM_EXIT_S390_TSCH */
5217 struct {
5218 __u16 subchannel_id;
5219 __u16 subchannel_nr;
5220 __u32 io_int_parm;
5221 __u32 io_int_word;
5222 __u32 ipb;
5223 __u8 dequeued;
5224 } s390_tsch;
5225
5226s390 specific. This exit occurs when KVM_CAP_S390_CSS_SUPPORT has been enabled
5227and TEST SUBCHANNEL was intercepted. If dequeued is set, a pending I/O
5228interrupt for the target subchannel has been dequeued and subchannel_id,
5229subchannel_nr, io_int_parm and io_int_word contain the parameters for that
5230interrupt. ipb is needed for instruction parameter decoding.
5231
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005232::
5233
Alexander Graf1c810632013-01-04 18:12:48 +01005234 /* KVM_EXIT_EPR */
5235 struct {
5236 __u32 epr;
5237 } epr;
5238
5239On FSL BookE PowerPC chips, the interrupt controller has a fast patch
5240interrupt acknowledge path to the core. When the core successfully
5241delivers an interrupt, it automatically populates the EPR register with
5242the interrupt vector number and acknowledges the interrupt inside
5243the interrupt controller.
5244
5245In case the interrupt controller lives in user space, we need to do
5246the interrupt acknowledge cycle through it to fetch the next to be
5247delivered interrupt vector using this exit.
5248
5249It gets triggered whenever both KVM_CAP_PPC_EPR are enabled and an
5250external interrupt has just been delivered into the guest. User space
5251should put the acknowledged interrupt vector into the 'epr' field.
5252
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005253::
5254
Anup Patel8ad6b632014-04-29 11:24:19 +05305255 /* KVM_EXIT_SYSTEM_EVENT */
5256 struct {
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005257 #define KVM_SYSTEM_EVENT_SHUTDOWN 1
5258 #define KVM_SYSTEM_EVENT_RESET 2
5259 #define KVM_SYSTEM_EVENT_CRASH 3
Anup Patel8ad6b632014-04-29 11:24:19 +05305260 __u32 type;
5261 __u64 flags;
5262 } system_event;
5263
5264If exit_reason is KVM_EXIT_SYSTEM_EVENT then the vcpu has triggered
5265a system-level event using some architecture specific mechanism (hypercall
5266or some special instruction). In case of ARM/ARM64, this is triggered using
5267HVC instruction based PSCI call from the vcpu. The 'type' field describes
5268the system-level event type. The 'flags' field describes architecture
5269specific flags for the system-level event.
5270
Christoffer Dallcf5d31882014-10-16 17:00:18 +02005271Valid values for 'type' are:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005272
5273 - KVM_SYSTEM_EVENT_SHUTDOWN -- the guest has requested a shutdown of the
Christoffer Dallcf5d31882014-10-16 17:00:18 +02005274 VM. Userspace is not obliged to honour this, and if it does honour
5275 this does not need to destroy the VM synchronously (ie it may call
5276 KVM_RUN again before shutdown finally occurs).
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005277 - KVM_SYSTEM_EVENT_RESET -- the guest has requested a reset of the VM.
Christoffer Dallcf5d31882014-10-16 17:00:18 +02005278 As with SHUTDOWN, userspace can choose to ignore the request, or
5279 to schedule the reset to occur in the future and may call KVM_RUN again.
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005280 - KVM_SYSTEM_EVENT_CRASH -- the guest crash occurred and the guest
Andrey Smetanin2ce79182015-07-03 15:01:41 +03005281 has requested a crash condition maintenance. Userspace can choose
5282 to ignore the request, or to gather VM memory core dump and/or
5283 reset/shutdown of the VM.
Christoffer Dallcf5d31882014-10-16 17:00:18 +02005284
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005285::
5286
Steve Rutherford7543a632015-07-29 23:21:41 -07005287 /* KVM_EXIT_IOAPIC_EOI */
5288 struct {
5289 __u8 vector;
5290 } eoi;
5291
5292Indicates that the VCPU's in-kernel local APIC received an EOI for a
5293level-triggered IOAPIC interrupt. This exit only triggers when the
5294IOAPIC is implemented in userspace (i.e. KVM_CAP_SPLIT_IRQCHIP is enabled);
5295the userspace IOAPIC should process the EOI and retrigger the interrupt if
5296it is still asserted. Vector is the LAPIC interrupt vector for which the
5297EOI was received.
5298
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005299::
5300
Andrey Smetanindb3975712015-11-10 15:36:35 +03005301 struct kvm_hyperv_exit {
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005302 #define KVM_EXIT_HYPERV_SYNIC 1
5303 #define KVM_EXIT_HYPERV_HCALL 2
Jon Doronf97f5a52020-05-29 16:45:40 +03005304 #define KVM_EXIT_HYPERV_SYNDBG 3
Andrey Smetanindb3975712015-11-10 15:36:35 +03005305 __u32 type;
Jon Doronf7d31e62020-04-24 14:37:40 +03005306 __u32 pad1;
Andrey Smetanindb3975712015-11-10 15:36:35 +03005307 union {
5308 struct {
5309 __u32 msr;
Jon Doronf7d31e62020-04-24 14:37:40 +03005310 __u32 pad2;
Andrey Smetanindb3975712015-11-10 15:36:35 +03005311 __u64 control;
5312 __u64 evt_page;
5313 __u64 msg_page;
5314 } synic;
Andrey Smetanin83326e42016-02-11 16:45:01 +03005315 struct {
5316 __u64 input;
5317 __u64 result;
5318 __u64 params[2];
5319 } hcall;
Jon Doronf97f5a52020-05-29 16:45:40 +03005320 struct {
5321 __u32 msr;
5322 __u32 pad2;
5323 __u64 control;
5324 __u64 status;
5325 __u64 send_page;
5326 __u64 recv_page;
5327 __u64 pending_page;
5328 } syndbg;
Andrey Smetanindb3975712015-11-10 15:36:35 +03005329 } u;
5330 };
5331 /* KVM_EXIT_HYPERV */
5332 struct kvm_hyperv_exit hyperv;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005333
Andrey Smetanindb3975712015-11-10 15:36:35 +03005334Indicates that the VCPU exits into userspace to process some tasks
5335related to Hyper-V emulation.
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005336
Andrey Smetanindb3975712015-11-10 15:36:35 +03005337Valid values for 'type' are:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005338
5339 - KVM_EXIT_HYPERV_SYNIC -- synchronously notify user-space about
5340
Andrey Smetanindb3975712015-11-10 15:36:35 +03005341Hyper-V SynIC state change. Notification is used to remap SynIC
5342event/message pages and to enable/disable SynIC messages/events processing
5343in userspace.
5344
Jon Doronf97f5a52020-05-29 16:45:40 +03005345 - KVM_EXIT_HYPERV_SYNDBG -- synchronously notify user-space about
5346
5347Hyper-V Synthetic debugger state change. Notification is used to either update
5348the pending_page location or to send a control command (send the buffer located
5349in send_page or recv a buffer to recv_page).
5350
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005351::
5352
Christoffer Dallc7262002019-10-11 13:07:05 +02005353 /* KVM_EXIT_ARM_NISV */
5354 struct {
5355 __u64 esr_iss;
5356 __u64 fault_ipa;
5357 } arm_nisv;
5358
5359Used on arm and arm64 systems. If a guest accesses memory not in a memslot,
5360KVM will typically return to userspace and ask it to do MMIO emulation on its
5361behalf. However, for certain classes of instructions, no instruction decode
5362(direction, length of memory access) is provided, and fetching and decoding
5363the instruction from the VM is overly complicated to live in the kernel.
5364
5365Historically, when this situation occurred, KVM would print a warning and kill
5366the VM. KVM assumed that if the guest accessed non-memslot memory, it was
5367trying to do I/O, which just couldn't be emulated, and the warning message was
5368phrased accordingly. However, what happened more often was that a guest bug
5369caused access outside the guest memory areas which should lead to a more
5370meaningful warning message and an external abort in the guest, if the access
5371did not fall within an I/O window.
5372
5373Userspace implementations can query for KVM_CAP_ARM_NISV_TO_USER, and enable
5374this capability at VM creation. Once this is done, these types of errors will
5375instead return to userspace with KVM_EXIT_ARM_NISV, with the valid bits from
5376the HSR (arm) and ESR_EL2 (arm64) in the esr_iss field, and the faulting IPA
5377in the fault_ipa field. Userspace can either fix up the access if it's
5378actually an I/O access by decoding the instruction from guest memory (if it's
5379very brave) and continue executing the guest, or it can decide to suspend,
5380dump, or restart the guest.
5381
5382Note that KVM does not skip the faulting instruction as it does for
5383KVM_EXIT_MMIO, but userspace has to emulate any change to the processing state
5384if it decides to decode and emulate the instruction.
5385
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005386::
5387
Alexander Graf1ae09952020-09-25 16:34:16 +02005388 /* KVM_EXIT_X86_RDMSR / KVM_EXIT_X86_WRMSR */
5389 struct {
5390 __u8 error; /* user -> kernel */
5391 __u8 pad[7];
5392 __u32 reason; /* kernel -> user */
5393 __u32 index; /* kernel -> user */
5394 __u64 data; /* kernel <-> user */
5395 } msr;
5396
5397Used on x86 systems. When the VM capability KVM_CAP_X86_USER_SPACE_MSR is
5398enabled, MSR accesses to registers that would invoke a #GP by KVM kernel code
5399will instead trigger a KVM_EXIT_X86_RDMSR exit for reads and KVM_EXIT_X86_WRMSR
5400exit for writes.
5401
5402The "reason" field specifies why the MSR trap occurred. User space will only
5403receive MSR exit traps when a particular reason was requested during through
5404ENABLE_CAP. Currently valid exit reasons are:
5405
5406 KVM_MSR_EXIT_REASON_UNKNOWN - access to MSR that is unknown to KVM
5407 KVM_MSR_EXIT_REASON_INVAL - access to invalid MSRs or reserved bits
Alexander Graf1a1552542020-09-25 16:34:21 +02005408 KVM_MSR_EXIT_REASON_FILTER - access blocked by KVM_X86_SET_MSR_FILTER
Alexander Graf1ae09952020-09-25 16:34:16 +02005409
5410For KVM_EXIT_X86_RDMSR, the "index" field tells user space which MSR the guest
5411wants to read. To respond to this request with a successful read, user space
5412writes the respective data into the "data" field and must continue guest
5413execution to ensure the read data is transferred into guest register state.
5414
5415If the RDMSR request was unsuccessful, user space indicates that with a "1" in
5416the "error" field. This will inject a #GP into the guest when the VCPU is
5417executed again.
5418
5419For KVM_EXIT_X86_WRMSR, the "index" field tells user space which MSR the guest
5420wants to write. Once finished processing the event, user space must continue
5421vCPU execution. If the MSR write was unsuccessful, user space also sets the
5422"error" field to "1".
5423
5424::
5425
David Woodhousee1f68162020-12-04 09:03:56 +00005426
5427 struct kvm_xen_exit {
5428 #define KVM_EXIT_XEN_HCALL 1
5429 __u32 type;
5430 union {
5431 struct {
5432 __u32 longmode;
5433 __u32 cpl;
5434 __u64 input;
5435 __u64 result;
5436 __u64 params[6];
5437 } hcall;
5438 } u;
5439 };
5440 /* KVM_EXIT_XEN */
5441 struct kvm_hyperv_exit xen;
5442
5443Indicates that the VCPU exits into userspace to process some tasks
5444related to Xen emulation.
5445
5446Valid values for 'type' are:
5447
5448 - KVM_EXIT_XEN_HCALL -- synchronously notify user-space about Xen hypercall.
5449 Userspace is expected to place the hypercall result into the appropriate
5450 field before invoking KVM_RUN again.
5451
5452::
5453
Avi Kivity9c1b96e2009-06-09 12:37:58 +03005454 /* Fix the size of the union. */
5455 char padding[256];
5456 };
Christian Borntraegerb9e5dc82012-01-11 11:20:30 +01005457
5458 /*
5459 * shared registers between kvm and userspace.
5460 * kvm_valid_regs specifies the register classes set by the host
5461 * kvm_dirty_regs specified the register classes dirtied by userspace
5462 * struct kvm_sync_regs is architecture specific, as well as the
5463 * bits for kvm_valid_regs and kvm_dirty_regs
5464 */
5465 __u64 kvm_valid_regs;
5466 __u64 kvm_dirty_regs;
5467 union {
5468 struct kvm_sync_regs regs;
Ken Hofsass7b7e3952018-01-31 16:03:35 -08005469 char padding[SYNC_REGS_SIZE_BYTES];
Christian Borntraegerb9e5dc82012-01-11 11:20:30 +01005470 } s;
5471
5472If KVM_CAP_SYNC_REGS is defined, these fields allow userspace to access
5473certain guest registers without having to call SET/GET_*REGS. Thus we can
5474avoid some system call overhead if userspace has to handle the exit.
5475Userspace can query the validity of the structure by checking
5476kvm_valid_regs for specific bits. These bits are architecture specific
5477and usually define the validity of a groups of registers. (e.g. one bit
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005478for general purpose registers)
Christian Borntraegerb9e5dc82012-01-11 11:20:30 +01005479
David Hildenbrandd8482c02014-07-29 08:19:26 +02005480Please note that the kernel is allowed to use the kvm_run structure as the
5481primary storage for certain register types. Therefore, the kernel may use the
5482values in kvm_run even if the corresponding bit in kvm_dirty_regs is not set.
5483
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005484::
5485
5486 };
Alexander Graf821246a2011-08-31 10:58:55 +02005487
Jan Kiszka414fa982012-04-24 16:40:15 +02005488
Borislav Petkov9c15bb12013-09-22 16:44:50 +02005489
Paul Mackerras699a0ea2014-06-02 11:02:59 +100054906. Capabilities that can be enabled on vCPUs
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005491============================================
Alexander Graf821246a2011-08-31 10:58:55 +02005492
Cornelia Huck0907c852014-06-27 09:29:26 +02005493There are certain capabilities that change the behavior of the virtual CPU or
5494the virtual machine when enabled. To enable them, please see section 4.37.
5495Below you can find a list of capabilities and what their effect on the vCPU or
5496the virtual machine is when enabling them.
Alexander Graf821246a2011-08-31 10:58:55 +02005497
5498The following information is provided along with the description:
5499
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005500 Architectures:
5501 which instruction set architectures provide this ioctl.
Alexander Graf821246a2011-08-31 10:58:55 +02005502 x86 includes both i386 and x86_64.
5503
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005504 Target:
5505 whether this is a per-vcpu or per-vm capability.
Cornelia Huck0907c852014-06-27 09:29:26 +02005506
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005507 Parameters:
5508 what parameters are accepted by the capability.
Alexander Graf821246a2011-08-31 10:58:55 +02005509
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005510 Returns:
5511 the return value. General error numbers (EBADF, ENOMEM, EINVAL)
Alexander Graf821246a2011-08-31 10:58:55 +02005512 are not detailed, but errors with specific meanings are.
5513
Jan Kiszka414fa982012-04-24 16:40:15 +02005514
Alexander Graf821246a2011-08-31 10:58:55 +020055156.1 KVM_CAP_PPC_OSI
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005516-------------------
Alexander Graf821246a2011-08-31 10:58:55 +02005517
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005518:Architectures: ppc
5519:Target: vcpu
5520:Parameters: none
5521:Returns: 0 on success; -1 on error
Alexander Graf821246a2011-08-31 10:58:55 +02005522
5523This capability enables interception of OSI hypercalls that otherwise would
5524be treated as normal system calls to be injected into the guest. OSI hypercalls
5525were invented by Mac-on-Linux to have a standardized communication mechanism
5526between the guest and the host.
5527
5528When this capability is enabled, KVM_EXIT_OSI can occur.
5529
Jan Kiszka414fa982012-04-24 16:40:15 +02005530
Alexander Graf821246a2011-08-31 10:58:55 +020055316.2 KVM_CAP_PPC_PAPR
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005532--------------------
Alexander Graf821246a2011-08-31 10:58:55 +02005533
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005534:Architectures: ppc
5535:Target: vcpu
5536:Parameters: none
5537:Returns: 0 on success; -1 on error
Alexander Graf821246a2011-08-31 10:58:55 +02005538
5539This capability enables interception of PAPR hypercalls. PAPR hypercalls are
5540done using the hypercall instruction "sc 1".
5541
5542It also sets the guest privilege level to "supervisor" mode. Usually the guest
5543runs in "hypervisor" privilege mode with a few missing features.
5544
5545In addition to the above, it changes the semantics of SDR1. In this mode, the
5546HTAB address part of SDR1 contains an HVA instead of a GPA, as PAPR keeps the
5547HTAB invisible to the guest.
5548
5549When this capability is enabled, KVM_EXIT_PAPR_HCALL can occur.
Scott Wooddc83b8b2011-08-18 15:25:21 -05005550
Jan Kiszka414fa982012-04-24 16:40:15 +02005551
Scott Wooddc83b8b2011-08-18 15:25:21 -050055526.3 KVM_CAP_SW_TLB
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005553------------------
Scott Wooddc83b8b2011-08-18 15:25:21 -05005554
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005555:Architectures: ppc
5556:Target: vcpu
5557:Parameters: args[0] is the address of a struct kvm_config_tlb
5558:Returns: 0 on success; -1 on error
Scott Wooddc83b8b2011-08-18 15:25:21 -05005559
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005560::
5561
5562 struct kvm_config_tlb {
Scott Wooddc83b8b2011-08-18 15:25:21 -05005563 __u64 params;
5564 __u64 array;
5565 __u32 mmu_type;
5566 __u32 array_len;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005567 };
Scott Wooddc83b8b2011-08-18 15:25:21 -05005568
5569Configures the virtual CPU's TLB array, establishing a shared memory area
5570between userspace and KVM. The "params" and "array" fields are userspace
5571addresses of mmu-type-specific data structures. The "array_len" field is an
5572safety mechanism, and should be set to the size in bytes of the memory that
5573userspace has reserved for the array. It must be at least the size dictated
5574by "mmu_type" and "params".
5575
5576While KVM_RUN is active, the shared region is under control of KVM. Its
5577contents are undefined, and any modification by userspace results in
5578boundedly undefined behavior.
5579
5580On return from KVM_RUN, the shared region will reflect the current state of
5581the guest's TLB. If userspace makes any changes, it must call KVM_DIRTY_TLB
5582to tell KVM which entries have been changed, prior to calling KVM_RUN again
5583on this vcpu.
5584
5585For mmu types KVM_MMU_FSL_BOOKE_NOHV and KVM_MMU_FSL_BOOKE_HV:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005586
Scott Wooddc83b8b2011-08-18 15:25:21 -05005587 - The "params" field is of type "struct kvm_book3e_206_tlb_params".
5588 - The "array" field points to an array of type "struct
5589 kvm_book3e_206_tlb_entry".
5590 - The array consists of all entries in the first TLB, followed by all
5591 entries in the second TLB.
5592 - Within a TLB, entries are ordered first by increasing set number. Within a
5593 set, entries are ordered by way (increasing ESEL).
5594 - The hash for determining set number in TLB0 is: (MAS2 >> 12) & (num_sets - 1)
5595 where "num_sets" is the tlb_sizes[] value divided by the tlb_ways[] value.
5596 - The tsize field of mas1 shall be set to 4K on TLB0, even though the
5597 hardware ignores this value for TLB0.
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +01005598
55996.4 KVM_CAP_S390_CSS_SUPPORT
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005600----------------------------
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +01005601
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005602:Architectures: s390
5603:Target: vcpu
5604:Parameters: none
5605:Returns: 0 on success; -1 on error
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +01005606
5607This capability enables support for handling of channel I/O instructions.
5608
5609TEST PENDING INTERRUPTION and the interrupt portion of TEST SUBCHANNEL are
5610handled in-kernel, while the other I/O instructions are passed to userspace.
5611
5612When this capability is enabled, KVM_EXIT_S390_TSCH will occur on TEST
5613SUBCHANNEL intercepts.
Alexander Graf1c810632013-01-04 18:12:48 +01005614
Cornelia Huck0907c852014-06-27 09:29:26 +02005615Note that even though this capability is enabled per-vcpu, the complete
5616virtual machine is affected.
5617
Alexander Graf1c810632013-01-04 18:12:48 +010056186.5 KVM_CAP_PPC_EPR
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005619-------------------
Alexander Graf1c810632013-01-04 18:12:48 +01005620
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005621:Architectures: ppc
5622:Target: vcpu
5623:Parameters: args[0] defines whether the proxy facility is active
5624:Returns: 0 on success; -1 on error
Alexander Graf1c810632013-01-04 18:12:48 +01005625
5626This capability enables or disables the delivery of interrupts through the
5627external proxy facility.
5628
5629When enabled (args[0] != 0), every time the guest gets an external interrupt
5630delivered, it automatically exits into user space with a KVM_EXIT_EPR exit
5631to receive the topmost interrupt vector.
5632
5633When disabled (args[0] == 0), behavior is as if this facility is unsupported.
5634
5635When this capability is enabled, KVM_EXIT_EPR can occur.
Scott Woodeb1e4f42013-04-12 14:08:47 +00005636
56376.6 KVM_CAP_IRQ_MPIC
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005638--------------------
Scott Woodeb1e4f42013-04-12 14:08:47 +00005639
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005640:Architectures: ppc
5641:Parameters: args[0] is the MPIC device fd;
5642 args[1] is the MPIC CPU number for this vcpu
Scott Woodeb1e4f42013-04-12 14:08:47 +00005643
5644This capability connects the vcpu to an in-kernel MPIC device.
Paul Mackerras5975a2e2013-04-27 00:28:37 +00005645
56466.7 KVM_CAP_IRQ_XICS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005647--------------------
Paul Mackerras5975a2e2013-04-27 00:28:37 +00005648
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005649:Architectures: ppc
5650:Target: vcpu
5651:Parameters: args[0] is the XICS device fd;
5652 args[1] is the XICS CPU number (server ID) for this vcpu
Paul Mackerras5975a2e2013-04-27 00:28:37 +00005653
5654This capability connects the vcpu to an in-kernel XICS device.
Cornelia Huck8a366a42014-06-27 11:06:25 +02005655
56566.8 KVM_CAP_S390_IRQCHIP
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005657------------------------
Cornelia Huck8a366a42014-06-27 11:06:25 +02005658
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005659:Architectures: s390
5660:Target: vm
5661:Parameters: none
Cornelia Huck8a366a42014-06-27 11:06:25 +02005662
5663This capability enables the in-kernel irqchip for s390. Please refer to
5664"4.24 KVM_CREATE_IRQCHIP" for details.
Paul Mackerras699a0ea2014-06-02 11:02:59 +10005665
James Hogan5fafd8742014-12-08 23:07:56 +000056666.9 KVM_CAP_MIPS_FPU
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005667--------------------
James Hogan5fafd8742014-12-08 23:07:56 +00005668
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005669:Architectures: mips
5670:Target: vcpu
5671:Parameters: args[0] is reserved for future use (should be 0).
James Hogan5fafd8742014-12-08 23:07:56 +00005672
5673This capability allows the use of the host Floating Point Unit by the guest. It
5674allows the Config1.FP bit to be set to enable the FPU in the guest. Once this is
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005675done the ``KVM_REG_MIPS_FPR_*`` and ``KVM_REG_MIPS_FCR_*`` registers can be
5676accessed (depending on the current guest FPU register mode), and the Status.FR,
James Hogan5fafd8742014-12-08 23:07:56 +00005677Config5.FRE bits are accessible via the KVM API and also from the guest,
5678depending on them being supported by the FPU.
5679
James Hogand952bd02014-12-08 23:07:56 +000056806.10 KVM_CAP_MIPS_MSA
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005681---------------------
James Hogand952bd02014-12-08 23:07:56 +00005682
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005683:Architectures: mips
5684:Target: vcpu
5685:Parameters: args[0] is reserved for future use (should be 0).
James Hogand952bd02014-12-08 23:07:56 +00005686
5687This capability allows the use of the MIPS SIMD Architecture (MSA) by the guest.
5688It allows the Config3.MSAP bit to be set to enable the use of MSA by the guest.
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005689Once this is done the ``KVM_REG_MIPS_VEC_*`` and ``KVM_REG_MIPS_MSA_*``
5690registers can be accessed, and the Config5.MSAEn bit is accessible via the
5691KVM API and also from the guest.
James Hogand952bd02014-12-08 23:07:56 +00005692
Ken Hofsass01643c52018-01-31 16:03:36 -080056936.74 KVM_CAP_SYNC_REGS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005694----------------------
5695
5696:Architectures: s390, x86
5697:Target: s390: always enabled, x86: vcpu
5698:Parameters: none
5699:Returns: x86: KVM_CHECK_EXTENSION returns a bit-array indicating which register
5700 sets are supported
5701 (bitfields defined in arch/x86/include/uapi/asm/kvm.h).
Ken Hofsass01643c52018-01-31 16:03:36 -08005702
5703As described above in the kvm_sync_regs struct info in section 5 (kvm_run):
5704KVM_CAP_SYNC_REGS "allow[s] userspace to access certain guest registers
5705without having to call SET/GET_*REGS". This reduces overhead by eliminating
5706repeated ioctl calls for setting and/or getting register values. This is
5707particularly important when userspace is making synchronous guest state
5708modifications, e.g. when emulating and/or intercepting instructions in
5709userspace.
5710
5711For s390 specifics, please refer to the source code.
5712
5713For x86:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005714
Ken Hofsass01643c52018-01-31 16:03:36 -08005715- the register sets to be copied out to kvm_run are selectable
5716 by userspace (rather that all sets being copied out for every exit).
5717- vcpu_events are available in addition to regs and sregs.
5718
5719For x86, the 'kvm_valid_regs' field of struct kvm_run is overloaded to
5720function as an input bit-array field set by userspace to indicate the
5721specific register sets to be copied out on the next exit.
5722
5723To indicate when userspace has modified values that should be copied into
5724the vCPU, the all architecture bitarray field, 'kvm_dirty_regs' must be set.
5725This is done using the same bitflags as for the 'kvm_valid_regs' field.
5726If the dirty bit is not set, then the register set values will not be copied
5727into the vCPU even if they've been modified.
5728
5729Unused bitfields in the bitarrays must be set to zero.
5730
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005731::
5732
5733 struct kvm_sync_regs {
Ken Hofsass01643c52018-01-31 16:03:36 -08005734 struct kvm_regs regs;
5735 struct kvm_sregs sregs;
5736 struct kvm_vcpu_events events;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005737 };
Ken Hofsass01643c52018-01-31 16:03:36 -08005738
Cédric Le Goatereacc56b2019-04-18 12:39:28 +020057396.75 KVM_CAP_PPC_IRQ_XIVE
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005740-------------------------
Cédric Le Goatereacc56b2019-04-18 12:39:28 +02005741
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005742:Architectures: ppc
5743:Target: vcpu
5744:Parameters: args[0] is the XIVE device fd;
5745 args[1] is the XIVE CPU number (server ID) for this vcpu
Cédric Le Goatereacc56b2019-04-18 12:39:28 +02005746
5747This capability connects the vcpu to an in-kernel XIVE device.
5748
Paul Mackerras699a0ea2014-06-02 11:02:59 +100057497. Capabilities that can be enabled on VMs
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005750==========================================
Paul Mackerras699a0ea2014-06-02 11:02:59 +10005751
5752There are certain capabilities that change the behavior of the virtual
5753machine when enabled. To enable them, please see section 4.37. Below
5754you can find a list of capabilities and what their effect on the VM
5755is when enabling them.
5756
5757The following information is provided along with the description:
5758
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005759 Architectures:
5760 which instruction set architectures provide this ioctl.
Paul Mackerras699a0ea2014-06-02 11:02:59 +10005761 x86 includes both i386 and x86_64.
5762
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005763 Parameters:
5764 what parameters are accepted by the capability.
Paul Mackerras699a0ea2014-06-02 11:02:59 +10005765
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005766 Returns:
5767 the return value. General error numbers (EBADF, ENOMEM, EINVAL)
Paul Mackerras699a0ea2014-06-02 11:02:59 +10005768 are not detailed, but errors with specific meanings are.
5769
5770
57717.1 KVM_CAP_PPC_ENABLE_HCALL
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005772----------------------------
Paul Mackerras699a0ea2014-06-02 11:02:59 +10005773
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005774:Architectures: ppc
5775:Parameters: args[0] is the sPAPR hcall number;
5776 args[1] is 0 to disable, 1 to enable in-kernel handling
Paul Mackerras699a0ea2014-06-02 11:02:59 +10005777
5778This capability controls whether individual sPAPR hypercalls (hcalls)
5779get handled by the kernel or not. Enabling or disabling in-kernel
5780handling of an hcall is effective across the VM. On creation, an
5781initial set of hcalls are enabled for in-kernel handling, which
5782consists of those hcalls for which in-kernel handlers were implemented
5783before this capability was implemented. If disabled, the kernel will
5784not to attempt to handle the hcall, but will always exit to userspace
5785to handle it. Note that it may not make sense to enable some and
5786disable others of a group of related hcalls, but KVM does not prevent
5787userspace from doing that.
Paul Mackerrasae2113a2014-06-02 11:03:00 +10005788
5789If the hcall number specified is not one that has an in-kernel
5790implementation, the KVM_ENABLE_CAP ioctl will fail with an EINVAL
5791error.
David Hildenbrand2444b352014-10-09 14:10:13 +02005792
57937.2 KVM_CAP_S390_USER_SIGP
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005794--------------------------
David Hildenbrand2444b352014-10-09 14:10:13 +02005795
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005796:Architectures: s390
5797:Parameters: none
David Hildenbrand2444b352014-10-09 14:10:13 +02005798
5799This capability controls which SIGP orders will be handled completely in user
5800space. With this capability enabled, all fast orders will be handled completely
5801in the kernel:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005802
David Hildenbrand2444b352014-10-09 14:10:13 +02005803- SENSE
5804- SENSE RUNNING
5805- EXTERNAL CALL
5806- EMERGENCY SIGNAL
5807- CONDITIONAL EMERGENCY SIGNAL
5808
5809All other orders will be handled completely in user space.
5810
5811Only privileged operation exceptions will be checked for in the kernel (or even
5812in the hardware prior to interception). If this capability is not enabled, the
5813old way of handling SIGP orders is used (partially in kernel and user space).
Eric Farman68c55752014-06-09 10:57:26 -04005814
58157.3 KVM_CAP_S390_VECTOR_REGISTERS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005816---------------------------------
Eric Farman68c55752014-06-09 10:57:26 -04005817
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005818:Architectures: s390
5819:Parameters: none
5820:Returns: 0 on success, negative value on error
Eric Farman68c55752014-06-09 10:57:26 -04005821
5822Allows use of the vector registers introduced with z13 processor, and
5823provides for the synchronization between host and user space. Will
5824return -EINVAL if the machine does not support vectors.
Ekaterina Tumanovae44fc8c2015-01-30 16:55:56 +01005825
58267.4 KVM_CAP_S390_USER_STSI
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005827--------------------------
Ekaterina Tumanovae44fc8c2015-01-30 16:55:56 +01005828
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005829:Architectures: s390
5830:Parameters: none
Ekaterina Tumanovae44fc8c2015-01-30 16:55:56 +01005831
5832This capability allows post-handlers for the STSI instruction. After
5833initial handling in the kernel, KVM exits to user space with
5834KVM_EXIT_S390_STSI to allow user space to insert further data.
5835
5836Before exiting to userspace, kvm handlers should fill in s390_stsi field of
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005837vcpu->run::
5838
5839 struct {
Ekaterina Tumanovae44fc8c2015-01-30 16:55:56 +01005840 __u64 addr;
5841 __u8 ar;
5842 __u8 reserved;
5843 __u8 fc;
5844 __u8 sel1;
5845 __u16 sel2;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005846 } s390_stsi;
Ekaterina Tumanovae44fc8c2015-01-30 16:55:56 +01005847
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005848 @addr - guest address of STSI SYSIB
5849 @fc - function code
5850 @sel1 - selector 1
5851 @sel2 - selector 2
5852 @ar - access register number
Ekaterina Tumanovae44fc8c2015-01-30 16:55:56 +01005853
5854KVM handlers should exit to userspace with rc = -EREMOTE.
Michael Ellermane928e9c2015-03-20 20:39:41 +11005855
Steve Rutherford49df6392015-07-29 23:21:40 -070058567.5 KVM_CAP_SPLIT_IRQCHIP
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005857-------------------------
Steve Rutherford49df6392015-07-29 23:21:40 -07005858
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005859:Architectures: x86
5860:Parameters: args[0] - number of routes reserved for userspace IOAPICs
5861:Returns: 0 on success, -1 on error
Steve Rutherford49df6392015-07-29 23:21:40 -07005862
5863Create a local apic for each processor in the kernel. This can be used
5864instead of KVM_CREATE_IRQCHIP if the userspace VMM wishes to emulate the
5865IOAPIC and PIC (and also the PIT, even though this has to be enabled
5866separately).
5867
Steve Rutherfordb053b2a2015-07-29 23:32:35 -07005868This capability also enables in kernel routing of interrupt requests;
5869when KVM_CAP_SPLIT_IRQCHIP only routes of KVM_IRQ_ROUTING_MSI type are
5870used in the IRQ routing table. The first args[0] MSI routes are reserved
5871for the IOAPIC pins. Whenever the LAPIC receives an EOI for these routes,
5872a KVM_EXIT_IOAPIC_EOI vmexit will be reported to userspace.
Steve Rutherford49df6392015-07-29 23:21:40 -07005873
5874Fails if VCPU has already been created, or if the irqchip is already in the
5875kernel (i.e. KVM_CREATE_IRQCHIP has already been called).
5876
David Hildenbrand051c87f2016-04-19 13:13:40 +020058777.6 KVM_CAP_S390_RI
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005878-------------------
David Hildenbrand051c87f2016-04-19 13:13:40 +02005879
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005880:Architectures: s390
5881:Parameters: none
David Hildenbrand051c87f2016-04-19 13:13:40 +02005882
5883Allows use of runtime-instrumentation introduced with zEC12 processor.
5884Will return -EINVAL if the machine does not support runtime-instrumentation.
5885Will return -EBUSY if a VCPU has already been created.
Michael Ellermane928e9c2015-03-20 20:39:41 +11005886
Radim Krčmář371313132016-07-12 22:09:27 +020058877.7 KVM_CAP_X2APIC_API
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005888----------------------
Radim Krčmář371313132016-07-12 22:09:27 +02005889
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005890:Architectures: x86
5891:Parameters: args[0] - features that should be enabled
5892:Returns: 0 on success, -EINVAL when args[0] contains invalid features
Radim Krčmář371313132016-07-12 22:09:27 +02005893
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005894Valid feature flags in args[0] are::
Radim Krčmář371313132016-07-12 22:09:27 +02005895
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005896 #define KVM_X2APIC_API_USE_32BIT_IDS (1ULL << 0)
5897 #define KVM_X2APIC_API_DISABLE_BROADCAST_QUIRK (1ULL << 1)
Radim Krčmář371313132016-07-12 22:09:27 +02005898
5899Enabling KVM_X2APIC_API_USE_32BIT_IDS changes the behavior of
5900KVM_SET_GSI_ROUTING, KVM_SIGNAL_MSI, KVM_SET_LAPIC, and KVM_GET_LAPIC,
5901allowing the use of 32-bit APIC IDs. See KVM_CAP_X2APIC_API in their
5902respective sections.
5903
Radim Krčmářc5192652016-07-12 22:09:28 +02005904KVM_X2APIC_API_DISABLE_BROADCAST_QUIRK must be enabled for x2APIC to work
5905in logical mode or with more than 255 VCPUs. Otherwise, KVM treats 0xff
5906as a broadcast even in x2APIC mode in order to support physical x2APIC
5907without interrupt remapping. This is undesirable in logical mode,
5908where 0xff represents CPUs 0-7 in cluster 0.
Radim Krčmář371313132016-07-12 22:09:27 +02005909
David Hildenbrand6502a342016-06-21 14:19:51 +020059107.8 KVM_CAP_S390_USER_INSTR0
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005911----------------------------
David Hildenbrand6502a342016-06-21 14:19:51 +02005912
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005913:Architectures: s390
5914:Parameters: none
David Hildenbrand6502a342016-06-21 14:19:51 +02005915
5916With this capability enabled, all illegal instructions 0x0000 (2 bytes) will
5917be intercepted and forwarded to user space. User space can use this
5918mechanism e.g. to realize 2-byte software breakpoints. The kernel will
5919not inject an operating exception for these instructions, user space has
5920to take care of that.
5921
5922This capability can be enabled dynamically even if VCPUs were already
5923created and are running.
Radim Krčmář371313132016-07-12 22:09:27 +02005924
Fan Zhang4e0b1ab2016-11-29 07:17:55 +010059257.9 KVM_CAP_S390_GS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005926-------------------
Fan Zhang4e0b1ab2016-11-29 07:17:55 +01005927
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005928:Architectures: s390
5929:Parameters: none
5930:Returns: 0 on success; -EINVAL if the machine does not support
5931 guarded storage; -EBUSY if a VCPU has already been created.
Fan Zhang4e0b1ab2016-11-29 07:17:55 +01005932
5933Allows use of guarded storage for the KVM guest.
5934
Yi Min Zhao47a46932017-03-10 09:29:38 +010059357.10 KVM_CAP_S390_AIS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005936---------------------
Yi Min Zhao47a46932017-03-10 09:29:38 +01005937
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005938:Architectures: s390
5939:Parameters: none
Yi Min Zhao47a46932017-03-10 09:29:38 +01005940
5941Allow use of adapter-interruption suppression.
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005942:Returns: 0 on success; -EBUSY if a VCPU has already been created.
Yi Min Zhao47a46932017-03-10 09:29:38 +01005943
Paul Mackerras3c313522017-02-06 13:24:41 +110059447.11 KVM_CAP_PPC_SMT
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005945--------------------
Paul Mackerras3c313522017-02-06 13:24:41 +11005946
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005947:Architectures: ppc
5948:Parameters: vsmt_mode, flags
Paul Mackerras3c313522017-02-06 13:24:41 +11005949
5950Enabling this capability on a VM provides userspace with a way to set
5951the desired virtual SMT mode (i.e. the number of virtual CPUs per
5952virtual core). The virtual SMT mode, vsmt_mode, must be a power of 2
5953between 1 and 8. On POWER8, vsmt_mode must also be no greater than
5954the number of threads per subcore for the host. Currently flags must
5955be 0. A successful call to enable this capability will result in
5956vsmt_mode being returned when the KVM_CAP_PPC_SMT capability is
5957subsequently queried for the VM. This capability is only supported by
5958HV KVM, and can only be set before any VCPUs have been created.
Paul Mackerras2ed4f9d2017-06-21 16:01:27 +10005959The KVM_CAP_PPC_SMT_POSSIBLE capability indicates which virtual SMT
5960modes are available.
Paul Mackerras3c313522017-02-06 13:24:41 +11005961
Aravinda Prasad134764e2017-05-11 16:32:48 +053059627.12 KVM_CAP_PPC_FWNMI
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005963----------------------
Aravinda Prasad134764e2017-05-11 16:32:48 +05305964
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005965:Architectures: ppc
5966:Parameters: none
Aravinda Prasad134764e2017-05-11 16:32:48 +05305967
5968With this capability a machine check exception in the guest address
5969space will cause KVM to exit the guest with NMI exit reason. This
5970enables QEMU to build error log and branch to guest kernel registered
5971machine check handling routine. Without this capability KVM will
5972branch to guests' 0x200 interrupt vector.
5973
Wanpeng Li4d5422c2018-03-12 04:53:02 -070059747.13 KVM_CAP_X86_DISABLE_EXITS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005975------------------------------
Wanpeng Li4d5422c2018-03-12 04:53:02 -07005976
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005977:Architectures: x86
5978:Parameters: args[0] defines which exits are disabled
5979:Returns: 0 on success, -EINVAL when args[0] contains invalid exits
Wanpeng Li4d5422c2018-03-12 04:53:02 -07005980
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005981Valid bits in args[0] are::
Wanpeng Li4d5422c2018-03-12 04:53:02 -07005982
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005983 #define KVM_X86_DISABLE_EXITS_MWAIT (1 << 0)
5984 #define KVM_X86_DISABLE_EXITS_HLT (1 << 1)
5985 #define KVM_X86_DISABLE_EXITS_PAUSE (1 << 2)
5986 #define KVM_X86_DISABLE_EXITS_CSTATE (1 << 3)
Wanpeng Li4d5422c2018-03-12 04:53:02 -07005987
5988Enabling this capability on a VM provides userspace with a way to no
5989longer intercept some instructions for improved latency in some
5990workloads, and is suggested when vCPUs are associated to dedicated
5991physical CPUs. More bits can be added in the future; userspace can
5992just pass the KVM_CHECK_EXTENSION result to KVM_ENABLE_CAP to disable
5993all such vmexits.
5994
Wanpeng Licaa057a2018-03-12 04:53:03 -07005995Do not enable KVM_FEATURE_PV_UNHALT if you disable HLT exits.
Wanpeng Li4d5422c2018-03-12 04:53:02 -07005996
Janosch Franka4499382018-07-13 11:28:31 +010059977.14 KVM_CAP_S390_HPAGE_1M
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005998--------------------------
Janosch Franka4499382018-07-13 11:28:31 +01005999
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006000:Architectures: s390
6001:Parameters: none
6002:Returns: 0 on success, -EINVAL if hpage module parameter was not set
6003 or cmma is enabled, or the VM has the KVM_VM_S390_UCONTROL
6004 flag set
Janosch Franka4499382018-07-13 11:28:31 +01006005
6006With this capability the KVM support for memory backing with 1m pages
6007through hugetlbfs can be enabled for a VM. After the capability is
6008enabled, cmma can't be enabled anymore and pfmfi and the storage key
6009interpretation are disabled. If cmma has already been enabled or the
6010hpage module parameter is not set to 1, -EINVAL is returned.
6011
6012While it is generally possible to create a huge page backed VM without
6013this capability, the VM will not be able to run.
6014
Jim Mattsonc4f55192018-10-16 14:29:24 -070060157.15 KVM_CAP_MSR_PLATFORM_INFO
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006016------------------------------
Drew Schmitt6fbbde92018-08-20 10:32:15 -07006017
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006018:Architectures: x86
6019:Parameters: args[0] whether feature should be enabled or not
Drew Schmitt6fbbde92018-08-20 10:32:15 -07006020
6021With this capability, a guest may read the MSR_PLATFORM_INFO MSR. Otherwise,
6022a #GP would be raised when the guest tries to access. Currently, this
6023capability does not enable write permissions of this MSR for the guest.
6024
Paul Mackerrasaa069a92018-09-21 20:02:01 +100060257.16 KVM_CAP_PPC_NESTED_HV
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006026--------------------------
Paul Mackerrasaa069a92018-09-21 20:02:01 +10006027
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006028:Architectures: ppc
6029:Parameters: none
6030:Returns: 0 on success, -EINVAL when the implementation doesn't support
6031 nested-HV virtualization.
Paul Mackerrasaa069a92018-09-21 20:02:01 +10006032
6033HV-KVM on POWER9 and later systems allows for "nested-HV"
6034virtualization, which provides a way for a guest VM to run guests that
6035can run using the CPU's supervisor mode (privileged non-hypervisor
6036state). Enabling this capability on a VM depends on the CPU having
6037the necessary functionality and on the facility being enabled with a
6038kvm-hv module parameter.
6039
Jim Mattsonc4f55192018-10-16 14:29:24 -070060407.17 KVM_CAP_EXCEPTION_PAYLOAD
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006041------------------------------
Jim Mattsonc4f55192018-10-16 14:29:24 -07006042
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006043:Architectures: x86
6044:Parameters: args[0] whether feature should be enabled or not
Jim Mattsonc4f55192018-10-16 14:29:24 -07006045
6046With this capability enabled, CR2 will not be modified prior to the
6047emulated VM-exit when L1 intercepts a #PF exception that occurs in
6048L2. Similarly, for kvm-intel only, DR6 will not be modified prior to
6049the emulated VM-exit when L1 intercepts a #DB exception that occurs in
6050L2. As a result, when KVM_GET_VCPU_EVENTS reports a pending #PF (or
6051#DB) exception for L2, exception.has_payload will be set and the
6052faulting address (or the new DR6 bits*) will be reported in the
6053exception_payload field. Similarly, when userspace injects a #PF (or
6054#DB) into L2 using KVM_SET_VCPU_EVENTS, it is expected to set
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006055exception.has_payload and to put the faulting address - or the new DR6
6056bits\ [#]_ - in the exception_payload field.
Jim Mattsonc4f55192018-10-16 14:29:24 -07006057
6058This capability also enables exception.pending in struct
6059kvm_vcpu_events, which allows userspace to distinguish between pending
6060and injected exceptions.
6061
6062
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006063.. [#] For the new DR6 bits, note that bit 16 is set iff the #DB exception
6064 will clear DR6.RTM.
Jim Mattsonc4f55192018-10-16 14:29:24 -07006065
Peter Xud7547c52019-05-08 17:15:47 +080060667.18 KVM_CAP_MANUAL_DIRTY_LOG_PROTECT2
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02006067
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006068:Architectures: x86, arm, arm64, mips
6069:Parameters: args[0] whether feature should be enabled or not
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02006070
Jay Zhou3c9bd402020-02-27 09:32:27 +08006071Valid flags are::
6072
6073 #define KVM_DIRTY_LOG_MANUAL_PROTECT_ENABLE (1 << 0)
6074 #define KVM_DIRTY_LOG_INITIALLY_SET (1 << 1)
6075
6076With KVM_DIRTY_LOG_MANUAL_PROTECT_ENABLE is set, KVM_GET_DIRTY_LOG will not
6077automatically clear and write-protect all pages that are returned as dirty.
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02006078Rather, userspace will have to do this operation separately using
6079KVM_CLEAR_DIRTY_LOG.
6080
6081At the cost of a slightly more complicated operation, this provides better
6082scalability and responsiveness for two reasons. First,
6083KVM_CLEAR_DIRTY_LOG ioctl can operate on a 64-page granularity rather
6084than requiring to sync a full memslot; this ensures that KVM does not
6085take spinlocks for an extended period of time. Second, in some cases a
6086large amount of time can pass between a call to KVM_GET_DIRTY_LOG and
6087userspace actually using the data in the page. Pages can be modified
Jay Zhou3c9bd402020-02-27 09:32:27 +08006088during this time, which is inefficient for both the guest and userspace:
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02006089the guest will incur a higher penalty due to write protection faults,
6090while userspace can see false reports of dirty pages. Manual reprotection
6091helps reducing this time, improving guest performance and reducing the
6092number of dirty log false positives.
6093
Jay Zhou3c9bd402020-02-27 09:32:27 +08006094With KVM_DIRTY_LOG_INITIALLY_SET set, all the bits of the dirty bitmap
6095will be initialized to 1 when created. This also improves performance because
6096dirty logging can be enabled gradually in small chunks on the first call
6097to KVM_CLEAR_DIRTY_LOG. KVM_DIRTY_LOG_INITIALLY_SET depends on
6098KVM_DIRTY_LOG_MANUAL_PROTECT_ENABLE (it is also only available on
Keqian Zhuc8626262020-04-13 20:20:23 +08006099x86 and arm64 for now).
Jay Zhou3c9bd402020-02-27 09:32:27 +08006100
Peter Xud7547c52019-05-08 17:15:47 +08006101KVM_CAP_MANUAL_DIRTY_LOG_PROTECT2 was previously available under the name
6102KVM_CAP_MANUAL_DIRTY_LOG_PROTECT, but the implementation had bugs that make
6103it hard or impossible to use it correctly. The availability of
6104KVM_CAP_MANUAL_DIRTY_LOG_PROTECT2 signals that those bugs are fixed.
6105Userspace should not try to use KVM_CAP_MANUAL_DIRTY_LOG_PROTECT.
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02006106
Paul Mackerras9a5788c2020-03-19 15:29:55 +110061077.19 KVM_CAP_PPC_SECURE_GUEST
6108------------------------------
6109
6110:Architectures: ppc
6111
6112This capability indicates that KVM is running on a host that has
6113ultravisor firmware and thus can support a secure guest. On such a
6114system, a guest can ask the ultravisor to make it a secure guest,
6115one whose memory is inaccessible to the host except for pages which
6116are explicitly requested to be shared with the host. The ultravisor
6117notifies KVM when a guest requests to become a secure guest, and KVM
6118has the opportunity to veto the transition.
6119
6120If present, this capability can be enabled for a VM, meaning that KVM
6121will allow the transition to secure guest mode. Otherwise KVM will
6122veto the transition.
6123
David Matlackacd05782020-04-17 15:14:46 -070061247.20 KVM_CAP_HALT_POLL
6125----------------------
6126
6127:Architectures: all
6128:Target: VM
6129:Parameters: args[0] is the maximum poll time in nanoseconds
6130:Returns: 0 on success; -1 on error
6131
6132This capability overrides the kvm module parameter halt_poll_ns for the
6133target VM.
6134
6135VCPU polling allows a VCPU to poll for wakeup events instead of immediately
6136scheduling during guest halts. The maximum time a VCPU can spend polling is
6137controlled by the kvm module parameter halt_poll_ns. This capability allows
6138the maximum halt time to specified on a per-VM basis, effectively overriding
6139the module parameter for the target VM.
6140
Alexander Graf1ae09952020-09-25 16:34:16 +020061417.21 KVM_CAP_X86_USER_SPACE_MSR
6142-------------------------------
6143
6144:Architectures: x86
6145:Target: VM
6146:Parameters: args[0] contains the mask of KVM_MSR_EXIT_REASON_* events to report
6147:Returns: 0 on success; -1 on error
6148
6149This capability enables trapping of #GP invoking RDMSR and WRMSR instructions
6150into user space.
6151
6152When a guest requests to read or write an MSR, KVM may not implement all MSRs
6153that are relevant to a respective system. It also does not differentiate by
6154CPU type.
6155
6156To allow more fine grained control over MSR handling, user space may enable
6157this capability. With it enabled, MSR accesses that match the mask specified in
6158args[0] and trigger a #GP event inside the guest by KVM will instead trigger
6159KVM_EXIT_X86_RDMSR and KVM_EXIT_X86_WRMSR exit notifications which user space
6160can then handle to implement model specific MSR handling and/or user notifications
6161to inform a user that an MSR was not handled.
6162
Chenyi Qiangc32b1b892020-11-06 17:03:15 +080061637.22 KVM_CAP_X86_BUS_LOCK_EXIT
6164-------------------------------
6165
6166:Architectures: x86
6167:Target: VM
6168:Parameters: args[0] defines the policy used when bus locks detected in guest
6169:Returns: 0 on success, -EINVAL when args[0] contains invalid bits
6170
6171Valid bits in args[0] are::
6172
6173 #define KVM_BUS_LOCK_DETECTION_OFF (1 << 0)
6174 #define KVM_BUS_LOCK_DETECTION_EXIT (1 << 1)
6175
6176Enabling this capability on a VM provides userspace with a way to select
6177a policy to handle the bus locks detected in guest. Userspace can obtain
6178the supported modes from the result of KVM_CHECK_EXTENSION and define it
6179through the KVM_ENABLE_CAP.
6180
6181KVM_BUS_LOCK_DETECTION_OFF and KVM_BUS_LOCK_DETECTION_EXIT are supported
6182currently and mutually exclusive with each other. More bits can be added in
6183the future.
6184
6185With KVM_BUS_LOCK_DETECTION_OFF set, bus locks in guest will not cause vm exits
6186so that no additional actions are needed. This is the default mode.
6187
6188With KVM_BUS_LOCK_DETECTION_EXIT set, vm exits happen when bus lock detected
6189in VM. KVM just exits to userspace when handling them. Userspace can enforce
6190its own throttling or other policy based mitigations.
6191
6192This capability is aimed to address the thread that VM can exploit bus locks to
6193degree the performance of the whole system. Once the userspace enable this
6194capability and select the KVM_BUS_LOCK_DETECTION_EXIT mode, KVM will set the
6195KVM_RUN_BUS_LOCK flag in vcpu-run->flags field and exit to userspace. Concerning
6196the bus lock vm exit can be preempted by a higher priority VM exit, the exit
6197notifications to userspace can be KVM_EXIT_BUS_LOCK or other reasons.
6198KVM_RUN_BUS_LOCK flag is used to distinguish between them.
6199
Kai Huang7d2cdad2021-02-26 22:48:32 +130062007.23 KVM_CAP_PPC_DAWR1
Ravi Bangoriad9a47ed2020-12-16 16:12:19 +05306201----------------------
6202
6203:Architectures: ppc
6204:Parameters: none
6205:Returns: 0 on success, -EINVAL when CPU doesn't support 2nd DAWR
6206
6207This capability can be used to check / enable 2nd DAWR feature provided
6208by POWER10 processor.
6209
Sean Christophersonfe7e9482021-04-12 16:21:43 +120062107.25 KVM_CAP_SGX_ATTRIBUTE
6211----------------------
6212
6213:Architectures: x86
6214:Target: VM
6215:Parameters: args[0] is a file handle of a SGX attribute file in securityfs
6216:Returns: 0 on success, -EINVAL if the file handle is invalid or if a requested
6217 attribute is not supported by KVM.
6218
6219KVM_CAP_SGX_ATTRIBUTE enables a userspace VMM to grant a VM access to one or
6220more priveleged enclave attributes. args[0] must hold a file handle to a valid
6221SGX attribute file corresponding to an attribute that is supported/restricted
6222by KVM (currently only PROVISIONKEY).
6223
6224The SGX subsystem restricts access to a subset of enclave attributes to provide
6225additional security for an uncompromised kernel, e.g. use of the PROVISIONKEY
6226is restricted to deter malware from using the PROVISIONKEY to obtain a stable
6227system fingerprint. To prevent userspace from circumventing such restrictions
6228by running an enclave in a VM, KVM prevents access to privileged attributes by
6229default.
6230
6231See Documentation/x86/sgx/2.Kernel-internals.rst for more details.
6232
Michael Ellermane928e9c2015-03-20 20:39:41 +110062338. Other capabilities.
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006234======================
Michael Ellermane928e9c2015-03-20 20:39:41 +11006235
6236This section lists capabilities that give information about other
6237features of the KVM implementation.
6238
62398.1 KVM_CAP_PPC_HWRNG
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006240---------------------
Michael Ellermane928e9c2015-03-20 20:39:41 +11006241
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006242:Architectures: ppc
Michael Ellermane928e9c2015-03-20 20:39:41 +11006243
6244This capability, if KVM_CHECK_EXTENSION indicates that it is
Randy Dunlap3747c5d2020-07-03 14:29:06 -07006245available, means that the kernel has an implementation of the
Michael Ellermane928e9c2015-03-20 20:39:41 +11006246H_RANDOM hypercall backed by a hardware random-number generator.
6247If present, the kernel H_RANDOM handler can be enabled for guest use
6248with the KVM_CAP_PPC_ENABLE_HCALL capability.
Andrey Smetanin5c9194122015-11-10 15:36:34 +03006249
62508.2 KVM_CAP_HYPERV_SYNIC
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006251------------------------
Andrey Smetanin5c9194122015-11-10 15:36:34 +03006252
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006253:Architectures: x86
6254
Andrey Smetanin5c9194122015-11-10 15:36:34 +03006255This capability, if KVM_CHECK_EXTENSION indicates that it is
Randy Dunlap3747c5d2020-07-03 14:29:06 -07006256available, means that the kernel has an implementation of the
Andrey Smetanin5c9194122015-11-10 15:36:34 +03006257Hyper-V Synthetic interrupt controller(SynIC). Hyper-V SynIC is
6258used to support Windows Hyper-V based guest paravirt drivers(VMBus).
6259
6260In order to use SynIC, it has to be activated by setting this
6261capability via KVM_ENABLE_CAP ioctl on the vcpu fd. Note that this
6262will disable the use of APIC hardware virtualization even if supported
6263by the CPU, as it's incompatible with SynIC auto-EOI behavior.
Paul Mackerrasc9270132017-01-30 21:21:41 +11006264
62658.3 KVM_CAP_PPC_RADIX_MMU
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006266-------------------------
Paul Mackerrasc9270132017-01-30 21:21:41 +11006267
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006268:Architectures: ppc
Paul Mackerrasc9270132017-01-30 21:21:41 +11006269
6270This capability, if KVM_CHECK_EXTENSION indicates that it is
Randy Dunlap3747c5d2020-07-03 14:29:06 -07006271available, means that the kernel can support guests using the
Paul Mackerrasc9270132017-01-30 21:21:41 +11006272radix MMU defined in Power ISA V3.00 (as implemented in the POWER9
6273processor).
6274
62758.4 KVM_CAP_PPC_HASH_MMU_V3
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006276---------------------------
Paul Mackerrasc9270132017-01-30 21:21:41 +11006277
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006278:Architectures: ppc
Paul Mackerrasc9270132017-01-30 21:21:41 +11006279
6280This capability, if KVM_CHECK_EXTENSION indicates that it is
Randy Dunlap3747c5d2020-07-03 14:29:06 -07006281available, means that the kernel can support guests using the
Paul Mackerrasc9270132017-01-30 21:21:41 +11006282hashed page table MMU defined in Power ISA V3.00 (as implemented in
6283the POWER9 processor), including in-memory segment tables.
James Hogana8a3c422017-03-14 10:15:19 +00006284
62858.5 KVM_CAP_MIPS_VZ
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006286-------------------
James Hogana8a3c422017-03-14 10:15:19 +00006287
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006288:Architectures: mips
James Hogana8a3c422017-03-14 10:15:19 +00006289
6290This capability, if KVM_CHECK_EXTENSION on the main kvm handle indicates that
6291it is available, means that full hardware assisted virtualization capabilities
6292of the hardware are available for use through KVM. An appropriate
6293KVM_VM_MIPS_* type must be passed to KVM_CREATE_VM to create a VM which
6294utilises it.
6295
6296If KVM_CHECK_EXTENSION on a kvm VM handle indicates that this capability is
6297available, it means that the VM is using full hardware assisted virtualization
6298capabilities of the hardware. This is useful to check after creating a VM with
6299KVM_VM_MIPS_DEFAULT.
6300
6301The value returned by KVM_CHECK_EXTENSION should be compared against known
6302values (see below). All other values are reserved. This is to allow for the
6303possibility of other hardware assisted virtualization implementations which
6304may be incompatible with the MIPS VZ ASE.
6305
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006306== ==========================================================================
6307 0 The trap & emulate implementation is in use to run guest code in user
James Hogana8a3c422017-03-14 10:15:19 +00006308 mode. Guest virtual memory segments are rearranged to fit the guest in the
6309 user mode address space.
6310
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006311 1 The MIPS VZ ASE is in use, providing full hardware assisted
James Hogana8a3c422017-03-14 10:15:19 +00006312 virtualization, including standard guest virtual memory segments.
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006313== ==========================================================================
James Hogana8a3c422017-03-14 10:15:19 +00006314
63158.6 KVM_CAP_MIPS_TE
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006316-------------------
James Hogana8a3c422017-03-14 10:15:19 +00006317
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006318:Architectures: mips
James Hogana8a3c422017-03-14 10:15:19 +00006319
6320This capability, if KVM_CHECK_EXTENSION on the main kvm handle indicates that
6321it is available, means that the trap & emulate implementation is available to
6322run guest code in user mode, even if KVM_CAP_MIPS_VZ indicates that hardware
6323assisted virtualisation is also available. KVM_VM_MIPS_TE (0) must be passed
6324to KVM_CREATE_VM to create a VM which utilises it.
6325
6326If KVM_CHECK_EXTENSION on a kvm VM handle indicates that this capability is
6327available, it means that the VM is using trap & emulate.
James Hogan578fd612017-03-14 10:15:20 +00006328
63298.7 KVM_CAP_MIPS_64BIT
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006330----------------------
James Hogan578fd612017-03-14 10:15:20 +00006331
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006332:Architectures: mips
James Hogan578fd612017-03-14 10:15:20 +00006333
6334This capability indicates the supported architecture type of the guest, i.e. the
6335supported register and address width.
6336
6337The values returned when this capability is checked by KVM_CHECK_EXTENSION on a
6338kvm VM handle correspond roughly to the CP0_Config.AT register field, and should
6339be checked specifically against known values (see below). All other values are
6340reserved.
6341
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006342== ========================================================================
6343 0 MIPS32 or microMIPS32.
James Hogan578fd612017-03-14 10:15:20 +00006344 Both registers and addresses are 32-bits wide.
6345 It will only be possible to run 32-bit guest code.
6346
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006347 1 MIPS64 or microMIPS64 with access only to 32-bit compatibility segments.
James Hogan578fd612017-03-14 10:15:20 +00006348 Registers are 64-bits wide, but addresses are 32-bits wide.
6349 64-bit guest code may run but cannot access MIPS64 memory segments.
6350 It will also be possible to run 32-bit guest code.
6351
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006352 2 MIPS64 or microMIPS64 with access to all address segments.
James Hogan578fd612017-03-14 10:15:20 +00006353 Both registers and addresses are 64-bits wide.
6354 It will be possible to run 64-bit or 32-bit guest code.
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006355== ========================================================================
Michael S. Tsirkin668fffa2017-04-21 12:27:17 +02006356
Paolo Bonzinic24a7be2017-04-27 17:33:14 +020063578.9 KVM_CAP_ARM_USER_IRQ
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006358------------------------
Alexander Graf3fe17e62016-09-27 21:08:05 +02006359
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006360:Architectures: arm, arm64
6361
Alexander Graf3fe17e62016-09-27 21:08:05 +02006362This capability, if KVM_CHECK_EXTENSION indicates that it is available, means
6363that if userspace creates a VM without an in-kernel interrupt controller, it
6364will be notified of changes to the output level of in-kernel emulated devices,
6365which can generate virtual interrupts, presented to the VM.
6366For such VMs, on every return to userspace, the kernel
6367updates the vcpu's run->s.regs.device_irq_level field to represent the actual
6368output level of the device.
6369
6370Whenever kvm detects a change in the device output level, kvm guarantees at
6371least one return to userspace before running the VM. This exit could either
6372be a KVM_EXIT_INTR or any other exit event, like KVM_EXIT_MMIO. This way,
6373userspace can always sample the device output level and re-compute the state of
6374the userspace interrupt controller. Userspace should always check the state
6375of run->s.regs.device_irq_level on every kvm exit.
6376The value in run->s.regs.device_irq_level can represent both level and edge
6377triggered interrupt signals, depending on the device. Edge triggered interrupt
6378signals will exit to userspace with the bit in run->s.regs.device_irq_level
6379set exactly once per edge signal.
6380
6381The field run->s.regs.device_irq_level is available independent of
6382run->kvm_valid_regs or run->kvm_dirty_regs bits.
6383
6384If KVM_CAP_ARM_USER_IRQ is supported, the KVM_CHECK_EXTENSION ioctl returns a
6385number larger than 0 indicating the version of this capability is implemented
Randy Dunlap3747c5d2020-07-03 14:29:06 -07006386and thereby which bits in run->s.regs.device_irq_level can signal values.
Alexander Graf3fe17e62016-09-27 21:08:05 +02006387
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006388Currently the following bits are defined for the device_irq_level bitmap::
Alexander Graf3fe17e62016-09-27 21:08:05 +02006389
6390 KVM_CAP_ARM_USER_IRQ >= 1:
6391
6392 KVM_ARM_DEV_EL1_VTIMER - EL1 virtual timer
6393 KVM_ARM_DEV_EL1_PTIMER - EL1 physical timer
6394 KVM_ARM_DEV_PMU - ARM PMU overflow interrupt signal
6395
6396Future versions of kvm may implement additional events. These will get
6397indicated by returning a higher number from KVM_CHECK_EXTENSION and will be
6398listed above.
Paul Mackerras2ed4f9d2017-06-21 16:01:27 +10006399
64008.10 KVM_CAP_PPC_SMT_POSSIBLE
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006401-----------------------------
Paul Mackerras2ed4f9d2017-06-21 16:01:27 +10006402
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006403:Architectures: ppc
Paul Mackerras2ed4f9d2017-06-21 16:01:27 +10006404
6405Querying this capability returns a bitmap indicating the possible
6406virtual SMT modes that can be set using KVM_CAP_PPC_SMT. If bit N
6407(counting from the right) is set, then a virtual SMT mode of 2^N is
6408available.
Roman Kaganefc479e2017-06-22 16:51:01 +03006409
64108.11 KVM_CAP_HYPERV_SYNIC2
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006411--------------------------
Roman Kaganefc479e2017-06-22 16:51:01 +03006412
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006413:Architectures: x86
Roman Kaganefc479e2017-06-22 16:51:01 +03006414
6415This capability enables a newer version of Hyper-V Synthetic interrupt
6416controller (SynIC). The only difference with KVM_CAP_HYPERV_SYNIC is that KVM
6417doesn't clear SynIC message and event flags pages when they are enabled by
6418writing to the respective MSRs.
Roman Kagand3457c82017-07-14 17:13:20 +03006419
64208.12 KVM_CAP_HYPERV_VP_INDEX
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006421----------------------------
Roman Kagand3457c82017-07-14 17:13:20 +03006422
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006423:Architectures: x86
Roman Kagand3457c82017-07-14 17:13:20 +03006424
6425This capability indicates that userspace can load HV_X64_MSR_VP_INDEX msr. Its
6426value is used to denote the target vcpu for a SynIC interrupt. For
6427compatibilty, KVM initializes this msr to KVM's internal vcpu index. When this
6428capability is absent, userspace can still query this msr's value.
Christian Borntraegerda9a1442017-11-09 10:00:45 +01006429
64308.13 KVM_CAP_S390_AIS_MIGRATION
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006431-------------------------------
Christian Borntraegerda9a1442017-11-09 10:00:45 +01006432
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006433:Architectures: s390
6434:Parameters: none
Christian Borntraegerda9a1442017-11-09 10:00:45 +01006435
6436This capability indicates if the flic device will be able to get/set the
6437AIS states for migration via the KVM_DEV_FLIC_AISM_ALL attribute and allows
6438to discover this without having to create a flic device.
Christian Borntraeger5c2b4d52018-02-22 13:40:04 +00006439
64408.14 KVM_CAP_S390_PSW
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006441---------------------
Christian Borntraeger5c2b4d52018-02-22 13:40:04 +00006442
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006443:Architectures: s390
Christian Borntraeger5c2b4d52018-02-22 13:40:04 +00006444
6445This capability indicates that the PSW is exposed via the kvm_run structure.
6446
64478.15 KVM_CAP_S390_GMAP
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006448----------------------
Christian Borntraeger5c2b4d52018-02-22 13:40:04 +00006449
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006450:Architectures: s390
Christian Borntraeger5c2b4d52018-02-22 13:40:04 +00006451
6452This capability indicates that the user space memory used as guest mapping can
6453be anywhere in the user memory address space, as long as the memory slots are
6454aligned and sized to a segment (1MB) boundary.
6455
64568.16 KVM_CAP_S390_COW
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006457---------------------
Christian Borntraeger5c2b4d52018-02-22 13:40:04 +00006458
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006459:Architectures: s390
Christian Borntraeger5c2b4d52018-02-22 13:40:04 +00006460
6461This capability indicates that the user space memory used as guest mapping can
6462use copy-on-write semantics as well as dirty pages tracking via read-only page
6463tables.
6464
64658.17 KVM_CAP_S390_BPB
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006466---------------------
Christian Borntraeger5c2b4d52018-02-22 13:40:04 +00006467
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006468:Architectures: s390
Christian Borntraeger5c2b4d52018-02-22 13:40:04 +00006469
6470This capability indicates that kvm will implement the interfaces to handle
6471reset, migration and nested KVM for branch prediction blocking. The stfle
6472facility 82 should not be provided to the guest without this capability.
Vitaly Kuznetsovc1aea912018-05-16 17:21:31 +02006473
Vitaly Kuznetsov2ddc6492018-06-22 16:56:14 +020064748.18 KVM_CAP_HYPERV_TLBFLUSH
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006475----------------------------
Vitaly Kuznetsovc1aea912018-05-16 17:21:31 +02006476
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006477:Architectures: x86
Vitaly Kuznetsovc1aea912018-05-16 17:21:31 +02006478
6479This capability indicates that KVM supports paravirtualized Hyper-V TLB Flush
6480hypercalls:
6481HvFlushVirtualAddressSpace, HvFlushVirtualAddressSpaceEx,
6482HvFlushVirtualAddressList, HvFlushVirtualAddressListEx.
Dongjiu Gengbe26b3a2018-07-19 16:24:23 +01006483
Dongjiu Geng688e0582018-08-20 17:39:25 -040064848.19 KVM_CAP_ARM_INJECT_SERROR_ESR
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006485----------------------------------
Dongjiu Gengbe26b3a2018-07-19 16:24:23 +01006486
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006487:Architectures: arm, arm64
Dongjiu Gengbe26b3a2018-07-19 16:24:23 +01006488
6489This capability indicates that userspace can specify (via the
6490KVM_SET_VCPU_EVENTS ioctl) the syndrome value reported to the guest when it
6491takes a virtual SError interrupt exception.
6492If KVM advertises this capability, userspace can only specify the ISS field for
6493the ESR syndrome. Other parts of the ESR, such as the EC are generated by the
6494CPU when the exception is taken. If this virtual SError is taken to EL1 using
6495AArch64, this value will be reported in the ISS field of ESR_ELx.
6496
6497See KVM_CAP_VCPU_EVENTS for more details.
Vitaly Kuznetsov214ff832018-09-26 19:02:59 +02006498
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +010064998.20 KVM_CAP_HYPERV_SEND_IPI
6500----------------------------
6501
6502:Architectures: x86
Vitaly Kuznetsov214ff832018-09-26 19:02:59 +02006503
6504This capability indicates that KVM supports paravirtualized Hyper-V IPI send
6505hypercalls:
6506HvCallSendSyntheticClusterIpi, HvCallSendSyntheticClusterIpiEx.
Tianyu Lan344c6c82019-08-22 22:30:20 +08006507
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +010065088.21 KVM_CAP_HYPERV_DIRECT_TLBFLUSH
6509-----------------------------------
6510
Andrew Jones739c7af2020-08-04 19:06:03 +02006511:Architectures: x86
Tianyu Lan344c6c82019-08-22 22:30:20 +08006512
6513This capability indicates that KVM running on top of Hyper-V hypervisor
6514enables Direct TLB flush for its guests meaning that TLB flush
6515hypercalls are handled by Level 0 hypervisor (Hyper-V) bypassing KVM.
6516Due to the different ABI for hypercall parameters between Hyper-V and
6517KVM, enabling this capability effectively disables all hypercall
6518handling by KVM (as some KVM hypercall may be mistakenly treated as TLB
6519flush hypercalls by Hyper-V) so userspace should disable KVM identification
6520in CPUID and only exposes Hyper-V identification. In this case, guest
6521thinks it's running on Hyper-V and only use Hyper-V hypercalls.
Janosch Frank7de3f142020-01-31 05:02:02 -05006522
65238.22 KVM_CAP_S390_VCPU_RESETS
Andrew Jones739c7af2020-08-04 19:06:03 +02006524-----------------------------
Janosch Frank7de3f142020-01-31 05:02:02 -05006525
Andrew Jones739c7af2020-08-04 19:06:03 +02006526:Architectures: s390
Janosch Frank7de3f142020-01-31 05:02:02 -05006527
6528This capability indicates that the KVM_S390_NORMAL_RESET and
6529KVM_S390_CLEAR_RESET ioctls are available.
Janosch Frank04ed89d2019-11-08 05:05:26 -05006530
65318.23 KVM_CAP_S390_PROTECTED
Andrew Jones739c7af2020-08-04 19:06:03 +02006532---------------------------
Janosch Frank04ed89d2019-11-08 05:05:26 -05006533
Andrew Jones739c7af2020-08-04 19:06:03 +02006534:Architectures: s390
Janosch Frank04ed89d2019-11-08 05:05:26 -05006535
6536This capability indicates that the Ultravisor has been initialized and
6537KVM can therefore start protected VMs.
6538This capability governs the KVM_S390_PV_COMMAND ioctl and the
6539KVM_MP_STATE_LOAD MP_STATE. KVM_SET_MP_STATE can fail for protected
6540guests when the state change is invalid.
Andrew Jones004a0122020-08-04 19:06:04 +02006541
65428.24 KVM_CAP_STEAL_TIME
6543-----------------------
6544
6545:Architectures: arm64, x86
6546
6547This capability indicates that KVM supports steal time accounting.
6548When steal time accounting is supported it may be enabled with
6549architecture-specific interfaces. This capability and the architecture-
6550specific interfaces must be consistent, i.e. if one says the feature
6551is supported, than the other should as well and vice versa. For arm64
6552see Documentation/virt/kvm/devices/vcpu.rst "KVM_ARM_VCPU_PVTIME_CTRL".
6553For x86 see Documentation/virt/kvm/msr.rst "MSR_KVM_STEAL_TIME".
Collin Wallingf20d4e92020-06-25 11:07:23 -04006554
65558.25 KVM_CAP_S390_DIAG318
6556-------------------------
6557
6558:Architectures: s390
6559
6560This capability enables a guest to set information about its control program
6561(i.e. guest kernel type and version). The information is helpful during
6562system/firmware service events, providing additional data about the guest
6563environments running on the machine.
6564
6565The information is associated with the DIAGNOSE 0x318 instruction, which sets
6566an 8-byte value consisting of a one-byte Control Program Name Code (CPNC) and
6567a 7-byte Control Program Version Code (CPVC). The CPNC determines what
6568environment the control program is running in (e.g. Linux, z/VM...), and the
6569CPVC is used for information specific to OS (e.g. Linux version, Linux
6570distribution...)
6571
6572If this capability is available, then the CPNC and CPVC can be synchronized
6573between KVM and userspace via the sync regs mechanism (KVM_SYNC_DIAG318).
Alexander Graf1ae09952020-09-25 16:34:16 +02006574
65758.26 KVM_CAP_X86_USER_SPACE_MSR
6576-------------------------------
6577
6578:Architectures: x86
6579
6580This capability indicates that KVM supports deflection of MSR reads and
6581writes to user space. It can be enabled on a VM level. If enabled, MSR
6582accesses that would usually trigger a #GP by KVM into the guest will
6583instead get bounced to user space through the KVM_EXIT_X86_RDMSR and
6584KVM_EXIT_X86_WRMSR exit notifications.
Alexander Graf1a1552542020-09-25 16:34:21 +02006585
Peter Xu3d202672020-09-30 21:20:31 -040065868.27 KVM_X86_SET_MSR_FILTER
Alexander Graf1a1552542020-09-25 16:34:21 +02006587---------------------------
6588
6589:Architectures: x86
6590
6591This capability indicates that KVM supports that accesses to user defined MSRs
6592may be rejected. With this capability exposed, KVM exports new VM ioctl
6593KVM_X86_SET_MSR_FILTER which user space can call to specify bitmaps of MSR
6594ranges that KVM should reject access to.
6595
6596In combination with KVM_CAP_X86_USER_SPACE_MSR, this allows user space to
6597trap and emulate MSRs that are outside of the scope of KVM as well as
6598limit the attack surface on KVM's MSR emulation code.
Oliver Upton66570e92020-08-18 15:24:28 +00006599
Peter Xu177158e2020-10-23 14:33:46 -040066008.28 KVM_CAP_ENFORCE_PV_CPUID
Oliver Upton66570e92020-08-18 15:24:28 +00006601-----------------------------
6602
6603Architectures: x86
6604
6605When enabled, KVM will disable paravirtual features provided to the
6606guest according to the bits in the KVM_CPUID_FEATURES CPUID leaf
6607(0x40000001). Otherwise, a guest may use the paravirtual features
6608regardless of what has actually been exposed through the CPUID leaf.
Peter Xufb04a1e2020-09-30 21:22:22 -04006609
Peter Xufb04a1e2020-09-30 21:22:22 -040066108.29 KVM_CAP_DIRTY_LOG_RING
6611---------------------------
6612
6613:Architectures: x86
6614:Parameters: args[0] - size of the dirty log ring
6615
6616KVM is capable of tracking dirty memory using ring buffers that are
6617mmaped into userspace; there is one dirty ring per vcpu.
6618
6619The dirty ring is available to userspace as an array of
6620``struct kvm_dirty_gfn``. Each dirty entry it's defined as::
6621
6622 struct kvm_dirty_gfn {
6623 __u32 flags;
6624 __u32 slot; /* as_id | slot_id */
6625 __u64 offset;
6626 };
6627
6628The following values are defined for the flags field to define the
6629current state of the entry::
6630
6631 #define KVM_DIRTY_GFN_F_DIRTY BIT(0)
6632 #define KVM_DIRTY_GFN_F_RESET BIT(1)
6633 #define KVM_DIRTY_GFN_F_MASK 0x3
6634
6635Userspace should call KVM_ENABLE_CAP ioctl right after KVM_CREATE_VM
6636ioctl to enable this capability for the new guest and set the size of
6637the rings. Enabling the capability is only allowed before creating any
6638vCPU, and the size of the ring must be a power of two. The larger the
6639ring buffer, the less likely the ring is full and the VM is forced to
6640exit to userspace. The optimal size depends on the workload, but it is
6641recommended that it be at least 64 KiB (4096 entries).
6642
6643Just like for dirty page bitmaps, the buffer tracks writes to
6644all user memory regions for which the KVM_MEM_LOG_DIRTY_PAGES flag was
6645set in KVM_SET_USER_MEMORY_REGION. Once a memory region is registered
6646with the flag set, userspace can start harvesting dirty pages from the
6647ring buffer.
6648
6649An entry in the ring buffer can be unused (flag bits ``00``),
6650dirty (flag bits ``01``) or harvested (flag bits ``1X``). The
6651state machine for the entry is as follows::
6652
6653 dirtied harvested reset
6654 00 -----------> 01 -------------> 1X -------+
6655 ^ |
6656 | |
6657 +------------------------------------------+
6658
6659To harvest the dirty pages, userspace accesses the mmaped ring buffer
6660to read the dirty GFNs. If the flags has the DIRTY bit set (at this stage
6661the RESET bit must be cleared), then it means this GFN is a dirty GFN.
6662The userspace should harvest this GFN and mark the flags from state
6663``01b`` to ``1Xb`` (bit 0 will be ignored by KVM, but bit 1 must be set
6664to show that this GFN is harvested and waiting for a reset), and move
6665on to the next GFN. The userspace should continue to do this until the
6666flags of a GFN have the DIRTY bit cleared, meaning that it has harvested
6667all the dirty GFNs that were available.
6668
6669It's not necessary for userspace to harvest the all dirty GFNs at once.
6670However it must collect the dirty GFNs in sequence, i.e., the userspace
6671program cannot skip one dirty GFN to collect the one next to it.
6672
6673After processing one or more entries in the ring buffer, userspace
6674calls the VM ioctl KVM_RESET_DIRTY_RINGS to notify the kernel about
6675it, so that the kernel will reprotect those collected GFNs.
6676Therefore, the ioctl must be called *before* reading the content of
6677the dirty pages.
6678
6679The dirty ring can get full. When it happens, the KVM_RUN of the
6680vcpu will return with exit reason KVM_EXIT_DIRTY_LOG_FULL.
6681
6682The dirty ring interface has a major difference comparing to the
6683KVM_GET_DIRTY_LOG interface in that, when reading the dirty ring from
6684userspace, it's still possible that the kernel has not yet flushed the
6685processor's dirty page buffers into the kernel buffer (with dirty bitmaps, the
6686flushing is done by the KVM_GET_DIRTY_LOG ioctl). To achieve that, one
6687needs to kick the vcpu out of KVM_RUN using a signal. The resulting
6688vmexit ensures that all dirty GFNs are flushed to the dirty rings.
Peter Xub2cc64c2020-09-30 21:22:24 -04006689
6690NOTE: the capability KVM_CAP_DIRTY_LOG_RING and the corresponding
6691ioctl KVM_RESET_DIRTY_RINGS are mutual exclusive to the existing ioctls
6692KVM_GET_DIRTY_LOG and KVM_CLEAR_DIRTY_LOG. After enabling
6693KVM_CAP_DIRTY_LOG_RING with an acceptable dirty ring size, the virtual
6694machine will switch to ring-buffer dirty page tracking and further
6695KVM_GET_DIRTY_LOG or KVM_CLEAR_DIRTY_LOG ioctls will fail.
David Woodhousee1f68162020-12-04 09:03:56 +00006696
66978.30 KVM_CAP_XEN_HVM
6698--------------------
6699
6700:Architectures: x86
6701
6702This capability indicates the features that Xen supports for hosting Xen
6703PVHVM guests. Valid flags are::
6704
6705 #define KVM_XEN_HVM_CONFIG_HYPERCALL_MSR (1 << 0)
6706 #define KVM_XEN_HVM_CONFIG_INTERCEPT_HCALL (1 << 1)
6707 #define KVM_XEN_HVM_CONFIG_SHARED_INFO (1 << 2)
David Woodhouse30b5c852021-03-01 12:53:09 +00006708 #define KVM_XEN_HVM_CONFIG_RUNSTATE (1 << 2)
David Woodhousee1f68162020-12-04 09:03:56 +00006709
6710The KVM_XEN_HVM_CONFIG_HYPERCALL_MSR flag indicates that the KVM_XEN_HVM_CONFIG
6711ioctl is available, for the guest to set its hypercall page.
6712
6713If KVM_XEN_HVM_CONFIG_INTERCEPT_HCALL is also set, the same flag may also be
6714provided in the flags to KVM_XEN_HVM_CONFIG, without providing hypercall page
6715contents, to request that KVM generate hypercall page content automatically
6716and also enable interception of guest hypercalls with KVM_EXIT_XEN.
6717
6718The KVM_XEN_HVM_CONFIG_SHARED_INFO flag indicates the availability of the
6719KVM_XEN_HVM_SET_ATTR, KVM_XEN_HVM_GET_ATTR, KVM_XEN_VCPU_SET_ATTR and
6720KVM_XEN_VCPU_GET_ATTR ioctls, as well as the delivery of exception vectors
6721for event channel upcalls when the evtchn_upcall_pending field of a vcpu's
6722vcpu_info is set.
David Woodhouse30b5c852021-03-01 12:53:09 +00006723
6724The KVM_XEN_HVM_CONFIG_RUNSTATE flag indicates that the runstate-related
6725features KVM_XEN_VCPU_ATTR_TYPE_RUNSTATE_ADDR/_CURRENT/_DATA/_ADJUST are
6726supported by the KVM_XEN_VCPU_SET_ATTR/KVM_XEN_VCPU_GET_ATTR ioctls.
Emanuele Giuseppe Esposito24e74752021-03-16 18:08:14 +01006727
67288.31 KVM_CAP_PPC_MULTITCE
6729-------------------------
6730
6731:Capability: KVM_CAP_PPC_MULTITCE
6732:Architectures: ppc
6733:Type: vm
6734
6735This capability means the kernel is capable of handling hypercalls
6736H_PUT_TCE_INDIRECT and H_STUFF_TCE without passing those into the user
6737space. This significantly accelerates DMA operations for PPC KVM guests.
6738User space should expect that its handlers for these hypercalls
6739are not going to be called if user space previously registered LIOBN
6740in KVM (via KVM_CREATE_SPAPR_TCE or similar calls).
6741
6742In order to enable H_PUT_TCE_INDIRECT and H_STUFF_TCE use in the guest,
6743user space might have to advertise it for the guest. For example,
6744IBM pSeries (sPAPR) guest starts using them if "hcall-multi-tce" is
6745present in the "ibm,hypertas-functions" device-tree property.
6746
6747The hypercalls mentioned above may or may not be processed successfully
6748in the kernel based fast path. If they can not be handled by the kernel,
6749they will get passed on to user space. So user space still has to have
6750an implementation for these despite the in kernel acceleration.
6751
6752This capability is always enabled.