blob: 4ba0df574eb253ecead85905410d2907ffa16370 [file] [log] [blame]
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001.. SPDX-License-Identifier: GPL-2.0
2
3===================================================================
Avi Kivity9c1b96e2009-06-09 12:37:58 +03004The Definitive KVM (Kernel-based Virtual Machine) API Documentation
5===================================================================
6
71. General description
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01008======================
Avi Kivity9c1b96e2009-06-09 12:37:58 +03009
10The kvm API is a set of ioctls that are issued to control various aspects
Wainer dos Santos Moschetta80b10aa2019-11-29 13:17:30 -050011of a virtual machine. The ioctls belong to the following classes:
Avi Kivity9c1b96e2009-06-09 12:37:58 +030012
13 - System ioctls: These query and set global attributes which affect the
14 whole kvm subsystem. In addition a system ioctl is used to create
Sean Christopherson5e124902019-02-15 12:48:38 -080015 virtual machines.
Avi Kivity9c1b96e2009-06-09 12:37:58 +030016
17 - VM ioctls: These query and set attributes that affect an entire virtual
18 machine, for example memory layout. In addition a VM ioctl is used to
Sean Christophersonddba9182019-02-15 12:48:39 -080019 create virtual cpus (vcpus) and devices.
Avi Kivity9c1b96e2009-06-09 12:37:58 +030020
Sean Christopherson5e124902019-02-15 12:48:38 -080021 VM ioctls must be issued from the same process (address space) that was
22 used to create the VM.
Avi Kivity9c1b96e2009-06-09 12:37:58 +030023
24 - vcpu ioctls: These query and set attributes that control the operation
25 of a single virtual cpu.
26
Sean Christopherson5e124902019-02-15 12:48:38 -080027 vcpu ioctls should be issued from the same thread that was used to create
28 the vcpu, except for asynchronous vcpu ioctl that are marked as such in
29 the documentation. Otherwise, the first ioctl after switching threads
30 could see a performance impact.
Avi Kivity9c1b96e2009-06-09 12:37:58 +030031
Sean Christophersonddba9182019-02-15 12:48:39 -080032 - device ioctls: These query and set attributes that control the operation
33 of a single device.
34
35 device ioctls must be issued from the same process (address space) that
36 was used to create the VM.
Jan Kiszka414fa982012-04-24 16:40:15 +020037
Wu Fengguang2044892d2009-12-24 09:04:16 +0800382. File descriptors
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +010039===================
Avi Kivity9c1b96e2009-06-09 12:37:58 +030040
41The kvm API is centered around file descriptors. An initial
42open("/dev/kvm") obtains a handle to the kvm subsystem; this handle
43can be used to issue system ioctls. A KVM_CREATE_VM ioctl on this
Wu Fengguang2044892d2009-12-24 09:04:16 +080044handle will create a VM file descriptor which can be used to issue VM
Sean Christophersonddba9182019-02-15 12:48:39 -080045ioctls. A KVM_CREATE_VCPU or KVM_CREATE_DEVICE ioctl on a VM fd will
46create a virtual cpu or device and return a file descriptor pointing to
47the new resource. Finally, ioctls on a vcpu or device fd can be used
48to control the vcpu or device. For vcpus, this includes the important
49task of actually running guest code.
Avi Kivity9c1b96e2009-06-09 12:37:58 +030050
51In general file descriptors can be migrated among processes by means
52of fork() and the SCM_RIGHTS facility of unix domain socket. These
53kinds of tricks are explicitly not supported by kvm. While they will
54not cause harm to the host, their actual behavior is not guaranteed by
Sean Christopherson5e124902019-02-15 12:48:38 -080055the API. See "General description" for details on the ioctl usage
56model that is supported by KVM.
Jan Kiszka414fa982012-04-24 16:40:15 +020057
Sean Christophersoneca6be52019-02-15 12:48:40 -080058It is important to note that althought VM ioctls may only be issued from
59the process that created the VM, a VM's lifecycle is associated with its
60file descriptor, not its creator (process). In other words, the VM and
61its resources, *including the associated address space*, are not freed
62until the last reference to the VM's file descriptor has been released.
63For example, if fork() is issued after ioctl(KVM_CREATE_VM), the VM will
64not be freed until both the parent (original) process and its child have
65put their references to the VM's file descriptor.
66
67Because a VM's resources are not freed until the last reference to its
Randy Dunlap3747c5d2020-07-03 14:29:06 -070068file descriptor is released, creating additional references to a VM
Sean Christophersoneca6be52019-02-15 12:48:40 -080069via fork(), dup(), etc... without careful consideration is strongly
70discouraged and may have unwanted side effects, e.g. memory allocated
71by and on behalf of the VM's process may not be freed/unaccounted when
72the VM is shut down.
73
74
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300753. Extensions
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +010076=============
Avi Kivity9c1b96e2009-06-09 12:37:58 +030077
78As of Linux 2.6.22, the KVM ABI has been stabilized: no backward
79incompatible change are allowed. However, there is an extension
80facility that allows backward-compatible extensions to the API to be
81queried and used.
82
Masanari Iidac9f3f2d2013-07-18 01:29:12 +090083The extension mechanism is not based on the Linux version number.
Avi Kivity9c1b96e2009-06-09 12:37:58 +030084Instead, kvm defines extension identifiers and a facility to query
85whether a particular extension identifier is available. If it is, a
86set of ioctls is available for application use.
87
Jan Kiszka414fa982012-04-24 16:40:15 +020088
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300894. API description
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +010090==================
Avi Kivity9c1b96e2009-06-09 12:37:58 +030091
92This section describes ioctls that can be used to control kvm guests.
93For each ioctl, the following information is provided along with a
94description:
95
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +010096 Capability:
97 which KVM extension provides this ioctl. Can be 'basic',
Avi Kivity9c1b96e2009-06-09 12:37:58 +030098 which means that is will be provided by any kernel that supports
Michael S. Tsirkin7f05db62014-10-12 11:34:00 +030099 API version 12 (see section 4.1), a KVM_CAP_xyz constant, which
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300100 means availability needs to be checked with KVM_CHECK_EXTENSION
Michael S. Tsirkin7f05db62014-10-12 11:34:00 +0300101 (see section 4.4), or 'none' which means that while not all kernels
102 support this ioctl, there's no capability bit to check its
103 availability: for kernels that don't support the ioctl,
104 the ioctl returns -ENOTTY.
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300105
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100106 Architectures:
107 which instruction set architectures provide this ioctl.
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300108 x86 includes both i386 and x86_64.
109
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100110 Type:
111 system, vm, or vcpu.
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300112
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100113 Parameters:
114 what parameters are accepted by the ioctl.
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300115
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100116 Returns:
117 the return value. General error numbers (EBADF, ENOMEM, EINVAL)
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300118 are not detailed, but errors with specific meanings are.
119
Jan Kiszka414fa982012-04-24 16:40:15 +0200120
Avi Kivity9c1b96e2009-06-09 12:37:58 +03001214.1 KVM_GET_API_VERSION
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100122-----------------------
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300123
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100124:Capability: basic
125:Architectures: all
126:Type: system ioctl
127:Parameters: none
128:Returns: the constant KVM_API_VERSION (=12)
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300129
130This identifies the API version as the stable kvm API. It is not
131expected that this number will change. However, Linux 2.6.20 and
1322.6.21 report earlier versions; these are not documented and not
133supported. Applications should refuse to run if KVM_GET_API_VERSION
134returns a value other than 12. If this check passes, all ioctls
135described as 'basic' will be available.
136
Jan Kiszka414fa982012-04-24 16:40:15 +0200137
Avi Kivity9c1b96e2009-06-09 12:37:58 +03001384.2 KVM_CREATE_VM
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100139-----------------
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300140
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100141:Capability: basic
142:Architectures: all
143:Type: system ioctl
144:Parameters: machine type identifier (KVM_VM_*)
145:Returns: a VM fd that can be used to control the new virtual machine.
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300146
Jann Hornbcb85c82017-04-24 11:16:49 +0200147The new VM has no virtual cpus and no memory.
James Hogana8a3c422017-03-14 10:15:19 +0000148You probably want to use 0 as machine type.
Carsten Ottee08b9632012-01-04 10:25:20 +0100149
150In order to create user controlled virtual machines on S390, check
151KVM_CAP_S390_UCONTROL and use the flag KVM_VM_S390_UCONTROL as
152privileged user (CAP_SYS_ADMIN).
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300153
James Hogana8a3c422017-03-14 10:15:19 +0000154To use hardware assisted virtualization on MIPS (VZ ASE) rather than
155the default trap & emulate implementation (which changes the virtual
156memory layout to fit in user mode), check KVM_CAP_MIPS_VZ and use the
157flag KVM_VM_MIPS_VZ.
158
Jan Kiszka414fa982012-04-24 16:40:15 +0200159
Suzuki K Poulose233a7cb2018-09-26 17:32:54 +0100160On arm64, the physical address size for a VM (IPA Size limit) is limited
161to 40bits by default. The limit can be configured if the host supports the
162extension KVM_CAP_ARM_VM_IPA_SIZE. When supported, use
163KVM_VM_TYPE_ARM_IPA_SIZE(IPA_Bits) to set the size in the machine type
164identifier, where IPA_Bits is the maximum width of any physical
165address used by the VM. The IPA_Bits is encoded in bits[7-0] of the
166machine type identifier.
167
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100168e.g, to configure a guest to use 48bit physical address size::
Suzuki K Poulose233a7cb2018-09-26 17:32:54 +0100169
170 vm_fd = ioctl(dev_fd, KVM_CREATE_VM, KVM_VM_TYPE_ARM_IPA_SIZE(48));
171
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100172The requested size (IPA_Bits) must be:
Suzuki K Poulose233a7cb2018-09-26 17:32:54 +0100173
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100174 == =========================================================
175 0 Implies default size, 40bits (for backward compatibility)
176 N Implies N bits, where N is a positive integer such that,
Suzuki K Poulose233a7cb2018-09-26 17:32:54 +0100177 32 <= N <= Host_IPA_Limit
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100178 == =========================================================
Suzuki K Poulose233a7cb2018-09-26 17:32:54 +0100179
180Host_IPA_Limit is the maximum possible value for IPA_Bits on the host and
181is dependent on the CPU capability and the kernel configuration. The limit can
182be retrieved using KVM_CAP_ARM_VM_IPA_SIZE of the KVM_CHECK_EXTENSION
183ioctl() at run-time.
184
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
Randy Dunlap3747c5d2020-07-03 14:29:06 -0700539 -EINVAL the irq number is invalid
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100540 -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
Xiaoyao Li18964092020-07-08 14:50:47 +0800672Note, when this IOCTL fails, KVM gives no guarantees that previous valid CPUID
673configuration (if there is) is not corrupted. Userspace can get a copy of the
674resulting CPUID configuration through KVM_GET_CPUID2 in case.
675
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100676::
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300677
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100678 struct kvm_cpuid_entry {
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300679 __u32 function;
680 __u32 eax;
681 __u32 ebx;
682 __u32 ecx;
683 __u32 edx;
684 __u32 padding;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100685 };
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300686
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100687 /* for KVM_SET_CPUID */
688 struct kvm_cpuid {
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300689 __u32 nent;
690 __u32 padding;
691 struct kvm_cpuid_entry entries[0];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100692 };
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300693
Jan Kiszka414fa982012-04-24 16:40:15 +0200694
Paul Bolle68ba6972011-02-15 00:05:59 +01006954.21 KVM_SET_SIGNAL_MASK
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100696------------------------
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300697
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100698:Capability: basic
699:Architectures: all
700:Type: vcpu ioctl
701:Parameters: struct kvm_signal_mask (in)
702:Returns: 0 on success, -1 on error
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300703
704Defines which signals are blocked during execution of KVM_RUN. This
705signal mask temporarily overrides the threads signal mask. Any
706unblocked signal received (except SIGKILL and SIGSTOP, which retain
707their traditional behaviour) will cause KVM_RUN to return with -EINTR.
708
709Note the signal will only be delivered if not blocked by the original
710signal mask.
711
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100712::
713
714 /* for KVM_SET_SIGNAL_MASK */
715 struct kvm_signal_mask {
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300716 __u32 len;
717 __u8 sigset[0];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100718 };
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300719
Jan Kiszka414fa982012-04-24 16:40:15 +0200720
Paul Bolle68ba6972011-02-15 00:05:59 +01007214.22 KVM_GET_FPU
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100722----------------
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300723
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100724:Capability: basic
725:Architectures: x86
726:Type: vcpu ioctl
727:Parameters: struct kvm_fpu (out)
728:Returns: 0 on success, -1 on error
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300729
730Reads the floating point state from the vcpu.
731
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100732::
733
734 /* for KVM_GET_FPU and KVM_SET_FPU */
735 struct kvm_fpu {
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300736 __u8 fpr[8][16];
737 __u16 fcw;
738 __u16 fsw;
739 __u8 ftwx; /* in fxsave format */
740 __u8 pad1;
741 __u16 last_opcode;
742 __u64 last_ip;
743 __u64 last_dp;
744 __u8 xmm[16][16];
745 __u32 mxcsr;
746 __u32 pad2;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100747 };
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300748
Jan Kiszka414fa982012-04-24 16:40:15 +0200749
Paul Bolle68ba6972011-02-15 00:05:59 +01007504.23 KVM_SET_FPU
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100751----------------
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300752
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100753:Capability: basic
754:Architectures: x86
755:Type: vcpu ioctl
756:Parameters: struct kvm_fpu (in)
757:Returns: 0 on success, -1 on error
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300758
759Writes the floating point state to the vcpu.
760
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100761::
762
763 /* for KVM_GET_FPU and KVM_SET_FPU */
764 struct kvm_fpu {
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300765 __u8 fpr[8][16];
766 __u16 fcw;
767 __u16 fsw;
768 __u8 ftwx; /* in fxsave format */
769 __u8 pad1;
770 __u16 last_opcode;
771 __u64 last_ip;
772 __u64 last_dp;
773 __u8 xmm[16][16];
774 __u32 mxcsr;
775 __u32 pad2;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100776 };
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300777
Jan Kiszka414fa982012-04-24 16:40:15 +0200778
Paul Bolle68ba6972011-02-15 00:05:59 +01007794.24 KVM_CREATE_IRQCHIP
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100780-----------------------
Avi Kivity5dadbfd2009-08-23 17:08:04 +0300781
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100782:Capability: KVM_CAP_IRQCHIP, KVM_CAP_S390_IRQCHIP (s390)
783:Architectures: x86, ARM, arm64, s390
784:Type: vm ioctl
785:Parameters: none
786:Returns: 0 on success, -1 on error
Avi Kivity5dadbfd2009-08-23 17:08:04 +0300787
Andre Przywaraac3d3732014-06-03 10:26:30 +0200788Creates an interrupt controller model in the kernel.
789On x86, creates a virtual ioapic, a virtual PIC (two PICs, nested), and sets up
790future vcpus to have a local APIC. IRQ routing for GSIs 0-15 is set to both
791PIC and IOAPIC; GSI 16-23 only go to the IOAPIC.
792On ARM/arm64, a GICv2 is created. Any other GIC versions require the usage of
793KVM_CREATE_DEVICE, which also supports creating a GICv2. Using
794KVM_CREATE_DEVICE is preferred over KVM_CREATE_IRQCHIP for GICv2.
795On s390, a dummy irq routing table is created.
Cornelia Huck84223592013-07-15 13:36:01 +0200796
797Note that on s390 the KVM_CAP_S390_IRQCHIP vm capability needs to be enabled
798before KVM_CREATE_IRQCHIP can be used.
Avi Kivity5dadbfd2009-08-23 17:08:04 +0300799
Jan Kiszka414fa982012-04-24 16:40:15 +0200800
Paul Bolle68ba6972011-02-15 00:05:59 +01008014.25 KVM_IRQ_LINE
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100802-----------------
Avi Kivity5dadbfd2009-08-23 17:08:04 +0300803
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100804:Capability: KVM_CAP_IRQCHIP
805:Architectures: x86, arm, arm64
806:Type: vm ioctl
807:Parameters: struct kvm_irq_level
808:Returns: 0 on success, -1 on error
Avi Kivity5dadbfd2009-08-23 17:08:04 +0300809
810Sets the level of a GSI input to the interrupt controller model in the kernel.
Christoffer Dall86ce8532013-01-20 18:28:08 -0500811On some architectures it is required that an interrupt controller model has
812been previously created with KVM_CREATE_IRQCHIP. Note that edge-triggered
813interrupts require the level to be set to 1 and then back to 0.
814
Gabriel L. Somlo100943c2014-02-27 23:06:17 -0500815On real hardware, interrupt pins can be active-low or active-high. This
816does not matter for the level field of struct kvm_irq_level: 1 always
817means active (asserted), 0 means inactive (deasserted).
818
819x86 allows the operating system to program the interrupt polarity
820(active-low/active-high) for level-triggered interrupts, and KVM used
821to consider the polarity. However, due to bitrot in the handling of
822active-low interrupts, the above convention is now valid on x86 too.
823This is signaled by KVM_CAP_X86_IOAPIC_POLARITY_IGNORED. Userspace
824should not present interrupts to the guest as active-low unless this
825capability is present (or unless it is not using the in-kernel irqchip,
826of course).
827
828
Marc Zyngier379e04c72013-04-02 17:46:31 +0100829ARM/arm64 can signal an interrupt either at the CPU level, or at the
830in-kernel irqchip (GIC), and for in-kernel irqchip can tell the GIC to
831use PPIs designated for specific cpus. The irq field is interpreted
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100832like this::
Christoffer Dall86ce8532013-01-20 18:28:08 -0500833
Marc Zyngier92f35b72019-08-18 14:09:47 +0100834  bits: | 31 ... 28 | 27 ... 24 | 23 ... 16 | 15 ... 0 |
835 field: | vcpu2_index | irq_type | vcpu_index | irq_id |
Christoffer Dall86ce8532013-01-20 18:28:08 -0500836
837The irq_type field has the following values:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100838
839- irq_type[0]:
840 out-of-kernel GIC: irq_id 0 is IRQ, irq_id 1 is FIQ
841- irq_type[1]:
842 in-kernel GIC: SPI, irq_id between 32 and 1019 (incl.)
Christoffer Dall86ce8532013-01-20 18:28:08 -0500843 (the vcpu_index field is ignored)
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100844- irq_type[2]:
845 in-kernel GIC: PPI, irq_id between 16 and 31 (incl.)
Christoffer Dall86ce8532013-01-20 18:28:08 -0500846
847(The irq_id field thus corresponds nicely to the IRQ ID in the ARM GIC specs)
848
Gabriel L. Somlo100943c2014-02-27 23:06:17 -0500849In both cases, level is used to assert/deassert the line.
Avi Kivity5dadbfd2009-08-23 17:08:04 +0300850
Marc Zyngier92f35b72019-08-18 14:09:47 +0100851When KVM_CAP_ARM_IRQ_LINE_LAYOUT_2 is supported, the target vcpu is
852identified as (256 * vcpu2_index + vcpu_index). Otherwise, vcpu2_index
853must be zero.
854
855Note that on arm/arm64, the KVM_CAP_IRQCHIP capability only conditions
856injection of interrupts for the in-kernel irqchip. KVM_IRQ_LINE can always
857be used for a userspace interrupt controller.
858
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100859::
860
861 struct kvm_irq_level {
Avi Kivity5dadbfd2009-08-23 17:08:04 +0300862 union {
863 __u32 irq; /* GSI */
864 __s32 status; /* not used for KVM_IRQ_LEVEL */
865 };
866 __u32 level; /* 0 or 1 */
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100867 };
Avi Kivity5dadbfd2009-08-23 17:08:04 +0300868
Jan Kiszka414fa982012-04-24 16:40:15 +0200869
Paul Bolle68ba6972011-02-15 00:05:59 +01008704.26 KVM_GET_IRQCHIP
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100871--------------------
Avi Kivity5dadbfd2009-08-23 17:08:04 +0300872
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100873:Capability: KVM_CAP_IRQCHIP
874:Architectures: x86
875:Type: vm ioctl
876:Parameters: struct kvm_irqchip (in/out)
877:Returns: 0 on success, -1 on error
Avi Kivity5dadbfd2009-08-23 17:08:04 +0300878
879Reads the state of a kernel interrupt controller created with
880KVM_CREATE_IRQCHIP into a buffer provided by the caller.
881
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100882::
883
884 struct kvm_irqchip {
Avi Kivity5dadbfd2009-08-23 17:08:04 +0300885 __u32 chip_id; /* 0 = PIC1, 1 = PIC2, 2 = IOAPIC */
886 __u32 pad;
887 union {
888 char dummy[512]; /* reserving space */
889 struct kvm_pic_state pic;
890 struct kvm_ioapic_state ioapic;
891 } chip;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100892 };
Avi Kivity5dadbfd2009-08-23 17:08:04 +0300893
Jan Kiszka414fa982012-04-24 16:40:15 +0200894
Paul Bolle68ba6972011-02-15 00:05:59 +01008954.27 KVM_SET_IRQCHIP
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100896--------------------
Avi Kivity5dadbfd2009-08-23 17:08:04 +0300897
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100898:Capability: KVM_CAP_IRQCHIP
899:Architectures: x86
900:Type: vm ioctl
901:Parameters: struct kvm_irqchip (in)
902:Returns: 0 on success, -1 on error
Avi Kivity5dadbfd2009-08-23 17:08:04 +0300903
904Sets the state of a kernel interrupt controller created with
905KVM_CREATE_IRQCHIP from a buffer provided by the caller.
906
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100907::
908
909 struct kvm_irqchip {
Avi Kivity5dadbfd2009-08-23 17:08:04 +0300910 __u32 chip_id; /* 0 = PIC1, 1 = PIC2, 2 = IOAPIC */
911 __u32 pad;
912 union {
913 char dummy[512]; /* reserving space */
914 struct kvm_pic_state pic;
915 struct kvm_ioapic_state ioapic;
916 } chip;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100917 };
Avi Kivity5dadbfd2009-08-23 17:08:04 +0300918
Jan Kiszka414fa982012-04-24 16:40:15 +0200919
Paul Bolle68ba6972011-02-15 00:05:59 +01009204.28 KVM_XEN_HVM_CONFIG
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100921-----------------------
Ed Swierkffde22a2009-10-15 15:21:43 -0700922
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100923:Capability: KVM_CAP_XEN_HVM
924:Architectures: x86
925:Type: vm ioctl
926:Parameters: struct kvm_xen_hvm_config (in)
927:Returns: 0 on success, -1 on error
Ed Swierkffde22a2009-10-15 15:21:43 -0700928
929Sets the MSR that the Xen HVM guest uses to initialize its hypercall
930page, and provides the starting address and size of the hypercall
931blobs in userspace. When the guest writes the MSR, kvm copies one
932page of a blob (32- or 64-bit, depending on the vcpu mode) to guest
933memory.
934
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100935::
936
937 struct kvm_xen_hvm_config {
Ed Swierkffde22a2009-10-15 15:21:43 -0700938 __u32 flags;
939 __u32 msr;
940 __u64 blob_addr_32;
941 __u64 blob_addr_64;
942 __u8 blob_size_32;
943 __u8 blob_size_64;
944 __u8 pad2[30];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100945 };
Ed Swierkffde22a2009-10-15 15:21:43 -0700946
Jan Kiszka414fa982012-04-24 16:40:15 +0200947
Paul Bolle68ba6972011-02-15 00:05:59 +01009484.29 KVM_GET_CLOCK
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100949------------------
Glauber Costaafbcf7a2009-10-16 15:28:36 -0400950
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100951:Capability: KVM_CAP_ADJUST_CLOCK
952:Architectures: x86
953:Type: vm ioctl
954:Parameters: struct kvm_clock_data (out)
955:Returns: 0 on success, -1 on error
Glauber Costaafbcf7a2009-10-16 15:28:36 -0400956
957Gets the current timestamp of kvmclock as seen by the current guest. In
958conjunction with KVM_SET_CLOCK, it is used to ensure monotonicity on scenarios
959such as migration.
960
Paolo Bonzinie3fd9a92016-11-09 17:48:15 +0100961When KVM_CAP_ADJUST_CLOCK is passed to KVM_CHECK_EXTENSION, it returns the
962set of bits that KVM can return in struct kvm_clock_data's flag member.
963
964The only flag defined now is KVM_CLOCK_TSC_STABLE. If set, the returned
965value is the exact kvmclock value seen by all VCPUs at the instant
966when KVM_GET_CLOCK was called. If clear, the returned value is simply
967CLOCK_MONOTONIC plus a constant offset; the offset can be modified
968with KVM_SET_CLOCK. KVM will try to make all VCPUs follow this clock,
969but the exact value read by each VCPU could differ, because the host
970TSC is not stable.
971
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100972::
973
974 struct kvm_clock_data {
Glauber Costaafbcf7a2009-10-16 15:28:36 -0400975 __u64 clock; /* kvmclock current value */
976 __u32 flags;
977 __u32 pad[9];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100978 };
Glauber Costaafbcf7a2009-10-16 15:28:36 -0400979
Jan Kiszka414fa982012-04-24 16:40:15 +0200980
Paul Bolle68ba6972011-02-15 00:05:59 +01009814.30 KVM_SET_CLOCK
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100982------------------
Glauber Costaafbcf7a2009-10-16 15:28:36 -0400983
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100984:Capability: KVM_CAP_ADJUST_CLOCK
985:Architectures: x86
986:Type: vm ioctl
987:Parameters: struct kvm_clock_data (in)
988:Returns: 0 on success, -1 on error
Glauber Costaafbcf7a2009-10-16 15:28:36 -0400989
Wu Fengguang2044892d2009-12-24 09:04:16 +0800990Sets the current timestamp of kvmclock to the value specified in its parameter.
Glauber Costaafbcf7a2009-10-16 15:28:36 -0400991In conjunction with KVM_GET_CLOCK, it is used to ensure monotonicity on scenarios
992such as migration.
993
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100994::
995
996 struct kvm_clock_data {
Glauber Costaafbcf7a2009-10-16 15:28:36 -0400997 __u64 clock; /* kvmclock current value */
998 __u32 flags;
999 __u32 pad[9];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001000 };
Glauber Costaafbcf7a2009-10-16 15:28:36 -04001001
Jan Kiszka414fa982012-04-24 16:40:15 +02001002
Paul Bolle68ba6972011-02-15 00:05:59 +010010034.31 KVM_GET_VCPU_EVENTS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001004------------------------
Jan Kiszka3cfc3092009-11-12 01:04:25 +01001005
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001006:Capability: KVM_CAP_VCPU_EVENTS
1007:Extended by: KVM_CAP_INTR_SHADOW
1008:Architectures: x86, arm, arm64
1009:Type: vcpu ioctl
1010:Parameters: struct kvm_vcpu_event (out)
1011:Returns: 0 on success, -1 on error
Jan Kiszka3cfc3092009-11-12 01:04:25 +01001012
Dongjiu Gengb7b27fa2018-07-19 16:24:22 +01001013X86:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001014^^^^
Dongjiu Gengb7b27fa2018-07-19 16:24:22 +01001015
Jan Kiszka3cfc3092009-11-12 01:04:25 +01001016Gets currently pending exceptions, interrupts, and NMIs as well as related
1017states of the vcpu.
1018
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001019::
1020
1021 struct kvm_vcpu_events {
Jan Kiszka3cfc3092009-11-12 01:04:25 +01001022 struct {
1023 __u8 injected;
1024 __u8 nr;
1025 __u8 has_error_code;
Jim Mattson59073aa2018-10-16 14:29:20 -07001026 __u8 pending;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01001027 __u32 error_code;
1028 } exception;
1029 struct {
1030 __u8 injected;
1031 __u8 nr;
1032 __u8 soft;
Jan Kiszka48005f62010-02-19 19:38:07 +01001033 __u8 shadow;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01001034 } interrupt;
1035 struct {
1036 __u8 injected;
1037 __u8 pending;
1038 __u8 masked;
1039 __u8 pad;
1040 } nmi;
1041 __u32 sipi_vector;
Jan Kiszkadab4b912009-12-06 18:24:15 +01001042 __u32 flags;
Paolo Bonzinif0778252015-04-01 15:06:40 +02001043 struct {
1044 __u8 smm;
1045 __u8 pending;
1046 __u8 smm_inside_nmi;
1047 __u8 latched_init;
1048 } smi;
Jim Mattson59073aa2018-10-16 14:29:20 -07001049 __u8 reserved[27];
1050 __u8 exception_has_payload;
1051 __u64 exception_payload;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001052 };
Jan Kiszka3cfc3092009-11-12 01:04:25 +01001053
Jim Mattson59073aa2018-10-16 14:29:20 -07001054The following bits are defined in the flags field:
Jan Kiszka48005f62010-02-19 19:38:07 +01001055
Jim Mattson59073aa2018-10-16 14:29:20 -07001056- KVM_VCPUEVENT_VALID_SHADOW may be set to signal that
Paolo Bonzinif0778252015-04-01 15:06:40 +02001057 interrupt.shadow contains a valid state.
1058
Jim Mattson59073aa2018-10-16 14:29:20 -07001059- KVM_VCPUEVENT_VALID_SMM may be set to signal that smi contains a
1060 valid state.
1061
1062- KVM_VCPUEVENT_VALID_PAYLOAD may be set to signal that the
1063 exception_has_payload, exception_payload, and exception.pending
1064 fields contain a valid state. This bit will be set whenever
1065 KVM_CAP_EXCEPTION_PAYLOAD is enabled.
Jan Kiszka414fa982012-04-24 16:40:15 +02001066
James Morseb0960b92018-07-19 16:24:25 +01001067ARM/ARM64:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001068^^^^^^^^^^
Dongjiu Gengb7b27fa2018-07-19 16:24:22 +01001069
1070If the guest accesses a device that is being emulated by the host kernel in
1071such a way that a real device would generate a physical SError, KVM may make
1072a virtual SError pending for that VCPU. This system error interrupt remains
1073pending until the guest takes the exception by unmasking PSTATE.A.
1074
1075Running the VCPU may cause it to take a pending SError, or make an access that
1076causes an SError to become pending. The event's description is only valid while
1077the VPCU is not running.
1078
1079This API provides a way to read and write the pending 'event' state that is not
1080visible to the guest. To save, restore or migrate a VCPU the struct representing
1081the state can be read then written using this GET/SET API, along with the other
1082guest-visible registers. It is not possible to 'cancel' an SError that has been
1083made pending.
1084
1085A device being emulated in user-space may also wish to generate an SError. To do
1086this the events structure can be populated by user-space. The current state
1087should be read first, to ensure no existing SError is pending. If an existing
1088SError is pending, the architecture's 'Multiple SError interrupts' rules should
1089be followed. (2.5.3 of DDI0587.a "ARM Reliability, Availability, and
1090Serviceability (RAS) Specification").
1091
Dongjiu Gengbe26b3a2018-07-19 16:24:23 +01001092SError exceptions always have an ESR value. Some CPUs have the ability to
1093specify what the virtual SError's ESR value should be. These systems will
Dongjiu Geng688e0582018-08-20 17:39:25 -04001094advertise KVM_CAP_ARM_INJECT_SERROR_ESR. In this case exception.has_esr will
Dongjiu Gengbe26b3a2018-07-19 16:24:23 +01001095always have a non-zero value when read, and the agent making an SError pending
1096should specify the ISS field in the lower 24 bits of exception.serror_esr. If
Dongjiu Geng688e0582018-08-20 17:39:25 -04001097the system supports KVM_CAP_ARM_INJECT_SERROR_ESR, but user-space sets the events
Dongjiu Gengbe26b3a2018-07-19 16:24:23 +01001098with exception.has_esr as zero, KVM will choose an ESR.
1099
1100Specifying exception.has_esr on a system that does not support it will return
1101-EINVAL. Setting anything other than the lower 24bits of exception.serror_esr
1102will return -EINVAL.
1103
Christoffer Dallda345172019-10-11 13:07:06 +02001104It is not possible to read back a pending external abort (injected via
1105KVM_SET_VCPU_EVENTS or otherwise) because such an exception is always delivered
1106directly to the virtual CPU).
1107
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001108::
Christoffer Dallda345172019-10-11 13:07:06 +02001109
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001110 struct kvm_vcpu_events {
Dongjiu Gengb7b27fa2018-07-19 16:24:22 +01001111 struct {
1112 __u8 serror_pending;
1113 __u8 serror_has_esr;
Christoffer Dallda345172019-10-11 13:07:06 +02001114 __u8 ext_dabt_pending;
Dongjiu Gengb7b27fa2018-07-19 16:24:22 +01001115 /* Align it to 8 bytes */
Christoffer Dallda345172019-10-11 13:07:06 +02001116 __u8 pad[5];
Dongjiu Gengb7b27fa2018-07-19 16:24:22 +01001117 __u64 serror_esr;
1118 } exception;
1119 __u32 reserved[12];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001120 };
Dongjiu Gengb7b27fa2018-07-19 16:24:22 +01001121
Paul Bolle68ba6972011-02-15 00:05:59 +010011224.32 KVM_SET_VCPU_EVENTS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001123------------------------
Jan Kiszka3cfc3092009-11-12 01:04:25 +01001124
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001125:Capability: KVM_CAP_VCPU_EVENTS
1126:Extended by: KVM_CAP_INTR_SHADOW
1127:Architectures: x86, arm, arm64
1128:Type: vcpu ioctl
1129:Parameters: struct kvm_vcpu_event (in)
1130:Returns: 0 on success, -1 on error
Jan Kiszka3cfc3092009-11-12 01:04:25 +01001131
Dongjiu Gengb7b27fa2018-07-19 16:24:22 +01001132X86:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001133^^^^
Dongjiu Gengb7b27fa2018-07-19 16:24:22 +01001134
Jan Kiszka3cfc3092009-11-12 01:04:25 +01001135Set pending exceptions, interrupts, and NMIs as well as related states of the
1136vcpu.
1137
1138See KVM_GET_VCPU_EVENTS for the data structure.
1139
Jan Kiszkadab4b912009-12-06 18:24:15 +01001140Fields that may be modified asynchronously by running VCPUs can be excluded
Paolo Bonzinif0778252015-04-01 15:06:40 +02001141from the update. These fields are nmi.pending, sipi_vector, smi.smm,
1142smi.pending. Keep the corresponding bits in the flags field cleared to
1143suppress overwriting the current in-kernel state. The bits are:
Jan Kiszkadab4b912009-12-06 18:24:15 +01001144
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001145=============================== ==================================
1146KVM_VCPUEVENT_VALID_NMI_PENDING transfer nmi.pending to the kernel
1147KVM_VCPUEVENT_VALID_SIPI_VECTOR transfer sipi_vector
1148KVM_VCPUEVENT_VALID_SMM transfer the smi sub-struct.
1149=============================== ==================================
Jan Kiszkadab4b912009-12-06 18:24:15 +01001150
Jan Kiszka48005f62010-02-19 19:38:07 +01001151If KVM_CAP_INTR_SHADOW is available, KVM_VCPUEVENT_VALID_SHADOW can be set in
1152the flags field to signal that interrupt.shadow contains a valid state and
1153shall be written into the VCPU.
1154
Paolo Bonzinif0778252015-04-01 15:06:40 +02001155KVM_VCPUEVENT_VALID_SMM can only be set if KVM_CAP_X86_SMM is available.
1156
Jim Mattson59073aa2018-10-16 14:29:20 -07001157If KVM_CAP_EXCEPTION_PAYLOAD is enabled, KVM_VCPUEVENT_VALID_PAYLOAD
1158can be set in the flags field to signal that the
1159exception_has_payload, exception_payload, and exception.pending fields
1160contain a valid state and shall be written into the VCPU.
1161
James Morseb0960b92018-07-19 16:24:25 +01001162ARM/ARM64:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001163^^^^^^^^^^
Dongjiu Gengb7b27fa2018-07-19 16:24:22 +01001164
Christoffer Dallda345172019-10-11 13:07:06 +02001165User space may need to inject several types of events to the guest.
1166
Dongjiu Gengb7b27fa2018-07-19 16:24:22 +01001167Set the pending SError exception state for this VCPU. It is not possible to
1168'cancel' an Serror that has been made pending.
1169
Christoffer Dallda345172019-10-11 13:07:06 +02001170If the guest performed an access to I/O memory which could not be handled by
1171userspace, for example because of missing instruction syndrome decode
1172information or because there is no device mapped at the accessed IPA, then
1173userspace can ask the kernel to inject an external abort using the address
1174from the exiting fault on the VCPU. It is a programming error to set
1175ext_dabt_pending after an exit which was not either KVM_EXIT_MMIO or
1176KVM_EXIT_ARM_NISV. This feature is only available if the system supports
1177KVM_CAP_ARM_INJECT_EXT_DABT. This is a helper which provides commonality in
1178how userspace reports accesses for the above cases to guests, across different
1179userspace implementations. Nevertheless, userspace can still emulate all Arm
1180exceptions by manipulating individual registers using the KVM_SET_ONE_REG API.
1181
Dongjiu Gengb7b27fa2018-07-19 16:24:22 +01001182See KVM_GET_VCPU_EVENTS for the data structure.
1183
Jan Kiszka414fa982012-04-24 16:40:15 +02001184
Paul Bolle68ba6972011-02-15 00:05:59 +010011854.33 KVM_GET_DEBUGREGS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001186----------------------
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01001187
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001188:Capability: KVM_CAP_DEBUGREGS
1189:Architectures: x86
1190:Type: vm ioctl
1191:Parameters: struct kvm_debugregs (out)
1192:Returns: 0 on success, -1 on error
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01001193
1194Reads debug registers from the vcpu.
1195
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001196::
1197
1198 struct kvm_debugregs {
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01001199 __u64 db[4];
1200 __u64 dr6;
1201 __u64 dr7;
1202 __u64 flags;
1203 __u64 reserved[9];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001204 };
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01001205
Jan Kiszka414fa982012-04-24 16:40:15 +02001206
Paul Bolle68ba6972011-02-15 00:05:59 +010012074.34 KVM_SET_DEBUGREGS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001208----------------------
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01001209
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001210:Capability: KVM_CAP_DEBUGREGS
1211:Architectures: x86
1212:Type: vm ioctl
1213:Parameters: struct kvm_debugregs (in)
1214:Returns: 0 on success, -1 on error
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01001215
1216Writes debug registers into the vcpu.
1217
1218See KVM_GET_DEBUGREGS for the data structure. The flags field is unused
1219yet and must be cleared on entry.
1220
Jan Kiszka414fa982012-04-24 16:40:15 +02001221
Paul Bolle68ba6972011-02-15 00:05:59 +010012224.35 KVM_SET_USER_MEMORY_REGION
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001223-------------------------------
Avi Kivity0f2d8f42010-03-25 12:16:48 +02001224
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001225:Capability: KVM_CAP_USER_MEMORY
1226:Architectures: all
1227:Type: vm ioctl
1228:Parameters: struct kvm_userspace_memory_region (in)
1229:Returns: 0 on success, -1 on error
Avi Kivity0f2d8f42010-03-25 12:16:48 +02001230
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001231::
1232
1233 struct kvm_userspace_memory_region {
Avi Kivity0f2d8f42010-03-25 12:16:48 +02001234 __u32 slot;
1235 __u32 flags;
1236 __u64 guest_phys_addr;
1237 __u64 memory_size; /* bytes */
1238 __u64 userspace_addr; /* start of the userspace allocated memory */
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001239 };
Avi Kivity0f2d8f42010-03-25 12:16:48 +02001240
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001241 /* for kvm_memory_region::flags */
1242 #define KVM_MEM_LOG_DIRTY_PAGES (1UL << 0)
1243 #define KVM_MEM_READONLY (1UL << 1)
Avi Kivity0f2d8f42010-03-25 12:16:48 +02001244
Paolo Bonzinie2788c42019-03-28 17:22:31 +01001245This ioctl allows the user to create, modify or delete a guest physical
1246memory slot. Bits 0-15 of "slot" specify the slot id and this value
1247should be less than the maximum number of user memory slots supported per
Paolo Bonzinic110ae52019-03-28 17:24:03 +01001248VM. The maximum allowed slots can be queried using KVM_CAP_NR_MEMSLOTS.
1249Slots may not overlap in guest physical address space.
Avi Kivity0f2d8f42010-03-25 12:16:48 +02001250
Paolo Bonzinif481b062015-05-17 17:30:37 +02001251If KVM_CAP_MULTI_ADDRESS_SPACE is available, bits 16-31 of "slot"
1252specifies the address space which is being modified. They must be
1253less than the value that KVM_CHECK_EXTENSION returns for the
1254KVM_CAP_MULTI_ADDRESS_SPACE capability. Slots in separate address spaces
1255are unrelated; the restriction on overlapping slots only applies within
1256each address space.
1257
Paolo Bonzinie2788c42019-03-28 17:22:31 +01001258Deleting a slot is done by passing zero for memory_size. When changing
1259an existing slot, it may be moved in the guest physical memory space,
1260or its flags may be modified, but it may not be resized.
1261
Avi Kivity0f2d8f42010-03-25 12:16:48 +02001262Memory for the region is taken starting at the address denoted by the
1263field userspace_addr, which must point at user addressable memory for
1264the entire memory slot size. Any object may back this memory, including
1265anonymous memory, ordinary files, and hugetlbfs.
1266
Marc Zyngier256a0042021-01-21 12:08:15 +00001267On architectures that support a form of address tagging, userspace_addr must
1268be an untagged address.
1269
Avi Kivity0f2d8f42010-03-25 12:16:48 +02001270It is recommended that the lower 21 bits of guest_phys_addr and userspace_addr
1271be identical. This allows large pages in the guest to be backed by large
1272pages in the host.
1273
Takuya Yoshikawa75d61fb2013-01-30 19:40:41 +09001274The flags field supports two flags: KVM_MEM_LOG_DIRTY_PAGES and
1275KVM_MEM_READONLY. The former can be set to instruct KVM to keep track of
1276writes to memory within the slot. See KVM_GET_DIRTY_LOG ioctl to know how to
1277use it. The latter can be set, if KVM_CAP_READONLY_MEM capability allows it,
1278to make a new slot read-only. In this case, writes to this memory will be
1279posted to userspace as KVM_EXIT_MMIO exits.
Avi Kivity0f2d8f42010-03-25 12:16:48 +02001280
Jan Kiszka7efd8fa2012-09-07 13:17:47 +02001281When the KVM_CAP_SYNC_MMU capability is available, changes in the backing of
1282the memory region are automatically reflected into the guest. For example, an
1283mmap() that affects the region will be made visible immediately. Another
1284example is madvise(MADV_DROP).
Avi Kivity0f2d8f42010-03-25 12:16:48 +02001285
1286It is recommended to use this API instead of the KVM_SET_MEMORY_REGION ioctl.
1287The KVM_SET_MEMORY_REGION does not allow fine grained control over memory
1288allocation and is deprecated.
Jan Kiszka3cfc3092009-11-12 01:04:25 +01001289
Jan Kiszka414fa982012-04-24 16:40:15 +02001290
Paul Bolle68ba6972011-02-15 00:05:59 +010012914.36 KVM_SET_TSS_ADDR
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001292---------------------
Avi Kivity8a5416d2010-03-25 12:27:30 +02001293
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001294:Capability: KVM_CAP_SET_TSS_ADDR
1295:Architectures: x86
1296:Type: vm ioctl
1297:Parameters: unsigned long tss_address (in)
1298:Returns: 0 on success, -1 on error
Avi Kivity8a5416d2010-03-25 12:27:30 +02001299
1300This ioctl defines the physical address of a three-page region in the guest
1301physical address space. The region must be within the first 4GB of the
1302guest physical address space and must not conflict with any memory slot
1303or any mmio address. The guest may malfunction if it accesses this memory
1304region.
1305
1306This ioctl is required on Intel-based hosts. This is needed on Intel hardware
1307because of a quirk in the virtualization implementation (see the internals
1308documentation when it pops into existence).
1309
Jan Kiszka414fa982012-04-24 16:40:15 +02001310
Paul Bolle68ba6972011-02-15 00:05:59 +010013114.37 KVM_ENABLE_CAP
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001312-------------------
Alexander Graf71fbfd52010-03-24 21:48:29 +01001313
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001314:Capability: KVM_CAP_ENABLE_CAP
1315:Architectures: mips, ppc, s390
1316:Type: vcpu ioctl
1317:Parameters: struct kvm_enable_cap (in)
1318:Returns: 0 on success; -1 on error
Paolo Bonzinie5d83c72017-02-16 10:40:56 +01001319
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001320:Capability: KVM_CAP_ENABLE_CAP_VM
1321:Architectures: all
Quentin Perretd1fd90b2021-01-08 16:53:49 +00001322:Type: vm ioctl
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001323:Parameters: struct kvm_enable_cap (in)
1324:Returns: 0 on success; -1 on error
Alexander Graf71fbfd52010-03-24 21:48:29 +01001325
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001326.. note::
1327
1328 Not all extensions are enabled by default. Using this ioctl the application
1329 can enable an extension, making it available to the guest.
Alexander Graf71fbfd52010-03-24 21:48:29 +01001330
1331On systems that do not support this ioctl, it always fails. On systems that
1332do support it, it only works for extensions that are supported for enablement.
1333
1334To check if a capability can be enabled, the KVM_CHECK_EXTENSION ioctl should
1335be used.
1336
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001337::
1338
1339 struct kvm_enable_cap {
Alexander Graf71fbfd52010-03-24 21:48:29 +01001340 /* in */
1341 __u32 cap;
1342
1343The capability that is supposed to get enabled.
1344
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001345::
1346
Alexander Graf71fbfd52010-03-24 21:48:29 +01001347 __u32 flags;
1348
1349A bitfield indicating future enhancements. Has to be 0 for now.
1350
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001351::
1352
Alexander Graf71fbfd52010-03-24 21:48:29 +01001353 __u64 args[4];
1354
1355Arguments for enabling a feature. If a feature needs initial values to
1356function properly, this is the place to put them.
1357
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001358::
1359
Alexander Graf71fbfd52010-03-24 21:48:29 +01001360 __u8 pad[64];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001361 };
Alexander Graf71fbfd52010-03-24 21:48:29 +01001362
Cornelia Huckd938dc52013-10-23 18:26:34 +02001363The vcpu ioctl should be used for vcpu-specific capabilities, the vm ioctl
1364for vm-wide capabilities.
Jan Kiszka414fa982012-04-24 16:40:15 +02001365
Paul Bolle68ba6972011-02-15 00:05:59 +010013664.38 KVM_GET_MP_STATE
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001367---------------------
Avi Kivityb843f062010-04-25 15:51:46 +03001368
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001369:Capability: KVM_CAP_MP_STATE
1370:Architectures: x86, s390, arm, arm64
1371:Type: vcpu ioctl
1372:Parameters: struct kvm_mp_state (out)
1373:Returns: 0 on success; -1 on error
Avi Kivityb843f062010-04-25 15:51:46 +03001374
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001375::
1376
1377 struct kvm_mp_state {
Avi Kivityb843f062010-04-25 15:51:46 +03001378 __u32 mp_state;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001379 };
Avi Kivityb843f062010-04-25 15:51:46 +03001380
1381Returns the vcpu's current "multiprocessing state" (though also valid on
1382uniprocessor guests).
1383
1384Possible values are:
1385
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001386 ========================== ===============================================
1387 KVM_MP_STATE_RUNNABLE the vcpu is currently running [x86,arm/arm64]
1388 KVM_MP_STATE_UNINITIALIZED the vcpu is an application processor (AP)
Tiejun Chenc32a4272014-11-20 11:07:18 +01001389 which has not yet received an INIT signal [x86]
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001390 KVM_MP_STATE_INIT_RECEIVED the vcpu has received an INIT signal, and is
Tiejun Chenc32a4272014-11-20 11:07:18 +01001391 now ready for a SIPI [x86]
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001392 KVM_MP_STATE_HALTED the vcpu has executed a HLT instruction and
Tiejun Chenc32a4272014-11-20 11:07:18 +01001393 is waiting for an interrupt [x86]
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001394 KVM_MP_STATE_SIPI_RECEIVED the vcpu has just received a SIPI (vector
Tiejun Chenc32a4272014-11-20 11:07:18 +01001395 accessible via KVM_GET_VCPU_EVENTS) [x86]
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001396 KVM_MP_STATE_STOPPED the vcpu is stopped [s390,arm/arm64]
1397 KVM_MP_STATE_CHECK_STOP the vcpu is in a special error state [s390]
1398 KVM_MP_STATE_OPERATING the vcpu is operating (running or halted)
David Hildenbrand6352e4d2014-04-10 17:35:00 +02001399 [s390]
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001400 KVM_MP_STATE_LOAD the vcpu is in a special load/startup state
David Hildenbrand6352e4d2014-04-10 17:35:00 +02001401 [s390]
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001402 ========================== ===============================================
Avi Kivityb843f062010-04-25 15:51:46 +03001403
Tiejun Chenc32a4272014-11-20 11:07:18 +01001404On x86, this ioctl is only useful after KVM_CREATE_IRQCHIP. Without an
David Hildenbrand0b4820d2014-05-12 16:05:13 +02001405in-kernel irqchip, the multiprocessing state must be maintained by userspace on
1406these architectures.
Avi Kivityb843f062010-04-25 15:51:46 +03001407
Alex Bennéeecccf0c2015-03-13 17:02:52 +00001408For arm/arm64:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001409^^^^^^^^^^^^^^
Alex Bennéeecccf0c2015-03-13 17:02:52 +00001410
1411The only states that are valid are KVM_MP_STATE_STOPPED and
1412KVM_MP_STATE_RUNNABLE which reflect if the vcpu is paused or not.
Jan Kiszka414fa982012-04-24 16:40:15 +02001413
Paul Bolle68ba6972011-02-15 00:05:59 +010014144.39 KVM_SET_MP_STATE
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001415---------------------
Avi Kivityb843f062010-04-25 15:51:46 +03001416
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001417:Capability: KVM_CAP_MP_STATE
1418:Architectures: x86, s390, arm, arm64
1419:Type: vcpu ioctl
1420:Parameters: struct kvm_mp_state (in)
1421:Returns: 0 on success; -1 on error
Avi Kivityb843f062010-04-25 15:51:46 +03001422
1423Sets the vcpu's current "multiprocessing state"; see KVM_GET_MP_STATE for
1424arguments.
1425
Tiejun Chenc32a4272014-11-20 11:07:18 +01001426On x86, this ioctl is only useful after KVM_CREATE_IRQCHIP. Without an
David Hildenbrand0b4820d2014-05-12 16:05:13 +02001427in-kernel irqchip, the multiprocessing state must be maintained by userspace on
1428these architectures.
Avi Kivityb843f062010-04-25 15:51:46 +03001429
Alex Bennéeecccf0c2015-03-13 17:02:52 +00001430For arm/arm64:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001431^^^^^^^^^^^^^^
Alex Bennéeecccf0c2015-03-13 17:02:52 +00001432
1433The only states that are valid are KVM_MP_STATE_STOPPED and
1434KVM_MP_STATE_RUNNABLE which reflect if the vcpu should be paused or not.
Jan Kiszka414fa982012-04-24 16:40:15 +02001435
Paul Bolle68ba6972011-02-15 00:05:59 +010014364.40 KVM_SET_IDENTITY_MAP_ADDR
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001437------------------------------
Avi Kivity47dbb842010-04-29 12:08:56 +03001438
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001439:Capability: KVM_CAP_SET_IDENTITY_MAP_ADDR
1440:Architectures: x86
1441:Type: vm ioctl
1442:Parameters: unsigned long identity (in)
1443:Returns: 0 on success, -1 on error
Avi Kivity47dbb842010-04-29 12:08:56 +03001444
1445This ioctl defines the physical address of a one-page region in the guest
1446physical address space. The region must be within the first 4GB of the
1447guest physical address space and must not conflict with any memory slot
1448or any mmio address. The guest may malfunction if it accesses this memory
1449region.
1450
David Hildenbrand726b99c2017-08-24 20:51:35 +02001451Setting the address to 0 will result in resetting the address to its default
1452(0xfffbc000).
1453
Avi Kivity47dbb842010-04-29 12:08:56 +03001454This ioctl is required on Intel-based hosts. This is needed on Intel hardware
1455because of a quirk in the virtualization implementation (see the internals
1456documentation when it pops into existence).
1457
David Hildenbrand1af1ac92017-08-24 20:51:36 +02001458Fails if any VCPU has already been created.
Jan Kiszka414fa982012-04-24 16:40:15 +02001459
Paul Bolle68ba6972011-02-15 00:05:59 +010014604.41 KVM_SET_BOOT_CPU_ID
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001461------------------------
Avi Kivity57bc24c2010-04-29 12:12:57 +03001462
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001463:Capability: KVM_CAP_SET_BOOT_CPU_ID
1464:Architectures: x86
1465:Type: vm ioctl
1466:Parameters: unsigned long vcpu_id
1467:Returns: 0 on success, -1 on error
Avi Kivity57bc24c2010-04-29 12:12:57 +03001468
1469Define which vcpu is the Bootstrap Processor (BSP). Values are the same
1470as the vcpu id in KVM_CREATE_VCPU. If this ioctl is not called, the default
1471is vcpu 0.
1472
Jan Kiszka414fa982012-04-24 16:40:15 +02001473
Paul Bolle68ba6972011-02-15 00:05:59 +010014744.42 KVM_GET_XSAVE
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001475------------------
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001476
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001477:Capability: KVM_CAP_XSAVE
1478:Architectures: x86
1479:Type: vcpu ioctl
1480:Parameters: struct kvm_xsave (out)
1481:Returns: 0 on success, -1 on error
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001482
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001483
1484::
1485
1486 struct kvm_xsave {
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001487 __u32 region[1024];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001488 };
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001489
1490This ioctl would copy current vcpu's xsave struct to the userspace.
1491
Jan Kiszka414fa982012-04-24 16:40:15 +02001492
Paul Bolle68ba6972011-02-15 00:05:59 +010014934.43 KVM_SET_XSAVE
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001494------------------
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001495
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001496:Capability: KVM_CAP_XSAVE
1497:Architectures: x86
1498:Type: vcpu ioctl
1499:Parameters: struct kvm_xsave (in)
1500:Returns: 0 on success, -1 on error
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001501
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001502::
1503
1504
1505 struct kvm_xsave {
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001506 __u32 region[1024];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001507 };
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001508
1509This ioctl would copy userspace's xsave struct to the kernel.
1510
Jan Kiszka414fa982012-04-24 16:40:15 +02001511
Paul Bolle68ba6972011-02-15 00:05:59 +010015124.44 KVM_GET_XCRS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001513-----------------
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001514
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001515:Capability: KVM_CAP_XCRS
1516:Architectures: x86
1517:Type: vcpu ioctl
1518:Parameters: struct kvm_xcrs (out)
1519:Returns: 0 on success, -1 on error
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001520
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001521::
1522
1523 struct kvm_xcr {
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001524 __u32 xcr;
1525 __u32 reserved;
1526 __u64 value;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001527 };
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001528
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001529 struct kvm_xcrs {
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001530 __u32 nr_xcrs;
1531 __u32 flags;
1532 struct kvm_xcr xcrs[KVM_MAX_XCRS];
1533 __u64 padding[16];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001534 };
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001535
1536This ioctl would copy current vcpu's xcrs to the userspace.
1537
Jan Kiszka414fa982012-04-24 16:40:15 +02001538
Paul Bolle68ba6972011-02-15 00:05:59 +010015394.45 KVM_SET_XCRS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001540-----------------
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001541
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001542:Capability: KVM_CAP_XCRS
1543:Architectures: x86
1544:Type: vcpu ioctl
1545:Parameters: struct kvm_xcrs (in)
1546:Returns: 0 on success, -1 on error
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001547
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001548::
1549
1550 struct kvm_xcr {
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001551 __u32 xcr;
1552 __u32 reserved;
1553 __u64 value;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001554 };
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001555
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001556 struct kvm_xcrs {
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001557 __u32 nr_xcrs;
1558 __u32 flags;
1559 struct kvm_xcr xcrs[KVM_MAX_XCRS];
1560 __u64 padding[16];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001561 };
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001562
1563This ioctl would set vcpu's xcr to the value userspace specified.
1564
Jan Kiszka414fa982012-04-24 16:40:15 +02001565
Paul Bolle68ba6972011-02-15 00:05:59 +010015664.46 KVM_GET_SUPPORTED_CPUID
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001567----------------------------
Avi Kivityd1535132010-07-14 09:45:21 +03001568
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001569:Capability: KVM_CAP_EXT_CPUID
1570:Architectures: x86
1571:Type: system ioctl
1572:Parameters: struct kvm_cpuid2 (in/out)
1573:Returns: 0 on success, -1 on error
Avi Kivityd1535132010-07-14 09:45:21 +03001574
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001575::
1576
1577 struct kvm_cpuid2 {
Avi Kivityd1535132010-07-14 09:45:21 +03001578 __u32 nent;
1579 __u32 padding;
1580 struct kvm_cpuid_entry2 entries[0];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001581 };
Avi Kivityd1535132010-07-14 09:45:21 +03001582
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001583 #define KVM_CPUID_FLAG_SIGNIFCANT_INDEX BIT(0)
Sean Christopherson7ff6c032020-03-02 15:56:51 -08001584 #define KVM_CPUID_FLAG_STATEFUL_FUNC BIT(1) /* deprecated */
1585 #define KVM_CPUID_FLAG_STATE_READ_NEXT BIT(2) /* deprecated */
Avi Kivityd1535132010-07-14 09:45:21 +03001586
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001587 struct kvm_cpuid_entry2 {
Avi Kivityd1535132010-07-14 09:45:21 +03001588 __u32 function;
1589 __u32 index;
1590 __u32 flags;
1591 __u32 eax;
1592 __u32 ebx;
1593 __u32 ecx;
1594 __u32 edx;
1595 __u32 padding[3];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001596 };
Avi Kivityd1535132010-07-14 09:45:21 +03001597
Jim Mattsondf9cb9c2018-05-24 11:59:54 -07001598This ioctl returns x86 cpuid features which are supported by both the
1599hardware and kvm in its default configuration. Userspace can use the
1600information returned by this ioctl to construct cpuid information (for
1601KVM_SET_CPUID2) that is consistent with hardware, kernel, and
1602userspace capabilities, and with user requirements (for example, the
1603user may wish to constrain cpuid to emulate older hardware, or for
1604feature consistency across a cluster).
1605
1606Note that certain capabilities, such as KVM_CAP_X86_DISABLE_EXITS, may
1607expose cpuid features (e.g. MONITOR) which are not supported by kvm in
1608its default configuration. If userspace enables such capabilities, it
1609is responsible for modifying the results of this ioctl appropriately.
Avi Kivityd1535132010-07-14 09:45:21 +03001610
1611Userspace invokes KVM_GET_SUPPORTED_CPUID by passing a kvm_cpuid2 structure
1612with the 'nent' field indicating the number of entries in the variable-size
1613array 'entries'. If the number of entries is too low to describe the cpu
1614capabilities, an error (E2BIG) is returned. If the number is too high,
1615the 'nent' field is adjusted and an error (ENOMEM) is returned. If the
1616number is just right, the 'nent' field is adjusted to the number of valid
1617entries in the 'entries' array, which is then filled.
1618
1619The entries returned are the host cpuid as returned by the cpuid instruction,
Avi Kivityc39cbd22010-09-12 16:39:11 +02001620with unknown or unsupported features masked out. Some features (for example,
1621x2apic), may not be present in the host cpu, but are exposed by kvm if it can
1622emulate them efficiently. The fields in each entry are defined as follows:
Avi Kivityd1535132010-07-14 09:45:21 +03001623
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001624 function:
1625 the eax value used to obtain the entry
1626
1627 index:
1628 the ecx value used to obtain the entry (for entries that are
Avi Kivityd1535132010-07-14 09:45:21 +03001629 affected by ecx)
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001630
1631 flags:
1632 an OR of zero or more of the following:
1633
Avi Kivityd1535132010-07-14 09:45:21 +03001634 KVM_CPUID_FLAG_SIGNIFCANT_INDEX:
1635 if the index field is valid
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001636
1637 eax, ebx, ecx, edx:
1638 the values returned by the cpuid instruction for
Avi Kivityd1535132010-07-14 09:45:21 +03001639 this function/index combination
1640
Jan Kiszka4d25a0662011-12-21 12:28:29 +01001641The TSC deadline timer feature (CPUID leaf 1, ecx[24]) is always returned
1642as false, since the feature depends on KVM_CREATE_IRQCHIP for local APIC
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001643support. Instead it is reported via::
Jan Kiszka4d25a0662011-12-21 12:28:29 +01001644
1645 ioctl(KVM_CHECK_EXTENSION, KVM_CAP_TSC_DEADLINE_TIMER)
1646
1647if that returns true and you use KVM_CREATE_IRQCHIP, or if you emulate the
1648feature in userspace, then you can enable the feature for KVM_SET_CPUID2.
1649
Jan Kiszka414fa982012-04-24 16:40:15 +02001650
Paul Bolle68ba6972011-02-15 00:05:59 +010016514.47 KVM_PPC_GET_PVINFO
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001652-----------------------
Alexander Graf15711e92010-07-29 14:48:08 +02001653
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001654:Capability: KVM_CAP_PPC_GET_PVINFO
1655:Architectures: ppc
1656:Type: vm ioctl
1657:Parameters: struct kvm_ppc_pvinfo (out)
1658:Returns: 0 on success, !0 on error
Alexander Graf15711e92010-07-29 14:48:08 +02001659
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001660::
1661
1662 struct kvm_ppc_pvinfo {
Alexander Graf15711e92010-07-29 14:48:08 +02001663 __u32 flags;
1664 __u32 hcall[4];
1665 __u8 pad[108];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001666 };
Alexander Graf15711e92010-07-29 14:48:08 +02001667
1668This ioctl fetches PV specific information that need to be passed to the guest
1669using the device tree or other means from vm context.
1670
Liu Yu-B132019202e072012-07-03 05:48:52 +00001671The hcall array defines 4 instructions that make up a hypercall.
Alexander Graf15711e92010-07-29 14:48:08 +02001672
1673If any additional field gets added to this structure later on, a bit for that
1674additional piece of information will be set in the flags bitmap.
1675
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001676The flags bitmap is defined as::
Liu Yu-B132019202e072012-07-03 05:48:52 +00001677
1678 /* the host supports the ePAPR idle hcall
1679 #define KVM_PPC_PVINFO_FLAGS_EV_IDLE (1<<0)
Jan Kiszka414fa982012-04-24 16:40:15 +02001680
Paul Bolle68ba6972011-02-15 00:05:59 +010016814.52 KVM_SET_GSI_ROUTING
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001682------------------------
Jan Kiszka49f48172010-11-16 22:30:07 +01001683
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001684:Capability: KVM_CAP_IRQ_ROUTING
1685:Architectures: x86 s390 arm arm64
1686:Type: vm ioctl
1687:Parameters: struct kvm_irq_routing (in)
1688:Returns: 0 on success, -1 on error
Jan Kiszka49f48172010-11-16 22:30:07 +01001689
1690Sets the GSI routing table entries, overwriting any previously set entries.
1691
Eric Auger180ae7b2016-07-22 16:20:41 +00001692On arm/arm64, GSI routing has the following limitation:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001693
Eric Auger180ae7b2016-07-22 16:20:41 +00001694- GSI routing does not apply to KVM_IRQ_LINE but only to KVM_IRQFD.
1695
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001696::
1697
1698 struct kvm_irq_routing {
Jan Kiszka49f48172010-11-16 22:30:07 +01001699 __u32 nr;
1700 __u32 flags;
1701 struct kvm_irq_routing_entry entries[0];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001702 };
Jan Kiszka49f48172010-11-16 22:30:07 +01001703
1704No flags are specified so far, the corresponding field must be set to zero.
1705
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001706::
1707
1708 struct kvm_irq_routing_entry {
Jan Kiszka49f48172010-11-16 22:30:07 +01001709 __u32 gsi;
1710 __u32 type;
1711 __u32 flags;
1712 __u32 pad;
1713 union {
1714 struct kvm_irq_routing_irqchip irqchip;
1715 struct kvm_irq_routing_msi msi;
Cornelia Huck84223592013-07-15 13:36:01 +02001716 struct kvm_irq_routing_s390_adapter adapter;
Andrey Smetanin5c9194122015-11-10 15:36:34 +03001717 struct kvm_irq_routing_hv_sint hv_sint;
Jan Kiszka49f48172010-11-16 22:30:07 +01001718 __u32 pad[8];
1719 } u;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001720 };
Jan Kiszka49f48172010-11-16 22:30:07 +01001721
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001722 /* gsi routing entry types */
1723 #define KVM_IRQ_ROUTING_IRQCHIP 1
1724 #define KVM_IRQ_ROUTING_MSI 2
1725 #define KVM_IRQ_ROUTING_S390_ADAPTER 3
1726 #define KVM_IRQ_ROUTING_HV_SINT 4
Jan Kiszka49f48172010-11-16 22:30:07 +01001727
Eric Auger76a10b82016-07-22 16:20:37 +00001728flags:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001729
Paolo Bonzini6f49b2f2016-08-04 13:59:56 +02001730- KVM_MSI_VALID_DEVID: used along with KVM_IRQ_ROUTING_MSI routing entry
1731 type, specifies that the devid field contains a valid value. The per-VM
1732 KVM_CAP_MSI_DEVID capability advertises the requirement to provide
1733 the device ID. If this capability is not available, userspace should
1734 never set the KVM_MSI_VALID_DEVID flag as the ioctl might fail.
Eric Auger76a10b82016-07-22 16:20:37 +00001735- zero otherwise
Jan Kiszka49f48172010-11-16 22:30:07 +01001736
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001737::
1738
1739 struct kvm_irq_routing_irqchip {
Jan Kiszka49f48172010-11-16 22:30:07 +01001740 __u32 irqchip;
1741 __u32 pin;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001742 };
Jan Kiszka49f48172010-11-16 22:30:07 +01001743
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001744 struct kvm_irq_routing_msi {
Jan Kiszka49f48172010-11-16 22:30:07 +01001745 __u32 address_lo;
1746 __u32 address_hi;
1747 __u32 data;
Eric Auger76a10b82016-07-22 16:20:37 +00001748 union {
1749 __u32 pad;
1750 __u32 devid;
1751 };
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001752 };
Jan Kiszka49f48172010-11-16 22:30:07 +01001753
Paolo Bonzini6f49b2f2016-08-04 13:59:56 +02001754If KVM_MSI_VALID_DEVID is set, devid contains a unique device identifier
1755for the device that wrote the MSI message. For PCI, this is usually a
1756BFD identifier in the lower 16 bits.
Eric Auger76a10b82016-07-22 16:20:37 +00001757
Radim Krčmář371313132016-07-12 22:09:27 +02001758On x86, address_hi is ignored unless the KVM_X2APIC_API_USE_32BIT_IDS
1759feature of KVM_CAP_X2APIC_API capability is enabled. If it is enabled,
1760address_hi bits 31-8 provide bits 31-8 of the destination id. Bits 7-0 of
1761address_hi must be zero.
1762
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001763::
1764
1765 struct kvm_irq_routing_s390_adapter {
Cornelia Huck84223592013-07-15 13:36:01 +02001766 __u64 ind_addr;
1767 __u64 summary_addr;
1768 __u64 ind_offset;
1769 __u32 summary_offset;
1770 __u32 adapter_id;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001771 };
Cornelia Huck84223592013-07-15 13:36:01 +02001772
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001773 struct kvm_irq_routing_hv_sint {
Andrey Smetanin5c9194122015-11-10 15:36:34 +03001774 __u32 vcpu;
1775 __u32 sint;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001776 };
Jan Kiszka414fa982012-04-24 16:40:15 +02001777
Jan Kiszka414fa982012-04-24 16:40:15 +02001778
17794.55 KVM_SET_TSC_KHZ
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001780--------------------
Joerg Roedel92a1f122011-03-25 09:44:51 +01001781
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001782:Capability: KVM_CAP_TSC_CONTROL
1783:Architectures: x86
1784:Type: vcpu ioctl
1785:Parameters: virtual tsc_khz
1786:Returns: 0 on success, -1 on error
Joerg Roedel92a1f122011-03-25 09:44:51 +01001787
1788Specifies the tsc frequency for the virtual machine. The unit of the
1789frequency is KHz.
1790
Jan Kiszka414fa982012-04-24 16:40:15 +02001791
17924.56 KVM_GET_TSC_KHZ
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001793--------------------
Joerg Roedel92a1f122011-03-25 09:44:51 +01001794
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001795:Capability: KVM_CAP_GET_TSC_KHZ
1796:Architectures: x86
1797:Type: vcpu ioctl
1798:Parameters: none
1799:Returns: virtual tsc-khz on success, negative value on error
Joerg Roedel92a1f122011-03-25 09:44:51 +01001800
1801Returns the tsc frequency of the guest. The unit of the return value is
1802KHz. If the host has unstable tsc this ioctl returns -EIO instead as an
1803error.
1804
Jan Kiszka414fa982012-04-24 16:40:15 +02001805
18064.57 KVM_GET_LAPIC
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001807------------------
Avi Kivitye7677932011-05-11 08:30:51 -04001808
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001809:Capability: KVM_CAP_IRQCHIP
1810:Architectures: x86
1811:Type: vcpu ioctl
1812:Parameters: struct kvm_lapic_state (out)
1813:Returns: 0 on success, -1 on error
Avi Kivitye7677932011-05-11 08:30:51 -04001814
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001815::
1816
1817 #define KVM_APIC_REG_SIZE 0x400
1818 struct kvm_lapic_state {
Avi Kivitye7677932011-05-11 08:30:51 -04001819 char regs[KVM_APIC_REG_SIZE];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001820 };
Avi Kivitye7677932011-05-11 08:30:51 -04001821
1822Reads the Local APIC registers and copies them into the input argument. The
1823data format and layout are the same as documented in the architecture manual.
1824
Radim Krčmář371313132016-07-12 22:09:27 +02001825If KVM_X2APIC_API_USE_32BIT_IDS feature of KVM_CAP_X2APIC_API is
1826enabled, then the format of APIC_ID register depends on the APIC mode
1827(reported by MSR_IA32_APICBASE) of its VCPU. x2APIC stores APIC ID in
1828the APIC_ID register (bytes 32-35). xAPIC only allows an 8-bit APIC ID
1829which is stored in bits 31-24 of the APIC register, or equivalently in
1830byte 35 of struct kvm_lapic_state's regs field. KVM_GET_LAPIC must then
1831be called after MSR_IA32_APICBASE has been set with KVM_SET_MSR.
1832
1833If KVM_X2APIC_API_USE_32BIT_IDS feature is disabled, struct kvm_lapic_state
1834always uses xAPIC format.
1835
Jan Kiszka414fa982012-04-24 16:40:15 +02001836
18374.58 KVM_SET_LAPIC
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001838------------------
Avi Kivitye7677932011-05-11 08:30:51 -04001839
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001840:Capability: KVM_CAP_IRQCHIP
1841:Architectures: x86
1842:Type: vcpu ioctl
1843:Parameters: struct kvm_lapic_state (in)
1844:Returns: 0 on success, -1 on error
Avi Kivitye7677932011-05-11 08:30:51 -04001845
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001846::
1847
1848 #define KVM_APIC_REG_SIZE 0x400
1849 struct kvm_lapic_state {
Avi Kivitye7677932011-05-11 08:30:51 -04001850 char regs[KVM_APIC_REG_SIZE];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001851 };
Avi Kivitye7677932011-05-11 08:30:51 -04001852
Masanari Iidadf5cbb22014-03-21 10:04:30 +09001853Copies the input argument into the Local APIC registers. The data format
Avi Kivitye7677932011-05-11 08:30:51 -04001854and layout are the same as documented in the architecture manual.
1855
Radim Krčmář371313132016-07-12 22:09:27 +02001856The format of the APIC ID register (bytes 32-35 of struct kvm_lapic_state's
1857regs field) depends on the state of the KVM_CAP_X2APIC_API capability.
1858See the note in KVM_GET_LAPIC.
1859
Jan Kiszka414fa982012-04-24 16:40:15 +02001860
18614.59 KVM_IOEVENTFD
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001862------------------
Sasha Levin55399a02011-05-28 14:12:30 +03001863
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001864:Capability: KVM_CAP_IOEVENTFD
1865:Architectures: all
1866:Type: vm ioctl
1867:Parameters: struct kvm_ioeventfd (in)
1868:Returns: 0 on success, !0 on error
Sasha Levin55399a02011-05-28 14:12:30 +03001869
1870This ioctl attaches or detaches an ioeventfd to a legal pio/mmio address
1871within the guest. A guest write in the registered address will signal the
1872provided event instead of triggering an exit.
1873
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001874::
1875
1876 struct kvm_ioeventfd {
Sasha Levin55399a02011-05-28 14:12:30 +03001877 __u64 datamatch;
1878 __u64 addr; /* legal pio/mmio address */
Jason Wange9ea5062015-09-15 14:41:59 +08001879 __u32 len; /* 0, 1, 2, 4, or 8 bytes */
Sasha Levin55399a02011-05-28 14:12:30 +03001880 __s32 fd;
1881 __u32 flags;
1882 __u8 pad[36];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001883 };
Sasha Levin55399a02011-05-28 14:12:30 +03001884
Cornelia Huck2b834512013-02-28 12:33:20 +01001885For the special case of virtio-ccw devices on s390, the ioevent is matched
1886to a subchannel/virtqueue tuple instead.
1887
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001888The following flags are defined::
Sasha Levin55399a02011-05-28 14:12:30 +03001889
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001890 #define KVM_IOEVENTFD_FLAG_DATAMATCH (1 << kvm_ioeventfd_flag_nr_datamatch)
1891 #define KVM_IOEVENTFD_FLAG_PIO (1 << kvm_ioeventfd_flag_nr_pio)
1892 #define KVM_IOEVENTFD_FLAG_DEASSIGN (1 << kvm_ioeventfd_flag_nr_deassign)
1893 #define KVM_IOEVENTFD_FLAG_VIRTIO_CCW_NOTIFY \
Cornelia Huck2b834512013-02-28 12:33:20 +01001894 (1 << kvm_ioeventfd_flag_nr_virtio_ccw_notify)
Sasha Levin55399a02011-05-28 14:12:30 +03001895
1896If datamatch flag is set, the event will be signaled only if the written value
1897to the registered address is equal to datamatch in struct kvm_ioeventfd.
1898
Cornelia Huck2b834512013-02-28 12:33:20 +01001899For virtio-ccw devices, addr contains the subchannel id and datamatch the
1900virtqueue index.
1901
Jason Wange9ea5062015-09-15 14:41:59 +08001902With KVM_CAP_IOEVENTFD_ANY_LENGTH, a zero length ioeventfd is allowed, and
1903the kernel will ignore the length of guest write and may get a faster vmexit.
1904The speedup may only apply to specific architectures, but the ioeventfd will
1905work anyway.
Jan Kiszka414fa982012-04-24 16:40:15 +02001906
19074.60 KVM_DIRTY_TLB
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001908------------------
Scott Wooddc83b8b2011-08-18 15:25:21 -05001909
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001910:Capability: KVM_CAP_SW_TLB
1911:Architectures: ppc
1912:Type: vcpu ioctl
1913:Parameters: struct kvm_dirty_tlb (in)
1914:Returns: 0 on success, -1 on error
Scott Wooddc83b8b2011-08-18 15:25:21 -05001915
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001916::
1917
1918 struct kvm_dirty_tlb {
Scott Wooddc83b8b2011-08-18 15:25:21 -05001919 __u64 bitmap;
1920 __u32 num_dirty;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001921 };
Scott Wooddc83b8b2011-08-18 15:25:21 -05001922
1923This must be called whenever userspace has changed an entry in the shared
1924TLB, prior to calling KVM_RUN on the associated vcpu.
1925
1926The "bitmap" field is the userspace address of an array. This array
1927consists of a number of bits, equal to the total number of TLB entries as
1928determined by the last successful call to KVM_CONFIG_TLB, rounded up to the
1929nearest multiple of 64.
1930
1931Each bit corresponds to one TLB entry, ordered the same as in the shared TLB
1932array.
1933
1934The array is little-endian: the bit 0 is the least significant bit of the
1935first byte, bit 8 is the least significant bit of the second byte, etc.
1936This avoids any complications with differing word sizes.
1937
1938The "num_dirty" field is a performance hint for KVM to determine whether it
1939should skip processing the bitmap and just invalidate everything. It must
1940be set to the number of set bits in the bitmap.
1941
Jan Kiszka414fa982012-04-24 16:40:15 +02001942
David Gibson54738c02011-06-29 00:22:41 +000019434.62 KVM_CREATE_SPAPR_TCE
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001944-------------------------
David Gibson54738c02011-06-29 00:22:41 +00001945
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001946:Capability: KVM_CAP_SPAPR_TCE
1947:Architectures: powerpc
1948:Type: vm ioctl
1949:Parameters: struct kvm_create_spapr_tce (in)
1950:Returns: file descriptor for manipulating the created TCE table
David Gibson54738c02011-06-29 00:22:41 +00001951
1952This creates a virtual TCE (translation control entry) table, which
1953is an IOMMU for PAPR-style virtual I/O. It is used to translate
1954logical addresses used in virtual I/O into guest physical addresses,
1955and provides a scatter/gather capability for PAPR virtual I/O.
1956
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001957::
1958
1959 /* for KVM_CAP_SPAPR_TCE */
1960 struct kvm_create_spapr_tce {
David Gibson54738c02011-06-29 00:22:41 +00001961 __u64 liobn;
1962 __u32 window_size;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001963 };
David Gibson54738c02011-06-29 00:22:41 +00001964
1965The liobn field gives the logical IO bus number for which to create a
1966TCE table. The window_size field specifies the size of the DMA window
1967which this TCE table will translate - the table will contain one 64
1968bit TCE entry for every 4kiB of the DMA window.
1969
1970When the guest issues an H_PUT_TCE hcall on a liobn for which a TCE
1971table has been created using this ioctl(), the kernel will handle it
1972in real mode, updating the TCE table. H_PUT_TCE calls for other
1973liobns will cause a vm exit and must be handled by userspace.
1974
1975The return value is a file descriptor which can be passed to mmap(2)
1976to map the created TCE table into userspace. This lets userspace read
1977the entries written by kernel-handled H_PUT_TCE calls, and also lets
1978userspace update the TCE table directly which is useful in some
1979circumstances.
1980
Jan Kiszka414fa982012-04-24 16:40:15 +02001981
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +000019824.63 KVM_ALLOCATE_RMA
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001983---------------------
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00001984
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001985:Capability: KVM_CAP_PPC_RMA
1986:Architectures: powerpc
1987:Type: vm ioctl
1988:Parameters: struct kvm_allocate_rma (out)
1989:Returns: file descriptor for mapping the allocated RMA
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00001990
1991This allocates a Real Mode Area (RMA) from the pool allocated at boot
1992time by the kernel. An RMA is a physically-contiguous, aligned region
1993of memory used on older POWER processors to provide the memory which
1994will be accessed by real-mode (MMU off) accesses in a KVM guest.
1995POWER processors support a set of sizes for the RMA that usually
1996includes 64MB, 128MB, 256MB and some larger powers of two.
1997
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001998::
1999
2000 /* for KVM_ALLOCATE_RMA */
2001 struct kvm_allocate_rma {
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00002002 __u64 rma_size;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002003 };
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00002004
2005The return value is a file descriptor which can be passed to mmap(2)
2006to map the allocated RMA into userspace. The mapped area can then be
2007passed to the KVM_SET_USER_MEMORY_REGION ioctl to establish it as the
2008RMA for a virtual machine. The size of the RMA in bytes (which is
2009fixed at host kernel boot time) is returned in the rma_size field of
2010the argument structure.
2011
2012The KVM_CAP_PPC_RMA capability is 1 or 2 if the KVM_ALLOCATE_RMA ioctl
2013is supported; 2 if the processor requires all virtual machines to have
2014an RMA, or 1 if the processor can use an RMA but doesn't require it,
2015because it supports the Virtual RMA (VRMA) facility.
2016
Jan Kiszka414fa982012-04-24 16:40:15 +02002017
Avi Kivity3f745f12011-12-07 12:42:47 +020020184.64 KVM_NMI
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002019------------
Avi Kivity3f745f12011-12-07 12:42:47 +02002020
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002021:Capability: KVM_CAP_USER_NMI
2022:Architectures: x86
2023:Type: vcpu ioctl
2024:Parameters: none
2025:Returns: 0 on success, -1 on error
Avi Kivity3f745f12011-12-07 12:42:47 +02002026
2027Queues an NMI on the thread's vcpu. Note this is well defined only
2028when KVM_CREATE_IRQCHIP has not been called, since this is an interface
2029between the virtual cpu core and virtual local APIC. After KVM_CREATE_IRQCHIP
2030has been called, this interface is completely emulated within the kernel.
2031
2032To use this to emulate the LINT1 input with KVM_CREATE_IRQCHIP, use the
2033following algorithm:
2034
Masanari Iida5d4f6f32015-10-04 00:46:21 +09002035 - pause the vcpu
Avi Kivity3f745f12011-12-07 12:42:47 +02002036 - read the local APIC's state (KVM_GET_LAPIC)
2037 - check whether changing LINT1 will queue an NMI (see the LVT entry for LINT1)
2038 - if so, issue KVM_NMI
2039 - resume the vcpu
2040
2041Some guests configure the LINT1 NMI input to cause a panic, aiding in
2042debugging.
2043
Jan Kiszka414fa982012-04-24 16:40:15 +02002044
Alexander Grafe24ed812011-09-14 10:02:41 +020020454.65 KVM_S390_UCAS_MAP
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002046----------------------
Carsten Otte27e03932012-01-04 10:25:21 +01002047
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002048:Capability: KVM_CAP_S390_UCONTROL
2049:Architectures: s390
2050:Type: vcpu ioctl
2051:Parameters: struct kvm_s390_ucas_mapping (in)
2052:Returns: 0 in case of success
Carsten Otte27e03932012-01-04 10:25:21 +01002053
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002054The parameter is defined like this::
2055
Carsten Otte27e03932012-01-04 10:25:21 +01002056 struct kvm_s390_ucas_mapping {
2057 __u64 user_addr;
2058 __u64 vcpu_addr;
2059 __u64 length;
2060 };
2061
2062This ioctl maps the memory at "user_addr" with the length "length" to
2063the vcpu's address space starting at "vcpu_addr". All parameters need to
Anatol Pomozovf884ab12013-05-08 16:56:16 -07002064be aligned by 1 megabyte.
Carsten Otte27e03932012-01-04 10:25:21 +01002065
Jan Kiszka414fa982012-04-24 16:40:15 +02002066
Alexander Grafe24ed812011-09-14 10:02:41 +020020674.66 KVM_S390_UCAS_UNMAP
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002068------------------------
Carsten Otte27e03932012-01-04 10:25:21 +01002069
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002070:Capability: KVM_CAP_S390_UCONTROL
2071:Architectures: s390
2072:Type: vcpu ioctl
2073:Parameters: struct kvm_s390_ucas_mapping (in)
2074:Returns: 0 in case of success
Carsten Otte27e03932012-01-04 10:25:21 +01002075
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002076The parameter is defined like this::
2077
Carsten Otte27e03932012-01-04 10:25:21 +01002078 struct kvm_s390_ucas_mapping {
2079 __u64 user_addr;
2080 __u64 vcpu_addr;
2081 __u64 length;
2082 };
2083
2084This ioctl unmaps the memory in the vcpu's address space starting at
2085"vcpu_addr" with the length "length". The field "user_addr" is ignored.
Anatol Pomozovf884ab12013-05-08 16:56:16 -07002086All parameters need to be aligned by 1 megabyte.
Carsten Otte27e03932012-01-04 10:25:21 +01002087
Jan Kiszka414fa982012-04-24 16:40:15 +02002088
Alexander Grafe24ed812011-09-14 10:02:41 +020020894.67 KVM_S390_VCPU_FAULT
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002090------------------------
Carsten Otteccc79102012-01-04 10:25:26 +01002091
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002092:Capability: KVM_CAP_S390_UCONTROL
2093:Architectures: s390
2094:Type: vcpu ioctl
2095:Parameters: vcpu absolute address (in)
2096:Returns: 0 in case of success
Carsten Otteccc79102012-01-04 10:25:26 +01002097
2098This call creates a page table entry on the virtual cpu's address space
2099(for user controlled virtual machines) or the virtual machine's address
2100space (for regular virtual machines). This only works for minor faults,
2101thus it's recommended to access subject memory page via the user page
2102table upfront. This is useful to handle validity intercepts for user
2103controlled virtual machines to fault in the virtual cpu's lowcore pages
2104prior to calling the KVM_RUN ioctl.
2105
Jan Kiszka414fa982012-04-24 16:40:15 +02002106
Alexander Grafe24ed812011-09-14 10:02:41 +020021074.68 KVM_SET_ONE_REG
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002108--------------------
Alexander Grafe24ed812011-09-14 10:02:41 +02002109
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002110:Capability: KVM_CAP_ONE_REG
2111:Architectures: all
2112:Type: vcpu ioctl
2113:Parameters: struct kvm_one_reg (in)
2114:Returns: 0 on success, negative value on failure
2115
Dave Martin395f5622019-01-15 17:02:08 +00002116Errors:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002117
2118 ====== ============================================================
2119  ENOENT   no such register
Janosch Frank68cf7b12019-06-14 13:11:21 +02002120  EINVAL   invalid register ID, or no such register or used with VMs in
2121 protected virtualization mode on s390
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002122  EPERM    (arm64) register access not allowed before vcpu finalization
2123 ====== ============================================================
2124
Dave Martinfe365b42019-04-12 12:59:47 +01002125(These error codes are indicative only: do not rely on a specific error
2126code being returned in a specific situation.)
Alexander Grafe24ed812011-09-14 10:02:41 +02002127
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002128::
2129
2130 struct kvm_one_reg {
Alexander Grafe24ed812011-09-14 10:02:41 +02002131 __u64 id;
2132 __u64 addr;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002133 };
Alexander Grafe24ed812011-09-14 10:02:41 +02002134
2135Using this ioctl, a single vcpu register can be set to a specific value
2136defined by user space with the passed in struct kvm_one_reg, where id
2137refers to the register identifier as described below and addr is a pointer
2138to a variable with the respective size. There can be architecture agnostic
2139and architecture specific registers. Each have their own range of operation
2140and their own constants and width. To keep track of the implemented
2141registers, find a list below:
2142
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002143 ======= =============================== ============
2144 Arch Register Width (bits)
2145 ======= =============================== ============
2146 PPC KVM_REG_PPC_HIOR 64
2147 PPC KVM_REG_PPC_IAC1 64
2148 PPC KVM_REG_PPC_IAC2 64
2149 PPC KVM_REG_PPC_IAC3 64
2150 PPC KVM_REG_PPC_IAC4 64
2151 PPC KVM_REG_PPC_DAC1 64
2152 PPC KVM_REG_PPC_DAC2 64
2153 PPC KVM_REG_PPC_DABR 64
2154 PPC KVM_REG_PPC_DSCR 64
2155 PPC KVM_REG_PPC_PURR 64
2156 PPC KVM_REG_PPC_SPURR 64
2157 PPC KVM_REG_PPC_DAR 64
2158 PPC KVM_REG_PPC_DSISR 32
2159 PPC KVM_REG_PPC_AMR 64
2160 PPC KVM_REG_PPC_UAMOR 64
2161 PPC KVM_REG_PPC_MMCR0 64
2162 PPC KVM_REG_PPC_MMCR1 64
2163 PPC KVM_REG_PPC_MMCRA 64
2164 PPC KVM_REG_PPC_MMCR2 64
2165 PPC KVM_REG_PPC_MMCRS 64
Athira Rajeev5752fe02020-07-17 10:38:17 -04002166 PPC KVM_REG_PPC_MMCR3 64
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002167 PPC KVM_REG_PPC_SIAR 64
2168 PPC KVM_REG_PPC_SDAR 64
2169 PPC KVM_REG_PPC_SIER 64
Athira Rajeev5752fe02020-07-17 10:38:17 -04002170 PPC KVM_REG_PPC_SIER2 64
2171 PPC KVM_REG_PPC_SIER3 64
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002172 PPC KVM_REG_PPC_PMC1 32
2173 PPC KVM_REG_PPC_PMC2 32
2174 PPC KVM_REG_PPC_PMC3 32
2175 PPC KVM_REG_PPC_PMC4 32
2176 PPC KVM_REG_PPC_PMC5 32
2177 PPC KVM_REG_PPC_PMC6 32
2178 PPC KVM_REG_PPC_PMC7 32
2179 PPC KVM_REG_PPC_PMC8 32
2180 PPC KVM_REG_PPC_FPR0 64
2181 ...
2182 PPC KVM_REG_PPC_FPR31 64
2183 PPC KVM_REG_PPC_VR0 128
2184 ...
2185 PPC KVM_REG_PPC_VR31 128
2186 PPC KVM_REG_PPC_VSR0 128
2187 ...
2188 PPC KVM_REG_PPC_VSR31 128
2189 PPC KVM_REG_PPC_FPSCR 64
2190 PPC KVM_REG_PPC_VSCR 32
2191 PPC KVM_REG_PPC_VPA_ADDR 64
2192 PPC KVM_REG_PPC_VPA_SLB 128
2193 PPC KVM_REG_PPC_VPA_DTL 128
2194 PPC KVM_REG_PPC_EPCR 32
2195 PPC KVM_REG_PPC_EPR 32
2196 PPC KVM_REG_PPC_TCR 32
2197 PPC KVM_REG_PPC_TSR 32
2198 PPC KVM_REG_PPC_OR_TSR 32
2199 PPC KVM_REG_PPC_CLEAR_TSR 32
2200 PPC KVM_REG_PPC_MAS0 32
2201 PPC KVM_REG_PPC_MAS1 32
2202 PPC KVM_REG_PPC_MAS2 64
2203 PPC KVM_REG_PPC_MAS7_3 64
2204 PPC KVM_REG_PPC_MAS4 32
2205 PPC KVM_REG_PPC_MAS6 32
2206 PPC KVM_REG_PPC_MMUCFG 32
2207 PPC KVM_REG_PPC_TLB0CFG 32
2208 PPC KVM_REG_PPC_TLB1CFG 32
2209 PPC KVM_REG_PPC_TLB2CFG 32
2210 PPC KVM_REG_PPC_TLB3CFG 32
2211 PPC KVM_REG_PPC_TLB0PS 32
2212 PPC KVM_REG_PPC_TLB1PS 32
2213 PPC KVM_REG_PPC_TLB2PS 32
2214 PPC KVM_REG_PPC_TLB3PS 32
2215 PPC KVM_REG_PPC_EPTCFG 32
2216 PPC KVM_REG_PPC_ICP_STATE 64
2217 PPC KVM_REG_PPC_VP_STATE 128
2218 PPC KVM_REG_PPC_TB_OFFSET 64
2219 PPC KVM_REG_PPC_SPMC1 32
2220 PPC KVM_REG_PPC_SPMC2 32
2221 PPC KVM_REG_PPC_IAMR 64
2222 PPC KVM_REG_PPC_TFHAR 64
2223 PPC KVM_REG_PPC_TFIAR 64
2224 PPC KVM_REG_PPC_TEXASR 64
2225 PPC KVM_REG_PPC_FSCR 64
2226 PPC KVM_REG_PPC_PSPB 32
2227 PPC KVM_REG_PPC_EBBHR 64
2228 PPC KVM_REG_PPC_EBBRR 64
2229 PPC KVM_REG_PPC_BESCR 64
2230 PPC KVM_REG_PPC_TAR 64
2231 PPC KVM_REG_PPC_DPDES 64
2232 PPC KVM_REG_PPC_DAWR 64
2233 PPC KVM_REG_PPC_DAWRX 64
2234 PPC KVM_REG_PPC_CIABR 64
2235 PPC KVM_REG_PPC_IC 64
2236 PPC KVM_REG_PPC_VTB 64
2237 PPC KVM_REG_PPC_CSIGR 64
2238 PPC KVM_REG_PPC_TACR 64
2239 PPC KVM_REG_PPC_TCSCR 64
2240 PPC KVM_REG_PPC_PID 64
2241 PPC KVM_REG_PPC_ACOP 64
2242 PPC KVM_REG_PPC_VRSAVE 32
2243 PPC KVM_REG_PPC_LPCR 32
2244 PPC KVM_REG_PPC_LPCR_64 64
2245 PPC KVM_REG_PPC_PPR 64
2246 PPC KVM_REG_PPC_ARCH_COMPAT 32
2247 PPC KVM_REG_PPC_DABRX 32
2248 PPC KVM_REG_PPC_WORT 64
2249 PPC KVM_REG_PPC_SPRG9 64
2250 PPC KVM_REG_PPC_DBSR 32
2251 PPC KVM_REG_PPC_TIDR 64
2252 PPC KVM_REG_PPC_PSSCR 64
2253 PPC KVM_REG_PPC_DEC_EXPIRY 64
2254 PPC KVM_REG_PPC_PTCR 64
2255 PPC KVM_REG_PPC_TM_GPR0 64
2256 ...
2257 PPC KVM_REG_PPC_TM_GPR31 64
2258 PPC KVM_REG_PPC_TM_VSR0 128
2259 ...
2260 PPC KVM_REG_PPC_TM_VSR63 128
2261 PPC KVM_REG_PPC_TM_CR 64
2262 PPC KVM_REG_PPC_TM_LR 64
2263 PPC KVM_REG_PPC_TM_CTR 64
2264 PPC KVM_REG_PPC_TM_FPSCR 64
2265 PPC KVM_REG_PPC_TM_AMR 64
2266 PPC KVM_REG_PPC_TM_PPR 64
2267 PPC KVM_REG_PPC_TM_VRSAVE 64
2268 PPC KVM_REG_PPC_TM_VSCR 32
2269 PPC KVM_REG_PPC_TM_DSCR 64
2270 PPC KVM_REG_PPC_TM_TAR 64
2271 PPC KVM_REG_PPC_TM_XER 64
2272
2273 MIPS KVM_REG_MIPS_R0 64
2274 ...
2275 MIPS KVM_REG_MIPS_R31 64
2276 MIPS KVM_REG_MIPS_HI 64
2277 MIPS KVM_REG_MIPS_LO 64
2278 MIPS KVM_REG_MIPS_PC 64
2279 MIPS KVM_REG_MIPS_CP0_INDEX 32
2280 MIPS KVM_REG_MIPS_CP0_ENTRYLO0 64
2281 MIPS KVM_REG_MIPS_CP0_ENTRYLO1 64
2282 MIPS KVM_REG_MIPS_CP0_CONTEXT 64
2283 MIPS KVM_REG_MIPS_CP0_CONTEXTCONFIG 32
2284 MIPS KVM_REG_MIPS_CP0_USERLOCAL 64
2285 MIPS KVM_REG_MIPS_CP0_XCONTEXTCONFIG 64
2286 MIPS KVM_REG_MIPS_CP0_PAGEMASK 32
2287 MIPS KVM_REG_MIPS_CP0_PAGEGRAIN 32
2288 MIPS KVM_REG_MIPS_CP0_SEGCTL0 64
2289 MIPS KVM_REG_MIPS_CP0_SEGCTL1 64
2290 MIPS KVM_REG_MIPS_CP0_SEGCTL2 64
2291 MIPS KVM_REG_MIPS_CP0_PWBASE 64
2292 MIPS KVM_REG_MIPS_CP0_PWFIELD 64
2293 MIPS KVM_REG_MIPS_CP0_PWSIZE 64
2294 MIPS KVM_REG_MIPS_CP0_WIRED 32
2295 MIPS KVM_REG_MIPS_CP0_PWCTL 32
2296 MIPS KVM_REG_MIPS_CP0_HWRENA 32
2297 MIPS KVM_REG_MIPS_CP0_BADVADDR 64
2298 MIPS KVM_REG_MIPS_CP0_BADINSTR 32
2299 MIPS KVM_REG_MIPS_CP0_BADINSTRP 32
2300 MIPS KVM_REG_MIPS_CP0_COUNT 32
2301 MIPS KVM_REG_MIPS_CP0_ENTRYHI 64
2302 MIPS KVM_REG_MIPS_CP0_COMPARE 32
2303 MIPS KVM_REG_MIPS_CP0_STATUS 32
2304 MIPS KVM_REG_MIPS_CP0_INTCTL 32
2305 MIPS KVM_REG_MIPS_CP0_CAUSE 32
2306 MIPS KVM_REG_MIPS_CP0_EPC 64
2307 MIPS KVM_REG_MIPS_CP0_PRID 32
2308 MIPS KVM_REG_MIPS_CP0_EBASE 64
2309 MIPS KVM_REG_MIPS_CP0_CONFIG 32
2310 MIPS KVM_REG_MIPS_CP0_CONFIG1 32
2311 MIPS KVM_REG_MIPS_CP0_CONFIG2 32
2312 MIPS KVM_REG_MIPS_CP0_CONFIG3 32
2313 MIPS KVM_REG_MIPS_CP0_CONFIG4 32
2314 MIPS KVM_REG_MIPS_CP0_CONFIG5 32
2315 MIPS KVM_REG_MIPS_CP0_CONFIG7 32
2316 MIPS KVM_REG_MIPS_CP0_XCONTEXT 64
2317 MIPS KVM_REG_MIPS_CP0_ERROREPC 64
2318 MIPS KVM_REG_MIPS_CP0_KSCRATCH1 64
2319 MIPS KVM_REG_MIPS_CP0_KSCRATCH2 64
2320 MIPS KVM_REG_MIPS_CP0_KSCRATCH3 64
2321 MIPS KVM_REG_MIPS_CP0_KSCRATCH4 64
2322 MIPS KVM_REG_MIPS_CP0_KSCRATCH5 64
2323 MIPS KVM_REG_MIPS_CP0_KSCRATCH6 64
2324 MIPS KVM_REG_MIPS_CP0_MAAR(0..63) 64
2325 MIPS KVM_REG_MIPS_COUNT_CTL 64
2326 MIPS KVM_REG_MIPS_COUNT_RESUME 64
2327 MIPS KVM_REG_MIPS_COUNT_HZ 64
2328 MIPS KVM_REG_MIPS_FPR_32(0..31) 32
2329 MIPS KVM_REG_MIPS_FPR_64(0..31) 64
2330 MIPS KVM_REG_MIPS_VEC_128(0..31) 128
2331 MIPS KVM_REG_MIPS_FCR_IR 32
2332 MIPS KVM_REG_MIPS_FCR_CSR 32
2333 MIPS KVM_REG_MIPS_MSA_IR 32
2334 MIPS KVM_REG_MIPS_MSA_CSR 32
2335 ======= =============================== ============
Jan Kiszka414fa982012-04-24 16:40:15 +02002336
Christoffer Dall749cf76c2013-01-20 18:28:06 -05002337ARM registers are mapped using the lower 32 bits. The upper 16 of that
2338is the register group type, or coprocessor number:
2339
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002340ARM core registers have the following id bit patterns::
2341
Christoffer Dallaa404dd2013-04-22 18:57:46 -07002342 0x4020 0000 0010 <index into the kvm_regs struct:16>
Christoffer Dall749cf76c2013-01-20 18:28:06 -05002343
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002344ARM 32-bit CP15 registers have the following id bit patterns::
2345
Christoffer Dallaa404dd2013-04-22 18:57:46 -07002346 0x4020 0000 000F <zero:1> <crn:4> <crm:4> <opc1:4> <opc2:3>
Christoffer Dall11382452013-01-20 18:28:10 -05002347
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002348ARM 64-bit CP15 registers have the following id bit patterns::
2349
Christoffer Dallaa404dd2013-04-22 18:57:46 -07002350 0x4030 0000 000F <zero:1> <zero:4> <crm:4> <opc1:4> <zero:3>
Christoffer Dall749cf76c2013-01-20 18:28:06 -05002351
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002352ARM CCSIDR registers are demultiplexed by CSSELR value::
2353
Christoffer Dallaa404dd2013-04-22 18:57:46 -07002354 0x4020 0000 0011 00 <csselr:8>
Christoffer Dall749cf76c2013-01-20 18:28:06 -05002355
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002356ARM 32-bit VFP control registers have the following id bit patterns::
2357
Christoffer Dallaa404dd2013-04-22 18:57:46 -07002358 0x4020 0000 0012 1 <regno:12>
Rusty Russell4fe21e42013-01-20 18:28:11 -05002359
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002360ARM 64-bit FP registers have the following id bit patterns::
2361
Christoffer Dallaa404dd2013-04-22 18:57:46 -07002362 0x4030 0000 0012 0 <regno:12>
Rusty Russell4fe21e42013-01-20 18:28:11 -05002363
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002364ARM firmware pseudo-registers have the following bit pattern::
2365
Marc Zyngier85bd0ba2018-01-21 16:42:56 +00002366 0x4030 0000 0014 <regno:16>
2367
Marc Zyngier379e04c72013-04-02 17:46:31 +01002368
2369arm64 registers are mapped using the lower 32 bits. The upper 16 of
2370that is the register group type, or coprocessor number:
2371
2372arm64 core/FP-SIMD registers have the following id bit patterns. Note
2373that the size of the access is variable, as the kvm_regs structure
2374contains elements ranging from 32 to 128 bits. The index is a 32bit
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002375value in the kvm_regs structure seen as a 32bit array::
2376
Marc Zyngier379e04c72013-04-02 17:46:31 +01002377 0x60x0 0000 0010 <index into the kvm_regs struct:16>
2378
Dave Martinfd3bc912018-09-28 14:39:26 +01002379Specifically:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002380
2381======================= ========= ===== =======================================
Dave Martinfd3bc912018-09-28 14:39:26 +01002382 Encoding Register Bits kvm_regs member
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002383======================= ========= ===== =======================================
Dave Martinfd3bc912018-09-28 14:39:26 +01002384 0x6030 0000 0010 0000 X0 64 regs.regs[0]
2385 0x6030 0000 0010 0002 X1 64 regs.regs[1]
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002386 ...
Dave Martinfd3bc912018-09-28 14:39:26 +01002387 0x6030 0000 0010 003c X30 64 regs.regs[30]
2388 0x6030 0000 0010 003e SP 64 regs.sp
2389 0x6030 0000 0010 0040 PC 64 regs.pc
2390 0x6030 0000 0010 0042 PSTATE 64 regs.pstate
2391 0x6030 0000 0010 0044 SP_EL1 64 sp_el1
2392 0x6030 0000 0010 0046 ELR_EL1 64 elr_el1
2393 0x6030 0000 0010 0048 SPSR_EL1 64 spsr[KVM_SPSR_EL1] (alias SPSR_SVC)
2394 0x6030 0000 0010 004a SPSR_ABT 64 spsr[KVM_SPSR_ABT]
2395 0x6030 0000 0010 004c SPSR_UND 64 spsr[KVM_SPSR_UND]
2396 0x6030 0000 0010 004e SPSR_IRQ 64 spsr[KVM_SPSR_IRQ]
2397 0x6060 0000 0010 0050 SPSR_FIQ 64 spsr[KVM_SPSR_FIQ]
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002398 0x6040 0000 0010 0054 V0 128 fp_regs.vregs[0] [1]_
2399 0x6040 0000 0010 0058 V1 128 fp_regs.vregs[1] [1]_
2400 ...
2401 0x6040 0000 0010 00d0 V31 128 fp_regs.vregs[31] [1]_
Dave Martinfd3bc912018-09-28 14:39:26 +01002402 0x6020 0000 0010 00d4 FPSR 32 fp_regs.fpsr
2403 0x6020 0000 0010 00d5 FPCR 32 fp_regs.fpcr
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002404======================= ========= ===== =======================================
Dave Martinfd3bc912018-09-28 14:39:26 +01002405
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002406.. [1] These encodings are not accepted for SVE-enabled vcpus. See
2407 KVM_ARM_VCPU_INIT.
Dave Martin50036ad2018-09-28 14:39:27 +01002408
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002409 The equivalent register content can be accessed via bits [127:0] of
2410 the corresponding SVE Zn registers instead for vcpus that have SVE
2411 enabled (see below).
Dave Martin50036ad2018-09-28 14:39:27 +01002412
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002413arm64 CCSIDR registers are demultiplexed by CSSELR value::
2414
Marc Zyngier379e04c72013-04-02 17:46:31 +01002415 0x6020 0000 0011 00 <csselr:8>
2416
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002417arm64 system registers have the following id bit patterns::
2418
Marc Zyngier379e04c72013-04-02 17:46:31 +01002419 0x6030 0000 0013 <op0:2> <op1:3> <crn:4> <crm:4> <op2:3>
2420
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002421.. warning::
2422
Andrew Jones290a6bb2020-01-20 14:08:25 +01002423 Two system register IDs do not follow the specified pattern. These
2424 are KVM_REG_ARM_TIMER_CVAL and KVM_REG_ARM_TIMER_CNT, which map to
2425 system registers CNTV_CVAL_EL0 and CNTVCT_EL0 respectively. These
2426 two had their values accidentally swapped, which means TIMER_CVAL is
2427 derived from the register encoding for CNTVCT_EL0 and TIMER_CNT is
2428 derived from the register encoding for CNTV_CVAL_EL0. As this is
2429 API, it must remain this way.
2430
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002431arm64 firmware pseudo-registers have the following bit pattern::
2432
Marc Zyngier85bd0ba2018-01-21 16:42:56 +00002433 0x6030 0000 0014 <regno:16>
2434
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002435arm64 SVE registers have the following bit patterns::
2436
Dave Martin50036ad2018-09-28 14:39:27 +01002437 0x6080 0000 0015 00 <n:5> <slice:5> Zn bits[2048*slice + 2047 : 2048*slice]
2438 0x6050 0000 0015 04 <n:4> <slice:5> Pn bits[256*slice + 255 : 256*slice]
2439 0x6050 0000 0015 060 <slice:5> FFR bits[256*slice + 255 : 256*slice]
2440 0x6060 0000 0015 ffff KVM_REG_ARM64_SVE_VLS pseudo-register
2441
Dave Martin43b8e1f2019-04-12 13:25:38 +01002442Access to register IDs where 2048 * slice >= 128 * max_vq will fail with
2443ENOENT. max_vq is the vcpu's maximum supported vector length in 128-bit
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002444quadwords: see [2]_ below.
Dave Martin50036ad2018-09-28 14:39:27 +01002445
2446These registers are only accessible on vcpus for which SVE is enabled.
2447See KVM_ARM_VCPU_INIT for details.
2448
2449In addition, except for KVM_REG_ARM64_SVE_VLS, these registers are not
2450accessible until the vcpu's SVE configuration has been finalized
2451using KVM_ARM_VCPU_FINALIZE(KVM_ARM_VCPU_SVE). See KVM_ARM_VCPU_INIT
2452and KVM_ARM_VCPU_FINALIZE for more information about this procedure.
2453
2454KVM_REG_ARM64_SVE_VLS is a pseudo-register that allows the set of vector
2455lengths supported by the vcpu to be discovered and configured by
2456userspace. When transferred to or from user memory via KVM_GET_ONE_REG
Dave Martin4bd774e2019-04-11 17:09:59 +01002457or KVM_SET_ONE_REG, the value of this register is of type
2458__u64[KVM_ARM64_SVE_VLS_WORDS], and encodes the set of vector lengths as
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002459follows::
Dave Martin50036ad2018-09-28 14:39:27 +01002460
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002461 __u64 vector_lengths[KVM_ARM64_SVE_VLS_WORDS];
Dave Martin50036ad2018-09-28 14:39:27 +01002462
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002463 if (vq >= SVE_VQ_MIN && vq <= SVE_VQ_MAX &&
2464 ((vector_lengths[(vq - KVM_ARM64_SVE_VQ_MIN) / 64] >>
Dave Martin4bd774e2019-04-11 17:09:59 +01002465 ((vq - KVM_ARM64_SVE_VQ_MIN) % 64)) & 1))
Dave Martin50036ad2018-09-28 14:39:27 +01002466 /* Vector length vq * 16 bytes supported */
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002467 else
Dave Martin50036ad2018-09-28 14:39:27 +01002468 /* Vector length vq * 16 bytes not supported */
2469
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002470.. [2] The maximum value vq for which the above condition is true is
2471 max_vq. This is the maximum vector length available to the guest on
2472 this vcpu, and determines which register slices are visible through
2473 this ioctl interface.
Dave Martin50036ad2018-09-28 14:39:27 +01002474
Mauro Carvalho Chehabb693d0b2019-06-12 14:52:38 -03002475(See Documentation/arm64/sve.rst for an explanation of the "vq"
Dave Martin50036ad2018-09-28 14:39:27 +01002476nomenclature.)
2477
2478KVM_REG_ARM64_SVE_VLS is only accessible after KVM_ARM_VCPU_INIT.
2479KVM_ARM_VCPU_INIT initialises it to the best set of vector lengths that
2480the host supports.
2481
2482Userspace may subsequently modify it if desired until the vcpu's SVE
2483configuration is finalized using KVM_ARM_VCPU_FINALIZE(KVM_ARM_VCPU_SVE).
2484
2485Apart from simply removing all vector lengths from the host set that
2486exceed some value, support for arbitrarily chosen sets of vector lengths
2487is hardware-dependent and may not be available. Attempting to configure
2488an invalid set of vector lengths via KVM_SET_ONE_REG will fail with
2489EINVAL.
2490
2491After the vcpu's SVE configuration is finalized, further attempts to
2492write this register will fail with EPERM.
2493
James Hoganc2d2c212014-07-04 15:11:35 +01002494
2495MIPS registers are mapped using the lower 32 bits. The upper 16 of that is
2496the register group type:
2497
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002498MIPS core registers (see above) have the following id bit patterns::
2499
James Hoganc2d2c212014-07-04 15:11:35 +01002500 0x7030 0000 0000 <reg:16>
2501
2502MIPS CP0 registers (see KVM_REG_MIPS_CP0_* above) have the following id bit
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002503patterns depending on whether they're 32-bit or 64-bit registers::
2504
James Hoganc2d2c212014-07-04 15:11:35 +01002505 0x7020 0000 0001 00 <reg:5> <sel:3> (32-bit)
2506 0x7030 0000 0001 00 <reg:5> <sel:3> (64-bit)
2507
James Hogan013044c2016-12-07 17:16:37 +00002508Note: KVM_REG_MIPS_CP0_ENTRYLO0 and KVM_REG_MIPS_CP0_ENTRYLO1 are the MIPS64
2509versions of the EntryLo registers regardless of the word size of the host
2510hardware, host kernel, guest, and whether XPA is present in the guest, i.e.
2511with the RI and XI bits (if they exist) in bits 63 and 62 respectively, and
2512the PFNX field starting at bit 30.
2513
James Hogand42a0082017-03-14 10:15:38 +00002514MIPS MAARs (see KVM_REG_MIPS_CP0_MAAR(*) above) have the following id bit
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002515patterns::
2516
James Hogand42a0082017-03-14 10:15:38 +00002517 0x7030 0000 0001 01 <reg:8>
2518
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002519MIPS KVM control registers (see above) have the following id bit patterns::
2520
James Hoganc2d2c212014-07-04 15:11:35 +01002521 0x7030 0000 0002 <reg:16>
2522
James Hogan379245c2014-12-02 15:48:24 +00002523MIPS FPU registers (see KVM_REG_MIPS_FPR_{32,64}() above) have the following
2524id bit patterns depending on the size of the register being accessed. They are
2525always accessed according to the current guest FPU mode (Status.FR and
2526Config5.FRE), i.e. as the guest would see them, and they become unpredictable
James Hoganab86bd62014-12-02 15:48:24 +00002527if the guest FPU mode is changed. MIPS SIMD Architecture (MSA) vector
2528registers (see KVM_REG_MIPS_VEC_128() above) have similar patterns as they
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002529overlap the FPU registers::
2530
James Hogan379245c2014-12-02 15:48:24 +00002531 0x7020 0000 0003 00 <0:3> <reg:5> (32-bit FPU registers)
2532 0x7030 0000 0003 00 <0:3> <reg:5> (64-bit FPU registers)
James Hoganab86bd62014-12-02 15:48:24 +00002533 0x7040 0000 0003 00 <0:3> <reg:5> (128-bit MSA vector registers)
James Hogan379245c2014-12-02 15:48:24 +00002534
2535MIPS FPU control registers (see KVM_REG_MIPS_FCR_{IR,CSR} above) have the
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002536following id bit patterns::
2537
James Hogan379245c2014-12-02 15:48:24 +00002538 0x7020 0000 0003 01 <0:3> <reg:5>
2539
James Hoganab86bd62014-12-02 15:48:24 +00002540MIPS MSA control registers (see KVM_REG_MIPS_MSA_{IR,CSR} above) have the
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002541following id bit patterns::
2542
James Hoganab86bd62014-12-02 15:48:24 +00002543 0x7020 0000 0003 02 <0:3> <reg:5>
2544
James Hoganc2d2c212014-07-04 15:11:35 +01002545
Alexander Grafe24ed812011-09-14 10:02:41 +020025464.69 KVM_GET_ONE_REG
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002547--------------------
Alexander Grafe24ed812011-09-14 10:02:41 +02002548
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002549:Capability: KVM_CAP_ONE_REG
2550:Architectures: all
2551:Type: vcpu ioctl
2552:Parameters: struct kvm_one_reg (in and out)
2553:Returns: 0 on success, negative value on failure
2554
Dave Martinfe365b42019-04-12 12:59:47 +01002555Errors include:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002556
2557 ======== ============================================================
2558  ENOENT   no such register
Janosch Frank68cf7b12019-06-14 13:11:21 +02002559  EINVAL   invalid register ID, or no such register or used with VMs in
2560 protected virtualization mode on s390
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002561  EPERM    (arm64) register access not allowed before vcpu finalization
2562 ======== ============================================================
2563
Dave Martinfe365b42019-04-12 12:59:47 +01002564(These error codes are indicative only: do not rely on a specific error
2565code being returned in a specific situation.)
Alexander Grafe24ed812011-09-14 10:02:41 +02002566
2567This ioctl allows to receive the value of a single register implemented
2568in a vcpu. The register to read is indicated by the "id" field of the
2569kvm_one_reg struct passed in. On success, the register value can be found
2570at the memory location pointed to by "addr".
2571
2572The list of registers accessible using this interface is identical to the
Bharat Bhushan2e232702012-08-15 17:37:13 +00002573list in 4.68.
Alexander Grafe24ed812011-09-14 10:02:41 +02002574
Jan Kiszka414fa982012-04-24 16:40:15 +02002575
Eric B Munson1c0b28c2012-03-10 14:37:27 -050025764.70 KVM_KVMCLOCK_CTRL
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002577----------------------
Eric B Munson1c0b28c2012-03-10 14:37:27 -05002578
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002579:Capability: KVM_CAP_KVMCLOCK_CTRL
2580:Architectures: Any that implement pvclocks (currently x86 only)
2581:Type: vcpu ioctl
2582:Parameters: None
2583:Returns: 0 on success, -1 on error
Eric B Munson1c0b28c2012-03-10 14:37:27 -05002584
Joshua Abraham35c59992020-05-01 18:36:24 -04002585This ioctl sets a flag accessible to the guest indicating that the specified
2586vCPU has been paused by the host userspace.
2587
2588The host will set a flag in the pvclock structure that is checked from the
2589soft lockup watchdog. The flag is part of the pvclock structure that is
2590shared between guest and host, specifically the second bit of the flags
Eric B Munson1c0b28c2012-03-10 14:37:27 -05002591field of the pvclock_vcpu_time_info structure. It will be set exclusively by
2592the host and read/cleared exclusively by the guest. The guest operation of
Joshua Abraham35c59992020-05-01 18:36:24 -04002593checking and clearing the flag must be an atomic operation so
Eric B Munson1c0b28c2012-03-10 14:37:27 -05002594load-link/store-conditional, or equivalent must be used. There are two cases
2595where the guest will clear the flag: when the soft lockup watchdog timer resets
2596itself or when a soft lockup is detected. This ioctl can be called any time
2597after pausing the vcpu, but before it is resumed.
2598
Jan Kiszka414fa982012-04-24 16:40:15 +02002599
Jan Kiszka07975ad2012-03-29 21:14:12 +020026004.71 KVM_SIGNAL_MSI
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002601-------------------
Jan Kiszka07975ad2012-03-29 21:14:12 +02002602
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002603:Capability: KVM_CAP_SIGNAL_MSI
2604:Architectures: x86 arm arm64
2605:Type: vm ioctl
2606:Parameters: struct kvm_msi (in)
2607:Returns: >0 on delivery, 0 if guest blocked the MSI, and -1 on error
Jan Kiszka07975ad2012-03-29 21:14:12 +02002608
2609Directly inject a MSI message. Only valid with in-kernel irqchip that handles
2610MSI messages.
2611
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002612::
2613
2614 struct kvm_msi {
Jan Kiszka07975ad2012-03-29 21:14:12 +02002615 __u32 address_lo;
2616 __u32 address_hi;
2617 __u32 data;
2618 __u32 flags;
Andre Przywara2b8ddd92016-07-15 12:43:24 +01002619 __u32 devid;
2620 __u8 pad[12];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002621 };
Jan Kiszka07975ad2012-03-29 21:14:12 +02002622
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002623flags:
2624 KVM_MSI_VALID_DEVID: devid contains a valid value. The per-VM
Paolo Bonzini6f49b2f2016-08-04 13:59:56 +02002625 KVM_CAP_MSI_DEVID capability advertises the requirement to provide
2626 the device ID. If this capability is not available, userspace
2627 should never set the KVM_MSI_VALID_DEVID flag as the ioctl might fail.
Andre Przywara2b8ddd92016-07-15 12:43:24 +01002628
Paolo Bonzini6f49b2f2016-08-04 13:59:56 +02002629If KVM_MSI_VALID_DEVID is set, devid contains a unique device identifier
2630for the device that wrote the MSI message. For PCI, this is usually a
2631BFD identifier in the lower 16 bits.
Jan Kiszka07975ad2012-03-29 21:14:12 +02002632
Paolo Bonzini055b6ae2016-08-04 14:01:05 +02002633On x86, address_hi is ignored unless the KVM_X2APIC_API_USE_32BIT_IDS
2634feature of KVM_CAP_X2APIC_API capability is enabled. If it is enabled,
2635address_hi bits 31-8 provide bits 31-8 of the destination id. Bits 7-0 of
2636address_hi must be zero.
Radim Krčmář371313132016-07-12 22:09:27 +02002637
Jan Kiszka414fa982012-04-24 16:40:15 +02002638
Jan Kiszka0589ff62012-04-24 16:40:16 +020026394.71 KVM_CREATE_PIT2
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002640--------------------
Jan Kiszka0589ff62012-04-24 16:40:16 +02002641
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002642:Capability: KVM_CAP_PIT2
2643:Architectures: x86
2644:Type: vm ioctl
2645:Parameters: struct kvm_pit_config (in)
2646:Returns: 0 on success, -1 on error
Jan Kiszka0589ff62012-04-24 16:40:16 +02002647
2648Creates an in-kernel device model for the i8254 PIT. This call is only valid
2649after enabling in-kernel irqchip support via KVM_CREATE_IRQCHIP. The following
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002650parameters have to be passed::
Jan Kiszka0589ff62012-04-24 16:40:16 +02002651
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002652 struct kvm_pit_config {
Jan Kiszka0589ff62012-04-24 16:40:16 +02002653 __u32 flags;
2654 __u32 pad[15];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002655 };
Jan Kiszka0589ff62012-04-24 16:40:16 +02002656
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002657Valid flags are::
Jan Kiszka0589ff62012-04-24 16:40:16 +02002658
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002659 #define KVM_PIT_SPEAKER_DUMMY 1 /* emulate speaker port stub */
Jan Kiszka0589ff62012-04-24 16:40:16 +02002660
Jan Kiszkab6ddf052012-04-24 16:40:17 +02002661PIT timer interrupts may use a per-VM kernel thread for injection. If it
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002662exists, this thread will have a name of the following pattern::
Jan Kiszkab6ddf052012-04-24 16:40:17 +02002663
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002664 kvm-pit/<owner-process-pid>
Jan Kiszkab6ddf052012-04-24 16:40:17 +02002665
2666When running a guest with elevated priorities, the scheduling parameters of
2667this thread may have to be adjusted accordingly.
2668
Jan Kiszka0589ff62012-04-24 16:40:16 +02002669This IOCTL replaces the obsolete KVM_CREATE_PIT.
2670
2671
26724.72 KVM_GET_PIT2
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002673-----------------
Jan Kiszka0589ff62012-04-24 16:40:16 +02002674
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002675:Capability: KVM_CAP_PIT_STATE2
2676:Architectures: x86
2677:Type: vm ioctl
2678:Parameters: struct kvm_pit_state2 (out)
2679:Returns: 0 on success, -1 on error
Jan Kiszka0589ff62012-04-24 16:40:16 +02002680
2681Retrieves the state of the in-kernel PIT model. Only valid after
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002682KVM_CREATE_PIT2. The state is returned in the following structure::
Jan Kiszka0589ff62012-04-24 16:40:16 +02002683
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002684 struct kvm_pit_state2 {
Jan Kiszka0589ff62012-04-24 16:40:16 +02002685 struct kvm_pit_channel_state channels[3];
2686 __u32 flags;
2687 __u32 reserved[9];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002688 };
Jan Kiszka0589ff62012-04-24 16:40:16 +02002689
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002690Valid flags are::
Jan Kiszka0589ff62012-04-24 16:40:16 +02002691
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002692 /* disable PIT in HPET legacy mode */
2693 #define KVM_PIT_FLAGS_HPET_LEGACY 0x00000001
Jan Kiszka0589ff62012-04-24 16:40:16 +02002694
2695This IOCTL replaces the obsolete KVM_GET_PIT.
2696
2697
26984.73 KVM_SET_PIT2
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002699-----------------
Jan Kiszka0589ff62012-04-24 16:40:16 +02002700
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002701:Capability: KVM_CAP_PIT_STATE2
2702:Architectures: x86
2703:Type: vm ioctl
2704:Parameters: struct kvm_pit_state2 (in)
2705:Returns: 0 on success, -1 on error
Jan Kiszka0589ff62012-04-24 16:40:16 +02002706
2707Sets the state of the in-kernel PIT model. Only valid after KVM_CREATE_PIT2.
2708See KVM_GET_PIT2 for details on struct kvm_pit_state2.
2709
2710This IOCTL replaces the obsolete KVM_SET_PIT.
2711
2712
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +000027134.74 KVM_PPC_GET_SMMU_INFO
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002714--------------------------
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00002715
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002716:Capability: KVM_CAP_PPC_GET_SMMU_INFO
2717:Architectures: powerpc
2718:Type: vm ioctl
2719:Parameters: None
2720:Returns: 0 on success, -1 on error
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00002721
2722This populates and returns a structure describing the features of
2723the "Server" class MMU emulation supported by KVM.
Stefan Hubercc22c352013-06-05 12:24:37 +02002724This can in turn be used by userspace to generate the appropriate
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00002725device-tree properties for the guest operating system.
2726
Carlos Garciac98be0c2014-04-04 22:31:00 -04002727The structure contains some global information, followed by an
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002728array of supported segment page sizes::
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00002729
2730 struct kvm_ppc_smmu_info {
2731 __u64 flags;
2732 __u32 slb_size;
2733 __u32 pad;
2734 struct kvm_ppc_one_seg_page_size sps[KVM_PPC_PAGE_SIZES_MAX_SZ];
2735 };
2736
2737The supported flags are:
2738
2739 - KVM_PPC_PAGE_SIZES_REAL:
2740 When that flag is set, guest page sizes must "fit" the backing
2741 store page sizes. When not set, any page size in the list can
2742 be used regardless of how they are backed by userspace.
2743
2744 - KVM_PPC_1T_SEGMENTS
2745 The emulated MMU supports 1T segments in addition to the
2746 standard 256M ones.
2747
Paul Mackerras901f8c32018-10-08 14:24:30 +11002748 - KVM_PPC_NO_HASH
2749 This flag indicates that HPT guests are not supported by KVM,
2750 thus all guests must use radix MMU mode.
2751
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00002752The "slb_size" field indicates how many SLB entries are supported
2753
2754The "sps" array contains 8 entries indicating the supported base
2755page sizes for a segment in increasing order. Each entry is defined
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002756as follow::
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00002757
2758 struct kvm_ppc_one_seg_page_size {
2759 __u32 page_shift; /* Base page shift of segment (or 0) */
2760 __u32 slb_enc; /* SLB encoding for BookS */
2761 struct kvm_ppc_one_page_size enc[KVM_PPC_PAGE_SIZES_MAX_SZ];
2762 };
2763
2764An entry with a "page_shift" of 0 is unused. Because the array is
2765organized in increasing order, a lookup can stop when encoutering
2766such an entry.
2767
2768The "slb_enc" field provides the encoding to use in the SLB for the
2769page size. The bits are in positions such as the value can directly
2770be OR'ed into the "vsid" argument of the slbmte instruction.
2771
2772The "enc" array is a list which for each of those segment base page
2773size provides the list of supported actual page sizes (which can be
2774only larger or equal to the base page size), along with the
Anatol Pomozovf884ab12013-05-08 16:56:16 -07002775corresponding encoding in the hash PTE. Similarly, the array is
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +000027768 entries sorted by increasing sizes and an entry with a "0" shift
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002777is an empty entry and a terminator::
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00002778
2779 struct kvm_ppc_one_page_size {
2780 __u32 page_shift; /* Page shift (or 0) */
2781 __u32 pte_enc; /* Encoding in the HPTE (>>12) */
2782 };
2783
2784The "pte_enc" field provides a value that can OR'ed into the hash
2785PTE's RPN field (ie, it needs to be shifted left by 12 to OR it
2786into the hash PTE second double word).
2787
Alex Williamsonf36992e2012-06-29 09:56:16 -060027884.75 KVM_IRQFD
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002789--------------
Alex Williamsonf36992e2012-06-29 09:56:16 -06002790
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002791:Capability: KVM_CAP_IRQFD
2792:Architectures: x86 s390 arm arm64
2793:Type: vm ioctl
2794:Parameters: struct kvm_irqfd (in)
2795:Returns: 0 on success, -1 on error
Alex Williamsonf36992e2012-06-29 09:56:16 -06002796
2797Allows setting an eventfd to directly trigger a guest interrupt.
2798kvm_irqfd.fd specifies the file descriptor to use as the eventfd and
2799kvm_irqfd.gsi specifies the irqchip pin toggled by this event. When
Masanari Iida17180032013-12-22 01:21:23 +09002800an event is triggered on the eventfd, an interrupt is injected into
Alex Williamsonf36992e2012-06-29 09:56:16 -06002801the guest using the specified gsi pin. The irqfd is removed using
2802the KVM_IRQFD_FLAG_DEASSIGN flag, specifying both kvm_irqfd.fd
2803and kvm_irqfd.gsi.
2804
Alex Williamson7a844282012-09-21 11:58:03 -06002805With KVM_CAP_IRQFD_RESAMPLE, KVM_IRQFD supports a de-assert and notify
2806mechanism allowing emulation of level-triggered, irqfd-based
2807interrupts. When KVM_IRQFD_FLAG_RESAMPLE is set the user must pass an
2808additional eventfd in the kvm_irqfd.resamplefd field. When operating
2809in resample mode, posting of an interrupt through kvm_irq.fd asserts
2810the specified gsi in the irqchip. When the irqchip is resampled, such
Masanari Iida17180032013-12-22 01:21:23 +09002811as from an EOI, the gsi is de-asserted and the user is notified via
Alex Williamson7a844282012-09-21 11:58:03 -06002812kvm_irqfd.resamplefd. It is the user's responsibility to re-queue
2813the interrupt if the device making use of it still requires service.
2814Note that closing the resamplefd is not sufficient to disable the
2815irqfd. The KVM_IRQFD_FLAG_RESAMPLE is only necessary on assignment
2816and need not be specified with KVM_IRQFD_FLAG_DEASSIGN.
2817
Eric Auger180ae7b2016-07-22 16:20:41 +00002818On arm/arm64, gsi routing being supported, the following can happen:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002819
Eric Auger180ae7b2016-07-22 16:20:41 +00002820- in case no routing entry is associated to this gsi, injection fails
2821- in case the gsi is associated to an irqchip routing entry,
2822 irqchip.pin + 32 corresponds to the injected SPI ID.
Eric Auger995a0ee2016-07-22 16:20:42 +00002823- in case the gsi is associated to an MSI routing entry, the MSI
2824 message and device ID are translated into an LPI (support restricted
2825 to GICv3 ITS in-kernel emulation).
Eric Auger174178f2015-03-04 11:14:36 +01002826
Linus Torvalds5fecc9d2012-07-24 12:01:20 -070028274.76 KVM_PPC_ALLOCATE_HTAB
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002828--------------------------
Paul Mackerras32fad282012-05-04 02:32:53 +00002829
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002830:Capability: KVM_CAP_PPC_ALLOC_HTAB
2831:Architectures: powerpc
2832:Type: vm ioctl
2833:Parameters: Pointer to u32 containing hash table order (in/out)
2834:Returns: 0 on success, -1 on error
Paul Mackerras32fad282012-05-04 02:32:53 +00002835
2836This requests the host kernel to allocate an MMU hash table for a
2837guest using the PAPR paravirtualization interface. This only does
2838anything if the kernel is configured to use the Book 3S HV style of
2839virtualization. Otherwise the capability doesn't exist and the ioctl
2840returns an ENOTTY error. The rest of this description assumes Book 3S
2841HV.
2842
2843There must be no vcpus running when this ioctl is called; if there
2844are, it will do nothing and return an EBUSY error.
2845
2846The parameter is a pointer to a 32-bit unsigned integer variable
2847containing the order (log base 2) of the desired size of the hash
2848table, which must be between 18 and 46. On successful return from the
David Gibsonf98a8bf2016-12-20 16:49:03 +11002849ioctl, the value will not be changed by the kernel.
Paul Mackerras32fad282012-05-04 02:32:53 +00002850
2851If no hash table has been allocated when any vcpu is asked to run
2852(with the KVM_RUN ioctl), the host kernel will allocate a
2853default-sized hash table (16 MB).
2854
2855If this ioctl is called when a hash table has already been allocated,
David Gibsonf98a8bf2016-12-20 16:49:03 +11002856with a different order from the existing hash table, the existing hash
2857table will be freed and a new one allocated. If this is ioctl is
2858called when a hash table has already been allocated of the same order
2859as specified, the kernel will clear out the existing hash table (zero
2860all HPTEs). In either case, if the guest is using the virtualized
2861real-mode area (VRMA) facility, the kernel will re-create the VMRA
2862HPTEs on the next KVM_RUN of any vcpu.
Paul Mackerras32fad282012-05-04 02:32:53 +00002863
Cornelia Huck416ad652012-10-02 16:25:37 +020028644.77 KVM_S390_INTERRUPT
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002865-----------------------
Cornelia Huck416ad652012-10-02 16:25:37 +02002866
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002867:Capability: basic
2868:Architectures: s390
2869:Type: vm ioctl, vcpu ioctl
2870:Parameters: struct kvm_s390_interrupt (in)
2871:Returns: 0 on success, -1 on error
Cornelia Huck416ad652012-10-02 16:25:37 +02002872
2873Allows to inject an interrupt to the guest. Interrupts can be floating
2874(vm ioctl) or per cpu (vcpu ioctl), depending on the interrupt type.
2875
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002876Interrupt parameters are passed via kvm_s390_interrupt::
Cornelia Huck416ad652012-10-02 16:25:37 +02002877
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002878 struct kvm_s390_interrupt {
Cornelia Huck416ad652012-10-02 16:25:37 +02002879 __u32 type;
2880 __u32 parm;
2881 __u64 parm64;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002882 };
Cornelia Huck416ad652012-10-02 16:25:37 +02002883
2884type can be one of the following:
2885
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002886KVM_S390_SIGP_STOP (vcpu)
2887 - sigp stop; optional flags in parm
2888KVM_S390_PROGRAM_INT (vcpu)
2889 - program check; code in parm
2890KVM_S390_SIGP_SET_PREFIX (vcpu)
2891 - sigp set prefix; prefix address in parm
2892KVM_S390_RESTART (vcpu)
2893 - restart
2894KVM_S390_INT_CLOCK_COMP (vcpu)
2895 - clock comparator interrupt
2896KVM_S390_INT_CPU_TIMER (vcpu)
2897 - CPU timer interrupt
2898KVM_S390_INT_VIRTIO (vm)
2899 - virtio external interrupt; external interrupt
2900 parameters in parm and parm64
2901KVM_S390_INT_SERVICE (vm)
2902 - sclp external interrupt; sclp parameter in parm
2903KVM_S390_INT_EMERGENCY (vcpu)
2904 - sigp emergency; source cpu in parm
2905KVM_S390_INT_EXTERNAL_CALL (vcpu)
2906 - sigp external call; source cpu in parm
2907KVM_S390_INT_IO(ai,cssid,ssid,schid) (vm)
2908 - compound value to indicate an
2909 I/O interrupt (ai - adapter interrupt; cssid,ssid,schid - subchannel);
2910 I/O interruption parameters in parm (subchannel) and parm64 (intparm,
2911 interruption subclass)
2912KVM_S390_MCHK (vm, vcpu)
2913 - machine check interrupt; cr 14 bits in parm, machine check interrupt
2914 code in parm64 (note that machine checks needing further payload are not
2915 supported by this ioctl)
Cornelia Huck416ad652012-10-02 16:25:37 +02002916
Sean Christopherson5e124902019-02-15 12:48:38 -08002917This is an asynchronous vcpu ioctl and can be invoked from any thread.
Cornelia Huck416ad652012-10-02 16:25:37 +02002918
Paul Mackerrasa2932922012-11-19 22:57:20 +000029194.78 KVM_PPC_GET_HTAB_FD
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002920------------------------
Paul Mackerrasa2932922012-11-19 22:57:20 +00002921
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002922:Capability: KVM_CAP_PPC_HTAB_FD
2923:Architectures: powerpc
2924:Type: vm ioctl
2925:Parameters: Pointer to struct kvm_get_htab_fd (in)
2926:Returns: file descriptor number (>= 0) on success, -1 on error
Paul Mackerrasa2932922012-11-19 22:57:20 +00002927
2928This returns a file descriptor that can be used either to read out the
2929entries in the guest's hashed page table (HPT), or to write entries to
2930initialize the HPT. The returned fd can only be written to if the
2931KVM_GET_HTAB_WRITE bit is set in the flags field of the argument, and
2932can only be read if that bit is clear. The argument struct looks like
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002933this::
Paul Mackerrasa2932922012-11-19 22:57:20 +00002934
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002935 /* For KVM_PPC_GET_HTAB_FD */
2936 struct kvm_get_htab_fd {
Paul Mackerrasa2932922012-11-19 22:57:20 +00002937 __u64 flags;
2938 __u64 start_index;
2939 __u64 reserved[2];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002940 };
Paul Mackerrasa2932922012-11-19 22:57:20 +00002941
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002942 /* Values for kvm_get_htab_fd.flags */
2943 #define KVM_GET_HTAB_BOLTED_ONLY ((__u64)0x1)
2944 #define KVM_GET_HTAB_WRITE ((__u64)0x2)
Paul Mackerrasa2932922012-11-19 22:57:20 +00002945
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002946The 'start_index' field gives the index in the HPT of the entry at
Paul Mackerrasa2932922012-11-19 22:57:20 +00002947which to start reading. It is ignored when writing.
2948
2949Reads on the fd will initially supply information about all
2950"interesting" HPT entries. Interesting entries are those with the
2951bolted bit set, if the KVM_GET_HTAB_BOLTED_ONLY bit is set, otherwise
2952all entries. When the end of the HPT is reached, the read() will
2953return. If read() is called again on the fd, it will start again from
2954the beginning of the HPT, but will only return HPT entries that have
2955changed since they were last read.
2956
2957Data read or written is structured as a header (8 bytes) followed by a
2958series of valid HPT entries (16 bytes) each. The header indicates how
2959many valid HPT entries there are and how many invalid entries follow
2960the valid entries. The invalid entries are not represented explicitly
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002961in the stream. The header format is::
Paul Mackerrasa2932922012-11-19 22:57:20 +00002962
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002963 struct kvm_get_htab_header {
Paul Mackerrasa2932922012-11-19 22:57:20 +00002964 __u32 index;
2965 __u16 n_valid;
2966 __u16 n_invalid;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002967 };
Paul Mackerrasa2932922012-11-19 22:57:20 +00002968
2969Writes to the fd create HPT entries starting at the index given in the
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002970header; first 'n_valid' valid entries with contents from the data
2971written, then 'n_invalid' invalid entries, invalidating any previously
Paul Mackerrasa2932922012-11-19 22:57:20 +00002972valid entries found.
2973
Scott Wood852b6d52013-04-12 14:08:42 +000029744.79 KVM_CREATE_DEVICE
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002975----------------------
Scott Wood852b6d52013-04-12 14:08:42 +00002976
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002977:Capability: KVM_CAP_DEVICE_CTRL
2978:Type: vm ioctl
2979:Parameters: struct kvm_create_device (in/out)
2980:Returns: 0 on success, -1 on error
2981
Scott Wood852b6d52013-04-12 14:08:42 +00002982Errors:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002983
2984 ====== =======================================================
2985 ENODEV The device type is unknown or unsupported
2986 EEXIST Device already created, and this type of device may not
Scott Wood852b6d52013-04-12 14:08:42 +00002987 be instantiated multiple times
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002988 ====== =======================================================
Scott Wood852b6d52013-04-12 14:08:42 +00002989
2990 Other error conditions may be defined by individual device types or
2991 have their standard meanings.
2992
2993Creates an emulated device in the kernel. The file descriptor returned
2994in fd can be used with KVM_SET/GET/HAS_DEVICE_ATTR.
2995
2996If the KVM_CREATE_DEVICE_TEST flag is set, only test whether the
2997device type is supported (not necessarily whether it can be created
2998in the current vm).
2999
3000Individual devices should not define flags. Attributes should be used
3001for specifying any behavior that is not implied by the device type
3002number.
3003
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003004::
3005
3006 struct kvm_create_device {
Scott Wood852b6d52013-04-12 14:08:42 +00003007 __u32 type; /* in: KVM_DEV_TYPE_xxx */
3008 __u32 fd; /* out: device handle */
3009 __u32 flags; /* in: KVM_CREATE_DEVICE_xxx */
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003010 };
Scott Wood852b6d52013-04-12 14:08:42 +00003011
30124.80 KVM_SET_DEVICE_ATTR/KVM_GET_DEVICE_ATTR
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003013--------------------------------------------
Scott Wood852b6d52013-04-12 14:08:42 +00003014
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003015:Capability: KVM_CAP_DEVICE_CTRL, KVM_CAP_VM_ATTRIBUTES for vm device,
3016 KVM_CAP_VCPU_ATTRIBUTES for vcpu device
3017:Type: device ioctl, vm ioctl, vcpu ioctl
3018:Parameters: struct kvm_device_attr
3019:Returns: 0 on success, -1 on error
3020
Scott Wood852b6d52013-04-12 14:08:42 +00003021Errors:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003022
3023 ===== =============================================================
3024 ENXIO The group or attribute is unknown/unsupported for this device
David Hildenbrandf9cbd9b2016-03-03 09:48:47 +01003025 or hardware support is missing.
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003026 EPERM The attribute cannot (currently) be accessed this way
Scott Wood852b6d52013-04-12 14:08:42 +00003027 (e.g. read-only attribute, or attribute that only makes
3028 sense when the device is in a different state)
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003029 ===== =============================================================
Scott Wood852b6d52013-04-12 14:08:42 +00003030
3031 Other error conditions may be defined by individual device types.
3032
3033Gets/sets a specified piece of device configuration and/or state. The
3034semantics are device-specific. See individual device documentation in
3035the "devices" directory. As with ONE_REG, the size of the data
3036transferred is defined by the particular attribute.
3037
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003038::
3039
3040 struct kvm_device_attr {
Scott Wood852b6d52013-04-12 14:08:42 +00003041 __u32 flags; /* no flags currently defined */
3042 __u32 group; /* device-defined */
3043 __u64 attr; /* group-defined */
3044 __u64 addr; /* userspace address of attr data */
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003045 };
Scott Wood852b6d52013-04-12 14:08:42 +00003046
30474.81 KVM_HAS_DEVICE_ATTR
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003048------------------------
Scott Wood852b6d52013-04-12 14:08:42 +00003049
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003050:Capability: KVM_CAP_DEVICE_CTRL, KVM_CAP_VM_ATTRIBUTES for vm device,
3051 KVM_CAP_VCPU_ATTRIBUTES for vcpu device
3052:Type: device ioctl, vm ioctl, vcpu ioctl
3053:Parameters: struct kvm_device_attr
3054:Returns: 0 on success, -1 on error
3055
Scott Wood852b6d52013-04-12 14:08:42 +00003056Errors:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003057
3058 ===== =============================================================
3059 ENXIO The group or attribute is unknown/unsupported for this device
David Hildenbrandf9cbd9b2016-03-03 09:48:47 +01003060 or hardware support is missing.
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003061 ===== =============================================================
Scott Wood852b6d52013-04-12 14:08:42 +00003062
3063Tests whether a device supports a particular attribute. A successful
3064return indicates the attribute is implemented. It does not necessarily
3065indicate that the attribute can be read or written in the device's
3066current state. "addr" is ignored.
Alex Williamsonf36992e2012-06-29 09:56:16 -06003067
Alexey Kardashevskiyd8968f12013-06-19 11:42:07 +100030684.82 KVM_ARM_VCPU_INIT
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003069----------------------
Christoffer Dall749cf76c2013-01-20 18:28:06 -05003070
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003071:Capability: basic
3072:Architectures: arm, arm64
3073:Type: vcpu ioctl
3074:Parameters: struct kvm_vcpu_init (in)
3075:Returns: 0 on success; -1 on error
3076
Christoffer Dall749cf76c2013-01-20 18:28:06 -05003077Errors:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003078
3079 ====== =================================================================
3080  EINVAL    the target is unknown, or the combination of features is invalid.
3081  ENOENT    a features bit specified is unknown.
3082 ====== =================================================================
Christoffer Dall749cf76c2013-01-20 18:28:06 -05003083
3084This tells KVM what type of CPU to present to the guest, and what
3085optional features it should have.  This will cause a reset of the cpu
3086registers to their initial values.  If this is not called, KVM_RUN will
3087return ENOEXEC for that vcpu.
3088
3089Note that because some registers reflect machine topology, all vcpus
3090should be created before this ioctl is invoked.
3091
Christoffer Dallf7fa034d2014-10-16 16:40:53 +02003092Userspace can call this function multiple times for a given vcpu, including
3093after the vcpu has been run. This will reset the vcpu to its initial
3094state. All calls to this function after the initial call must use the same
3095target and same set of feature flags, otherwise EINVAL will be returned.
3096
Marc Zyngieraa024c22013-01-20 18:28:13 -05003097Possible features:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003098
Marc Zyngieraa024c22013-01-20 18:28:13 -05003099 - KVM_ARM_VCPU_POWER_OFF: Starts the CPU in a power-off state.
Christoffer Dall3ad8b3d2014-10-16 16:14:43 +02003100 Depends on KVM_CAP_ARM_PSCI. If not set, the CPU will be powered on
3101 and execute guest code when KVM_RUN is called.
Marc Zyngier379e04c72013-04-02 17:46:31 +01003102 - KVM_ARM_VCPU_EL1_32BIT: Starts the CPU in a 32bit mode.
3103 Depends on KVM_CAP_ARM_EL1_32BIT (arm64 only).
Marc Zyngier85bd0ba2018-01-21 16:42:56 +00003104 - KVM_ARM_VCPU_PSCI_0_2: Emulate PSCI v0.2 (or a future revision
3105 backward compatible with v0.2) for the CPU.
Anup Patel50bb0c92014-04-29 11:24:17 +05303106 Depends on KVM_CAP_ARM_PSCI_0_2.
Shannon Zhao808e7382016-01-11 22:46:15 +08003107 - KVM_ARM_VCPU_PMU_V3: Emulate PMUv3 for the CPU.
3108 Depends on KVM_CAP_ARM_PMU_V3.
Marc Zyngieraa024c22013-01-20 18:28:13 -05003109
Amit Daniel Kachhapa22fa322019-04-23 10:12:36 +05303110 - KVM_ARM_VCPU_PTRAUTH_ADDRESS: Enables Address Pointer authentication
3111 for arm64 only.
Amit Daniel Kachhapa243c162019-04-23 10:12:37 +05303112 Depends on KVM_CAP_ARM_PTRAUTH_ADDRESS.
3113 If KVM_CAP_ARM_PTRAUTH_ADDRESS and KVM_CAP_ARM_PTRAUTH_GENERIC are
3114 both present, then both KVM_ARM_VCPU_PTRAUTH_ADDRESS and
3115 KVM_ARM_VCPU_PTRAUTH_GENERIC must be requested or neither must be
3116 requested.
Amit Daniel Kachhapa22fa322019-04-23 10:12:36 +05303117
3118 - KVM_ARM_VCPU_PTRAUTH_GENERIC: Enables Generic Pointer authentication
3119 for arm64 only.
Amit Daniel Kachhapa243c162019-04-23 10:12:37 +05303120 Depends on KVM_CAP_ARM_PTRAUTH_GENERIC.
3121 If KVM_CAP_ARM_PTRAUTH_ADDRESS and KVM_CAP_ARM_PTRAUTH_GENERIC are
3122 both present, then both KVM_ARM_VCPU_PTRAUTH_ADDRESS and
3123 KVM_ARM_VCPU_PTRAUTH_GENERIC must be requested or neither must be
3124 requested.
Amit Daniel Kachhapa22fa322019-04-23 10:12:36 +05303125
Dave Martin50036ad2018-09-28 14:39:27 +01003126 - KVM_ARM_VCPU_SVE: Enables SVE for the CPU (arm64 only).
3127 Depends on KVM_CAP_ARM_SVE.
3128 Requires KVM_ARM_VCPU_FINALIZE(KVM_ARM_VCPU_SVE):
3129
3130 * After KVM_ARM_VCPU_INIT:
3131
3132 - KVM_REG_ARM64_SVE_VLS may be read using KVM_GET_ONE_REG: the
3133 initial value of this pseudo-register indicates the best set of
3134 vector lengths possible for a vcpu on this host.
3135
3136 * Before KVM_ARM_VCPU_FINALIZE(KVM_ARM_VCPU_SVE):
3137
3138 - KVM_RUN and KVM_GET_REG_LIST are not available;
3139
3140 - KVM_GET_ONE_REG and KVM_SET_ONE_REG cannot be used to access
3141 the scalable archietctural SVE registers
3142 KVM_REG_ARM64_SVE_ZREG(), KVM_REG_ARM64_SVE_PREG() or
3143 KVM_REG_ARM64_SVE_FFR;
3144
3145 - KVM_REG_ARM64_SVE_VLS may optionally be written using
3146 KVM_SET_ONE_REG, to modify the set of vector lengths available
3147 for the vcpu.
3148
3149 * After KVM_ARM_VCPU_FINALIZE(KVM_ARM_VCPU_SVE):
3150
3151 - the KVM_REG_ARM64_SVE_VLS pseudo-register is immutable, and can
3152 no longer be written using KVM_SET_ONE_REG.
Christoffer Dall749cf76c2013-01-20 18:28:06 -05003153
Anup Patel740edfc2013-09-30 14:20:08 +053031544.83 KVM_ARM_PREFERRED_TARGET
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003155-----------------------------
Anup Patel740edfc2013-09-30 14:20:08 +05303156
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003157:Capability: basic
3158:Architectures: arm, arm64
3159:Type: vm ioctl
Randy Dunlapa84b7572020-07-07 11:04:14 -07003160:Parameters: struct kvm_vcpu_init (out)
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003161:Returns: 0 on success; -1 on error
3162
Anup Patel740edfc2013-09-30 14:20:08 +05303163Errors:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003164
3165 ====== ==========================================
3166 ENODEV no preferred target available for the host
3167 ====== ==========================================
Anup Patel740edfc2013-09-30 14:20:08 +05303168
3169This queries KVM for preferred CPU target type which can be emulated
3170by KVM on underlying host.
3171
3172The ioctl returns struct kvm_vcpu_init instance containing information
3173about preferred CPU target type and recommended features for it. The
3174kvm_vcpu_init->features bitmap returned will have feature bits set if
3175the preferred target recommends setting these features, but this is
3176not mandatory.
3177
3178The information returned by this ioctl can be used to prepare an instance
3179of struct kvm_vcpu_init for KVM_ARM_VCPU_INIT ioctl which will result in
Randy Dunlap3747c5d2020-07-03 14:29:06 -07003180VCPU matching underlying host.
Anup Patel740edfc2013-09-30 14:20:08 +05303181
3182
31834.84 KVM_GET_REG_LIST
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003184---------------------
Christoffer Dall749cf76c2013-01-20 18:28:06 -05003185
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003186:Capability: basic
3187:Architectures: arm, arm64, mips
3188:Type: vcpu ioctl
3189:Parameters: struct kvm_reg_list (in/out)
3190:Returns: 0 on success; -1 on error
3191
Christoffer Dall749cf76c2013-01-20 18:28:06 -05003192Errors:
Christoffer Dall749cf76c2013-01-20 18:28:06 -05003193
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003194 ===== ==============================================================
3195  E2BIG     the reg index list is too big to fit in the array specified by
3196             the user (the number required will be written into n).
3197 ===== ==============================================================
3198
3199::
3200
3201 struct kvm_reg_list {
Christoffer Dall749cf76c2013-01-20 18:28:06 -05003202 __u64 n; /* number of registers in reg[] */
3203 __u64 reg[0];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003204 };
Christoffer Dall749cf76c2013-01-20 18:28:06 -05003205
3206This ioctl returns the guest registers that are supported for the
3207KVM_GET_ONE_REG/KVM_SET_ONE_REG calls.
3208
Christoffer Dallce01e4e2013-09-23 14:55:56 -07003209
32104.85 KVM_ARM_SET_DEVICE_ADDR (deprecated)
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003211-----------------------------------------
Christoffer Dall3401d5462013-01-23 13:18:04 -05003212
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003213:Capability: KVM_CAP_ARM_SET_DEVICE_ADDR
3214:Architectures: arm, arm64
3215:Type: vm ioctl
3216:Parameters: struct kvm_arm_device_address (in)
3217:Returns: 0 on success, -1 on error
3218
Christoffer Dall3401d5462013-01-23 13:18:04 -05003219Errors:
Christoffer Dall3401d5462013-01-23 13:18:04 -05003220
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003221 ====== ============================================
3222 ENODEV The device id is unknown
3223 ENXIO Device not supported on current system
3224 EEXIST Address already set
3225 E2BIG Address outside guest physical address space
3226 EBUSY Address overlaps with other device range
3227 ====== ============================================
3228
3229::
3230
3231 struct kvm_arm_device_addr {
Christoffer Dall3401d5462013-01-23 13:18:04 -05003232 __u64 id;
3233 __u64 addr;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003234 };
Christoffer Dall3401d5462013-01-23 13:18:04 -05003235
3236Specify a device address in the guest's physical address space where guests
3237can access emulated or directly exposed devices, which the host kernel needs
3238to know about. The id field is an architecture specific identifier for a
3239specific device.
3240
Marc Zyngier379e04c72013-04-02 17:46:31 +01003241ARM/arm64 divides the id field into two parts, a device id and an
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003242address type id specific to the individual device::
Christoffer Dall3401d5462013-01-23 13:18:04 -05003243
3244  bits: | 63 ... 32 | 31 ... 16 | 15 ... 0 |
3245 field: | 0x00000000 | device id | addr type id |
3246
Marc Zyngier379e04c72013-04-02 17:46:31 +01003247ARM/arm64 currently only require this when using the in-kernel GIC
3248support for the hardware VGIC features, using KVM_ARM_DEVICE_VGIC_V2
3249as the device id. When setting the base address for the guest's
3250mapping of the VGIC virtual CPU and distributor interface, the ioctl
3251must be called after calling KVM_CREATE_IRQCHIP, but before calling
3252KVM_RUN on any of the VCPUs. Calling this ioctl twice for any of the
3253base addresses will return -EEXIST.
Christoffer Dall3401d5462013-01-23 13:18:04 -05003254
Christoffer Dallce01e4e2013-09-23 14:55:56 -07003255Note, this IOCTL is deprecated and the more flexible SET/GET_DEVICE_ATTR API
3256should be used instead.
3257
3258
Anup Patel740edfc2013-09-30 14:20:08 +053032594.86 KVM_PPC_RTAS_DEFINE_TOKEN
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003260------------------------------
Michael Ellerman8e591cb2013-04-17 20:30:00 +00003261
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003262:Capability: KVM_CAP_PPC_RTAS
3263:Architectures: ppc
3264:Type: vm ioctl
3265:Parameters: struct kvm_rtas_token_args
3266:Returns: 0 on success, -1 on error
Michael Ellerman8e591cb2013-04-17 20:30:00 +00003267
3268Defines a token value for a RTAS (Run Time Abstraction Services)
3269service in order to allow it to be handled in the kernel. The
3270argument struct gives the name of the service, which must be the name
3271of a service that has a kernel-side implementation. If the token
3272value is non-zero, it will be associated with that service, and
3273subsequent RTAS calls by the guest specifying that token will be
3274handled by the kernel. If the token value is 0, then any token
3275associated with the service will be forgotten, and subsequent RTAS
3276calls by the guest for that service will be passed to userspace to be
3277handled.
3278
Alex Bennée4bd9d342014-09-09 17:27:18 +010032794.87 KVM_SET_GUEST_DEBUG
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003280------------------------
Alex Bennée4bd9d342014-09-09 17:27:18 +01003281
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003282:Capability: KVM_CAP_SET_GUEST_DEBUG
3283:Architectures: x86, s390, ppc, arm64
3284:Type: vcpu ioctl
3285:Parameters: struct kvm_guest_debug (in)
3286:Returns: 0 on success; -1 on error
Alex Bennée4bd9d342014-09-09 17:27:18 +01003287
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003288::
3289
3290 struct kvm_guest_debug {
Alex Bennée4bd9d342014-09-09 17:27:18 +01003291 __u32 control;
3292 __u32 pad;
3293 struct kvm_guest_debug_arch arch;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003294 };
Alex Bennée4bd9d342014-09-09 17:27:18 +01003295
3296Set up the processor specific debug registers and configure vcpu for
3297handling guest debug events. There are two parts to the structure, the
3298first a control bitfield indicates the type of debug events to handle
3299when running. Common control bits are:
3300
3301 - KVM_GUESTDBG_ENABLE: guest debugging is enabled
3302 - KVM_GUESTDBG_SINGLESTEP: the next run should single-step
3303
3304The top 16 bits of the control field are architecture specific control
3305flags which can include the following:
3306
Alex Bennée4bd611c2015-07-07 17:29:57 +01003307 - KVM_GUESTDBG_USE_SW_BP: using software breakpoints [x86, arm64]
Alex Bennée834bf882015-07-07 17:30:02 +01003308 - KVM_GUESTDBG_USE_HW_BP: using hardware breakpoints [x86, s390, arm64]
Alex Bennée4bd9d342014-09-09 17:27:18 +01003309 - KVM_GUESTDBG_INJECT_DB: inject DB type exception [x86]
3310 - KVM_GUESTDBG_INJECT_BP: inject BP type exception [x86]
3311 - KVM_GUESTDBG_EXIT_PENDING: trigger an immediate guest exit [s390]
3312
3313For example KVM_GUESTDBG_USE_SW_BP indicates that software breakpoints
3314are enabled in memory so we need to ensure breakpoint exceptions are
3315correctly trapped and the KVM run loop exits at the breakpoint and not
3316running off into the normal guest vector. For KVM_GUESTDBG_USE_HW_BP
3317we need to ensure the guest vCPUs architecture specific registers are
3318updated to the correct (supplied) values.
3319
3320The second part of the structure is architecture specific and
3321typically contains a set of debug registers.
3322
Alex Bennée834bf882015-07-07 17:30:02 +01003323For arm64 the number of debug registers is implementation defined and
3324can be determined by querying the KVM_CAP_GUEST_DEBUG_HW_BPS and
3325KVM_CAP_GUEST_DEBUG_HW_WPS capabilities which return a positive number
3326indicating the number of supported registers.
3327
Fabiano Rosas1a9167a2019-06-19 13:01:27 -03003328For ppc, the KVM_CAP_PPC_GUEST_DEBUG_SSTEP capability indicates whether
3329the single-step debug event (KVM_GUESTDBG_SINGLESTEP) is supported.
3330
Alex Bennée4bd9d342014-09-09 17:27:18 +01003331When debug events exit the main run loop with the reason
3332KVM_EXIT_DEBUG with the kvm_debug_exit_arch part of the kvm_run
3333structure containing architecture specific debug information.
Christoffer Dall3401d5462013-01-23 13:18:04 -05003334
Alex Bennée209cf192014-09-09 17:27:19 +010033354.88 KVM_GET_EMULATED_CPUID
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003336---------------------------
Alex Bennée209cf192014-09-09 17:27:19 +01003337
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003338:Capability: KVM_CAP_EXT_EMUL_CPUID
3339:Architectures: x86
3340:Type: system ioctl
3341:Parameters: struct kvm_cpuid2 (in/out)
3342:Returns: 0 on success, -1 on error
Alex Bennée209cf192014-09-09 17:27:19 +01003343
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003344::
3345
3346 struct kvm_cpuid2 {
Alex Bennée209cf192014-09-09 17:27:19 +01003347 __u32 nent;
3348 __u32 flags;
3349 struct kvm_cpuid_entry2 entries[0];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003350 };
Alex Bennée209cf192014-09-09 17:27:19 +01003351
3352The member 'flags' is used for passing flags from userspace.
3353
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003354::
Alex Bennée209cf192014-09-09 17:27:19 +01003355
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003356 #define KVM_CPUID_FLAG_SIGNIFCANT_INDEX BIT(0)
Sean Christopherson7ff6c032020-03-02 15:56:51 -08003357 #define KVM_CPUID_FLAG_STATEFUL_FUNC BIT(1) /* deprecated */
3358 #define KVM_CPUID_FLAG_STATE_READ_NEXT BIT(2) /* deprecated */
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003359
3360 struct kvm_cpuid_entry2 {
Alex Bennée209cf192014-09-09 17:27:19 +01003361 __u32 function;
3362 __u32 index;
3363 __u32 flags;
3364 __u32 eax;
3365 __u32 ebx;
3366 __u32 ecx;
3367 __u32 edx;
3368 __u32 padding[3];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003369 };
Alex Bennée209cf192014-09-09 17:27:19 +01003370
3371This ioctl returns x86 cpuid features which are emulated by
3372kvm.Userspace can use the information returned by this ioctl to query
3373which features are emulated by kvm instead of being present natively.
3374
3375Userspace invokes KVM_GET_EMULATED_CPUID by passing a kvm_cpuid2
3376structure with the 'nent' field indicating the number of entries in
3377the variable-size array 'entries'. If the number of entries is too low
3378to describe the cpu capabilities, an error (E2BIG) is returned. If the
3379number is too high, the 'nent' field is adjusted and an error (ENOMEM)
3380is returned. If the number is just right, the 'nent' field is adjusted
3381to the number of valid entries in the 'entries' array, which is then
3382filled.
3383
3384The entries returned are the set CPUID bits of the respective features
3385which kvm emulates, as returned by the CPUID instruction, with unknown
3386or unsupported feature bits cleared.
3387
3388Features like x2apic, for example, may not be present in the host cpu
3389but are exposed by kvm in KVM_GET_SUPPORTED_CPUID because they can be
3390emulated efficiently and thus not included here.
3391
3392The fields in each entry are defined as follows:
3393
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003394 function:
3395 the eax value used to obtain the entry
3396 index:
3397 the ecx value used to obtain the entry (for entries that are
Alex Bennée209cf192014-09-09 17:27:19 +01003398 affected by ecx)
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003399 flags:
3400 an OR of zero or more of the following:
3401
Alex Bennée209cf192014-09-09 17:27:19 +01003402 KVM_CPUID_FLAG_SIGNIFCANT_INDEX:
3403 if the index field is valid
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003404
3405 eax, ebx, ecx, edx:
3406
3407 the values returned by the cpuid instruction for
Alex Bennée209cf192014-09-09 17:27:19 +01003408 this function/index combination
3409
Thomas Huth41408c282015-02-06 15:01:21 +010034104.89 KVM_S390_MEM_OP
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003411--------------------
Thomas Huth41408c282015-02-06 15:01:21 +01003412
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003413:Capability: KVM_CAP_S390_MEM_OP
3414:Architectures: s390
3415:Type: vcpu ioctl
3416:Parameters: struct kvm_s390_mem_op (in)
3417:Returns: = 0 on success,
3418 < 0 on generic error (e.g. -EFAULT or -ENOMEM),
3419 > 0 if an exception occurred while walking the page tables
Thomas Huth41408c282015-02-06 15:01:21 +01003420
Masanari Iida5d4f6f32015-10-04 00:46:21 +09003421Read or write data from/to the logical (virtual) memory of a VCPU.
Thomas Huth41408c282015-02-06 15:01:21 +01003422
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003423Parameters are specified via the following structure::
Thomas Huth41408c282015-02-06 15:01:21 +01003424
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003425 struct kvm_s390_mem_op {
Thomas Huth41408c282015-02-06 15:01:21 +01003426 __u64 gaddr; /* the guest address */
3427 __u64 flags; /* flags */
3428 __u32 size; /* amount of bytes */
3429 __u32 op; /* type of operation */
3430 __u64 buf; /* buffer in userspace */
3431 __u8 ar; /* the access register number */
3432 __u8 reserved[31]; /* should be set to 0 */
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003433 };
Thomas Huth41408c282015-02-06 15:01:21 +01003434
3435The type of operation is specified in the "op" field. It is either
3436KVM_S390_MEMOP_LOGICAL_READ for reading from logical memory space or
3437KVM_S390_MEMOP_LOGICAL_WRITE for writing to logical memory space. The
3438KVM_S390_MEMOP_F_CHECK_ONLY flag can be set in the "flags" field to check
3439whether the corresponding memory access would create an access exception
3440(without touching the data in the memory at the destination). In case an
3441access exception occurred while walking the MMU tables of the guest, the
3442ioctl returns a positive error number to indicate the type of exception.
3443This exception is also raised directly at the corresponding VCPU if the
3444flag KVM_S390_MEMOP_F_INJECT_EXCEPTION is set in the "flags" field.
3445
3446The start address of the memory region has to be specified in the "gaddr"
Cornelia Huckb4d863c2019-08-29 14:47:46 +02003447field, and the length of the region in the "size" field (which must not
3448be 0). The maximum value for "size" can be obtained by checking the
3449KVM_CAP_S390_MEM_OP capability. "buf" is the buffer supplied by the
3450userspace application where the read data should be written to for
3451KVM_S390_MEMOP_LOGICAL_READ, or where the data that should be written is
3452stored for a KVM_S390_MEMOP_LOGICAL_WRITE. When KVM_S390_MEMOP_F_CHECK_ONLY
3453is specified, "buf" is unused and can be NULL. "ar" designates the access
3454register number to be used; the valid range is 0..15.
Thomas Huth41408c282015-02-06 15:01:21 +01003455
3456The "reserved" field is meant for future extensions. It is not used by
3457KVM with the currently defined set of flags.
3458
Jason J. Herne30ee2a92014-09-23 09:23:01 -040034594.90 KVM_S390_GET_SKEYS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003460-----------------------
Jason J. Herne30ee2a92014-09-23 09:23:01 -04003461
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003462:Capability: KVM_CAP_S390_SKEYS
3463:Architectures: s390
3464:Type: vm ioctl
3465:Parameters: struct kvm_s390_skeys
3466:Returns: 0 on success, KVM_S390_GET_KEYS_NONE if guest is not using storage
3467 keys, negative value on error
Jason J. Herne30ee2a92014-09-23 09:23:01 -04003468
3469This ioctl is used to get guest storage key values on the s390
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003470architecture. The ioctl takes parameters via the kvm_s390_skeys struct::
Jason J. Herne30ee2a92014-09-23 09:23:01 -04003471
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003472 struct kvm_s390_skeys {
Jason J. Herne30ee2a92014-09-23 09:23:01 -04003473 __u64 start_gfn;
3474 __u64 count;
3475 __u64 skeydata_addr;
3476 __u32 flags;
3477 __u32 reserved[9];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003478 };
Jason J. Herne30ee2a92014-09-23 09:23:01 -04003479
3480The start_gfn field is the number of the first guest frame whose storage keys
3481you want to get.
3482
3483The count field is the number of consecutive frames (starting from start_gfn)
3484whose storage keys to get. The count field must be at least 1 and the maximum
3485allowed value is defined as KVM_S390_SKEYS_ALLOC_MAX. Values outside this range
3486will cause the ioctl to return -EINVAL.
3487
3488The skeydata_addr field is the address to a buffer large enough to hold count
3489bytes. This buffer will be filled with storage key data by the ioctl.
3490
34914.91 KVM_S390_SET_SKEYS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003492-----------------------
Jason J. Herne30ee2a92014-09-23 09:23:01 -04003493
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003494:Capability: KVM_CAP_S390_SKEYS
3495:Architectures: s390
3496:Type: vm ioctl
3497:Parameters: struct kvm_s390_skeys
3498:Returns: 0 on success, negative value on error
Jason J. Herne30ee2a92014-09-23 09:23:01 -04003499
3500This ioctl is used to set guest storage key values on the s390
3501architecture. The ioctl takes parameters via the kvm_s390_skeys struct.
3502See section on KVM_S390_GET_SKEYS for struct definition.
3503
3504The start_gfn field is the number of the first guest frame whose storage keys
3505you want to set.
3506
3507The count field is the number of consecutive frames (starting from start_gfn)
3508whose storage keys to get. The count field must be at least 1 and the maximum
3509allowed value is defined as KVM_S390_SKEYS_ALLOC_MAX. Values outside this range
3510will cause the ioctl to return -EINVAL.
3511
3512The skeydata_addr field is the address to a buffer containing count bytes of
3513storage keys. Each byte in the buffer will be set as the storage key for a
3514single frame starting at start_gfn for count frames.
3515
3516Note: If any architecturally invalid key value is found in the given data then
3517the ioctl will return -EINVAL.
3518
Jens Freimann47b43c52014-11-11 20:57:06 +010035194.92 KVM_S390_IRQ
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003520-----------------
Jens Freimann47b43c52014-11-11 20:57:06 +01003521
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003522:Capability: KVM_CAP_S390_INJECT_IRQ
3523:Architectures: s390
3524:Type: vcpu ioctl
3525:Parameters: struct kvm_s390_irq (in)
3526:Returns: 0 on success, -1 on error
3527
Jens Freimann47b43c52014-11-11 20:57:06 +01003528Errors:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003529
3530
3531 ====== =================================================================
3532 EINVAL interrupt type is invalid
3533 type is KVM_S390_SIGP_STOP and flag parameter is invalid value,
Jens Freimann47b43c52014-11-11 20:57:06 +01003534 type is KVM_S390_INT_EXTERNAL_CALL and code is bigger
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003535 than the maximum of VCPUs
3536 EBUSY type is KVM_S390_SIGP_SET_PREFIX and vcpu is not stopped,
3537 type is KVM_S390_SIGP_STOP and a stop irq is already pending,
Jens Freimann47b43c52014-11-11 20:57:06 +01003538 type is KVM_S390_INT_EXTERNAL_CALL and an external call interrupt
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003539 is already pending
3540 ====== =================================================================
Jens Freimann47b43c52014-11-11 20:57:06 +01003541
3542Allows to inject an interrupt to the guest.
3543
3544Using struct kvm_s390_irq as a parameter allows
3545to inject additional payload which is not
3546possible via KVM_S390_INTERRUPT.
3547
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003548Interrupt parameters are passed via kvm_s390_irq::
Jens Freimann47b43c52014-11-11 20:57:06 +01003549
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003550 struct kvm_s390_irq {
Jens Freimann47b43c52014-11-11 20:57:06 +01003551 __u64 type;
3552 union {
3553 struct kvm_s390_io_info io;
3554 struct kvm_s390_ext_info ext;
3555 struct kvm_s390_pgm_info pgm;
3556 struct kvm_s390_emerg_info emerg;
3557 struct kvm_s390_extcall_info extcall;
3558 struct kvm_s390_prefix_info prefix;
3559 struct kvm_s390_stop_info stop;
3560 struct kvm_s390_mchk_info mchk;
3561 char reserved[64];
3562 } u;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003563 };
Jens Freimann47b43c52014-11-11 20:57:06 +01003564
3565type can be one of the following:
3566
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003567- KVM_S390_SIGP_STOP - sigp stop; parameter in .stop
3568- KVM_S390_PROGRAM_INT - program check; parameters in .pgm
3569- KVM_S390_SIGP_SET_PREFIX - sigp set prefix; parameters in .prefix
3570- KVM_S390_RESTART - restart; no parameters
3571- KVM_S390_INT_CLOCK_COMP - clock comparator interrupt; no parameters
3572- KVM_S390_INT_CPU_TIMER - CPU timer interrupt; no parameters
3573- KVM_S390_INT_EMERGENCY - sigp emergency; parameters in .emerg
3574- KVM_S390_INT_EXTERNAL_CALL - sigp external call; parameters in .extcall
3575- KVM_S390_MCHK - machine check interrupt; parameters in .mchk
Jens Freimann47b43c52014-11-11 20:57:06 +01003576
Sean Christopherson5e124902019-02-15 12:48:38 -08003577This is an asynchronous vcpu ioctl and can be invoked from any thread.
Jens Freimann47b43c52014-11-11 20:57:06 +01003578
Jens Freimann816c7662014-11-24 17:13:46 +010035794.94 KVM_S390_GET_IRQ_STATE
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003580---------------------------
Jens Freimann816c7662014-11-24 17:13:46 +01003581
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003582:Capability: KVM_CAP_S390_IRQ_STATE
3583:Architectures: s390
3584:Type: vcpu ioctl
3585:Parameters: struct kvm_s390_irq_state (out)
3586:Returns: >= number of bytes copied into buffer,
3587 -EINVAL if buffer size is 0,
3588 -ENOBUFS if buffer size is too small to fit all pending interrupts,
3589 -EFAULT if the buffer address was invalid
Jens Freimann816c7662014-11-24 17:13:46 +01003590
3591This ioctl allows userspace to retrieve the complete state of all currently
3592pending interrupts in a single buffer. Use cases include migration
3593and introspection. The parameter structure contains the address of a
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003594userspace buffer and its length::
Jens Freimann816c7662014-11-24 17:13:46 +01003595
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003596 struct kvm_s390_irq_state {
Jens Freimann816c7662014-11-24 17:13:46 +01003597 __u64 buf;
Christian Borntraegerbb64da92017-11-21 16:02:52 +01003598 __u32 flags; /* will stay unused for compatibility reasons */
Jens Freimann816c7662014-11-24 17:13:46 +01003599 __u32 len;
Christian Borntraegerbb64da92017-11-21 16:02:52 +01003600 __u32 reserved[4]; /* will stay unused for compatibility reasons */
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003601 };
Jens Freimann816c7662014-11-24 17:13:46 +01003602
3603Userspace passes in the above struct and for each pending interrupt a
3604struct kvm_s390_irq is copied to the provided buffer.
3605
Christian Borntraegerbb64da92017-11-21 16:02:52 +01003606The structure contains a flags and a reserved field for future extensions. As
3607the kernel never checked for flags == 0 and QEMU never pre-zeroed flags and
3608reserved, these fields can not be used in the future without breaking
3609compatibility.
3610
Jens Freimann816c7662014-11-24 17:13:46 +01003611If -ENOBUFS is returned the buffer provided was too small and userspace
3612may retry with a bigger buffer.
3613
36144.95 KVM_S390_SET_IRQ_STATE
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003615---------------------------
Jens Freimann816c7662014-11-24 17:13:46 +01003616
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003617:Capability: KVM_CAP_S390_IRQ_STATE
3618:Architectures: s390
3619:Type: vcpu ioctl
3620:Parameters: struct kvm_s390_irq_state (in)
3621:Returns: 0 on success,
3622 -EFAULT if the buffer address was invalid,
3623 -EINVAL for an invalid buffer length (see below),
3624 -EBUSY if there were already interrupts pending,
3625 errors occurring when actually injecting the
Jens Freimann816c7662014-11-24 17:13:46 +01003626 interrupt. See KVM_S390_IRQ.
3627
3628This ioctl allows userspace to set the complete state of all cpu-local
3629interrupts currently pending for the vcpu. It is intended for restoring
3630interrupt state after a migration. The input parameter is a userspace buffer
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003631containing a struct kvm_s390_irq_state::
Jens Freimann816c7662014-11-24 17:13:46 +01003632
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003633 struct kvm_s390_irq_state {
Jens Freimann816c7662014-11-24 17:13:46 +01003634 __u64 buf;
Christian Borntraegerbb64da92017-11-21 16:02:52 +01003635 __u32 flags; /* will stay unused for compatibility reasons */
Jens Freimann816c7662014-11-24 17:13:46 +01003636 __u32 len;
Christian Borntraegerbb64da92017-11-21 16:02:52 +01003637 __u32 reserved[4]; /* will stay unused for compatibility reasons */
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003638 };
Jens Freimann816c7662014-11-24 17:13:46 +01003639
Christian Borntraegerbb64da92017-11-21 16:02:52 +01003640The restrictions for flags and reserved apply as well.
3641(see KVM_S390_GET_IRQ_STATE)
3642
Jens Freimann816c7662014-11-24 17:13:46 +01003643The userspace memory referenced by buf contains a struct kvm_s390_irq
3644for each interrupt to be injected into the guest.
3645If one of the interrupts could not be injected for some reason the
3646ioctl aborts.
3647
3648len must be a multiple of sizeof(struct kvm_s390_irq). It must be > 0
3649and it must not exceed (max_vcpus + 32) * sizeof(struct kvm_s390_irq),
3650which is the maximum number of possibly pending cpu-local interrupts.
Jens Freimann47b43c52014-11-11 20:57:06 +01003651
Alexey Kardashevskiyed8e5a22016-01-19 16:12:28 +110036524.96 KVM_SMI
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003653------------
Paolo Bonzinif0778252015-04-01 15:06:40 +02003654
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003655:Capability: KVM_CAP_X86_SMM
3656:Architectures: x86
3657:Type: vcpu ioctl
3658:Parameters: none
3659:Returns: 0 on success, -1 on error
Paolo Bonzinif0778252015-04-01 15:06:40 +02003660
3661Queues an SMI on the thread's vcpu.
3662
Alexey Kardashevskiyd3695aa2016-02-15 12:55:09 +110036634.97 KVM_CAP_PPC_MULTITCE
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003664-------------------------
Alexey Kardashevskiyd3695aa2016-02-15 12:55:09 +11003665
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003666:Capability: KVM_CAP_PPC_MULTITCE
3667:Architectures: ppc
3668:Type: vm
Alexey Kardashevskiyd3695aa2016-02-15 12:55:09 +11003669
3670This capability means the kernel is capable of handling hypercalls
3671H_PUT_TCE_INDIRECT and H_STUFF_TCE without passing those into the user
3672space. This significantly accelerates DMA operations for PPC KVM guests.
3673User space should expect that its handlers for these hypercalls
3674are not going to be called if user space previously registered LIOBN
3675in KVM (via KVM_CREATE_SPAPR_TCE or similar calls).
3676
3677In order to enable H_PUT_TCE_INDIRECT and H_STUFF_TCE use in the guest,
3678user space might have to advertise it for the guest. For example,
3679IBM pSeries (sPAPR) guest starts using them if "hcall-multi-tce" is
3680present in the "ibm,hypertas-functions" device-tree property.
3681
3682The hypercalls mentioned above may or may not be processed successfully
3683in the kernel based fast path. If they can not be handled by the kernel,
3684they will get passed on to user space. So user space still has to have
3685an implementation for these despite the in kernel acceleration.
3686
3687This capability is always enabled.
3688
Alexey Kardashevskiy58ded422016-03-01 17:54:40 +110036894.98 KVM_CREATE_SPAPR_TCE_64
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003690----------------------------
Alexey Kardashevskiy58ded422016-03-01 17:54:40 +11003691
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003692:Capability: KVM_CAP_SPAPR_TCE_64
3693:Architectures: powerpc
3694:Type: vm ioctl
3695:Parameters: struct kvm_create_spapr_tce_64 (in)
3696:Returns: file descriptor for manipulating the created TCE table
Alexey Kardashevskiy58ded422016-03-01 17:54:40 +11003697
3698This is an extension for KVM_CAP_SPAPR_TCE which only supports 32bit
3699windows, described in 4.62 KVM_CREATE_SPAPR_TCE
3700
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003701This capability uses extended struct in ioctl interface::
Alexey Kardashevskiy58ded422016-03-01 17:54:40 +11003702
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003703 /* for KVM_CAP_SPAPR_TCE_64 */
3704 struct kvm_create_spapr_tce_64 {
Alexey Kardashevskiy58ded422016-03-01 17:54:40 +11003705 __u64 liobn;
3706 __u32 page_shift;
3707 __u32 flags;
3708 __u64 offset; /* in pages */
3709 __u64 size; /* in pages */
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003710 };
Alexey Kardashevskiy58ded422016-03-01 17:54:40 +11003711
3712The aim of extension is to support an additional bigger DMA window with
3713a variable page size.
3714KVM_CREATE_SPAPR_TCE_64 receives a 64bit window size, an IOMMU page shift and
3715a bus offset of the corresponding DMA window, @size and @offset are numbers
3716of IOMMU pages.
3717
3718@flags are not used at the moment.
3719
3720The rest of functionality is identical to KVM_CREATE_SPAPR_TCE.
3721
David Gibsonccc4df42016-12-20 16:48:57 +110037224.99 KVM_REINJECT_CONTROL
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003723-------------------------
Radim Krčmář107d44a22016-03-02 22:56:53 +01003724
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003725:Capability: KVM_CAP_REINJECT_CONTROL
3726:Architectures: x86
3727:Type: vm ioctl
3728:Parameters: struct kvm_reinject_control (in)
3729:Returns: 0 on success,
Radim Krčmář107d44a22016-03-02 22:56:53 +01003730 -EFAULT if struct kvm_reinject_control cannot be read,
3731 -ENXIO if KVM_CREATE_PIT or KVM_CREATE_PIT2 didn't succeed earlier.
3732
3733i8254 (PIT) has two modes, reinject and !reinject. The default is reinject,
3734where KVM queues elapsed i8254 ticks and monitors completion of interrupt from
3735vector(s) that i8254 injects. Reinject mode dequeues a tick and injects its
3736interrupt whenever there isn't a pending interrupt from i8254.
3737!reinject mode injects an interrupt as soon as a tick arrives.
3738
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003739::
3740
3741 struct kvm_reinject_control {
Radim Krčmář107d44a22016-03-02 22:56:53 +01003742 __u8 pit_reinject;
3743 __u8 reserved[31];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003744 };
Radim Krčmář107d44a22016-03-02 22:56:53 +01003745
3746pit_reinject = 0 (!reinject mode) is recommended, unless running an old
3747operating system that uses the PIT for timing (e.g. Linux 2.4.x).
3748
David Gibsonccc4df42016-12-20 16:48:57 +110037494.100 KVM_PPC_CONFIGURE_V3_MMU
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003750------------------------------
Paul Mackerrasc9270132017-01-30 21:21:41 +11003751
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003752:Capability: KVM_CAP_PPC_RADIX_MMU or KVM_CAP_PPC_HASH_MMU_V3
3753:Architectures: ppc
3754:Type: vm ioctl
3755:Parameters: struct kvm_ppc_mmuv3_cfg (in)
3756:Returns: 0 on success,
Paul Mackerrasc9270132017-01-30 21:21:41 +11003757 -EFAULT if struct kvm_ppc_mmuv3_cfg cannot be read,
3758 -EINVAL if the configuration is invalid
3759
3760This ioctl controls whether the guest will use radix or HPT (hashed
3761page table) translation, and sets the pointer to the process table for
3762the guest.
3763
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003764::
3765
3766 struct kvm_ppc_mmuv3_cfg {
Paul Mackerrasc9270132017-01-30 21:21:41 +11003767 __u64 flags;
3768 __u64 process_table;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003769 };
Paul Mackerrasc9270132017-01-30 21:21:41 +11003770
3771There are two bits that can be set in flags; KVM_PPC_MMUV3_RADIX and
3772KVM_PPC_MMUV3_GTSE. KVM_PPC_MMUV3_RADIX, if set, configures the guest
3773to use radix tree translation, and if clear, to use HPT translation.
3774KVM_PPC_MMUV3_GTSE, if set and if KVM permits it, configures the guest
3775to be able to use the global TLB and SLB invalidation instructions;
3776if clear, the guest may not use these instructions.
3777
3778The process_table field specifies the address and size of the guest
3779process table, which is in the guest's space. This field is formatted
3780as the second doubleword of the partition table entry, as defined in
3781the Power ISA V3.00, Book III section 5.7.6.1.
3782
David Gibsonccc4df42016-12-20 16:48:57 +110037834.101 KVM_PPC_GET_RMMU_INFO
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003784---------------------------
Paul Mackerrasc9270132017-01-30 21:21:41 +11003785
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003786:Capability: KVM_CAP_PPC_RADIX_MMU
3787:Architectures: ppc
3788:Type: vm ioctl
3789:Parameters: struct kvm_ppc_rmmu_info (out)
3790:Returns: 0 on success,
Paul Mackerrasc9270132017-01-30 21:21:41 +11003791 -EFAULT if struct kvm_ppc_rmmu_info cannot be written,
3792 -EINVAL if no useful information can be returned
3793
3794This ioctl returns a structure containing two things: (a) a list
3795containing supported radix tree geometries, and (b) a list that maps
3796page sizes to put in the "AP" (actual page size) field for the tlbie
3797(TLB invalidate entry) instruction.
3798
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003799::
3800
3801 struct kvm_ppc_rmmu_info {
Paul Mackerrasc9270132017-01-30 21:21:41 +11003802 struct kvm_ppc_radix_geom {
3803 __u8 page_shift;
3804 __u8 level_bits[4];
3805 __u8 pad[3];
3806 } geometries[8];
3807 __u32 ap_encodings[8];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003808 };
Paul Mackerrasc9270132017-01-30 21:21:41 +11003809
3810The geometries[] field gives up to 8 supported geometries for the
3811radix page table, in terms of the log base 2 of the smallest page
3812size, and the number of bits indexed at each level of the tree, from
3813the PTE level up to the PGD level in that order. Any unused entries
3814will have 0 in the page_shift field.
3815
3816The ap_encodings gives the supported page sizes and their AP field
3817encodings, encoded with the AP value in the top 3 bits and the log
3818base 2 of the page size in the bottom 6 bits.
3819
David Gibsonef1ead02016-12-20 16:48:58 +110038204.102 KVM_PPC_RESIZE_HPT_PREPARE
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003821--------------------------------
David Gibsonef1ead02016-12-20 16:48:58 +11003822
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003823:Capability: KVM_CAP_SPAPR_RESIZE_HPT
3824:Architectures: powerpc
3825:Type: vm ioctl
3826:Parameters: struct kvm_ppc_resize_hpt (in)
3827:Returns: 0 on successful completion,
David Gibsonef1ead02016-12-20 16:48:58 +11003828 >0 if a new HPT is being prepared, the value is an estimated
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003829 number of milliseconds until preparation is complete,
David Gibsonef1ead02016-12-20 16:48:58 +11003830 -EFAULT if struct kvm_reinject_control cannot be read,
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003831 -EINVAL if the supplied shift or flags are invalid,
3832 -ENOMEM if unable to allocate the new HPT,
3833 -ENOSPC if there was a hash collision
3834
3835::
3836
3837 struct kvm_ppc_rmmu_info {
3838 struct kvm_ppc_radix_geom {
3839 __u8 page_shift;
3840 __u8 level_bits[4];
3841 __u8 pad[3];
3842 } geometries[8];
3843 __u32 ap_encodings[8];
3844 };
3845
3846The geometries[] field gives up to 8 supported geometries for the
3847radix page table, in terms of the log base 2 of the smallest page
3848size, and the number of bits indexed at each level of the tree, from
3849the PTE level up to the PGD level in that order. Any unused entries
3850will have 0 in the page_shift field.
3851
3852The ap_encodings gives the supported page sizes and their AP field
3853encodings, encoded with the AP value in the top 3 bits and the log
3854base 2 of the page size in the bottom 6 bits.
3855
38564.102 KVM_PPC_RESIZE_HPT_PREPARE
3857--------------------------------
3858
3859:Capability: KVM_CAP_SPAPR_RESIZE_HPT
3860:Architectures: powerpc
3861:Type: vm ioctl
3862:Parameters: struct kvm_ppc_resize_hpt (in)
3863:Returns: 0 on successful completion,
3864 >0 if a new HPT is being prepared, the value is an estimated
3865 number of milliseconds until preparation is complete,
3866 -EFAULT if struct kvm_reinject_control cannot be read,
3867 -EINVAL if the supplied shift or flags are invalid,when moving existing
3868 HPT entries to the new HPT,
David Gibsonef1ead02016-12-20 16:48:58 +11003869 -EIO on other error conditions
3870
3871Used to implement the PAPR extension for runtime resizing of a guest's
3872Hashed Page Table (HPT). Specifically this starts, stops or monitors
3873the preparation of a new potential HPT for the guest, essentially
3874implementing the H_RESIZE_HPT_PREPARE hypercall.
3875
3876If called with shift > 0 when there is no pending HPT for the guest,
3877this begins preparation of a new pending HPT of size 2^(shift) bytes.
3878It then returns a positive integer with the estimated number of
3879milliseconds until preparation is complete.
3880
3881If called when there is a pending HPT whose size does not match that
3882requested in the parameters, discards the existing pending HPT and
3883creates a new one as above.
3884
3885If called when there is a pending HPT of the size requested, will:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003886
David Gibsonef1ead02016-12-20 16:48:58 +11003887 * If preparation of the pending HPT is already complete, return 0
3888 * If preparation of the pending HPT has failed, return an error
3889 code, then discard the pending HPT.
3890 * If preparation of the pending HPT is still in progress, return an
3891 estimated number of milliseconds until preparation is complete.
3892
3893If called with shift == 0, discards any currently pending HPT and
3894returns 0 (i.e. cancels any in-progress preparation).
3895
3896flags is reserved for future expansion, currently setting any bits in
3897flags will result in an -EINVAL.
3898
3899Normally this will be called repeatedly with the same parameters until
3900it returns <= 0. The first call will initiate preparation, subsequent
3901ones will monitor preparation until it completes or fails.
3902
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003903::
3904
3905 struct kvm_ppc_resize_hpt {
David Gibsonef1ead02016-12-20 16:48:58 +11003906 __u64 flags;
3907 __u32 shift;
3908 __u32 pad;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003909 };
David Gibsonef1ead02016-12-20 16:48:58 +11003910
39114.103 KVM_PPC_RESIZE_HPT_COMMIT
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003912-------------------------------
David Gibsonef1ead02016-12-20 16:48:58 +11003913
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003914:Capability: KVM_CAP_SPAPR_RESIZE_HPT
3915:Architectures: powerpc
3916:Type: vm ioctl
3917:Parameters: struct kvm_ppc_resize_hpt (in)
3918:Returns: 0 on successful completion,
David Gibsonef1ead02016-12-20 16:48:58 +11003919 -EFAULT if struct kvm_reinject_control cannot be read,
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003920 -EINVAL if the supplied shift or flags are invalid,
David Gibsonef1ead02016-12-20 16:48:58 +11003921 -ENXIO is there is no pending HPT, or the pending HPT doesn't
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003922 have the requested size,
3923 -EBUSY if the pending HPT is not fully prepared,
David Gibsonef1ead02016-12-20 16:48:58 +11003924 -ENOSPC if there was a hash collision when moving existing
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003925 HPT entries to the new HPT,
David Gibsonef1ead02016-12-20 16:48:58 +11003926 -EIO on other error conditions
3927
3928Used to implement the PAPR extension for runtime resizing of a guest's
3929Hashed Page Table (HPT). Specifically this requests that the guest be
3930transferred to working with the new HPT, essentially implementing the
3931H_RESIZE_HPT_COMMIT hypercall.
3932
3933This should only be called after KVM_PPC_RESIZE_HPT_PREPARE has
3934returned 0 with the same parameters. In other cases
3935KVM_PPC_RESIZE_HPT_COMMIT will return an error (usually -ENXIO or
3936-EBUSY, though others may be possible if the preparation was started,
3937but failed).
3938
3939This will have undefined effects on the guest if it has not already
3940placed itself in a quiescent state where no vcpu will make MMU enabled
3941memory accesses.
3942
3943On succsful completion, the pending HPT will become the guest's active
3944HPT and the previous HPT will be discarded.
3945
3946On failure, the guest will still be operating on its previous HPT.
3947
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003948::
3949
3950 struct kvm_ppc_resize_hpt {
David Gibsonef1ead02016-12-20 16:48:58 +11003951 __u64 flags;
3952 __u32 shift;
3953 __u32 pad;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003954 };
David Gibsonef1ead02016-12-20 16:48:58 +11003955
Luiz Capitulino3aa53852017-03-13 09:08:20 -040039564.104 KVM_X86_GET_MCE_CAP_SUPPORTED
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003957-----------------------------------
Luiz Capitulino3aa53852017-03-13 09:08:20 -04003958
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003959:Capability: KVM_CAP_MCE
3960:Architectures: x86
3961:Type: system ioctl
3962:Parameters: u64 mce_cap (out)
3963:Returns: 0 on success, -1 on error
Luiz Capitulino3aa53852017-03-13 09:08:20 -04003964
3965Returns supported MCE capabilities. The u64 mce_cap parameter
3966has the same format as the MSR_IA32_MCG_CAP register. Supported
3967capabilities will have the corresponding bits set.
3968
39694.105 KVM_X86_SETUP_MCE
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003970-----------------------
Luiz Capitulino3aa53852017-03-13 09:08:20 -04003971
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003972:Capability: KVM_CAP_MCE
3973:Architectures: x86
3974:Type: vcpu ioctl
3975:Parameters: u64 mcg_cap (in)
3976:Returns: 0 on success,
Luiz Capitulino3aa53852017-03-13 09:08:20 -04003977 -EFAULT if u64 mcg_cap cannot be read,
3978 -EINVAL if the requested number of banks is invalid,
3979 -EINVAL if requested MCE capability is not supported.
3980
3981Initializes MCE support for use. The u64 mcg_cap parameter
3982has the same format as the MSR_IA32_MCG_CAP register and
3983specifies which capabilities should be enabled. The maximum
3984supported number of error-reporting banks can be retrieved when
3985checking for KVM_CAP_MCE. The supported capabilities can be
3986retrieved with KVM_X86_GET_MCE_CAP_SUPPORTED.
3987
39884.106 KVM_X86_SET_MCE
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003989---------------------
Luiz Capitulino3aa53852017-03-13 09:08:20 -04003990
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003991:Capability: KVM_CAP_MCE
3992:Architectures: x86
3993:Type: vcpu ioctl
3994:Parameters: struct kvm_x86_mce (in)
3995:Returns: 0 on success,
Luiz Capitulino3aa53852017-03-13 09:08:20 -04003996 -EFAULT if struct kvm_x86_mce cannot be read,
3997 -EINVAL if the bank number is invalid,
3998 -EINVAL if VAL bit is not set in status field.
3999
4000Inject a machine check error (MCE) into the guest. The input
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004001parameter is::
Luiz Capitulino3aa53852017-03-13 09:08:20 -04004002
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004003 struct kvm_x86_mce {
Luiz Capitulino3aa53852017-03-13 09:08:20 -04004004 __u64 status;
4005 __u64 addr;
4006 __u64 misc;
4007 __u64 mcg_status;
4008 __u8 bank;
4009 __u8 pad1[7];
4010 __u64 pad2[3];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004011 };
Luiz Capitulino3aa53852017-03-13 09:08:20 -04004012
4013If the MCE being reported is an uncorrected error, KVM will
4014inject it as an MCE exception into the guest. If the guest
4015MCG_STATUS register reports that an MCE is in progress, KVM
4016causes an KVM_EXIT_SHUTDOWN vmexit.
4017
4018Otherwise, if the MCE is a corrected error, KVM will just
4019store it in the corresponding bank (provided this bank is
4020not holding a previously reported uncorrected error).
4021
Claudio Imbrenda4036e382016-08-04 17:58:47 +020040224.107 KVM_S390_GET_CMMA_BITS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004023----------------------------
Claudio Imbrenda4036e382016-08-04 17:58:47 +02004024
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004025:Capability: KVM_CAP_S390_CMMA_MIGRATION
4026:Architectures: s390
4027:Type: vm ioctl
4028:Parameters: struct kvm_s390_cmma_log (in, out)
4029:Returns: 0 on success, a negative value on error
Claudio Imbrenda4036e382016-08-04 17:58:47 +02004030
4031This ioctl is used to get the values of the CMMA bits on the s390
4032architecture. It is meant to be used in two scenarios:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004033
Claudio Imbrenda4036e382016-08-04 17:58:47 +02004034- During live migration to save the CMMA values. Live migration needs
4035 to be enabled via the KVM_REQ_START_MIGRATION VM property.
4036- To non-destructively peek at the CMMA values, with the flag
4037 KVM_S390_CMMA_PEEK set.
4038
4039The ioctl takes parameters via the kvm_s390_cmma_log struct. The desired
4040values are written to a buffer whose location is indicated via the "values"
4041member in the kvm_s390_cmma_log struct. The values in the input struct are
4042also updated as needed.
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004043
Claudio Imbrenda4036e382016-08-04 17:58:47 +02004044Each CMMA value takes up one byte.
4045
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004046::
4047
4048 struct kvm_s390_cmma_log {
Claudio Imbrenda4036e382016-08-04 17:58:47 +02004049 __u64 start_gfn;
4050 __u32 count;
4051 __u32 flags;
4052 union {
4053 __u64 remaining;
4054 __u64 mask;
4055 };
4056 __u64 values;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004057 };
Claudio Imbrenda4036e382016-08-04 17:58:47 +02004058
4059start_gfn is the number of the first guest frame whose CMMA values are
4060to be retrieved,
4061
4062count is the length of the buffer in bytes,
4063
4064values points to the buffer where the result will be written to.
4065
4066If count is greater than KVM_S390_SKEYS_MAX, then it is considered to be
4067KVM_S390_SKEYS_MAX. KVM_S390_SKEYS_MAX is re-used for consistency with
4068other ioctls.
4069
4070The result is written in the buffer pointed to by the field values, and
4071the values of the input parameter are updated as follows.
4072
4073Depending on the flags, different actions are performed. The only
4074supported flag so far is KVM_S390_CMMA_PEEK.
4075
4076The default behaviour if KVM_S390_CMMA_PEEK is not set is:
4077start_gfn will indicate the first page frame whose CMMA bits were dirty.
4078It is not necessarily the same as the one passed as input, as clean pages
4079are skipped.
4080
4081count will indicate the number of bytes actually written in the buffer.
4082It can (and very often will) be smaller than the input value, since the
4083buffer is only filled until 16 bytes of clean values are found (which
4084are then not copied in the buffer). Since a CMMA migration block needs
4085the base address and the length, for a total of 16 bytes, we will send
4086back some clean data if there is some dirty data afterwards, as long as
4087the size of the clean data does not exceed the size of the header. This
4088allows to minimize the amount of data to be saved or transferred over
4089the network at the expense of more roundtrips to userspace. The next
4090invocation of the ioctl will skip over all the clean values, saving
4091potentially more than just the 16 bytes we found.
4092
4093If KVM_S390_CMMA_PEEK is set:
4094the existing storage attributes are read even when not in migration
4095mode, and no other action is performed;
4096
4097the output start_gfn will be equal to the input start_gfn,
4098
4099the output count will be equal to the input count, except if the end of
4100memory has been reached.
4101
4102In both cases:
4103the field "remaining" will indicate the total number of dirty CMMA values
4104still remaining, or 0 if KVM_S390_CMMA_PEEK is set and migration mode is
4105not enabled.
4106
4107mask is unused.
4108
4109values points to the userspace buffer where the result will be stored.
4110
4111This ioctl can fail with -ENOMEM if not enough memory can be allocated to
4112complete the task, with -ENXIO if CMMA is not enabled, with -EINVAL if
4113KVM_S390_CMMA_PEEK is not set but migration mode was not enabled, with
4114-EFAULT if the userspace address is invalid or if no page table is
4115present for the addresses (e.g. when using hugepages).
4116
41174.108 KVM_S390_SET_CMMA_BITS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004118----------------------------
Claudio Imbrenda4036e382016-08-04 17:58:47 +02004119
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004120:Capability: KVM_CAP_S390_CMMA_MIGRATION
4121:Architectures: s390
4122:Type: vm ioctl
4123:Parameters: struct kvm_s390_cmma_log (in)
4124:Returns: 0 on success, a negative value on error
Claudio Imbrenda4036e382016-08-04 17:58:47 +02004125
4126This ioctl is used to set the values of the CMMA bits on the s390
4127architecture. It is meant to be used during live migration to restore
4128the CMMA values, but there are no restrictions on its use.
4129The ioctl takes parameters via the kvm_s390_cmma_values struct.
4130Each CMMA value takes up one byte.
4131
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004132::
4133
4134 struct kvm_s390_cmma_log {
Claudio Imbrenda4036e382016-08-04 17:58:47 +02004135 __u64 start_gfn;
4136 __u32 count;
4137 __u32 flags;
4138 union {
4139 __u64 remaining;
4140 __u64 mask;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004141 };
Claudio Imbrenda4036e382016-08-04 17:58:47 +02004142 __u64 values;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004143 };
Claudio Imbrenda4036e382016-08-04 17:58:47 +02004144
4145start_gfn indicates the starting guest frame number,
4146
4147count indicates how many values are to be considered in the buffer,
4148
4149flags is not used and must be 0.
4150
4151mask indicates which PGSTE bits are to be considered.
4152
4153remaining is not used.
4154
4155values points to the buffer in userspace where to store the values.
4156
4157This ioctl can fail with -ENOMEM if not enough memory can be allocated to
4158complete the task, with -ENXIO if CMMA is not enabled, with -EINVAL if
4159the count field is too large (e.g. more than KVM_S390_CMMA_SIZE_MAX) or
4160if the flags field was not 0, with -EFAULT if the userspace address is
4161invalid, if invalid pages are written to (e.g. after the end of memory)
4162or if no page table is present for the addresses (e.g. when using
4163hugepages).
4164
Radim Krčmář7bf14c22018-02-01 15:04:17 +010041654.109 KVM_PPC_GET_CPU_CHAR
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004166--------------------------
Paul Mackerras3214d012018-01-15 16:06:47 +11004167
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004168:Capability: KVM_CAP_PPC_GET_CPU_CHAR
4169:Architectures: powerpc
4170:Type: vm ioctl
4171:Parameters: struct kvm_ppc_cpu_char (out)
4172:Returns: 0 on successful completion,
Paul Mackerras3214d012018-01-15 16:06:47 +11004173 -EFAULT if struct kvm_ppc_cpu_char cannot be written
4174
4175This ioctl gives userspace information about certain characteristics
4176of the CPU relating to speculative execution of instructions and
4177possible information leakage resulting from speculative execution (see
4178CVE-2017-5715, CVE-2017-5753 and CVE-2017-5754). The information is
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004179returned in struct kvm_ppc_cpu_char, which looks like this::
Paul Mackerras3214d012018-01-15 16:06:47 +11004180
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004181 struct kvm_ppc_cpu_char {
Paul Mackerras3214d012018-01-15 16:06:47 +11004182 __u64 character; /* characteristics of the CPU */
4183 __u64 behaviour; /* recommended software behaviour */
4184 __u64 character_mask; /* valid bits in character */
4185 __u64 behaviour_mask; /* valid bits in behaviour */
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004186 };
Paul Mackerras3214d012018-01-15 16:06:47 +11004187
4188For extensibility, the character_mask and behaviour_mask fields
4189indicate which bits of character and behaviour have been filled in by
4190the kernel. If the set of defined bits is extended in future then
4191userspace will be able to tell whether it is running on a kernel that
4192knows about the new bits.
4193
4194The character field describes attributes of the CPU which can help
4195with preventing inadvertent information disclosure - specifically,
4196whether there is an instruction to flash-invalidate the L1 data cache
4197(ori 30,30,0 or mtspr SPRN_TRIG2,rN), whether the L1 data cache is set
4198to a mode where entries can only be used by the thread that created
4199them, whether the bcctr[l] instruction prevents speculation, and
4200whether a speculation barrier instruction (ori 31,31,0) is provided.
4201
4202The behaviour field describes actions that software should take to
4203prevent inadvertent information disclosure, and thus describes which
4204vulnerabilities the hardware is subject to; specifically whether the
4205L1 data cache should be flushed when returning to user mode from the
4206kernel, and whether a speculation barrier should be placed between an
4207array bounds check and the array access.
4208
4209These fields use the same bit definitions as the new
4210H_GET_CPU_CHARACTERISTICS hypercall.
4211
Radim Krčmář7bf14c22018-02-01 15:04:17 +010042124.110 KVM_MEMORY_ENCRYPT_OP
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004213---------------------------
Brijesh Singh5acc5c02017-12-04 10:57:26 -06004214
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004215:Capability: basic
4216:Architectures: x86
Connor Kuehl46ca9ee2020-08-19 16:19:52 -05004217:Type: vm
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004218:Parameters: an opaque platform specific structure (in/out)
4219:Returns: 0 on success; -1 on error
Brijesh Singh5acc5c02017-12-04 10:57:26 -06004220
4221If the platform supports creating encrypted VMs then this ioctl can be used
4222for issuing platform-specific memory encryption commands to manage those
4223encrypted VMs.
4224
4225Currently, this ioctl is used for issuing Secure Encrypted Virtualization
4226(SEV) commands on AMD Processors. The SEV commands are defined in
Christoph Hellwig2f5947d2019-07-24 09:24:49 +02004227Documentation/virt/kvm/amd-memory-encryption.rst.
Brijesh Singh5acc5c02017-12-04 10:57:26 -06004228
Radim Krčmář7bf14c22018-02-01 15:04:17 +010042294.111 KVM_MEMORY_ENCRYPT_REG_REGION
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004230-----------------------------------
Brijesh Singh69eaede2017-12-04 10:57:26 -06004231
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004232:Capability: basic
4233:Architectures: x86
4234:Type: system
4235:Parameters: struct kvm_enc_region (in)
4236:Returns: 0 on success; -1 on error
Brijesh Singh69eaede2017-12-04 10:57:26 -06004237
4238This ioctl can be used to register a guest memory region which may
4239contain encrypted data (e.g. guest RAM, SMRAM etc).
4240
4241It is used in the SEV-enabled guest. When encryption is enabled, a guest
4242memory region may contain encrypted data. The SEV memory encryption
4243engine uses a tweak such that two identical plaintext pages, each at
4244different locations will have differing ciphertexts. So swapping or
4245moving ciphertext of those pages will not result in plaintext being
4246swapped. So relocating (or migrating) physical backing pages for the SEV
4247guest will require some additional steps.
4248
4249Note: The current SEV key management spec does not provide commands to
4250swap or migrate (move) ciphertext pages. Hence, for now we pin the guest
4251memory region registered with the ioctl.
4252
Radim Krčmář7bf14c22018-02-01 15:04:17 +010042534.112 KVM_MEMORY_ENCRYPT_UNREG_REGION
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004254-------------------------------------
Brijesh Singh69eaede2017-12-04 10:57:26 -06004255
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004256:Capability: basic
4257:Architectures: x86
4258:Type: system
4259:Parameters: struct kvm_enc_region (in)
4260:Returns: 0 on success; -1 on error
Brijesh Singh69eaede2017-12-04 10:57:26 -06004261
4262This ioctl can be used to unregister the guest memory region registered
4263with KVM_MEMORY_ENCRYPT_REG_REGION ioctl above.
4264
Roman Kaganfaeb7832018-02-01 16:48:32 +030042654.113 KVM_HYPERV_EVENTFD
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004266------------------------
Roman Kaganfaeb7832018-02-01 16:48:32 +03004267
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004268:Capability: KVM_CAP_HYPERV_EVENTFD
4269:Architectures: x86
4270:Type: vm ioctl
4271:Parameters: struct kvm_hyperv_eventfd (in)
Roman Kaganfaeb7832018-02-01 16:48:32 +03004272
4273This ioctl (un)registers an eventfd to receive notifications from the guest on
4274the specified Hyper-V connection id through the SIGNAL_EVENT hypercall, without
4275causing a user exit. SIGNAL_EVENT hypercall with non-zero event flag number
4276(bits 24-31) still triggers a KVM_EXIT_HYPERV_HCALL user exit.
4277
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004278::
4279
4280 struct kvm_hyperv_eventfd {
Roman Kaganfaeb7832018-02-01 16:48:32 +03004281 __u32 conn_id;
4282 __s32 fd;
4283 __u32 flags;
4284 __u32 padding[3];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004285 };
Roman Kaganfaeb7832018-02-01 16:48:32 +03004286
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004287The conn_id field should fit within 24 bits::
Roman Kaganfaeb7832018-02-01 16:48:32 +03004288
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004289 #define KVM_HYPERV_CONN_ID_MASK 0x00ffffff
Roman Kaganfaeb7832018-02-01 16:48:32 +03004290
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004291The acceptable values for the flags field are::
Roman Kaganfaeb7832018-02-01 16:48:32 +03004292
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004293 #define KVM_HYPERV_EVENTFD_DEASSIGN (1 << 0)
Roman Kaganfaeb7832018-02-01 16:48:32 +03004294
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004295:Returns: 0 on success,
4296 -EINVAL if conn_id or flags is outside the allowed range,
4297 -ENOENT on deassign if the conn_id isn't registered,
4298 -EEXIST on assign if the conn_id is already registered
Roman Kaganfaeb7832018-02-01 16:48:32 +03004299
Jim Mattson8fcc4b52018-07-10 11:27:20 +020043004.114 KVM_GET_NESTED_STATE
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004301--------------------------
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004302
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004303:Capability: KVM_CAP_NESTED_STATE
4304:Architectures: x86
4305:Type: vcpu ioctl
4306:Parameters: struct kvm_nested_state (in/out)
4307:Returns: 0 on success, -1 on error
4308
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004309Errors:
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004310
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004311 ===== =============================================================
4312 E2BIG the total state size exceeds the value of 'size' specified by
4313 the user; the size required will be written into size.
4314 ===== =============================================================
4315
4316::
4317
4318 struct kvm_nested_state {
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004319 __u16 flags;
4320 __u16 format;
4321 __u32 size;
Liran Alon6ca00df2019-06-16 15:03:10 +03004322
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004323 union {
Liran Alon6ca00df2019-06-16 15:03:10 +03004324 struct kvm_vmx_nested_state_hdr vmx;
4325 struct kvm_svm_nested_state_hdr svm;
4326
4327 /* Pad the header to 128 bytes. */
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004328 __u8 pad[120];
Liran Alon6ca00df2019-06-16 15:03:10 +03004329 } hdr;
4330
4331 union {
4332 struct kvm_vmx_nested_state_data vmx[0];
4333 struct kvm_svm_nested_state_data svm[0];
4334 } data;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004335 };
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004336
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004337 #define KVM_STATE_NESTED_GUEST_MODE 0x00000001
4338 #define KVM_STATE_NESTED_RUN_PENDING 0x00000002
4339 #define KVM_STATE_NESTED_EVMCS 0x00000004
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004340
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004341 #define KVM_STATE_NESTED_FORMAT_VMX 0
4342 #define KVM_STATE_NESTED_FORMAT_SVM 1
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004343
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004344 #define KVM_STATE_NESTED_VMX_VMCS_SIZE 0x1000
Liran Alon6ca00df2019-06-16 15:03:10 +03004345
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004346 #define KVM_STATE_NESTED_VMX_SMM_GUEST_MODE 0x00000001
4347 #define KVM_STATE_NESTED_VMX_SMM_VMXON 0x00000002
Liran Alon6ca00df2019-06-16 15:03:10 +03004348
Mauro Carvalho Chehab3c97f032020-09-09 16:10:48 +02004349 #define KVM_STATE_VMX_PREEMPTION_TIMER_DEADLINE 0x00000001
Peter Shier850448f2020-05-26 14:51:06 -07004350
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004351 struct kvm_vmx_nested_state_hdr {
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004352 __u64 vmxon_pa;
Liran Alon6ca00df2019-06-16 15:03:10 +03004353 __u64 vmcs12_pa;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004354
4355 struct {
4356 __u16 flags;
4357 } smm;
Paolo Bonzini83d31e52020-07-09 13:12:09 -04004358
4359 __u32 flags;
4360 __u64 preemption_timer_deadline;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004361 };
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004362
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004363 struct kvm_vmx_nested_state_data {
Liran Alon6ca00df2019-06-16 15:03:10 +03004364 __u8 vmcs12[KVM_STATE_NESTED_VMX_VMCS_SIZE];
4365 __u8 shadow_vmcs12[KVM_STATE_NESTED_VMX_VMCS_SIZE];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004366 };
Liran Alon6ca00df2019-06-16 15:03:10 +03004367
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004368This ioctl copies the vcpu's nested virtualization state from the kernel to
4369userspace.
4370
Liran Alon6ca00df2019-06-16 15:03:10 +03004371The maximum size of the state can be retrieved by passing KVM_CAP_NESTED_STATE
4372to the KVM_CHECK_EXTENSION ioctl().
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004373
43744.115 KVM_SET_NESTED_STATE
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004375--------------------------
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004376
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004377:Capability: KVM_CAP_NESTED_STATE
4378:Architectures: x86
4379:Type: vcpu ioctl
4380:Parameters: struct kvm_nested_state (in)
4381:Returns: 0 on success, -1 on error
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004382
Liran Alon6ca00df2019-06-16 15:03:10 +03004383This copies the vcpu's kvm_nested_state struct from userspace to the kernel.
4384For the definition of struct kvm_nested_state, see KVM_GET_NESTED_STATE.
Radim Krčmář7bf14c22018-02-01 15:04:17 +01004385
Peng Hao99434502018-10-14 07:09:56 +080043864.116 KVM_(UN)REGISTER_COALESCED_MMIO
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004387-------------------------------------
Peng Hao99434502018-10-14 07:09:56 +08004388
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004389:Capability: KVM_CAP_COALESCED_MMIO (for coalesced mmio)
4390 KVM_CAP_COALESCED_PIO (for coalesced pio)
4391:Architectures: all
4392:Type: vm ioctl
4393:Parameters: struct kvm_coalesced_mmio_zone
4394:Returns: 0 on success, < 0 on error
Peng Hao99434502018-10-14 07:09:56 +08004395
Peng Hao0804c842018-10-14 07:09:55 +08004396Coalesced I/O is a performance optimization that defers hardware
Peng Hao99434502018-10-14 07:09:56 +08004397register write emulation so that userspace exits are avoided. It is
4398typically used to reduce the overhead of emulating frequently accessed
4399hardware registers.
4400
Peng Hao0804c842018-10-14 07:09:55 +08004401When a hardware register is configured for coalesced I/O, write accesses
Peng Hao99434502018-10-14 07:09:56 +08004402do not exit to userspace and their value is recorded in a ring buffer
4403that is shared between kernel and userspace.
4404
Peng Hao0804c842018-10-14 07:09:55 +08004405Coalesced I/O is used if one or more write accesses to a hardware
Peng Hao99434502018-10-14 07:09:56 +08004406register can be deferred until a read or a write to another hardware
4407register on the same device. This last access will cause a vmexit and
4408userspace will process accesses from the ring buffer before emulating
Peng Hao0804c842018-10-14 07:09:55 +08004409it. That will avoid exiting to userspace on repeated writes.
4410
4411Coalesced pio is based on coalesced mmio. There is little difference
4412between coalesced mmio and pio except that coalesced pio records accesses
4413to I/O ports.
Peng Hao99434502018-10-14 07:09:56 +08004414
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +020044154.117 KVM_CLEAR_DIRTY_LOG (vm ioctl)
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004416------------------------------------
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02004417
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004418:Capability: KVM_CAP_MANUAL_DIRTY_LOG_PROTECT2
4419:Architectures: x86, arm, arm64, mips
4420:Type: vm ioctl
4421:Parameters: struct kvm_dirty_log (in)
4422:Returns: 0 on success, -1 on error
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02004423
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004424::
4425
4426 /* for KVM_CLEAR_DIRTY_LOG */
4427 struct kvm_clear_dirty_log {
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02004428 __u32 slot;
4429 __u32 num_pages;
4430 __u64 first_page;
4431 union {
4432 void __user *dirty_bitmap; /* one bit per page */
4433 __u64 padding;
4434 };
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004435 };
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02004436
4437The ioctl clears the dirty status of pages in a memory slot, according to
4438the bitmap that is passed in struct kvm_clear_dirty_log's dirty_bitmap
4439field. Bit 0 of the bitmap corresponds to page "first_page" in the
4440memory slot, and num_pages is the size in bits of the input bitmap.
Paolo Bonzini76d58e02019-04-17 15:28:44 +02004441first_page must be a multiple of 64; num_pages must also be a multiple of
444264 unless first_page + num_pages is the size of the memory slot. For each
4443bit that is set in the input bitmap, the corresponding page is marked "clean"
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02004444in KVM's dirty bitmap, and dirty tracking is re-enabled for that page
4445(for example via write-protection, or by clearing the dirty bit in
4446a page table entry).
4447
4448If KVM_CAP_MULTI_ADDRESS_SPACE is available, bits 16-31 specifies
4449the address space for which you want to return the dirty bitmap.
4450They must be less than the value that KVM_CHECK_EXTENSION returns for
4451the KVM_CAP_MULTI_ADDRESS_SPACE capability.
4452
Peter Xud7547c52019-05-08 17:15:47 +08004453This ioctl is mostly useful when KVM_CAP_MANUAL_DIRTY_LOG_PROTECT2
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02004454is enabled; for more information, see the description of the capability.
4455However, it can always be used as long as KVM_CHECK_EXTENSION confirms
Peter Xud7547c52019-05-08 17:15:47 +08004456that KVM_CAP_MANUAL_DIRTY_LOG_PROTECT2 is present.
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02004457
Vitaly Kuznetsov2bc39972018-12-10 18:21:56 +010044584.118 KVM_GET_SUPPORTED_HV_CPUID
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004459--------------------------------
Vitaly Kuznetsov2bc39972018-12-10 18:21:56 +01004460
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004461:Capability: KVM_CAP_HYPERV_CPUID
4462:Architectures: x86
4463:Type: vcpu ioctl
4464:Parameters: struct kvm_cpuid2 (in/out)
4465:Returns: 0 on success, -1 on error
Vitaly Kuznetsov2bc39972018-12-10 18:21:56 +01004466
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004467::
4468
4469 struct kvm_cpuid2 {
Vitaly Kuznetsov2bc39972018-12-10 18:21:56 +01004470 __u32 nent;
4471 __u32 padding;
4472 struct kvm_cpuid_entry2 entries[0];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004473 };
Vitaly Kuznetsov2bc39972018-12-10 18:21:56 +01004474
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004475 struct kvm_cpuid_entry2 {
Vitaly Kuznetsov2bc39972018-12-10 18:21:56 +01004476 __u32 function;
4477 __u32 index;
4478 __u32 flags;
4479 __u32 eax;
4480 __u32 ebx;
4481 __u32 ecx;
4482 __u32 edx;
4483 __u32 padding[3];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004484 };
Vitaly Kuznetsov2bc39972018-12-10 18:21:56 +01004485
4486This ioctl returns x86 cpuid features leaves related to Hyper-V emulation in
4487KVM. Userspace can use the information returned by this ioctl to construct
4488cpuid information presented to guests consuming Hyper-V enlightenments (e.g.
4489Windows or Hyper-V guests).
4490
4491CPUID feature leaves returned by this ioctl are defined by Hyper-V Top Level
4492Functional Specification (TLFS). These leaves can't be obtained with
4493KVM_GET_SUPPORTED_CPUID ioctl because some of them intersect with KVM feature
4494leaves (0x40000000, 0x40000001).
4495
4496Currently, the following list of CPUID leaves are returned:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004497 - HYPERV_CPUID_VENDOR_AND_MAX_FUNCTIONS
4498 - HYPERV_CPUID_INTERFACE
4499 - HYPERV_CPUID_VERSION
4500 - HYPERV_CPUID_FEATURES
4501 - HYPERV_CPUID_ENLIGHTMENT_INFO
4502 - HYPERV_CPUID_IMPLEMENT_LIMITS
4503 - HYPERV_CPUID_NESTED_FEATURES
Vitaly Kuznetsovb44f50d2020-09-24 16:57:51 +02004504 - HYPERV_CPUID_SYNDBG_VENDOR_AND_MAX_FUNCTIONS
4505 - HYPERV_CPUID_SYNDBG_INTERFACE
4506 - HYPERV_CPUID_SYNDBG_PLATFORM_CAPABILITIES
Vitaly Kuznetsov2bc39972018-12-10 18:21:56 +01004507
4508HYPERV_CPUID_NESTED_FEATURES leaf is only exposed when Enlightened VMCS was
4509enabled on the corresponding vCPU (KVM_CAP_HYPERV_ENLIGHTENED_VMCS).
4510
Vitaly Kuznetsovb44f50d2020-09-24 16:57:51 +02004511Userspace invokes KVM_GET_SUPPORTED_HV_CPUID by passing a kvm_cpuid2 structure
Vitaly Kuznetsov2bc39972018-12-10 18:21:56 +01004512with the 'nent' field indicating the number of entries in the variable-size
4513array 'entries'. If the number of entries is too low to describe all Hyper-V
4514feature leaves, an error (E2BIG) is returned. If the number is more or equal
4515to the number of Hyper-V feature leaves, the 'nent' field is adjusted to the
4516number of valid entries in the 'entries' array, which is then filled.
4517
4518'index' and 'flags' fields in 'struct kvm_cpuid_entry2' are currently reserved,
4519userspace should not expect to get any particular value there.
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02004520
Dave Martin50036ad2018-09-28 14:39:27 +010045214.119 KVM_ARM_VCPU_FINALIZE
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004522---------------------------
Dave Martin50036ad2018-09-28 14:39:27 +01004523
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004524:Architectures: arm, arm64
4525:Type: vcpu ioctl
4526:Parameters: int feature (in)
4527:Returns: 0 on success, -1 on error
4528
Dave Martin50036ad2018-09-28 14:39:27 +01004529Errors:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004530
4531 ====== ==============================================================
4532 EPERM feature not enabled, needs configuration, or already finalized
4533 EINVAL feature unknown or not present
4534 ====== ==============================================================
Dave Martin50036ad2018-09-28 14:39:27 +01004535
4536Recognised values for feature:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004537
4538 ===== ===========================================
Dave Martin9df2d662019-04-12 13:28:05 +01004539 arm64 KVM_ARM_VCPU_SVE (requires KVM_CAP_ARM_SVE)
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004540 ===== ===========================================
Dave Martin50036ad2018-09-28 14:39:27 +01004541
4542Finalizes the configuration of the specified vcpu feature.
4543
4544The vcpu must already have been initialised, enabling the affected feature, by
4545means of a successful KVM_ARM_VCPU_INIT call with the appropriate flag set in
4546features[].
4547
4548For affected vcpu features, this is a mandatory step that must be performed
4549before the vcpu is fully usable.
4550
4551Between KVM_ARM_VCPU_INIT and KVM_ARM_VCPU_FINALIZE, the feature may be
4552configured by use of ioctls such as KVM_SET_ONE_REG. The exact configuration
4553that should be performaned and how to do it are feature-dependent.
4554
4555Other calls that depend on a particular feature being finalized, such as
4556KVM_RUN, KVM_GET_REG_LIST, KVM_GET_ONE_REG and KVM_SET_ONE_REG, will fail with
4557-EPERM unless the feature has already been finalized by means of a
4558KVM_ARM_VCPU_FINALIZE call.
4559
4560See KVM_ARM_VCPU_INIT for details of vcpu features that require finalization
4561using this ioctl.
4562
Eric Hankland66bb8a02019-07-10 18:25:15 -070045634.120 KVM_SET_PMU_EVENT_FILTER
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004564------------------------------
Eric Hankland66bb8a02019-07-10 18:25:15 -07004565
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004566:Capability: KVM_CAP_PMU_EVENT_FILTER
4567:Architectures: x86
4568:Type: vm ioctl
4569:Parameters: struct kvm_pmu_event_filter (in)
4570:Returns: 0 on success, -1 on error
Eric Hankland66bb8a02019-07-10 18:25:15 -07004571
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004572::
4573
4574 struct kvm_pmu_event_filter {
Eric Hankland30cd8602019-07-18 11:38:18 -07004575 __u32 action;
4576 __u32 nevents;
4577 __u32 fixed_counter_bitmap;
4578 __u32 flags;
4579 __u32 pad[4];
4580 __u64 events[0];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004581 };
Eric Hankland66bb8a02019-07-10 18:25:15 -07004582
4583This ioctl restricts the set of PMU events that the guest can program.
4584The argument holds a list of events which will be allowed or denied.
4585The eventsel+umask of each event the guest attempts to program is compared
4586against the events field to determine whether the guest should have access.
Eric Hankland30cd8602019-07-18 11:38:18 -07004587The events field only controls general purpose counters; fixed purpose
4588counters are controlled by the fixed_counter_bitmap.
4589
4590No flags are defined yet, the field must be zero.
Eric Hankland66bb8a02019-07-10 18:25:15 -07004591
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004592Valid values for 'action'::
4593
4594 #define KVM_PMU_EVENT_ALLOW 0
4595 #define KVM_PMU_EVENT_DENY 1
Eric Hankland66bb8a02019-07-10 18:25:15 -07004596
Bharata B Rao22945682019-11-25 08:36:30 +053045974.121 KVM_PPC_SVM_OFF
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004598---------------------
Bharata B Rao22945682019-11-25 08:36:30 +05304599
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004600:Capability: basic
4601:Architectures: powerpc
4602:Type: vm ioctl
4603:Parameters: none
4604:Returns: 0 on successful completion,
4605
Bharata B Rao22945682019-11-25 08:36:30 +05304606Errors:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004607
4608 ====== ================================================================
4609 EINVAL if ultravisor failed to terminate the secure guest
4610 ENOMEM if hypervisor failed to allocate new radix page tables for guest
4611 ====== ================================================================
Bharata B Rao22945682019-11-25 08:36:30 +05304612
4613This ioctl is used to turn off the secure mode of the guest or transition
4614the guest from secure mode to normal mode. This is invoked when the guest
4615is reset. This has no effect if called for a normal guest.
4616
4617This ioctl issues an ultravisor call to terminate the secure guest,
4618unpins the VPA pages and releases all the device pages that are used to
4619track the secure pages by hypervisor.
Eric Hankland66bb8a02019-07-10 18:25:15 -07004620
Janosch Frank7de3f142020-01-31 05:02:02 -050046214.122 KVM_S390_NORMAL_RESET
Christian Borntraegera93236f2020-02-24 11:15:59 +01004622---------------------------
Janosch Frank7de3f142020-01-31 05:02:02 -05004623
Christian Borntraegera93236f2020-02-24 11:15:59 +01004624:Capability: KVM_CAP_S390_VCPU_RESETS
4625:Architectures: s390
4626:Type: vcpu ioctl
4627:Parameters: none
4628:Returns: 0
Janosch Frank7de3f142020-01-31 05:02:02 -05004629
4630This ioctl resets VCPU registers and control structures according to
4631the cpu reset definition in the POP (Principles Of Operation).
4632
46334.123 KVM_S390_INITIAL_RESET
Christian Borntraegera93236f2020-02-24 11:15:59 +01004634----------------------------
Janosch Frank7de3f142020-01-31 05:02:02 -05004635
Christian Borntraegera93236f2020-02-24 11:15:59 +01004636:Capability: none
4637:Architectures: s390
4638:Type: vcpu ioctl
4639:Parameters: none
4640:Returns: 0
Janosch Frank7de3f142020-01-31 05:02:02 -05004641
4642This ioctl resets VCPU registers and control structures according to
4643the initial cpu reset definition in the POP. However, the cpu is not
4644put into ESA mode. This reset is a superset of the normal reset.
4645
46464.124 KVM_S390_CLEAR_RESET
Christian Borntraegera93236f2020-02-24 11:15:59 +01004647--------------------------
Janosch Frank7de3f142020-01-31 05:02:02 -05004648
Christian Borntraegera93236f2020-02-24 11:15:59 +01004649:Capability: KVM_CAP_S390_VCPU_RESETS
4650:Architectures: s390
4651:Type: vcpu ioctl
4652:Parameters: none
4653:Returns: 0
Janosch Frank7de3f142020-01-31 05:02:02 -05004654
4655This ioctl resets VCPU registers and control structures according to
4656the clear cpu reset definition in the POP. However, the cpu is not put
4657into ESA mode. This reset is a superset of the initial reset.
4658
4659
Janosch Frank04ed89d2019-11-08 05:05:26 -050046604.125 KVM_S390_PV_COMMAND
4661-------------------------
4662
4663:Capability: KVM_CAP_S390_PROTECTED
4664:Architectures: s390
4665:Type: vm ioctl
4666:Parameters: struct kvm_pv_cmd
4667:Returns: 0 on success, < 0 on error
4668
4669::
4670
4671 struct kvm_pv_cmd {
4672 __u32 cmd; /* Command to be executed */
4673 __u16 rc; /* Ultravisor return code */
4674 __u16 rrc; /* Ultravisor return reason code */
4675 __u64 data; /* Data or address */
4676 __u32 flags; /* flags for future extensions. Must be 0 for now */
4677 __u32 reserved[3];
4678 };
4679
4680cmd values:
4681
4682KVM_PV_ENABLE
4683 Allocate memory and register the VM with the Ultravisor, thereby
4684 donating memory to the Ultravisor that will become inaccessible to
4685 KVM. All existing CPUs are converted to protected ones. After this
4686 command has succeeded, any CPU added via hotplug will become
4687 protected during its creation as well.
4688
Christian Borntraeger7a265362020-03-27 08:06:42 +01004689 Errors:
4690
4691 ===== =============================
4692 EINTR an unmasked signal is pending
4693 ===== =============================
4694
Janosch Frank04ed89d2019-11-08 05:05:26 -05004695KVM_PV_DISABLE
4696
4697 Deregister the VM from the Ultravisor and reclaim the memory that
4698 had been donated to the Ultravisor, making it usable by the kernel
4699 again. All registered VCPUs are converted back to non-protected
4700 ones.
4701
4702KVM_PV_VM_SET_SEC_PARMS
4703 Pass the image header from VM memory to the Ultravisor in
4704 preparation of image unpacking and verification.
4705
4706KVM_PV_VM_UNPACK
4707 Unpack (protect and decrypt) a page of the encrypted boot image.
4708
4709KVM_PV_VM_VERIFY
4710 Verify the integrity of the unpacked image. Only if this succeeds,
4711 KVM is allowed to start protected VCPUs.
4712
Alexander Graf1a1552542020-09-25 16:34:21 +020047134.126 KVM_X86_SET_MSR_FILTER
4714----------------------------
4715
4716:Capability: KVM_X86_SET_MSR_FILTER
4717:Architectures: x86
4718:Type: vm ioctl
4719:Parameters: struct kvm_msr_filter
4720:Returns: 0 on success, < 0 on error
4721
4722::
4723
4724 struct kvm_msr_filter_range {
4725 #define KVM_MSR_FILTER_READ (1 << 0)
4726 #define KVM_MSR_FILTER_WRITE (1 << 1)
4727 __u32 flags;
4728 __u32 nmsrs; /* number of msrs in bitmap */
4729 __u32 base; /* MSR index the bitmap starts at */
4730 __u8 *bitmap; /* a 1 bit allows the operations in flags, 0 denies */
4731 };
4732
4733 #define KVM_MSR_FILTER_MAX_RANGES 16
4734 struct kvm_msr_filter {
4735 #define KVM_MSR_FILTER_DEFAULT_ALLOW (0 << 0)
4736 #define KVM_MSR_FILTER_DEFAULT_DENY (1 << 0)
4737 __u32 flags;
4738 struct kvm_msr_filter_range ranges[KVM_MSR_FILTER_MAX_RANGES];
4739 };
4740
Sean Christopherson9389b9d2020-10-05 12:55:32 -07004741flags values for ``struct kvm_msr_filter_range``:
Alexander Graf1a1552542020-09-25 16:34:21 +02004742
Sean Christopherson9389b9d2020-10-05 12:55:32 -07004743``KVM_MSR_FILTER_READ``
Alexander Graf1a1552542020-09-25 16:34:21 +02004744
4745 Filter read accesses to MSRs using the given bitmap. A 0 in the bitmap
4746 indicates that a read should immediately fail, while a 1 indicates that
4747 a read for a particular MSR should be handled regardless of the default
4748 filter action.
4749
Sean Christopherson9389b9d2020-10-05 12:55:32 -07004750``KVM_MSR_FILTER_WRITE``
Alexander Graf1a1552542020-09-25 16:34:21 +02004751
4752 Filter write accesses to MSRs using the given bitmap. A 0 in the bitmap
4753 indicates that a write should immediately fail, while a 1 indicates that
4754 a write for a particular MSR should be handled regardless of the default
4755 filter action.
4756
Sean Christopherson9389b9d2020-10-05 12:55:32 -07004757``KVM_MSR_FILTER_READ | KVM_MSR_FILTER_WRITE``
Alexander Graf1a1552542020-09-25 16:34:21 +02004758
4759 Filter both read and write accesses to MSRs using the given bitmap. A 0
4760 in the bitmap indicates that both reads and writes should immediately fail,
4761 while a 1 indicates that reads and writes for a particular MSR are not
4762 filtered by this range.
4763
Sean Christopherson9389b9d2020-10-05 12:55:32 -07004764flags values for ``struct kvm_msr_filter``:
Alexander Graf1a1552542020-09-25 16:34:21 +02004765
Sean Christopherson9389b9d2020-10-05 12:55:32 -07004766``KVM_MSR_FILTER_DEFAULT_ALLOW``
Alexander Graf1a1552542020-09-25 16:34:21 +02004767
4768 If no filter range matches an MSR index that is getting accessed, KVM will
4769 fall back to allowing access to the MSR.
4770
Sean Christopherson9389b9d2020-10-05 12:55:32 -07004771``KVM_MSR_FILTER_DEFAULT_DENY``
Alexander Graf1a1552542020-09-25 16:34:21 +02004772
4773 If no filter range matches an MSR index that is getting accessed, KVM will
4774 fall back to rejecting access to the MSR. In this mode, all MSRs that should
4775 be processed by KVM need to explicitly be marked as allowed in the bitmaps.
4776
4777This ioctl allows user space to define up to 16 bitmaps of MSR ranges to
4778specify whether a certain MSR access should be explicitly filtered for or not.
4779
4780If this ioctl has never been invoked, MSR accesses are not guarded and the
Sean Christopherson9389b9d2020-10-05 12:55:32 -07004781default KVM in-kernel emulation behavior is fully preserved.
Alexander Graf1a1552542020-09-25 16:34:21 +02004782
Paolo Bonzini043248b2020-10-20 10:57:01 -04004783Calling this ioctl with an empty set of ranges (all nmsrs == 0) disables MSR
4784filtering. In that mode, ``KVM_MSR_FILTER_DEFAULT_DENY`` is invalid and causes
4785an error.
4786
Alexander Graf1a1552542020-09-25 16:34:21 +02004787As soon as the filtering is in place, every MSR access is processed through
Sean Christopherson9389b9d2020-10-05 12:55:32 -07004788the filtering except for accesses to the x2APIC MSRs (from 0x800 to 0x8ff);
4789x2APIC MSRs are always allowed, independent of the ``default_allow`` setting,
4790and their behavior depends on the ``X2APIC_ENABLE`` bit of the APIC base
4791register.
4792
Paolo Bonzini043248b2020-10-20 10:57:01 -04004793If a bit is within one of the defined ranges, read and write accesses are
4794guarded by the bitmap's value for the MSR index if the kind of access
4795is included in the ``struct kvm_msr_filter_range`` flags. If no range
4796cover this particular access, the behavior is determined by the flags
4797field in the kvm_msr_filter struct: ``KVM_MSR_FILTER_DEFAULT_ALLOW``
4798and ``KVM_MSR_FILTER_DEFAULT_DENY``.
Alexander Graf1a1552542020-09-25 16:34:21 +02004799
4800Each bitmap range specifies a range of MSRs to potentially allow access on.
4801The range goes from MSR index [base .. base+nmsrs]. The flags field
4802indicates whether reads, writes or both reads and writes are filtered
4803by setting a 1 bit in the bitmap for the corresponding MSR index.
4804
4805If an MSR access is not permitted through the filtering, it generates a
4806#GP inside the guest. When combined with KVM_CAP_X86_USER_SPACE_MSR, that
4807allows user space to deflect and potentially handle various MSR accesses
4808into user space.
4809
4810If a vCPU is in running state while this ioctl is invoked, the vCPU may
4811experience inconsistent filtering behavior on MSR accesses.
4812
Janosch Frank04ed89d2019-11-08 05:05:26 -05004813
Avi Kivity9c1b96e2009-06-09 12:37:58 +030048145. The kvm_run structure
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004815========================
Avi Kivity9c1b96e2009-06-09 12:37:58 +03004816
4817Application code obtains a pointer to the kvm_run structure by
4818mmap()ing a vcpu fd. From that point, application code can control
4819execution by changing fields in kvm_run prior to calling the KVM_RUN
4820ioctl, and obtain information about the reason KVM_RUN returned by
4821looking up structure members.
4822
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004823::
4824
4825 struct kvm_run {
Avi Kivity9c1b96e2009-06-09 12:37:58 +03004826 /* in */
4827 __u8 request_interrupt_window;
4828
4829Request that KVM_RUN return when it becomes possible to inject external
4830interrupts into the guest. Useful in conjunction with KVM_INTERRUPT.
4831
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004832::
4833
Paolo Bonzini460df4c2017-02-08 11:50:15 +01004834 __u8 immediate_exit;
4835
4836This field is polled once when KVM_RUN starts; if non-zero, KVM_RUN
4837exits immediately, returning -EINTR. In the common scenario where a
4838signal is used to "kick" a VCPU out of KVM_RUN, this field can be used
4839to avoid usage of KVM_SET_SIGNAL_MASK, which has worse scalability.
4840Rather than blocking the signal outside KVM_RUN, userspace can set up
4841a signal handler that sets run->immediate_exit to a non-zero value.
4842
4843This field is ignored if KVM_CAP_IMMEDIATE_EXIT is not available.
4844
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004845::
4846
Paolo Bonzini460df4c2017-02-08 11:50:15 +01004847 __u8 padding1[6];
Avi Kivity9c1b96e2009-06-09 12:37:58 +03004848
4849 /* out */
4850 __u32 exit_reason;
4851
4852When KVM_RUN has returned successfully (return value 0), this informs
4853application code why KVM_RUN has returned. Allowable values for this
4854field are detailed below.
4855
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004856::
4857
Avi Kivity9c1b96e2009-06-09 12:37:58 +03004858 __u8 ready_for_interrupt_injection;
4859
4860If request_interrupt_window has been specified, this field indicates
4861an interrupt can be injected now with KVM_INTERRUPT.
4862
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004863::
4864
Avi Kivity9c1b96e2009-06-09 12:37:58 +03004865 __u8 if_flag;
4866
4867The value of the current interrupt flag. Only valid if in-kernel
4868local APIC is not used.
4869
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004870::
4871
Paolo Bonzinif0778252015-04-01 15:06:40 +02004872 __u16 flags;
4873
4874More architecture-specific flags detailing state of the VCPU that may
4875affect the device's behavior. The only currently defined flag is
4876KVM_RUN_X86_SMM, which is valid on x86 machines and is set if the
4877VCPU is in system management mode.
Avi Kivity9c1b96e2009-06-09 12:37:58 +03004878
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004879::
4880
Avi Kivity9c1b96e2009-06-09 12:37:58 +03004881 /* in (pre_kvm_run), out (post_kvm_run) */
4882 __u64 cr8;
4883
4884The value of the cr8 register. Only valid if in-kernel local APIC is
4885not used. Both input and output.
4886
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004887::
4888
Avi Kivity9c1b96e2009-06-09 12:37:58 +03004889 __u64 apic_base;
4890
4891The value of the APIC BASE msr. Only valid if in-kernel local
4892APIC is not used. Both input and output.
4893
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004894::
4895
Avi Kivity9c1b96e2009-06-09 12:37:58 +03004896 union {
4897 /* KVM_EXIT_UNKNOWN */
4898 struct {
4899 __u64 hardware_exit_reason;
4900 } hw;
4901
4902If exit_reason is KVM_EXIT_UNKNOWN, the vcpu has exited due to unknown
4903reasons. Further architecture-specific information is available in
4904hardware_exit_reason.
4905
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004906::
4907
Avi Kivity9c1b96e2009-06-09 12:37:58 +03004908 /* KVM_EXIT_FAIL_ENTRY */
4909 struct {
4910 __u64 hardware_entry_failure_reason;
Jim Mattson1aa561b2020-06-03 16:56:21 -07004911 __u32 cpu; /* if KVM_LAST_CPU */
Avi Kivity9c1b96e2009-06-09 12:37:58 +03004912 } fail_entry;
4913
4914If exit_reason is KVM_EXIT_FAIL_ENTRY, the vcpu could not be run due
4915to unknown reasons. Further architecture-specific information is
4916available in hardware_entry_failure_reason.
4917
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004918::
4919
Avi Kivity9c1b96e2009-06-09 12:37:58 +03004920 /* KVM_EXIT_EXCEPTION */
4921 struct {
4922 __u32 exception;
4923 __u32 error_code;
4924 } ex;
4925
4926Unused.
4927
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004928::
4929
Avi Kivity9c1b96e2009-06-09 12:37:58 +03004930 /* KVM_EXIT_IO */
4931 struct {
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004932 #define KVM_EXIT_IO_IN 0
4933 #define KVM_EXIT_IO_OUT 1
Avi Kivity9c1b96e2009-06-09 12:37:58 +03004934 __u8 direction;
4935 __u8 size; /* bytes */
4936 __u16 port;
4937 __u32 count;
4938 __u64 data_offset; /* relative to kvm_run start */
4939 } io;
4940
Wu Fengguang2044892d2009-12-24 09:04:16 +08004941If exit_reason is KVM_EXIT_IO, then the vcpu has
Avi Kivity9c1b96e2009-06-09 12:37:58 +03004942executed a port I/O instruction which could not be satisfied by kvm.
4943data_offset describes where the data is located (KVM_EXIT_IO_OUT) or
4944where kvm expects application code to place the data for the next
Wu Fengguang2044892d2009-12-24 09:04:16 +08004945KVM_RUN invocation (KVM_EXIT_IO_IN). Data format is a packed array.
Avi Kivity9c1b96e2009-06-09 12:37:58 +03004946
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004947::
4948
Alex Bennée8ab30c12015-07-07 17:29:53 +01004949 /* KVM_EXIT_DEBUG */
Avi Kivity9c1b96e2009-06-09 12:37:58 +03004950 struct {
4951 struct kvm_debug_exit_arch arch;
4952 } debug;
4953
Alex Bennée8ab30c12015-07-07 17:29:53 +01004954If the exit_reason is KVM_EXIT_DEBUG, then a vcpu is processing a debug event
4955for which architecture specific information is returned.
Avi Kivity9c1b96e2009-06-09 12:37:58 +03004956
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004957::
4958
Avi Kivity9c1b96e2009-06-09 12:37:58 +03004959 /* KVM_EXIT_MMIO */
4960 struct {
4961 __u64 phys_addr;
4962 __u8 data[8];
4963 __u32 len;
4964 __u8 is_write;
4965 } mmio;
4966
Wu Fengguang2044892d2009-12-24 09:04:16 +08004967If exit_reason is KVM_EXIT_MMIO, then the vcpu has
Avi Kivity9c1b96e2009-06-09 12:37:58 +03004968executed a memory-mapped I/O instruction which could not be satisfied
4969by kvm. The 'data' member contains the written data if 'is_write' is
4970true, and should be filled by application code otherwise.
4971
Christoffer Dall6acdb162014-01-28 08:28:42 -08004972The 'data' member contains, in its first 'len' bytes, the value as it would
4973appear if the VCPU performed a load or store of the appropriate width directly
4974to the byte array.
4975
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004976.. note::
4977
Alexander Graf1ae09952020-09-25 16:34:16 +02004978 For KVM_EXIT_IO, KVM_EXIT_MMIO, KVM_EXIT_OSI, KVM_EXIT_PAPR,
4979 KVM_EXIT_EPR, KVM_EXIT_X86_RDMSR and KVM_EXIT_X86_WRMSR the corresponding
4980 operations are complete (and guest state is consistent) only after userspace
4981 has re-entered the kernel with KVM_RUN. The kernel side will first finish
4982 incomplete operations and then check for pending signals. Userspace
4983 can re-enter the guest with an unmasked signal pending to complete
4984 pending operations.
Marcelo Tosatti67961342010-02-13 16:10:26 -02004985
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004986::
4987
Avi Kivity9c1b96e2009-06-09 12:37:58 +03004988 /* KVM_EXIT_HYPERCALL */
4989 struct {
4990 __u64 nr;
4991 __u64 args[6];
4992 __u64 ret;
4993 __u32 longmode;
4994 __u32 pad;
4995 } hypercall;
4996
Avi Kivity647dc492010-04-01 14:39:21 +03004997Unused. This was once used for 'hypercall to userspace'. To implement
4998such functionality, use KVM_EXIT_IO (x86) or KVM_EXIT_MMIO (all except s390).
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004999
5000.. note:: KVM_EXIT_IO is significantly faster than KVM_EXIT_MMIO.
5001
5002::
Avi Kivity9c1b96e2009-06-09 12:37:58 +03005003
5004 /* KVM_EXIT_TPR_ACCESS */
5005 struct {
5006 __u64 rip;
5007 __u32 is_write;
5008 __u32 pad;
5009 } tpr_access;
5010
5011To be documented (KVM_TPR_ACCESS_REPORTING).
5012
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005013::
5014
Avi Kivity9c1b96e2009-06-09 12:37:58 +03005015 /* KVM_EXIT_S390_SIEIC */
5016 struct {
5017 __u8 icptcode;
5018 __u64 mask; /* psw upper half */
5019 __u64 addr; /* psw lower half */
5020 __u16 ipa;
5021 __u32 ipb;
5022 } s390_sieic;
5023
5024s390 specific.
5025
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005026::
5027
Avi Kivity9c1b96e2009-06-09 12:37:58 +03005028 /* KVM_EXIT_S390_RESET */
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005029 #define KVM_S390_RESET_POR 1
5030 #define KVM_S390_RESET_CLEAR 2
5031 #define KVM_S390_RESET_SUBSYSTEM 4
5032 #define KVM_S390_RESET_CPU_INIT 8
5033 #define KVM_S390_RESET_IPL 16
Avi Kivity9c1b96e2009-06-09 12:37:58 +03005034 __u64 s390_reset_flags;
5035
5036s390 specific.
5037
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005038::
5039
Carsten Ottee168bf82012-01-04 10:25:22 +01005040 /* KVM_EXIT_S390_UCONTROL */
5041 struct {
5042 __u64 trans_exc_code;
5043 __u32 pgm_code;
5044 } s390_ucontrol;
5045
5046s390 specific. A page fault has occurred for a user controlled virtual
5047machine (KVM_VM_S390_UNCONTROL) on it's host page table that cannot be
5048resolved by the kernel.
5049The program code and the translation exception code that were placed
5050in the cpu's lowcore are presented here as defined by the z Architecture
5051Principles of Operation Book in the Chapter for Dynamic Address Translation
5052(DAT)
5053
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005054::
5055
Avi Kivity9c1b96e2009-06-09 12:37:58 +03005056 /* KVM_EXIT_DCR */
5057 struct {
5058 __u32 dcrn;
5059 __u32 data;
5060 __u8 is_write;
5061 } dcr;
5062
Alexander Grafce91ddc2014-07-28 19:29:13 +02005063Deprecated - was used for 440 KVM.
Avi Kivity9c1b96e2009-06-09 12:37:58 +03005064
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005065::
5066
Alexander Grafad0a0482010-03-24 21:48:30 +01005067 /* KVM_EXIT_OSI */
5068 struct {
5069 __u64 gprs[32];
5070 } osi;
5071
5072MOL uses a special hypercall interface it calls 'OSI'. To enable it, we catch
5073hypercalls and exit with this exit struct that contains all the guest gprs.
5074
5075If exit_reason is KVM_EXIT_OSI, then the vcpu has triggered such a hypercall.
5076Userspace can now handle the hypercall and when it's done modify the gprs as
5077necessary. Upon guest entry all guest GPRs will then be replaced by the values
5078in this struct.
5079
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005080::
5081
Paul Mackerrasde56a942011-06-29 00:21:34 +00005082 /* KVM_EXIT_PAPR_HCALL */
5083 struct {
5084 __u64 nr;
5085 __u64 ret;
5086 __u64 args[9];
5087 } papr_hcall;
5088
5089This is used on 64-bit PowerPC when emulating a pSeries partition,
5090e.g. with the 'pseries' machine type in qemu. It occurs when the
5091guest does a hypercall using the 'sc 1' instruction. The 'nr' field
5092contains the hypercall number (from the guest R3), and 'args' contains
5093the arguments (from the guest R4 - R12). Userspace should put the
5094return code in 'ret' and any extra returned values in args[].
5095The possible hypercalls are defined in the Power Architecture Platform
5096Requirements (PAPR) document available from www.power.org (free
5097developer registration required to access it).
5098
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005099::
5100
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +01005101 /* KVM_EXIT_S390_TSCH */
5102 struct {
5103 __u16 subchannel_id;
5104 __u16 subchannel_nr;
5105 __u32 io_int_parm;
5106 __u32 io_int_word;
5107 __u32 ipb;
5108 __u8 dequeued;
5109 } s390_tsch;
5110
5111s390 specific. This exit occurs when KVM_CAP_S390_CSS_SUPPORT has been enabled
5112and TEST SUBCHANNEL was intercepted. If dequeued is set, a pending I/O
5113interrupt for the target subchannel has been dequeued and subchannel_id,
5114subchannel_nr, io_int_parm and io_int_word contain the parameters for that
5115interrupt. ipb is needed for instruction parameter decoding.
5116
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005117::
5118
Alexander Graf1c810632013-01-04 18:12:48 +01005119 /* KVM_EXIT_EPR */
5120 struct {
5121 __u32 epr;
5122 } epr;
5123
5124On FSL BookE PowerPC chips, the interrupt controller has a fast patch
5125interrupt acknowledge path to the core. When the core successfully
5126delivers an interrupt, it automatically populates the EPR register with
5127the interrupt vector number and acknowledges the interrupt inside
5128the interrupt controller.
5129
5130In case the interrupt controller lives in user space, we need to do
5131the interrupt acknowledge cycle through it to fetch the next to be
5132delivered interrupt vector using this exit.
5133
5134It gets triggered whenever both KVM_CAP_PPC_EPR are enabled and an
5135external interrupt has just been delivered into the guest. User space
5136should put the acknowledged interrupt vector into the 'epr' field.
5137
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005138::
5139
Anup Patel8ad6b632014-04-29 11:24:19 +05305140 /* KVM_EXIT_SYSTEM_EVENT */
5141 struct {
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005142 #define KVM_SYSTEM_EVENT_SHUTDOWN 1
5143 #define KVM_SYSTEM_EVENT_RESET 2
5144 #define KVM_SYSTEM_EVENT_CRASH 3
Anup Patel8ad6b632014-04-29 11:24:19 +05305145 __u32 type;
5146 __u64 flags;
5147 } system_event;
5148
5149If exit_reason is KVM_EXIT_SYSTEM_EVENT then the vcpu has triggered
5150a system-level event using some architecture specific mechanism (hypercall
5151or some special instruction). In case of ARM/ARM64, this is triggered using
5152HVC instruction based PSCI call from the vcpu. The 'type' field describes
5153the system-level event type. The 'flags' field describes architecture
5154specific flags for the system-level event.
5155
Christoffer Dallcf5d31882014-10-16 17:00:18 +02005156Valid values for 'type' are:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005157
5158 - KVM_SYSTEM_EVENT_SHUTDOWN -- the guest has requested a shutdown of the
Christoffer Dallcf5d31882014-10-16 17:00:18 +02005159 VM. Userspace is not obliged to honour this, and if it does honour
5160 this does not need to destroy the VM synchronously (ie it may call
5161 KVM_RUN again before shutdown finally occurs).
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005162 - KVM_SYSTEM_EVENT_RESET -- the guest has requested a reset of the VM.
Christoffer Dallcf5d31882014-10-16 17:00:18 +02005163 As with SHUTDOWN, userspace can choose to ignore the request, or
5164 to schedule the reset to occur in the future and may call KVM_RUN again.
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005165 - KVM_SYSTEM_EVENT_CRASH -- the guest crash occurred and the guest
Andrey Smetanin2ce79182015-07-03 15:01:41 +03005166 has requested a crash condition maintenance. Userspace can choose
5167 to ignore the request, or to gather VM memory core dump and/or
5168 reset/shutdown of the VM.
Christoffer Dallcf5d31882014-10-16 17:00:18 +02005169
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005170::
5171
Steve Rutherford7543a632015-07-29 23:21:41 -07005172 /* KVM_EXIT_IOAPIC_EOI */
5173 struct {
5174 __u8 vector;
5175 } eoi;
5176
5177Indicates that the VCPU's in-kernel local APIC received an EOI for a
5178level-triggered IOAPIC interrupt. This exit only triggers when the
5179IOAPIC is implemented in userspace (i.e. KVM_CAP_SPLIT_IRQCHIP is enabled);
5180the userspace IOAPIC should process the EOI and retrigger the interrupt if
5181it is still asserted. Vector is the LAPIC interrupt vector for which the
5182EOI was received.
5183
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005184::
5185
Andrey Smetanindb3975712015-11-10 15:36:35 +03005186 struct kvm_hyperv_exit {
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005187 #define KVM_EXIT_HYPERV_SYNIC 1
5188 #define KVM_EXIT_HYPERV_HCALL 2
Jon Doronf97f5a52020-05-29 16:45:40 +03005189 #define KVM_EXIT_HYPERV_SYNDBG 3
Andrey Smetanindb3975712015-11-10 15:36:35 +03005190 __u32 type;
Jon Doronf7d31e62020-04-24 14:37:40 +03005191 __u32 pad1;
Andrey Smetanindb3975712015-11-10 15:36:35 +03005192 union {
5193 struct {
5194 __u32 msr;
Jon Doronf7d31e62020-04-24 14:37:40 +03005195 __u32 pad2;
Andrey Smetanindb3975712015-11-10 15:36:35 +03005196 __u64 control;
5197 __u64 evt_page;
5198 __u64 msg_page;
5199 } synic;
Andrey Smetanin83326e42016-02-11 16:45:01 +03005200 struct {
5201 __u64 input;
5202 __u64 result;
5203 __u64 params[2];
5204 } hcall;
Jon Doronf97f5a52020-05-29 16:45:40 +03005205 struct {
5206 __u32 msr;
5207 __u32 pad2;
5208 __u64 control;
5209 __u64 status;
5210 __u64 send_page;
5211 __u64 recv_page;
5212 __u64 pending_page;
5213 } syndbg;
Andrey Smetanindb3975712015-11-10 15:36:35 +03005214 } u;
5215 };
5216 /* KVM_EXIT_HYPERV */
5217 struct kvm_hyperv_exit hyperv;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005218
Andrey Smetanindb3975712015-11-10 15:36:35 +03005219Indicates that the VCPU exits into userspace to process some tasks
5220related to Hyper-V emulation.
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005221
Andrey Smetanindb3975712015-11-10 15:36:35 +03005222Valid values for 'type' are:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005223
5224 - KVM_EXIT_HYPERV_SYNIC -- synchronously notify user-space about
5225
Andrey Smetanindb3975712015-11-10 15:36:35 +03005226Hyper-V SynIC state change. Notification is used to remap SynIC
5227event/message pages and to enable/disable SynIC messages/events processing
5228in userspace.
5229
Jon Doronf97f5a52020-05-29 16:45:40 +03005230 - KVM_EXIT_HYPERV_SYNDBG -- synchronously notify user-space about
5231
5232Hyper-V Synthetic debugger state change. Notification is used to either update
5233the pending_page location or to send a control command (send the buffer located
5234in send_page or recv a buffer to recv_page).
5235
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005236::
5237
Christoffer Dallc7262002019-10-11 13:07:05 +02005238 /* KVM_EXIT_ARM_NISV */
5239 struct {
5240 __u64 esr_iss;
5241 __u64 fault_ipa;
5242 } arm_nisv;
5243
5244Used on arm and arm64 systems. If a guest accesses memory not in a memslot,
5245KVM will typically return to userspace and ask it to do MMIO emulation on its
5246behalf. However, for certain classes of instructions, no instruction decode
5247(direction, length of memory access) is provided, and fetching and decoding
5248the instruction from the VM is overly complicated to live in the kernel.
5249
5250Historically, when this situation occurred, KVM would print a warning and kill
5251the VM. KVM assumed that if the guest accessed non-memslot memory, it was
5252trying to do I/O, which just couldn't be emulated, and the warning message was
5253phrased accordingly. However, what happened more often was that a guest bug
5254caused access outside the guest memory areas which should lead to a more
5255meaningful warning message and an external abort in the guest, if the access
5256did not fall within an I/O window.
5257
5258Userspace implementations can query for KVM_CAP_ARM_NISV_TO_USER, and enable
5259this capability at VM creation. Once this is done, these types of errors will
5260instead return to userspace with KVM_EXIT_ARM_NISV, with the valid bits from
5261the HSR (arm) and ESR_EL2 (arm64) in the esr_iss field, and the faulting IPA
5262in the fault_ipa field. Userspace can either fix up the access if it's
5263actually an I/O access by decoding the instruction from guest memory (if it's
5264very brave) and continue executing the guest, or it can decide to suspend,
5265dump, or restart the guest.
5266
5267Note that KVM does not skip the faulting instruction as it does for
5268KVM_EXIT_MMIO, but userspace has to emulate any change to the processing state
5269if it decides to decode and emulate the instruction.
5270
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005271::
5272
Alexander Graf1ae09952020-09-25 16:34:16 +02005273 /* KVM_EXIT_X86_RDMSR / KVM_EXIT_X86_WRMSR */
5274 struct {
5275 __u8 error; /* user -> kernel */
5276 __u8 pad[7];
5277 __u32 reason; /* kernel -> user */
5278 __u32 index; /* kernel -> user */
5279 __u64 data; /* kernel <-> user */
5280 } msr;
5281
5282Used on x86 systems. When the VM capability KVM_CAP_X86_USER_SPACE_MSR is
5283enabled, MSR accesses to registers that would invoke a #GP by KVM kernel code
5284will instead trigger a KVM_EXIT_X86_RDMSR exit for reads and KVM_EXIT_X86_WRMSR
5285exit for writes.
5286
5287The "reason" field specifies why the MSR trap occurred. User space will only
5288receive MSR exit traps when a particular reason was requested during through
5289ENABLE_CAP. Currently valid exit reasons are:
5290
5291 KVM_MSR_EXIT_REASON_UNKNOWN - access to MSR that is unknown to KVM
5292 KVM_MSR_EXIT_REASON_INVAL - access to invalid MSRs or reserved bits
Alexander Graf1a1552542020-09-25 16:34:21 +02005293 KVM_MSR_EXIT_REASON_FILTER - access blocked by KVM_X86_SET_MSR_FILTER
Alexander Graf1ae09952020-09-25 16:34:16 +02005294
5295For KVM_EXIT_X86_RDMSR, the "index" field tells user space which MSR the guest
5296wants to read. To respond to this request with a successful read, user space
5297writes the respective data into the "data" field and must continue guest
5298execution to ensure the read data is transferred into guest register state.
5299
5300If the RDMSR request was unsuccessful, user space indicates that with a "1" in
5301the "error" field. This will inject a #GP into the guest when the VCPU is
5302executed again.
5303
5304For KVM_EXIT_X86_WRMSR, the "index" field tells user space which MSR the guest
5305wants to write. Once finished processing the event, user space must continue
5306vCPU execution. If the MSR write was unsuccessful, user space also sets the
5307"error" field to "1".
5308
5309::
5310
Avi Kivity9c1b96e2009-06-09 12:37:58 +03005311 /* Fix the size of the union. */
5312 char padding[256];
5313 };
Christian Borntraegerb9e5dc82012-01-11 11:20:30 +01005314
5315 /*
5316 * shared registers between kvm and userspace.
5317 * kvm_valid_regs specifies the register classes set by the host
5318 * kvm_dirty_regs specified the register classes dirtied by userspace
5319 * struct kvm_sync_regs is architecture specific, as well as the
5320 * bits for kvm_valid_regs and kvm_dirty_regs
5321 */
5322 __u64 kvm_valid_regs;
5323 __u64 kvm_dirty_regs;
5324 union {
5325 struct kvm_sync_regs regs;
Ken Hofsass7b7e3952018-01-31 16:03:35 -08005326 char padding[SYNC_REGS_SIZE_BYTES];
Christian Borntraegerb9e5dc82012-01-11 11:20:30 +01005327 } s;
5328
5329If KVM_CAP_SYNC_REGS is defined, these fields allow userspace to access
5330certain guest registers without having to call SET/GET_*REGS. Thus we can
5331avoid some system call overhead if userspace has to handle the exit.
5332Userspace can query the validity of the structure by checking
5333kvm_valid_regs for specific bits. These bits are architecture specific
5334and usually define the validity of a groups of registers. (e.g. one bit
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005335for general purpose registers)
Christian Borntraegerb9e5dc82012-01-11 11:20:30 +01005336
David Hildenbrandd8482c02014-07-29 08:19:26 +02005337Please note that the kernel is allowed to use the kvm_run structure as the
5338primary storage for certain register types. Therefore, the kernel may use the
5339values in kvm_run even if the corresponding bit in kvm_dirty_regs is not set.
5340
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005341::
5342
5343 };
Alexander Graf821246a2011-08-31 10:58:55 +02005344
Jan Kiszka414fa982012-04-24 16:40:15 +02005345
Borislav Petkov9c15bb12013-09-22 16:44:50 +02005346
Paul Mackerras699a0ea2014-06-02 11:02:59 +100053476. Capabilities that can be enabled on vCPUs
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005348============================================
Alexander Graf821246a2011-08-31 10:58:55 +02005349
Cornelia Huck0907c852014-06-27 09:29:26 +02005350There are certain capabilities that change the behavior of the virtual CPU or
5351the virtual machine when enabled. To enable them, please see section 4.37.
5352Below you can find a list of capabilities and what their effect on the vCPU or
5353the virtual machine is when enabling them.
Alexander Graf821246a2011-08-31 10:58:55 +02005354
5355The following information is provided along with the description:
5356
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005357 Architectures:
5358 which instruction set architectures provide this ioctl.
Alexander Graf821246a2011-08-31 10:58:55 +02005359 x86 includes both i386 and x86_64.
5360
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005361 Target:
5362 whether this is a per-vcpu or per-vm capability.
Cornelia Huck0907c852014-06-27 09:29:26 +02005363
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005364 Parameters:
5365 what parameters are accepted by the capability.
Alexander Graf821246a2011-08-31 10:58:55 +02005366
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005367 Returns:
5368 the return value. General error numbers (EBADF, ENOMEM, EINVAL)
Alexander Graf821246a2011-08-31 10:58:55 +02005369 are not detailed, but errors with specific meanings are.
5370
Jan Kiszka414fa982012-04-24 16:40:15 +02005371
Alexander Graf821246a2011-08-31 10:58:55 +020053726.1 KVM_CAP_PPC_OSI
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005373-------------------
Alexander Graf821246a2011-08-31 10:58:55 +02005374
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005375:Architectures: ppc
5376:Target: vcpu
5377:Parameters: none
5378:Returns: 0 on success; -1 on error
Alexander Graf821246a2011-08-31 10:58:55 +02005379
5380This capability enables interception of OSI hypercalls that otherwise would
5381be treated as normal system calls to be injected into the guest. OSI hypercalls
5382were invented by Mac-on-Linux to have a standardized communication mechanism
5383between the guest and the host.
5384
5385When this capability is enabled, KVM_EXIT_OSI can occur.
5386
Jan Kiszka414fa982012-04-24 16:40:15 +02005387
Alexander Graf821246a2011-08-31 10:58:55 +020053886.2 KVM_CAP_PPC_PAPR
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005389--------------------
Alexander Graf821246a2011-08-31 10:58:55 +02005390
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005391:Architectures: ppc
5392:Target: vcpu
5393:Parameters: none
5394:Returns: 0 on success; -1 on error
Alexander Graf821246a2011-08-31 10:58:55 +02005395
5396This capability enables interception of PAPR hypercalls. PAPR hypercalls are
5397done using the hypercall instruction "sc 1".
5398
5399It also sets the guest privilege level to "supervisor" mode. Usually the guest
5400runs in "hypervisor" privilege mode with a few missing features.
5401
5402In addition to the above, it changes the semantics of SDR1. In this mode, the
5403HTAB address part of SDR1 contains an HVA instead of a GPA, as PAPR keeps the
5404HTAB invisible to the guest.
5405
5406When this capability is enabled, KVM_EXIT_PAPR_HCALL can occur.
Scott Wooddc83b8b2011-08-18 15:25:21 -05005407
Jan Kiszka414fa982012-04-24 16:40:15 +02005408
Scott Wooddc83b8b2011-08-18 15:25:21 -050054096.3 KVM_CAP_SW_TLB
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005410------------------
Scott Wooddc83b8b2011-08-18 15:25:21 -05005411
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005412:Architectures: ppc
5413:Target: vcpu
5414:Parameters: args[0] is the address of a struct kvm_config_tlb
5415:Returns: 0 on success; -1 on error
Scott Wooddc83b8b2011-08-18 15:25:21 -05005416
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005417::
5418
5419 struct kvm_config_tlb {
Scott Wooddc83b8b2011-08-18 15:25:21 -05005420 __u64 params;
5421 __u64 array;
5422 __u32 mmu_type;
5423 __u32 array_len;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005424 };
Scott Wooddc83b8b2011-08-18 15:25:21 -05005425
5426Configures the virtual CPU's TLB array, establishing a shared memory area
5427between userspace and KVM. The "params" and "array" fields are userspace
5428addresses of mmu-type-specific data structures. The "array_len" field is an
5429safety mechanism, and should be set to the size in bytes of the memory that
5430userspace has reserved for the array. It must be at least the size dictated
5431by "mmu_type" and "params".
5432
5433While KVM_RUN is active, the shared region is under control of KVM. Its
5434contents are undefined, and any modification by userspace results in
5435boundedly undefined behavior.
5436
5437On return from KVM_RUN, the shared region will reflect the current state of
5438the guest's TLB. If userspace makes any changes, it must call KVM_DIRTY_TLB
5439to tell KVM which entries have been changed, prior to calling KVM_RUN again
5440on this vcpu.
5441
5442For mmu types KVM_MMU_FSL_BOOKE_NOHV and KVM_MMU_FSL_BOOKE_HV:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005443
Scott Wooddc83b8b2011-08-18 15:25:21 -05005444 - The "params" field is of type "struct kvm_book3e_206_tlb_params".
5445 - The "array" field points to an array of type "struct
5446 kvm_book3e_206_tlb_entry".
5447 - The array consists of all entries in the first TLB, followed by all
5448 entries in the second TLB.
5449 - Within a TLB, entries are ordered first by increasing set number. Within a
5450 set, entries are ordered by way (increasing ESEL).
5451 - The hash for determining set number in TLB0 is: (MAS2 >> 12) & (num_sets - 1)
5452 where "num_sets" is the tlb_sizes[] value divided by the tlb_ways[] value.
5453 - The tsize field of mas1 shall be set to 4K on TLB0, even though the
5454 hardware ignores this value for TLB0.
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +01005455
54566.4 KVM_CAP_S390_CSS_SUPPORT
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005457----------------------------
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +01005458
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005459:Architectures: s390
5460:Target: vcpu
5461:Parameters: none
5462:Returns: 0 on success; -1 on error
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +01005463
5464This capability enables support for handling of channel I/O instructions.
5465
5466TEST PENDING INTERRUPTION and the interrupt portion of TEST SUBCHANNEL are
5467handled in-kernel, while the other I/O instructions are passed to userspace.
5468
5469When this capability is enabled, KVM_EXIT_S390_TSCH will occur on TEST
5470SUBCHANNEL intercepts.
Alexander Graf1c810632013-01-04 18:12:48 +01005471
Cornelia Huck0907c852014-06-27 09:29:26 +02005472Note that even though this capability is enabled per-vcpu, the complete
5473virtual machine is affected.
5474
Alexander Graf1c810632013-01-04 18:12:48 +010054756.5 KVM_CAP_PPC_EPR
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005476-------------------
Alexander Graf1c810632013-01-04 18:12:48 +01005477
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005478:Architectures: ppc
5479:Target: vcpu
5480:Parameters: args[0] defines whether the proxy facility is active
5481:Returns: 0 on success; -1 on error
Alexander Graf1c810632013-01-04 18:12:48 +01005482
5483This capability enables or disables the delivery of interrupts through the
5484external proxy facility.
5485
5486When enabled (args[0] != 0), every time the guest gets an external interrupt
5487delivered, it automatically exits into user space with a KVM_EXIT_EPR exit
5488to receive the topmost interrupt vector.
5489
5490When disabled (args[0] == 0), behavior is as if this facility is unsupported.
5491
5492When this capability is enabled, KVM_EXIT_EPR can occur.
Scott Woodeb1e4f42013-04-12 14:08:47 +00005493
54946.6 KVM_CAP_IRQ_MPIC
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005495--------------------
Scott Woodeb1e4f42013-04-12 14:08:47 +00005496
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005497:Architectures: ppc
5498:Parameters: args[0] is the MPIC device fd;
5499 args[1] is the MPIC CPU number for this vcpu
Scott Woodeb1e4f42013-04-12 14:08:47 +00005500
5501This capability connects the vcpu to an in-kernel MPIC device.
Paul Mackerras5975a2e2013-04-27 00:28:37 +00005502
55036.7 KVM_CAP_IRQ_XICS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005504--------------------
Paul Mackerras5975a2e2013-04-27 00:28:37 +00005505
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005506:Architectures: ppc
5507:Target: vcpu
5508:Parameters: args[0] is the XICS device fd;
5509 args[1] is the XICS CPU number (server ID) for this vcpu
Paul Mackerras5975a2e2013-04-27 00:28:37 +00005510
5511This capability connects the vcpu to an in-kernel XICS device.
Cornelia Huck8a366a42014-06-27 11:06:25 +02005512
55136.8 KVM_CAP_S390_IRQCHIP
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005514------------------------
Cornelia Huck8a366a42014-06-27 11:06:25 +02005515
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005516:Architectures: s390
5517:Target: vm
5518:Parameters: none
Cornelia Huck8a366a42014-06-27 11:06:25 +02005519
5520This capability enables the in-kernel irqchip for s390. Please refer to
5521"4.24 KVM_CREATE_IRQCHIP" for details.
Paul Mackerras699a0ea2014-06-02 11:02:59 +10005522
James Hogan5fafd8742014-12-08 23:07:56 +000055236.9 KVM_CAP_MIPS_FPU
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005524--------------------
James Hogan5fafd8742014-12-08 23:07:56 +00005525
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005526:Architectures: mips
5527:Target: vcpu
5528:Parameters: args[0] is reserved for future use (should be 0).
James Hogan5fafd8742014-12-08 23:07:56 +00005529
5530This capability allows the use of the host Floating Point Unit by the guest. It
5531allows 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 +01005532done the ``KVM_REG_MIPS_FPR_*`` and ``KVM_REG_MIPS_FCR_*`` registers can be
5533accessed (depending on the current guest FPU register mode), and the Status.FR,
James Hogan5fafd8742014-12-08 23:07:56 +00005534Config5.FRE bits are accessible via the KVM API and also from the guest,
5535depending on them being supported by the FPU.
5536
James Hogand952bd02014-12-08 23:07:56 +000055376.10 KVM_CAP_MIPS_MSA
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005538---------------------
James Hogand952bd02014-12-08 23:07:56 +00005539
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005540:Architectures: mips
5541:Target: vcpu
5542:Parameters: args[0] is reserved for future use (should be 0).
James Hogand952bd02014-12-08 23:07:56 +00005543
5544This capability allows the use of the MIPS SIMD Architecture (MSA) by the guest.
5545It 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 +01005546Once this is done the ``KVM_REG_MIPS_VEC_*`` and ``KVM_REG_MIPS_MSA_*``
5547registers can be accessed, and the Config5.MSAEn bit is accessible via the
5548KVM API and also from the guest.
James Hogand952bd02014-12-08 23:07:56 +00005549
Ken Hofsass01643c52018-01-31 16:03:36 -080055506.74 KVM_CAP_SYNC_REGS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005551----------------------
5552
5553:Architectures: s390, x86
5554:Target: s390: always enabled, x86: vcpu
5555:Parameters: none
5556:Returns: x86: KVM_CHECK_EXTENSION returns a bit-array indicating which register
5557 sets are supported
5558 (bitfields defined in arch/x86/include/uapi/asm/kvm.h).
Ken Hofsass01643c52018-01-31 16:03:36 -08005559
5560As described above in the kvm_sync_regs struct info in section 5 (kvm_run):
5561KVM_CAP_SYNC_REGS "allow[s] userspace to access certain guest registers
5562without having to call SET/GET_*REGS". This reduces overhead by eliminating
5563repeated ioctl calls for setting and/or getting register values. This is
5564particularly important when userspace is making synchronous guest state
5565modifications, e.g. when emulating and/or intercepting instructions in
5566userspace.
5567
5568For s390 specifics, please refer to the source code.
5569
5570For x86:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005571
Ken Hofsass01643c52018-01-31 16:03:36 -08005572- the register sets to be copied out to kvm_run are selectable
5573 by userspace (rather that all sets being copied out for every exit).
5574- vcpu_events are available in addition to regs and sregs.
5575
5576For x86, the 'kvm_valid_regs' field of struct kvm_run is overloaded to
5577function as an input bit-array field set by userspace to indicate the
5578specific register sets to be copied out on the next exit.
5579
5580To indicate when userspace has modified values that should be copied into
5581the vCPU, the all architecture bitarray field, 'kvm_dirty_regs' must be set.
5582This is done using the same bitflags as for the 'kvm_valid_regs' field.
5583If the dirty bit is not set, then the register set values will not be copied
5584into the vCPU even if they've been modified.
5585
5586Unused bitfields in the bitarrays must be set to zero.
5587
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005588::
5589
5590 struct kvm_sync_regs {
Ken Hofsass01643c52018-01-31 16:03:36 -08005591 struct kvm_regs regs;
5592 struct kvm_sregs sregs;
5593 struct kvm_vcpu_events events;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005594 };
Ken Hofsass01643c52018-01-31 16:03:36 -08005595
Cédric Le Goatereacc56b2019-04-18 12:39:28 +020055966.75 KVM_CAP_PPC_IRQ_XIVE
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005597-------------------------
Cédric Le Goatereacc56b2019-04-18 12:39:28 +02005598
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005599:Architectures: ppc
5600:Target: vcpu
5601:Parameters: args[0] is the XIVE device fd;
5602 args[1] is the XIVE CPU number (server ID) for this vcpu
Cédric Le Goatereacc56b2019-04-18 12:39:28 +02005603
5604This capability connects the vcpu to an in-kernel XIVE device.
5605
Paul Mackerras699a0ea2014-06-02 11:02:59 +100056067. Capabilities that can be enabled on VMs
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005607==========================================
Paul Mackerras699a0ea2014-06-02 11:02:59 +10005608
5609There are certain capabilities that change the behavior of the virtual
5610machine when enabled. To enable them, please see section 4.37. Below
5611you can find a list of capabilities and what their effect on the VM
5612is when enabling them.
5613
5614The following information is provided along with the description:
5615
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005616 Architectures:
5617 which instruction set architectures provide this ioctl.
Paul Mackerras699a0ea2014-06-02 11:02:59 +10005618 x86 includes both i386 and x86_64.
5619
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005620 Parameters:
5621 what parameters are accepted by the capability.
Paul Mackerras699a0ea2014-06-02 11:02:59 +10005622
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005623 Returns:
5624 the return value. General error numbers (EBADF, ENOMEM, EINVAL)
Paul Mackerras699a0ea2014-06-02 11:02:59 +10005625 are not detailed, but errors with specific meanings are.
5626
5627
56287.1 KVM_CAP_PPC_ENABLE_HCALL
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005629----------------------------
Paul Mackerras699a0ea2014-06-02 11:02:59 +10005630
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005631:Architectures: ppc
5632:Parameters: args[0] is the sPAPR hcall number;
5633 args[1] is 0 to disable, 1 to enable in-kernel handling
Paul Mackerras699a0ea2014-06-02 11:02:59 +10005634
5635This capability controls whether individual sPAPR hypercalls (hcalls)
5636get handled by the kernel or not. Enabling or disabling in-kernel
5637handling of an hcall is effective across the VM. On creation, an
5638initial set of hcalls are enabled for in-kernel handling, which
5639consists of those hcalls for which in-kernel handlers were implemented
5640before this capability was implemented. If disabled, the kernel will
5641not to attempt to handle the hcall, but will always exit to userspace
5642to handle it. Note that it may not make sense to enable some and
5643disable others of a group of related hcalls, but KVM does not prevent
5644userspace from doing that.
Paul Mackerrasae2113a2014-06-02 11:03:00 +10005645
5646If the hcall number specified is not one that has an in-kernel
5647implementation, the KVM_ENABLE_CAP ioctl will fail with an EINVAL
5648error.
David Hildenbrand2444b352014-10-09 14:10:13 +02005649
56507.2 KVM_CAP_S390_USER_SIGP
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005651--------------------------
David Hildenbrand2444b352014-10-09 14:10:13 +02005652
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005653:Architectures: s390
5654:Parameters: none
David Hildenbrand2444b352014-10-09 14:10:13 +02005655
5656This capability controls which SIGP orders will be handled completely in user
5657space. With this capability enabled, all fast orders will be handled completely
5658in the kernel:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005659
David Hildenbrand2444b352014-10-09 14:10:13 +02005660- SENSE
5661- SENSE RUNNING
5662- EXTERNAL CALL
5663- EMERGENCY SIGNAL
5664- CONDITIONAL EMERGENCY SIGNAL
5665
5666All other orders will be handled completely in user space.
5667
5668Only privileged operation exceptions will be checked for in the kernel (or even
5669in the hardware prior to interception). If this capability is not enabled, the
5670old way of handling SIGP orders is used (partially in kernel and user space).
Eric Farman68c55752014-06-09 10:57:26 -04005671
56727.3 KVM_CAP_S390_VECTOR_REGISTERS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005673---------------------------------
Eric Farman68c55752014-06-09 10:57:26 -04005674
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005675:Architectures: s390
5676:Parameters: none
5677:Returns: 0 on success, negative value on error
Eric Farman68c55752014-06-09 10:57:26 -04005678
5679Allows use of the vector registers introduced with z13 processor, and
5680provides for the synchronization between host and user space. Will
5681return -EINVAL if the machine does not support vectors.
Ekaterina Tumanovae44fc8c2015-01-30 16:55:56 +01005682
56837.4 KVM_CAP_S390_USER_STSI
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005684--------------------------
Ekaterina Tumanovae44fc8c2015-01-30 16:55:56 +01005685
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005686:Architectures: s390
5687:Parameters: none
Ekaterina Tumanovae44fc8c2015-01-30 16:55:56 +01005688
5689This capability allows post-handlers for the STSI instruction. After
5690initial handling in the kernel, KVM exits to user space with
5691KVM_EXIT_S390_STSI to allow user space to insert further data.
5692
5693Before exiting to userspace, kvm handlers should fill in s390_stsi field of
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005694vcpu->run::
5695
5696 struct {
Ekaterina Tumanovae44fc8c2015-01-30 16:55:56 +01005697 __u64 addr;
5698 __u8 ar;
5699 __u8 reserved;
5700 __u8 fc;
5701 __u8 sel1;
5702 __u16 sel2;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005703 } s390_stsi;
Ekaterina Tumanovae44fc8c2015-01-30 16:55:56 +01005704
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005705 @addr - guest address of STSI SYSIB
5706 @fc - function code
5707 @sel1 - selector 1
5708 @sel2 - selector 2
5709 @ar - access register number
Ekaterina Tumanovae44fc8c2015-01-30 16:55:56 +01005710
5711KVM handlers should exit to userspace with rc = -EREMOTE.
Michael Ellermane928e9c2015-03-20 20:39:41 +11005712
Steve Rutherford49df6392015-07-29 23:21:40 -070057137.5 KVM_CAP_SPLIT_IRQCHIP
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005714-------------------------
Steve Rutherford49df6392015-07-29 23:21:40 -07005715
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005716:Architectures: x86
5717:Parameters: args[0] - number of routes reserved for userspace IOAPICs
5718:Returns: 0 on success, -1 on error
Steve Rutherford49df6392015-07-29 23:21:40 -07005719
5720Create a local apic for each processor in the kernel. This can be used
5721instead of KVM_CREATE_IRQCHIP if the userspace VMM wishes to emulate the
5722IOAPIC and PIC (and also the PIT, even though this has to be enabled
5723separately).
5724
Steve Rutherfordb053b2a2015-07-29 23:32:35 -07005725This capability also enables in kernel routing of interrupt requests;
5726when KVM_CAP_SPLIT_IRQCHIP only routes of KVM_IRQ_ROUTING_MSI type are
5727used in the IRQ routing table. The first args[0] MSI routes are reserved
5728for the IOAPIC pins. Whenever the LAPIC receives an EOI for these routes,
5729a KVM_EXIT_IOAPIC_EOI vmexit will be reported to userspace.
Steve Rutherford49df6392015-07-29 23:21:40 -07005730
5731Fails if VCPU has already been created, or if the irqchip is already in the
5732kernel (i.e. KVM_CREATE_IRQCHIP has already been called).
5733
David Hildenbrand051c87f2016-04-19 13:13:40 +020057347.6 KVM_CAP_S390_RI
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005735-------------------
David Hildenbrand051c87f2016-04-19 13:13:40 +02005736
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005737:Architectures: s390
5738:Parameters: none
David Hildenbrand051c87f2016-04-19 13:13:40 +02005739
5740Allows use of runtime-instrumentation introduced with zEC12 processor.
5741Will return -EINVAL if the machine does not support runtime-instrumentation.
5742Will return -EBUSY if a VCPU has already been created.
Michael Ellermane928e9c2015-03-20 20:39:41 +11005743
Radim Krčmář371313132016-07-12 22:09:27 +020057447.7 KVM_CAP_X2APIC_API
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005745----------------------
Radim Krčmář371313132016-07-12 22:09:27 +02005746
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005747:Architectures: x86
5748:Parameters: args[0] - features that should be enabled
5749:Returns: 0 on success, -EINVAL when args[0] contains invalid features
Radim Krčmář371313132016-07-12 22:09:27 +02005750
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005751Valid feature flags in args[0] are::
Radim Krčmář371313132016-07-12 22:09:27 +02005752
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005753 #define KVM_X2APIC_API_USE_32BIT_IDS (1ULL << 0)
5754 #define KVM_X2APIC_API_DISABLE_BROADCAST_QUIRK (1ULL << 1)
Radim Krčmář371313132016-07-12 22:09:27 +02005755
5756Enabling KVM_X2APIC_API_USE_32BIT_IDS changes the behavior of
5757KVM_SET_GSI_ROUTING, KVM_SIGNAL_MSI, KVM_SET_LAPIC, and KVM_GET_LAPIC,
5758allowing the use of 32-bit APIC IDs. See KVM_CAP_X2APIC_API in their
5759respective sections.
5760
Radim Krčmářc5192652016-07-12 22:09:28 +02005761KVM_X2APIC_API_DISABLE_BROADCAST_QUIRK must be enabled for x2APIC to work
5762in logical mode or with more than 255 VCPUs. Otherwise, KVM treats 0xff
5763as a broadcast even in x2APIC mode in order to support physical x2APIC
5764without interrupt remapping. This is undesirable in logical mode,
5765where 0xff represents CPUs 0-7 in cluster 0.
Radim Krčmář371313132016-07-12 22:09:27 +02005766
David Hildenbrand6502a342016-06-21 14:19:51 +020057677.8 KVM_CAP_S390_USER_INSTR0
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005768----------------------------
David Hildenbrand6502a342016-06-21 14:19:51 +02005769
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005770:Architectures: s390
5771:Parameters: none
David Hildenbrand6502a342016-06-21 14:19:51 +02005772
5773With this capability enabled, all illegal instructions 0x0000 (2 bytes) will
5774be intercepted and forwarded to user space. User space can use this
5775mechanism e.g. to realize 2-byte software breakpoints. The kernel will
5776not inject an operating exception for these instructions, user space has
5777to take care of that.
5778
5779This capability can be enabled dynamically even if VCPUs were already
5780created and are running.
Radim Krčmář371313132016-07-12 22:09:27 +02005781
Fan Zhang4e0b1ab2016-11-29 07:17:55 +010057827.9 KVM_CAP_S390_GS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005783-------------------
Fan Zhang4e0b1ab2016-11-29 07:17:55 +01005784
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005785:Architectures: s390
5786:Parameters: none
5787:Returns: 0 on success; -EINVAL if the machine does not support
5788 guarded storage; -EBUSY if a VCPU has already been created.
Fan Zhang4e0b1ab2016-11-29 07:17:55 +01005789
5790Allows use of guarded storage for the KVM guest.
5791
Yi Min Zhao47a46932017-03-10 09:29:38 +010057927.10 KVM_CAP_S390_AIS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005793---------------------
Yi Min Zhao47a46932017-03-10 09:29:38 +01005794
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005795:Architectures: s390
5796:Parameters: none
Yi Min Zhao47a46932017-03-10 09:29:38 +01005797
5798Allow use of adapter-interruption suppression.
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005799:Returns: 0 on success; -EBUSY if a VCPU has already been created.
Yi Min Zhao47a46932017-03-10 09:29:38 +01005800
Paul Mackerras3c313522017-02-06 13:24:41 +110058017.11 KVM_CAP_PPC_SMT
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005802--------------------
Paul Mackerras3c313522017-02-06 13:24:41 +11005803
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005804:Architectures: ppc
5805:Parameters: vsmt_mode, flags
Paul Mackerras3c313522017-02-06 13:24:41 +11005806
5807Enabling this capability on a VM provides userspace with a way to set
5808the desired virtual SMT mode (i.e. the number of virtual CPUs per
5809virtual core). The virtual SMT mode, vsmt_mode, must be a power of 2
5810between 1 and 8. On POWER8, vsmt_mode must also be no greater than
5811the number of threads per subcore for the host. Currently flags must
5812be 0. A successful call to enable this capability will result in
5813vsmt_mode being returned when the KVM_CAP_PPC_SMT capability is
5814subsequently queried for the VM. This capability is only supported by
5815HV KVM, and can only be set before any VCPUs have been created.
Paul Mackerras2ed4f9d2017-06-21 16:01:27 +10005816The KVM_CAP_PPC_SMT_POSSIBLE capability indicates which virtual SMT
5817modes are available.
Paul Mackerras3c313522017-02-06 13:24:41 +11005818
Aravinda Prasad134764e2017-05-11 16:32:48 +053058197.12 KVM_CAP_PPC_FWNMI
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005820----------------------
Aravinda Prasad134764e2017-05-11 16:32:48 +05305821
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005822:Architectures: ppc
5823:Parameters: none
Aravinda Prasad134764e2017-05-11 16:32:48 +05305824
5825With this capability a machine check exception in the guest address
5826space will cause KVM to exit the guest with NMI exit reason. This
5827enables QEMU to build error log and branch to guest kernel registered
5828machine check handling routine. Without this capability KVM will
5829branch to guests' 0x200 interrupt vector.
5830
Wanpeng Li4d5422c2018-03-12 04:53:02 -070058317.13 KVM_CAP_X86_DISABLE_EXITS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005832------------------------------
Wanpeng Li4d5422c2018-03-12 04:53:02 -07005833
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005834:Architectures: x86
5835:Parameters: args[0] defines which exits are disabled
5836:Returns: 0 on success, -EINVAL when args[0] contains invalid exits
Wanpeng Li4d5422c2018-03-12 04:53:02 -07005837
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005838Valid bits in args[0] are::
Wanpeng Li4d5422c2018-03-12 04:53:02 -07005839
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005840 #define KVM_X86_DISABLE_EXITS_MWAIT (1 << 0)
5841 #define KVM_X86_DISABLE_EXITS_HLT (1 << 1)
5842 #define KVM_X86_DISABLE_EXITS_PAUSE (1 << 2)
5843 #define KVM_X86_DISABLE_EXITS_CSTATE (1 << 3)
Wanpeng Li4d5422c2018-03-12 04:53:02 -07005844
5845Enabling this capability on a VM provides userspace with a way to no
5846longer intercept some instructions for improved latency in some
5847workloads, and is suggested when vCPUs are associated to dedicated
5848physical CPUs. More bits can be added in the future; userspace can
5849just pass the KVM_CHECK_EXTENSION result to KVM_ENABLE_CAP to disable
5850all such vmexits.
5851
Wanpeng Licaa057a2018-03-12 04:53:03 -07005852Do not enable KVM_FEATURE_PV_UNHALT if you disable HLT exits.
Wanpeng Li4d5422c2018-03-12 04:53:02 -07005853
Janosch Franka4499382018-07-13 11:28:31 +010058547.14 KVM_CAP_S390_HPAGE_1M
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005855--------------------------
Janosch Franka4499382018-07-13 11:28:31 +01005856
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005857:Architectures: s390
5858:Parameters: none
5859:Returns: 0 on success, -EINVAL if hpage module parameter was not set
5860 or cmma is enabled, or the VM has the KVM_VM_S390_UCONTROL
5861 flag set
Janosch Franka4499382018-07-13 11:28:31 +01005862
5863With this capability the KVM support for memory backing with 1m pages
5864through hugetlbfs can be enabled for a VM. After the capability is
5865enabled, cmma can't be enabled anymore and pfmfi and the storage key
5866interpretation are disabled. If cmma has already been enabled or the
5867hpage module parameter is not set to 1, -EINVAL is returned.
5868
5869While it is generally possible to create a huge page backed VM without
5870this capability, the VM will not be able to run.
5871
Jim Mattsonc4f55192018-10-16 14:29:24 -070058727.15 KVM_CAP_MSR_PLATFORM_INFO
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005873------------------------------
Drew Schmitt6fbbde92018-08-20 10:32:15 -07005874
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005875:Architectures: x86
5876:Parameters: args[0] whether feature should be enabled or not
Drew Schmitt6fbbde92018-08-20 10:32:15 -07005877
5878With this capability, a guest may read the MSR_PLATFORM_INFO MSR. Otherwise,
5879a #GP would be raised when the guest tries to access. Currently, this
5880capability does not enable write permissions of this MSR for the guest.
5881
Paul Mackerrasaa069a92018-09-21 20:02:01 +100058827.16 KVM_CAP_PPC_NESTED_HV
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005883--------------------------
Paul Mackerrasaa069a92018-09-21 20:02:01 +10005884
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005885:Architectures: ppc
5886:Parameters: none
5887:Returns: 0 on success, -EINVAL when the implementation doesn't support
5888 nested-HV virtualization.
Paul Mackerrasaa069a92018-09-21 20:02:01 +10005889
5890HV-KVM on POWER9 and later systems allows for "nested-HV"
5891virtualization, which provides a way for a guest VM to run guests that
5892can run using the CPU's supervisor mode (privileged non-hypervisor
5893state). Enabling this capability on a VM depends on the CPU having
5894the necessary functionality and on the facility being enabled with a
5895kvm-hv module parameter.
5896
Jim Mattsonc4f55192018-10-16 14:29:24 -070058977.17 KVM_CAP_EXCEPTION_PAYLOAD
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005898------------------------------
Jim Mattsonc4f55192018-10-16 14:29:24 -07005899
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005900:Architectures: x86
5901:Parameters: args[0] whether feature should be enabled or not
Jim Mattsonc4f55192018-10-16 14:29:24 -07005902
5903With this capability enabled, CR2 will not be modified prior to the
5904emulated VM-exit when L1 intercepts a #PF exception that occurs in
5905L2. Similarly, for kvm-intel only, DR6 will not be modified prior to
5906the emulated VM-exit when L1 intercepts a #DB exception that occurs in
5907L2. As a result, when KVM_GET_VCPU_EVENTS reports a pending #PF (or
5908#DB) exception for L2, exception.has_payload will be set and the
5909faulting address (or the new DR6 bits*) will be reported in the
5910exception_payload field. Similarly, when userspace injects a #PF (or
5911#DB) into L2 using KVM_SET_VCPU_EVENTS, it is expected to set
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005912exception.has_payload and to put the faulting address - or the new DR6
5913bits\ [#]_ - in the exception_payload field.
Jim Mattsonc4f55192018-10-16 14:29:24 -07005914
5915This capability also enables exception.pending in struct
5916kvm_vcpu_events, which allows userspace to distinguish between pending
5917and injected exceptions.
5918
5919
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005920.. [#] For the new DR6 bits, note that bit 16 is set iff the #DB exception
5921 will clear DR6.RTM.
Jim Mattsonc4f55192018-10-16 14:29:24 -07005922
Peter Xud7547c52019-05-08 17:15:47 +080059237.18 KVM_CAP_MANUAL_DIRTY_LOG_PROTECT2
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02005924
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005925:Architectures: x86, arm, arm64, mips
5926:Parameters: args[0] whether feature should be enabled or not
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02005927
Jay Zhou3c9bd402020-02-27 09:32:27 +08005928Valid flags are::
5929
5930 #define KVM_DIRTY_LOG_MANUAL_PROTECT_ENABLE (1 << 0)
5931 #define KVM_DIRTY_LOG_INITIALLY_SET (1 << 1)
5932
5933With KVM_DIRTY_LOG_MANUAL_PROTECT_ENABLE is set, KVM_GET_DIRTY_LOG will not
5934automatically clear and write-protect all pages that are returned as dirty.
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02005935Rather, userspace will have to do this operation separately using
5936KVM_CLEAR_DIRTY_LOG.
5937
5938At the cost of a slightly more complicated operation, this provides better
5939scalability and responsiveness for two reasons. First,
5940KVM_CLEAR_DIRTY_LOG ioctl can operate on a 64-page granularity rather
5941than requiring to sync a full memslot; this ensures that KVM does not
5942take spinlocks for an extended period of time. Second, in some cases a
5943large amount of time can pass between a call to KVM_GET_DIRTY_LOG and
5944userspace actually using the data in the page. Pages can be modified
Jay Zhou3c9bd402020-02-27 09:32:27 +08005945during this time, which is inefficient for both the guest and userspace:
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02005946the guest will incur a higher penalty due to write protection faults,
5947while userspace can see false reports of dirty pages. Manual reprotection
5948helps reducing this time, improving guest performance and reducing the
5949number of dirty log false positives.
5950
Jay Zhou3c9bd402020-02-27 09:32:27 +08005951With KVM_DIRTY_LOG_INITIALLY_SET set, all the bits of the dirty bitmap
5952will be initialized to 1 when created. This also improves performance because
5953dirty logging can be enabled gradually in small chunks on the first call
5954to KVM_CLEAR_DIRTY_LOG. KVM_DIRTY_LOG_INITIALLY_SET depends on
5955KVM_DIRTY_LOG_MANUAL_PROTECT_ENABLE (it is also only available on
Keqian Zhuc8626262020-04-13 20:20:23 +08005956x86 and arm64 for now).
Jay Zhou3c9bd402020-02-27 09:32:27 +08005957
Peter Xud7547c52019-05-08 17:15:47 +08005958KVM_CAP_MANUAL_DIRTY_LOG_PROTECT2 was previously available under the name
5959KVM_CAP_MANUAL_DIRTY_LOG_PROTECT, but the implementation had bugs that make
5960it hard or impossible to use it correctly. The availability of
5961KVM_CAP_MANUAL_DIRTY_LOG_PROTECT2 signals that those bugs are fixed.
5962Userspace should not try to use KVM_CAP_MANUAL_DIRTY_LOG_PROTECT.
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02005963
Paul Mackerras9a5788c2020-03-19 15:29:55 +110059647.19 KVM_CAP_PPC_SECURE_GUEST
5965------------------------------
5966
5967:Architectures: ppc
5968
5969This capability indicates that KVM is running on a host that has
5970ultravisor firmware and thus can support a secure guest. On such a
5971system, a guest can ask the ultravisor to make it a secure guest,
5972one whose memory is inaccessible to the host except for pages which
5973are explicitly requested to be shared with the host. The ultravisor
5974notifies KVM when a guest requests to become a secure guest, and KVM
5975has the opportunity to veto the transition.
5976
5977If present, this capability can be enabled for a VM, meaning that KVM
5978will allow the transition to secure guest mode. Otherwise KVM will
5979veto the transition.
5980
David Matlackacd05782020-04-17 15:14:46 -070059817.20 KVM_CAP_HALT_POLL
5982----------------------
5983
5984:Architectures: all
5985:Target: VM
5986:Parameters: args[0] is the maximum poll time in nanoseconds
5987:Returns: 0 on success; -1 on error
5988
5989This capability overrides the kvm module parameter halt_poll_ns for the
5990target VM.
5991
5992VCPU polling allows a VCPU to poll for wakeup events instead of immediately
5993scheduling during guest halts. The maximum time a VCPU can spend polling is
5994controlled by the kvm module parameter halt_poll_ns. This capability allows
5995the maximum halt time to specified on a per-VM basis, effectively overriding
5996the module parameter for the target VM.
5997
Alexander Graf1ae09952020-09-25 16:34:16 +020059987.21 KVM_CAP_X86_USER_SPACE_MSR
5999-------------------------------
6000
6001:Architectures: x86
6002:Target: VM
6003:Parameters: args[0] contains the mask of KVM_MSR_EXIT_REASON_* events to report
6004:Returns: 0 on success; -1 on error
6005
6006This capability enables trapping of #GP invoking RDMSR and WRMSR instructions
6007into user space.
6008
6009When a guest requests to read or write an MSR, KVM may not implement all MSRs
6010that are relevant to a respective system. It also does not differentiate by
6011CPU type.
6012
6013To allow more fine grained control over MSR handling, user space may enable
6014this capability. With it enabled, MSR accesses that match the mask specified in
6015args[0] and trigger a #GP event inside the guest by KVM will instead trigger
6016KVM_EXIT_X86_RDMSR and KVM_EXIT_X86_WRMSR exit notifications which user space
6017can then handle to implement model specific MSR handling and/or user notifications
6018to inform a user that an MSR was not handled.
6019
Michael Ellermane928e9c2015-03-20 20:39:41 +110060208. Other capabilities.
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006021======================
Michael Ellermane928e9c2015-03-20 20:39:41 +11006022
6023This section lists capabilities that give information about other
6024features of the KVM implementation.
6025
60268.1 KVM_CAP_PPC_HWRNG
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006027---------------------
Michael Ellermane928e9c2015-03-20 20:39:41 +11006028
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006029:Architectures: ppc
Michael Ellermane928e9c2015-03-20 20:39:41 +11006030
6031This capability, if KVM_CHECK_EXTENSION indicates that it is
Randy Dunlap3747c5d2020-07-03 14:29:06 -07006032available, means that the kernel has an implementation of the
Michael Ellermane928e9c2015-03-20 20:39:41 +11006033H_RANDOM hypercall backed by a hardware random-number generator.
6034If present, the kernel H_RANDOM handler can be enabled for guest use
6035with the KVM_CAP_PPC_ENABLE_HCALL capability.
Andrey Smetanin5c9194122015-11-10 15:36:34 +03006036
60378.2 KVM_CAP_HYPERV_SYNIC
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006038------------------------
Andrey Smetanin5c9194122015-11-10 15:36:34 +03006039
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006040:Architectures: x86
6041
Andrey Smetanin5c9194122015-11-10 15:36:34 +03006042This capability, if KVM_CHECK_EXTENSION indicates that it is
Randy Dunlap3747c5d2020-07-03 14:29:06 -07006043available, means that the kernel has an implementation of the
Andrey Smetanin5c9194122015-11-10 15:36:34 +03006044Hyper-V Synthetic interrupt controller(SynIC). Hyper-V SynIC is
6045used to support Windows Hyper-V based guest paravirt drivers(VMBus).
6046
6047In order to use SynIC, it has to be activated by setting this
6048capability via KVM_ENABLE_CAP ioctl on the vcpu fd. Note that this
6049will disable the use of APIC hardware virtualization even if supported
6050by the CPU, as it's incompatible with SynIC auto-EOI behavior.
Paul Mackerrasc9270132017-01-30 21:21:41 +11006051
60528.3 KVM_CAP_PPC_RADIX_MMU
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006053-------------------------
Paul Mackerrasc9270132017-01-30 21:21:41 +11006054
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006055:Architectures: ppc
Paul Mackerrasc9270132017-01-30 21:21:41 +11006056
6057This capability, if KVM_CHECK_EXTENSION indicates that it is
Randy Dunlap3747c5d2020-07-03 14:29:06 -07006058available, means that the kernel can support guests using the
Paul Mackerrasc9270132017-01-30 21:21:41 +11006059radix MMU defined in Power ISA V3.00 (as implemented in the POWER9
6060processor).
6061
60628.4 KVM_CAP_PPC_HASH_MMU_V3
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006063---------------------------
Paul Mackerrasc9270132017-01-30 21:21:41 +11006064
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006065:Architectures: ppc
Paul Mackerrasc9270132017-01-30 21:21:41 +11006066
6067This capability, if KVM_CHECK_EXTENSION indicates that it is
Randy Dunlap3747c5d2020-07-03 14:29:06 -07006068available, means that the kernel can support guests using the
Paul Mackerrasc9270132017-01-30 21:21:41 +11006069hashed page table MMU defined in Power ISA V3.00 (as implemented in
6070the POWER9 processor), including in-memory segment tables.
James Hogana8a3c422017-03-14 10:15:19 +00006071
60728.5 KVM_CAP_MIPS_VZ
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006073-------------------
James Hogana8a3c422017-03-14 10:15:19 +00006074
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006075:Architectures: mips
James Hogana8a3c422017-03-14 10:15:19 +00006076
6077This capability, if KVM_CHECK_EXTENSION on the main kvm handle indicates that
6078it is available, means that full hardware assisted virtualization capabilities
6079of the hardware are available for use through KVM. An appropriate
6080KVM_VM_MIPS_* type must be passed to KVM_CREATE_VM to create a VM which
6081utilises it.
6082
6083If KVM_CHECK_EXTENSION on a kvm VM handle indicates that this capability is
6084available, it means that the VM is using full hardware assisted virtualization
6085capabilities of the hardware. This is useful to check after creating a VM with
6086KVM_VM_MIPS_DEFAULT.
6087
6088The value returned by KVM_CHECK_EXTENSION should be compared against known
6089values (see below). All other values are reserved. This is to allow for the
6090possibility of other hardware assisted virtualization implementations which
6091may be incompatible with the MIPS VZ ASE.
6092
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006093== ==========================================================================
6094 0 The trap & emulate implementation is in use to run guest code in user
James Hogana8a3c422017-03-14 10:15:19 +00006095 mode. Guest virtual memory segments are rearranged to fit the guest in the
6096 user mode address space.
6097
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006098 1 The MIPS VZ ASE is in use, providing full hardware assisted
James Hogana8a3c422017-03-14 10:15:19 +00006099 virtualization, including standard guest virtual memory segments.
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006100== ==========================================================================
James Hogana8a3c422017-03-14 10:15:19 +00006101
61028.6 KVM_CAP_MIPS_TE
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006103-------------------
James Hogana8a3c422017-03-14 10:15:19 +00006104
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006105:Architectures: mips
James Hogana8a3c422017-03-14 10:15:19 +00006106
6107This capability, if KVM_CHECK_EXTENSION on the main kvm handle indicates that
6108it is available, means that the trap & emulate implementation is available to
6109run guest code in user mode, even if KVM_CAP_MIPS_VZ indicates that hardware
6110assisted virtualisation is also available. KVM_VM_MIPS_TE (0) must be passed
6111to KVM_CREATE_VM to create a VM which utilises it.
6112
6113If KVM_CHECK_EXTENSION on a kvm VM handle indicates that this capability is
6114available, it means that the VM is using trap & emulate.
James Hogan578fd612017-03-14 10:15:20 +00006115
61168.7 KVM_CAP_MIPS_64BIT
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006117----------------------
James Hogan578fd612017-03-14 10:15:20 +00006118
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006119:Architectures: mips
James Hogan578fd612017-03-14 10:15:20 +00006120
6121This capability indicates the supported architecture type of the guest, i.e. the
6122supported register and address width.
6123
6124The values returned when this capability is checked by KVM_CHECK_EXTENSION on a
6125kvm VM handle correspond roughly to the CP0_Config.AT register field, and should
6126be checked specifically against known values (see below). All other values are
6127reserved.
6128
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006129== ========================================================================
6130 0 MIPS32 or microMIPS32.
James Hogan578fd612017-03-14 10:15:20 +00006131 Both registers and addresses are 32-bits wide.
6132 It will only be possible to run 32-bit guest code.
6133
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006134 1 MIPS64 or microMIPS64 with access only to 32-bit compatibility segments.
James Hogan578fd612017-03-14 10:15:20 +00006135 Registers are 64-bits wide, but addresses are 32-bits wide.
6136 64-bit guest code may run but cannot access MIPS64 memory segments.
6137 It will also be possible to run 32-bit guest code.
6138
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006139 2 MIPS64 or microMIPS64 with access to all address segments.
James Hogan578fd612017-03-14 10:15:20 +00006140 Both registers and addresses are 64-bits wide.
6141 It will be possible to run 64-bit or 32-bit guest code.
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006142== ========================================================================
Michael S. Tsirkin668fffa2017-04-21 12:27:17 +02006143
Paolo Bonzinic24a7be2017-04-27 17:33:14 +020061448.9 KVM_CAP_ARM_USER_IRQ
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006145------------------------
Alexander Graf3fe17e62016-09-27 21:08:05 +02006146
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006147:Architectures: arm, arm64
6148
Alexander Graf3fe17e62016-09-27 21:08:05 +02006149This capability, if KVM_CHECK_EXTENSION indicates that it is available, means
6150that if userspace creates a VM without an in-kernel interrupt controller, it
6151will be notified of changes to the output level of in-kernel emulated devices,
6152which can generate virtual interrupts, presented to the VM.
6153For such VMs, on every return to userspace, the kernel
6154updates the vcpu's run->s.regs.device_irq_level field to represent the actual
6155output level of the device.
6156
6157Whenever kvm detects a change in the device output level, kvm guarantees at
6158least one return to userspace before running the VM. This exit could either
6159be a KVM_EXIT_INTR or any other exit event, like KVM_EXIT_MMIO. This way,
6160userspace can always sample the device output level and re-compute the state of
6161the userspace interrupt controller. Userspace should always check the state
6162of run->s.regs.device_irq_level on every kvm exit.
6163The value in run->s.regs.device_irq_level can represent both level and edge
6164triggered interrupt signals, depending on the device. Edge triggered interrupt
6165signals will exit to userspace with the bit in run->s.regs.device_irq_level
6166set exactly once per edge signal.
6167
6168The field run->s.regs.device_irq_level is available independent of
6169run->kvm_valid_regs or run->kvm_dirty_regs bits.
6170
6171If KVM_CAP_ARM_USER_IRQ is supported, the KVM_CHECK_EXTENSION ioctl returns a
6172number larger than 0 indicating the version of this capability is implemented
Randy Dunlap3747c5d2020-07-03 14:29:06 -07006173and thereby which bits in run->s.regs.device_irq_level can signal values.
Alexander Graf3fe17e62016-09-27 21:08:05 +02006174
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006175Currently the following bits are defined for the device_irq_level bitmap::
Alexander Graf3fe17e62016-09-27 21:08:05 +02006176
6177 KVM_CAP_ARM_USER_IRQ >= 1:
6178
6179 KVM_ARM_DEV_EL1_VTIMER - EL1 virtual timer
6180 KVM_ARM_DEV_EL1_PTIMER - EL1 physical timer
6181 KVM_ARM_DEV_PMU - ARM PMU overflow interrupt signal
6182
6183Future versions of kvm may implement additional events. These will get
6184indicated by returning a higher number from KVM_CHECK_EXTENSION and will be
6185listed above.
Paul Mackerras2ed4f9d2017-06-21 16:01:27 +10006186
61878.10 KVM_CAP_PPC_SMT_POSSIBLE
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006188-----------------------------
Paul Mackerras2ed4f9d2017-06-21 16:01:27 +10006189
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006190:Architectures: ppc
Paul Mackerras2ed4f9d2017-06-21 16:01:27 +10006191
6192Querying this capability returns a bitmap indicating the possible
6193virtual SMT modes that can be set using KVM_CAP_PPC_SMT. If bit N
6194(counting from the right) is set, then a virtual SMT mode of 2^N is
6195available.
Roman Kaganefc479e2017-06-22 16:51:01 +03006196
61978.11 KVM_CAP_HYPERV_SYNIC2
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006198--------------------------
Roman Kaganefc479e2017-06-22 16:51:01 +03006199
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006200:Architectures: x86
Roman Kaganefc479e2017-06-22 16:51:01 +03006201
6202This capability enables a newer version of Hyper-V Synthetic interrupt
6203controller (SynIC). The only difference with KVM_CAP_HYPERV_SYNIC is that KVM
6204doesn't clear SynIC message and event flags pages when they are enabled by
6205writing to the respective MSRs.
Roman Kagand3457c82017-07-14 17:13:20 +03006206
62078.12 KVM_CAP_HYPERV_VP_INDEX
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006208----------------------------
Roman Kagand3457c82017-07-14 17:13:20 +03006209
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006210:Architectures: x86
Roman Kagand3457c82017-07-14 17:13:20 +03006211
6212This capability indicates that userspace can load HV_X64_MSR_VP_INDEX msr. Its
6213value is used to denote the target vcpu for a SynIC interrupt. For
6214compatibilty, KVM initializes this msr to KVM's internal vcpu index. When this
6215capability is absent, userspace can still query this msr's value.
Christian Borntraegerda9a1442017-11-09 10:00:45 +01006216
62178.13 KVM_CAP_S390_AIS_MIGRATION
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006218-------------------------------
Christian Borntraegerda9a1442017-11-09 10:00:45 +01006219
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006220:Architectures: s390
6221:Parameters: none
Christian Borntraegerda9a1442017-11-09 10:00:45 +01006222
6223This capability indicates if the flic device will be able to get/set the
6224AIS states for migration via the KVM_DEV_FLIC_AISM_ALL attribute and allows
6225to discover this without having to create a flic device.
Christian Borntraeger5c2b4d52018-02-22 13:40:04 +00006226
62278.14 KVM_CAP_S390_PSW
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006228---------------------
Christian Borntraeger5c2b4d52018-02-22 13:40:04 +00006229
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006230:Architectures: s390
Christian Borntraeger5c2b4d52018-02-22 13:40:04 +00006231
6232This capability indicates that the PSW is exposed via the kvm_run structure.
6233
62348.15 KVM_CAP_S390_GMAP
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006235----------------------
Christian Borntraeger5c2b4d52018-02-22 13:40:04 +00006236
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006237:Architectures: s390
Christian Borntraeger5c2b4d52018-02-22 13:40:04 +00006238
6239This capability indicates that the user space memory used as guest mapping can
6240be anywhere in the user memory address space, as long as the memory slots are
6241aligned and sized to a segment (1MB) boundary.
6242
62438.16 KVM_CAP_S390_COW
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006244---------------------
Christian Borntraeger5c2b4d52018-02-22 13:40:04 +00006245
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006246:Architectures: s390
Christian Borntraeger5c2b4d52018-02-22 13:40:04 +00006247
6248This capability indicates that the user space memory used as guest mapping can
6249use copy-on-write semantics as well as dirty pages tracking via read-only page
6250tables.
6251
62528.17 KVM_CAP_S390_BPB
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006253---------------------
Christian Borntraeger5c2b4d52018-02-22 13:40:04 +00006254
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006255:Architectures: s390
Christian Borntraeger5c2b4d52018-02-22 13:40:04 +00006256
6257This capability indicates that kvm will implement the interfaces to handle
6258reset, migration and nested KVM for branch prediction blocking. The stfle
6259facility 82 should not be provided to the guest without this capability.
Vitaly Kuznetsovc1aea912018-05-16 17:21:31 +02006260
Vitaly Kuznetsov2ddc6492018-06-22 16:56:14 +020062618.18 KVM_CAP_HYPERV_TLBFLUSH
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006262----------------------------
Vitaly Kuznetsovc1aea912018-05-16 17:21:31 +02006263
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006264:Architectures: x86
Vitaly Kuznetsovc1aea912018-05-16 17:21:31 +02006265
6266This capability indicates that KVM supports paravirtualized Hyper-V TLB Flush
6267hypercalls:
6268HvFlushVirtualAddressSpace, HvFlushVirtualAddressSpaceEx,
6269HvFlushVirtualAddressList, HvFlushVirtualAddressListEx.
Dongjiu Gengbe26b3a2018-07-19 16:24:23 +01006270
Dongjiu Geng688e0582018-08-20 17:39:25 -040062718.19 KVM_CAP_ARM_INJECT_SERROR_ESR
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006272----------------------------------
Dongjiu Gengbe26b3a2018-07-19 16:24:23 +01006273
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006274:Architectures: arm, arm64
Dongjiu Gengbe26b3a2018-07-19 16:24:23 +01006275
6276This capability indicates that userspace can specify (via the
6277KVM_SET_VCPU_EVENTS ioctl) the syndrome value reported to the guest when it
6278takes a virtual SError interrupt exception.
6279If KVM advertises this capability, userspace can only specify the ISS field for
6280the ESR syndrome. Other parts of the ESR, such as the EC are generated by the
6281CPU when the exception is taken. If this virtual SError is taken to EL1 using
6282AArch64, this value will be reported in the ISS field of ESR_ELx.
6283
6284See KVM_CAP_VCPU_EVENTS for more details.
Vitaly Kuznetsov214ff832018-09-26 19:02:59 +02006285
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +010062868.20 KVM_CAP_HYPERV_SEND_IPI
6287----------------------------
6288
6289:Architectures: x86
Vitaly Kuznetsov214ff832018-09-26 19:02:59 +02006290
6291This capability indicates that KVM supports paravirtualized Hyper-V IPI send
6292hypercalls:
6293HvCallSendSyntheticClusterIpi, HvCallSendSyntheticClusterIpiEx.
Tianyu Lan344c6c82019-08-22 22:30:20 +08006294
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +010062958.21 KVM_CAP_HYPERV_DIRECT_TLBFLUSH
6296-----------------------------------
6297
Andrew Jones739c7af2020-08-04 19:06:03 +02006298:Architectures: x86
Tianyu Lan344c6c82019-08-22 22:30:20 +08006299
6300This capability indicates that KVM running on top of Hyper-V hypervisor
6301enables Direct TLB flush for its guests meaning that TLB flush
6302hypercalls are handled by Level 0 hypervisor (Hyper-V) bypassing KVM.
6303Due to the different ABI for hypercall parameters between Hyper-V and
6304KVM, enabling this capability effectively disables all hypercall
6305handling by KVM (as some KVM hypercall may be mistakenly treated as TLB
6306flush hypercalls by Hyper-V) so userspace should disable KVM identification
6307in CPUID and only exposes Hyper-V identification. In this case, guest
6308thinks it's running on Hyper-V and only use Hyper-V hypercalls.
Janosch Frank7de3f142020-01-31 05:02:02 -05006309
63108.22 KVM_CAP_S390_VCPU_RESETS
Andrew Jones739c7af2020-08-04 19:06:03 +02006311-----------------------------
Janosch Frank7de3f142020-01-31 05:02:02 -05006312
Andrew Jones739c7af2020-08-04 19:06:03 +02006313:Architectures: s390
Janosch Frank7de3f142020-01-31 05:02:02 -05006314
6315This capability indicates that the KVM_S390_NORMAL_RESET and
6316KVM_S390_CLEAR_RESET ioctls are available.
Janosch Frank04ed89d2019-11-08 05:05:26 -05006317
63188.23 KVM_CAP_S390_PROTECTED
Andrew Jones739c7af2020-08-04 19:06:03 +02006319---------------------------
Janosch Frank04ed89d2019-11-08 05:05:26 -05006320
Andrew Jones739c7af2020-08-04 19:06:03 +02006321:Architectures: s390
Janosch Frank04ed89d2019-11-08 05:05:26 -05006322
6323This capability indicates that the Ultravisor has been initialized and
6324KVM can therefore start protected VMs.
6325This capability governs the KVM_S390_PV_COMMAND ioctl and the
6326KVM_MP_STATE_LOAD MP_STATE. KVM_SET_MP_STATE can fail for protected
6327guests when the state change is invalid.
Andrew Jones004a0122020-08-04 19:06:04 +02006328
63298.24 KVM_CAP_STEAL_TIME
6330-----------------------
6331
6332:Architectures: arm64, x86
6333
6334This capability indicates that KVM supports steal time accounting.
6335When steal time accounting is supported it may be enabled with
6336architecture-specific interfaces. This capability and the architecture-
6337specific interfaces must be consistent, i.e. if one says the feature
6338is supported, than the other should as well and vice versa. For arm64
6339see Documentation/virt/kvm/devices/vcpu.rst "KVM_ARM_VCPU_PVTIME_CTRL".
6340For x86 see Documentation/virt/kvm/msr.rst "MSR_KVM_STEAL_TIME".
Collin Wallingf20d4e92020-06-25 11:07:23 -04006341
63428.25 KVM_CAP_S390_DIAG318
6343-------------------------
6344
6345:Architectures: s390
6346
6347This capability enables a guest to set information about its control program
6348(i.e. guest kernel type and version). The information is helpful during
6349system/firmware service events, providing additional data about the guest
6350environments running on the machine.
6351
6352The information is associated with the DIAGNOSE 0x318 instruction, which sets
6353an 8-byte value consisting of a one-byte Control Program Name Code (CPNC) and
6354a 7-byte Control Program Version Code (CPVC). The CPNC determines what
6355environment the control program is running in (e.g. Linux, z/VM...), and the
6356CPVC is used for information specific to OS (e.g. Linux version, Linux
6357distribution...)
6358
6359If this capability is available, then the CPNC and CPVC can be synchronized
6360between KVM and userspace via the sync regs mechanism (KVM_SYNC_DIAG318).
Alexander Graf1ae09952020-09-25 16:34:16 +02006361
63628.26 KVM_CAP_X86_USER_SPACE_MSR
6363-------------------------------
6364
6365:Architectures: x86
6366
6367This capability indicates that KVM supports deflection of MSR reads and
6368writes to user space. It can be enabled on a VM level. If enabled, MSR
6369accesses that would usually trigger a #GP by KVM into the guest will
6370instead get bounced to user space through the KVM_EXIT_X86_RDMSR and
6371KVM_EXIT_X86_WRMSR exit notifications.
Alexander Graf1a1552542020-09-25 16:34:21 +02006372
Peter Xu3d202672020-09-30 21:20:31 -040063738.27 KVM_X86_SET_MSR_FILTER
Alexander Graf1a1552542020-09-25 16:34:21 +02006374---------------------------
6375
6376:Architectures: x86
6377
6378This capability indicates that KVM supports that accesses to user defined MSRs
6379may be rejected. With this capability exposed, KVM exports new VM ioctl
6380KVM_X86_SET_MSR_FILTER which user space can call to specify bitmaps of MSR
6381ranges that KVM should reject access to.
6382
6383In combination with KVM_CAP_X86_USER_SPACE_MSR, this allows user space to
6384trap and emulate MSRs that are outside of the scope of KVM as well as
6385limit the attack surface on KVM's MSR emulation code.
Oliver Upton66570e92020-08-18 15:24:28 +00006386
Peter Xu177158e2020-10-23 14:33:46 -040063878.28 KVM_CAP_ENFORCE_PV_CPUID
Oliver Upton66570e92020-08-18 15:24:28 +00006388-----------------------------
6389
6390Architectures: x86
6391
6392When enabled, KVM will disable paravirtual features provided to the
6393guest according to the bits in the KVM_CPUID_FEATURES CPUID leaf
6394(0x40000001). Otherwise, a guest may use the paravirtual features
6395regardless of what has actually been exposed through the CPUID leaf.