blob: b7d4180605ab667f50112dce64d9306ac7fad9d0 [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
68file descriptor is released, creating additional references to a VM via
69via 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
185Please note that configuring the IPA size does not affect the capability
186exposed by the guest CPUs in ID_AA64MMFR0_EL1[PARange]. It only affects
187size of the address translated by the stage2 level (guest physical to
188host physical address translations).
189
190
Tom Lendacky801e4592018-02-21 13:39:51 -06001914.3 KVM_GET_MSR_INDEX_LIST, KVM_GET_MSR_FEATURE_INDEX_LIST
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100192----------------------------------------------------------
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300193
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100194:Capability: basic, KVM_CAP_GET_MSR_FEATURES for KVM_GET_MSR_FEATURE_INDEX_LIST
195:Architectures: x86
196:Type: system ioctl
197:Parameters: struct kvm_msr_list (in/out)
198:Returns: 0 on success; -1 on error
199
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300200Errors:
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300201
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100202 ====== ============================================================
203 EFAULT the msr index list cannot be read from or written to
204 E2BIG the msr index list is to be to fit in the array specified by
205 the user.
206 ====== ============================================================
207
208::
209
210 struct kvm_msr_list {
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300211 __u32 nmsrs; /* number of msrs in entries */
212 __u32 indices[0];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100213 };
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300214
Tom Lendacky801e4592018-02-21 13:39:51 -0600215The user fills in the size of the indices array in nmsrs, and in return
216kvm adjusts nmsrs to reflect the actual number of msrs and fills in the
217indices array with their numbers.
218
219KVM_GET_MSR_INDEX_LIST returns the guest msrs that are supported. The list
220varies by kvm version and host processor, but does not change otherwise.
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300221
Avi Kivity2e2602c2010-07-07 14:09:39 +0300222Note: if kvm indicates supports MCE (KVM_CAP_MCE), then the MCE bank MSRs are
223not returned in the MSR list, as different vcpus can have a different number
224of banks, as set via the KVM_X86_SETUP_MCE ioctl.
225
Tom Lendacky801e4592018-02-21 13:39:51 -0600226KVM_GET_MSR_FEATURE_INDEX_LIST returns the list of MSRs that can be passed
227to the KVM_GET_MSRS system ioctl. This lets userspace probe host capabilities
228and processor features that are exposed via MSRs (e.g., VMX capabilities).
229This list also varies by kvm version and host processor, but does not change
230otherwise.
231
Jan Kiszka414fa982012-04-24 16:40:15 +0200232
Avi Kivity9c1b96e2009-06-09 12:37:58 +03002334.4 KVM_CHECK_EXTENSION
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100234-----------------------
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300235
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100236:Capability: basic, KVM_CAP_CHECK_EXTENSION_VM for vm ioctl
237:Architectures: all
238:Type: system ioctl, vm ioctl
239:Parameters: extension identifier (KVM_CAP_*)
240:Returns: 0 if unsupported; 1 (or some other positive integer) if supported
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300241
242The API allows the application to query about extensions to the core
243kvm API. Userspace passes an extension identifier (an integer) and
244receives an integer that describes the extension availability.
245Generally 0 means no and 1 means yes, but some extensions may report
246additional information in the integer return value.
247
Alexander Graf92b591a2014-07-14 18:33:08 +0200248Based on their initialization different VMs may have different capabilities.
249It is thus encouraged to use the vm ioctl to query for capabilities (available
250with KVM_CAP_CHECK_EXTENSION_VM on the vm fd)
Jan Kiszka414fa982012-04-24 16:40:15 +0200251
Avi Kivity9c1b96e2009-06-09 12:37:58 +03002524.5 KVM_GET_VCPU_MMAP_SIZE
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100253--------------------------
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300254
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100255:Capability: basic
256:Architectures: all
257:Type: system ioctl
258:Parameters: none
259:Returns: size of vcpu mmap area, in bytes
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300260
261The KVM_RUN ioctl (cf.) communicates with userspace via a shared
262memory region. This ioctl returns the size of that region. See the
263KVM_RUN documentation for details.
264
Jan Kiszka414fa982012-04-24 16:40:15 +0200265
Avi Kivity9c1b96e2009-06-09 12:37:58 +03002664.6 KVM_SET_MEMORY_REGION
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100267-------------------------
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300268
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100269:Capability: basic
270:Architectures: all
271:Type: vm ioctl
272:Parameters: struct kvm_memory_region (in)
273:Returns: 0 on success, -1 on error
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300274
Avi Kivityb74a07b2010-06-21 11:48:05 +0300275This ioctl is obsolete and has been removed.
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300276
Jan Kiszka414fa982012-04-24 16:40:15 +0200277
Paul Bolle68ba6972011-02-15 00:05:59 +01002784.7 KVM_CREATE_VCPU
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100279-------------------
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300280
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100281:Capability: basic
282:Architectures: all
283:Type: vm ioctl
284:Parameters: vcpu id (apic id on x86)
285:Returns: vcpu fd on success, -1 on error
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300286
Greg Kurz0b1b1df2016-05-09 18:13:37 +0200287This API adds a vcpu to a virtual machine. No more than max_vcpus may be added.
288The vcpu id is an integer in the range [0, max_vcpu_id).
Sasha Levin8c3ba332011-07-18 17:17:15 +0300289
290The recommended max_vcpus value can be retrieved using the KVM_CAP_NR_VCPUS of
291the KVM_CHECK_EXTENSION ioctl() at run-time.
292The maximum possible value for max_vcpus can be retrieved using the
293KVM_CAP_MAX_VCPUS of the KVM_CHECK_EXTENSION ioctl() at run-time.
294
Pekka Enberg76d25402011-05-09 22:48:54 +0300295If the KVM_CAP_NR_VCPUS does not exist, you should assume that max_vcpus is 4
296cpus max.
Sasha Levin8c3ba332011-07-18 17:17:15 +0300297If the KVM_CAP_MAX_VCPUS does not exist, you should assume that max_vcpus is
298same as the value returned from KVM_CAP_NR_VCPUS.
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300299
Greg Kurz0b1b1df2016-05-09 18:13:37 +0200300The maximum possible value for max_vcpu_id can be retrieved using the
301KVM_CAP_MAX_VCPU_ID of the KVM_CHECK_EXTENSION ioctl() at run-time.
302
303If the KVM_CAP_MAX_VCPU_ID does not exist, you should assume that max_vcpu_id
304is the same as the value returned from KVM_CAP_MAX_VCPUS.
305
Paul Mackerras371fefd2011-06-29 00:23:08 +0000306On powerpc using book3s_hv mode, the vcpus are mapped onto virtual
307threads in one or more virtual CPU cores. (This is because the
308hardware requires all the hardware threads in a CPU core to be in the
309same partition.) The KVM_CAP_PPC_SMT capability indicates the number
310of vcpus per virtual core (vcore). The vcore id is obtained by
311dividing the vcpu id by the number of vcpus per vcore. The vcpus in a
312given vcore will always be in the same physical core as each other
313(though that might be a different physical core from time to time).
314Userspace can control the threading (SMT) mode of the guest by its
315allocation of vcpu ids. For example, if userspace wants
316single-threaded guest vcpus, it should make all vcpu ids be a multiple
317of the number of vcpus per vcore.
318
Carsten Otte5b1c1492012-01-04 10:25:23 +0100319For virtual cpus that have been created with S390 user controlled virtual
320machines, the resulting vcpu fd can be memory mapped at page offset
321KVM_S390_SIE_PAGE_OFFSET in order to obtain a memory map of the virtual
322cpu's hardware control block.
323
Jan Kiszka414fa982012-04-24 16:40:15 +0200324
Paul Bolle68ba6972011-02-15 00:05:59 +01003254.8 KVM_GET_DIRTY_LOG (vm ioctl)
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100326--------------------------------
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300327
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100328:Capability: basic
329:Architectures: all
330:Type: vm ioctl
331:Parameters: struct kvm_dirty_log (in/out)
332:Returns: 0 on success, -1 on error
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300333
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100334::
335
336 /* for KVM_GET_DIRTY_LOG */
337 struct kvm_dirty_log {
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300338 __u32 slot;
339 __u32 padding;
340 union {
341 void __user *dirty_bitmap; /* one bit per page */
342 __u64 padding;
343 };
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100344 };
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300345
346Given a memory slot, return a bitmap containing any pages dirtied
347since the last call to this ioctl. Bit 0 is the first page in the
348memory slot. Ensure the entire structure is cleared to avoid padding
349issues.
350
Paolo Bonzinif481b062015-05-17 17:30:37 +0200351If KVM_CAP_MULTI_ADDRESS_SPACE is available, bits 16-31 specifies
352the address space for which you want to return the dirty bitmap.
353They must be less than the value that KVM_CHECK_EXTENSION returns for
354the KVM_CAP_MULTI_ADDRESS_SPACE capability.
355
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +0200356The bits in the dirty bitmap are cleared before the ioctl returns, unless
Peter Xud7547c52019-05-08 17:15:47 +0800357KVM_CAP_MANUAL_DIRTY_LOG_PROTECT2 is enabled. For more information,
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +0200358see the description of the capability.
Jan Kiszka414fa982012-04-24 16:40:15 +0200359
Paul Bolle68ba6972011-02-15 00:05:59 +01003604.9 KVM_SET_MEMORY_ALIAS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100361------------------------
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300362
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100363:Capability: basic
364:Architectures: x86
365:Type: vm ioctl
366:Parameters: struct kvm_memory_alias (in)
367:Returns: 0 (success), -1 (error)
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300368
Avi Kivitya1f4d3952010-06-21 11:44:20 +0300369This ioctl is obsolete and has been removed.
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300370
Jan Kiszka414fa982012-04-24 16:40:15 +0200371
Paul Bolle68ba6972011-02-15 00:05:59 +01003724.10 KVM_RUN
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100373------------
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300374
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100375:Capability: basic
376:Architectures: all
377:Type: vcpu ioctl
378:Parameters: none
379:Returns: 0 on success, -1 on error
380
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300381Errors:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100382
383 ===== =============================
384 EINTR an unmasked signal is pending
385 ===== =============================
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300386
387This ioctl is used to run a guest virtual cpu. While there are no
388explicit parameters, there is an implicit parameter block that can be
389obtained by mmap()ing the vcpu fd at offset 0, with the size given by
390KVM_GET_VCPU_MMAP_SIZE. The parameter block is formatted as a 'struct
391kvm_run' (see below).
392
Jan Kiszka414fa982012-04-24 16:40:15 +0200393
Paul Bolle68ba6972011-02-15 00:05:59 +01003944.11 KVM_GET_REGS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100395-----------------
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300396
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100397:Capability: basic
398:Architectures: all except ARM, arm64
399:Type: vcpu ioctl
400:Parameters: struct kvm_regs (out)
401:Returns: 0 on success, -1 on error
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300402
403Reads the general purpose registers from the vcpu.
404
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100405::
406
407 /* x86 */
408 struct kvm_regs {
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300409 /* out (KVM_GET_REGS) / in (KVM_SET_REGS) */
410 __u64 rax, rbx, rcx, rdx;
411 __u64 rsi, rdi, rsp, rbp;
412 __u64 r8, r9, r10, r11;
413 __u64 r12, r13, r14, r15;
414 __u64 rip, rflags;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100415 };
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300416
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100417 /* mips */
418 struct kvm_regs {
James Hoganc2d2c212014-07-04 15:11:35 +0100419 /* out (KVM_GET_REGS) / in (KVM_SET_REGS) */
420 __u64 gpr[32];
421 __u64 hi;
422 __u64 lo;
423 __u64 pc;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100424 };
James Hoganc2d2c212014-07-04 15:11:35 +0100425
Jan Kiszka414fa982012-04-24 16:40:15 +0200426
Paul Bolle68ba6972011-02-15 00:05:59 +01004274.12 KVM_SET_REGS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100428-----------------
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300429
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100430:Capability: basic
431:Architectures: all except ARM, arm64
432:Type: vcpu ioctl
433:Parameters: struct kvm_regs (in)
434:Returns: 0 on success, -1 on error
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300435
436Writes the general purpose registers into the vcpu.
437
438See KVM_GET_REGS for the data structure.
439
Jan Kiszka414fa982012-04-24 16:40:15 +0200440
Paul Bolle68ba6972011-02-15 00:05:59 +01004414.13 KVM_GET_SREGS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100442------------------
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300443
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100444:Capability: basic
445:Architectures: x86, ppc
446:Type: vcpu ioctl
447:Parameters: struct kvm_sregs (out)
448:Returns: 0 on success, -1 on error
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300449
450Reads special registers from the vcpu.
451
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100452::
453
454 /* x86 */
455 struct kvm_sregs {
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300456 struct kvm_segment cs, ds, es, fs, gs, ss;
457 struct kvm_segment tr, ldt;
458 struct kvm_dtable gdt, idt;
459 __u64 cr0, cr2, cr3, cr4, cr8;
460 __u64 efer;
461 __u64 apic_base;
462 __u64 interrupt_bitmap[(KVM_NR_INTERRUPTS + 63) / 64];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100463 };
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300464
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100465 /* ppc -- see arch/powerpc/include/uapi/asm/kvm.h */
Scott Wood5ce941e2011-04-27 17:24:21 -0500466
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300467interrupt_bitmap is a bitmap of pending external interrupts. At most
468one bit may be set. This interrupt has been acknowledged by the APIC
469but not yet injected into the cpu core.
470
Jan Kiszka414fa982012-04-24 16:40:15 +0200471
Paul Bolle68ba6972011-02-15 00:05:59 +01004724.14 KVM_SET_SREGS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100473------------------
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300474
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100475:Capability: basic
476:Architectures: x86, ppc
477:Type: vcpu ioctl
478:Parameters: struct kvm_sregs (in)
479:Returns: 0 on success, -1 on error
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300480
481Writes special registers into the vcpu. See KVM_GET_SREGS for the
482data structures.
483
Jan Kiszka414fa982012-04-24 16:40:15 +0200484
Paul Bolle68ba6972011-02-15 00:05:59 +01004854.15 KVM_TRANSLATE
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100486------------------
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300487
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100488:Capability: basic
489:Architectures: x86
490:Type: vcpu ioctl
491:Parameters: struct kvm_translation (in/out)
492:Returns: 0 on success, -1 on error
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300493
494Translates a virtual address according to the vcpu's current address
495translation mode.
496
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100497::
498
499 struct kvm_translation {
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300500 /* in */
501 __u64 linear_address;
502
503 /* out */
504 __u64 physical_address;
505 __u8 valid;
506 __u8 writeable;
507 __u8 usermode;
508 __u8 pad[5];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100509 };
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300510
Jan Kiszka414fa982012-04-24 16:40:15 +0200511
Paul Bolle68ba6972011-02-15 00:05:59 +01005124.16 KVM_INTERRUPT
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100513------------------
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300514
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100515:Capability: basic
516:Architectures: x86, ppc, mips
517:Type: vcpu ioctl
518:Parameters: struct kvm_interrupt (in)
519:Returns: 0 on success, negative on failure.
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300520
Steve Rutherford1c1a9ce2015-07-30 11:27:16 +0200521Queues a hardware interrupt vector to be injected.
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300522
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100523::
524
525 /* for KVM_INTERRUPT */
526 struct kvm_interrupt {
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300527 /* in */
528 __u32 irq;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100529 };
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300530
Alexander Graf6f7a2bd2010-08-31 02:03:32 +0200531X86:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100532^^^^
Alexander Graf6f7a2bd2010-08-31 02:03:32 +0200533
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100534:Returns:
535
536 ========= ===================================
537 0 on success,
538 -EEXIST if an interrupt is already enqueued
539 -EINVAL the the irq number is invalid
540 -ENXIO if the PIC is in the kernel
541 -EFAULT if the pointer is invalid
542 ========= ===================================
Steve Rutherford1c1a9ce2015-07-30 11:27:16 +0200543
544Note 'irq' is an interrupt vector, not an interrupt pin or line. This
545ioctl is useful if the in-kernel PIC is not used.
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300546
Alexander Graf6f7a2bd2010-08-31 02:03:32 +0200547PPC:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100548^^^^
Alexander Graf6f7a2bd2010-08-31 02:03:32 +0200549
550Queues an external interrupt to be injected. This ioctl is overleaded
551with 3 different irq values:
552
553a) KVM_INTERRUPT_SET
554
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100555 This injects an edge type external interrupt into the guest once it's ready
556 to receive interrupts. When injected, the interrupt is done.
Alexander Graf6f7a2bd2010-08-31 02:03:32 +0200557
558b) KVM_INTERRUPT_UNSET
559
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100560 This unsets any pending interrupt.
Alexander Graf6f7a2bd2010-08-31 02:03:32 +0200561
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100562 Only available with KVM_CAP_PPC_UNSET_IRQ.
Alexander Graf6f7a2bd2010-08-31 02:03:32 +0200563
564c) KVM_INTERRUPT_SET_LEVEL
565
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100566 This injects a level type external interrupt into the guest context. The
567 interrupt stays pending until a specific ioctl with KVM_INTERRUPT_UNSET
568 is triggered.
Alexander Graf6f7a2bd2010-08-31 02:03:32 +0200569
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100570 Only available with KVM_CAP_PPC_IRQ_LEVEL.
Alexander Graf6f7a2bd2010-08-31 02:03:32 +0200571
572Note that any value for 'irq' other than the ones stated above is invalid
573and incurs unexpected behavior.
574
Sean Christopherson5e124902019-02-15 12:48:38 -0800575This is an asynchronous vcpu ioctl and can be invoked from any thread.
576
James Hoganc2d2c212014-07-04 15:11:35 +0100577MIPS:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100578^^^^^
James Hoganc2d2c212014-07-04 15:11:35 +0100579
580Queues an external interrupt to be injected into the virtual CPU. A negative
581interrupt number dequeues the interrupt.
582
Sean Christopherson5e124902019-02-15 12:48:38 -0800583This is an asynchronous vcpu ioctl and can be invoked from any thread.
584
Jan Kiszka414fa982012-04-24 16:40:15 +0200585
Paul Bolle68ba6972011-02-15 00:05:59 +01005864.17 KVM_DEBUG_GUEST
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100587--------------------
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300588
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100589:Capability: basic
590:Architectures: none
591:Type: vcpu ioctl
592:Parameters: none)
593:Returns: -1 on error
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300594
595Support for this has been removed. Use KVM_SET_GUEST_DEBUG instead.
596
Jan Kiszka414fa982012-04-24 16:40:15 +0200597
Paul Bolle68ba6972011-02-15 00:05:59 +01005984.18 KVM_GET_MSRS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100599-----------------
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300600
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100601:Capability: basic (vcpu), KVM_CAP_GET_MSR_FEATURES (system)
602:Architectures: x86
603:Type: system ioctl, vcpu ioctl
604:Parameters: struct kvm_msrs (in/out)
605:Returns: number of msrs successfully returned;
606 -1 on error
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300607
Tom Lendacky801e4592018-02-21 13:39:51 -0600608When used as a system ioctl:
609Reads the values of MSR-based features that are available for the VM. This
610is similar to KVM_GET_SUPPORTED_CPUID, but it returns MSR indices and values.
611The list of msr-based features can be obtained using KVM_GET_MSR_FEATURE_INDEX_LIST
612in a system ioctl.
613
614When used as a vcpu ioctl:
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300615Reads model-specific registers from the vcpu. Supported msr indices can
Tom Lendacky801e4592018-02-21 13:39:51 -0600616be obtained using KVM_GET_MSR_INDEX_LIST in a system ioctl.
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300617
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100618::
619
620 struct kvm_msrs {
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300621 __u32 nmsrs; /* number of msrs in entries */
622 __u32 pad;
623
624 struct kvm_msr_entry entries[0];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100625 };
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300626
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100627 struct kvm_msr_entry {
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300628 __u32 index;
629 __u32 reserved;
630 __u64 data;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100631 };
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300632
633Application code should set the 'nmsrs' member (which indicates the
634size of the entries array) and the 'index' member of each array entry.
635kvm will fill in the 'data' member.
636
Jan Kiszka414fa982012-04-24 16:40:15 +0200637
Paul Bolle68ba6972011-02-15 00:05:59 +01006384.19 KVM_SET_MSRS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100639-----------------
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300640
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100641:Capability: basic
642:Architectures: x86
643:Type: vcpu ioctl
644:Parameters: struct kvm_msrs (in)
645:Returns: number of msrs successfully set (see below), -1 on error
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300646
647Writes model-specific registers to the vcpu. See KVM_GET_MSRS for the
648data structures.
649
650Application code should set the 'nmsrs' member (which indicates the
651size of the entries array), and the 'index' and 'data' members of each
652array entry.
653
Xiaoyao Lib274a292019-09-05 08:57:37 +0800654It tries to set the MSRs in array entries[] one by one. If setting an MSR
655fails, e.g., due to setting reserved bits, the MSR isn't supported/emulated
656by KVM, etc..., it stops processing the MSR list and returns the number of
657MSRs that have been set successfully.
658
Jan Kiszka414fa982012-04-24 16:40:15 +0200659
Paul Bolle68ba6972011-02-15 00:05:59 +01006604.20 KVM_SET_CPUID
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100661------------------
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300662
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100663:Capability: basic
664:Architectures: x86
665:Type: vcpu ioctl
666:Parameters: struct kvm_cpuid (in)
667:Returns: 0 on success, -1 on error
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300668
669Defines the vcpu responses to the cpuid instruction. Applications
670should use the KVM_SET_CPUID2 ioctl if available.
671
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100672::
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300673
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100674 struct kvm_cpuid_entry {
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300675 __u32 function;
676 __u32 eax;
677 __u32 ebx;
678 __u32 ecx;
679 __u32 edx;
680 __u32 padding;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100681 };
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300682
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100683 /* for KVM_SET_CPUID */
684 struct kvm_cpuid {
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300685 __u32 nent;
686 __u32 padding;
687 struct kvm_cpuid_entry entries[0];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100688 };
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300689
Jan Kiszka414fa982012-04-24 16:40:15 +0200690
Paul Bolle68ba6972011-02-15 00:05:59 +01006914.21 KVM_SET_SIGNAL_MASK
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100692------------------------
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300693
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100694:Capability: basic
695:Architectures: all
696:Type: vcpu ioctl
697:Parameters: struct kvm_signal_mask (in)
698:Returns: 0 on success, -1 on error
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300699
700Defines which signals are blocked during execution of KVM_RUN. This
701signal mask temporarily overrides the threads signal mask. Any
702unblocked signal received (except SIGKILL and SIGSTOP, which retain
703their traditional behaviour) will cause KVM_RUN to return with -EINTR.
704
705Note the signal will only be delivered if not blocked by the original
706signal mask.
707
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100708::
709
710 /* for KVM_SET_SIGNAL_MASK */
711 struct kvm_signal_mask {
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300712 __u32 len;
713 __u8 sigset[0];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100714 };
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300715
Jan Kiszka414fa982012-04-24 16:40:15 +0200716
Paul Bolle68ba6972011-02-15 00:05:59 +01007174.22 KVM_GET_FPU
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100718----------------
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300719
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100720:Capability: basic
721:Architectures: x86
722:Type: vcpu ioctl
723:Parameters: struct kvm_fpu (out)
724:Returns: 0 on success, -1 on error
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300725
726Reads the floating point state from the vcpu.
727
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100728::
729
730 /* for KVM_GET_FPU and KVM_SET_FPU */
731 struct kvm_fpu {
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300732 __u8 fpr[8][16];
733 __u16 fcw;
734 __u16 fsw;
735 __u8 ftwx; /* in fxsave format */
736 __u8 pad1;
737 __u16 last_opcode;
738 __u64 last_ip;
739 __u64 last_dp;
740 __u8 xmm[16][16];
741 __u32 mxcsr;
742 __u32 pad2;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100743 };
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300744
Jan Kiszka414fa982012-04-24 16:40:15 +0200745
Paul Bolle68ba6972011-02-15 00:05:59 +01007464.23 KVM_SET_FPU
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100747----------------
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300748
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100749:Capability: basic
750:Architectures: x86
751:Type: vcpu ioctl
752:Parameters: struct kvm_fpu (in)
753:Returns: 0 on success, -1 on error
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300754
755Writes the floating point state to the vcpu.
756
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100757::
758
759 /* for KVM_GET_FPU and KVM_SET_FPU */
760 struct kvm_fpu {
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300761 __u8 fpr[8][16];
762 __u16 fcw;
763 __u16 fsw;
764 __u8 ftwx; /* in fxsave format */
765 __u8 pad1;
766 __u16 last_opcode;
767 __u64 last_ip;
768 __u64 last_dp;
769 __u8 xmm[16][16];
770 __u32 mxcsr;
771 __u32 pad2;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100772 };
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300773
Jan Kiszka414fa982012-04-24 16:40:15 +0200774
Paul Bolle68ba6972011-02-15 00:05:59 +01007754.24 KVM_CREATE_IRQCHIP
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100776-----------------------
Avi Kivity5dadbfd2009-08-23 17:08:04 +0300777
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100778:Capability: KVM_CAP_IRQCHIP, KVM_CAP_S390_IRQCHIP (s390)
779:Architectures: x86, ARM, arm64, s390
780:Type: vm ioctl
781:Parameters: none
782:Returns: 0 on success, -1 on error
Avi Kivity5dadbfd2009-08-23 17:08:04 +0300783
Andre Przywaraac3d3732014-06-03 10:26:30 +0200784Creates an interrupt controller model in the kernel.
785On x86, creates a virtual ioapic, a virtual PIC (two PICs, nested), and sets up
786future vcpus to have a local APIC. IRQ routing for GSIs 0-15 is set to both
787PIC and IOAPIC; GSI 16-23 only go to the IOAPIC.
788On ARM/arm64, a GICv2 is created. Any other GIC versions require the usage of
789KVM_CREATE_DEVICE, which also supports creating a GICv2. Using
790KVM_CREATE_DEVICE is preferred over KVM_CREATE_IRQCHIP for GICv2.
791On s390, a dummy irq routing table is created.
Cornelia Huck84223592013-07-15 13:36:01 +0200792
793Note that on s390 the KVM_CAP_S390_IRQCHIP vm capability needs to be enabled
794before KVM_CREATE_IRQCHIP can be used.
Avi Kivity5dadbfd2009-08-23 17:08:04 +0300795
Jan Kiszka414fa982012-04-24 16:40:15 +0200796
Paul Bolle68ba6972011-02-15 00:05:59 +01007974.25 KVM_IRQ_LINE
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100798-----------------
Avi Kivity5dadbfd2009-08-23 17:08:04 +0300799
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100800:Capability: KVM_CAP_IRQCHIP
801:Architectures: x86, arm, arm64
802:Type: vm ioctl
803:Parameters: struct kvm_irq_level
804:Returns: 0 on success, -1 on error
Avi Kivity5dadbfd2009-08-23 17:08:04 +0300805
806Sets the level of a GSI input to the interrupt controller model in the kernel.
Christoffer Dall86ce8532013-01-20 18:28:08 -0500807On some architectures it is required that an interrupt controller model has
808been previously created with KVM_CREATE_IRQCHIP. Note that edge-triggered
809interrupts require the level to be set to 1 and then back to 0.
810
Gabriel L. Somlo100943c2014-02-27 23:06:17 -0500811On real hardware, interrupt pins can be active-low or active-high. This
812does not matter for the level field of struct kvm_irq_level: 1 always
813means active (asserted), 0 means inactive (deasserted).
814
815x86 allows the operating system to program the interrupt polarity
816(active-low/active-high) for level-triggered interrupts, and KVM used
817to consider the polarity. However, due to bitrot in the handling of
818active-low interrupts, the above convention is now valid on x86 too.
819This is signaled by KVM_CAP_X86_IOAPIC_POLARITY_IGNORED. Userspace
820should not present interrupts to the guest as active-low unless this
821capability is present (or unless it is not using the in-kernel irqchip,
822of course).
823
824
Marc Zyngier379e04c72013-04-02 17:46:31 +0100825ARM/arm64 can signal an interrupt either at the CPU level, or at the
826in-kernel irqchip (GIC), and for in-kernel irqchip can tell the GIC to
827use PPIs designated for specific cpus. The irq field is interpreted
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100828like this::
Christoffer Dall86ce8532013-01-20 18:28:08 -0500829
Marc Zyngier92f35b72019-08-18 14:09:47 +0100830  bits: | 31 ... 28 | 27 ... 24 | 23 ... 16 | 15 ... 0 |
831 field: | vcpu2_index | irq_type | vcpu_index | irq_id |
Christoffer Dall86ce8532013-01-20 18:28:08 -0500832
833The irq_type field has the following values:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100834
835- irq_type[0]:
836 out-of-kernel GIC: irq_id 0 is IRQ, irq_id 1 is FIQ
837- irq_type[1]:
838 in-kernel GIC: SPI, irq_id between 32 and 1019 (incl.)
Christoffer Dall86ce8532013-01-20 18:28:08 -0500839 (the vcpu_index field is ignored)
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100840- irq_type[2]:
841 in-kernel GIC: PPI, irq_id between 16 and 31 (incl.)
Christoffer Dall86ce8532013-01-20 18:28:08 -0500842
843(The irq_id field thus corresponds nicely to the IRQ ID in the ARM GIC specs)
844
Gabriel L. Somlo100943c2014-02-27 23:06:17 -0500845In both cases, level is used to assert/deassert the line.
Avi Kivity5dadbfd2009-08-23 17:08:04 +0300846
Marc Zyngier92f35b72019-08-18 14:09:47 +0100847When KVM_CAP_ARM_IRQ_LINE_LAYOUT_2 is supported, the target vcpu is
848identified as (256 * vcpu2_index + vcpu_index). Otherwise, vcpu2_index
849must be zero.
850
851Note that on arm/arm64, the KVM_CAP_IRQCHIP capability only conditions
852injection of interrupts for the in-kernel irqchip. KVM_IRQ_LINE can always
853be used for a userspace interrupt controller.
854
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100855::
856
857 struct kvm_irq_level {
Avi Kivity5dadbfd2009-08-23 17:08:04 +0300858 union {
859 __u32 irq; /* GSI */
860 __s32 status; /* not used for KVM_IRQ_LEVEL */
861 };
862 __u32 level; /* 0 or 1 */
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100863 };
Avi Kivity5dadbfd2009-08-23 17:08:04 +0300864
Jan Kiszka414fa982012-04-24 16:40:15 +0200865
Paul Bolle68ba6972011-02-15 00:05:59 +01008664.26 KVM_GET_IRQCHIP
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100867--------------------
Avi Kivity5dadbfd2009-08-23 17:08:04 +0300868
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100869:Capability: KVM_CAP_IRQCHIP
870:Architectures: x86
871:Type: vm ioctl
872:Parameters: struct kvm_irqchip (in/out)
873:Returns: 0 on success, -1 on error
Avi Kivity5dadbfd2009-08-23 17:08:04 +0300874
875Reads the state of a kernel interrupt controller created with
876KVM_CREATE_IRQCHIP into a buffer provided by the caller.
877
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100878::
879
880 struct kvm_irqchip {
Avi Kivity5dadbfd2009-08-23 17:08:04 +0300881 __u32 chip_id; /* 0 = PIC1, 1 = PIC2, 2 = IOAPIC */
882 __u32 pad;
883 union {
884 char dummy[512]; /* reserving space */
885 struct kvm_pic_state pic;
886 struct kvm_ioapic_state ioapic;
887 } chip;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100888 };
Avi Kivity5dadbfd2009-08-23 17:08:04 +0300889
Jan Kiszka414fa982012-04-24 16:40:15 +0200890
Paul Bolle68ba6972011-02-15 00:05:59 +01008914.27 KVM_SET_IRQCHIP
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100892--------------------
Avi Kivity5dadbfd2009-08-23 17:08:04 +0300893
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100894:Capability: KVM_CAP_IRQCHIP
895:Architectures: x86
896:Type: vm ioctl
897:Parameters: struct kvm_irqchip (in)
898:Returns: 0 on success, -1 on error
Avi Kivity5dadbfd2009-08-23 17:08:04 +0300899
900Sets the state of a kernel interrupt controller created with
901KVM_CREATE_IRQCHIP from a buffer provided by the caller.
902
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100903::
904
905 struct kvm_irqchip {
Avi Kivity5dadbfd2009-08-23 17:08:04 +0300906 __u32 chip_id; /* 0 = PIC1, 1 = PIC2, 2 = IOAPIC */
907 __u32 pad;
908 union {
909 char dummy[512]; /* reserving space */
910 struct kvm_pic_state pic;
911 struct kvm_ioapic_state ioapic;
912 } chip;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100913 };
Avi Kivity5dadbfd2009-08-23 17:08:04 +0300914
Jan Kiszka414fa982012-04-24 16:40:15 +0200915
Paul Bolle68ba6972011-02-15 00:05:59 +01009164.28 KVM_XEN_HVM_CONFIG
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100917-----------------------
Ed Swierkffde22a2009-10-15 15:21:43 -0700918
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100919:Capability: KVM_CAP_XEN_HVM
920:Architectures: x86
921:Type: vm ioctl
922:Parameters: struct kvm_xen_hvm_config (in)
923:Returns: 0 on success, -1 on error
Ed Swierkffde22a2009-10-15 15:21:43 -0700924
925Sets the MSR that the Xen HVM guest uses to initialize its hypercall
926page, and provides the starting address and size of the hypercall
927blobs in userspace. When the guest writes the MSR, kvm copies one
928page of a blob (32- or 64-bit, depending on the vcpu mode) to guest
929memory.
930
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100931::
932
933 struct kvm_xen_hvm_config {
Ed Swierkffde22a2009-10-15 15:21:43 -0700934 __u32 flags;
935 __u32 msr;
936 __u64 blob_addr_32;
937 __u64 blob_addr_64;
938 __u8 blob_size_32;
939 __u8 blob_size_64;
940 __u8 pad2[30];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100941 };
Ed Swierkffde22a2009-10-15 15:21:43 -0700942
Jan Kiszka414fa982012-04-24 16:40:15 +0200943
Paul Bolle68ba6972011-02-15 00:05:59 +01009444.29 KVM_GET_CLOCK
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100945------------------
Glauber Costaafbcf7a2009-10-16 15:28:36 -0400946
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100947:Capability: KVM_CAP_ADJUST_CLOCK
948:Architectures: x86
949:Type: vm ioctl
950:Parameters: struct kvm_clock_data (out)
951:Returns: 0 on success, -1 on error
Glauber Costaafbcf7a2009-10-16 15:28:36 -0400952
953Gets the current timestamp of kvmclock as seen by the current guest. In
954conjunction with KVM_SET_CLOCK, it is used to ensure monotonicity on scenarios
955such as migration.
956
Paolo Bonzinie3fd9a92016-11-09 17:48:15 +0100957When KVM_CAP_ADJUST_CLOCK is passed to KVM_CHECK_EXTENSION, it returns the
958set of bits that KVM can return in struct kvm_clock_data's flag member.
959
960The only flag defined now is KVM_CLOCK_TSC_STABLE. If set, the returned
961value is the exact kvmclock value seen by all VCPUs at the instant
962when KVM_GET_CLOCK was called. If clear, the returned value is simply
963CLOCK_MONOTONIC plus a constant offset; the offset can be modified
964with KVM_SET_CLOCK. KVM will try to make all VCPUs follow this clock,
965but the exact value read by each VCPU could differ, because the host
966TSC is not stable.
967
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100968::
969
970 struct kvm_clock_data {
Glauber Costaafbcf7a2009-10-16 15:28:36 -0400971 __u64 clock; /* kvmclock current value */
972 __u32 flags;
973 __u32 pad[9];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100974 };
Glauber Costaafbcf7a2009-10-16 15:28:36 -0400975
Jan Kiszka414fa982012-04-24 16:40:15 +0200976
Paul Bolle68ba6972011-02-15 00:05:59 +01009774.30 KVM_SET_CLOCK
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100978------------------
Glauber Costaafbcf7a2009-10-16 15:28:36 -0400979
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100980:Capability: KVM_CAP_ADJUST_CLOCK
981:Architectures: x86
982:Type: vm ioctl
983:Parameters: struct kvm_clock_data (in)
984:Returns: 0 on success, -1 on error
Glauber Costaafbcf7a2009-10-16 15:28:36 -0400985
Wu Fengguang2044892d2009-12-24 09:04:16 +0800986Sets the current timestamp of kvmclock to the value specified in its parameter.
Glauber Costaafbcf7a2009-10-16 15:28:36 -0400987In conjunction with KVM_GET_CLOCK, it is used to ensure monotonicity on scenarios
988such as migration.
989
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100990::
991
992 struct kvm_clock_data {
Glauber Costaafbcf7a2009-10-16 15:28:36 -0400993 __u64 clock; /* kvmclock current value */
994 __u32 flags;
995 __u32 pad[9];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100996 };
Glauber Costaafbcf7a2009-10-16 15:28:36 -0400997
Jan Kiszka414fa982012-04-24 16:40:15 +0200998
Paul Bolle68ba6972011-02-15 00:05:59 +01009994.31 KVM_GET_VCPU_EVENTS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001000------------------------
Jan Kiszka3cfc3092009-11-12 01:04:25 +01001001
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001002:Capability: KVM_CAP_VCPU_EVENTS
1003:Extended by: KVM_CAP_INTR_SHADOW
1004:Architectures: x86, arm, arm64
1005:Type: vcpu ioctl
1006:Parameters: struct kvm_vcpu_event (out)
1007:Returns: 0 on success, -1 on error
Jan Kiszka3cfc3092009-11-12 01:04:25 +01001008
Dongjiu Gengb7b27fa2018-07-19 16:24:22 +01001009X86:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001010^^^^
Dongjiu Gengb7b27fa2018-07-19 16:24:22 +01001011
Jan Kiszka3cfc3092009-11-12 01:04:25 +01001012Gets currently pending exceptions, interrupts, and NMIs as well as related
1013states of the vcpu.
1014
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001015::
1016
1017 struct kvm_vcpu_events {
Jan Kiszka3cfc3092009-11-12 01:04:25 +01001018 struct {
1019 __u8 injected;
1020 __u8 nr;
1021 __u8 has_error_code;
Jim Mattson59073aa2018-10-16 14:29:20 -07001022 __u8 pending;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01001023 __u32 error_code;
1024 } exception;
1025 struct {
1026 __u8 injected;
1027 __u8 nr;
1028 __u8 soft;
Jan Kiszka48005f62010-02-19 19:38:07 +01001029 __u8 shadow;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01001030 } interrupt;
1031 struct {
1032 __u8 injected;
1033 __u8 pending;
1034 __u8 masked;
1035 __u8 pad;
1036 } nmi;
1037 __u32 sipi_vector;
Jan Kiszkadab4b912009-12-06 18:24:15 +01001038 __u32 flags;
Paolo Bonzinif0778252015-04-01 15:06:40 +02001039 struct {
1040 __u8 smm;
1041 __u8 pending;
1042 __u8 smm_inside_nmi;
1043 __u8 latched_init;
1044 } smi;
Jim Mattson59073aa2018-10-16 14:29:20 -07001045 __u8 reserved[27];
1046 __u8 exception_has_payload;
1047 __u64 exception_payload;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001048 };
Jan Kiszka3cfc3092009-11-12 01:04:25 +01001049
Jim Mattson59073aa2018-10-16 14:29:20 -07001050The following bits are defined in the flags field:
Jan Kiszka48005f62010-02-19 19:38:07 +01001051
Jim Mattson59073aa2018-10-16 14:29:20 -07001052- KVM_VCPUEVENT_VALID_SHADOW may be set to signal that
Paolo Bonzinif0778252015-04-01 15:06:40 +02001053 interrupt.shadow contains a valid state.
1054
Jim Mattson59073aa2018-10-16 14:29:20 -07001055- KVM_VCPUEVENT_VALID_SMM may be set to signal that smi contains a
1056 valid state.
1057
1058- KVM_VCPUEVENT_VALID_PAYLOAD may be set to signal that the
1059 exception_has_payload, exception_payload, and exception.pending
1060 fields contain a valid state. This bit will be set whenever
1061 KVM_CAP_EXCEPTION_PAYLOAD is enabled.
Jan Kiszka414fa982012-04-24 16:40:15 +02001062
James Morseb0960b92018-07-19 16:24:25 +01001063ARM/ARM64:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001064^^^^^^^^^^
Dongjiu Gengb7b27fa2018-07-19 16:24:22 +01001065
1066If the guest accesses a device that is being emulated by the host kernel in
1067such a way that a real device would generate a physical SError, KVM may make
1068a virtual SError pending for that VCPU. This system error interrupt remains
1069pending until the guest takes the exception by unmasking PSTATE.A.
1070
1071Running the VCPU may cause it to take a pending SError, or make an access that
1072causes an SError to become pending. The event's description is only valid while
1073the VPCU is not running.
1074
1075This API provides a way to read and write the pending 'event' state that is not
1076visible to the guest. To save, restore or migrate a VCPU the struct representing
1077the state can be read then written using this GET/SET API, along with the other
1078guest-visible registers. It is not possible to 'cancel' an SError that has been
1079made pending.
1080
1081A device being emulated in user-space may also wish to generate an SError. To do
1082this the events structure can be populated by user-space. The current state
1083should be read first, to ensure no existing SError is pending. If an existing
1084SError is pending, the architecture's 'Multiple SError interrupts' rules should
1085be followed. (2.5.3 of DDI0587.a "ARM Reliability, Availability, and
1086Serviceability (RAS) Specification").
1087
Dongjiu Gengbe26b3a2018-07-19 16:24:23 +01001088SError exceptions always have an ESR value. Some CPUs have the ability to
1089specify what the virtual SError's ESR value should be. These systems will
Dongjiu Geng688e0582018-08-20 17:39:25 -04001090advertise KVM_CAP_ARM_INJECT_SERROR_ESR. In this case exception.has_esr will
Dongjiu Gengbe26b3a2018-07-19 16:24:23 +01001091always have a non-zero value when read, and the agent making an SError pending
1092should specify the ISS field in the lower 24 bits of exception.serror_esr. If
Dongjiu Geng688e0582018-08-20 17:39:25 -04001093the system supports KVM_CAP_ARM_INJECT_SERROR_ESR, but user-space sets the events
Dongjiu Gengbe26b3a2018-07-19 16:24:23 +01001094with exception.has_esr as zero, KVM will choose an ESR.
1095
1096Specifying exception.has_esr on a system that does not support it will return
1097-EINVAL. Setting anything other than the lower 24bits of exception.serror_esr
1098will return -EINVAL.
1099
Christoffer Dallda345172019-10-11 13:07:06 +02001100It is not possible to read back a pending external abort (injected via
1101KVM_SET_VCPU_EVENTS or otherwise) because such an exception is always delivered
1102directly to the virtual CPU).
1103
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001104::
Christoffer Dallda345172019-10-11 13:07:06 +02001105
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001106 struct kvm_vcpu_events {
Dongjiu Gengb7b27fa2018-07-19 16:24:22 +01001107 struct {
1108 __u8 serror_pending;
1109 __u8 serror_has_esr;
Christoffer Dallda345172019-10-11 13:07:06 +02001110 __u8 ext_dabt_pending;
Dongjiu Gengb7b27fa2018-07-19 16:24:22 +01001111 /* Align it to 8 bytes */
Christoffer Dallda345172019-10-11 13:07:06 +02001112 __u8 pad[5];
Dongjiu Gengb7b27fa2018-07-19 16:24:22 +01001113 __u64 serror_esr;
1114 } exception;
1115 __u32 reserved[12];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001116 };
Dongjiu Gengb7b27fa2018-07-19 16:24:22 +01001117
Paul Bolle68ba6972011-02-15 00:05:59 +010011184.32 KVM_SET_VCPU_EVENTS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001119------------------------
Jan Kiszka3cfc3092009-11-12 01:04:25 +01001120
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001121:Capability: KVM_CAP_VCPU_EVENTS
1122:Extended by: KVM_CAP_INTR_SHADOW
1123:Architectures: x86, arm, arm64
1124:Type: vcpu ioctl
1125:Parameters: struct kvm_vcpu_event (in)
1126:Returns: 0 on success, -1 on error
Jan Kiszka3cfc3092009-11-12 01:04:25 +01001127
Dongjiu Gengb7b27fa2018-07-19 16:24:22 +01001128X86:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001129^^^^
Dongjiu Gengb7b27fa2018-07-19 16:24:22 +01001130
Jan Kiszka3cfc3092009-11-12 01:04:25 +01001131Set pending exceptions, interrupts, and NMIs as well as related states of the
1132vcpu.
1133
1134See KVM_GET_VCPU_EVENTS for the data structure.
1135
Jan Kiszkadab4b912009-12-06 18:24:15 +01001136Fields that may be modified asynchronously by running VCPUs can be excluded
Paolo Bonzinif0778252015-04-01 15:06:40 +02001137from the update. These fields are nmi.pending, sipi_vector, smi.smm,
1138smi.pending. Keep the corresponding bits in the flags field cleared to
1139suppress overwriting the current in-kernel state. The bits are:
Jan Kiszkadab4b912009-12-06 18:24:15 +01001140
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001141=============================== ==================================
1142KVM_VCPUEVENT_VALID_NMI_PENDING transfer nmi.pending to the kernel
1143KVM_VCPUEVENT_VALID_SIPI_VECTOR transfer sipi_vector
1144KVM_VCPUEVENT_VALID_SMM transfer the smi sub-struct.
1145=============================== ==================================
Jan Kiszkadab4b912009-12-06 18:24:15 +01001146
Jan Kiszka48005f62010-02-19 19:38:07 +01001147If KVM_CAP_INTR_SHADOW is available, KVM_VCPUEVENT_VALID_SHADOW can be set in
1148the flags field to signal that interrupt.shadow contains a valid state and
1149shall be written into the VCPU.
1150
Paolo Bonzinif0778252015-04-01 15:06:40 +02001151KVM_VCPUEVENT_VALID_SMM can only be set if KVM_CAP_X86_SMM is available.
1152
Jim Mattson59073aa2018-10-16 14:29:20 -07001153If KVM_CAP_EXCEPTION_PAYLOAD is enabled, KVM_VCPUEVENT_VALID_PAYLOAD
1154can be set in the flags field to signal that the
1155exception_has_payload, exception_payload, and exception.pending fields
1156contain a valid state and shall be written into the VCPU.
1157
James Morseb0960b92018-07-19 16:24:25 +01001158ARM/ARM64:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001159^^^^^^^^^^
Dongjiu Gengb7b27fa2018-07-19 16:24:22 +01001160
Christoffer Dallda345172019-10-11 13:07:06 +02001161User space may need to inject several types of events to the guest.
1162
Dongjiu Gengb7b27fa2018-07-19 16:24:22 +01001163Set the pending SError exception state for this VCPU. It is not possible to
1164'cancel' an Serror that has been made pending.
1165
Christoffer Dallda345172019-10-11 13:07:06 +02001166If the guest performed an access to I/O memory which could not be handled by
1167userspace, for example because of missing instruction syndrome decode
1168information or because there is no device mapped at the accessed IPA, then
1169userspace can ask the kernel to inject an external abort using the address
1170from the exiting fault on the VCPU. It is a programming error to set
1171ext_dabt_pending after an exit which was not either KVM_EXIT_MMIO or
1172KVM_EXIT_ARM_NISV. This feature is only available if the system supports
1173KVM_CAP_ARM_INJECT_EXT_DABT. This is a helper which provides commonality in
1174how userspace reports accesses for the above cases to guests, across different
1175userspace implementations. Nevertheless, userspace can still emulate all Arm
1176exceptions by manipulating individual registers using the KVM_SET_ONE_REG API.
1177
Dongjiu Gengb7b27fa2018-07-19 16:24:22 +01001178See KVM_GET_VCPU_EVENTS for the data structure.
1179
Jan Kiszka414fa982012-04-24 16:40:15 +02001180
Paul Bolle68ba6972011-02-15 00:05:59 +010011814.33 KVM_GET_DEBUGREGS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001182----------------------
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01001183
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001184:Capability: KVM_CAP_DEBUGREGS
1185:Architectures: x86
1186:Type: vm ioctl
1187:Parameters: struct kvm_debugregs (out)
1188:Returns: 0 on success, -1 on error
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01001189
1190Reads debug registers from the vcpu.
1191
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001192::
1193
1194 struct kvm_debugregs {
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01001195 __u64 db[4];
1196 __u64 dr6;
1197 __u64 dr7;
1198 __u64 flags;
1199 __u64 reserved[9];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001200 };
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01001201
Jan Kiszka414fa982012-04-24 16:40:15 +02001202
Paul Bolle68ba6972011-02-15 00:05:59 +010012034.34 KVM_SET_DEBUGREGS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001204----------------------
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01001205
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001206:Capability: KVM_CAP_DEBUGREGS
1207:Architectures: x86
1208:Type: vm ioctl
1209:Parameters: struct kvm_debugregs (in)
1210:Returns: 0 on success, -1 on error
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01001211
1212Writes debug registers into the vcpu.
1213
1214See KVM_GET_DEBUGREGS for the data structure. The flags field is unused
1215yet and must be cleared on entry.
1216
Jan Kiszka414fa982012-04-24 16:40:15 +02001217
Paul Bolle68ba6972011-02-15 00:05:59 +010012184.35 KVM_SET_USER_MEMORY_REGION
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001219-------------------------------
Avi Kivity0f2d8f42010-03-25 12:16:48 +02001220
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001221:Capability: KVM_CAP_USER_MEMORY
1222:Architectures: all
1223:Type: vm ioctl
1224:Parameters: struct kvm_userspace_memory_region (in)
1225:Returns: 0 on success, -1 on error
Avi Kivity0f2d8f42010-03-25 12:16:48 +02001226
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001227::
1228
1229 struct kvm_userspace_memory_region {
Avi Kivity0f2d8f42010-03-25 12:16:48 +02001230 __u32 slot;
1231 __u32 flags;
1232 __u64 guest_phys_addr;
1233 __u64 memory_size; /* bytes */
1234 __u64 userspace_addr; /* start of the userspace allocated memory */
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001235 };
Avi Kivity0f2d8f42010-03-25 12:16:48 +02001236
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001237 /* for kvm_memory_region::flags */
1238 #define KVM_MEM_LOG_DIRTY_PAGES (1UL << 0)
1239 #define KVM_MEM_READONLY (1UL << 1)
Avi Kivity0f2d8f42010-03-25 12:16:48 +02001240
Paolo Bonzinie2788c42019-03-28 17:22:31 +01001241This ioctl allows the user to create, modify or delete a guest physical
1242memory slot. Bits 0-15 of "slot" specify the slot id and this value
1243should be less than the maximum number of user memory slots supported per
Paolo Bonzinic110ae52019-03-28 17:24:03 +01001244VM. The maximum allowed slots can be queried using KVM_CAP_NR_MEMSLOTS.
1245Slots may not overlap in guest physical address space.
Avi Kivity0f2d8f42010-03-25 12:16:48 +02001246
Paolo Bonzinif481b062015-05-17 17:30:37 +02001247If KVM_CAP_MULTI_ADDRESS_SPACE is available, bits 16-31 of "slot"
1248specifies the address space which is being modified. They must be
1249less than the value that KVM_CHECK_EXTENSION returns for the
1250KVM_CAP_MULTI_ADDRESS_SPACE capability. Slots in separate address spaces
1251are unrelated; the restriction on overlapping slots only applies within
1252each address space.
1253
Paolo Bonzinie2788c42019-03-28 17:22:31 +01001254Deleting a slot is done by passing zero for memory_size. When changing
1255an existing slot, it may be moved in the guest physical memory space,
1256or its flags may be modified, but it may not be resized.
1257
Avi Kivity0f2d8f42010-03-25 12:16:48 +02001258Memory for the region is taken starting at the address denoted by the
1259field userspace_addr, which must point at user addressable memory for
1260the entire memory slot size. Any object may back this memory, including
1261anonymous memory, ordinary files, and hugetlbfs.
1262
1263It is recommended that the lower 21 bits of guest_phys_addr and userspace_addr
1264be identical. This allows large pages in the guest to be backed by large
1265pages in the host.
1266
Takuya Yoshikawa75d61fb2013-01-30 19:40:41 +09001267The flags field supports two flags: KVM_MEM_LOG_DIRTY_PAGES and
1268KVM_MEM_READONLY. The former can be set to instruct KVM to keep track of
1269writes to memory within the slot. See KVM_GET_DIRTY_LOG ioctl to know how to
1270use it. The latter can be set, if KVM_CAP_READONLY_MEM capability allows it,
1271to make a new slot read-only. In this case, writes to this memory will be
1272posted to userspace as KVM_EXIT_MMIO exits.
Avi Kivity0f2d8f42010-03-25 12:16:48 +02001273
Jan Kiszka7efd8fa2012-09-07 13:17:47 +02001274When the KVM_CAP_SYNC_MMU capability is available, changes in the backing of
1275the memory region are automatically reflected into the guest. For example, an
1276mmap() that affects the region will be made visible immediately. Another
1277example is madvise(MADV_DROP).
Avi Kivity0f2d8f42010-03-25 12:16:48 +02001278
1279It is recommended to use this API instead of the KVM_SET_MEMORY_REGION ioctl.
1280The KVM_SET_MEMORY_REGION does not allow fine grained control over memory
1281allocation and is deprecated.
Jan Kiszka3cfc3092009-11-12 01:04:25 +01001282
Jan Kiszka414fa982012-04-24 16:40:15 +02001283
Paul Bolle68ba6972011-02-15 00:05:59 +010012844.36 KVM_SET_TSS_ADDR
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001285---------------------
Avi Kivity8a5416d2010-03-25 12:27:30 +02001286
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001287:Capability: KVM_CAP_SET_TSS_ADDR
1288:Architectures: x86
1289:Type: vm ioctl
1290:Parameters: unsigned long tss_address (in)
1291:Returns: 0 on success, -1 on error
Avi Kivity8a5416d2010-03-25 12:27:30 +02001292
1293This ioctl defines the physical address of a three-page region in the guest
1294physical address space. The region must be within the first 4GB of the
1295guest physical address space and must not conflict with any memory slot
1296or any mmio address. The guest may malfunction if it accesses this memory
1297region.
1298
1299This ioctl is required on Intel-based hosts. This is needed on Intel hardware
1300because of a quirk in the virtualization implementation (see the internals
1301documentation when it pops into existence).
1302
Jan Kiszka414fa982012-04-24 16:40:15 +02001303
Paul Bolle68ba6972011-02-15 00:05:59 +010013044.37 KVM_ENABLE_CAP
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001305-------------------
Alexander Graf71fbfd52010-03-24 21:48:29 +01001306
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001307:Capability: KVM_CAP_ENABLE_CAP
1308:Architectures: mips, ppc, s390
1309:Type: vcpu ioctl
1310:Parameters: struct kvm_enable_cap (in)
1311:Returns: 0 on success; -1 on error
Paolo Bonzinie5d83c72017-02-16 10:40:56 +01001312
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001313:Capability: KVM_CAP_ENABLE_CAP_VM
1314:Architectures: all
1315:Type: vcpu ioctl
1316:Parameters: struct kvm_enable_cap (in)
1317:Returns: 0 on success; -1 on error
Alexander Graf71fbfd52010-03-24 21:48:29 +01001318
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001319.. note::
1320
1321 Not all extensions are enabled by default. Using this ioctl the application
1322 can enable an extension, making it available to the guest.
Alexander Graf71fbfd52010-03-24 21:48:29 +01001323
1324On systems that do not support this ioctl, it always fails. On systems that
1325do support it, it only works for extensions that are supported for enablement.
1326
1327To check if a capability can be enabled, the KVM_CHECK_EXTENSION ioctl should
1328be used.
1329
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001330::
1331
1332 struct kvm_enable_cap {
Alexander Graf71fbfd52010-03-24 21:48:29 +01001333 /* in */
1334 __u32 cap;
1335
1336The capability that is supposed to get enabled.
1337
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001338::
1339
Alexander Graf71fbfd52010-03-24 21:48:29 +01001340 __u32 flags;
1341
1342A bitfield indicating future enhancements. Has to be 0 for now.
1343
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001344::
1345
Alexander Graf71fbfd52010-03-24 21:48:29 +01001346 __u64 args[4];
1347
1348Arguments for enabling a feature. If a feature needs initial values to
1349function properly, this is the place to put them.
1350
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001351::
1352
Alexander Graf71fbfd52010-03-24 21:48:29 +01001353 __u8 pad[64];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001354 };
Alexander Graf71fbfd52010-03-24 21:48:29 +01001355
Cornelia Huckd938dc52013-10-23 18:26:34 +02001356The vcpu ioctl should be used for vcpu-specific capabilities, the vm ioctl
1357for vm-wide capabilities.
Jan Kiszka414fa982012-04-24 16:40:15 +02001358
Paul Bolle68ba6972011-02-15 00:05:59 +010013594.38 KVM_GET_MP_STATE
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001360---------------------
Avi Kivityb843f062010-04-25 15:51:46 +03001361
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001362:Capability: KVM_CAP_MP_STATE
1363:Architectures: x86, s390, arm, arm64
1364:Type: vcpu ioctl
1365:Parameters: struct kvm_mp_state (out)
1366:Returns: 0 on success; -1 on error
Avi Kivityb843f062010-04-25 15:51:46 +03001367
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001368::
1369
1370 struct kvm_mp_state {
Avi Kivityb843f062010-04-25 15:51:46 +03001371 __u32 mp_state;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001372 };
Avi Kivityb843f062010-04-25 15:51:46 +03001373
1374Returns the vcpu's current "multiprocessing state" (though also valid on
1375uniprocessor guests).
1376
1377Possible values are:
1378
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001379 ========================== ===============================================
1380 KVM_MP_STATE_RUNNABLE the vcpu is currently running [x86,arm/arm64]
1381 KVM_MP_STATE_UNINITIALIZED the vcpu is an application processor (AP)
Tiejun Chenc32a4272014-11-20 11:07:18 +01001382 which has not yet received an INIT signal [x86]
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001383 KVM_MP_STATE_INIT_RECEIVED the vcpu has received an INIT signal, and is
Tiejun Chenc32a4272014-11-20 11:07:18 +01001384 now ready for a SIPI [x86]
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001385 KVM_MP_STATE_HALTED the vcpu has executed a HLT instruction and
Tiejun Chenc32a4272014-11-20 11:07:18 +01001386 is waiting for an interrupt [x86]
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001387 KVM_MP_STATE_SIPI_RECEIVED the vcpu has just received a SIPI (vector
Tiejun Chenc32a4272014-11-20 11:07:18 +01001388 accessible via KVM_GET_VCPU_EVENTS) [x86]
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001389 KVM_MP_STATE_STOPPED the vcpu is stopped [s390,arm/arm64]
1390 KVM_MP_STATE_CHECK_STOP the vcpu is in a special error state [s390]
1391 KVM_MP_STATE_OPERATING the vcpu is operating (running or halted)
David Hildenbrand6352e4d2014-04-10 17:35:00 +02001392 [s390]
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001393 KVM_MP_STATE_LOAD the vcpu is in a special load/startup state
David Hildenbrand6352e4d2014-04-10 17:35:00 +02001394 [s390]
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001395 ========================== ===============================================
Avi Kivityb843f062010-04-25 15:51:46 +03001396
Tiejun Chenc32a4272014-11-20 11:07:18 +01001397On x86, this ioctl is only useful after KVM_CREATE_IRQCHIP. Without an
David Hildenbrand0b4820d2014-05-12 16:05:13 +02001398in-kernel irqchip, the multiprocessing state must be maintained by userspace on
1399these architectures.
Avi Kivityb843f062010-04-25 15:51:46 +03001400
Alex Bennéeecccf0c2015-03-13 17:02:52 +00001401For arm/arm64:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001402^^^^^^^^^^^^^^
Alex Bennéeecccf0c2015-03-13 17:02:52 +00001403
1404The only states that are valid are KVM_MP_STATE_STOPPED and
1405KVM_MP_STATE_RUNNABLE which reflect if the vcpu is paused or not.
Jan Kiszka414fa982012-04-24 16:40:15 +02001406
Paul Bolle68ba6972011-02-15 00:05:59 +010014074.39 KVM_SET_MP_STATE
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001408---------------------
Avi Kivityb843f062010-04-25 15:51:46 +03001409
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001410:Capability: KVM_CAP_MP_STATE
1411:Architectures: x86, s390, arm, arm64
1412:Type: vcpu ioctl
1413:Parameters: struct kvm_mp_state (in)
1414:Returns: 0 on success; -1 on error
Avi Kivityb843f062010-04-25 15:51:46 +03001415
1416Sets the vcpu's current "multiprocessing state"; see KVM_GET_MP_STATE for
1417arguments.
1418
Tiejun Chenc32a4272014-11-20 11:07:18 +01001419On x86, this ioctl is only useful after KVM_CREATE_IRQCHIP. Without an
David Hildenbrand0b4820d2014-05-12 16:05:13 +02001420in-kernel irqchip, the multiprocessing state must be maintained by userspace on
1421these architectures.
Avi Kivityb843f062010-04-25 15:51:46 +03001422
Alex Bennéeecccf0c2015-03-13 17:02:52 +00001423For arm/arm64:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001424^^^^^^^^^^^^^^
Alex Bennéeecccf0c2015-03-13 17:02:52 +00001425
1426The only states that are valid are KVM_MP_STATE_STOPPED and
1427KVM_MP_STATE_RUNNABLE which reflect if the vcpu should be paused or not.
Jan Kiszka414fa982012-04-24 16:40:15 +02001428
Paul Bolle68ba6972011-02-15 00:05:59 +010014294.40 KVM_SET_IDENTITY_MAP_ADDR
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001430------------------------------
Avi Kivity47dbb842010-04-29 12:08:56 +03001431
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001432:Capability: KVM_CAP_SET_IDENTITY_MAP_ADDR
1433:Architectures: x86
1434:Type: vm ioctl
1435:Parameters: unsigned long identity (in)
1436:Returns: 0 on success, -1 on error
Avi Kivity47dbb842010-04-29 12:08:56 +03001437
1438This ioctl defines the physical address of a one-page region in the guest
1439physical address space. The region must be within the first 4GB of the
1440guest physical address space and must not conflict with any memory slot
1441or any mmio address. The guest may malfunction if it accesses this memory
1442region.
1443
David Hildenbrand726b99c2017-08-24 20:51:35 +02001444Setting the address to 0 will result in resetting the address to its default
1445(0xfffbc000).
1446
Avi Kivity47dbb842010-04-29 12:08:56 +03001447This ioctl is required on Intel-based hosts. This is needed on Intel hardware
1448because of a quirk in the virtualization implementation (see the internals
1449documentation when it pops into existence).
1450
David Hildenbrand1af1ac92017-08-24 20:51:36 +02001451Fails if any VCPU has already been created.
Jan Kiszka414fa982012-04-24 16:40:15 +02001452
Paul Bolle68ba6972011-02-15 00:05:59 +010014534.41 KVM_SET_BOOT_CPU_ID
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001454------------------------
Avi Kivity57bc24c2010-04-29 12:12:57 +03001455
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001456:Capability: KVM_CAP_SET_BOOT_CPU_ID
1457:Architectures: x86
1458:Type: vm ioctl
1459:Parameters: unsigned long vcpu_id
1460:Returns: 0 on success, -1 on error
Avi Kivity57bc24c2010-04-29 12:12:57 +03001461
1462Define which vcpu is the Bootstrap Processor (BSP). Values are the same
1463as the vcpu id in KVM_CREATE_VCPU. If this ioctl is not called, the default
1464is vcpu 0.
1465
Jan Kiszka414fa982012-04-24 16:40:15 +02001466
Paul Bolle68ba6972011-02-15 00:05:59 +010014674.42 KVM_GET_XSAVE
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001468------------------
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001469
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001470:Capability: KVM_CAP_XSAVE
1471:Architectures: x86
1472:Type: vcpu ioctl
1473:Parameters: struct kvm_xsave (out)
1474:Returns: 0 on success, -1 on error
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001475
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001476
1477::
1478
1479 struct kvm_xsave {
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001480 __u32 region[1024];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001481 };
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001482
1483This ioctl would copy current vcpu's xsave struct to the userspace.
1484
Jan Kiszka414fa982012-04-24 16:40:15 +02001485
Paul Bolle68ba6972011-02-15 00:05:59 +010014864.43 KVM_SET_XSAVE
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001487------------------
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001488
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001489:Capability: KVM_CAP_XSAVE
1490:Architectures: x86
1491:Type: vcpu ioctl
1492:Parameters: struct kvm_xsave (in)
1493:Returns: 0 on success, -1 on error
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001494
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001495::
1496
1497
1498 struct kvm_xsave {
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001499 __u32 region[1024];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001500 };
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001501
1502This ioctl would copy userspace's xsave struct to the kernel.
1503
Jan Kiszka414fa982012-04-24 16:40:15 +02001504
Paul Bolle68ba6972011-02-15 00:05:59 +010015054.44 KVM_GET_XCRS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001506-----------------
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001507
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001508:Capability: KVM_CAP_XCRS
1509:Architectures: x86
1510:Type: vcpu ioctl
1511:Parameters: struct kvm_xcrs (out)
1512:Returns: 0 on success, -1 on error
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001513
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001514::
1515
1516 struct kvm_xcr {
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001517 __u32 xcr;
1518 __u32 reserved;
1519 __u64 value;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001520 };
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001521
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001522 struct kvm_xcrs {
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001523 __u32 nr_xcrs;
1524 __u32 flags;
1525 struct kvm_xcr xcrs[KVM_MAX_XCRS];
1526 __u64 padding[16];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001527 };
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001528
1529This ioctl would copy current vcpu's xcrs to the userspace.
1530
Jan Kiszka414fa982012-04-24 16:40:15 +02001531
Paul Bolle68ba6972011-02-15 00:05:59 +010015324.45 KVM_SET_XCRS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001533-----------------
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001534
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001535:Capability: KVM_CAP_XCRS
1536:Architectures: x86
1537:Type: vcpu ioctl
1538:Parameters: struct kvm_xcrs (in)
1539:Returns: 0 on success, -1 on error
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001540
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001541::
1542
1543 struct kvm_xcr {
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001544 __u32 xcr;
1545 __u32 reserved;
1546 __u64 value;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001547 };
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001548
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001549 struct kvm_xcrs {
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001550 __u32 nr_xcrs;
1551 __u32 flags;
1552 struct kvm_xcr xcrs[KVM_MAX_XCRS];
1553 __u64 padding[16];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001554 };
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001555
1556This ioctl would set vcpu's xcr to the value userspace specified.
1557
Jan Kiszka414fa982012-04-24 16:40:15 +02001558
Paul Bolle68ba6972011-02-15 00:05:59 +010015594.46 KVM_GET_SUPPORTED_CPUID
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001560----------------------------
Avi Kivityd1535132010-07-14 09:45:21 +03001561
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001562:Capability: KVM_CAP_EXT_CPUID
1563:Architectures: x86
1564:Type: system ioctl
1565:Parameters: struct kvm_cpuid2 (in/out)
1566:Returns: 0 on success, -1 on error
Avi Kivityd1535132010-07-14 09:45:21 +03001567
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001568::
1569
1570 struct kvm_cpuid2 {
Avi Kivityd1535132010-07-14 09:45:21 +03001571 __u32 nent;
1572 __u32 padding;
1573 struct kvm_cpuid_entry2 entries[0];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001574 };
Avi Kivityd1535132010-07-14 09:45:21 +03001575
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001576 #define KVM_CPUID_FLAG_SIGNIFCANT_INDEX BIT(0)
Sean Christopherson7ff6c032020-03-02 15:56:51 -08001577 #define KVM_CPUID_FLAG_STATEFUL_FUNC BIT(1) /* deprecated */
1578 #define KVM_CPUID_FLAG_STATE_READ_NEXT BIT(2) /* deprecated */
Avi Kivityd1535132010-07-14 09:45:21 +03001579
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001580 struct kvm_cpuid_entry2 {
Avi Kivityd1535132010-07-14 09:45:21 +03001581 __u32 function;
1582 __u32 index;
1583 __u32 flags;
1584 __u32 eax;
1585 __u32 ebx;
1586 __u32 ecx;
1587 __u32 edx;
1588 __u32 padding[3];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001589 };
Avi Kivityd1535132010-07-14 09:45:21 +03001590
Jim Mattsondf9cb9c2018-05-24 11:59:54 -07001591This ioctl returns x86 cpuid features which are supported by both the
1592hardware and kvm in its default configuration. Userspace can use the
1593information returned by this ioctl to construct cpuid information (for
1594KVM_SET_CPUID2) that is consistent with hardware, kernel, and
1595userspace capabilities, and with user requirements (for example, the
1596user may wish to constrain cpuid to emulate older hardware, or for
1597feature consistency across a cluster).
1598
1599Note that certain capabilities, such as KVM_CAP_X86_DISABLE_EXITS, may
1600expose cpuid features (e.g. MONITOR) which are not supported by kvm in
1601its default configuration. If userspace enables such capabilities, it
1602is responsible for modifying the results of this ioctl appropriately.
Avi Kivityd1535132010-07-14 09:45:21 +03001603
1604Userspace invokes KVM_GET_SUPPORTED_CPUID by passing a kvm_cpuid2 structure
1605with the 'nent' field indicating the number of entries in the variable-size
1606array 'entries'. If the number of entries is too low to describe the cpu
1607capabilities, an error (E2BIG) is returned. If the number is too high,
1608the 'nent' field is adjusted and an error (ENOMEM) is returned. If the
1609number is just right, the 'nent' field is adjusted to the number of valid
1610entries in the 'entries' array, which is then filled.
1611
1612The entries returned are the host cpuid as returned by the cpuid instruction,
Avi Kivityc39cbd22010-09-12 16:39:11 +02001613with unknown or unsupported features masked out. Some features (for example,
1614x2apic), may not be present in the host cpu, but are exposed by kvm if it can
1615emulate them efficiently. The fields in each entry are defined as follows:
Avi Kivityd1535132010-07-14 09:45:21 +03001616
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001617 function:
1618 the eax value used to obtain the entry
1619
1620 index:
1621 the ecx value used to obtain the entry (for entries that are
Avi Kivityd1535132010-07-14 09:45:21 +03001622 affected by ecx)
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001623
1624 flags:
1625 an OR of zero or more of the following:
1626
Avi Kivityd1535132010-07-14 09:45:21 +03001627 KVM_CPUID_FLAG_SIGNIFCANT_INDEX:
1628 if the index field is valid
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001629
1630 eax, ebx, ecx, edx:
1631 the values returned by the cpuid instruction for
Avi Kivityd1535132010-07-14 09:45:21 +03001632 this function/index combination
1633
Jan Kiszka4d25a0662011-12-21 12:28:29 +01001634The TSC deadline timer feature (CPUID leaf 1, ecx[24]) is always returned
1635as false, since the feature depends on KVM_CREATE_IRQCHIP for local APIC
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001636support. Instead it is reported via::
Jan Kiszka4d25a0662011-12-21 12:28:29 +01001637
1638 ioctl(KVM_CHECK_EXTENSION, KVM_CAP_TSC_DEADLINE_TIMER)
1639
1640if that returns true and you use KVM_CREATE_IRQCHIP, or if you emulate the
1641feature in userspace, then you can enable the feature for KVM_SET_CPUID2.
1642
Jan Kiszka414fa982012-04-24 16:40:15 +02001643
Paul Bolle68ba6972011-02-15 00:05:59 +010016444.47 KVM_PPC_GET_PVINFO
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001645-----------------------
Alexander Graf15711e92010-07-29 14:48:08 +02001646
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001647:Capability: KVM_CAP_PPC_GET_PVINFO
1648:Architectures: ppc
1649:Type: vm ioctl
1650:Parameters: struct kvm_ppc_pvinfo (out)
1651:Returns: 0 on success, !0 on error
Alexander Graf15711e92010-07-29 14:48:08 +02001652
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001653::
1654
1655 struct kvm_ppc_pvinfo {
Alexander Graf15711e92010-07-29 14:48:08 +02001656 __u32 flags;
1657 __u32 hcall[4];
1658 __u8 pad[108];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001659 };
Alexander Graf15711e92010-07-29 14:48:08 +02001660
1661This ioctl fetches PV specific information that need to be passed to the guest
1662using the device tree or other means from vm context.
1663
Liu Yu-B132019202e072012-07-03 05:48:52 +00001664The hcall array defines 4 instructions that make up a hypercall.
Alexander Graf15711e92010-07-29 14:48:08 +02001665
1666If any additional field gets added to this structure later on, a bit for that
1667additional piece of information will be set in the flags bitmap.
1668
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001669The flags bitmap is defined as::
Liu Yu-B132019202e072012-07-03 05:48:52 +00001670
1671 /* the host supports the ePAPR idle hcall
1672 #define KVM_PPC_PVINFO_FLAGS_EV_IDLE (1<<0)
Jan Kiszka414fa982012-04-24 16:40:15 +02001673
Paul Bolle68ba6972011-02-15 00:05:59 +010016744.52 KVM_SET_GSI_ROUTING
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001675------------------------
Jan Kiszka49f48172010-11-16 22:30:07 +01001676
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001677:Capability: KVM_CAP_IRQ_ROUTING
1678:Architectures: x86 s390 arm arm64
1679:Type: vm ioctl
1680:Parameters: struct kvm_irq_routing (in)
1681:Returns: 0 on success, -1 on error
Jan Kiszka49f48172010-11-16 22:30:07 +01001682
1683Sets the GSI routing table entries, overwriting any previously set entries.
1684
Eric Auger180ae7b2016-07-22 16:20:41 +00001685On arm/arm64, GSI routing has the following limitation:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001686
Eric Auger180ae7b2016-07-22 16:20:41 +00001687- GSI routing does not apply to KVM_IRQ_LINE but only to KVM_IRQFD.
1688
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001689::
1690
1691 struct kvm_irq_routing {
Jan Kiszka49f48172010-11-16 22:30:07 +01001692 __u32 nr;
1693 __u32 flags;
1694 struct kvm_irq_routing_entry entries[0];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001695 };
Jan Kiszka49f48172010-11-16 22:30:07 +01001696
1697No flags are specified so far, the corresponding field must be set to zero.
1698
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001699::
1700
1701 struct kvm_irq_routing_entry {
Jan Kiszka49f48172010-11-16 22:30:07 +01001702 __u32 gsi;
1703 __u32 type;
1704 __u32 flags;
1705 __u32 pad;
1706 union {
1707 struct kvm_irq_routing_irqchip irqchip;
1708 struct kvm_irq_routing_msi msi;
Cornelia Huck84223592013-07-15 13:36:01 +02001709 struct kvm_irq_routing_s390_adapter adapter;
Andrey Smetanin5c9194122015-11-10 15:36:34 +03001710 struct kvm_irq_routing_hv_sint hv_sint;
Jan Kiszka49f48172010-11-16 22:30:07 +01001711 __u32 pad[8];
1712 } u;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001713 };
Jan Kiszka49f48172010-11-16 22:30:07 +01001714
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001715 /* gsi routing entry types */
1716 #define KVM_IRQ_ROUTING_IRQCHIP 1
1717 #define KVM_IRQ_ROUTING_MSI 2
1718 #define KVM_IRQ_ROUTING_S390_ADAPTER 3
1719 #define KVM_IRQ_ROUTING_HV_SINT 4
Jan Kiszka49f48172010-11-16 22:30:07 +01001720
Eric Auger76a10b82016-07-22 16:20:37 +00001721flags:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001722
Paolo Bonzini6f49b2f2016-08-04 13:59:56 +02001723- KVM_MSI_VALID_DEVID: used along with KVM_IRQ_ROUTING_MSI routing entry
1724 type, specifies that the devid field contains a valid value. The per-VM
1725 KVM_CAP_MSI_DEVID capability advertises the requirement to provide
1726 the device ID. If this capability is not available, userspace should
1727 never set the KVM_MSI_VALID_DEVID flag as the ioctl might fail.
Eric Auger76a10b82016-07-22 16:20:37 +00001728- zero otherwise
Jan Kiszka49f48172010-11-16 22:30:07 +01001729
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001730::
1731
1732 struct kvm_irq_routing_irqchip {
Jan Kiszka49f48172010-11-16 22:30:07 +01001733 __u32 irqchip;
1734 __u32 pin;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001735 };
Jan Kiszka49f48172010-11-16 22:30:07 +01001736
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001737 struct kvm_irq_routing_msi {
Jan Kiszka49f48172010-11-16 22:30:07 +01001738 __u32 address_lo;
1739 __u32 address_hi;
1740 __u32 data;
Eric Auger76a10b82016-07-22 16:20:37 +00001741 union {
1742 __u32 pad;
1743 __u32 devid;
1744 };
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001745 };
Jan Kiszka49f48172010-11-16 22:30:07 +01001746
Paolo Bonzini6f49b2f2016-08-04 13:59:56 +02001747If KVM_MSI_VALID_DEVID is set, devid contains a unique device identifier
1748for the device that wrote the MSI message. For PCI, this is usually a
1749BFD identifier in the lower 16 bits.
Eric Auger76a10b82016-07-22 16:20:37 +00001750
Radim Krčmář371313132016-07-12 22:09:27 +02001751On x86, address_hi is ignored unless the KVM_X2APIC_API_USE_32BIT_IDS
1752feature of KVM_CAP_X2APIC_API capability is enabled. If it is enabled,
1753address_hi bits 31-8 provide bits 31-8 of the destination id. Bits 7-0 of
1754address_hi must be zero.
1755
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001756::
1757
1758 struct kvm_irq_routing_s390_adapter {
Cornelia Huck84223592013-07-15 13:36:01 +02001759 __u64 ind_addr;
1760 __u64 summary_addr;
1761 __u64 ind_offset;
1762 __u32 summary_offset;
1763 __u32 adapter_id;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001764 };
Cornelia Huck84223592013-07-15 13:36:01 +02001765
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001766 struct kvm_irq_routing_hv_sint {
Andrey Smetanin5c9194122015-11-10 15:36:34 +03001767 __u32 vcpu;
1768 __u32 sint;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001769 };
Jan Kiszka414fa982012-04-24 16:40:15 +02001770
Jan Kiszka414fa982012-04-24 16:40:15 +02001771
17724.55 KVM_SET_TSC_KHZ
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001773--------------------
Joerg Roedel92a1f122011-03-25 09:44:51 +01001774
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001775:Capability: KVM_CAP_TSC_CONTROL
1776:Architectures: x86
1777:Type: vcpu ioctl
1778:Parameters: virtual tsc_khz
1779:Returns: 0 on success, -1 on error
Joerg Roedel92a1f122011-03-25 09:44:51 +01001780
1781Specifies the tsc frequency for the virtual machine. The unit of the
1782frequency is KHz.
1783
Jan Kiszka414fa982012-04-24 16:40:15 +02001784
17854.56 KVM_GET_TSC_KHZ
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001786--------------------
Joerg Roedel92a1f122011-03-25 09:44:51 +01001787
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001788:Capability: KVM_CAP_GET_TSC_KHZ
1789:Architectures: x86
1790:Type: vcpu ioctl
1791:Parameters: none
1792:Returns: virtual tsc-khz on success, negative value on error
Joerg Roedel92a1f122011-03-25 09:44:51 +01001793
1794Returns the tsc frequency of the guest. The unit of the return value is
1795KHz. If the host has unstable tsc this ioctl returns -EIO instead as an
1796error.
1797
Jan Kiszka414fa982012-04-24 16:40:15 +02001798
17994.57 KVM_GET_LAPIC
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001800------------------
Avi Kivitye7677932011-05-11 08:30:51 -04001801
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001802:Capability: KVM_CAP_IRQCHIP
1803:Architectures: x86
1804:Type: vcpu ioctl
1805:Parameters: struct kvm_lapic_state (out)
1806:Returns: 0 on success, -1 on error
Avi Kivitye7677932011-05-11 08:30:51 -04001807
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001808::
1809
1810 #define KVM_APIC_REG_SIZE 0x400
1811 struct kvm_lapic_state {
Avi Kivitye7677932011-05-11 08:30:51 -04001812 char regs[KVM_APIC_REG_SIZE];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001813 };
Avi Kivitye7677932011-05-11 08:30:51 -04001814
1815Reads the Local APIC registers and copies them into the input argument. The
1816data format and layout are the same as documented in the architecture manual.
1817
Radim Krčmář371313132016-07-12 22:09:27 +02001818If KVM_X2APIC_API_USE_32BIT_IDS feature of KVM_CAP_X2APIC_API is
1819enabled, then the format of APIC_ID register depends on the APIC mode
1820(reported by MSR_IA32_APICBASE) of its VCPU. x2APIC stores APIC ID in
1821the APIC_ID register (bytes 32-35). xAPIC only allows an 8-bit APIC ID
1822which is stored in bits 31-24 of the APIC register, or equivalently in
1823byte 35 of struct kvm_lapic_state's regs field. KVM_GET_LAPIC must then
1824be called after MSR_IA32_APICBASE has been set with KVM_SET_MSR.
1825
1826If KVM_X2APIC_API_USE_32BIT_IDS feature is disabled, struct kvm_lapic_state
1827always uses xAPIC format.
1828
Jan Kiszka414fa982012-04-24 16:40:15 +02001829
18304.58 KVM_SET_LAPIC
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001831------------------
Avi Kivitye7677932011-05-11 08:30:51 -04001832
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001833:Capability: KVM_CAP_IRQCHIP
1834:Architectures: x86
1835:Type: vcpu ioctl
1836:Parameters: struct kvm_lapic_state (in)
1837:Returns: 0 on success, -1 on error
Avi Kivitye7677932011-05-11 08:30:51 -04001838
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001839::
1840
1841 #define KVM_APIC_REG_SIZE 0x400
1842 struct kvm_lapic_state {
Avi Kivitye7677932011-05-11 08:30:51 -04001843 char regs[KVM_APIC_REG_SIZE];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001844 };
Avi Kivitye7677932011-05-11 08:30:51 -04001845
Masanari Iidadf5cbb22014-03-21 10:04:30 +09001846Copies the input argument into the Local APIC registers. The data format
Avi Kivitye7677932011-05-11 08:30:51 -04001847and layout are the same as documented in the architecture manual.
1848
Radim Krčmář371313132016-07-12 22:09:27 +02001849The format of the APIC ID register (bytes 32-35 of struct kvm_lapic_state's
1850regs field) depends on the state of the KVM_CAP_X2APIC_API capability.
1851See the note in KVM_GET_LAPIC.
1852
Jan Kiszka414fa982012-04-24 16:40:15 +02001853
18544.59 KVM_IOEVENTFD
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001855------------------
Sasha Levin55399a02011-05-28 14:12:30 +03001856
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001857:Capability: KVM_CAP_IOEVENTFD
1858:Architectures: all
1859:Type: vm ioctl
1860:Parameters: struct kvm_ioeventfd (in)
1861:Returns: 0 on success, !0 on error
Sasha Levin55399a02011-05-28 14:12:30 +03001862
1863This ioctl attaches or detaches an ioeventfd to a legal pio/mmio address
1864within the guest. A guest write in the registered address will signal the
1865provided event instead of triggering an exit.
1866
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001867::
1868
1869 struct kvm_ioeventfd {
Sasha Levin55399a02011-05-28 14:12:30 +03001870 __u64 datamatch;
1871 __u64 addr; /* legal pio/mmio address */
Jason Wange9ea5062015-09-15 14:41:59 +08001872 __u32 len; /* 0, 1, 2, 4, or 8 bytes */
Sasha Levin55399a02011-05-28 14:12:30 +03001873 __s32 fd;
1874 __u32 flags;
1875 __u8 pad[36];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001876 };
Sasha Levin55399a02011-05-28 14:12:30 +03001877
Cornelia Huck2b834512013-02-28 12:33:20 +01001878For the special case of virtio-ccw devices on s390, the ioevent is matched
1879to a subchannel/virtqueue tuple instead.
1880
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001881The following flags are defined::
Sasha Levin55399a02011-05-28 14:12:30 +03001882
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001883 #define KVM_IOEVENTFD_FLAG_DATAMATCH (1 << kvm_ioeventfd_flag_nr_datamatch)
1884 #define KVM_IOEVENTFD_FLAG_PIO (1 << kvm_ioeventfd_flag_nr_pio)
1885 #define KVM_IOEVENTFD_FLAG_DEASSIGN (1 << kvm_ioeventfd_flag_nr_deassign)
1886 #define KVM_IOEVENTFD_FLAG_VIRTIO_CCW_NOTIFY \
Cornelia Huck2b834512013-02-28 12:33:20 +01001887 (1 << kvm_ioeventfd_flag_nr_virtio_ccw_notify)
Sasha Levin55399a02011-05-28 14:12:30 +03001888
1889If datamatch flag is set, the event will be signaled only if the written value
1890to the registered address is equal to datamatch in struct kvm_ioeventfd.
1891
Cornelia Huck2b834512013-02-28 12:33:20 +01001892For virtio-ccw devices, addr contains the subchannel id and datamatch the
1893virtqueue index.
1894
Jason Wange9ea5062015-09-15 14:41:59 +08001895With KVM_CAP_IOEVENTFD_ANY_LENGTH, a zero length ioeventfd is allowed, and
1896the kernel will ignore the length of guest write and may get a faster vmexit.
1897The speedup may only apply to specific architectures, but the ioeventfd will
1898work anyway.
Jan Kiszka414fa982012-04-24 16:40:15 +02001899
19004.60 KVM_DIRTY_TLB
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001901------------------
Scott Wooddc83b8b2011-08-18 15:25:21 -05001902
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001903:Capability: KVM_CAP_SW_TLB
1904:Architectures: ppc
1905:Type: vcpu ioctl
1906:Parameters: struct kvm_dirty_tlb (in)
1907:Returns: 0 on success, -1 on error
Scott Wooddc83b8b2011-08-18 15:25:21 -05001908
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001909::
1910
1911 struct kvm_dirty_tlb {
Scott Wooddc83b8b2011-08-18 15:25:21 -05001912 __u64 bitmap;
1913 __u32 num_dirty;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001914 };
Scott Wooddc83b8b2011-08-18 15:25:21 -05001915
1916This must be called whenever userspace has changed an entry in the shared
1917TLB, prior to calling KVM_RUN on the associated vcpu.
1918
1919The "bitmap" field is the userspace address of an array. This array
1920consists of a number of bits, equal to the total number of TLB entries as
1921determined by the last successful call to KVM_CONFIG_TLB, rounded up to the
1922nearest multiple of 64.
1923
1924Each bit corresponds to one TLB entry, ordered the same as in the shared TLB
1925array.
1926
1927The array is little-endian: the bit 0 is the least significant bit of the
1928first byte, bit 8 is the least significant bit of the second byte, etc.
1929This avoids any complications with differing word sizes.
1930
1931The "num_dirty" field is a performance hint for KVM to determine whether it
1932should skip processing the bitmap and just invalidate everything. It must
1933be set to the number of set bits in the bitmap.
1934
Jan Kiszka414fa982012-04-24 16:40:15 +02001935
David Gibson54738c02011-06-29 00:22:41 +000019364.62 KVM_CREATE_SPAPR_TCE
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001937-------------------------
David Gibson54738c02011-06-29 00:22:41 +00001938
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001939:Capability: KVM_CAP_SPAPR_TCE
1940:Architectures: powerpc
1941:Type: vm ioctl
1942:Parameters: struct kvm_create_spapr_tce (in)
1943:Returns: file descriptor for manipulating the created TCE table
David Gibson54738c02011-06-29 00:22:41 +00001944
1945This creates a virtual TCE (translation control entry) table, which
1946is an IOMMU for PAPR-style virtual I/O. It is used to translate
1947logical addresses used in virtual I/O into guest physical addresses,
1948and provides a scatter/gather capability for PAPR virtual I/O.
1949
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001950::
1951
1952 /* for KVM_CAP_SPAPR_TCE */
1953 struct kvm_create_spapr_tce {
David Gibson54738c02011-06-29 00:22:41 +00001954 __u64 liobn;
1955 __u32 window_size;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001956 };
David Gibson54738c02011-06-29 00:22:41 +00001957
1958The liobn field gives the logical IO bus number for which to create a
1959TCE table. The window_size field specifies the size of the DMA window
1960which this TCE table will translate - the table will contain one 64
1961bit TCE entry for every 4kiB of the DMA window.
1962
1963When the guest issues an H_PUT_TCE hcall on a liobn for which a TCE
1964table has been created using this ioctl(), the kernel will handle it
1965in real mode, updating the TCE table. H_PUT_TCE calls for other
1966liobns will cause a vm exit and must be handled by userspace.
1967
1968The return value is a file descriptor which can be passed to mmap(2)
1969to map the created TCE table into userspace. This lets userspace read
1970the entries written by kernel-handled H_PUT_TCE calls, and also lets
1971userspace update the TCE table directly which is useful in some
1972circumstances.
1973
Jan Kiszka414fa982012-04-24 16:40:15 +02001974
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +000019754.63 KVM_ALLOCATE_RMA
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001976---------------------
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00001977
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001978:Capability: KVM_CAP_PPC_RMA
1979:Architectures: powerpc
1980:Type: vm ioctl
1981:Parameters: struct kvm_allocate_rma (out)
1982:Returns: file descriptor for mapping the allocated RMA
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00001983
1984This allocates a Real Mode Area (RMA) from the pool allocated at boot
1985time by the kernel. An RMA is a physically-contiguous, aligned region
1986of memory used on older POWER processors to provide the memory which
1987will be accessed by real-mode (MMU off) accesses in a KVM guest.
1988POWER processors support a set of sizes for the RMA that usually
1989includes 64MB, 128MB, 256MB and some larger powers of two.
1990
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001991::
1992
1993 /* for KVM_ALLOCATE_RMA */
1994 struct kvm_allocate_rma {
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00001995 __u64 rma_size;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001996 };
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00001997
1998The return value is a file descriptor which can be passed to mmap(2)
1999to map the allocated RMA into userspace. The mapped area can then be
2000passed to the KVM_SET_USER_MEMORY_REGION ioctl to establish it as the
2001RMA for a virtual machine. The size of the RMA in bytes (which is
2002fixed at host kernel boot time) is returned in the rma_size field of
2003the argument structure.
2004
2005The KVM_CAP_PPC_RMA capability is 1 or 2 if the KVM_ALLOCATE_RMA ioctl
2006is supported; 2 if the processor requires all virtual machines to have
2007an RMA, or 1 if the processor can use an RMA but doesn't require it,
2008because it supports the Virtual RMA (VRMA) facility.
2009
Jan Kiszka414fa982012-04-24 16:40:15 +02002010
Avi Kivity3f745f12011-12-07 12:42:47 +020020114.64 KVM_NMI
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002012------------
Avi Kivity3f745f12011-12-07 12:42:47 +02002013
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002014:Capability: KVM_CAP_USER_NMI
2015:Architectures: x86
2016:Type: vcpu ioctl
2017:Parameters: none
2018:Returns: 0 on success, -1 on error
Avi Kivity3f745f12011-12-07 12:42:47 +02002019
2020Queues an NMI on the thread's vcpu. Note this is well defined only
2021when KVM_CREATE_IRQCHIP has not been called, since this is an interface
2022between the virtual cpu core and virtual local APIC. After KVM_CREATE_IRQCHIP
2023has been called, this interface is completely emulated within the kernel.
2024
2025To use this to emulate the LINT1 input with KVM_CREATE_IRQCHIP, use the
2026following algorithm:
2027
Masanari Iida5d4f6f32015-10-04 00:46:21 +09002028 - pause the vcpu
Avi Kivity3f745f12011-12-07 12:42:47 +02002029 - read the local APIC's state (KVM_GET_LAPIC)
2030 - check whether changing LINT1 will queue an NMI (see the LVT entry for LINT1)
2031 - if so, issue KVM_NMI
2032 - resume the vcpu
2033
2034Some guests configure the LINT1 NMI input to cause a panic, aiding in
2035debugging.
2036
Jan Kiszka414fa982012-04-24 16:40:15 +02002037
Alexander Grafe24ed812011-09-14 10:02:41 +020020384.65 KVM_S390_UCAS_MAP
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002039----------------------
Carsten Otte27e03932012-01-04 10:25:21 +01002040
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002041:Capability: KVM_CAP_S390_UCONTROL
2042:Architectures: s390
2043:Type: vcpu ioctl
2044:Parameters: struct kvm_s390_ucas_mapping (in)
2045:Returns: 0 in case of success
Carsten Otte27e03932012-01-04 10:25:21 +01002046
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002047The parameter is defined like this::
2048
Carsten Otte27e03932012-01-04 10:25:21 +01002049 struct kvm_s390_ucas_mapping {
2050 __u64 user_addr;
2051 __u64 vcpu_addr;
2052 __u64 length;
2053 };
2054
2055This ioctl maps the memory at "user_addr" with the length "length" to
2056the vcpu's address space starting at "vcpu_addr". All parameters need to
Anatol Pomozovf884ab12013-05-08 16:56:16 -07002057be aligned by 1 megabyte.
Carsten Otte27e03932012-01-04 10:25:21 +01002058
Jan Kiszka414fa982012-04-24 16:40:15 +02002059
Alexander Grafe24ed812011-09-14 10:02:41 +020020604.66 KVM_S390_UCAS_UNMAP
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002061------------------------
Carsten Otte27e03932012-01-04 10:25:21 +01002062
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002063:Capability: KVM_CAP_S390_UCONTROL
2064:Architectures: s390
2065:Type: vcpu ioctl
2066:Parameters: struct kvm_s390_ucas_mapping (in)
2067:Returns: 0 in case of success
Carsten Otte27e03932012-01-04 10:25:21 +01002068
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002069The parameter is defined like this::
2070
Carsten Otte27e03932012-01-04 10:25:21 +01002071 struct kvm_s390_ucas_mapping {
2072 __u64 user_addr;
2073 __u64 vcpu_addr;
2074 __u64 length;
2075 };
2076
2077This ioctl unmaps the memory in the vcpu's address space starting at
2078"vcpu_addr" with the length "length". The field "user_addr" is ignored.
Anatol Pomozovf884ab12013-05-08 16:56:16 -07002079All parameters need to be aligned by 1 megabyte.
Carsten Otte27e03932012-01-04 10:25:21 +01002080
Jan Kiszka414fa982012-04-24 16:40:15 +02002081
Alexander Grafe24ed812011-09-14 10:02:41 +020020824.67 KVM_S390_VCPU_FAULT
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002083------------------------
Carsten Otteccc79102012-01-04 10:25:26 +01002084
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002085:Capability: KVM_CAP_S390_UCONTROL
2086:Architectures: s390
2087:Type: vcpu ioctl
2088:Parameters: vcpu absolute address (in)
2089:Returns: 0 in case of success
Carsten Otteccc79102012-01-04 10:25:26 +01002090
2091This call creates a page table entry on the virtual cpu's address space
2092(for user controlled virtual machines) or the virtual machine's address
2093space (for regular virtual machines). This only works for minor faults,
2094thus it's recommended to access subject memory page via the user page
2095table upfront. This is useful to handle validity intercepts for user
2096controlled virtual machines to fault in the virtual cpu's lowcore pages
2097prior to calling the KVM_RUN ioctl.
2098
Jan Kiszka414fa982012-04-24 16:40:15 +02002099
Alexander Grafe24ed812011-09-14 10:02:41 +020021004.68 KVM_SET_ONE_REG
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002101--------------------
Alexander Grafe24ed812011-09-14 10:02:41 +02002102
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002103:Capability: KVM_CAP_ONE_REG
2104:Architectures: all
2105:Type: vcpu ioctl
2106:Parameters: struct kvm_one_reg (in)
2107:Returns: 0 on success, negative value on failure
2108
Dave Martin395f5622019-01-15 17:02:08 +00002109Errors:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002110
2111 ====== ============================================================
2112  ENOENT   no such register
2113  EINVAL   invalid register ID, or no such register
2114  EPERM    (arm64) register access not allowed before vcpu finalization
2115 ====== ============================================================
2116
Dave Martinfe365b42019-04-12 12:59:47 +01002117(These error codes are indicative only: do not rely on a specific error
2118code being returned in a specific situation.)
Alexander Grafe24ed812011-09-14 10:02:41 +02002119
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002120::
2121
2122 struct kvm_one_reg {
Alexander Grafe24ed812011-09-14 10:02:41 +02002123 __u64 id;
2124 __u64 addr;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002125 };
Alexander Grafe24ed812011-09-14 10:02:41 +02002126
2127Using this ioctl, a single vcpu register can be set to a specific value
2128defined by user space with the passed in struct kvm_one_reg, where id
2129refers to the register identifier as described below and addr is a pointer
2130to a variable with the respective size. There can be architecture agnostic
2131and architecture specific registers. Each have their own range of operation
2132and their own constants and width. To keep track of the implemented
2133registers, find a list below:
2134
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002135 ======= =============================== ============
2136 Arch Register Width (bits)
2137 ======= =============================== ============
2138 PPC KVM_REG_PPC_HIOR 64
2139 PPC KVM_REG_PPC_IAC1 64
2140 PPC KVM_REG_PPC_IAC2 64
2141 PPC KVM_REG_PPC_IAC3 64
2142 PPC KVM_REG_PPC_IAC4 64
2143 PPC KVM_REG_PPC_DAC1 64
2144 PPC KVM_REG_PPC_DAC2 64
2145 PPC KVM_REG_PPC_DABR 64
2146 PPC KVM_REG_PPC_DSCR 64
2147 PPC KVM_REG_PPC_PURR 64
2148 PPC KVM_REG_PPC_SPURR 64
2149 PPC KVM_REG_PPC_DAR 64
2150 PPC KVM_REG_PPC_DSISR 32
2151 PPC KVM_REG_PPC_AMR 64
2152 PPC KVM_REG_PPC_UAMOR 64
2153 PPC KVM_REG_PPC_MMCR0 64
2154 PPC KVM_REG_PPC_MMCR1 64
2155 PPC KVM_REG_PPC_MMCRA 64
2156 PPC KVM_REG_PPC_MMCR2 64
2157 PPC KVM_REG_PPC_MMCRS 64
2158 PPC KVM_REG_PPC_SIAR 64
2159 PPC KVM_REG_PPC_SDAR 64
2160 PPC KVM_REG_PPC_SIER 64
2161 PPC KVM_REG_PPC_PMC1 32
2162 PPC KVM_REG_PPC_PMC2 32
2163 PPC KVM_REG_PPC_PMC3 32
2164 PPC KVM_REG_PPC_PMC4 32
2165 PPC KVM_REG_PPC_PMC5 32
2166 PPC KVM_REG_PPC_PMC6 32
2167 PPC KVM_REG_PPC_PMC7 32
2168 PPC KVM_REG_PPC_PMC8 32
2169 PPC KVM_REG_PPC_FPR0 64
2170 ...
2171 PPC KVM_REG_PPC_FPR31 64
2172 PPC KVM_REG_PPC_VR0 128
2173 ...
2174 PPC KVM_REG_PPC_VR31 128
2175 PPC KVM_REG_PPC_VSR0 128
2176 ...
2177 PPC KVM_REG_PPC_VSR31 128
2178 PPC KVM_REG_PPC_FPSCR 64
2179 PPC KVM_REG_PPC_VSCR 32
2180 PPC KVM_REG_PPC_VPA_ADDR 64
2181 PPC KVM_REG_PPC_VPA_SLB 128
2182 PPC KVM_REG_PPC_VPA_DTL 128
2183 PPC KVM_REG_PPC_EPCR 32
2184 PPC KVM_REG_PPC_EPR 32
2185 PPC KVM_REG_PPC_TCR 32
2186 PPC KVM_REG_PPC_TSR 32
2187 PPC KVM_REG_PPC_OR_TSR 32
2188 PPC KVM_REG_PPC_CLEAR_TSR 32
2189 PPC KVM_REG_PPC_MAS0 32
2190 PPC KVM_REG_PPC_MAS1 32
2191 PPC KVM_REG_PPC_MAS2 64
2192 PPC KVM_REG_PPC_MAS7_3 64
2193 PPC KVM_REG_PPC_MAS4 32
2194 PPC KVM_REG_PPC_MAS6 32
2195 PPC KVM_REG_PPC_MMUCFG 32
2196 PPC KVM_REG_PPC_TLB0CFG 32
2197 PPC KVM_REG_PPC_TLB1CFG 32
2198 PPC KVM_REG_PPC_TLB2CFG 32
2199 PPC KVM_REG_PPC_TLB3CFG 32
2200 PPC KVM_REG_PPC_TLB0PS 32
2201 PPC KVM_REG_PPC_TLB1PS 32
2202 PPC KVM_REG_PPC_TLB2PS 32
2203 PPC KVM_REG_PPC_TLB3PS 32
2204 PPC KVM_REG_PPC_EPTCFG 32
2205 PPC KVM_REG_PPC_ICP_STATE 64
2206 PPC KVM_REG_PPC_VP_STATE 128
2207 PPC KVM_REG_PPC_TB_OFFSET 64
2208 PPC KVM_REG_PPC_SPMC1 32
2209 PPC KVM_REG_PPC_SPMC2 32
2210 PPC KVM_REG_PPC_IAMR 64
2211 PPC KVM_REG_PPC_TFHAR 64
2212 PPC KVM_REG_PPC_TFIAR 64
2213 PPC KVM_REG_PPC_TEXASR 64
2214 PPC KVM_REG_PPC_FSCR 64
2215 PPC KVM_REG_PPC_PSPB 32
2216 PPC KVM_REG_PPC_EBBHR 64
2217 PPC KVM_REG_PPC_EBBRR 64
2218 PPC KVM_REG_PPC_BESCR 64
2219 PPC KVM_REG_PPC_TAR 64
2220 PPC KVM_REG_PPC_DPDES 64
2221 PPC KVM_REG_PPC_DAWR 64
2222 PPC KVM_REG_PPC_DAWRX 64
2223 PPC KVM_REG_PPC_CIABR 64
2224 PPC KVM_REG_PPC_IC 64
2225 PPC KVM_REG_PPC_VTB 64
2226 PPC KVM_REG_PPC_CSIGR 64
2227 PPC KVM_REG_PPC_TACR 64
2228 PPC KVM_REG_PPC_TCSCR 64
2229 PPC KVM_REG_PPC_PID 64
2230 PPC KVM_REG_PPC_ACOP 64
2231 PPC KVM_REG_PPC_VRSAVE 32
2232 PPC KVM_REG_PPC_LPCR 32
2233 PPC KVM_REG_PPC_LPCR_64 64
2234 PPC KVM_REG_PPC_PPR 64
2235 PPC KVM_REG_PPC_ARCH_COMPAT 32
2236 PPC KVM_REG_PPC_DABRX 32
2237 PPC KVM_REG_PPC_WORT 64
2238 PPC KVM_REG_PPC_SPRG9 64
2239 PPC KVM_REG_PPC_DBSR 32
2240 PPC KVM_REG_PPC_TIDR 64
2241 PPC KVM_REG_PPC_PSSCR 64
2242 PPC KVM_REG_PPC_DEC_EXPIRY 64
2243 PPC KVM_REG_PPC_PTCR 64
2244 PPC KVM_REG_PPC_TM_GPR0 64
2245 ...
2246 PPC KVM_REG_PPC_TM_GPR31 64
2247 PPC KVM_REG_PPC_TM_VSR0 128
2248 ...
2249 PPC KVM_REG_PPC_TM_VSR63 128
2250 PPC KVM_REG_PPC_TM_CR 64
2251 PPC KVM_REG_PPC_TM_LR 64
2252 PPC KVM_REG_PPC_TM_CTR 64
2253 PPC KVM_REG_PPC_TM_FPSCR 64
2254 PPC KVM_REG_PPC_TM_AMR 64
2255 PPC KVM_REG_PPC_TM_PPR 64
2256 PPC KVM_REG_PPC_TM_VRSAVE 64
2257 PPC KVM_REG_PPC_TM_VSCR 32
2258 PPC KVM_REG_PPC_TM_DSCR 64
2259 PPC KVM_REG_PPC_TM_TAR 64
2260 PPC KVM_REG_PPC_TM_XER 64
2261
2262 MIPS KVM_REG_MIPS_R0 64
2263 ...
2264 MIPS KVM_REG_MIPS_R31 64
2265 MIPS KVM_REG_MIPS_HI 64
2266 MIPS KVM_REG_MIPS_LO 64
2267 MIPS KVM_REG_MIPS_PC 64
2268 MIPS KVM_REG_MIPS_CP0_INDEX 32
2269 MIPS KVM_REG_MIPS_CP0_ENTRYLO0 64
2270 MIPS KVM_REG_MIPS_CP0_ENTRYLO1 64
2271 MIPS KVM_REG_MIPS_CP0_CONTEXT 64
2272 MIPS KVM_REG_MIPS_CP0_CONTEXTCONFIG 32
2273 MIPS KVM_REG_MIPS_CP0_USERLOCAL 64
2274 MIPS KVM_REG_MIPS_CP0_XCONTEXTCONFIG 64
2275 MIPS KVM_REG_MIPS_CP0_PAGEMASK 32
2276 MIPS KVM_REG_MIPS_CP0_PAGEGRAIN 32
2277 MIPS KVM_REG_MIPS_CP0_SEGCTL0 64
2278 MIPS KVM_REG_MIPS_CP0_SEGCTL1 64
2279 MIPS KVM_REG_MIPS_CP0_SEGCTL2 64
2280 MIPS KVM_REG_MIPS_CP0_PWBASE 64
2281 MIPS KVM_REG_MIPS_CP0_PWFIELD 64
2282 MIPS KVM_REG_MIPS_CP0_PWSIZE 64
2283 MIPS KVM_REG_MIPS_CP0_WIRED 32
2284 MIPS KVM_REG_MIPS_CP0_PWCTL 32
2285 MIPS KVM_REG_MIPS_CP0_HWRENA 32
2286 MIPS KVM_REG_MIPS_CP0_BADVADDR 64
2287 MIPS KVM_REG_MIPS_CP0_BADINSTR 32
2288 MIPS KVM_REG_MIPS_CP0_BADINSTRP 32
2289 MIPS KVM_REG_MIPS_CP0_COUNT 32
2290 MIPS KVM_REG_MIPS_CP0_ENTRYHI 64
2291 MIPS KVM_REG_MIPS_CP0_COMPARE 32
2292 MIPS KVM_REG_MIPS_CP0_STATUS 32
2293 MIPS KVM_REG_MIPS_CP0_INTCTL 32
2294 MIPS KVM_REG_MIPS_CP0_CAUSE 32
2295 MIPS KVM_REG_MIPS_CP0_EPC 64
2296 MIPS KVM_REG_MIPS_CP0_PRID 32
2297 MIPS KVM_REG_MIPS_CP0_EBASE 64
2298 MIPS KVM_REG_MIPS_CP0_CONFIG 32
2299 MIPS KVM_REG_MIPS_CP0_CONFIG1 32
2300 MIPS KVM_REG_MIPS_CP0_CONFIG2 32
2301 MIPS KVM_REG_MIPS_CP0_CONFIG3 32
2302 MIPS KVM_REG_MIPS_CP0_CONFIG4 32
2303 MIPS KVM_REG_MIPS_CP0_CONFIG5 32
2304 MIPS KVM_REG_MIPS_CP0_CONFIG7 32
2305 MIPS KVM_REG_MIPS_CP0_XCONTEXT 64
2306 MIPS KVM_REG_MIPS_CP0_ERROREPC 64
2307 MIPS KVM_REG_MIPS_CP0_KSCRATCH1 64
2308 MIPS KVM_REG_MIPS_CP0_KSCRATCH2 64
2309 MIPS KVM_REG_MIPS_CP0_KSCRATCH3 64
2310 MIPS KVM_REG_MIPS_CP0_KSCRATCH4 64
2311 MIPS KVM_REG_MIPS_CP0_KSCRATCH5 64
2312 MIPS KVM_REG_MIPS_CP0_KSCRATCH6 64
2313 MIPS KVM_REG_MIPS_CP0_MAAR(0..63) 64
2314 MIPS KVM_REG_MIPS_COUNT_CTL 64
2315 MIPS KVM_REG_MIPS_COUNT_RESUME 64
2316 MIPS KVM_REG_MIPS_COUNT_HZ 64
2317 MIPS KVM_REG_MIPS_FPR_32(0..31) 32
2318 MIPS KVM_REG_MIPS_FPR_64(0..31) 64
2319 MIPS KVM_REG_MIPS_VEC_128(0..31) 128
2320 MIPS KVM_REG_MIPS_FCR_IR 32
2321 MIPS KVM_REG_MIPS_FCR_CSR 32
2322 MIPS KVM_REG_MIPS_MSA_IR 32
2323 MIPS KVM_REG_MIPS_MSA_CSR 32
2324 ======= =============================== ============
Jan Kiszka414fa982012-04-24 16:40:15 +02002325
Christoffer Dall749cf76c2013-01-20 18:28:06 -05002326ARM registers are mapped using the lower 32 bits. The upper 16 of that
2327is the register group type, or coprocessor number:
2328
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002329ARM core registers have the following id bit patterns::
2330
Christoffer Dallaa404dd2013-04-22 18:57:46 -07002331 0x4020 0000 0010 <index into the kvm_regs struct:16>
Christoffer Dall749cf76c2013-01-20 18:28:06 -05002332
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002333ARM 32-bit CP15 registers have the following id bit patterns::
2334
Christoffer Dallaa404dd2013-04-22 18:57:46 -07002335 0x4020 0000 000F <zero:1> <crn:4> <crm:4> <opc1:4> <opc2:3>
Christoffer Dall11382452013-01-20 18:28:10 -05002336
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002337ARM 64-bit CP15 registers have the following id bit patterns::
2338
Christoffer Dallaa404dd2013-04-22 18:57:46 -07002339 0x4030 0000 000F <zero:1> <zero:4> <crm:4> <opc1:4> <zero:3>
Christoffer Dall749cf76c2013-01-20 18:28:06 -05002340
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002341ARM CCSIDR registers are demultiplexed by CSSELR value::
2342
Christoffer Dallaa404dd2013-04-22 18:57:46 -07002343 0x4020 0000 0011 00 <csselr:8>
Christoffer Dall749cf76c2013-01-20 18:28:06 -05002344
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002345ARM 32-bit VFP control registers have the following id bit patterns::
2346
Christoffer Dallaa404dd2013-04-22 18:57:46 -07002347 0x4020 0000 0012 1 <regno:12>
Rusty Russell4fe21e42013-01-20 18:28:11 -05002348
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002349ARM 64-bit FP registers have the following id bit patterns::
2350
Christoffer Dallaa404dd2013-04-22 18:57:46 -07002351 0x4030 0000 0012 0 <regno:12>
Rusty Russell4fe21e42013-01-20 18:28:11 -05002352
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002353ARM firmware pseudo-registers have the following bit pattern::
2354
Marc Zyngier85bd0ba2018-01-21 16:42:56 +00002355 0x4030 0000 0014 <regno:16>
2356
Marc Zyngier379e04c72013-04-02 17:46:31 +01002357
2358arm64 registers are mapped using the lower 32 bits. The upper 16 of
2359that is the register group type, or coprocessor number:
2360
2361arm64 core/FP-SIMD registers have the following id bit patterns. Note
2362that the size of the access is variable, as the kvm_regs structure
2363contains elements ranging from 32 to 128 bits. The index is a 32bit
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002364value in the kvm_regs structure seen as a 32bit array::
2365
Marc Zyngier379e04c72013-04-02 17:46:31 +01002366 0x60x0 0000 0010 <index into the kvm_regs struct:16>
2367
Dave Martinfd3bc912018-09-28 14:39:26 +01002368Specifically:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002369
2370======================= ========= ===== =======================================
Dave Martinfd3bc912018-09-28 14:39:26 +01002371 Encoding Register Bits kvm_regs member
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002372======================= ========= ===== =======================================
Dave Martinfd3bc912018-09-28 14:39:26 +01002373 0x6030 0000 0010 0000 X0 64 regs.regs[0]
2374 0x6030 0000 0010 0002 X1 64 regs.regs[1]
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002375 ...
Dave Martinfd3bc912018-09-28 14:39:26 +01002376 0x6030 0000 0010 003c X30 64 regs.regs[30]
2377 0x6030 0000 0010 003e SP 64 regs.sp
2378 0x6030 0000 0010 0040 PC 64 regs.pc
2379 0x6030 0000 0010 0042 PSTATE 64 regs.pstate
2380 0x6030 0000 0010 0044 SP_EL1 64 sp_el1
2381 0x6030 0000 0010 0046 ELR_EL1 64 elr_el1
2382 0x6030 0000 0010 0048 SPSR_EL1 64 spsr[KVM_SPSR_EL1] (alias SPSR_SVC)
2383 0x6030 0000 0010 004a SPSR_ABT 64 spsr[KVM_SPSR_ABT]
2384 0x6030 0000 0010 004c SPSR_UND 64 spsr[KVM_SPSR_UND]
2385 0x6030 0000 0010 004e SPSR_IRQ 64 spsr[KVM_SPSR_IRQ]
2386 0x6060 0000 0010 0050 SPSR_FIQ 64 spsr[KVM_SPSR_FIQ]
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002387 0x6040 0000 0010 0054 V0 128 fp_regs.vregs[0] [1]_
2388 0x6040 0000 0010 0058 V1 128 fp_regs.vregs[1] [1]_
2389 ...
2390 0x6040 0000 0010 00d0 V31 128 fp_regs.vregs[31] [1]_
Dave Martinfd3bc912018-09-28 14:39:26 +01002391 0x6020 0000 0010 00d4 FPSR 32 fp_regs.fpsr
2392 0x6020 0000 0010 00d5 FPCR 32 fp_regs.fpcr
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002393======================= ========= ===== =======================================
Dave Martinfd3bc912018-09-28 14:39:26 +01002394
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002395.. [1] These encodings are not accepted for SVE-enabled vcpus. See
2396 KVM_ARM_VCPU_INIT.
Dave Martin50036ad2018-09-28 14:39:27 +01002397
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002398 The equivalent register content can be accessed via bits [127:0] of
2399 the corresponding SVE Zn registers instead for vcpus that have SVE
2400 enabled (see below).
Dave Martin50036ad2018-09-28 14:39:27 +01002401
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002402arm64 CCSIDR registers are demultiplexed by CSSELR value::
2403
Marc Zyngier379e04c72013-04-02 17:46:31 +01002404 0x6020 0000 0011 00 <csselr:8>
2405
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002406arm64 system registers have the following id bit patterns::
2407
Marc Zyngier379e04c72013-04-02 17:46:31 +01002408 0x6030 0000 0013 <op0:2> <op1:3> <crn:4> <crm:4> <op2:3>
2409
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002410.. warning::
2411
Andrew Jones290a6bb2020-01-20 14:08:25 +01002412 Two system register IDs do not follow the specified pattern. These
2413 are KVM_REG_ARM_TIMER_CVAL and KVM_REG_ARM_TIMER_CNT, which map to
2414 system registers CNTV_CVAL_EL0 and CNTVCT_EL0 respectively. These
2415 two had their values accidentally swapped, which means TIMER_CVAL is
2416 derived from the register encoding for CNTVCT_EL0 and TIMER_CNT is
2417 derived from the register encoding for CNTV_CVAL_EL0. As this is
2418 API, it must remain this way.
2419
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002420arm64 firmware pseudo-registers have the following bit pattern::
2421
Marc Zyngier85bd0ba2018-01-21 16:42:56 +00002422 0x6030 0000 0014 <regno:16>
2423
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002424arm64 SVE registers have the following bit patterns::
2425
Dave Martin50036ad2018-09-28 14:39:27 +01002426 0x6080 0000 0015 00 <n:5> <slice:5> Zn bits[2048*slice + 2047 : 2048*slice]
2427 0x6050 0000 0015 04 <n:4> <slice:5> Pn bits[256*slice + 255 : 256*slice]
2428 0x6050 0000 0015 060 <slice:5> FFR bits[256*slice + 255 : 256*slice]
2429 0x6060 0000 0015 ffff KVM_REG_ARM64_SVE_VLS pseudo-register
2430
Dave Martin43b8e1f2019-04-12 13:25:38 +01002431Access to register IDs where 2048 * slice >= 128 * max_vq will fail with
2432ENOENT. max_vq is the vcpu's maximum supported vector length in 128-bit
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002433quadwords: see [2]_ below.
Dave Martin50036ad2018-09-28 14:39:27 +01002434
2435These registers are only accessible on vcpus for which SVE is enabled.
2436See KVM_ARM_VCPU_INIT for details.
2437
2438In addition, except for KVM_REG_ARM64_SVE_VLS, these registers are not
2439accessible until the vcpu's SVE configuration has been finalized
2440using KVM_ARM_VCPU_FINALIZE(KVM_ARM_VCPU_SVE). See KVM_ARM_VCPU_INIT
2441and KVM_ARM_VCPU_FINALIZE for more information about this procedure.
2442
2443KVM_REG_ARM64_SVE_VLS is a pseudo-register that allows the set of vector
2444lengths supported by the vcpu to be discovered and configured by
2445userspace. When transferred to or from user memory via KVM_GET_ONE_REG
Dave Martin4bd774e2019-04-11 17:09:59 +01002446or KVM_SET_ONE_REG, the value of this register is of type
2447__u64[KVM_ARM64_SVE_VLS_WORDS], and encodes the set of vector lengths as
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002448follows::
Dave Martin50036ad2018-09-28 14:39:27 +01002449
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002450 __u64 vector_lengths[KVM_ARM64_SVE_VLS_WORDS];
Dave Martin50036ad2018-09-28 14:39:27 +01002451
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002452 if (vq >= SVE_VQ_MIN && vq <= SVE_VQ_MAX &&
2453 ((vector_lengths[(vq - KVM_ARM64_SVE_VQ_MIN) / 64] >>
Dave Martin4bd774e2019-04-11 17:09:59 +01002454 ((vq - KVM_ARM64_SVE_VQ_MIN) % 64)) & 1))
Dave Martin50036ad2018-09-28 14:39:27 +01002455 /* Vector length vq * 16 bytes supported */
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002456 else
Dave Martin50036ad2018-09-28 14:39:27 +01002457 /* Vector length vq * 16 bytes not supported */
2458
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002459.. [2] The maximum value vq for which the above condition is true is
2460 max_vq. This is the maximum vector length available to the guest on
2461 this vcpu, and determines which register slices are visible through
2462 this ioctl interface.
Dave Martin50036ad2018-09-28 14:39:27 +01002463
Mauro Carvalho Chehabb693d0b2019-06-12 14:52:38 -03002464(See Documentation/arm64/sve.rst for an explanation of the "vq"
Dave Martin50036ad2018-09-28 14:39:27 +01002465nomenclature.)
2466
2467KVM_REG_ARM64_SVE_VLS is only accessible after KVM_ARM_VCPU_INIT.
2468KVM_ARM_VCPU_INIT initialises it to the best set of vector lengths that
2469the host supports.
2470
2471Userspace may subsequently modify it if desired until the vcpu's SVE
2472configuration is finalized using KVM_ARM_VCPU_FINALIZE(KVM_ARM_VCPU_SVE).
2473
2474Apart from simply removing all vector lengths from the host set that
2475exceed some value, support for arbitrarily chosen sets of vector lengths
2476is hardware-dependent and may not be available. Attempting to configure
2477an invalid set of vector lengths via KVM_SET_ONE_REG will fail with
2478EINVAL.
2479
2480After the vcpu's SVE configuration is finalized, further attempts to
2481write this register will fail with EPERM.
2482
James Hoganc2d2c212014-07-04 15:11:35 +01002483
2484MIPS registers are mapped using the lower 32 bits. The upper 16 of that is
2485the register group type:
2486
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002487MIPS core registers (see above) have the following id bit patterns::
2488
James Hoganc2d2c212014-07-04 15:11:35 +01002489 0x7030 0000 0000 <reg:16>
2490
2491MIPS CP0 registers (see KVM_REG_MIPS_CP0_* above) have the following id bit
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002492patterns depending on whether they're 32-bit or 64-bit registers::
2493
James Hoganc2d2c212014-07-04 15:11:35 +01002494 0x7020 0000 0001 00 <reg:5> <sel:3> (32-bit)
2495 0x7030 0000 0001 00 <reg:5> <sel:3> (64-bit)
2496
James Hogan013044c2016-12-07 17:16:37 +00002497Note: KVM_REG_MIPS_CP0_ENTRYLO0 and KVM_REG_MIPS_CP0_ENTRYLO1 are the MIPS64
2498versions of the EntryLo registers regardless of the word size of the host
2499hardware, host kernel, guest, and whether XPA is present in the guest, i.e.
2500with the RI and XI bits (if they exist) in bits 63 and 62 respectively, and
2501the PFNX field starting at bit 30.
2502
James Hogand42a0082017-03-14 10:15:38 +00002503MIPS MAARs (see KVM_REG_MIPS_CP0_MAAR(*) above) have the following id bit
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002504patterns::
2505
James Hogand42a0082017-03-14 10:15:38 +00002506 0x7030 0000 0001 01 <reg:8>
2507
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002508MIPS KVM control registers (see above) have the following id bit patterns::
2509
James Hoganc2d2c212014-07-04 15:11:35 +01002510 0x7030 0000 0002 <reg:16>
2511
James Hogan379245c2014-12-02 15:48:24 +00002512MIPS FPU registers (see KVM_REG_MIPS_FPR_{32,64}() above) have the following
2513id bit patterns depending on the size of the register being accessed. They are
2514always accessed according to the current guest FPU mode (Status.FR and
2515Config5.FRE), i.e. as the guest would see them, and they become unpredictable
James Hoganab86bd62014-12-02 15:48:24 +00002516if the guest FPU mode is changed. MIPS SIMD Architecture (MSA) vector
2517registers (see KVM_REG_MIPS_VEC_128() above) have similar patterns as they
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002518overlap the FPU registers::
2519
James Hogan379245c2014-12-02 15:48:24 +00002520 0x7020 0000 0003 00 <0:3> <reg:5> (32-bit FPU registers)
2521 0x7030 0000 0003 00 <0:3> <reg:5> (64-bit FPU registers)
James Hoganab86bd62014-12-02 15:48:24 +00002522 0x7040 0000 0003 00 <0:3> <reg:5> (128-bit MSA vector registers)
James Hogan379245c2014-12-02 15:48:24 +00002523
2524MIPS FPU control registers (see KVM_REG_MIPS_FCR_{IR,CSR} above) have the
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002525following id bit patterns::
2526
James Hogan379245c2014-12-02 15:48:24 +00002527 0x7020 0000 0003 01 <0:3> <reg:5>
2528
James Hoganab86bd62014-12-02 15:48:24 +00002529MIPS MSA control registers (see KVM_REG_MIPS_MSA_{IR,CSR} above) have the
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002530following id bit patterns::
2531
James Hoganab86bd62014-12-02 15:48:24 +00002532 0x7020 0000 0003 02 <0:3> <reg:5>
2533
James Hoganc2d2c212014-07-04 15:11:35 +01002534
Alexander Grafe24ed812011-09-14 10:02:41 +020025354.69 KVM_GET_ONE_REG
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002536--------------------
Alexander Grafe24ed812011-09-14 10:02:41 +02002537
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002538:Capability: KVM_CAP_ONE_REG
2539:Architectures: all
2540:Type: vcpu ioctl
2541:Parameters: struct kvm_one_reg (in and out)
2542:Returns: 0 on success, negative value on failure
2543
Dave Martinfe365b42019-04-12 12:59:47 +01002544Errors include:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002545
2546 ======== ============================================================
2547  ENOENT   no such register
2548  EINVAL   invalid register ID, or no such register
2549  EPERM    (arm64) register access not allowed before vcpu finalization
2550 ======== ============================================================
2551
Dave Martinfe365b42019-04-12 12:59:47 +01002552(These error codes are indicative only: do not rely on a specific error
2553code being returned in a specific situation.)
Alexander Grafe24ed812011-09-14 10:02:41 +02002554
2555This ioctl allows to receive the value of a single register implemented
2556in a vcpu. The register to read is indicated by the "id" field of the
2557kvm_one_reg struct passed in. On success, the register value can be found
2558at the memory location pointed to by "addr".
2559
2560The list of registers accessible using this interface is identical to the
Bharat Bhushan2e232702012-08-15 17:37:13 +00002561list in 4.68.
Alexander Grafe24ed812011-09-14 10:02:41 +02002562
Jan Kiszka414fa982012-04-24 16:40:15 +02002563
Eric B Munson1c0b28c2012-03-10 14:37:27 -050025644.70 KVM_KVMCLOCK_CTRL
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002565----------------------
Eric B Munson1c0b28c2012-03-10 14:37:27 -05002566
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002567:Capability: KVM_CAP_KVMCLOCK_CTRL
2568:Architectures: Any that implement pvclocks (currently x86 only)
2569:Type: vcpu ioctl
2570:Parameters: None
2571:Returns: 0 on success, -1 on error
Eric B Munson1c0b28c2012-03-10 14:37:27 -05002572
2573This signals to the host kernel that the specified guest is being paused by
2574userspace. The host will set a flag in the pvclock structure that is checked
2575from the soft lockup watchdog. The flag is part of the pvclock structure that
2576is shared between guest and host, specifically the second bit of the flags
2577field of the pvclock_vcpu_time_info structure. It will be set exclusively by
2578the host and read/cleared exclusively by the guest. The guest operation of
2579checking and clearing the flag must an atomic operation so
2580load-link/store-conditional, or equivalent must be used. There are two cases
2581where the guest will clear the flag: when the soft lockup watchdog timer resets
2582itself or when a soft lockup is detected. This ioctl can be called any time
2583after pausing the vcpu, but before it is resumed.
2584
Jan Kiszka414fa982012-04-24 16:40:15 +02002585
Jan Kiszka07975ad2012-03-29 21:14:12 +020025864.71 KVM_SIGNAL_MSI
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002587-------------------
Jan Kiszka07975ad2012-03-29 21:14:12 +02002588
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002589:Capability: KVM_CAP_SIGNAL_MSI
2590:Architectures: x86 arm arm64
2591:Type: vm ioctl
2592:Parameters: struct kvm_msi (in)
2593:Returns: >0 on delivery, 0 if guest blocked the MSI, and -1 on error
Jan Kiszka07975ad2012-03-29 21:14:12 +02002594
2595Directly inject a MSI message. Only valid with in-kernel irqchip that handles
2596MSI messages.
2597
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002598::
2599
2600 struct kvm_msi {
Jan Kiszka07975ad2012-03-29 21:14:12 +02002601 __u32 address_lo;
2602 __u32 address_hi;
2603 __u32 data;
2604 __u32 flags;
Andre Przywara2b8ddd92016-07-15 12:43:24 +01002605 __u32 devid;
2606 __u8 pad[12];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002607 };
Jan Kiszka07975ad2012-03-29 21:14:12 +02002608
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002609flags:
2610 KVM_MSI_VALID_DEVID: devid contains a valid value. The per-VM
Paolo Bonzini6f49b2f2016-08-04 13:59:56 +02002611 KVM_CAP_MSI_DEVID capability advertises the requirement to provide
2612 the device ID. If this capability is not available, userspace
2613 should never set the KVM_MSI_VALID_DEVID flag as the ioctl might fail.
Andre Przywara2b8ddd92016-07-15 12:43:24 +01002614
Paolo Bonzini6f49b2f2016-08-04 13:59:56 +02002615If KVM_MSI_VALID_DEVID is set, devid contains a unique device identifier
2616for the device that wrote the MSI message. For PCI, this is usually a
2617BFD identifier in the lower 16 bits.
Jan Kiszka07975ad2012-03-29 21:14:12 +02002618
Paolo Bonzini055b6ae2016-08-04 14:01:05 +02002619On x86, address_hi is ignored unless the KVM_X2APIC_API_USE_32BIT_IDS
2620feature of KVM_CAP_X2APIC_API capability is enabled. If it is enabled,
2621address_hi bits 31-8 provide bits 31-8 of the destination id. Bits 7-0 of
2622address_hi must be zero.
Radim Krčmář371313132016-07-12 22:09:27 +02002623
Jan Kiszka414fa982012-04-24 16:40:15 +02002624
Jan Kiszka0589ff62012-04-24 16:40:16 +020026254.71 KVM_CREATE_PIT2
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002626--------------------
Jan Kiszka0589ff62012-04-24 16:40:16 +02002627
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002628:Capability: KVM_CAP_PIT2
2629:Architectures: x86
2630:Type: vm ioctl
2631:Parameters: struct kvm_pit_config (in)
2632:Returns: 0 on success, -1 on error
Jan Kiszka0589ff62012-04-24 16:40:16 +02002633
2634Creates an in-kernel device model for the i8254 PIT. This call is only valid
2635after enabling in-kernel irqchip support via KVM_CREATE_IRQCHIP. The following
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002636parameters have to be passed::
Jan Kiszka0589ff62012-04-24 16:40:16 +02002637
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002638 struct kvm_pit_config {
Jan Kiszka0589ff62012-04-24 16:40:16 +02002639 __u32 flags;
2640 __u32 pad[15];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002641 };
Jan Kiszka0589ff62012-04-24 16:40:16 +02002642
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002643Valid flags are::
Jan Kiszka0589ff62012-04-24 16:40:16 +02002644
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002645 #define KVM_PIT_SPEAKER_DUMMY 1 /* emulate speaker port stub */
Jan Kiszka0589ff62012-04-24 16:40:16 +02002646
Jan Kiszkab6ddf052012-04-24 16:40:17 +02002647PIT timer interrupts may use a per-VM kernel thread for injection. If it
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002648exists, this thread will have a name of the following pattern::
Jan Kiszkab6ddf052012-04-24 16:40:17 +02002649
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002650 kvm-pit/<owner-process-pid>
Jan Kiszkab6ddf052012-04-24 16:40:17 +02002651
2652When running a guest with elevated priorities, the scheduling parameters of
2653this thread may have to be adjusted accordingly.
2654
Jan Kiszka0589ff62012-04-24 16:40:16 +02002655This IOCTL replaces the obsolete KVM_CREATE_PIT.
2656
2657
26584.72 KVM_GET_PIT2
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002659-----------------
Jan Kiszka0589ff62012-04-24 16:40:16 +02002660
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002661:Capability: KVM_CAP_PIT_STATE2
2662:Architectures: x86
2663:Type: vm ioctl
2664:Parameters: struct kvm_pit_state2 (out)
2665:Returns: 0 on success, -1 on error
Jan Kiszka0589ff62012-04-24 16:40:16 +02002666
2667Retrieves the state of the in-kernel PIT model. Only valid after
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002668KVM_CREATE_PIT2. The state is returned in the following structure::
Jan Kiszka0589ff62012-04-24 16:40:16 +02002669
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002670 struct kvm_pit_state2 {
Jan Kiszka0589ff62012-04-24 16:40:16 +02002671 struct kvm_pit_channel_state channels[3];
2672 __u32 flags;
2673 __u32 reserved[9];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002674 };
Jan Kiszka0589ff62012-04-24 16:40:16 +02002675
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002676Valid flags are::
Jan Kiszka0589ff62012-04-24 16:40:16 +02002677
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002678 /* disable PIT in HPET legacy mode */
2679 #define KVM_PIT_FLAGS_HPET_LEGACY 0x00000001
Jan Kiszka0589ff62012-04-24 16:40:16 +02002680
2681This IOCTL replaces the obsolete KVM_GET_PIT.
2682
2683
26844.73 KVM_SET_PIT2
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002685-----------------
Jan Kiszka0589ff62012-04-24 16:40:16 +02002686
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002687:Capability: KVM_CAP_PIT_STATE2
2688:Architectures: x86
2689:Type: vm ioctl
2690:Parameters: struct kvm_pit_state2 (in)
2691:Returns: 0 on success, -1 on error
Jan Kiszka0589ff62012-04-24 16:40:16 +02002692
2693Sets the state of the in-kernel PIT model. Only valid after KVM_CREATE_PIT2.
2694See KVM_GET_PIT2 for details on struct kvm_pit_state2.
2695
2696This IOCTL replaces the obsolete KVM_SET_PIT.
2697
2698
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +000026994.74 KVM_PPC_GET_SMMU_INFO
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002700--------------------------
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00002701
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002702:Capability: KVM_CAP_PPC_GET_SMMU_INFO
2703:Architectures: powerpc
2704:Type: vm ioctl
2705:Parameters: None
2706:Returns: 0 on success, -1 on error
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00002707
2708This populates and returns a structure describing the features of
2709the "Server" class MMU emulation supported by KVM.
Stefan Hubercc22c352013-06-05 12:24:37 +02002710This can in turn be used by userspace to generate the appropriate
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00002711device-tree properties for the guest operating system.
2712
Carlos Garciac98be0c2014-04-04 22:31:00 -04002713The structure contains some global information, followed by an
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002714array of supported segment page sizes::
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00002715
2716 struct kvm_ppc_smmu_info {
2717 __u64 flags;
2718 __u32 slb_size;
2719 __u32 pad;
2720 struct kvm_ppc_one_seg_page_size sps[KVM_PPC_PAGE_SIZES_MAX_SZ];
2721 };
2722
2723The supported flags are:
2724
2725 - KVM_PPC_PAGE_SIZES_REAL:
2726 When that flag is set, guest page sizes must "fit" the backing
2727 store page sizes. When not set, any page size in the list can
2728 be used regardless of how they are backed by userspace.
2729
2730 - KVM_PPC_1T_SEGMENTS
2731 The emulated MMU supports 1T segments in addition to the
2732 standard 256M ones.
2733
Paul Mackerras901f8c32018-10-08 14:24:30 +11002734 - KVM_PPC_NO_HASH
2735 This flag indicates that HPT guests are not supported by KVM,
2736 thus all guests must use radix MMU mode.
2737
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00002738The "slb_size" field indicates how many SLB entries are supported
2739
2740The "sps" array contains 8 entries indicating the supported base
2741page sizes for a segment in increasing order. Each entry is defined
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002742as follow::
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00002743
2744 struct kvm_ppc_one_seg_page_size {
2745 __u32 page_shift; /* Base page shift of segment (or 0) */
2746 __u32 slb_enc; /* SLB encoding for BookS */
2747 struct kvm_ppc_one_page_size enc[KVM_PPC_PAGE_SIZES_MAX_SZ];
2748 };
2749
2750An entry with a "page_shift" of 0 is unused. Because the array is
2751organized in increasing order, a lookup can stop when encoutering
2752such an entry.
2753
2754The "slb_enc" field provides the encoding to use in the SLB for the
2755page size. The bits are in positions such as the value can directly
2756be OR'ed into the "vsid" argument of the slbmte instruction.
2757
2758The "enc" array is a list which for each of those segment base page
2759size provides the list of supported actual page sizes (which can be
2760only larger or equal to the base page size), along with the
Anatol Pomozovf884ab12013-05-08 16:56:16 -07002761corresponding encoding in the hash PTE. Similarly, the array is
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +000027628 entries sorted by increasing sizes and an entry with a "0" shift
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002763is an empty entry and a terminator::
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00002764
2765 struct kvm_ppc_one_page_size {
2766 __u32 page_shift; /* Page shift (or 0) */
2767 __u32 pte_enc; /* Encoding in the HPTE (>>12) */
2768 };
2769
2770The "pte_enc" field provides a value that can OR'ed into the hash
2771PTE's RPN field (ie, it needs to be shifted left by 12 to OR it
2772into the hash PTE second double word).
2773
Alex Williamsonf36992e2012-06-29 09:56:16 -060027744.75 KVM_IRQFD
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002775--------------
Alex Williamsonf36992e2012-06-29 09:56:16 -06002776
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002777:Capability: KVM_CAP_IRQFD
2778:Architectures: x86 s390 arm arm64
2779:Type: vm ioctl
2780:Parameters: struct kvm_irqfd (in)
2781:Returns: 0 on success, -1 on error
Alex Williamsonf36992e2012-06-29 09:56:16 -06002782
2783Allows setting an eventfd to directly trigger a guest interrupt.
2784kvm_irqfd.fd specifies the file descriptor to use as the eventfd and
2785kvm_irqfd.gsi specifies the irqchip pin toggled by this event. When
Masanari Iida17180032013-12-22 01:21:23 +09002786an event is triggered on the eventfd, an interrupt is injected into
Alex Williamsonf36992e2012-06-29 09:56:16 -06002787the guest using the specified gsi pin. The irqfd is removed using
2788the KVM_IRQFD_FLAG_DEASSIGN flag, specifying both kvm_irqfd.fd
2789and kvm_irqfd.gsi.
2790
Alex Williamson7a844282012-09-21 11:58:03 -06002791With KVM_CAP_IRQFD_RESAMPLE, KVM_IRQFD supports a de-assert and notify
2792mechanism allowing emulation of level-triggered, irqfd-based
2793interrupts. When KVM_IRQFD_FLAG_RESAMPLE is set the user must pass an
2794additional eventfd in the kvm_irqfd.resamplefd field. When operating
2795in resample mode, posting of an interrupt through kvm_irq.fd asserts
2796the specified gsi in the irqchip. When the irqchip is resampled, such
Masanari Iida17180032013-12-22 01:21:23 +09002797as from an EOI, the gsi is de-asserted and the user is notified via
Alex Williamson7a844282012-09-21 11:58:03 -06002798kvm_irqfd.resamplefd. It is the user's responsibility to re-queue
2799the interrupt if the device making use of it still requires service.
2800Note that closing the resamplefd is not sufficient to disable the
2801irqfd. The KVM_IRQFD_FLAG_RESAMPLE is only necessary on assignment
2802and need not be specified with KVM_IRQFD_FLAG_DEASSIGN.
2803
Eric Auger180ae7b2016-07-22 16:20:41 +00002804On arm/arm64, gsi routing being supported, the following can happen:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002805
Eric Auger180ae7b2016-07-22 16:20:41 +00002806- in case no routing entry is associated to this gsi, injection fails
2807- in case the gsi is associated to an irqchip routing entry,
2808 irqchip.pin + 32 corresponds to the injected SPI ID.
Eric Auger995a0ee2016-07-22 16:20:42 +00002809- in case the gsi is associated to an MSI routing entry, the MSI
2810 message and device ID are translated into an LPI (support restricted
2811 to GICv3 ITS in-kernel emulation).
Eric Auger174178f2015-03-04 11:14:36 +01002812
Linus Torvalds5fecc9d2012-07-24 12:01:20 -070028134.76 KVM_PPC_ALLOCATE_HTAB
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002814--------------------------
Paul Mackerras32fad282012-05-04 02:32:53 +00002815
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002816:Capability: KVM_CAP_PPC_ALLOC_HTAB
2817:Architectures: powerpc
2818:Type: vm ioctl
2819:Parameters: Pointer to u32 containing hash table order (in/out)
2820:Returns: 0 on success, -1 on error
Paul Mackerras32fad282012-05-04 02:32:53 +00002821
2822This requests the host kernel to allocate an MMU hash table for a
2823guest using the PAPR paravirtualization interface. This only does
2824anything if the kernel is configured to use the Book 3S HV style of
2825virtualization. Otherwise the capability doesn't exist and the ioctl
2826returns an ENOTTY error. The rest of this description assumes Book 3S
2827HV.
2828
2829There must be no vcpus running when this ioctl is called; if there
2830are, it will do nothing and return an EBUSY error.
2831
2832The parameter is a pointer to a 32-bit unsigned integer variable
2833containing the order (log base 2) of the desired size of the hash
2834table, which must be between 18 and 46. On successful return from the
David Gibsonf98a8bf2016-12-20 16:49:03 +11002835ioctl, the value will not be changed by the kernel.
Paul Mackerras32fad282012-05-04 02:32:53 +00002836
2837If no hash table has been allocated when any vcpu is asked to run
2838(with the KVM_RUN ioctl), the host kernel will allocate a
2839default-sized hash table (16 MB).
2840
2841If this ioctl is called when a hash table has already been allocated,
David Gibsonf98a8bf2016-12-20 16:49:03 +11002842with a different order from the existing hash table, the existing hash
2843table will be freed and a new one allocated. If this is ioctl is
2844called when a hash table has already been allocated of the same order
2845as specified, the kernel will clear out the existing hash table (zero
2846all HPTEs). In either case, if the guest is using the virtualized
2847real-mode area (VRMA) facility, the kernel will re-create the VMRA
2848HPTEs on the next KVM_RUN of any vcpu.
Paul Mackerras32fad282012-05-04 02:32:53 +00002849
Cornelia Huck416ad652012-10-02 16:25:37 +020028504.77 KVM_S390_INTERRUPT
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002851-----------------------
Cornelia Huck416ad652012-10-02 16:25:37 +02002852
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002853:Capability: basic
2854:Architectures: s390
2855:Type: vm ioctl, vcpu ioctl
2856:Parameters: struct kvm_s390_interrupt (in)
2857:Returns: 0 on success, -1 on error
Cornelia Huck416ad652012-10-02 16:25:37 +02002858
2859Allows to inject an interrupt to the guest. Interrupts can be floating
2860(vm ioctl) or per cpu (vcpu ioctl), depending on the interrupt type.
2861
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002862Interrupt parameters are passed via kvm_s390_interrupt::
Cornelia Huck416ad652012-10-02 16:25:37 +02002863
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002864 struct kvm_s390_interrupt {
Cornelia Huck416ad652012-10-02 16:25:37 +02002865 __u32 type;
2866 __u32 parm;
2867 __u64 parm64;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002868 };
Cornelia Huck416ad652012-10-02 16:25:37 +02002869
2870type can be one of the following:
2871
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002872KVM_S390_SIGP_STOP (vcpu)
2873 - sigp stop; optional flags in parm
2874KVM_S390_PROGRAM_INT (vcpu)
2875 - program check; code in parm
2876KVM_S390_SIGP_SET_PREFIX (vcpu)
2877 - sigp set prefix; prefix address in parm
2878KVM_S390_RESTART (vcpu)
2879 - restart
2880KVM_S390_INT_CLOCK_COMP (vcpu)
2881 - clock comparator interrupt
2882KVM_S390_INT_CPU_TIMER (vcpu)
2883 - CPU timer interrupt
2884KVM_S390_INT_VIRTIO (vm)
2885 - virtio external interrupt; external interrupt
2886 parameters in parm and parm64
2887KVM_S390_INT_SERVICE (vm)
2888 - sclp external interrupt; sclp parameter in parm
2889KVM_S390_INT_EMERGENCY (vcpu)
2890 - sigp emergency; source cpu in parm
2891KVM_S390_INT_EXTERNAL_CALL (vcpu)
2892 - sigp external call; source cpu in parm
2893KVM_S390_INT_IO(ai,cssid,ssid,schid) (vm)
2894 - compound value to indicate an
2895 I/O interrupt (ai - adapter interrupt; cssid,ssid,schid - subchannel);
2896 I/O interruption parameters in parm (subchannel) and parm64 (intparm,
2897 interruption subclass)
2898KVM_S390_MCHK (vm, vcpu)
2899 - machine check interrupt; cr 14 bits in parm, machine check interrupt
2900 code in parm64 (note that machine checks needing further payload are not
2901 supported by this ioctl)
Cornelia Huck416ad652012-10-02 16:25:37 +02002902
Sean Christopherson5e124902019-02-15 12:48:38 -08002903This is an asynchronous vcpu ioctl and can be invoked from any thread.
Cornelia Huck416ad652012-10-02 16:25:37 +02002904
Paul Mackerrasa2932922012-11-19 22:57:20 +000029054.78 KVM_PPC_GET_HTAB_FD
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002906------------------------
Paul Mackerrasa2932922012-11-19 22:57:20 +00002907
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002908:Capability: KVM_CAP_PPC_HTAB_FD
2909:Architectures: powerpc
2910:Type: vm ioctl
2911:Parameters: Pointer to struct kvm_get_htab_fd (in)
2912:Returns: file descriptor number (>= 0) on success, -1 on error
Paul Mackerrasa2932922012-11-19 22:57:20 +00002913
2914This returns a file descriptor that can be used either to read out the
2915entries in the guest's hashed page table (HPT), or to write entries to
2916initialize the HPT. The returned fd can only be written to if the
2917KVM_GET_HTAB_WRITE bit is set in the flags field of the argument, and
2918can only be read if that bit is clear. The argument struct looks like
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002919this::
Paul Mackerrasa2932922012-11-19 22:57:20 +00002920
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002921 /* For KVM_PPC_GET_HTAB_FD */
2922 struct kvm_get_htab_fd {
Paul Mackerrasa2932922012-11-19 22:57:20 +00002923 __u64 flags;
2924 __u64 start_index;
2925 __u64 reserved[2];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002926 };
Paul Mackerrasa2932922012-11-19 22:57:20 +00002927
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002928 /* Values for kvm_get_htab_fd.flags */
2929 #define KVM_GET_HTAB_BOLTED_ONLY ((__u64)0x1)
2930 #define KVM_GET_HTAB_WRITE ((__u64)0x2)
Paul Mackerrasa2932922012-11-19 22:57:20 +00002931
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002932The 'start_index' field gives the index in the HPT of the entry at
Paul Mackerrasa2932922012-11-19 22:57:20 +00002933which to start reading. It is ignored when writing.
2934
2935Reads on the fd will initially supply information about all
2936"interesting" HPT entries. Interesting entries are those with the
2937bolted bit set, if the KVM_GET_HTAB_BOLTED_ONLY bit is set, otherwise
2938all entries. When the end of the HPT is reached, the read() will
2939return. If read() is called again on the fd, it will start again from
2940the beginning of the HPT, but will only return HPT entries that have
2941changed since they were last read.
2942
2943Data read or written is structured as a header (8 bytes) followed by a
2944series of valid HPT entries (16 bytes) each. The header indicates how
2945many valid HPT entries there are and how many invalid entries follow
2946the valid entries. The invalid entries are not represented explicitly
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002947in the stream. The header format is::
Paul Mackerrasa2932922012-11-19 22:57:20 +00002948
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002949 struct kvm_get_htab_header {
Paul Mackerrasa2932922012-11-19 22:57:20 +00002950 __u32 index;
2951 __u16 n_valid;
2952 __u16 n_invalid;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002953 };
Paul Mackerrasa2932922012-11-19 22:57:20 +00002954
2955Writes to the fd create HPT entries starting at the index given in the
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002956header; first 'n_valid' valid entries with contents from the data
2957written, then 'n_invalid' invalid entries, invalidating any previously
Paul Mackerrasa2932922012-11-19 22:57:20 +00002958valid entries found.
2959
Scott Wood852b6d52013-04-12 14:08:42 +000029604.79 KVM_CREATE_DEVICE
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002961----------------------
Scott Wood852b6d52013-04-12 14:08:42 +00002962
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002963:Capability: KVM_CAP_DEVICE_CTRL
2964:Type: vm ioctl
2965:Parameters: struct kvm_create_device (in/out)
2966:Returns: 0 on success, -1 on error
2967
Scott Wood852b6d52013-04-12 14:08:42 +00002968Errors:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002969
2970 ====== =======================================================
2971 ENODEV The device type is unknown or unsupported
2972 EEXIST Device already created, and this type of device may not
Scott Wood852b6d52013-04-12 14:08:42 +00002973 be instantiated multiple times
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002974 ====== =======================================================
Scott Wood852b6d52013-04-12 14:08:42 +00002975
2976 Other error conditions may be defined by individual device types or
2977 have their standard meanings.
2978
2979Creates an emulated device in the kernel. The file descriptor returned
2980in fd can be used with KVM_SET/GET/HAS_DEVICE_ATTR.
2981
2982If the KVM_CREATE_DEVICE_TEST flag is set, only test whether the
2983device type is supported (not necessarily whether it can be created
2984in the current vm).
2985
2986Individual devices should not define flags. Attributes should be used
2987for specifying any behavior that is not implied by the device type
2988number.
2989
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002990::
2991
2992 struct kvm_create_device {
Scott Wood852b6d52013-04-12 14:08:42 +00002993 __u32 type; /* in: KVM_DEV_TYPE_xxx */
2994 __u32 fd; /* out: device handle */
2995 __u32 flags; /* in: KVM_CREATE_DEVICE_xxx */
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002996 };
Scott Wood852b6d52013-04-12 14:08:42 +00002997
29984.80 KVM_SET_DEVICE_ATTR/KVM_GET_DEVICE_ATTR
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002999--------------------------------------------
Scott Wood852b6d52013-04-12 14:08:42 +00003000
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003001:Capability: KVM_CAP_DEVICE_CTRL, KVM_CAP_VM_ATTRIBUTES for vm device,
3002 KVM_CAP_VCPU_ATTRIBUTES for vcpu device
3003:Type: device ioctl, vm ioctl, vcpu ioctl
3004:Parameters: struct kvm_device_attr
3005:Returns: 0 on success, -1 on error
3006
Scott Wood852b6d52013-04-12 14:08:42 +00003007Errors:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003008
3009 ===== =============================================================
3010 ENXIO The group or attribute is unknown/unsupported for this device
David Hildenbrandf9cbd9b2016-03-03 09:48:47 +01003011 or hardware support is missing.
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003012 EPERM The attribute cannot (currently) be accessed this way
Scott Wood852b6d52013-04-12 14:08:42 +00003013 (e.g. read-only attribute, or attribute that only makes
3014 sense when the device is in a different state)
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003015 ===== =============================================================
Scott Wood852b6d52013-04-12 14:08:42 +00003016
3017 Other error conditions may be defined by individual device types.
3018
3019Gets/sets a specified piece of device configuration and/or state. The
3020semantics are device-specific. See individual device documentation in
3021the "devices" directory. As with ONE_REG, the size of the data
3022transferred is defined by the particular attribute.
3023
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003024::
3025
3026 struct kvm_device_attr {
Scott Wood852b6d52013-04-12 14:08:42 +00003027 __u32 flags; /* no flags currently defined */
3028 __u32 group; /* device-defined */
3029 __u64 attr; /* group-defined */
3030 __u64 addr; /* userspace address of attr data */
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003031 };
Scott Wood852b6d52013-04-12 14:08:42 +00003032
30334.81 KVM_HAS_DEVICE_ATTR
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003034------------------------
Scott Wood852b6d52013-04-12 14:08:42 +00003035
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003036:Capability: KVM_CAP_DEVICE_CTRL, KVM_CAP_VM_ATTRIBUTES for vm device,
3037 KVM_CAP_VCPU_ATTRIBUTES for vcpu device
3038:Type: device ioctl, vm ioctl, vcpu ioctl
3039:Parameters: struct kvm_device_attr
3040:Returns: 0 on success, -1 on error
3041
Scott Wood852b6d52013-04-12 14:08:42 +00003042Errors:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003043
3044 ===== =============================================================
3045 ENXIO The group or attribute is unknown/unsupported for this device
David Hildenbrandf9cbd9b2016-03-03 09:48:47 +01003046 or hardware support is missing.
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003047 ===== =============================================================
Scott Wood852b6d52013-04-12 14:08:42 +00003048
3049Tests whether a device supports a particular attribute. A successful
3050return indicates the attribute is implemented. It does not necessarily
3051indicate that the attribute can be read or written in the device's
3052current state. "addr" is ignored.
Alex Williamsonf36992e2012-06-29 09:56:16 -06003053
Alexey Kardashevskiyd8968f12013-06-19 11:42:07 +100030544.82 KVM_ARM_VCPU_INIT
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003055----------------------
Christoffer Dall749cf76c2013-01-20 18:28:06 -05003056
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003057:Capability: basic
3058:Architectures: arm, arm64
3059:Type: vcpu ioctl
3060:Parameters: struct kvm_vcpu_init (in)
3061:Returns: 0 on success; -1 on error
3062
Christoffer Dall749cf76c2013-01-20 18:28:06 -05003063Errors:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003064
3065 ====== =================================================================
3066  EINVAL    the target is unknown, or the combination of features is invalid.
3067  ENOENT    a features bit specified is unknown.
3068 ====== =================================================================
Christoffer Dall749cf76c2013-01-20 18:28:06 -05003069
3070This tells KVM what type of CPU to present to the guest, and what
3071optional features it should have.  This will cause a reset of the cpu
3072registers to their initial values.  If this is not called, KVM_RUN will
3073return ENOEXEC for that vcpu.
3074
3075Note that because some registers reflect machine topology, all vcpus
3076should be created before this ioctl is invoked.
3077
Christoffer Dallf7fa034d2014-10-16 16:40:53 +02003078Userspace can call this function multiple times for a given vcpu, including
3079after the vcpu has been run. This will reset the vcpu to its initial
3080state. All calls to this function after the initial call must use the same
3081target and same set of feature flags, otherwise EINVAL will be returned.
3082
Marc Zyngieraa024c22013-01-20 18:28:13 -05003083Possible features:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003084
Marc Zyngieraa024c22013-01-20 18:28:13 -05003085 - KVM_ARM_VCPU_POWER_OFF: Starts the CPU in a power-off state.
Christoffer Dall3ad8b3d2014-10-16 16:14:43 +02003086 Depends on KVM_CAP_ARM_PSCI. If not set, the CPU will be powered on
3087 and execute guest code when KVM_RUN is called.
Marc Zyngier379e04c72013-04-02 17:46:31 +01003088 - KVM_ARM_VCPU_EL1_32BIT: Starts the CPU in a 32bit mode.
3089 Depends on KVM_CAP_ARM_EL1_32BIT (arm64 only).
Marc Zyngier85bd0ba2018-01-21 16:42:56 +00003090 - KVM_ARM_VCPU_PSCI_0_2: Emulate PSCI v0.2 (or a future revision
3091 backward compatible with v0.2) for the CPU.
Anup Patel50bb0c92014-04-29 11:24:17 +05303092 Depends on KVM_CAP_ARM_PSCI_0_2.
Shannon Zhao808e7382016-01-11 22:46:15 +08003093 - KVM_ARM_VCPU_PMU_V3: Emulate PMUv3 for the CPU.
3094 Depends on KVM_CAP_ARM_PMU_V3.
Marc Zyngieraa024c22013-01-20 18:28:13 -05003095
Amit Daniel Kachhapa22fa322019-04-23 10:12:36 +05303096 - KVM_ARM_VCPU_PTRAUTH_ADDRESS: Enables Address Pointer authentication
3097 for arm64 only.
Amit Daniel Kachhapa243c162019-04-23 10:12:37 +05303098 Depends on KVM_CAP_ARM_PTRAUTH_ADDRESS.
3099 If KVM_CAP_ARM_PTRAUTH_ADDRESS and KVM_CAP_ARM_PTRAUTH_GENERIC are
3100 both present, then both KVM_ARM_VCPU_PTRAUTH_ADDRESS and
3101 KVM_ARM_VCPU_PTRAUTH_GENERIC must be requested or neither must be
3102 requested.
Amit Daniel Kachhapa22fa322019-04-23 10:12:36 +05303103
3104 - KVM_ARM_VCPU_PTRAUTH_GENERIC: Enables Generic Pointer authentication
3105 for arm64 only.
Amit Daniel Kachhapa243c162019-04-23 10:12:37 +05303106 Depends on KVM_CAP_ARM_PTRAUTH_GENERIC.
3107 If KVM_CAP_ARM_PTRAUTH_ADDRESS and KVM_CAP_ARM_PTRAUTH_GENERIC are
3108 both present, then both KVM_ARM_VCPU_PTRAUTH_ADDRESS and
3109 KVM_ARM_VCPU_PTRAUTH_GENERIC must be requested or neither must be
3110 requested.
Amit Daniel Kachhapa22fa322019-04-23 10:12:36 +05303111
Dave Martin50036ad2018-09-28 14:39:27 +01003112 - KVM_ARM_VCPU_SVE: Enables SVE for the CPU (arm64 only).
3113 Depends on KVM_CAP_ARM_SVE.
3114 Requires KVM_ARM_VCPU_FINALIZE(KVM_ARM_VCPU_SVE):
3115
3116 * After KVM_ARM_VCPU_INIT:
3117
3118 - KVM_REG_ARM64_SVE_VLS may be read using KVM_GET_ONE_REG: the
3119 initial value of this pseudo-register indicates the best set of
3120 vector lengths possible for a vcpu on this host.
3121
3122 * Before KVM_ARM_VCPU_FINALIZE(KVM_ARM_VCPU_SVE):
3123
3124 - KVM_RUN and KVM_GET_REG_LIST are not available;
3125
3126 - KVM_GET_ONE_REG and KVM_SET_ONE_REG cannot be used to access
3127 the scalable archietctural SVE registers
3128 KVM_REG_ARM64_SVE_ZREG(), KVM_REG_ARM64_SVE_PREG() or
3129 KVM_REG_ARM64_SVE_FFR;
3130
3131 - KVM_REG_ARM64_SVE_VLS may optionally be written using
3132 KVM_SET_ONE_REG, to modify the set of vector lengths available
3133 for the vcpu.
3134
3135 * After KVM_ARM_VCPU_FINALIZE(KVM_ARM_VCPU_SVE):
3136
3137 - the KVM_REG_ARM64_SVE_VLS pseudo-register is immutable, and can
3138 no longer be written using KVM_SET_ONE_REG.
Christoffer Dall749cf76c2013-01-20 18:28:06 -05003139
Anup Patel740edfc2013-09-30 14:20:08 +053031404.83 KVM_ARM_PREFERRED_TARGET
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003141-----------------------------
Anup Patel740edfc2013-09-30 14:20:08 +05303142
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003143:Capability: basic
3144:Architectures: arm, arm64
3145:Type: vm ioctl
3146:Parameters: struct struct kvm_vcpu_init (out)
3147:Returns: 0 on success; -1 on error
3148
Anup Patel740edfc2013-09-30 14:20:08 +05303149Errors:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003150
3151 ====== ==========================================
3152 ENODEV no preferred target available for the host
3153 ====== ==========================================
Anup Patel740edfc2013-09-30 14:20:08 +05303154
3155This queries KVM for preferred CPU target type which can be emulated
3156by KVM on underlying host.
3157
3158The ioctl returns struct kvm_vcpu_init instance containing information
3159about preferred CPU target type and recommended features for it. The
3160kvm_vcpu_init->features bitmap returned will have feature bits set if
3161the preferred target recommends setting these features, but this is
3162not mandatory.
3163
3164The information returned by this ioctl can be used to prepare an instance
3165of struct kvm_vcpu_init for KVM_ARM_VCPU_INIT ioctl which will result in
3166in VCPU matching underlying host.
3167
3168
31694.84 KVM_GET_REG_LIST
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003170---------------------
Christoffer Dall749cf76c2013-01-20 18:28:06 -05003171
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003172:Capability: basic
3173:Architectures: arm, arm64, mips
3174:Type: vcpu ioctl
3175:Parameters: struct kvm_reg_list (in/out)
3176:Returns: 0 on success; -1 on error
3177
Christoffer Dall749cf76c2013-01-20 18:28:06 -05003178Errors:
Christoffer Dall749cf76c2013-01-20 18:28:06 -05003179
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003180 ===== ==============================================================
3181  E2BIG     the reg index list is too big to fit in the array specified by
3182             the user (the number required will be written into n).
3183 ===== ==============================================================
3184
3185::
3186
3187 struct kvm_reg_list {
Christoffer Dall749cf76c2013-01-20 18:28:06 -05003188 __u64 n; /* number of registers in reg[] */
3189 __u64 reg[0];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003190 };
Christoffer Dall749cf76c2013-01-20 18:28:06 -05003191
3192This ioctl returns the guest registers that are supported for the
3193KVM_GET_ONE_REG/KVM_SET_ONE_REG calls.
3194
Christoffer Dallce01e4e2013-09-23 14:55:56 -07003195
31964.85 KVM_ARM_SET_DEVICE_ADDR (deprecated)
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003197-----------------------------------------
Christoffer Dall3401d5462013-01-23 13:18:04 -05003198
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003199:Capability: KVM_CAP_ARM_SET_DEVICE_ADDR
3200:Architectures: arm, arm64
3201:Type: vm ioctl
3202:Parameters: struct kvm_arm_device_address (in)
3203:Returns: 0 on success, -1 on error
3204
Christoffer Dall3401d5462013-01-23 13:18:04 -05003205Errors:
Christoffer Dall3401d5462013-01-23 13:18:04 -05003206
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003207 ====== ============================================
3208 ENODEV The device id is unknown
3209 ENXIO Device not supported on current system
3210 EEXIST Address already set
3211 E2BIG Address outside guest physical address space
3212 EBUSY Address overlaps with other device range
3213 ====== ============================================
3214
3215::
3216
3217 struct kvm_arm_device_addr {
Christoffer Dall3401d5462013-01-23 13:18:04 -05003218 __u64 id;
3219 __u64 addr;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003220 };
Christoffer Dall3401d5462013-01-23 13:18:04 -05003221
3222Specify a device address in the guest's physical address space where guests
3223can access emulated or directly exposed devices, which the host kernel needs
3224to know about. The id field is an architecture specific identifier for a
3225specific device.
3226
Marc Zyngier379e04c72013-04-02 17:46:31 +01003227ARM/arm64 divides the id field into two parts, a device id and an
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003228address type id specific to the individual device::
Christoffer Dall3401d5462013-01-23 13:18:04 -05003229
3230  bits: | 63 ... 32 | 31 ... 16 | 15 ... 0 |
3231 field: | 0x00000000 | device id | addr type id |
3232
Marc Zyngier379e04c72013-04-02 17:46:31 +01003233ARM/arm64 currently only require this when using the in-kernel GIC
3234support for the hardware VGIC features, using KVM_ARM_DEVICE_VGIC_V2
3235as the device id. When setting the base address for the guest's
3236mapping of the VGIC virtual CPU and distributor interface, the ioctl
3237must be called after calling KVM_CREATE_IRQCHIP, but before calling
3238KVM_RUN on any of the VCPUs. Calling this ioctl twice for any of the
3239base addresses will return -EEXIST.
Christoffer Dall3401d5462013-01-23 13:18:04 -05003240
Christoffer Dallce01e4e2013-09-23 14:55:56 -07003241Note, this IOCTL is deprecated and the more flexible SET/GET_DEVICE_ATTR API
3242should be used instead.
3243
3244
Anup Patel740edfc2013-09-30 14:20:08 +053032454.86 KVM_PPC_RTAS_DEFINE_TOKEN
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003246------------------------------
Michael Ellerman8e591cb2013-04-17 20:30:00 +00003247
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003248:Capability: KVM_CAP_PPC_RTAS
3249:Architectures: ppc
3250:Type: vm ioctl
3251:Parameters: struct kvm_rtas_token_args
3252:Returns: 0 on success, -1 on error
Michael Ellerman8e591cb2013-04-17 20:30:00 +00003253
3254Defines a token value for a RTAS (Run Time Abstraction Services)
3255service in order to allow it to be handled in the kernel. The
3256argument struct gives the name of the service, which must be the name
3257of a service that has a kernel-side implementation. If the token
3258value is non-zero, it will be associated with that service, and
3259subsequent RTAS calls by the guest specifying that token will be
3260handled by the kernel. If the token value is 0, then any token
3261associated with the service will be forgotten, and subsequent RTAS
3262calls by the guest for that service will be passed to userspace to be
3263handled.
3264
Alex Bennée4bd9d342014-09-09 17:27:18 +010032654.87 KVM_SET_GUEST_DEBUG
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003266------------------------
Alex Bennée4bd9d342014-09-09 17:27:18 +01003267
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003268:Capability: KVM_CAP_SET_GUEST_DEBUG
3269:Architectures: x86, s390, ppc, arm64
3270:Type: vcpu ioctl
3271:Parameters: struct kvm_guest_debug (in)
3272:Returns: 0 on success; -1 on error
Alex Bennée4bd9d342014-09-09 17:27:18 +01003273
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003274::
3275
3276 struct kvm_guest_debug {
Alex Bennée4bd9d342014-09-09 17:27:18 +01003277 __u32 control;
3278 __u32 pad;
3279 struct kvm_guest_debug_arch arch;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003280 };
Alex Bennée4bd9d342014-09-09 17:27:18 +01003281
3282Set up the processor specific debug registers and configure vcpu for
3283handling guest debug events. There are two parts to the structure, the
3284first a control bitfield indicates the type of debug events to handle
3285when running. Common control bits are:
3286
3287 - KVM_GUESTDBG_ENABLE: guest debugging is enabled
3288 - KVM_GUESTDBG_SINGLESTEP: the next run should single-step
3289
3290The top 16 bits of the control field are architecture specific control
3291flags which can include the following:
3292
Alex Bennée4bd611c2015-07-07 17:29:57 +01003293 - KVM_GUESTDBG_USE_SW_BP: using software breakpoints [x86, arm64]
Alex Bennée834bf882015-07-07 17:30:02 +01003294 - KVM_GUESTDBG_USE_HW_BP: using hardware breakpoints [x86, s390, arm64]
Alex Bennée4bd9d342014-09-09 17:27:18 +01003295 - KVM_GUESTDBG_INJECT_DB: inject DB type exception [x86]
3296 - KVM_GUESTDBG_INJECT_BP: inject BP type exception [x86]
3297 - KVM_GUESTDBG_EXIT_PENDING: trigger an immediate guest exit [s390]
3298
3299For example KVM_GUESTDBG_USE_SW_BP indicates that software breakpoints
3300are enabled in memory so we need to ensure breakpoint exceptions are
3301correctly trapped and the KVM run loop exits at the breakpoint and not
3302running off into the normal guest vector. For KVM_GUESTDBG_USE_HW_BP
3303we need to ensure the guest vCPUs architecture specific registers are
3304updated to the correct (supplied) values.
3305
3306The second part of the structure is architecture specific and
3307typically contains a set of debug registers.
3308
Alex Bennée834bf882015-07-07 17:30:02 +01003309For arm64 the number of debug registers is implementation defined and
3310can be determined by querying the KVM_CAP_GUEST_DEBUG_HW_BPS and
3311KVM_CAP_GUEST_DEBUG_HW_WPS capabilities which return a positive number
3312indicating the number of supported registers.
3313
Fabiano Rosas1a9167a2019-06-19 13:01:27 -03003314For ppc, the KVM_CAP_PPC_GUEST_DEBUG_SSTEP capability indicates whether
3315the single-step debug event (KVM_GUESTDBG_SINGLESTEP) is supported.
3316
Alex Bennée4bd9d342014-09-09 17:27:18 +01003317When debug events exit the main run loop with the reason
3318KVM_EXIT_DEBUG with the kvm_debug_exit_arch part of the kvm_run
3319structure containing architecture specific debug information.
Christoffer Dall3401d5462013-01-23 13:18:04 -05003320
Alex Bennée209cf192014-09-09 17:27:19 +010033214.88 KVM_GET_EMULATED_CPUID
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003322---------------------------
Alex Bennée209cf192014-09-09 17:27:19 +01003323
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003324:Capability: KVM_CAP_EXT_EMUL_CPUID
3325:Architectures: x86
3326:Type: system ioctl
3327:Parameters: struct kvm_cpuid2 (in/out)
3328:Returns: 0 on success, -1 on error
Alex Bennée209cf192014-09-09 17:27:19 +01003329
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003330::
3331
3332 struct kvm_cpuid2 {
Alex Bennée209cf192014-09-09 17:27:19 +01003333 __u32 nent;
3334 __u32 flags;
3335 struct kvm_cpuid_entry2 entries[0];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003336 };
Alex Bennée209cf192014-09-09 17:27:19 +01003337
3338The member 'flags' is used for passing flags from userspace.
3339
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003340::
Alex Bennée209cf192014-09-09 17:27:19 +01003341
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003342 #define KVM_CPUID_FLAG_SIGNIFCANT_INDEX BIT(0)
Sean Christopherson7ff6c032020-03-02 15:56:51 -08003343 #define KVM_CPUID_FLAG_STATEFUL_FUNC BIT(1) /* deprecated */
3344 #define KVM_CPUID_FLAG_STATE_READ_NEXT BIT(2) /* deprecated */
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003345
3346 struct kvm_cpuid_entry2 {
Alex Bennée209cf192014-09-09 17:27:19 +01003347 __u32 function;
3348 __u32 index;
3349 __u32 flags;
3350 __u32 eax;
3351 __u32 ebx;
3352 __u32 ecx;
3353 __u32 edx;
3354 __u32 padding[3];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003355 };
Alex Bennée209cf192014-09-09 17:27:19 +01003356
3357This ioctl returns x86 cpuid features which are emulated by
3358kvm.Userspace can use the information returned by this ioctl to query
3359which features are emulated by kvm instead of being present natively.
3360
3361Userspace invokes KVM_GET_EMULATED_CPUID by passing a kvm_cpuid2
3362structure with the 'nent' field indicating the number of entries in
3363the variable-size array 'entries'. If the number of entries is too low
3364to describe the cpu capabilities, an error (E2BIG) is returned. If the
3365number is too high, the 'nent' field is adjusted and an error (ENOMEM)
3366is returned. If the number is just right, the 'nent' field is adjusted
3367to the number of valid entries in the 'entries' array, which is then
3368filled.
3369
3370The entries returned are the set CPUID bits of the respective features
3371which kvm emulates, as returned by the CPUID instruction, with unknown
3372or unsupported feature bits cleared.
3373
3374Features like x2apic, for example, may not be present in the host cpu
3375but are exposed by kvm in KVM_GET_SUPPORTED_CPUID because they can be
3376emulated efficiently and thus not included here.
3377
3378The fields in each entry are defined as follows:
3379
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003380 function:
3381 the eax value used to obtain the entry
3382 index:
3383 the ecx value used to obtain the entry (for entries that are
Alex Bennée209cf192014-09-09 17:27:19 +01003384 affected by ecx)
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003385 flags:
3386 an OR of zero or more of the following:
3387
Alex Bennée209cf192014-09-09 17:27:19 +01003388 KVM_CPUID_FLAG_SIGNIFCANT_INDEX:
3389 if the index field is valid
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003390
3391 eax, ebx, ecx, edx:
3392
3393 the values returned by the cpuid instruction for
Alex Bennée209cf192014-09-09 17:27:19 +01003394 this function/index combination
3395
Thomas Huth41408c282015-02-06 15:01:21 +010033964.89 KVM_S390_MEM_OP
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003397--------------------
Thomas Huth41408c282015-02-06 15:01:21 +01003398
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003399:Capability: KVM_CAP_S390_MEM_OP
3400:Architectures: s390
3401:Type: vcpu ioctl
3402:Parameters: struct kvm_s390_mem_op (in)
3403:Returns: = 0 on success,
3404 < 0 on generic error (e.g. -EFAULT or -ENOMEM),
3405 > 0 if an exception occurred while walking the page tables
Thomas Huth41408c282015-02-06 15:01:21 +01003406
Masanari Iida5d4f6f32015-10-04 00:46:21 +09003407Read or write data from/to the logical (virtual) memory of a VCPU.
Thomas Huth41408c282015-02-06 15:01:21 +01003408
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003409Parameters are specified via the following structure::
Thomas Huth41408c282015-02-06 15:01:21 +01003410
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003411 struct kvm_s390_mem_op {
Thomas Huth41408c282015-02-06 15:01:21 +01003412 __u64 gaddr; /* the guest address */
3413 __u64 flags; /* flags */
3414 __u32 size; /* amount of bytes */
3415 __u32 op; /* type of operation */
3416 __u64 buf; /* buffer in userspace */
3417 __u8 ar; /* the access register number */
3418 __u8 reserved[31]; /* should be set to 0 */
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003419 };
Thomas Huth41408c282015-02-06 15:01:21 +01003420
3421The type of operation is specified in the "op" field. It is either
3422KVM_S390_MEMOP_LOGICAL_READ for reading from logical memory space or
3423KVM_S390_MEMOP_LOGICAL_WRITE for writing to logical memory space. The
3424KVM_S390_MEMOP_F_CHECK_ONLY flag can be set in the "flags" field to check
3425whether the corresponding memory access would create an access exception
3426(without touching the data in the memory at the destination). In case an
3427access exception occurred while walking the MMU tables of the guest, the
3428ioctl returns a positive error number to indicate the type of exception.
3429This exception is also raised directly at the corresponding VCPU if the
3430flag KVM_S390_MEMOP_F_INJECT_EXCEPTION is set in the "flags" field.
3431
3432The start address of the memory region has to be specified in the "gaddr"
Cornelia Huckb4d863c2019-08-29 14:47:46 +02003433field, and the length of the region in the "size" field (which must not
3434be 0). The maximum value for "size" can be obtained by checking the
3435KVM_CAP_S390_MEM_OP capability. "buf" is the buffer supplied by the
3436userspace application where the read data should be written to for
3437KVM_S390_MEMOP_LOGICAL_READ, or where the data that should be written is
3438stored for a KVM_S390_MEMOP_LOGICAL_WRITE. When KVM_S390_MEMOP_F_CHECK_ONLY
3439is specified, "buf" is unused and can be NULL. "ar" designates the access
3440register number to be used; the valid range is 0..15.
Thomas Huth41408c282015-02-06 15:01:21 +01003441
3442The "reserved" field is meant for future extensions. It is not used by
3443KVM with the currently defined set of flags.
3444
Jason J. Herne30ee2a92014-09-23 09:23:01 -040034454.90 KVM_S390_GET_SKEYS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003446-----------------------
Jason J. Herne30ee2a92014-09-23 09:23:01 -04003447
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003448:Capability: KVM_CAP_S390_SKEYS
3449:Architectures: s390
3450:Type: vm ioctl
3451:Parameters: struct kvm_s390_skeys
3452:Returns: 0 on success, KVM_S390_GET_KEYS_NONE if guest is not using storage
3453 keys, negative value on error
Jason J. Herne30ee2a92014-09-23 09:23:01 -04003454
3455This ioctl is used to get guest storage key values on the s390
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003456architecture. The ioctl takes parameters via the kvm_s390_skeys struct::
Jason J. Herne30ee2a92014-09-23 09:23:01 -04003457
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003458 struct kvm_s390_skeys {
Jason J. Herne30ee2a92014-09-23 09:23:01 -04003459 __u64 start_gfn;
3460 __u64 count;
3461 __u64 skeydata_addr;
3462 __u32 flags;
3463 __u32 reserved[9];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003464 };
Jason J. Herne30ee2a92014-09-23 09:23:01 -04003465
3466The start_gfn field is the number of the first guest frame whose storage keys
3467you want to get.
3468
3469The count field is the number of consecutive frames (starting from start_gfn)
3470whose storage keys to get. The count field must be at least 1 and the maximum
3471allowed value is defined as KVM_S390_SKEYS_ALLOC_MAX. Values outside this range
3472will cause the ioctl to return -EINVAL.
3473
3474The skeydata_addr field is the address to a buffer large enough to hold count
3475bytes. This buffer will be filled with storage key data by the ioctl.
3476
34774.91 KVM_S390_SET_SKEYS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003478-----------------------
Jason J. Herne30ee2a92014-09-23 09:23:01 -04003479
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003480:Capability: KVM_CAP_S390_SKEYS
3481:Architectures: s390
3482:Type: vm ioctl
3483:Parameters: struct kvm_s390_skeys
3484:Returns: 0 on success, negative value on error
Jason J. Herne30ee2a92014-09-23 09:23:01 -04003485
3486This ioctl is used to set guest storage key values on the s390
3487architecture. The ioctl takes parameters via the kvm_s390_skeys struct.
3488See section on KVM_S390_GET_SKEYS for struct definition.
3489
3490The start_gfn field is the number of the first guest frame whose storage keys
3491you want to set.
3492
3493The count field is the number of consecutive frames (starting from start_gfn)
3494whose storage keys to get. The count field must be at least 1 and the maximum
3495allowed value is defined as KVM_S390_SKEYS_ALLOC_MAX. Values outside this range
3496will cause the ioctl to return -EINVAL.
3497
3498The skeydata_addr field is the address to a buffer containing count bytes of
3499storage keys. Each byte in the buffer will be set as the storage key for a
3500single frame starting at start_gfn for count frames.
3501
3502Note: If any architecturally invalid key value is found in the given data then
3503the ioctl will return -EINVAL.
3504
Jens Freimann47b43c52014-11-11 20:57:06 +010035054.92 KVM_S390_IRQ
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003506-----------------
Jens Freimann47b43c52014-11-11 20:57:06 +01003507
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003508:Capability: KVM_CAP_S390_INJECT_IRQ
3509:Architectures: s390
3510:Type: vcpu ioctl
3511:Parameters: struct kvm_s390_irq (in)
3512:Returns: 0 on success, -1 on error
3513
Jens Freimann47b43c52014-11-11 20:57:06 +01003514Errors:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003515
3516
3517 ====== =================================================================
3518 EINVAL interrupt type is invalid
3519 type is KVM_S390_SIGP_STOP and flag parameter is invalid value,
Jens Freimann47b43c52014-11-11 20:57:06 +01003520 type is KVM_S390_INT_EXTERNAL_CALL and code is bigger
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003521 than the maximum of VCPUs
3522 EBUSY type is KVM_S390_SIGP_SET_PREFIX and vcpu is not stopped,
3523 type is KVM_S390_SIGP_STOP and a stop irq is already pending,
Jens Freimann47b43c52014-11-11 20:57:06 +01003524 type is KVM_S390_INT_EXTERNAL_CALL and an external call interrupt
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003525 is already pending
3526 ====== =================================================================
Jens Freimann47b43c52014-11-11 20:57:06 +01003527
3528Allows to inject an interrupt to the guest.
3529
3530Using struct kvm_s390_irq as a parameter allows
3531to inject additional payload which is not
3532possible via KVM_S390_INTERRUPT.
3533
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003534Interrupt parameters are passed via kvm_s390_irq::
Jens Freimann47b43c52014-11-11 20:57:06 +01003535
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003536 struct kvm_s390_irq {
Jens Freimann47b43c52014-11-11 20:57:06 +01003537 __u64 type;
3538 union {
3539 struct kvm_s390_io_info io;
3540 struct kvm_s390_ext_info ext;
3541 struct kvm_s390_pgm_info pgm;
3542 struct kvm_s390_emerg_info emerg;
3543 struct kvm_s390_extcall_info extcall;
3544 struct kvm_s390_prefix_info prefix;
3545 struct kvm_s390_stop_info stop;
3546 struct kvm_s390_mchk_info mchk;
3547 char reserved[64];
3548 } u;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003549 };
Jens Freimann47b43c52014-11-11 20:57:06 +01003550
3551type can be one of the following:
3552
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003553- KVM_S390_SIGP_STOP - sigp stop; parameter in .stop
3554- KVM_S390_PROGRAM_INT - program check; parameters in .pgm
3555- KVM_S390_SIGP_SET_PREFIX - sigp set prefix; parameters in .prefix
3556- KVM_S390_RESTART - restart; no parameters
3557- KVM_S390_INT_CLOCK_COMP - clock comparator interrupt; no parameters
3558- KVM_S390_INT_CPU_TIMER - CPU timer interrupt; no parameters
3559- KVM_S390_INT_EMERGENCY - sigp emergency; parameters in .emerg
3560- KVM_S390_INT_EXTERNAL_CALL - sigp external call; parameters in .extcall
3561- KVM_S390_MCHK - machine check interrupt; parameters in .mchk
Jens Freimann47b43c52014-11-11 20:57:06 +01003562
Sean Christopherson5e124902019-02-15 12:48:38 -08003563This is an asynchronous vcpu ioctl and can be invoked from any thread.
Jens Freimann47b43c52014-11-11 20:57:06 +01003564
Jens Freimann816c7662014-11-24 17:13:46 +010035654.94 KVM_S390_GET_IRQ_STATE
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003566---------------------------
Jens Freimann816c7662014-11-24 17:13:46 +01003567
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003568:Capability: KVM_CAP_S390_IRQ_STATE
3569:Architectures: s390
3570:Type: vcpu ioctl
3571:Parameters: struct kvm_s390_irq_state (out)
3572:Returns: >= number of bytes copied into buffer,
3573 -EINVAL if buffer size is 0,
3574 -ENOBUFS if buffer size is too small to fit all pending interrupts,
3575 -EFAULT if the buffer address was invalid
Jens Freimann816c7662014-11-24 17:13:46 +01003576
3577This ioctl allows userspace to retrieve the complete state of all currently
3578pending interrupts in a single buffer. Use cases include migration
3579and introspection. The parameter structure contains the address of a
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003580userspace buffer and its length::
Jens Freimann816c7662014-11-24 17:13:46 +01003581
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003582 struct kvm_s390_irq_state {
Jens Freimann816c7662014-11-24 17:13:46 +01003583 __u64 buf;
Christian Borntraegerbb64da92017-11-21 16:02:52 +01003584 __u32 flags; /* will stay unused for compatibility reasons */
Jens Freimann816c7662014-11-24 17:13:46 +01003585 __u32 len;
Christian Borntraegerbb64da92017-11-21 16:02:52 +01003586 __u32 reserved[4]; /* will stay unused for compatibility reasons */
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003587 };
Jens Freimann816c7662014-11-24 17:13:46 +01003588
3589Userspace passes in the above struct and for each pending interrupt a
3590struct kvm_s390_irq is copied to the provided buffer.
3591
Christian Borntraegerbb64da92017-11-21 16:02:52 +01003592The structure contains a flags and a reserved field for future extensions. As
3593the kernel never checked for flags == 0 and QEMU never pre-zeroed flags and
3594reserved, these fields can not be used in the future without breaking
3595compatibility.
3596
Jens Freimann816c7662014-11-24 17:13:46 +01003597If -ENOBUFS is returned the buffer provided was too small and userspace
3598may retry with a bigger buffer.
3599
36004.95 KVM_S390_SET_IRQ_STATE
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003601---------------------------
Jens Freimann816c7662014-11-24 17:13:46 +01003602
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003603:Capability: KVM_CAP_S390_IRQ_STATE
3604:Architectures: s390
3605:Type: vcpu ioctl
3606:Parameters: struct kvm_s390_irq_state (in)
3607:Returns: 0 on success,
3608 -EFAULT if the buffer address was invalid,
3609 -EINVAL for an invalid buffer length (see below),
3610 -EBUSY if there were already interrupts pending,
3611 errors occurring when actually injecting the
Jens Freimann816c7662014-11-24 17:13:46 +01003612 interrupt. See KVM_S390_IRQ.
3613
3614This ioctl allows userspace to set the complete state of all cpu-local
3615interrupts currently pending for the vcpu. It is intended for restoring
3616interrupt state after a migration. The input parameter is a userspace buffer
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003617containing a struct kvm_s390_irq_state::
Jens Freimann816c7662014-11-24 17:13:46 +01003618
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003619 struct kvm_s390_irq_state {
Jens Freimann816c7662014-11-24 17:13:46 +01003620 __u64 buf;
Christian Borntraegerbb64da92017-11-21 16:02:52 +01003621 __u32 flags; /* will stay unused for compatibility reasons */
Jens Freimann816c7662014-11-24 17:13:46 +01003622 __u32 len;
Christian Borntraegerbb64da92017-11-21 16:02:52 +01003623 __u32 reserved[4]; /* will stay unused for compatibility reasons */
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003624 };
Jens Freimann816c7662014-11-24 17:13:46 +01003625
Christian Borntraegerbb64da92017-11-21 16:02:52 +01003626The restrictions for flags and reserved apply as well.
3627(see KVM_S390_GET_IRQ_STATE)
3628
Jens Freimann816c7662014-11-24 17:13:46 +01003629The userspace memory referenced by buf contains a struct kvm_s390_irq
3630for each interrupt to be injected into the guest.
3631If one of the interrupts could not be injected for some reason the
3632ioctl aborts.
3633
3634len must be a multiple of sizeof(struct kvm_s390_irq). It must be > 0
3635and it must not exceed (max_vcpus + 32) * sizeof(struct kvm_s390_irq),
3636which is the maximum number of possibly pending cpu-local interrupts.
Jens Freimann47b43c52014-11-11 20:57:06 +01003637
Alexey Kardashevskiyed8e5a22016-01-19 16:12:28 +110036384.96 KVM_SMI
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003639------------
Paolo Bonzinif0778252015-04-01 15:06:40 +02003640
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003641:Capability: KVM_CAP_X86_SMM
3642:Architectures: x86
3643:Type: vcpu ioctl
3644:Parameters: none
3645:Returns: 0 on success, -1 on error
Paolo Bonzinif0778252015-04-01 15:06:40 +02003646
3647Queues an SMI on the thread's vcpu.
3648
Alexey Kardashevskiyd3695aa2016-02-15 12:55:09 +110036494.97 KVM_CAP_PPC_MULTITCE
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003650-------------------------
Alexey Kardashevskiyd3695aa2016-02-15 12:55:09 +11003651
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003652:Capability: KVM_CAP_PPC_MULTITCE
3653:Architectures: ppc
3654:Type: vm
Alexey Kardashevskiyd3695aa2016-02-15 12:55:09 +11003655
3656This capability means the kernel is capable of handling hypercalls
3657H_PUT_TCE_INDIRECT and H_STUFF_TCE without passing those into the user
3658space. This significantly accelerates DMA operations for PPC KVM guests.
3659User space should expect that its handlers for these hypercalls
3660are not going to be called if user space previously registered LIOBN
3661in KVM (via KVM_CREATE_SPAPR_TCE or similar calls).
3662
3663In order to enable H_PUT_TCE_INDIRECT and H_STUFF_TCE use in the guest,
3664user space might have to advertise it for the guest. For example,
3665IBM pSeries (sPAPR) guest starts using them if "hcall-multi-tce" is
3666present in the "ibm,hypertas-functions" device-tree property.
3667
3668The hypercalls mentioned above may or may not be processed successfully
3669in the kernel based fast path. If they can not be handled by the kernel,
3670they will get passed on to user space. So user space still has to have
3671an implementation for these despite the in kernel acceleration.
3672
3673This capability is always enabled.
3674
Alexey Kardashevskiy58ded422016-03-01 17:54:40 +110036754.98 KVM_CREATE_SPAPR_TCE_64
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003676----------------------------
Alexey Kardashevskiy58ded422016-03-01 17:54:40 +11003677
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003678:Capability: KVM_CAP_SPAPR_TCE_64
3679:Architectures: powerpc
3680:Type: vm ioctl
3681:Parameters: struct kvm_create_spapr_tce_64 (in)
3682:Returns: file descriptor for manipulating the created TCE table
Alexey Kardashevskiy58ded422016-03-01 17:54:40 +11003683
3684This is an extension for KVM_CAP_SPAPR_TCE which only supports 32bit
3685windows, described in 4.62 KVM_CREATE_SPAPR_TCE
3686
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003687This capability uses extended struct in ioctl interface::
Alexey Kardashevskiy58ded422016-03-01 17:54:40 +11003688
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003689 /* for KVM_CAP_SPAPR_TCE_64 */
3690 struct kvm_create_spapr_tce_64 {
Alexey Kardashevskiy58ded422016-03-01 17:54:40 +11003691 __u64 liobn;
3692 __u32 page_shift;
3693 __u32 flags;
3694 __u64 offset; /* in pages */
3695 __u64 size; /* in pages */
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003696 };
Alexey Kardashevskiy58ded422016-03-01 17:54:40 +11003697
3698The aim of extension is to support an additional bigger DMA window with
3699a variable page size.
3700KVM_CREATE_SPAPR_TCE_64 receives a 64bit window size, an IOMMU page shift and
3701a bus offset of the corresponding DMA window, @size and @offset are numbers
3702of IOMMU pages.
3703
3704@flags are not used at the moment.
3705
3706The rest of functionality is identical to KVM_CREATE_SPAPR_TCE.
3707
David Gibsonccc4df42016-12-20 16:48:57 +110037084.99 KVM_REINJECT_CONTROL
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003709-------------------------
Radim Krčmář107d44a22016-03-02 22:56:53 +01003710
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003711:Capability: KVM_CAP_REINJECT_CONTROL
3712:Architectures: x86
3713:Type: vm ioctl
3714:Parameters: struct kvm_reinject_control (in)
3715:Returns: 0 on success,
Radim Krčmář107d44a22016-03-02 22:56:53 +01003716 -EFAULT if struct kvm_reinject_control cannot be read,
3717 -ENXIO if KVM_CREATE_PIT or KVM_CREATE_PIT2 didn't succeed earlier.
3718
3719i8254 (PIT) has two modes, reinject and !reinject. The default is reinject,
3720where KVM queues elapsed i8254 ticks and monitors completion of interrupt from
3721vector(s) that i8254 injects. Reinject mode dequeues a tick and injects its
3722interrupt whenever there isn't a pending interrupt from i8254.
3723!reinject mode injects an interrupt as soon as a tick arrives.
3724
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003725::
3726
3727 struct kvm_reinject_control {
Radim Krčmář107d44a22016-03-02 22:56:53 +01003728 __u8 pit_reinject;
3729 __u8 reserved[31];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003730 };
Radim Krčmář107d44a22016-03-02 22:56:53 +01003731
3732pit_reinject = 0 (!reinject mode) is recommended, unless running an old
3733operating system that uses the PIT for timing (e.g. Linux 2.4.x).
3734
David Gibsonccc4df42016-12-20 16:48:57 +110037354.100 KVM_PPC_CONFIGURE_V3_MMU
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003736------------------------------
Paul Mackerrasc9270132017-01-30 21:21:41 +11003737
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003738:Capability: KVM_CAP_PPC_RADIX_MMU or KVM_CAP_PPC_HASH_MMU_V3
3739:Architectures: ppc
3740:Type: vm ioctl
3741:Parameters: struct kvm_ppc_mmuv3_cfg (in)
3742:Returns: 0 on success,
Paul Mackerrasc9270132017-01-30 21:21:41 +11003743 -EFAULT if struct kvm_ppc_mmuv3_cfg cannot be read,
3744 -EINVAL if the configuration is invalid
3745
3746This ioctl controls whether the guest will use radix or HPT (hashed
3747page table) translation, and sets the pointer to the process table for
3748the guest.
3749
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003750::
3751
3752 struct kvm_ppc_mmuv3_cfg {
Paul Mackerrasc9270132017-01-30 21:21:41 +11003753 __u64 flags;
3754 __u64 process_table;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003755 };
Paul Mackerrasc9270132017-01-30 21:21:41 +11003756
3757There are two bits that can be set in flags; KVM_PPC_MMUV3_RADIX and
3758KVM_PPC_MMUV3_GTSE. KVM_PPC_MMUV3_RADIX, if set, configures the guest
3759to use radix tree translation, and if clear, to use HPT translation.
3760KVM_PPC_MMUV3_GTSE, if set and if KVM permits it, configures the guest
3761to be able to use the global TLB and SLB invalidation instructions;
3762if clear, the guest may not use these instructions.
3763
3764The process_table field specifies the address and size of the guest
3765process table, which is in the guest's space. This field is formatted
3766as the second doubleword of the partition table entry, as defined in
3767the Power ISA V3.00, Book III section 5.7.6.1.
3768
David Gibsonccc4df42016-12-20 16:48:57 +110037694.101 KVM_PPC_GET_RMMU_INFO
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003770---------------------------
Paul Mackerrasc9270132017-01-30 21:21:41 +11003771
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003772:Capability: KVM_CAP_PPC_RADIX_MMU
3773:Architectures: ppc
3774:Type: vm ioctl
3775:Parameters: struct kvm_ppc_rmmu_info (out)
3776:Returns: 0 on success,
Paul Mackerrasc9270132017-01-30 21:21:41 +11003777 -EFAULT if struct kvm_ppc_rmmu_info cannot be written,
3778 -EINVAL if no useful information can be returned
3779
3780This ioctl returns a structure containing two things: (a) a list
3781containing supported radix tree geometries, and (b) a list that maps
3782page sizes to put in the "AP" (actual page size) field for the tlbie
3783(TLB invalidate entry) instruction.
3784
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003785::
3786
3787 struct kvm_ppc_rmmu_info {
Paul Mackerrasc9270132017-01-30 21:21:41 +11003788 struct kvm_ppc_radix_geom {
3789 __u8 page_shift;
3790 __u8 level_bits[4];
3791 __u8 pad[3];
3792 } geometries[8];
3793 __u32 ap_encodings[8];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003794 };
Paul Mackerrasc9270132017-01-30 21:21:41 +11003795
3796The geometries[] field gives up to 8 supported geometries for the
3797radix page table, in terms of the log base 2 of the smallest page
3798size, and the number of bits indexed at each level of the tree, from
3799the PTE level up to the PGD level in that order. Any unused entries
3800will have 0 in the page_shift field.
3801
3802The ap_encodings gives the supported page sizes and their AP field
3803encodings, encoded with the AP value in the top 3 bits and the log
3804base 2 of the page size in the bottom 6 bits.
3805
David Gibsonef1ead02016-12-20 16:48:58 +110038064.102 KVM_PPC_RESIZE_HPT_PREPARE
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003807--------------------------------
David Gibsonef1ead02016-12-20 16:48:58 +11003808
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003809:Capability: KVM_CAP_SPAPR_RESIZE_HPT
3810:Architectures: powerpc
3811:Type: vm ioctl
3812:Parameters: struct kvm_ppc_resize_hpt (in)
3813:Returns: 0 on successful completion,
David Gibsonef1ead02016-12-20 16:48:58 +11003814 >0 if a new HPT is being prepared, the value is an estimated
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003815 number of milliseconds until preparation is complete,
David Gibsonef1ead02016-12-20 16:48:58 +11003816 -EFAULT if struct kvm_reinject_control cannot be read,
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003817 -EINVAL if the supplied shift or flags are invalid,
3818 -ENOMEM if unable to allocate the new HPT,
3819 -ENOSPC if there was a hash collision
3820
3821::
3822
3823 struct kvm_ppc_rmmu_info {
3824 struct kvm_ppc_radix_geom {
3825 __u8 page_shift;
3826 __u8 level_bits[4];
3827 __u8 pad[3];
3828 } geometries[8];
3829 __u32 ap_encodings[8];
3830 };
3831
3832The geometries[] field gives up to 8 supported geometries for the
3833radix page table, in terms of the log base 2 of the smallest page
3834size, and the number of bits indexed at each level of the tree, from
3835the PTE level up to the PGD level in that order. Any unused entries
3836will have 0 in the page_shift field.
3837
3838The ap_encodings gives the supported page sizes and their AP field
3839encodings, encoded with the AP value in the top 3 bits and the log
3840base 2 of the page size in the bottom 6 bits.
3841
38424.102 KVM_PPC_RESIZE_HPT_PREPARE
3843--------------------------------
3844
3845:Capability: KVM_CAP_SPAPR_RESIZE_HPT
3846:Architectures: powerpc
3847:Type: vm ioctl
3848:Parameters: struct kvm_ppc_resize_hpt (in)
3849:Returns: 0 on successful completion,
3850 >0 if a new HPT is being prepared, the value is an estimated
3851 number of milliseconds until preparation is complete,
3852 -EFAULT if struct kvm_reinject_control cannot be read,
3853 -EINVAL if the supplied shift or flags are invalid,when moving existing
3854 HPT entries to the new HPT,
David Gibsonef1ead02016-12-20 16:48:58 +11003855 -EIO on other error conditions
3856
3857Used to implement the PAPR extension for runtime resizing of a guest's
3858Hashed Page Table (HPT). Specifically this starts, stops or monitors
3859the preparation of a new potential HPT for the guest, essentially
3860implementing the H_RESIZE_HPT_PREPARE hypercall.
3861
3862If called with shift > 0 when there is no pending HPT for the guest,
3863this begins preparation of a new pending HPT of size 2^(shift) bytes.
3864It then returns a positive integer with the estimated number of
3865milliseconds until preparation is complete.
3866
3867If called when there is a pending HPT whose size does not match that
3868requested in the parameters, discards the existing pending HPT and
3869creates a new one as above.
3870
3871If called when there is a pending HPT of the size requested, will:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003872
David Gibsonef1ead02016-12-20 16:48:58 +11003873 * If preparation of the pending HPT is already complete, return 0
3874 * If preparation of the pending HPT has failed, return an error
3875 code, then discard the pending HPT.
3876 * If preparation of the pending HPT is still in progress, return an
3877 estimated number of milliseconds until preparation is complete.
3878
3879If called with shift == 0, discards any currently pending HPT and
3880returns 0 (i.e. cancels any in-progress preparation).
3881
3882flags is reserved for future expansion, currently setting any bits in
3883flags will result in an -EINVAL.
3884
3885Normally this will be called repeatedly with the same parameters until
3886it returns <= 0. The first call will initiate preparation, subsequent
3887ones will monitor preparation until it completes or fails.
3888
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003889::
3890
3891 struct kvm_ppc_resize_hpt {
David Gibsonef1ead02016-12-20 16:48:58 +11003892 __u64 flags;
3893 __u32 shift;
3894 __u32 pad;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003895 };
David Gibsonef1ead02016-12-20 16:48:58 +11003896
38974.103 KVM_PPC_RESIZE_HPT_COMMIT
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003898-------------------------------
David Gibsonef1ead02016-12-20 16:48:58 +11003899
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003900:Capability: KVM_CAP_SPAPR_RESIZE_HPT
3901:Architectures: powerpc
3902:Type: vm ioctl
3903:Parameters: struct kvm_ppc_resize_hpt (in)
3904:Returns: 0 on successful completion,
David Gibsonef1ead02016-12-20 16:48:58 +11003905 -EFAULT if struct kvm_reinject_control cannot be read,
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003906 -EINVAL if the supplied shift or flags are invalid,
David Gibsonef1ead02016-12-20 16:48:58 +11003907 -ENXIO is there is no pending HPT, or the pending HPT doesn't
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003908 have the requested size,
3909 -EBUSY if the pending HPT is not fully prepared,
David Gibsonef1ead02016-12-20 16:48:58 +11003910 -ENOSPC if there was a hash collision when moving existing
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003911 HPT entries to the new HPT,
David Gibsonef1ead02016-12-20 16:48:58 +11003912 -EIO on other error conditions
3913
3914Used to implement the PAPR extension for runtime resizing of a guest's
3915Hashed Page Table (HPT). Specifically this requests that the guest be
3916transferred to working with the new HPT, essentially implementing the
3917H_RESIZE_HPT_COMMIT hypercall.
3918
3919This should only be called after KVM_PPC_RESIZE_HPT_PREPARE has
3920returned 0 with the same parameters. In other cases
3921KVM_PPC_RESIZE_HPT_COMMIT will return an error (usually -ENXIO or
3922-EBUSY, though others may be possible if the preparation was started,
3923but failed).
3924
3925This will have undefined effects on the guest if it has not already
3926placed itself in a quiescent state where no vcpu will make MMU enabled
3927memory accesses.
3928
3929On succsful completion, the pending HPT will become the guest's active
3930HPT and the previous HPT will be discarded.
3931
3932On failure, the guest will still be operating on its previous HPT.
3933
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003934::
3935
3936 struct kvm_ppc_resize_hpt {
David Gibsonef1ead02016-12-20 16:48:58 +11003937 __u64 flags;
3938 __u32 shift;
3939 __u32 pad;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003940 };
David Gibsonef1ead02016-12-20 16:48:58 +11003941
Luiz Capitulino3aa53852017-03-13 09:08:20 -040039424.104 KVM_X86_GET_MCE_CAP_SUPPORTED
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003943-----------------------------------
Luiz Capitulino3aa53852017-03-13 09:08:20 -04003944
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003945:Capability: KVM_CAP_MCE
3946:Architectures: x86
3947:Type: system ioctl
3948:Parameters: u64 mce_cap (out)
3949:Returns: 0 on success, -1 on error
Luiz Capitulino3aa53852017-03-13 09:08:20 -04003950
3951Returns supported MCE capabilities. The u64 mce_cap parameter
3952has the same format as the MSR_IA32_MCG_CAP register. Supported
3953capabilities will have the corresponding bits set.
3954
39554.105 KVM_X86_SETUP_MCE
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003956-----------------------
Luiz Capitulino3aa53852017-03-13 09:08:20 -04003957
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003958:Capability: KVM_CAP_MCE
3959:Architectures: x86
3960:Type: vcpu ioctl
3961:Parameters: u64 mcg_cap (in)
3962:Returns: 0 on success,
Luiz Capitulino3aa53852017-03-13 09:08:20 -04003963 -EFAULT if u64 mcg_cap cannot be read,
3964 -EINVAL if the requested number of banks is invalid,
3965 -EINVAL if requested MCE capability is not supported.
3966
3967Initializes MCE support for use. The u64 mcg_cap parameter
3968has the same format as the MSR_IA32_MCG_CAP register and
3969specifies which capabilities should be enabled. The maximum
3970supported number of error-reporting banks can be retrieved when
3971checking for KVM_CAP_MCE. The supported capabilities can be
3972retrieved with KVM_X86_GET_MCE_CAP_SUPPORTED.
3973
39744.106 KVM_X86_SET_MCE
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003975---------------------
Luiz Capitulino3aa53852017-03-13 09:08:20 -04003976
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003977:Capability: KVM_CAP_MCE
3978:Architectures: x86
3979:Type: vcpu ioctl
3980:Parameters: struct kvm_x86_mce (in)
3981:Returns: 0 on success,
Luiz Capitulino3aa53852017-03-13 09:08:20 -04003982 -EFAULT if struct kvm_x86_mce cannot be read,
3983 -EINVAL if the bank number is invalid,
3984 -EINVAL if VAL bit is not set in status field.
3985
3986Inject a machine check error (MCE) into the guest. The input
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003987parameter is::
Luiz Capitulino3aa53852017-03-13 09:08:20 -04003988
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003989 struct kvm_x86_mce {
Luiz Capitulino3aa53852017-03-13 09:08:20 -04003990 __u64 status;
3991 __u64 addr;
3992 __u64 misc;
3993 __u64 mcg_status;
3994 __u8 bank;
3995 __u8 pad1[7];
3996 __u64 pad2[3];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003997 };
Luiz Capitulino3aa53852017-03-13 09:08:20 -04003998
3999If the MCE being reported is an uncorrected error, KVM will
4000inject it as an MCE exception into the guest. If the guest
4001MCG_STATUS register reports that an MCE is in progress, KVM
4002causes an KVM_EXIT_SHUTDOWN vmexit.
4003
4004Otherwise, if the MCE is a corrected error, KVM will just
4005store it in the corresponding bank (provided this bank is
4006not holding a previously reported uncorrected error).
4007
Claudio Imbrenda4036e382016-08-04 17:58:47 +020040084.107 KVM_S390_GET_CMMA_BITS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004009----------------------------
Claudio Imbrenda4036e382016-08-04 17:58:47 +02004010
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004011:Capability: KVM_CAP_S390_CMMA_MIGRATION
4012:Architectures: s390
4013:Type: vm ioctl
4014:Parameters: struct kvm_s390_cmma_log (in, out)
4015:Returns: 0 on success, a negative value on error
Claudio Imbrenda4036e382016-08-04 17:58:47 +02004016
4017This ioctl is used to get the values of the CMMA bits on the s390
4018architecture. It is meant to be used in two scenarios:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004019
Claudio Imbrenda4036e382016-08-04 17:58:47 +02004020- During live migration to save the CMMA values. Live migration needs
4021 to be enabled via the KVM_REQ_START_MIGRATION VM property.
4022- To non-destructively peek at the CMMA values, with the flag
4023 KVM_S390_CMMA_PEEK set.
4024
4025The ioctl takes parameters via the kvm_s390_cmma_log struct. The desired
4026values are written to a buffer whose location is indicated via the "values"
4027member in the kvm_s390_cmma_log struct. The values in the input struct are
4028also updated as needed.
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004029
Claudio Imbrenda4036e382016-08-04 17:58:47 +02004030Each CMMA value takes up one byte.
4031
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004032::
4033
4034 struct kvm_s390_cmma_log {
Claudio Imbrenda4036e382016-08-04 17:58:47 +02004035 __u64 start_gfn;
4036 __u32 count;
4037 __u32 flags;
4038 union {
4039 __u64 remaining;
4040 __u64 mask;
4041 };
4042 __u64 values;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004043 };
Claudio Imbrenda4036e382016-08-04 17:58:47 +02004044
4045start_gfn is the number of the first guest frame whose CMMA values are
4046to be retrieved,
4047
4048count is the length of the buffer in bytes,
4049
4050values points to the buffer where the result will be written to.
4051
4052If count is greater than KVM_S390_SKEYS_MAX, then it is considered to be
4053KVM_S390_SKEYS_MAX. KVM_S390_SKEYS_MAX is re-used for consistency with
4054other ioctls.
4055
4056The result is written in the buffer pointed to by the field values, and
4057the values of the input parameter are updated as follows.
4058
4059Depending on the flags, different actions are performed. The only
4060supported flag so far is KVM_S390_CMMA_PEEK.
4061
4062The default behaviour if KVM_S390_CMMA_PEEK is not set is:
4063start_gfn will indicate the first page frame whose CMMA bits were dirty.
4064It is not necessarily the same as the one passed as input, as clean pages
4065are skipped.
4066
4067count will indicate the number of bytes actually written in the buffer.
4068It can (and very often will) be smaller than the input value, since the
4069buffer is only filled until 16 bytes of clean values are found (which
4070are then not copied in the buffer). Since a CMMA migration block needs
4071the base address and the length, for a total of 16 bytes, we will send
4072back some clean data if there is some dirty data afterwards, as long as
4073the size of the clean data does not exceed the size of the header. This
4074allows to minimize the amount of data to be saved or transferred over
4075the network at the expense of more roundtrips to userspace. The next
4076invocation of the ioctl will skip over all the clean values, saving
4077potentially more than just the 16 bytes we found.
4078
4079If KVM_S390_CMMA_PEEK is set:
4080the existing storage attributes are read even when not in migration
4081mode, and no other action is performed;
4082
4083the output start_gfn will be equal to the input start_gfn,
4084
4085the output count will be equal to the input count, except if the end of
4086memory has been reached.
4087
4088In both cases:
4089the field "remaining" will indicate the total number of dirty CMMA values
4090still remaining, or 0 if KVM_S390_CMMA_PEEK is set and migration mode is
4091not enabled.
4092
4093mask is unused.
4094
4095values points to the userspace buffer where the result will be stored.
4096
4097This ioctl can fail with -ENOMEM if not enough memory can be allocated to
4098complete the task, with -ENXIO if CMMA is not enabled, with -EINVAL if
4099KVM_S390_CMMA_PEEK is not set but migration mode was not enabled, with
4100-EFAULT if the userspace address is invalid or if no page table is
4101present for the addresses (e.g. when using hugepages).
4102
41034.108 KVM_S390_SET_CMMA_BITS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004104----------------------------
Claudio Imbrenda4036e382016-08-04 17:58:47 +02004105
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004106:Capability: KVM_CAP_S390_CMMA_MIGRATION
4107:Architectures: s390
4108:Type: vm ioctl
4109:Parameters: struct kvm_s390_cmma_log (in)
4110:Returns: 0 on success, a negative value on error
Claudio Imbrenda4036e382016-08-04 17:58:47 +02004111
4112This ioctl is used to set the values of the CMMA bits on the s390
4113architecture. It is meant to be used during live migration to restore
4114the CMMA values, but there are no restrictions on its use.
4115The ioctl takes parameters via the kvm_s390_cmma_values struct.
4116Each CMMA value takes up one byte.
4117
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004118::
4119
4120 struct kvm_s390_cmma_log {
Claudio Imbrenda4036e382016-08-04 17:58:47 +02004121 __u64 start_gfn;
4122 __u32 count;
4123 __u32 flags;
4124 union {
4125 __u64 remaining;
4126 __u64 mask;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004127 };
Claudio Imbrenda4036e382016-08-04 17:58:47 +02004128 __u64 values;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004129 };
Claudio Imbrenda4036e382016-08-04 17:58:47 +02004130
4131start_gfn indicates the starting guest frame number,
4132
4133count indicates how many values are to be considered in the buffer,
4134
4135flags is not used and must be 0.
4136
4137mask indicates which PGSTE bits are to be considered.
4138
4139remaining is not used.
4140
4141values points to the buffer in userspace where to store the values.
4142
4143This ioctl can fail with -ENOMEM if not enough memory can be allocated to
4144complete the task, with -ENXIO if CMMA is not enabled, with -EINVAL if
4145the count field is too large (e.g. more than KVM_S390_CMMA_SIZE_MAX) or
4146if the flags field was not 0, with -EFAULT if the userspace address is
4147invalid, if invalid pages are written to (e.g. after the end of memory)
4148or if no page table is present for the addresses (e.g. when using
4149hugepages).
4150
Radim Krčmář7bf14c22018-02-01 15:04:17 +010041514.109 KVM_PPC_GET_CPU_CHAR
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004152--------------------------
Paul Mackerras3214d012018-01-15 16:06:47 +11004153
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004154:Capability: KVM_CAP_PPC_GET_CPU_CHAR
4155:Architectures: powerpc
4156:Type: vm ioctl
4157:Parameters: struct kvm_ppc_cpu_char (out)
4158:Returns: 0 on successful completion,
Paul Mackerras3214d012018-01-15 16:06:47 +11004159 -EFAULT if struct kvm_ppc_cpu_char cannot be written
4160
4161This ioctl gives userspace information about certain characteristics
4162of the CPU relating to speculative execution of instructions and
4163possible information leakage resulting from speculative execution (see
4164CVE-2017-5715, CVE-2017-5753 and CVE-2017-5754). The information is
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004165returned in struct kvm_ppc_cpu_char, which looks like this::
Paul Mackerras3214d012018-01-15 16:06:47 +11004166
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004167 struct kvm_ppc_cpu_char {
Paul Mackerras3214d012018-01-15 16:06:47 +11004168 __u64 character; /* characteristics of the CPU */
4169 __u64 behaviour; /* recommended software behaviour */
4170 __u64 character_mask; /* valid bits in character */
4171 __u64 behaviour_mask; /* valid bits in behaviour */
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004172 };
Paul Mackerras3214d012018-01-15 16:06:47 +11004173
4174For extensibility, the character_mask and behaviour_mask fields
4175indicate which bits of character and behaviour have been filled in by
4176the kernel. If the set of defined bits is extended in future then
4177userspace will be able to tell whether it is running on a kernel that
4178knows about the new bits.
4179
4180The character field describes attributes of the CPU which can help
4181with preventing inadvertent information disclosure - specifically,
4182whether there is an instruction to flash-invalidate the L1 data cache
4183(ori 30,30,0 or mtspr SPRN_TRIG2,rN), whether the L1 data cache is set
4184to a mode where entries can only be used by the thread that created
4185them, whether the bcctr[l] instruction prevents speculation, and
4186whether a speculation barrier instruction (ori 31,31,0) is provided.
4187
4188The behaviour field describes actions that software should take to
4189prevent inadvertent information disclosure, and thus describes which
4190vulnerabilities the hardware is subject to; specifically whether the
4191L1 data cache should be flushed when returning to user mode from the
4192kernel, and whether a speculation barrier should be placed between an
4193array bounds check and the array access.
4194
4195These fields use the same bit definitions as the new
4196H_GET_CPU_CHARACTERISTICS hypercall.
4197
Radim Krčmář7bf14c22018-02-01 15:04:17 +010041984.110 KVM_MEMORY_ENCRYPT_OP
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004199---------------------------
Brijesh Singh5acc5c02017-12-04 10:57:26 -06004200
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004201:Capability: basic
4202:Architectures: x86
4203:Type: system
4204:Parameters: an opaque platform specific structure (in/out)
4205:Returns: 0 on success; -1 on error
Brijesh Singh5acc5c02017-12-04 10:57:26 -06004206
4207If the platform supports creating encrypted VMs then this ioctl can be used
4208for issuing platform-specific memory encryption commands to manage those
4209encrypted VMs.
4210
4211Currently, this ioctl is used for issuing Secure Encrypted Virtualization
4212(SEV) commands on AMD Processors. The SEV commands are defined in
Christoph Hellwig2f5947d2019-07-24 09:24:49 +02004213Documentation/virt/kvm/amd-memory-encryption.rst.
Brijesh Singh5acc5c02017-12-04 10:57:26 -06004214
Radim Krčmář7bf14c22018-02-01 15:04:17 +010042154.111 KVM_MEMORY_ENCRYPT_REG_REGION
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004216-----------------------------------
Brijesh Singh69eaede2017-12-04 10:57:26 -06004217
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004218:Capability: basic
4219:Architectures: x86
4220:Type: system
4221:Parameters: struct kvm_enc_region (in)
4222:Returns: 0 on success; -1 on error
Brijesh Singh69eaede2017-12-04 10:57:26 -06004223
4224This ioctl can be used to register a guest memory region which may
4225contain encrypted data (e.g. guest RAM, SMRAM etc).
4226
4227It is used in the SEV-enabled guest. When encryption is enabled, a guest
4228memory region may contain encrypted data. The SEV memory encryption
4229engine uses a tweak such that two identical plaintext pages, each at
4230different locations will have differing ciphertexts. So swapping or
4231moving ciphertext of those pages will not result in plaintext being
4232swapped. So relocating (or migrating) physical backing pages for the SEV
4233guest will require some additional steps.
4234
4235Note: The current SEV key management spec does not provide commands to
4236swap or migrate (move) ciphertext pages. Hence, for now we pin the guest
4237memory region registered with the ioctl.
4238
Radim Krčmář7bf14c22018-02-01 15:04:17 +010042394.112 KVM_MEMORY_ENCRYPT_UNREG_REGION
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004240-------------------------------------
Brijesh Singh69eaede2017-12-04 10:57:26 -06004241
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004242:Capability: basic
4243:Architectures: x86
4244:Type: system
4245:Parameters: struct kvm_enc_region (in)
4246:Returns: 0 on success; -1 on error
Brijesh Singh69eaede2017-12-04 10:57:26 -06004247
4248This ioctl can be used to unregister the guest memory region registered
4249with KVM_MEMORY_ENCRYPT_REG_REGION ioctl above.
4250
Roman Kaganfaeb7832018-02-01 16:48:32 +030042514.113 KVM_HYPERV_EVENTFD
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004252------------------------
Roman Kaganfaeb7832018-02-01 16:48:32 +03004253
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004254:Capability: KVM_CAP_HYPERV_EVENTFD
4255:Architectures: x86
4256:Type: vm ioctl
4257:Parameters: struct kvm_hyperv_eventfd (in)
Roman Kaganfaeb7832018-02-01 16:48:32 +03004258
4259This ioctl (un)registers an eventfd to receive notifications from the guest on
4260the specified Hyper-V connection id through the SIGNAL_EVENT hypercall, without
4261causing a user exit. SIGNAL_EVENT hypercall with non-zero event flag number
4262(bits 24-31) still triggers a KVM_EXIT_HYPERV_HCALL user exit.
4263
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004264::
4265
4266 struct kvm_hyperv_eventfd {
Roman Kaganfaeb7832018-02-01 16:48:32 +03004267 __u32 conn_id;
4268 __s32 fd;
4269 __u32 flags;
4270 __u32 padding[3];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004271 };
Roman Kaganfaeb7832018-02-01 16:48:32 +03004272
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004273The conn_id field should fit within 24 bits::
Roman Kaganfaeb7832018-02-01 16:48:32 +03004274
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004275 #define KVM_HYPERV_CONN_ID_MASK 0x00ffffff
Roman Kaganfaeb7832018-02-01 16:48:32 +03004276
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004277The acceptable values for the flags field are::
Roman Kaganfaeb7832018-02-01 16:48:32 +03004278
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004279 #define KVM_HYPERV_EVENTFD_DEASSIGN (1 << 0)
Roman Kaganfaeb7832018-02-01 16:48:32 +03004280
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004281:Returns: 0 on success,
4282 -EINVAL if conn_id or flags is outside the allowed range,
4283 -ENOENT on deassign if the conn_id isn't registered,
4284 -EEXIST on assign if the conn_id is already registered
Roman Kaganfaeb7832018-02-01 16:48:32 +03004285
Jim Mattson8fcc4b52018-07-10 11:27:20 +020042864.114 KVM_GET_NESTED_STATE
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004287--------------------------
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004288
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004289:Capability: KVM_CAP_NESTED_STATE
4290:Architectures: x86
4291:Type: vcpu ioctl
4292:Parameters: struct kvm_nested_state (in/out)
4293:Returns: 0 on success, -1 on error
4294
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004295Errors:
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004296
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004297 ===== =============================================================
4298 E2BIG the total state size exceeds the value of 'size' specified by
4299 the user; the size required will be written into size.
4300 ===== =============================================================
4301
4302::
4303
4304 struct kvm_nested_state {
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004305 __u16 flags;
4306 __u16 format;
4307 __u32 size;
Liran Alon6ca00df2019-06-16 15:03:10 +03004308
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004309 union {
Liran Alon6ca00df2019-06-16 15:03:10 +03004310 struct kvm_vmx_nested_state_hdr vmx;
4311 struct kvm_svm_nested_state_hdr svm;
4312
4313 /* Pad the header to 128 bytes. */
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004314 __u8 pad[120];
Liran Alon6ca00df2019-06-16 15:03:10 +03004315 } hdr;
4316
4317 union {
4318 struct kvm_vmx_nested_state_data vmx[0];
4319 struct kvm_svm_nested_state_data svm[0];
4320 } data;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004321 };
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004322
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004323 #define KVM_STATE_NESTED_GUEST_MODE 0x00000001
4324 #define KVM_STATE_NESTED_RUN_PENDING 0x00000002
4325 #define KVM_STATE_NESTED_EVMCS 0x00000004
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004326
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004327 #define KVM_STATE_NESTED_FORMAT_VMX 0
4328 #define KVM_STATE_NESTED_FORMAT_SVM 1
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004329
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004330 #define KVM_STATE_NESTED_VMX_VMCS_SIZE 0x1000
Liran Alon6ca00df2019-06-16 15:03:10 +03004331
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004332 #define KVM_STATE_NESTED_VMX_SMM_GUEST_MODE 0x00000001
4333 #define KVM_STATE_NESTED_VMX_SMM_VMXON 0x00000002
Liran Alon6ca00df2019-06-16 15:03:10 +03004334
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004335 struct kvm_vmx_nested_state_hdr {
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004336 __u64 vmxon_pa;
Liran Alon6ca00df2019-06-16 15:03:10 +03004337 __u64 vmcs12_pa;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004338
4339 struct {
4340 __u16 flags;
4341 } smm;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004342 };
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004343
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004344 struct kvm_vmx_nested_state_data {
Liran Alon6ca00df2019-06-16 15:03:10 +03004345 __u8 vmcs12[KVM_STATE_NESTED_VMX_VMCS_SIZE];
4346 __u8 shadow_vmcs12[KVM_STATE_NESTED_VMX_VMCS_SIZE];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004347 };
Liran Alon6ca00df2019-06-16 15:03:10 +03004348
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004349This ioctl copies the vcpu's nested virtualization state from the kernel to
4350userspace.
4351
Liran Alon6ca00df2019-06-16 15:03:10 +03004352The maximum size of the state can be retrieved by passing KVM_CAP_NESTED_STATE
4353to the KVM_CHECK_EXTENSION ioctl().
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004354
43554.115 KVM_SET_NESTED_STATE
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004356--------------------------
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004357
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004358:Capability: KVM_CAP_NESTED_STATE
4359:Architectures: x86
4360:Type: vcpu ioctl
4361:Parameters: struct kvm_nested_state (in)
4362:Returns: 0 on success, -1 on error
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004363
Liran Alon6ca00df2019-06-16 15:03:10 +03004364This copies the vcpu's kvm_nested_state struct from userspace to the kernel.
4365For the definition of struct kvm_nested_state, see KVM_GET_NESTED_STATE.
Radim Krčmář7bf14c22018-02-01 15:04:17 +01004366
Peng Hao99434502018-10-14 07:09:56 +080043674.116 KVM_(UN)REGISTER_COALESCED_MMIO
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004368-------------------------------------
Peng Hao99434502018-10-14 07:09:56 +08004369
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004370:Capability: KVM_CAP_COALESCED_MMIO (for coalesced mmio)
4371 KVM_CAP_COALESCED_PIO (for coalesced pio)
4372:Architectures: all
4373:Type: vm ioctl
4374:Parameters: struct kvm_coalesced_mmio_zone
4375:Returns: 0 on success, < 0 on error
Peng Hao99434502018-10-14 07:09:56 +08004376
Peng Hao0804c842018-10-14 07:09:55 +08004377Coalesced I/O is a performance optimization that defers hardware
Peng Hao99434502018-10-14 07:09:56 +08004378register write emulation so that userspace exits are avoided. It is
4379typically used to reduce the overhead of emulating frequently accessed
4380hardware registers.
4381
Peng Hao0804c842018-10-14 07:09:55 +08004382When a hardware register is configured for coalesced I/O, write accesses
Peng Hao99434502018-10-14 07:09:56 +08004383do not exit to userspace and their value is recorded in a ring buffer
4384that is shared between kernel and userspace.
4385
Peng Hao0804c842018-10-14 07:09:55 +08004386Coalesced I/O is used if one or more write accesses to a hardware
Peng Hao99434502018-10-14 07:09:56 +08004387register can be deferred until a read or a write to another hardware
4388register on the same device. This last access will cause a vmexit and
4389userspace will process accesses from the ring buffer before emulating
Peng Hao0804c842018-10-14 07:09:55 +08004390it. That will avoid exiting to userspace on repeated writes.
4391
4392Coalesced pio is based on coalesced mmio. There is little difference
4393between coalesced mmio and pio except that coalesced pio records accesses
4394to I/O ports.
Peng Hao99434502018-10-14 07:09:56 +08004395
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +020043964.117 KVM_CLEAR_DIRTY_LOG (vm ioctl)
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004397------------------------------------
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02004398
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004399:Capability: KVM_CAP_MANUAL_DIRTY_LOG_PROTECT2
4400:Architectures: x86, arm, arm64, mips
4401:Type: vm ioctl
4402:Parameters: struct kvm_dirty_log (in)
4403:Returns: 0 on success, -1 on error
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02004404
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004405::
4406
4407 /* for KVM_CLEAR_DIRTY_LOG */
4408 struct kvm_clear_dirty_log {
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02004409 __u32 slot;
4410 __u32 num_pages;
4411 __u64 first_page;
4412 union {
4413 void __user *dirty_bitmap; /* one bit per page */
4414 __u64 padding;
4415 };
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004416 };
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02004417
4418The ioctl clears the dirty status of pages in a memory slot, according to
4419the bitmap that is passed in struct kvm_clear_dirty_log's dirty_bitmap
4420field. Bit 0 of the bitmap corresponds to page "first_page" in the
4421memory slot, and num_pages is the size in bits of the input bitmap.
Paolo Bonzini76d58e02019-04-17 15:28:44 +02004422first_page must be a multiple of 64; num_pages must also be a multiple of
442364 unless first_page + num_pages is the size of the memory slot. For each
4424bit that is set in the input bitmap, the corresponding page is marked "clean"
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02004425in KVM's dirty bitmap, and dirty tracking is re-enabled for that page
4426(for example via write-protection, or by clearing the dirty bit in
4427a page table entry).
4428
4429If KVM_CAP_MULTI_ADDRESS_SPACE is available, bits 16-31 specifies
4430the address space for which you want to return the dirty bitmap.
4431They must be less than the value that KVM_CHECK_EXTENSION returns for
4432the KVM_CAP_MULTI_ADDRESS_SPACE capability.
4433
Peter Xud7547c52019-05-08 17:15:47 +08004434This ioctl is mostly useful when KVM_CAP_MANUAL_DIRTY_LOG_PROTECT2
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02004435is enabled; for more information, see the description of the capability.
4436However, it can always be used as long as KVM_CHECK_EXTENSION confirms
Peter Xud7547c52019-05-08 17:15:47 +08004437that KVM_CAP_MANUAL_DIRTY_LOG_PROTECT2 is present.
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02004438
Vitaly Kuznetsov2bc39972018-12-10 18:21:56 +010044394.118 KVM_GET_SUPPORTED_HV_CPUID
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004440--------------------------------
Vitaly Kuznetsov2bc39972018-12-10 18:21:56 +01004441
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004442:Capability: KVM_CAP_HYPERV_CPUID
4443:Architectures: x86
4444:Type: vcpu ioctl
4445:Parameters: struct kvm_cpuid2 (in/out)
4446:Returns: 0 on success, -1 on error
Vitaly Kuznetsov2bc39972018-12-10 18:21:56 +01004447
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004448::
4449
4450 struct kvm_cpuid2 {
Vitaly Kuznetsov2bc39972018-12-10 18:21:56 +01004451 __u32 nent;
4452 __u32 padding;
4453 struct kvm_cpuid_entry2 entries[0];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004454 };
Vitaly Kuznetsov2bc39972018-12-10 18:21:56 +01004455
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004456 struct kvm_cpuid_entry2 {
Vitaly Kuznetsov2bc39972018-12-10 18:21:56 +01004457 __u32 function;
4458 __u32 index;
4459 __u32 flags;
4460 __u32 eax;
4461 __u32 ebx;
4462 __u32 ecx;
4463 __u32 edx;
4464 __u32 padding[3];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004465 };
Vitaly Kuznetsov2bc39972018-12-10 18:21:56 +01004466
4467This ioctl returns x86 cpuid features leaves related to Hyper-V emulation in
4468KVM. Userspace can use the information returned by this ioctl to construct
4469cpuid information presented to guests consuming Hyper-V enlightenments (e.g.
4470Windows or Hyper-V guests).
4471
4472CPUID feature leaves returned by this ioctl are defined by Hyper-V Top Level
4473Functional Specification (TLFS). These leaves can't be obtained with
4474KVM_GET_SUPPORTED_CPUID ioctl because some of them intersect with KVM feature
4475leaves (0x40000000, 0x40000001).
4476
4477Currently, the following list of CPUID leaves are returned:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004478 - HYPERV_CPUID_VENDOR_AND_MAX_FUNCTIONS
4479 - HYPERV_CPUID_INTERFACE
4480 - HYPERV_CPUID_VERSION
4481 - HYPERV_CPUID_FEATURES
4482 - HYPERV_CPUID_ENLIGHTMENT_INFO
4483 - HYPERV_CPUID_IMPLEMENT_LIMITS
4484 - HYPERV_CPUID_NESTED_FEATURES
Vitaly Kuznetsov2bc39972018-12-10 18:21:56 +01004485
4486HYPERV_CPUID_NESTED_FEATURES leaf is only exposed when Enlightened VMCS was
4487enabled on the corresponding vCPU (KVM_CAP_HYPERV_ENLIGHTENED_VMCS).
4488
4489Userspace invokes KVM_GET_SUPPORTED_CPUID by passing a kvm_cpuid2 structure
4490with the 'nent' field indicating the number of entries in the variable-size
4491array 'entries'. If the number of entries is too low to describe all Hyper-V
4492feature leaves, an error (E2BIG) is returned. If the number is more or equal
4493to the number of Hyper-V feature leaves, the 'nent' field is adjusted to the
4494number of valid entries in the 'entries' array, which is then filled.
4495
4496'index' and 'flags' fields in 'struct kvm_cpuid_entry2' are currently reserved,
4497userspace should not expect to get any particular value there.
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02004498
Dave Martin50036ad2018-09-28 14:39:27 +010044994.119 KVM_ARM_VCPU_FINALIZE
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004500---------------------------
Dave Martin50036ad2018-09-28 14:39:27 +01004501
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004502:Architectures: arm, arm64
4503:Type: vcpu ioctl
4504:Parameters: int feature (in)
4505:Returns: 0 on success, -1 on error
4506
Dave Martin50036ad2018-09-28 14:39:27 +01004507Errors:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004508
4509 ====== ==============================================================
4510 EPERM feature not enabled, needs configuration, or already finalized
4511 EINVAL feature unknown or not present
4512 ====== ==============================================================
Dave Martin50036ad2018-09-28 14:39:27 +01004513
4514Recognised values for feature:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004515
4516 ===== ===========================================
Dave Martin9df2d662019-04-12 13:28:05 +01004517 arm64 KVM_ARM_VCPU_SVE (requires KVM_CAP_ARM_SVE)
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004518 ===== ===========================================
Dave Martin50036ad2018-09-28 14:39:27 +01004519
4520Finalizes the configuration of the specified vcpu feature.
4521
4522The vcpu must already have been initialised, enabling the affected feature, by
4523means of a successful KVM_ARM_VCPU_INIT call with the appropriate flag set in
4524features[].
4525
4526For affected vcpu features, this is a mandatory step that must be performed
4527before the vcpu is fully usable.
4528
4529Between KVM_ARM_VCPU_INIT and KVM_ARM_VCPU_FINALIZE, the feature may be
4530configured by use of ioctls such as KVM_SET_ONE_REG. The exact configuration
4531that should be performaned and how to do it are feature-dependent.
4532
4533Other calls that depend on a particular feature being finalized, such as
4534KVM_RUN, KVM_GET_REG_LIST, KVM_GET_ONE_REG and KVM_SET_ONE_REG, will fail with
4535-EPERM unless the feature has already been finalized by means of a
4536KVM_ARM_VCPU_FINALIZE call.
4537
4538See KVM_ARM_VCPU_INIT for details of vcpu features that require finalization
4539using this ioctl.
4540
Eric Hankland66bb8a02019-07-10 18:25:15 -070045414.120 KVM_SET_PMU_EVENT_FILTER
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004542------------------------------
Eric Hankland66bb8a02019-07-10 18:25:15 -07004543
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004544:Capability: KVM_CAP_PMU_EVENT_FILTER
4545:Architectures: x86
4546:Type: vm ioctl
4547:Parameters: struct kvm_pmu_event_filter (in)
4548:Returns: 0 on success, -1 on error
Eric Hankland66bb8a02019-07-10 18:25:15 -07004549
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004550::
4551
4552 struct kvm_pmu_event_filter {
Eric Hankland30cd8602019-07-18 11:38:18 -07004553 __u32 action;
4554 __u32 nevents;
4555 __u32 fixed_counter_bitmap;
4556 __u32 flags;
4557 __u32 pad[4];
4558 __u64 events[0];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004559 };
Eric Hankland66bb8a02019-07-10 18:25:15 -07004560
4561This ioctl restricts the set of PMU events that the guest can program.
4562The argument holds a list of events which will be allowed or denied.
4563The eventsel+umask of each event the guest attempts to program is compared
4564against the events field to determine whether the guest should have access.
Eric Hankland30cd8602019-07-18 11:38:18 -07004565The events field only controls general purpose counters; fixed purpose
4566counters are controlled by the fixed_counter_bitmap.
4567
4568No flags are defined yet, the field must be zero.
Eric Hankland66bb8a02019-07-10 18:25:15 -07004569
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004570Valid values for 'action'::
4571
4572 #define KVM_PMU_EVENT_ALLOW 0
4573 #define KVM_PMU_EVENT_DENY 1
Eric Hankland66bb8a02019-07-10 18:25:15 -07004574
Bharata B Rao22945682019-11-25 08:36:30 +053045754.121 KVM_PPC_SVM_OFF
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004576---------------------
Bharata B Rao22945682019-11-25 08:36:30 +05304577
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004578:Capability: basic
4579:Architectures: powerpc
4580:Type: vm ioctl
4581:Parameters: none
4582:Returns: 0 on successful completion,
4583
Bharata B Rao22945682019-11-25 08:36:30 +05304584Errors:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004585
4586 ====== ================================================================
4587 EINVAL if ultravisor failed to terminate the secure guest
4588 ENOMEM if hypervisor failed to allocate new radix page tables for guest
4589 ====== ================================================================
Bharata B Rao22945682019-11-25 08:36:30 +05304590
4591This ioctl is used to turn off the secure mode of the guest or transition
4592the guest from secure mode to normal mode. This is invoked when the guest
4593is reset. This has no effect if called for a normal guest.
4594
4595This ioctl issues an ultravisor call to terminate the secure guest,
4596unpins the VPA pages and releases all the device pages that are used to
4597track the secure pages by hypervisor.
Eric Hankland66bb8a02019-07-10 18:25:15 -07004598
Janosch Frank7de3f142020-01-31 05:02:02 -050045994.122 KVM_S390_NORMAL_RESET
Christian Borntraegera93236f2020-02-24 11:15:59 +01004600---------------------------
Janosch Frank7de3f142020-01-31 05:02:02 -05004601
Christian Borntraegera93236f2020-02-24 11:15:59 +01004602:Capability: KVM_CAP_S390_VCPU_RESETS
4603:Architectures: s390
4604:Type: vcpu ioctl
4605:Parameters: none
4606:Returns: 0
Janosch Frank7de3f142020-01-31 05:02:02 -05004607
4608This ioctl resets VCPU registers and control structures according to
4609the cpu reset definition in the POP (Principles Of Operation).
4610
46114.123 KVM_S390_INITIAL_RESET
Christian Borntraegera93236f2020-02-24 11:15:59 +01004612----------------------------
Janosch Frank7de3f142020-01-31 05:02:02 -05004613
Christian Borntraegera93236f2020-02-24 11:15:59 +01004614:Capability: none
4615:Architectures: s390
4616:Type: vcpu ioctl
4617:Parameters: none
4618:Returns: 0
Janosch Frank7de3f142020-01-31 05:02:02 -05004619
4620This ioctl resets VCPU registers and control structures according to
4621the initial cpu reset definition in the POP. However, the cpu is not
4622put into ESA mode. This reset is a superset of the normal reset.
4623
46244.124 KVM_S390_CLEAR_RESET
Christian Borntraegera93236f2020-02-24 11:15:59 +01004625--------------------------
Janosch Frank7de3f142020-01-31 05:02:02 -05004626
Christian Borntraegera93236f2020-02-24 11:15:59 +01004627:Capability: KVM_CAP_S390_VCPU_RESETS
4628:Architectures: s390
4629:Type: vcpu ioctl
4630:Parameters: none
4631:Returns: 0
Janosch Frank7de3f142020-01-31 05:02:02 -05004632
4633This ioctl resets VCPU registers and control structures according to
4634the clear cpu reset definition in the POP. However, the cpu is not put
4635into ESA mode. This reset is a superset of the initial reset.
4636
4637
Avi Kivity9c1b96e2009-06-09 12:37:58 +030046385. The kvm_run structure
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004639========================
Avi Kivity9c1b96e2009-06-09 12:37:58 +03004640
4641Application code obtains a pointer to the kvm_run structure by
4642mmap()ing a vcpu fd. From that point, application code can control
4643execution by changing fields in kvm_run prior to calling the KVM_RUN
4644ioctl, and obtain information about the reason KVM_RUN returned by
4645looking up structure members.
4646
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004647::
4648
4649 struct kvm_run {
Avi Kivity9c1b96e2009-06-09 12:37:58 +03004650 /* in */
4651 __u8 request_interrupt_window;
4652
4653Request that KVM_RUN return when it becomes possible to inject external
4654interrupts into the guest. Useful in conjunction with KVM_INTERRUPT.
4655
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004656::
4657
Paolo Bonzini460df4c2017-02-08 11:50:15 +01004658 __u8 immediate_exit;
4659
4660This field is polled once when KVM_RUN starts; if non-zero, KVM_RUN
4661exits immediately, returning -EINTR. In the common scenario where a
4662signal is used to "kick" a VCPU out of KVM_RUN, this field can be used
4663to avoid usage of KVM_SET_SIGNAL_MASK, which has worse scalability.
4664Rather than blocking the signal outside KVM_RUN, userspace can set up
4665a signal handler that sets run->immediate_exit to a non-zero value.
4666
4667This field is ignored if KVM_CAP_IMMEDIATE_EXIT is not available.
4668
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004669::
4670
Paolo Bonzini460df4c2017-02-08 11:50:15 +01004671 __u8 padding1[6];
Avi Kivity9c1b96e2009-06-09 12:37:58 +03004672
4673 /* out */
4674 __u32 exit_reason;
4675
4676When KVM_RUN has returned successfully (return value 0), this informs
4677application code why KVM_RUN has returned. Allowable values for this
4678field are detailed below.
4679
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004680::
4681
Avi Kivity9c1b96e2009-06-09 12:37:58 +03004682 __u8 ready_for_interrupt_injection;
4683
4684If request_interrupt_window has been specified, this field indicates
4685an interrupt can be injected now with KVM_INTERRUPT.
4686
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004687::
4688
Avi Kivity9c1b96e2009-06-09 12:37:58 +03004689 __u8 if_flag;
4690
4691The value of the current interrupt flag. Only valid if in-kernel
4692local APIC is not used.
4693
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004694::
4695
Paolo Bonzinif0778252015-04-01 15:06:40 +02004696 __u16 flags;
4697
4698More architecture-specific flags detailing state of the VCPU that may
4699affect the device's behavior. The only currently defined flag is
4700KVM_RUN_X86_SMM, which is valid on x86 machines and is set if the
4701VCPU is in system management mode.
Avi Kivity9c1b96e2009-06-09 12:37:58 +03004702
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004703::
4704
Avi Kivity9c1b96e2009-06-09 12:37:58 +03004705 /* in (pre_kvm_run), out (post_kvm_run) */
4706 __u64 cr8;
4707
4708The value of the cr8 register. Only valid if in-kernel local APIC is
4709not used. Both input and output.
4710
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004711::
4712
Avi Kivity9c1b96e2009-06-09 12:37:58 +03004713 __u64 apic_base;
4714
4715The value of the APIC BASE msr. Only valid if in-kernel local
4716APIC is not used. Both input and output.
4717
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004718::
4719
Avi Kivity9c1b96e2009-06-09 12:37:58 +03004720 union {
4721 /* KVM_EXIT_UNKNOWN */
4722 struct {
4723 __u64 hardware_exit_reason;
4724 } hw;
4725
4726If exit_reason is KVM_EXIT_UNKNOWN, the vcpu has exited due to unknown
4727reasons. Further architecture-specific information is available in
4728hardware_exit_reason.
4729
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004730::
4731
Avi Kivity9c1b96e2009-06-09 12:37:58 +03004732 /* KVM_EXIT_FAIL_ENTRY */
4733 struct {
4734 __u64 hardware_entry_failure_reason;
4735 } fail_entry;
4736
4737If exit_reason is KVM_EXIT_FAIL_ENTRY, the vcpu could not be run due
4738to unknown reasons. Further architecture-specific information is
4739available in hardware_entry_failure_reason.
4740
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004741::
4742
Avi Kivity9c1b96e2009-06-09 12:37:58 +03004743 /* KVM_EXIT_EXCEPTION */
4744 struct {
4745 __u32 exception;
4746 __u32 error_code;
4747 } ex;
4748
4749Unused.
4750
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004751::
4752
Avi Kivity9c1b96e2009-06-09 12:37:58 +03004753 /* KVM_EXIT_IO */
4754 struct {
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004755 #define KVM_EXIT_IO_IN 0
4756 #define KVM_EXIT_IO_OUT 1
Avi Kivity9c1b96e2009-06-09 12:37:58 +03004757 __u8 direction;
4758 __u8 size; /* bytes */
4759 __u16 port;
4760 __u32 count;
4761 __u64 data_offset; /* relative to kvm_run start */
4762 } io;
4763
Wu Fengguang2044892d2009-12-24 09:04:16 +08004764If exit_reason is KVM_EXIT_IO, then the vcpu has
Avi Kivity9c1b96e2009-06-09 12:37:58 +03004765executed a port I/O instruction which could not be satisfied by kvm.
4766data_offset describes where the data is located (KVM_EXIT_IO_OUT) or
4767where kvm expects application code to place the data for the next
Wu Fengguang2044892d2009-12-24 09:04:16 +08004768KVM_RUN invocation (KVM_EXIT_IO_IN). Data format is a packed array.
Avi Kivity9c1b96e2009-06-09 12:37:58 +03004769
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004770::
4771
Alex Bennée8ab30c12015-07-07 17:29:53 +01004772 /* KVM_EXIT_DEBUG */
Avi Kivity9c1b96e2009-06-09 12:37:58 +03004773 struct {
4774 struct kvm_debug_exit_arch arch;
4775 } debug;
4776
Alex Bennée8ab30c12015-07-07 17:29:53 +01004777If the exit_reason is KVM_EXIT_DEBUG, then a vcpu is processing a debug event
4778for which architecture specific information is returned.
Avi Kivity9c1b96e2009-06-09 12:37:58 +03004779
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004780::
4781
Avi Kivity9c1b96e2009-06-09 12:37:58 +03004782 /* KVM_EXIT_MMIO */
4783 struct {
4784 __u64 phys_addr;
4785 __u8 data[8];
4786 __u32 len;
4787 __u8 is_write;
4788 } mmio;
4789
Wu Fengguang2044892d2009-12-24 09:04:16 +08004790If exit_reason is KVM_EXIT_MMIO, then the vcpu has
Avi Kivity9c1b96e2009-06-09 12:37:58 +03004791executed a memory-mapped I/O instruction which could not be satisfied
4792by kvm. The 'data' member contains the written data if 'is_write' is
4793true, and should be filled by application code otherwise.
4794
Christoffer Dall6acdb162014-01-28 08:28:42 -08004795The 'data' member contains, in its first 'len' bytes, the value as it would
4796appear if the VCPU performed a load or store of the appropriate width directly
4797to the byte array.
4798
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004799.. note::
4800
4801 For KVM_EXIT_IO, KVM_EXIT_MMIO, KVM_EXIT_OSI, KVM_EXIT_PAPR and
Alexander Grafce91ddc2014-07-28 19:29:13 +02004802 KVM_EXIT_EPR the corresponding
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004803
Alexander Grafad0a0482010-03-24 21:48:30 +01004804operations are complete (and guest state is consistent) only after userspace
4805has re-entered the kernel with KVM_RUN. The kernel side will first finish
Marcelo Tosatti67961342010-02-13 16:10:26 -02004806incomplete operations and then check for pending signals. Userspace
4807can re-enter the guest with an unmasked signal pending to complete
4808pending operations.
4809
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004810::
4811
Avi Kivity9c1b96e2009-06-09 12:37:58 +03004812 /* KVM_EXIT_HYPERCALL */
4813 struct {
4814 __u64 nr;
4815 __u64 args[6];
4816 __u64 ret;
4817 __u32 longmode;
4818 __u32 pad;
4819 } hypercall;
4820
Avi Kivity647dc492010-04-01 14:39:21 +03004821Unused. This was once used for 'hypercall to userspace'. To implement
4822such functionality, use KVM_EXIT_IO (x86) or KVM_EXIT_MMIO (all except s390).
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004823
4824.. note:: KVM_EXIT_IO is significantly faster than KVM_EXIT_MMIO.
4825
4826::
Avi Kivity9c1b96e2009-06-09 12:37:58 +03004827
4828 /* KVM_EXIT_TPR_ACCESS */
4829 struct {
4830 __u64 rip;
4831 __u32 is_write;
4832 __u32 pad;
4833 } tpr_access;
4834
4835To be documented (KVM_TPR_ACCESS_REPORTING).
4836
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004837::
4838
Avi Kivity9c1b96e2009-06-09 12:37:58 +03004839 /* KVM_EXIT_S390_SIEIC */
4840 struct {
4841 __u8 icptcode;
4842 __u64 mask; /* psw upper half */
4843 __u64 addr; /* psw lower half */
4844 __u16 ipa;
4845 __u32 ipb;
4846 } s390_sieic;
4847
4848s390 specific.
4849
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004850::
4851
Avi Kivity9c1b96e2009-06-09 12:37:58 +03004852 /* KVM_EXIT_S390_RESET */
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004853 #define KVM_S390_RESET_POR 1
4854 #define KVM_S390_RESET_CLEAR 2
4855 #define KVM_S390_RESET_SUBSYSTEM 4
4856 #define KVM_S390_RESET_CPU_INIT 8
4857 #define KVM_S390_RESET_IPL 16
Avi Kivity9c1b96e2009-06-09 12:37:58 +03004858 __u64 s390_reset_flags;
4859
4860s390 specific.
4861
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004862::
4863
Carsten Ottee168bf82012-01-04 10:25:22 +01004864 /* KVM_EXIT_S390_UCONTROL */
4865 struct {
4866 __u64 trans_exc_code;
4867 __u32 pgm_code;
4868 } s390_ucontrol;
4869
4870s390 specific. A page fault has occurred for a user controlled virtual
4871machine (KVM_VM_S390_UNCONTROL) on it's host page table that cannot be
4872resolved by the kernel.
4873The program code and the translation exception code that were placed
4874in the cpu's lowcore are presented here as defined by the z Architecture
4875Principles of Operation Book in the Chapter for Dynamic Address Translation
4876(DAT)
4877
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004878::
4879
Avi Kivity9c1b96e2009-06-09 12:37:58 +03004880 /* KVM_EXIT_DCR */
4881 struct {
4882 __u32 dcrn;
4883 __u32 data;
4884 __u8 is_write;
4885 } dcr;
4886
Alexander Grafce91ddc2014-07-28 19:29:13 +02004887Deprecated - was used for 440 KVM.
Avi Kivity9c1b96e2009-06-09 12:37:58 +03004888
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004889::
4890
Alexander Grafad0a0482010-03-24 21:48:30 +01004891 /* KVM_EXIT_OSI */
4892 struct {
4893 __u64 gprs[32];
4894 } osi;
4895
4896MOL uses a special hypercall interface it calls 'OSI'. To enable it, we catch
4897hypercalls and exit with this exit struct that contains all the guest gprs.
4898
4899If exit_reason is KVM_EXIT_OSI, then the vcpu has triggered such a hypercall.
4900Userspace can now handle the hypercall and when it's done modify the gprs as
4901necessary. Upon guest entry all guest GPRs will then be replaced by the values
4902in this struct.
4903
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004904::
4905
Paul Mackerrasde56a942011-06-29 00:21:34 +00004906 /* KVM_EXIT_PAPR_HCALL */
4907 struct {
4908 __u64 nr;
4909 __u64 ret;
4910 __u64 args[9];
4911 } papr_hcall;
4912
4913This is used on 64-bit PowerPC when emulating a pSeries partition,
4914e.g. with the 'pseries' machine type in qemu. It occurs when the
4915guest does a hypercall using the 'sc 1' instruction. The 'nr' field
4916contains the hypercall number (from the guest R3), and 'args' contains
4917the arguments (from the guest R4 - R12). Userspace should put the
4918return code in 'ret' and any extra returned values in args[].
4919The possible hypercalls are defined in the Power Architecture Platform
4920Requirements (PAPR) document available from www.power.org (free
4921developer registration required to access it).
4922
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004923::
4924
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +01004925 /* KVM_EXIT_S390_TSCH */
4926 struct {
4927 __u16 subchannel_id;
4928 __u16 subchannel_nr;
4929 __u32 io_int_parm;
4930 __u32 io_int_word;
4931 __u32 ipb;
4932 __u8 dequeued;
4933 } s390_tsch;
4934
4935s390 specific. This exit occurs when KVM_CAP_S390_CSS_SUPPORT has been enabled
4936and TEST SUBCHANNEL was intercepted. If dequeued is set, a pending I/O
4937interrupt for the target subchannel has been dequeued and subchannel_id,
4938subchannel_nr, io_int_parm and io_int_word contain the parameters for that
4939interrupt. ipb is needed for instruction parameter decoding.
4940
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004941::
4942
Alexander Graf1c810632013-01-04 18:12:48 +01004943 /* KVM_EXIT_EPR */
4944 struct {
4945 __u32 epr;
4946 } epr;
4947
4948On FSL BookE PowerPC chips, the interrupt controller has a fast patch
4949interrupt acknowledge path to the core. When the core successfully
4950delivers an interrupt, it automatically populates the EPR register with
4951the interrupt vector number and acknowledges the interrupt inside
4952the interrupt controller.
4953
4954In case the interrupt controller lives in user space, we need to do
4955the interrupt acknowledge cycle through it to fetch the next to be
4956delivered interrupt vector using this exit.
4957
4958It gets triggered whenever both KVM_CAP_PPC_EPR are enabled and an
4959external interrupt has just been delivered into the guest. User space
4960should put the acknowledged interrupt vector into the 'epr' field.
4961
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004962::
4963
Anup Patel8ad6b632014-04-29 11:24:19 +05304964 /* KVM_EXIT_SYSTEM_EVENT */
4965 struct {
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004966 #define KVM_SYSTEM_EVENT_SHUTDOWN 1
4967 #define KVM_SYSTEM_EVENT_RESET 2
4968 #define KVM_SYSTEM_EVENT_CRASH 3
Anup Patel8ad6b632014-04-29 11:24:19 +05304969 __u32 type;
4970 __u64 flags;
4971 } system_event;
4972
4973If exit_reason is KVM_EXIT_SYSTEM_EVENT then the vcpu has triggered
4974a system-level event using some architecture specific mechanism (hypercall
4975or some special instruction). In case of ARM/ARM64, this is triggered using
4976HVC instruction based PSCI call from the vcpu. The 'type' field describes
4977the system-level event type. The 'flags' field describes architecture
4978specific flags for the system-level event.
4979
Christoffer Dallcf5d31882014-10-16 17:00:18 +02004980Valid values for 'type' are:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004981
4982 - KVM_SYSTEM_EVENT_SHUTDOWN -- the guest has requested a shutdown of the
Christoffer Dallcf5d31882014-10-16 17:00:18 +02004983 VM. Userspace is not obliged to honour this, and if it does honour
4984 this does not need to destroy the VM synchronously (ie it may call
4985 KVM_RUN again before shutdown finally occurs).
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004986 - KVM_SYSTEM_EVENT_RESET -- the guest has requested a reset of the VM.
Christoffer Dallcf5d31882014-10-16 17:00:18 +02004987 As with SHUTDOWN, userspace can choose to ignore the request, or
4988 to schedule the reset to occur in the future and may call KVM_RUN again.
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004989 - KVM_SYSTEM_EVENT_CRASH -- the guest crash occurred and the guest
Andrey Smetanin2ce79182015-07-03 15:01:41 +03004990 has requested a crash condition maintenance. Userspace can choose
4991 to ignore the request, or to gather VM memory core dump and/or
4992 reset/shutdown of the VM.
Christoffer Dallcf5d31882014-10-16 17:00:18 +02004993
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004994::
4995
Steve Rutherford7543a632015-07-29 23:21:41 -07004996 /* KVM_EXIT_IOAPIC_EOI */
4997 struct {
4998 __u8 vector;
4999 } eoi;
5000
5001Indicates that the VCPU's in-kernel local APIC received an EOI for a
5002level-triggered IOAPIC interrupt. This exit only triggers when the
5003IOAPIC is implemented in userspace (i.e. KVM_CAP_SPLIT_IRQCHIP is enabled);
5004the userspace IOAPIC should process the EOI and retrigger the interrupt if
5005it is still asserted. Vector is the LAPIC interrupt vector for which the
5006EOI was received.
5007
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005008::
5009
Andrey Smetanindb3975712015-11-10 15:36:35 +03005010 struct kvm_hyperv_exit {
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005011 #define KVM_EXIT_HYPERV_SYNIC 1
5012 #define KVM_EXIT_HYPERV_HCALL 2
Andrey Smetanindb3975712015-11-10 15:36:35 +03005013 __u32 type;
5014 union {
5015 struct {
5016 __u32 msr;
5017 __u64 control;
5018 __u64 evt_page;
5019 __u64 msg_page;
5020 } synic;
Andrey Smetanin83326e42016-02-11 16:45:01 +03005021 struct {
5022 __u64 input;
5023 __u64 result;
5024 __u64 params[2];
5025 } hcall;
Andrey Smetanindb3975712015-11-10 15:36:35 +03005026 } u;
5027 };
5028 /* KVM_EXIT_HYPERV */
5029 struct kvm_hyperv_exit hyperv;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005030
Andrey Smetanindb3975712015-11-10 15:36:35 +03005031Indicates that the VCPU exits into userspace to process some tasks
5032related to Hyper-V emulation.
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005033
Andrey Smetanindb3975712015-11-10 15:36:35 +03005034Valid values for 'type' are:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005035
5036 - KVM_EXIT_HYPERV_SYNIC -- synchronously notify user-space about
5037
Andrey Smetanindb3975712015-11-10 15:36:35 +03005038Hyper-V SynIC state change. Notification is used to remap SynIC
5039event/message pages and to enable/disable SynIC messages/events processing
5040in userspace.
5041
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005042::
5043
Christoffer Dallc7262002019-10-11 13:07:05 +02005044 /* KVM_EXIT_ARM_NISV */
5045 struct {
5046 __u64 esr_iss;
5047 __u64 fault_ipa;
5048 } arm_nisv;
5049
5050Used on arm and arm64 systems. If a guest accesses memory not in a memslot,
5051KVM will typically return to userspace and ask it to do MMIO emulation on its
5052behalf. However, for certain classes of instructions, no instruction decode
5053(direction, length of memory access) is provided, and fetching and decoding
5054the instruction from the VM is overly complicated to live in the kernel.
5055
5056Historically, when this situation occurred, KVM would print a warning and kill
5057the VM. KVM assumed that if the guest accessed non-memslot memory, it was
5058trying to do I/O, which just couldn't be emulated, and the warning message was
5059phrased accordingly. However, what happened more often was that a guest bug
5060caused access outside the guest memory areas which should lead to a more
5061meaningful warning message and an external abort in the guest, if the access
5062did not fall within an I/O window.
5063
5064Userspace implementations can query for KVM_CAP_ARM_NISV_TO_USER, and enable
5065this capability at VM creation. Once this is done, these types of errors will
5066instead return to userspace with KVM_EXIT_ARM_NISV, with the valid bits from
5067the HSR (arm) and ESR_EL2 (arm64) in the esr_iss field, and the faulting IPA
5068in the fault_ipa field. Userspace can either fix up the access if it's
5069actually an I/O access by decoding the instruction from guest memory (if it's
5070very brave) and continue executing the guest, or it can decide to suspend,
5071dump, or restart the guest.
5072
5073Note that KVM does not skip the faulting instruction as it does for
5074KVM_EXIT_MMIO, but userspace has to emulate any change to the processing state
5075if it decides to decode and emulate the instruction.
5076
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005077::
5078
Avi Kivity9c1b96e2009-06-09 12:37:58 +03005079 /* Fix the size of the union. */
5080 char padding[256];
5081 };
Christian Borntraegerb9e5dc82012-01-11 11:20:30 +01005082
5083 /*
5084 * shared registers between kvm and userspace.
5085 * kvm_valid_regs specifies the register classes set by the host
5086 * kvm_dirty_regs specified the register classes dirtied by userspace
5087 * struct kvm_sync_regs is architecture specific, as well as the
5088 * bits for kvm_valid_regs and kvm_dirty_regs
5089 */
5090 __u64 kvm_valid_regs;
5091 __u64 kvm_dirty_regs;
5092 union {
5093 struct kvm_sync_regs regs;
Ken Hofsass7b7e3952018-01-31 16:03:35 -08005094 char padding[SYNC_REGS_SIZE_BYTES];
Christian Borntraegerb9e5dc82012-01-11 11:20:30 +01005095 } s;
5096
5097If KVM_CAP_SYNC_REGS is defined, these fields allow userspace to access
5098certain guest registers without having to call SET/GET_*REGS. Thus we can
5099avoid some system call overhead if userspace has to handle the exit.
5100Userspace can query the validity of the structure by checking
5101kvm_valid_regs for specific bits. These bits are architecture specific
5102and usually define the validity of a groups of registers. (e.g. one bit
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005103for general purpose registers)
Christian Borntraegerb9e5dc82012-01-11 11:20:30 +01005104
David Hildenbrandd8482c02014-07-29 08:19:26 +02005105Please note that the kernel is allowed to use the kvm_run structure as the
5106primary storage for certain register types. Therefore, the kernel may use the
5107values in kvm_run even if the corresponding bit in kvm_dirty_regs is not set.
5108
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005109::
5110
5111 };
Alexander Graf821246a2011-08-31 10:58:55 +02005112
Jan Kiszka414fa982012-04-24 16:40:15 +02005113
Borislav Petkov9c15bb12013-09-22 16:44:50 +02005114
Paul Mackerras699a0ea2014-06-02 11:02:59 +100051156. Capabilities that can be enabled on vCPUs
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005116============================================
Alexander Graf821246a2011-08-31 10:58:55 +02005117
Cornelia Huck0907c852014-06-27 09:29:26 +02005118There are certain capabilities that change the behavior of the virtual CPU or
5119the virtual machine when enabled. To enable them, please see section 4.37.
5120Below you can find a list of capabilities and what their effect on the vCPU or
5121the virtual machine is when enabling them.
Alexander Graf821246a2011-08-31 10:58:55 +02005122
5123The following information is provided along with the description:
5124
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005125 Architectures:
5126 which instruction set architectures provide this ioctl.
Alexander Graf821246a2011-08-31 10:58:55 +02005127 x86 includes both i386 and x86_64.
5128
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005129 Target:
5130 whether this is a per-vcpu or per-vm capability.
Cornelia Huck0907c852014-06-27 09:29:26 +02005131
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005132 Parameters:
5133 what parameters are accepted by the capability.
Alexander Graf821246a2011-08-31 10:58:55 +02005134
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005135 Returns:
5136 the return value. General error numbers (EBADF, ENOMEM, EINVAL)
Alexander Graf821246a2011-08-31 10:58:55 +02005137 are not detailed, but errors with specific meanings are.
5138
Jan Kiszka414fa982012-04-24 16:40:15 +02005139
Alexander Graf821246a2011-08-31 10:58:55 +020051406.1 KVM_CAP_PPC_OSI
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005141-------------------
Alexander Graf821246a2011-08-31 10:58:55 +02005142
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005143:Architectures: ppc
5144:Target: vcpu
5145:Parameters: none
5146:Returns: 0 on success; -1 on error
Alexander Graf821246a2011-08-31 10:58:55 +02005147
5148This capability enables interception of OSI hypercalls that otherwise would
5149be treated as normal system calls to be injected into the guest. OSI hypercalls
5150were invented by Mac-on-Linux to have a standardized communication mechanism
5151between the guest and the host.
5152
5153When this capability is enabled, KVM_EXIT_OSI can occur.
5154
Jan Kiszka414fa982012-04-24 16:40:15 +02005155
Alexander Graf821246a2011-08-31 10:58:55 +020051566.2 KVM_CAP_PPC_PAPR
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005157--------------------
Alexander Graf821246a2011-08-31 10:58:55 +02005158
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005159:Architectures: ppc
5160:Target: vcpu
5161:Parameters: none
5162:Returns: 0 on success; -1 on error
Alexander Graf821246a2011-08-31 10:58:55 +02005163
5164This capability enables interception of PAPR hypercalls. PAPR hypercalls are
5165done using the hypercall instruction "sc 1".
5166
5167It also sets the guest privilege level to "supervisor" mode. Usually the guest
5168runs in "hypervisor" privilege mode with a few missing features.
5169
5170In addition to the above, it changes the semantics of SDR1. In this mode, the
5171HTAB address part of SDR1 contains an HVA instead of a GPA, as PAPR keeps the
5172HTAB invisible to the guest.
5173
5174When this capability is enabled, KVM_EXIT_PAPR_HCALL can occur.
Scott Wooddc83b8b2011-08-18 15:25:21 -05005175
Jan Kiszka414fa982012-04-24 16:40:15 +02005176
Scott Wooddc83b8b2011-08-18 15:25:21 -050051776.3 KVM_CAP_SW_TLB
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005178------------------
Scott Wooddc83b8b2011-08-18 15:25:21 -05005179
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005180:Architectures: ppc
5181:Target: vcpu
5182:Parameters: args[0] is the address of a struct kvm_config_tlb
5183:Returns: 0 on success; -1 on error
Scott Wooddc83b8b2011-08-18 15:25:21 -05005184
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005185::
5186
5187 struct kvm_config_tlb {
Scott Wooddc83b8b2011-08-18 15:25:21 -05005188 __u64 params;
5189 __u64 array;
5190 __u32 mmu_type;
5191 __u32 array_len;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005192 };
Scott Wooddc83b8b2011-08-18 15:25:21 -05005193
5194Configures the virtual CPU's TLB array, establishing a shared memory area
5195between userspace and KVM. The "params" and "array" fields are userspace
5196addresses of mmu-type-specific data structures. The "array_len" field is an
5197safety mechanism, and should be set to the size in bytes of the memory that
5198userspace has reserved for the array. It must be at least the size dictated
5199by "mmu_type" and "params".
5200
5201While KVM_RUN is active, the shared region is under control of KVM. Its
5202contents are undefined, and any modification by userspace results in
5203boundedly undefined behavior.
5204
5205On return from KVM_RUN, the shared region will reflect the current state of
5206the guest's TLB. If userspace makes any changes, it must call KVM_DIRTY_TLB
5207to tell KVM which entries have been changed, prior to calling KVM_RUN again
5208on this vcpu.
5209
5210For mmu types KVM_MMU_FSL_BOOKE_NOHV and KVM_MMU_FSL_BOOKE_HV:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005211
Scott Wooddc83b8b2011-08-18 15:25:21 -05005212 - The "params" field is of type "struct kvm_book3e_206_tlb_params".
5213 - The "array" field points to an array of type "struct
5214 kvm_book3e_206_tlb_entry".
5215 - The array consists of all entries in the first TLB, followed by all
5216 entries in the second TLB.
5217 - Within a TLB, entries are ordered first by increasing set number. Within a
5218 set, entries are ordered by way (increasing ESEL).
5219 - The hash for determining set number in TLB0 is: (MAS2 >> 12) & (num_sets - 1)
5220 where "num_sets" is the tlb_sizes[] value divided by the tlb_ways[] value.
5221 - The tsize field of mas1 shall be set to 4K on TLB0, even though the
5222 hardware ignores this value for TLB0.
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +01005223
52246.4 KVM_CAP_S390_CSS_SUPPORT
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005225----------------------------
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +01005226
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005227:Architectures: s390
5228:Target: vcpu
5229:Parameters: none
5230:Returns: 0 on success; -1 on error
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +01005231
5232This capability enables support for handling of channel I/O instructions.
5233
5234TEST PENDING INTERRUPTION and the interrupt portion of TEST SUBCHANNEL are
5235handled in-kernel, while the other I/O instructions are passed to userspace.
5236
5237When this capability is enabled, KVM_EXIT_S390_TSCH will occur on TEST
5238SUBCHANNEL intercepts.
Alexander Graf1c810632013-01-04 18:12:48 +01005239
Cornelia Huck0907c852014-06-27 09:29:26 +02005240Note that even though this capability is enabled per-vcpu, the complete
5241virtual machine is affected.
5242
Alexander Graf1c810632013-01-04 18:12:48 +010052436.5 KVM_CAP_PPC_EPR
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005244-------------------
Alexander Graf1c810632013-01-04 18:12:48 +01005245
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005246:Architectures: ppc
5247:Target: vcpu
5248:Parameters: args[0] defines whether the proxy facility is active
5249:Returns: 0 on success; -1 on error
Alexander Graf1c810632013-01-04 18:12:48 +01005250
5251This capability enables or disables the delivery of interrupts through the
5252external proxy facility.
5253
5254When enabled (args[0] != 0), every time the guest gets an external interrupt
5255delivered, it automatically exits into user space with a KVM_EXIT_EPR exit
5256to receive the topmost interrupt vector.
5257
5258When disabled (args[0] == 0), behavior is as if this facility is unsupported.
5259
5260When this capability is enabled, KVM_EXIT_EPR can occur.
Scott Woodeb1e4f42013-04-12 14:08:47 +00005261
52626.6 KVM_CAP_IRQ_MPIC
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005263--------------------
Scott Woodeb1e4f42013-04-12 14:08:47 +00005264
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005265:Architectures: ppc
5266:Parameters: args[0] is the MPIC device fd;
5267 args[1] is the MPIC CPU number for this vcpu
Scott Woodeb1e4f42013-04-12 14:08:47 +00005268
5269This capability connects the vcpu to an in-kernel MPIC device.
Paul Mackerras5975a2e2013-04-27 00:28:37 +00005270
52716.7 KVM_CAP_IRQ_XICS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005272--------------------
Paul Mackerras5975a2e2013-04-27 00:28:37 +00005273
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005274:Architectures: ppc
5275:Target: vcpu
5276:Parameters: args[0] is the XICS device fd;
5277 args[1] is the XICS CPU number (server ID) for this vcpu
Paul Mackerras5975a2e2013-04-27 00:28:37 +00005278
5279This capability connects the vcpu to an in-kernel XICS device.
Cornelia Huck8a366a42014-06-27 11:06:25 +02005280
52816.8 KVM_CAP_S390_IRQCHIP
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005282------------------------
Cornelia Huck8a366a42014-06-27 11:06:25 +02005283
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005284:Architectures: s390
5285:Target: vm
5286:Parameters: none
Cornelia Huck8a366a42014-06-27 11:06:25 +02005287
5288This capability enables the in-kernel irqchip for s390. Please refer to
5289"4.24 KVM_CREATE_IRQCHIP" for details.
Paul Mackerras699a0ea2014-06-02 11:02:59 +10005290
James Hogan5fafd8742014-12-08 23:07:56 +000052916.9 KVM_CAP_MIPS_FPU
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005292--------------------
James Hogan5fafd8742014-12-08 23:07:56 +00005293
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005294:Architectures: mips
5295:Target: vcpu
5296:Parameters: args[0] is reserved for future use (should be 0).
James Hogan5fafd8742014-12-08 23:07:56 +00005297
5298This capability allows the use of the host Floating Point Unit by the guest. It
5299allows 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 +01005300done the ``KVM_REG_MIPS_FPR_*`` and ``KVM_REG_MIPS_FCR_*`` registers can be
5301accessed (depending on the current guest FPU register mode), and the Status.FR,
James Hogan5fafd8742014-12-08 23:07:56 +00005302Config5.FRE bits are accessible via the KVM API and also from the guest,
5303depending on them being supported by the FPU.
5304
James Hogand952bd02014-12-08 23:07:56 +000053056.10 KVM_CAP_MIPS_MSA
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005306---------------------
James Hogand952bd02014-12-08 23:07:56 +00005307
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005308:Architectures: mips
5309:Target: vcpu
5310:Parameters: args[0] is reserved for future use (should be 0).
James Hogand952bd02014-12-08 23:07:56 +00005311
5312This capability allows the use of the MIPS SIMD Architecture (MSA) by the guest.
5313It 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 +01005314Once this is done the ``KVM_REG_MIPS_VEC_*`` and ``KVM_REG_MIPS_MSA_*``
5315registers can be accessed, and the Config5.MSAEn bit is accessible via the
5316KVM API and also from the guest.
James Hogand952bd02014-12-08 23:07:56 +00005317
Ken Hofsass01643c52018-01-31 16:03:36 -080053186.74 KVM_CAP_SYNC_REGS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005319----------------------
5320
5321:Architectures: s390, x86
5322:Target: s390: always enabled, x86: vcpu
5323:Parameters: none
5324:Returns: x86: KVM_CHECK_EXTENSION returns a bit-array indicating which register
5325 sets are supported
5326 (bitfields defined in arch/x86/include/uapi/asm/kvm.h).
Ken Hofsass01643c52018-01-31 16:03:36 -08005327
5328As described above in the kvm_sync_regs struct info in section 5 (kvm_run):
5329KVM_CAP_SYNC_REGS "allow[s] userspace to access certain guest registers
5330without having to call SET/GET_*REGS". This reduces overhead by eliminating
5331repeated ioctl calls for setting and/or getting register values. This is
5332particularly important when userspace is making synchronous guest state
5333modifications, e.g. when emulating and/or intercepting instructions in
5334userspace.
5335
5336For s390 specifics, please refer to the source code.
5337
5338For x86:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005339
Ken Hofsass01643c52018-01-31 16:03:36 -08005340- the register sets to be copied out to kvm_run are selectable
5341 by userspace (rather that all sets being copied out for every exit).
5342- vcpu_events are available in addition to regs and sregs.
5343
5344For x86, the 'kvm_valid_regs' field of struct kvm_run is overloaded to
5345function as an input bit-array field set by userspace to indicate the
5346specific register sets to be copied out on the next exit.
5347
5348To indicate when userspace has modified values that should be copied into
5349the vCPU, the all architecture bitarray field, 'kvm_dirty_regs' must be set.
5350This is done using the same bitflags as for the 'kvm_valid_regs' field.
5351If the dirty bit is not set, then the register set values will not be copied
5352into the vCPU even if they've been modified.
5353
5354Unused bitfields in the bitarrays must be set to zero.
5355
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005356::
5357
5358 struct kvm_sync_regs {
Ken Hofsass01643c52018-01-31 16:03:36 -08005359 struct kvm_regs regs;
5360 struct kvm_sregs sregs;
5361 struct kvm_vcpu_events events;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005362 };
Ken Hofsass01643c52018-01-31 16:03:36 -08005363
Cédric Le Goatereacc56b2019-04-18 12:39:28 +020053646.75 KVM_CAP_PPC_IRQ_XIVE
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005365-------------------------
Cédric Le Goatereacc56b2019-04-18 12:39:28 +02005366
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005367:Architectures: ppc
5368:Target: vcpu
5369:Parameters: args[0] is the XIVE device fd;
5370 args[1] is the XIVE CPU number (server ID) for this vcpu
Cédric Le Goatereacc56b2019-04-18 12:39:28 +02005371
5372This capability connects the vcpu to an in-kernel XIVE device.
5373
Paul Mackerras699a0ea2014-06-02 11:02:59 +100053747. Capabilities that can be enabled on VMs
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005375==========================================
Paul Mackerras699a0ea2014-06-02 11:02:59 +10005376
5377There are certain capabilities that change the behavior of the virtual
5378machine when enabled. To enable them, please see section 4.37. Below
5379you can find a list of capabilities and what their effect on the VM
5380is when enabling them.
5381
5382The following information is provided along with the description:
5383
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005384 Architectures:
5385 which instruction set architectures provide this ioctl.
Paul Mackerras699a0ea2014-06-02 11:02:59 +10005386 x86 includes both i386 and x86_64.
5387
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005388 Parameters:
5389 what parameters are accepted by the capability.
Paul Mackerras699a0ea2014-06-02 11:02:59 +10005390
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005391 Returns:
5392 the return value. General error numbers (EBADF, ENOMEM, EINVAL)
Paul Mackerras699a0ea2014-06-02 11:02:59 +10005393 are not detailed, but errors with specific meanings are.
5394
5395
53967.1 KVM_CAP_PPC_ENABLE_HCALL
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005397----------------------------
Paul Mackerras699a0ea2014-06-02 11:02:59 +10005398
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005399:Architectures: ppc
5400:Parameters: args[0] is the sPAPR hcall number;
5401 args[1] is 0 to disable, 1 to enable in-kernel handling
Paul Mackerras699a0ea2014-06-02 11:02:59 +10005402
5403This capability controls whether individual sPAPR hypercalls (hcalls)
5404get handled by the kernel or not. Enabling or disabling in-kernel
5405handling of an hcall is effective across the VM. On creation, an
5406initial set of hcalls are enabled for in-kernel handling, which
5407consists of those hcalls for which in-kernel handlers were implemented
5408before this capability was implemented. If disabled, the kernel will
5409not to attempt to handle the hcall, but will always exit to userspace
5410to handle it. Note that it may not make sense to enable some and
5411disable others of a group of related hcalls, but KVM does not prevent
5412userspace from doing that.
Paul Mackerrasae2113a2014-06-02 11:03:00 +10005413
5414If the hcall number specified is not one that has an in-kernel
5415implementation, the KVM_ENABLE_CAP ioctl will fail with an EINVAL
5416error.
David Hildenbrand2444b352014-10-09 14:10:13 +02005417
54187.2 KVM_CAP_S390_USER_SIGP
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005419--------------------------
David Hildenbrand2444b352014-10-09 14:10:13 +02005420
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005421:Architectures: s390
5422:Parameters: none
David Hildenbrand2444b352014-10-09 14:10:13 +02005423
5424This capability controls which SIGP orders will be handled completely in user
5425space. With this capability enabled, all fast orders will be handled completely
5426in the kernel:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005427
David Hildenbrand2444b352014-10-09 14:10:13 +02005428- SENSE
5429- SENSE RUNNING
5430- EXTERNAL CALL
5431- EMERGENCY SIGNAL
5432- CONDITIONAL EMERGENCY SIGNAL
5433
5434All other orders will be handled completely in user space.
5435
5436Only privileged operation exceptions will be checked for in the kernel (or even
5437in the hardware prior to interception). If this capability is not enabled, the
5438old way of handling SIGP orders is used (partially in kernel and user space).
Eric Farman68c55752014-06-09 10:57:26 -04005439
54407.3 KVM_CAP_S390_VECTOR_REGISTERS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005441---------------------------------
Eric Farman68c55752014-06-09 10:57:26 -04005442
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005443:Architectures: s390
5444:Parameters: none
5445:Returns: 0 on success, negative value on error
Eric Farman68c55752014-06-09 10:57:26 -04005446
5447Allows use of the vector registers introduced with z13 processor, and
5448provides for the synchronization between host and user space. Will
5449return -EINVAL if the machine does not support vectors.
Ekaterina Tumanovae44fc8c2015-01-30 16:55:56 +01005450
54517.4 KVM_CAP_S390_USER_STSI
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005452--------------------------
Ekaterina Tumanovae44fc8c2015-01-30 16:55:56 +01005453
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005454:Architectures: s390
5455:Parameters: none
Ekaterina Tumanovae44fc8c2015-01-30 16:55:56 +01005456
5457This capability allows post-handlers for the STSI instruction. After
5458initial handling in the kernel, KVM exits to user space with
5459KVM_EXIT_S390_STSI to allow user space to insert further data.
5460
5461Before exiting to userspace, kvm handlers should fill in s390_stsi field of
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005462vcpu->run::
5463
5464 struct {
Ekaterina Tumanovae44fc8c2015-01-30 16:55:56 +01005465 __u64 addr;
5466 __u8 ar;
5467 __u8 reserved;
5468 __u8 fc;
5469 __u8 sel1;
5470 __u16 sel2;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005471 } s390_stsi;
Ekaterina Tumanovae44fc8c2015-01-30 16:55:56 +01005472
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005473 @addr - guest address of STSI SYSIB
5474 @fc - function code
5475 @sel1 - selector 1
5476 @sel2 - selector 2
5477 @ar - access register number
Ekaterina Tumanovae44fc8c2015-01-30 16:55:56 +01005478
5479KVM handlers should exit to userspace with rc = -EREMOTE.
Michael Ellermane928e9c2015-03-20 20:39:41 +11005480
Steve Rutherford49df6392015-07-29 23:21:40 -070054817.5 KVM_CAP_SPLIT_IRQCHIP
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005482-------------------------
Steve Rutherford49df6392015-07-29 23:21:40 -07005483
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005484:Architectures: x86
5485:Parameters: args[0] - number of routes reserved for userspace IOAPICs
5486:Returns: 0 on success, -1 on error
Steve Rutherford49df6392015-07-29 23:21:40 -07005487
5488Create a local apic for each processor in the kernel. This can be used
5489instead of KVM_CREATE_IRQCHIP if the userspace VMM wishes to emulate the
5490IOAPIC and PIC (and also the PIT, even though this has to be enabled
5491separately).
5492
Steve Rutherfordb053b2a2015-07-29 23:32:35 -07005493This capability also enables in kernel routing of interrupt requests;
5494when KVM_CAP_SPLIT_IRQCHIP only routes of KVM_IRQ_ROUTING_MSI type are
5495used in the IRQ routing table. The first args[0] MSI routes are reserved
5496for the IOAPIC pins. Whenever the LAPIC receives an EOI for these routes,
5497a KVM_EXIT_IOAPIC_EOI vmexit will be reported to userspace.
Steve Rutherford49df6392015-07-29 23:21:40 -07005498
5499Fails if VCPU has already been created, or if the irqchip is already in the
5500kernel (i.e. KVM_CREATE_IRQCHIP has already been called).
5501
David Hildenbrand051c87f2016-04-19 13:13:40 +020055027.6 KVM_CAP_S390_RI
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005503-------------------
David Hildenbrand051c87f2016-04-19 13:13:40 +02005504
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005505:Architectures: s390
5506:Parameters: none
David Hildenbrand051c87f2016-04-19 13:13:40 +02005507
5508Allows use of runtime-instrumentation introduced with zEC12 processor.
5509Will return -EINVAL if the machine does not support runtime-instrumentation.
5510Will return -EBUSY if a VCPU has already been created.
Michael Ellermane928e9c2015-03-20 20:39:41 +11005511
Radim Krčmář371313132016-07-12 22:09:27 +020055127.7 KVM_CAP_X2APIC_API
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005513----------------------
Radim Krčmář371313132016-07-12 22:09:27 +02005514
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005515:Architectures: x86
5516:Parameters: args[0] - features that should be enabled
5517:Returns: 0 on success, -EINVAL when args[0] contains invalid features
Radim Krčmář371313132016-07-12 22:09:27 +02005518
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005519Valid feature flags in args[0] are::
Radim Krčmář371313132016-07-12 22:09:27 +02005520
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005521 #define KVM_X2APIC_API_USE_32BIT_IDS (1ULL << 0)
5522 #define KVM_X2APIC_API_DISABLE_BROADCAST_QUIRK (1ULL << 1)
Radim Krčmář371313132016-07-12 22:09:27 +02005523
5524Enabling KVM_X2APIC_API_USE_32BIT_IDS changes the behavior of
5525KVM_SET_GSI_ROUTING, KVM_SIGNAL_MSI, KVM_SET_LAPIC, and KVM_GET_LAPIC,
5526allowing the use of 32-bit APIC IDs. See KVM_CAP_X2APIC_API in their
5527respective sections.
5528
Radim Krčmářc5192652016-07-12 22:09:28 +02005529KVM_X2APIC_API_DISABLE_BROADCAST_QUIRK must be enabled for x2APIC to work
5530in logical mode or with more than 255 VCPUs. Otherwise, KVM treats 0xff
5531as a broadcast even in x2APIC mode in order to support physical x2APIC
5532without interrupt remapping. This is undesirable in logical mode,
5533where 0xff represents CPUs 0-7 in cluster 0.
Radim Krčmář371313132016-07-12 22:09:27 +02005534
David Hildenbrand6502a342016-06-21 14:19:51 +020055357.8 KVM_CAP_S390_USER_INSTR0
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005536----------------------------
David Hildenbrand6502a342016-06-21 14:19:51 +02005537
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005538:Architectures: s390
5539:Parameters: none
David Hildenbrand6502a342016-06-21 14:19:51 +02005540
5541With this capability enabled, all illegal instructions 0x0000 (2 bytes) will
5542be intercepted and forwarded to user space. User space can use this
5543mechanism e.g. to realize 2-byte software breakpoints. The kernel will
5544not inject an operating exception for these instructions, user space has
5545to take care of that.
5546
5547This capability can be enabled dynamically even if VCPUs were already
5548created and are running.
Radim Krčmář371313132016-07-12 22:09:27 +02005549
Fan Zhang4e0b1ab2016-11-29 07:17:55 +010055507.9 KVM_CAP_S390_GS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005551-------------------
Fan Zhang4e0b1ab2016-11-29 07:17:55 +01005552
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005553:Architectures: s390
5554:Parameters: none
5555:Returns: 0 on success; -EINVAL if the machine does not support
5556 guarded storage; -EBUSY if a VCPU has already been created.
Fan Zhang4e0b1ab2016-11-29 07:17:55 +01005557
5558Allows use of guarded storage for the KVM guest.
5559
Yi Min Zhao47a46932017-03-10 09:29:38 +010055607.10 KVM_CAP_S390_AIS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005561---------------------
Yi Min Zhao47a46932017-03-10 09:29:38 +01005562
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005563:Architectures: s390
5564:Parameters: none
Yi Min Zhao47a46932017-03-10 09:29:38 +01005565
5566Allow use of adapter-interruption suppression.
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005567:Returns: 0 on success; -EBUSY if a VCPU has already been created.
Yi Min Zhao47a46932017-03-10 09:29:38 +01005568
Paul Mackerras3c313522017-02-06 13:24:41 +110055697.11 KVM_CAP_PPC_SMT
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005570--------------------
Paul Mackerras3c313522017-02-06 13:24:41 +11005571
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005572:Architectures: ppc
5573:Parameters: vsmt_mode, flags
Paul Mackerras3c313522017-02-06 13:24:41 +11005574
5575Enabling this capability on a VM provides userspace with a way to set
5576the desired virtual SMT mode (i.e. the number of virtual CPUs per
5577virtual core). The virtual SMT mode, vsmt_mode, must be a power of 2
5578between 1 and 8. On POWER8, vsmt_mode must also be no greater than
5579the number of threads per subcore for the host. Currently flags must
5580be 0. A successful call to enable this capability will result in
5581vsmt_mode being returned when the KVM_CAP_PPC_SMT capability is
5582subsequently queried for the VM. This capability is only supported by
5583HV KVM, and can only be set before any VCPUs have been created.
Paul Mackerras2ed4f9d2017-06-21 16:01:27 +10005584The KVM_CAP_PPC_SMT_POSSIBLE capability indicates which virtual SMT
5585modes are available.
Paul Mackerras3c313522017-02-06 13:24:41 +11005586
Aravinda Prasad134764e2017-05-11 16:32:48 +053055877.12 KVM_CAP_PPC_FWNMI
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005588----------------------
Aravinda Prasad134764e2017-05-11 16:32:48 +05305589
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005590:Architectures: ppc
5591:Parameters: none
Aravinda Prasad134764e2017-05-11 16:32:48 +05305592
5593With this capability a machine check exception in the guest address
5594space will cause KVM to exit the guest with NMI exit reason. This
5595enables QEMU to build error log and branch to guest kernel registered
5596machine check handling routine. Without this capability KVM will
5597branch to guests' 0x200 interrupt vector.
5598
Wanpeng Li4d5422c2018-03-12 04:53:02 -070055997.13 KVM_CAP_X86_DISABLE_EXITS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005600------------------------------
Wanpeng Li4d5422c2018-03-12 04:53:02 -07005601
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005602:Architectures: x86
5603:Parameters: args[0] defines which exits are disabled
5604:Returns: 0 on success, -EINVAL when args[0] contains invalid exits
Wanpeng Li4d5422c2018-03-12 04:53:02 -07005605
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005606Valid bits in args[0] are::
Wanpeng Li4d5422c2018-03-12 04:53:02 -07005607
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005608 #define KVM_X86_DISABLE_EXITS_MWAIT (1 << 0)
5609 #define KVM_X86_DISABLE_EXITS_HLT (1 << 1)
5610 #define KVM_X86_DISABLE_EXITS_PAUSE (1 << 2)
5611 #define KVM_X86_DISABLE_EXITS_CSTATE (1 << 3)
Wanpeng Li4d5422c2018-03-12 04:53:02 -07005612
5613Enabling this capability on a VM provides userspace with a way to no
5614longer intercept some instructions for improved latency in some
5615workloads, and is suggested when vCPUs are associated to dedicated
5616physical CPUs. More bits can be added in the future; userspace can
5617just pass the KVM_CHECK_EXTENSION result to KVM_ENABLE_CAP to disable
5618all such vmexits.
5619
Wanpeng Licaa057a2018-03-12 04:53:03 -07005620Do not enable KVM_FEATURE_PV_UNHALT if you disable HLT exits.
Wanpeng Li4d5422c2018-03-12 04:53:02 -07005621
Janosch Franka4499382018-07-13 11:28:31 +010056227.14 KVM_CAP_S390_HPAGE_1M
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005623--------------------------
Janosch Franka4499382018-07-13 11:28:31 +01005624
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005625:Architectures: s390
5626:Parameters: none
5627:Returns: 0 on success, -EINVAL if hpage module parameter was not set
5628 or cmma is enabled, or the VM has the KVM_VM_S390_UCONTROL
5629 flag set
Janosch Franka4499382018-07-13 11:28:31 +01005630
5631With this capability the KVM support for memory backing with 1m pages
5632through hugetlbfs can be enabled for a VM. After the capability is
5633enabled, cmma can't be enabled anymore and pfmfi and the storage key
5634interpretation are disabled. If cmma has already been enabled or the
5635hpage module parameter is not set to 1, -EINVAL is returned.
5636
5637While it is generally possible to create a huge page backed VM without
5638this capability, the VM will not be able to run.
5639
Jim Mattsonc4f55192018-10-16 14:29:24 -070056407.15 KVM_CAP_MSR_PLATFORM_INFO
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005641------------------------------
Drew Schmitt6fbbde92018-08-20 10:32:15 -07005642
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005643:Architectures: x86
5644:Parameters: args[0] whether feature should be enabled or not
Drew Schmitt6fbbde92018-08-20 10:32:15 -07005645
5646With this capability, a guest may read the MSR_PLATFORM_INFO MSR. Otherwise,
5647a #GP would be raised when the guest tries to access. Currently, this
5648capability does not enable write permissions of this MSR for the guest.
5649
Paul Mackerrasaa069a92018-09-21 20:02:01 +100056507.16 KVM_CAP_PPC_NESTED_HV
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005651--------------------------
Paul Mackerrasaa069a92018-09-21 20:02:01 +10005652
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005653:Architectures: ppc
5654:Parameters: none
5655:Returns: 0 on success, -EINVAL when the implementation doesn't support
5656 nested-HV virtualization.
Paul Mackerrasaa069a92018-09-21 20:02:01 +10005657
5658HV-KVM on POWER9 and later systems allows for "nested-HV"
5659virtualization, which provides a way for a guest VM to run guests that
5660can run using the CPU's supervisor mode (privileged non-hypervisor
5661state). Enabling this capability on a VM depends on the CPU having
5662the necessary functionality and on the facility being enabled with a
5663kvm-hv module parameter.
5664
Jim Mattsonc4f55192018-10-16 14:29:24 -070056657.17 KVM_CAP_EXCEPTION_PAYLOAD
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005666------------------------------
Jim Mattsonc4f55192018-10-16 14:29:24 -07005667
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005668:Architectures: x86
5669:Parameters: args[0] whether feature should be enabled or not
Jim Mattsonc4f55192018-10-16 14:29:24 -07005670
5671With this capability enabled, CR2 will not be modified prior to the
5672emulated VM-exit when L1 intercepts a #PF exception that occurs in
5673L2. Similarly, for kvm-intel only, DR6 will not be modified prior to
5674the emulated VM-exit when L1 intercepts a #DB exception that occurs in
5675L2. As a result, when KVM_GET_VCPU_EVENTS reports a pending #PF (or
5676#DB) exception for L2, exception.has_payload will be set and the
5677faulting address (or the new DR6 bits*) will be reported in the
5678exception_payload field. Similarly, when userspace injects a #PF (or
5679#DB) into L2 using KVM_SET_VCPU_EVENTS, it is expected to set
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005680exception.has_payload and to put the faulting address - or the new DR6
5681bits\ [#]_ - in the exception_payload field.
Jim Mattsonc4f55192018-10-16 14:29:24 -07005682
5683This capability also enables exception.pending in struct
5684kvm_vcpu_events, which allows userspace to distinguish between pending
5685and injected exceptions.
5686
5687
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005688.. [#] For the new DR6 bits, note that bit 16 is set iff the #DB exception
5689 will clear DR6.RTM.
Jim Mattsonc4f55192018-10-16 14:29:24 -07005690
Peter Xud7547c52019-05-08 17:15:47 +080056917.18 KVM_CAP_MANUAL_DIRTY_LOG_PROTECT2
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02005692
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005693:Architectures: x86, arm, arm64, mips
5694:Parameters: args[0] whether feature should be enabled or not
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02005695
Jay Zhou3c9bd402020-02-27 09:32:27 +08005696Valid flags are::
5697
5698 #define KVM_DIRTY_LOG_MANUAL_PROTECT_ENABLE (1 << 0)
5699 #define KVM_DIRTY_LOG_INITIALLY_SET (1 << 1)
5700
5701With KVM_DIRTY_LOG_MANUAL_PROTECT_ENABLE is set, KVM_GET_DIRTY_LOG will not
5702automatically clear and write-protect all pages that are returned as dirty.
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02005703Rather, userspace will have to do this operation separately using
5704KVM_CLEAR_DIRTY_LOG.
5705
5706At the cost of a slightly more complicated operation, this provides better
5707scalability and responsiveness for two reasons. First,
5708KVM_CLEAR_DIRTY_LOG ioctl can operate on a 64-page granularity rather
5709than requiring to sync a full memslot; this ensures that KVM does not
5710take spinlocks for an extended period of time. Second, in some cases a
5711large amount of time can pass between a call to KVM_GET_DIRTY_LOG and
5712userspace actually using the data in the page. Pages can be modified
Jay Zhou3c9bd402020-02-27 09:32:27 +08005713during this time, which is inefficient for both the guest and userspace:
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02005714the guest will incur a higher penalty due to write protection faults,
5715while userspace can see false reports of dirty pages. Manual reprotection
5716helps reducing this time, improving guest performance and reducing the
5717number of dirty log false positives.
5718
Jay Zhou3c9bd402020-02-27 09:32:27 +08005719With KVM_DIRTY_LOG_INITIALLY_SET set, all the bits of the dirty bitmap
5720will be initialized to 1 when created. This also improves performance because
5721dirty logging can be enabled gradually in small chunks on the first call
5722to KVM_CLEAR_DIRTY_LOG. KVM_DIRTY_LOG_INITIALLY_SET depends on
5723KVM_DIRTY_LOG_MANUAL_PROTECT_ENABLE (it is also only available on
5724x86 for now).
5725
Peter Xud7547c52019-05-08 17:15:47 +08005726KVM_CAP_MANUAL_DIRTY_LOG_PROTECT2 was previously available under the name
5727KVM_CAP_MANUAL_DIRTY_LOG_PROTECT, but the implementation had bugs that make
5728it hard or impossible to use it correctly. The availability of
5729KVM_CAP_MANUAL_DIRTY_LOG_PROTECT2 signals that those bugs are fixed.
5730Userspace should not try to use KVM_CAP_MANUAL_DIRTY_LOG_PROTECT.
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02005731
Michael Ellermane928e9c2015-03-20 20:39:41 +110057328. Other capabilities.
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005733======================
Michael Ellermane928e9c2015-03-20 20:39:41 +11005734
5735This section lists capabilities that give information about other
5736features of the KVM implementation.
5737
57388.1 KVM_CAP_PPC_HWRNG
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005739---------------------
Michael Ellermane928e9c2015-03-20 20:39:41 +11005740
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005741:Architectures: ppc
Michael Ellermane928e9c2015-03-20 20:39:41 +11005742
5743This capability, if KVM_CHECK_EXTENSION indicates that it is
5744available, means that that the kernel has an implementation of the
5745H_RANDOM hypercall backed by a hardware random-number generator.
5746If present, the kernel H_RANDOM handler can be enabled for guest use
5747with the KVM_CAP_PPC_ENABLE_HCALL capability.
Andrey Smetanin5c9194122015-11-10 15:36:34 +03005748
57498.2 KVM_CAP_HYPERV_SYNIC
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005750------------------------
Andrey Smetanin5c9194122015-11-10 15:36:34 +03005751
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005752:Architectures: x86
5753
Andrey Smetanin5c9194122015-11-10 15:36:34 +03005754This capability, if KVM_CHECK_EXTENSION indicates that it is
5755available, means that that the kernel has an implementation of the
5756Hyper-V Synthetic interrupt controller(SynIC). Hyper-V SynIC is
5757used to support Windows Hyper-V based guest paravirt drivers(VMBus).
5758
5759In order to use SynIC, it has to be activated by setting this
5760capability via KVM_ENABLE_CAP ioctl on the vcpu fd. Note that this
5761will disable the use of APIC hardware virtualization even if supported
5762by the CPU, as it's incompatible with SynIC auto-EOI behavior.
Paul Mackerrasc9270132017-01-30 21:21:41 +11005763
57648.3 KVM_CAP_PPC_RADIX_MMU
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005765-------------------------
Paul Mackerrasc9270132017-01-30 21:21:41 +11005766
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005767:Architectures: ppc
Paul Mackerrasc9270132017-01-30 21:21:41 +11005768
5769This capability, if KVM_CHECK_EXTENSION indicates that it is
5770available, means that that the kernel can support guests using the
5771radix MMU defined in Power ISA V3.00 (as implemented in the POWER9
5772processor).
5773
57748.4 KVM_CAP_PPC_HASH_MMU_V3
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005775---------------------------
Paul Mackerrasc9270132017-01-30 21:21:41 +11005776
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005777:Architectures: ppc
Paul Mackerrasc9270132017-01-30 21:21:41 +11005778
5779This capability, if KVM_CHECK_EXTENSION indicates that it is
5780available, means that that the kernel can support guests using the
5781hashed page table MMU defined in Power ISA V3.00 (as implemented in
5782the POWER9 processor), including in-memory segment tables.
James Hogana8a3c422017-03-14 10:15:19 +00005783
57848.5 KVM_CAP_MIPS_VZ
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005785-------------------
James Hogana8a3c422017-03-14 10:15:19 +00005786
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005787:Architectures: mips
James Hogana8a3c422017-03-14 10:15:19 +00005788
5789This capability, if KVM_CHECK_EXTENSION on the main kvm handle indicates that
5790it is available, means that full hardware assisted virtualization capabilities
5791of the hardware are available for use through KVM. An appropriate
5792KVM_VM_MIPS_* type must be passed to KVM_CREATE_VM to create a VM which
5793utilises it.
5794
5795If KVM_CHECK_EXTENSION on a kvm VM handle indicates that this capability is
5796available, it means that the VM is using full hardware assisted virtualization
5797capabilities of the hardware. This is useful to check after creating a VM with
5798KVM_VM_MIPS_DEFAULT.
5799
5800The value returned by KVM_CHECK_EXTENSION should be compared against known
5801values (see below). All other values are reserved. This is to allow for the
5802possibility of other hardware assisted virtualization implementations which
5803may be incompatible with the MIPS VZ ASE.
5804
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005805== ==========================================================================
5806 0 The trap & emulate implementation is in use to run guest code in user
James Hogana8a3c422017-03-14 10:15:19 +00005807 mode. Guest virtual memory segments are rearranged to fit the guest in the
5808 user mode address space.
5809
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005810 1 The MIPS VZ ASE is in use, providing full hardware assisted
James Hogana8a3c422017-03-14 10:15:19 +00005811 virtualization, including standard guest virtual memory segments.
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005812== ==========================================================================
James Hogana8a3c422017-03-14 10:15:19 +00005813
58148.6 KVM_CAP_MIPS_TE
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005815-------------------
James Hogana8a3c422017-03-14 10:15:19 +00005816
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005817:Architectures: mips
James Hogana8a3c422017-03-14 10:15:19 +00005818
5819This capability, if KVM_CHECK_EXTENSION on the main kvm handle indicates that
5820it is available, means that the trap & emulate implementation is available to
5821run guest code in user mode, even if KVM_CAP_MIPS_VZ indicates that hardware
5822assisted virtualisation is also available. KVM_VM_MIPS_TE (0) must be passed
5823to KVM_CREATE_VM to create a VM which utilises it.
5824
5825If KVM_CHECK_EXTENSION on a kvm VM handle indicates that this capability is
5826available, it means that the VM is using trap & emulate.
James Hogan578fd612017-03-14 10:15:20 +00005827
58288.7 KVM_CAP_MIPS_64BIT
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005829----------------------
James Hogan578fd612017-03-14 10:15:20 +00005830
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005831:Architectures: mips
James Hogan578fd612017-03-14 10:15:20 +00005832
5833This capability indicates the supported architecture type of the guest, i.e. the
5834supported register and address width.
5835
5836The values returned when this capability is checked by KVM_CHECK_EXTENSION on a
5837kvm VM handle correspond roughly to the CP0_Config.AT register field, and should
5838be checked specifically against known values (see below). All other values are
5839reserved.
5840
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005841== ========================================================================
5842 0 MIPS32 or microMIPS32.
James Hogan578fd612017-03-14 10:15:20 +00005843 Both registers and addresses are 32-bits wide.
5844 It will only be possible to run 32-bit guest code.
5845
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005846 1 MIPS64 or microMIPS64 with access only to 32-bit compatibility segments.
James Hogan578fd612017-03-14 10:15:20 +00005847 Registers are 64-bits wide, but addresses are 32-bits wide.
5848 64-bit guest code may run but cannot access MIPS64 memory segments.
5849 It will also be possible to run 32-bit guest code.
5850
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005851 2 MIPS64 or microMIPS64 with access to all address segments.
James Hogan578fd612017-03-14 10:15:20 +00005852 Both registers and addresses are 64-bits wide.
5853 It will be possible to run 64-bit or 32-bit guest code.
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005854== ========================================================================
Michael S. Tsirkin668fffa2017-04-21 12:27:17 +02005855
Paolo Bonzinic24a7be2017-04-27 17:33:14 +020058568.9 KVM_CAP_ARM_USER_IRQ
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005857------------------------
Alexander Graf3fe17e62016-09-27 21:08:05 +02005858
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005859:Architectures: arm, arm64
5860
Alexander Graf3fe17e62016-09-27 21:08:05 +02005861This capability, if KVM_CHECK_EXTENSION indicates that it is available, means
5862that if userspace creates a VM without an in-kernel interrupt controller, it
5863will be notified of changes to the output level of in-kernel emulated devices,
5864which can generate virtual interrupts, presented to the VM.
5865For such VMs, on every return to userspace, the kernel
5866updates the vcpu's run->s.regs.device_irq_level field to represent the actual
5867output level of the device.
5868
5869Whenever kvm detects a change in the device output level, kvm guarantees at
5870least one return to userspace before running the VM. This exit could either
5871be a KVM_EXIT_INTR or any other exit event, like KVM_EXIT_MMIO. This way,
5872userspace can always sample the device output level and re-compute the state of
5873the userspace interrupt controller. Userspace should always check the state
5874of run->s.regs.device_irq_level on every kvm exit.
5875The value in run->s.regs.device_irq_level can represent both level and edge
5876triggered interrupt signals, depending on the device. Edge triggered interrupt
5877signals will exit to userspace with the bit in run->s.regs.device_irq_level
5878set exactly once per edge signal.
5879
5880The field run->s.regs.device_irq_level is available independent of
5881run->kvm_valid_regs or run->kvm_dirty_regs bits.
5882
5883If KVM_CAP_ARM_USER_IRQ is supported, the KVM_CHECK_EXTENSION ioctl returns a
5884number larger than 0 indicating the version of this capability is implemented
5885and thereby which bits in in run->s.regs.device_irq_level can signal values.
5886
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005887Currently the following bits are defined for the device_irq_level bitmap::
Alexander Graf3fe17e62016-09-27 21:08:05 +02005888
5889 KVM_CAP_ARM_USER_IRQ >= 1:
5890
5891 KVM_ARM_DEV_EL1_VTIMER - EL1 virtual timer
5892 KVM_ARM_DEV_EL1_PTIMER - EL1 physical timer
5893 KVM_ARM_DEV_PMU - ARM PMU overflow interrupt signal
5894
5895Future versions of kvm may implement additional events. These will get
5896indicated by returning a higher number from KVM_CHECK_EXTENSION and will be
5897listed above.
Paul Mackerras2ed4f9d2017-06-21 16:01:27 +10005898
58998.10 KVM_CAP_PPC_SMT_POSSIBLE
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005900-----------------------------
Paul Mackerras2ed4f9d2017-06-21 16:01:27 +10005901
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005902:Architectures: ppc
Paul Mackerras2ed4f9d2017-06-21 16:01:27 +10005903
5904Querying this capability returns a bitmap indicating the possible
5905virtual SMT modes that can be set using KVM_CAP_PPC_SMT. If bit N
5906(counting from the right) is set, then a virtual SMT mode of 2^N is
5907available.
Roman Kaganefc479e2017-06-22 16:51:01 +03005908
59098.11 KVM_CAP_HYPERV_SYNIC2
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005910--------------------------
Roman Kaganefc479e2017-06-22 16:51:01 +03005911
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005912:Architectures: x86
Roman Kaganefc479e2017-06-22 16:51:01 +03005913
5914This capability enables a newer version of Hyper-V Synthetic interrupt
5915controller (SynIC). The only difference with KVM_CAP_HYPERV_SYNIC is that KVM
5916doesn't clear SynIC message and event flags pages when they are enabled by
5917writing to the respective MSRs.
Roman Kagand3457c82017-07-14 17:13:20 +03005918
59198.12 KVM_CAP_HYPERV_VP_INDEX
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005920----------------------------
Roman Kagand3457c82017-07-14 17:13:20 +03005921
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005922:Architectures: x86
Roman Kagand3457c82017-07-14 17:13:20 +03005923
5924This capability indicates that userspace can load HV_X64_MSR_VP_INDEX msr. Its
5925value is used to denote the target vcpu for a SynIC interrupt. For
5926compatibilty, KVM initializes this msr to KVM's internal vcpu index. When this
5927capability is absent, userspace can still query this msr's value.
Christian Borntraegerda9a1442017-11-09 10:00:45 +01005928
59298.13 KVM_CAP_S390_AIS_MIGRATION
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005930-------------------------------
Christian Borntraegerda9a1442017-11-09 10:00:45 +01005931
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005932:Architectures: s390
5933:Parameters: none
Christian Borntraegerda9a1442017-11-09 10:00:45 +01005934
5935This capability indicates if the flic device will be able to get/set the
5936AIS states for migration via the KVM_DEV_FLIC_AISM_ALL attribute and allows
5937to discover this without having to create a flic device.
Christian Borntraeger5c2b4d52018-02-22 13:40:04 +00005938
59398.14 KVM_CAP_S390_PSW
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005940---------------------
Christian Borntraeger5c2b4d52018-02-22 13:40:04 +00005941
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005942:Architectures: s390
Christian Borntraeger5c2b4d52018-02-22 13:40:04 +00005943
5944This capability indicates that the PSW is exposed via the kvm_run structure.
5945
59468.15 KVM_CAP_S390_GMAP
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005947----------------------
Christian Borntraeger5c2b4d52018-02-22 13:40:04 +00005948
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005949:Architectures: s390
Christian Borntraeger5c2b4d52018-02-22 13:40:04 +00005950
5951This capability indicates that the user space memory used as guest mapping can
5952be anywhere in the user memory address space, as long as the memory slots are
5953aligned and sized to a segment (1MB) boundary.
5954
59558.16 KVM_CAP_S390_COW
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005956---------------------
Christian Borntraeger5c2b4d52018-02-22 13:40:04 +00005957
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005958:Architectures: s390
Christian Borntraeger5c2b4d52018-02-22 13:40:04 +00005959
5960This capability indicates that the user space memory used as guest mapping can
5961use copy-on-write semantics as well as dirty pages tracking via read-only page
5962tables.
5963
59648.17 KVM_CAP_S390_BPB
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005965---------------------
Christian Borntraeger5c2b4d52018-02-22 13:40:04 +00005966
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005967:Architectures: s390
Christian Borntraeger5c2b4d52018-02-22 13:40:04 +00005968
5969This capability indicates that kvm will implement the interfaces to handle
5970reset, migration and nested KVM for branch prediction blocking. The stfle
5971facility 82 should not be provided to the guest without this capability.
Vitaly Kuznetsovc1aea912018-05-16 17:21:31 +02005972
Vitaly Kuznetsov2ddc6492018-06-22 16:56:14 +020059738.18 KVM_CAP_HYPERV_TLBFLUSH
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005974----------------------------
Vitaly Kuznetsovc1aea912018-05-16 17:21:31 +02005975
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005976:Architectures: x86
Vitaly Kuznetsovc1aea912018-05-16 17:21:31 +02005977
5978This capability indicates that KVM supports paravirtualized Hyper-V TLB Flush
5979hypercalls:
5980HvFlushVirtualAddressSpace, HvFlushVirtualAddressSpaceEx,
5981HvFlushVirtualAddressList, HvFlushVirtualAddressListEx.
Dongjiu Gengbe26b3a2018-07-19 16:24:23 +01005982
Dongjiu Geng688e0582018-08-20 17:39:25 -040059838.19 KVM_CAP_ARM_INJECT_SERROR_ESR
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005984----------------------------------
Dongjiu Gengbe26b3a2018-07-19 16:24:23 +01005985
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005986:Architectures: arm, arm64
Dongjiu Gengbe26b3a2018-07-19 16:24:23 +01005987
5988This capability indicates that userspace can specify (via the
5989KVM_SET_VCPU_EVENTS ioctl) the syndrome value reported to the guest when it
5990takes a virtual SError interrupt exception.
5991If KVM advertises this capability, userspace can only specify the ISS field for
5992the ESR syndrome. Other parts of the ESR, such as the EC are generated by the
5993CPU when the exception is taken. If this virtual SError is taken to EL1 using
5994AArch64, this value will be reported in the ISS field of ESR_ELx.
5995
5996See KVM_CAP_VCPU_EVENTS for more details.
Vitaly Kuznetsov214ff832018-09-26 19:02:59 +02005997
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +010059988.20 KVM_CAP_HYPERV_SEND_IPI
5999----------------------------
6000
6001:Architectures: x86
Vitaly Kuznetsov214ff832018-09-26 19:02:59 +02006002
6003This capability indicates that KVM supports paravirtualized Hyper-V IPI send
6004hypercalls:
6005HvCallSendSyntheticClusterIpi, HvCallSendSyntheticClusterIpiEx.
Tianyu Lan344c6c82019-08-22 22:30:20 +08006006
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +010060078.21 KVM_CAP_HYPERV_DIRECT_TLBFLUSH
6008-----------------------------------
6009
6010:Architecture: x86
Tianyu Lan344c6c82019-08-22 22:30:20 +08006011
6012This capability indicates that KVM running on top of Hyper-V hypervisor
6013enables Direct TLB flush for its guests meaning that TLB flush
6014hypercalls are handled by Level 0 hypervisor (Hyper-V) bypassing KVM.
6015Due to the different ABI for hypercall parameters between Hyper-V and
6016KVM, enabling this capability effectively disables all hypercall
6017handling by KVM (as some KVM hypercall may be mistakenly treated as TLB
6018flush hypercalls by Hyper-V) so userspace should disable KVM identification
6019in CPUID and only exposes Hyper-V identification. In this case, guest
6020thinks it's running on Hyper-V and only use Hyper-V hypercalls.
Janosch Frank7de3f142020-01-31 05:02:02 -05006021
60228.22 KVM_CAP_S390_VCPU_RESETS
6023
6024Architectures: s390
6025
6026This capability indicates that the KVM_S390_NORMAL_RESET and
6027KVM_S390_CLEAR_RESET ioctls are available.