blob: cd8a585568045e6be2329590f38cd27a17c6986c [file] [log] [blame]
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001.. SPDX-License-Identifier: GPL-2.0
2
3===================================================================
Avi Kivity9c1b96e2009-06-09 12:37:58 +03004The Definitive KVM (Kernel-based Virtual Machine) API Documentation
5===================================================================
6
71. General description
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01008======================
Avi Kivity9c1b96e2009-06-09 12:37:58 +03009
10The kvm API is a set of ioctls that are issued to control various aspects
Wainer dos Santos Moschetta80b10aa2019-11-29 13:17:30 -050011of a virtual machine. The ioctls belong to the following classes:
Avi Kivity9c1b96e2009-06-09 12:37:58 +030012
13 - System ioctls: These query and set global attributes which affect the
14 whole kvm subsystem. In addition a system ioctl is used to create
Sean Christopherson5e124902019-02-15 12:48:38 -080015 virtual machines.
Avi Kivity9c1b96e2009-06-09 12:37:58 +030016
17 - VM ioctls: These query and set attributes that affect an entire virtual
18 machine, for example memory layout. In addition a VM ioctl is used to
Sean Christophersonddba9182019-02-15 12:48:39 -080019 create virtual cpus (vcpus) and devices.
Avi Kivity9c1b96e2009-06-09 12:37:58 +030020
Sean Christopherson5e124902019-02-15 12:48:38 -080021 VM ioctls must be issued from the same process (address space) that was
22 used to create the VM.
Avi Kivity9c1b96e2009-06-09 12:37:58 +030023
24 - vcpu ioctls: These query and set attributes that control the operation
25 of a single virtual cpu.
26
Sean Christopherson5e124902019-02-15 12:48:38 -080027 vcpu ioctls should be issued from the same thread that was used to create
28 the vcpu, except for asynchronous vcpu ioctl that are marked as such in
29 the documentation. Otherwise, the first ioctl after switching threads
30 could see a performance impact.
Avi Kivity9c1b96e2009-06-09 12:37:58 +030031
Sean Christophersonddba9182019-02-15 12:48:39 -080032 - device ioctls: These query and set attributes that control the operation
33 of a single device.
34
35 device ioctls must be issued from the same process (address space) that
36 was used to create the VM.
Jan Kiszka414fa982012-04-24 16:40:15 +020037
Wu Fengguang2044892d2009-12-24 09:04:16 +0800382. File descriptors
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +010039===================
Avi Kivity9c1b96e2009-06-09 12:37:58 +030040
41The kvm API is centered around file descriptors. An initial
42open("/dev/kvm") obtains a handle to the kvm subsystem; this handle
43can be used to issue system ioctls. A KVM_CREATE_VM ioctl on this
Wu Fengguang2044892d2009-12-24 09:04:16 +080044handle will create a VM file descriptor which can be used to issue VM
Sean Christophersonddba9182019-02-15 12:48:39 -080045ioctls. A KVM_CREATE_VCPU or KVM_CREATE_DEVICE ioctl on a VM fd will
46create a virtual cpu or device and return a file descriptor pointing to
47the new resource. Finally, ioctls on a vcpu or device fd can be used
48to control the vcpu or device. For vcpus, this includes the important
49task of actually running guest code.
Avi Kivity9c1b96e2009-06-09 12:37:58 +030050
51In general file descriptors can be migrated among processes by means
52of fork() and the SCM_RIGHTS facility of unix domain socket. These
53kinds of tricks are explicitly not supported by kvm. While they will
54not cause harm to the host, their actual behavior is not guaranteed by
Sean Christopherson5e124902019-02-15 12:48:38 -080055the API. See "General description" for details on the ioctl usage
56model that is supported by KVM.
Jan Kiszka414fa982012-04-24 16:40:15 +020057
Sean Christophersoneca6be52019-02-15 12:48:40 -080058It is important to note that althought VM ioctls may only be issued from
59the process that created the VM, a VM's lifecycle is associated with its
60file descriptor, not its creator (process). In other words, the VM and
61its resources, *including the associated address space*, are not freed
62until the last reference to the VM's file descriptor has been released.
63For example, if fork() is issued after ioctl(KVM_CREATE_VM), the VM will
64not be freed until both the parent (original) process and its child have
65put their references to the VM's file descriptor.
66
67Because a VM's resources are not freed until the last reference to its
Randy Dunlap3747c5d2020-07-03 14:29:06 -070068file descriptor is released, creating additional references to a VM
Sean Christophersoneca6be52019-02-15 12:48:40 -080069via fork(), dup(), etc... without careful consideration is strongly
70discouraged and may have unwanted side effects, e.g. memory allocated
71by and on behalf of the VM's process may not be freed/unaccounted when
72the VM is shut down.
73
74
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300753. Extensions
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +010076=============
Avi Kivity9c1b96e2009-06-09 12:37:58 +030077
78As of Linux 2.6.22, the KVM ABI has been stabilized: no backward
79incompatible change are allowed. However, there is an extension
80facility that allows backward-compatible extensions to the API to be
81queried and used.
82
Masanari Iidac9f3f2d2013-07-18 01:29:12 +090083The extension mechanism is not based on the Linux version number.
Avi Kivity9c1b96e2009-06-09 12:37:58 +030084Instead, kvm defines extension identifiers and a facility to query
85whether a particular extension identifier is available. If it is, a
86set of ioctls is available for application use.
87
Jan Kiszka414fa982012-04-24 16:40:15 +020088
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300894. API description
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +010090==================
Avi Kivity9c1b96e2009-06-09 12:37:58 +030091
92This section describes ioctls that can be used to control kvm guests.
93For each ioctl, the following information is provided along with a
94description:
95
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +010096 Capability:
97 which KVM extension provides this ioctl. Can be 'basic',
Avi Kivity9c1b96e2009-06-09 12:37:58 +030098 which means that is will be provided by any kernel that supports
Michael S. Tsirkin7f05db62014-10-12 11:34:00 +030099 API version 12 (see section 4.1), a KVM_CAP_xyz constant, which
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300100 means availability needs to be checked with KVM_CHECK_EXTENSION
Michael S. Tsirkin7f05db62014-10-12 11:34:00 +0300101 (see section 4.4), or 'none' which means that while not all kernels
102 support this ioctl, there's no capability bit to check its
103 availability: for kernels that don't support the ioctl,
104 the ioctl returns -ENOTTY.
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300105
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100106 Architectures:
107 which instruction set architectures provide this ioctl.
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300108 x86 includes both i386 and x86_64.
109
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100110 Type:
111 system, vm, or vcpu.
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300112
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100113 Parameters:
114 what parameters are accepted by the ioctl.
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300115
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100116 Returns:
117 the return value. General error numbers (EBADF, ENOMEM, EINVAL)
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300118 are not detailed, but errors with specific meanings are.
119
Jan Kiszka414fa982012-04-24 16:40:15 +0200120
Avi Kivity9c1b96e2009-06-09 12:37:58 +03001214.1 KVM_GET_API_VERSION
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100122-----------------------
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300123
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100124:Capability: basic
125:Architectures: all
126:Type: system ioctl
127:Parameters: none
128:Returns: the constant KVM_API_VERSION (=12)
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300129
130This identifies the API version as the stable kvm API. It is not
131expected that this number will change. However, Linux 2.6.20 and
1322.6.21 report earlier versions; these are not documented and not
133supported. Applications should refuse to run if KVM_GET_API_VERSION
134returns a value other than 12. If this check passes, all ioctls
135described as 'basic' will be available.
136
Jan Kiszka414fa982012-04-24 16:40:15 +0200137
Avi Kivity9c1b96e2009-06-09 12:37:58 +03001384.2 KVM_CREATE_VM
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100139-----------------
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300140
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100141:Capability: basic
142:Architectures: all
143:Type: system ioctl
144:Parameters: machine type identifier (KVM_VM_*)
145:Returns: a VM fd that can be used to control the new virtual machine.
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300146
Jann Hornbcb85c82017-04-24 11:16:49 +0200147The new VM has no virtual cpus and no memory.
James Hogana8a3c422017-03-14 10:15:19 +0000148You probably want to use 0 as machine type.
Carsten Ottee08b9632012-01-04 10:25:20 +0100149
150In order to create user controlled virtual machines on S390, check
151KVM_CAP_S390_UCONTROL and use the flag KVM_VM_S390_UCONTROL as
152privileged user (CAP_SYS_ADMIN).
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300153
James Hogana8a3c422017-03-14 10:15:19 +0000154To use hardware assisted virtualization on MIPS (VZ ASE) rather than
155the default trap & emulate implementation (which changes the virtual
156memory layout to fit in user mode), check KVM_CAP_MIPS_VZ and use the
157flag KVM_VM_MIPS_VZ.
158
Jan Kiszka414fa982012-04-24 16:40:15 +0200159
Suzuki K Poulose233a7cb2018-09-26 17:32:54 +0100160On arm64, the physical address size for a VM (IPA Size limit) is limited
161to 40bits by default. The limit can be configured if the host supports the
162extension KVM_CAP_ARM_VM_IPA_SIZE. When supported, use
163KVM_VM_TYPE_ARM_IPA_SIZE(IPA_Bits) to set the size in the machine type
164identifier, where IPA_Bits is the maximum width of any physical
165address used by the VM. The IPA_Bits is encoded in bits[7-0] of the
166machine type identifier.
167
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100168e.g, to configure a guest to use 48bit physical address size::
Suzuki K Poulose233a7cb2018-09-26 17:32:54 +0100169
170 vm_fd = ioctl(dev_fd, KVM_CREATE_VM, KVM_VM_TYPE_ARM_IPA_SIZE(48));
171
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100172The requested size (IPA_Bits) must be:
Suzuki K Poulose233a7cb2018-09-26 17:32:54 +0100173
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100174 == =========================================================
175 0 Implies default size, 40bits (for backward compatibility)
176 N Implies N bits, where N is a positive integer such that,
Suzuki K Poulose233a7cb2018-09-26 17:32:54 +0100177 32 <= N <= Host_IPA_Limit
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100178 == =========================================================
Suzuki K Poulose233a7cb2018-09-26 17:32:54 +0100179
180Host_IPA_Limit is the maximum possible value for IPA_Bits on the host and
181is dependent on the CPU capability and the kernel configuration. The limit can
182be retrieved using KVM_CAP_ARM_VM_IPA_SIZE of the KVM_CHECK_EXTENSION
183ioctl() at run-time.
184
Marc Zyngierada88172021-03-11 10:00:15 +0000185Creation of the VM will fail if the requested IPA size (whether it is
186implicit or explicit) is unsupported on the host.
187
Suzuki K Poulose233a7cb2018-09-26 17:32:54 +0100188Please note that configuring the IPA size does not affect the capability
189exposed by the guest CPUs in ID_AA64MMFR0_EL1[PARange]. It only affects
190size of the address translated by the stage2 level (guest physical to
191host physical address translations).
192
193
Tom Lendacky801e4592018-02-21 13:39:51 -06001944.3 KVM_GET_MSR_INDEX_LIST, KVM_GET_MSR_FEATURE_INDEX_LIST
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100195----------------------------------------------------------
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300196
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100197:Capability: basic, KVM_CAP_GET_MSR_FEATURES for KVM_GET_MSR_FEATURE_INDEX_LIST
198:Architectures: x86
199:Type: system ioctl
200:Parameters: struct kvm_msr_list (in/out)
201:Returns: 0 on success; -1 on error
202
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300203Errors:
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300204
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100205 ====== ============================================================
206 EFAULT the msr index list cannot be read from or written to
207 E2BIG the msr index list is to be to fit in the array specified by
208 the user.
209 ====== ============================================================
210
211::
212
213 struct kvm_msr_list {
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300214 __u32 nmsrs; /* number of msrs in entries */
215 __u32 indices[0];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100216 };
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300217
Tom Lendacky801e4592018-02-21 13:39:51 -0600218The user fills in the size of the indices array in nmsrs, and in return
219kvm adjusts nmsrs to reflect the actual number of msrs and fills in the
220indices array with their numbers.
221
222KVM_GET_MSR_INDEX_LIST returns the guest msrs that are supported. The list
223varies by kvm version and host processor, but does not change otherwise.
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300224
Avi Kivity2e2602c2010-07-07 14:09:39 +0300225Note: if kvm indicates supports MCE (KVM_CAP_MCE), then the MCE bank MSRs are
226not returned in the MSR list, as different vcpus can have a different number
227of banks, as set via the KVM_X86_SETUP_MCE ioctl.
228
Tom Lendacky801e4592018-02-21 13:39:51 -0600229KVM_GET_MSR_FEATURE_INDEX_LIST returns the list of MSRs that can be passed
230to the KVM_GET_MSRS system ioctl. This lets userspace probe host capabilities
231and processor features that are exposed via MSRs (e.g., VMX capabilities).
232This list also varies by kvm version and host processor, but does not change
233otherwise.
234
Jan Kiszka414fa982012-04-24 16:40:15 +0200235
Avi Kivity9c1b96e2009-06-09 12:37:58 +03002364.4 KVM_CHECK_EXTENSION
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100237-----------------------
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300238
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100239:Capability: basic, KVM_CAP_CHECK_EXTENSION_VM for vm ioctl
240:Architectures: all
241:Type: system ioctl, vm ioctl
242:Parameters: extension identifier (KVM_CAP_*)
243:Returns: 0 if unsupported; 1 (or some other positive integer) if supported
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300244
245The API allows the application to query about extensions to the core
246kvm API. Userspace passes an extension identifier (an integer) and
247receives an integer that describes the extension availability.
248Generally 0 means no and 1 means yes, but some extensions may report
249additional information in the integer return value.
250
Alexander Graf92b591a2014-07-14 18:33:08 +0200251Based on their initialization different VMs may have different capabilities.
252It is thus encouraged to use the vm ioctl to query for capabilities (available
253with KVM_CAP_CHECK_EXTENSION_VM on the vm fd)
Jan Kiszka414fa982012-04-24 16:40:15 +0200254
Avi Kivity9c1b96e2009-06-09 12:37:58 +03002554.5 KVM_GET_VCPU_MMAP_SIZE
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100256--------------------------
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300257
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100258:Capability: basic
259:Architectures: all
260:Type: system ioctl
261:Parameters: none
262:Returns: size of vcpu mmap area, in bytes
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300263
264The KVM_RUN ioctl (cf.) communicates with userspace via a shared
265memory region. This ioctl returns the size of that region. See the
266KVM_RUN documentation for details.
267
Jan Kiszka414fa982012-04-24 16:40:15 +0200268
Avi Kivity9c1b96e2009-06-09 12:37:58 +03002694.6 KVM_SET_MEMORY_REGION
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100270-------------------------
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300271
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100272:Capability: basic
273:Architectures: all
274:Type: vm ioctl
275:Parameters: struct kvm_memory_region (in)
276:Returns: 0 on success, -1 on error
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300277
Avi Kivityb74a07b2010-06-21 11:48:05 +0300278This ioctl is obsolete and has been removed.
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300279
Jan Kiszka414fa982012-04-24 16:40:15 +0200280
Paul Bolle68ba6972011-02-15 00:05:59 +01002814.7 KVM_CREATE_VCPU
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100282-------------------
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300283
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100284:Capability: basic
285:Architectures: all
286:Type: vm ioctl
287:Parameters: vcpu id (apic id on x86)
288:Returns: vcpu fd on success, -1 on error
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300289
Greg Kurz0b1b1df2016-05-09 18:13:37 +0200290This API adds a vcpu to a virtual machine. No more than max_vcpus may be added.
291The vcpu id is an integer in the range [0, max_vcpu_id).
Sasha Levin8c3ba332011-07-18 17:17:15 +0300292
293The recommended max_vcpus value can be retrieved using the KVM_CAP_NR_VCPUS of
294the KVM_CHECK_EXTENSION ioctl() at run-time.
295The maximum possible value for max_vcpus can be retrieved using the
296KVM_CAP_MAX_VCPUS of the KVM_CHECK_EXTENSION ioctl() at run-time.
297
Pekka Enberg76d25402011-05-09 22:48:54 +0300298If the KVM_CAP_NR_VCPUS does not exist, you should assume that max_vcpus is 4
299cpus max.
Sasha Levin8c3ba332011-07-18 17:17:15 +0300300If the KVM_CAP_MAX_VCPUS does not exist, you should assume that max_vcpus is
301same as the value returned from KVM_CAP_NR_VCPUS.
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300302
Greg Kurz0b1b1df2016-05-09 18:13:37 +0200303The maximum possible value for max_vcpu_id can be retrieved using the
304KVM_CAP_MAX_VCPU_ID of the KVM_CHECK_EXTENSION ioctl() at run-time.
305
306If the KVM_CAP_MAX_VCPU_ID does not exist, you should assume that max_vcpu_id
307is the same as the value returned from KVM_CAP_MAX_VCPUS.
308
Paul Mackerras371fefd2011-06-29 00:23:08 +0000309On powerpc using book3s_hv mode, the vcpus are mapped onto virtual
310threads in one or more virtual CPU cores. (This is because the
311hardware requires all the hardware threads in a CPU core to be in the
312same partition.) The KVM_CAP_PPC_SMT capability indicates the number
313of vcpus per virtual core (vcore). The vcore id is obtained by
314dividing the vcpu id by the number of vcpus per vcore. The vcpus in a
315given vcore will always be in the same physical core as each other
316(though that might be a different physical core from time to time).
317Userspace can control the threading (SMT) mode of the guest by its
318allocation of vcpu ids. For example, if userspace wants
319single-threaded guest vcpus, it should make all vcpu ids be a multiple
320of the number of vcpus per vcore.
321
Carsten Otte5b1c1492012-01-04 10:25:23 +0100322For virtual cpus that have been created with S390 user controlled virtual
323machines, the resulting vcpu fd can be memory mapped at page offset
324KVM_S390_SIE_PAGE_OFFSET in order to obtain a memory map of the virtual
325cpu's hardware control block.
326
Jan Kiszka414fa982012-04-24 16:40:15 +0200327
Paul Bolle68ba6972011-02-15 00:05:59 +01003284.8 KVM_GET_DIRTY_LOG (vm ioctl)
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100329--------------------------------
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300330
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100331:Capability: basic
332:Architectures: all
333:Type: vm ioctl
334:Parameters: struct kvm_dirty_log (in/out)
335:Returns: 0 on success, -1 on error
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300336
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100337::
338
339 /* for KVM_GET_DIRTY_LOG */
340 struct kvm_dirty_log {
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300341 __u32 slot;
342 __u32 padding;
343 union {
344 void __user *dirty_bitmap; /* one bit per page */
345 __u64 padding;
346 };
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100347 };
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300348
349Given a memory slot, return a bitmap containing any pages dirtied
350since the last call to this ioctl. Bit 0 is the first page in the
351memory slot. Ensure the entire structure is cleared to avoid padding
352issues.
353
Paolo Bonzinif481b062015-05-17 17:30:37 +0200354If KVM_CAP_MULTI_ADDRESS_SPACE is available, bits 16-31 specifies
355the address space for which you want to return the dirty bitmap.
356They must be less than the value that KVM_CHECK_EXTENSION returns for
357the KVM_CAP_MULTI_ADDRESS_SPACE capability.
358
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +0200359The bits in the dirty bitmap are cleared before the ioctl returns, unless
Peter Xud7547c52019-05-08 17:15:47 +0800360KVM_CAP_MANUAL_DIRTY_LOG_PROTECT2 is enabled. For more information,
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +0200361see the description of the capability.
Jan Kiszka414fa982012-04-24 16:40:15 +0200362
Paul Bolle68ba6972011-02-15 00:05:59 +01003634.9 KVM_SET_MEMORY_ALIAS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100364------------------------
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300365
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100366:Capability: basic
367:Architectures: x86
368:Type: vm ioctl
369:Parameters: struct kvm_memory_alias (in)
370:Returns: 0 (success), -1 (error)
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300371
Avi Kivitya1f4d3952010-06-21 11:44:20 +0300372This ioctl is obsolete and has been removed.
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300373
Jan Kiszka414fa982012-04-24 16:40:15 +0200374
Paul Bolle68ba6972011-02-15 00:05:59 +01003754.10 KVM_RUN
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100376------------
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300377
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100378:Capability: basic
379:Architectures: all
380:Type: vcpu ioctl
381:Parameters: none
382:Returns: 0 on success, -1 on error
383
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300384Errors:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100385
386 ===== =============================
387 EINTR an unmasked signal is pending
388 ===== =============================
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300389
390This ioctl is used to run a guest virtual cpu. While there are no
391explicit parameters, there is an implicit parameter block that can be
392obtained by mmap()ing the vcpu fd at offset 0, with the size given by
393KVM_GET_VCPU_MMAP_SIZE. The parameter block is formatted as a 'struct
394kvm_run' (see below).
395
Jan Kiszka414fa982012-04-24 16:40:15 +0200396
Paul Bolle68ba6972011-02-15 00:05:59 +01003974.11 KVM_GET_REGS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100398-----------------
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300399
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100400:Capability: basic
401:Architectures: all except ARM, arm64
402:Type: vcpu ioctl
403:Parameters: struct kvm_regs (out)
404:Returns: 0 on success, -1 on error
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300405
406Reads the general purpose registers from the vcpu.
407
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100408::
409
410 /* x86 */
411 struct kvm_regs {
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300412 /* out (KVM_GET_REGS) / in (KVM_SET_REGS) */
413 __u64 rax, rbx, rcx, rdx;
414 __u64 rsi, rdi, rsp, rbp;
415 __u64 r8, r9, r10, r11;
416 __u64 r12, r13, r14, r15;
417 __u64 rip, rflags;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100418 };
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300419
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100420 /* mips */
421 struct kvm_regs {
James Hoganc2d2c212014-07-04 15:11:35 +0100422 /* out (KVM_GET_REGS) / in (KVM_SET_REGS) */
423 __u64 gpr[32];
424 __u64 hi;
425 __u64 lo;
426 __u64 pc;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100427 };
James Hoganc2d2c212014-07-04 15:11:35 +0100428
Jan Kiszka414fa982012-04-24 16:40:15 +0200429
Paul Bolle68ba6972011-02-15 00:05:59 +01004304.12 KVM_SET_REGS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100431-----------------
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300432
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100433:Capability: basic
434:Architectures: all except ARM, arm64
435:Type: vcpu ioctl
436:Parameters: struct kvm_regs (in)
437:Returns: 0 on success, -1 on error
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300438
439Writes the general purpose registers into the vcpu.
440
441See KVM_GET_REGS for the data structure.
442
Jan Kiszka414fa982012-04-24 16:40:15 +0200443
Paul Bolle68ba6972011-02-15 00:05:59 +01004444.13 KVM_GET_SREGS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100445------------------
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300446
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100447:Capability: basic
448:Architectures: x86, ppc
449:Type: vcpu ioctl
450:Parameters: struct kvm_sregs (out)
451:Returns: 0 on success, -1 on error
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300452
453Reads special registers from the vcpu.
454
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100455::
456
457 /* x86 */
458 struct kvm_sregs {
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300459 struct kvm_segment cs, ds, es, fs, gs, ss;
460 struct kvm_segment tr, ldt;
461 struct kvm_dtable gdt, idt;
462 __u64 cr0, cr2, cr3, cr4, cr8;
463 __u64 efer;
464 __u64 apic_base;
465 __u64 interrupt_bitmap[(KVM_NR_INTERRUPTS + 63) / 64];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100466 };
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300467
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100468 /* ppc -- see arch/powerpc/include/uapi/asm/kvm.h */
Scott Wood5ce941e2011-04-27 17:24:21 -0500469
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300470interrupt_bitmap is a bitmap of pending external interrupts. At most
471one bit may be set. This interrupt has been acknowledged by the APIC
472but not yet injected into the cpu core.
473
Jan Kiszka414fa982012-04-24 16:40:15 +0200474
Paul Bolle68ba6972011-02-15 00:05:59 +01004754.14 KVM_SET_SREGS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100476------------------
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300477
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100478:Capability: basic
479:Architectures: x86, ppc
480:Type: vcpu ioctl
481:Parameters: struct kvm_sregs (in)
482:Returns: 0 on success, -1 on error
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300483
484Writes special registers into the vcpu. See KVM_GET_SREGS for the
485data structures.
486
Jan Kiszka414fa982012-04-24 16:40:15 +0200487
Paul Bolle68ba6972011-02-15 00:05:59 +01004884.15 KVM_TRANSLATE
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100489------------------
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300490
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100491:Capability: basic
492:Architectures: x86
493:Type: vcpu ioctl
494:Parameters: struct kvm_translation (in/out)
495:Returns: 0 on success, -1 on error
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300496
497Translates a virtual address according to the vcpu's current address
498translation mode.
499
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100500::
501
502 struct kvm_translation {
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300503 /* in */
504 __u64 linear_address;
505
506 /* out */
507 __u64 physical_address;
508 __u8 valid;
509 __u8 writeable;
510 __u8 usermode;
511 __u8 pad[5];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100512 };
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300513
Jan Kiszka414fa982012-04-24 16:40:15 +0200514
Paul Bolle68ba6972011-02-15 00:05:59 +01005154.16 KVM_INTERRUPT
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100516------------------
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300517
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100518:Capability: basic
519:Architectures: x86, ppc, mips
520:Type: vcpu ioctl
521:Parameters: struct kvm_interrupt (in)
522:Returns: 0 on success, negative on failure.
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300523
Steve Rutherford1c1a9ce2015-07-30 11:27:16 +0200524Queues a hardware interrupt vector to be injected.
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300525
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100526::
527
528 /* for KVM_INTERRUPT */
529 struct kvm_interrupt {
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300530 /* in */
531 __u32 irq;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100532 };
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300533
Alexander Graf6f7a2bd2010-08-31 02:03:32 +0200534X86:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100535^^^^
Alexander Graf6f7a2bd2010-08-31 02:03:32 +0200536
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100537:Returns:
538
539 ========= ===================================
540 0 on success,
541 -EEXIST if an interrupt is already enqueued
Randy Dunlap3747c5d2020-07-03 14:29:06 -0700542 -EINVAL the irq number is invalid
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100543 -ENXIO if the PIC is in the kernel
544 -EFAULT if the pointer is invalid
545 ========= ===================================
Steve Rutherford1c1a9ce2015-07-30 11:27:16 +0200546
547Note 'irq' is an interrupt vector, not an interrupt pin or line. This
548ioctl is useful if the in-kernel PIC is not used.
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300549
Alexander Graf6f7a2bd2010-08-31 02:03:32 +0200550PPC:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100551^^^^
Alexander Graf6f7a2bd2010-08-31 02:03:32 +0200552
553Queues an external interrupt to be injected. This ioctl is overleaded
554with 3 different irq values:
555
556a) KVM_INTERRUPT_SET
557
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100558 This injects an edge type external interrupt into the guest once it's ready
559 to receive interrupts. When injected, the interrupt is done.
Alexander Graf6f7a2bd2010-08-31 02:03:32 +0200560
561b) KVM_INTERRUPT_UNSET
562
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100563 This unsets any pending interrupt.
Alexander Graf6f7a2bd2010-08-31 02:03:32 +0200564
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100565 Only available with KVM_CAP_PPC_UNSET_IRQ.
Alexander Graf6f7a2bd2010-08-31 02:03:32 +0200566
567c) KVM_INTERRUPT_SET_LEVEL
568
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100569 This injects a level type external interrupt into the guest context. The
570 interrupt stays pending until a specific ioctl with KVM_INTERRUPT_UNSET
571 is triggered.
Alexander Graf6f7a2bd2010-08-31 02:03:32 +0200572
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100573 Only available with KVM_CAP_PPC_IRQ_LEVEL.
Alexander Graf6f7a2bd2010-08-31 02:03:32 +0200574
575Note that any value for 'irq' other than the ones stated above is invalid
576and incurs unexpected behavior.
577
Sean Christopherson5e124902019-02-15 12:48:38 -0800578This is an asynchronous vcpu ioctl and can be invoked from any thread.
579
James Hoganc2d2c212014-07-04 15:11:35 +0100580MIPS:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100581^^^^^
James Hoganc2d2c212014-07-04 15:11:35 +0100582
583Queues an external interrupt to be injected into the virtual CPU. A negative
584interrupt number dequeues the interrupt.
585
Sean Christopherson5e124902019-02-15 12:48:38 -0800586This is an asynchronous vcpu ioctl and can be invoked from any thread.
587
Jan Kiszka414fa982012-04-24 16:40:15 +0200588
Paul Bolle68ba6972011-02-15 00:05:59 +01005894.17 KVM_DEBUG_GUEST
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100590--------------------
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300591
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100592:Capability: basic
593:Architectures: none
594:Type: vcpu ioctl
595:Parameters: none)
596:Returns: -1 on error
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300597
598Support for this has been removed. Use KVM_SET_GUEST_DEBUG instead.
599
Jan Kiszka414fa982012-04-24 16:40:15 +0200600
Paul Bolle68ba6972011-02-15 00:05:59 +01006014.18 KVM_GET_MSRS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100602-----------------
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300603
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100604:Capability: basic (vcpu), KVM_CAP_GET_MSR_FEATURES (system)
605:Architectures: x86
606:Type: system ioctl, vcpu ioctl
607:Parameters: struct kvm_msrs (in/out)
608:Returns: number of msrs successfully returned;
609 -1 on error
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300610
Tom Lendacky801e4592018-02-21 13:39:51 -0600611When used as a system ioctl:
612Reads the values of MSR-based features that are available for the VM. This
613is similar to KVM_GET_SUPPORTED_CPUID, but it returns MSR indices and values.
614The list of msr-based features can be obtained using KVM_GET_MSR_FEATURE_INDEX_LIST
615in a system ioctl.
616
617When used as a vcpu ioctl:
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300618Reads model-specific registers from the vcpu. Supported msr indices can
Tom Lendacky801e4592018-02-21 13:39:51 -0600619be obtained using KVM_GET_MSR_INDEX_LIST in a system ioctl.
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300620
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100621::
622
623 struct kvm_msrs {
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300624 __u32 nmsrs; /* number of msrs in entries */
625 __u32 pad;
626
627 struct kvm_msr_entry entries[0];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100628 };
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300629
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100630 struct kvm_msr_entry {
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300631 __u32 index;
632 __u32 reserved;
633 __u64 data;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100634 };
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300635
636Application code should set the 'nmsrs' member (which indicates the
637size of the entries array) and the 'index' member of each array entry.
638kvm will fill in the 'data' member.
639
Jan Kiszka414fa982012-04-24 16:40:15 +0200640
Paul Bolle68ba6972011-02-15 00:05:59 +01006414.19 KVM_SET_MSRS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100642-----------------
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300643
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100644:Capability: basic
645:Architectures: x86
646:Type: vcpu ioctl
647:Parameters: struct kvm_msrs (in)
648:Returns: number of msrs successfully set (see below), -1 on error
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300649
650Writes model-specific registers to the vcpu. See KVM_GET_MSRS for the
651data structures.
652
653Application code should set the 'nmsrs' member (which indicates the
654size of the entries array), and the 'index' and 'data' members of each
655array entry.
656
Xiaoyao Lib274a292019-09-05 08:57:37 +0800657It tries to set the MSRs in array entries[] one by one. If setting an MSR
658fails, e.g., due to setting reserved bits, the MSR isn't supported/emulated
659by KVM, etc..., it stops processing the MSR list and returns the number of
660MSRs that have been set successfully.
661
Jan Kiszka414fa982012-04-24 16:40:15 +0200662
Paul Bolle68ba6972011-02-15 00:05:59 +01006634.20 KVM_SET_CPUID
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100664------------------
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300665
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100666:Capability: basic
667:Architectures: x86
668:Type: vcpu ioctl
669:Parameters: struct kvm_cpuid (in)
670:Returns: 0 on success, -1 on error
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300671
672Defines the vcpu responses to the cpuid instruction. Applications
673should use the KVM_SET_CPUID2 ioctl if available.
674
Xiaoyao Li18964092020-07-08 14:50:47 +0800675Note, when this IOCTL fails, KVM gives no guarantees that previous valid CPUID
676configuration (if there is) is not corrupted. Userspace can get a copy of the
677resulting CPUID configuration through KVM_GET_CPUID2 in case.
678
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100679::
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300680
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100681 struct kvm_cpuid_entry {
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300682 __u32 function;
683 __u32 eax;
684 __u32 ebx;
685 __u32 ecx;
686 __u32 edx;
687 __u32 padding;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100688 };
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300689
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100690 /* for KVM_SET_CPUID */
691 struct kvm_cpuid {
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300692 __u32 nent;
693 __u32 padding;
694 struct kvm_cpuid_entry entries[0];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100695 };
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300696
Jan Kiszka414fa982012-04-24 16:40:15 +0200697
Paul Bolle68ba6972011-02-15 00:05:59 +01006984.21 KVM_SET_SIGNAL_MASK
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100699------------------------
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300700
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100701:Capability: basic
702:Architectures: all
703:Type: vcpu ioctl
704:Parameters: struct kvm_signal_mask (in)
705:Returns: 0 on success, -1 on error
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300706
707Defines which signals are blocked during execution of KVM_RUN. This
708signal mask temporarily overrides the threads signal mask. Any
709unblocked signal received (except SIGKILL and SIGSTOP, which retain
710their traditional behaviour) will cause KVM_RUN to return with -EINTR.
711
712Note the signal will only be delivered if not blocked by the original
713signal mask.
714
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100715::
716
717 /* for KVM_SET_SIGNAL_MASK */
718 struct kvm_signal_mask {
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300719 __u32 len;
720 __u8 sigset[0];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100721 };
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300722
Jan Kiszka414fa982012-04-24 16:40:15 +0200723
Paul Bolle68ba6972011-02-15 00:05:59 +01007244.22 KVM_GET_FPU
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100725----------------
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300726
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100727:Capability: basic
728:Architectures: x86
729:Type: vcpu ioctl
730:Parameters: struct kvm_fpu (out)
731:Returns: 0 on success, -1 on error
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300732
733Reads the floating point state from the vcpu.
734
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100735::
736
737 /* for KVM_GET_FPU and KVM_SET_FPU */
738 struct kvm_fpu {
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300739 __u8 fpr[8][16];
740 __u16 fcw;
741 __u16 fsw;
742 __u8 ftwx; /* in fxsave format */
743 __u8 pad1;
744 __u16 last_opcode;
745 __u64 last_ip;
746 __u64 last_dp;
747 __u8 xmm[16][16];
748 __u32 mxcsr;
749 __u32 pad2;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100750 };
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300751
Jan Kiszka414fa982012-04-24 16:40:15 +0200752
Paul Bolle68ba6972011-02-15 00:05:59 +01007534.23 KVM_SET_FPU
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100754----------------
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300755
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100756:Capability: basic
757:Architectures: x86
758:Type: vcpu ioctl
759:Parameters: struct kvm_fpu (in)
760:Returns: 0 on success, -1 on error
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300761
762Writes the floating point state to the vcpu.
763
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100764::
765
766 /* for KVM_GET_FPU and KVM_SET_FPU */
767 struct kvm_fpu {
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300768 __u8 fpr[8][16];
769 __u16 fcw;
770 __u16 fsw;
771 __u8 ftwx; /* in fxsave format */
772 __u8 pad1;
773 __u16 last_opcode;
774 __u64 last_ip;
775 __u64 last_dp;
776 __u8 xmm[16][16];
777 __u32 mxcsr;
778 __u32 pad2;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100779 };
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300780
Jan Kiszka414fa982012-04-24 16:40:15 +0200781
Paul Bolle68ba6972011-02-15 00:05:59 +01007824.24 KVM_CREATE_IRQCHIP
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100783-----------------------
Avi Kivity5dadbfd2009-08-23 17:08:04 +0300784
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100785:Capability: KVM_CAP_IRQCHIP, KVM_CAP_S390_IRQCHIP (s390)
786:Architectures: x86, ARM, arm64, s390
787:Type: vm ioctl
788:Parameters: none
789:Returns: 0 on success, -1 on error
Avi Kivity5dadbfd2009-08-23 17:08:04 +0300790
Andre Przywaraac3d3732014-06-03 10:26:30 +0200791Creates an interrupt controller model in the kernel.
792On x86, creates a virtual ioapic, a virtual PIC (two PICs, nested), and sets up
793future vcpus to have a local APIC. IRQ routing for GSIs 0-15 is set to both
794PIC and IOAPIC; GSI 16-23 only go to the IOAPIC.
795On ARM/arm64, a GICv2 is created. Any other GIC versions require the usage of
796KVM_CREATE_DEVICE, which also supports creating a GICv2. Using
797KVM_CREATE_DEVICE is preferred over KVM_CREATE_IRQCHIP for GICv2.
798On s390, a dummy irq routing table is created.
Cornelia Huck84223592013-07-15 13:36:01 +0200799
800Note that on s390 the KVM_CAP_S390_IRQCHIP vm capability needs to be enabled
801before KVM_CREATE_IRQCHIP can be used.
Avi Kivity5dadbfd2009-08-23 17:08:04 +0300802
Jan Kiszka414fa982012-04-24 16:40:15 +0200803
Paul Bolle68ba6972011-02-15 00:05:59 +01008044.25 KVM_IRQ_LINE
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100805-----------------
Avi Kivity5dadbfd2009-08-23 17:08:04 +0300806
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100807:Capability: KVM_CAP_IRQCHIP
808:Architectures: x86, arm, arm64
809:Type: vm ioctl
810:Parameters: struct kvm_irq_level
811:Returns: 0 on success, -1 on error
Avi Kivity5dadbfd2009-08-23 17:08:04 +0300812
813Sets the level of a GSI input to the interrupt controller model in the kernel.
Christoffer Dall86ce8532013-01-20 18:28:08 -0500814On some architectures it is required that an interrupt controller model has
815been previously created with KVM_CREATE_IRQCHIP. Note that edge-triggered
816interrupts require the level to be set to 1 and then back to 0.
817
Gabriel L. Somlo100943c2014-02-27 23:06:17 -0500818On real hardware, interrupt pins can be active-low or active-high. This
819does not matter for the level field of struct kvm_irq_level: 1 always
820means active (asserted), 0 means inactive (deasserted).
821
822x86 allows the operating system to program the interrupt polarity
823(active-low/active-high) for level-triggered interrupts, and KVM used
824to consider the polarity. However, due to bitrot in the handling of
825active-low interrupts, the above convention is now valid on x86 too.
826This is signaled by KVM_CAP_X86_IOAPIC_POLARITY_IGNORED. Userspace
827should not present interrupts to the guest as active-low unless this
828capability is present (or unless it is not using the in-kernel irqchip,
829of course).
830
831
Marc Zyngier379e04c72013-04-02 17:46:31 +0100832ARM/arm64 can signal an interrupt either at the CPU level, or at the
833in-kernel irqchip (GIC), and for in-kernel irqchip can tell the GIC to
834use PPIs designated for specific cpus. The irq field is interpreted
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100835like this::
Christoffer Dall86ce8532013-01-20 18:28:08 -0500836
Marc Zyngier92f35b72019-08-18 14:09:47 +0100837  bits: | 31 ... 28 | 27 ... 24 | 23 ... 16 | 15 ... 0 |
838 field: | vcpu2_index | irq_type | vcpu_index | irq_id |
Christoffer Dall86ce8532013-01-20 18:28:08 -0500839
840The irq_type field has the following values:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100841
842- irq_type[0]:
843 out-of-kernel GIC: irq_id 0 is IRQ, irq_id 1 is FIQ
844- irq_type[1]:
845 in-kernel GIC: SPI, irq_id between 32 and 1019 (incl.)
Christoffer Dall86ce8532013-01-20 18:28:08 -0500846 (the vcpu_index field is ignored)
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100847- irq_type[2]:
848 in-kernel GIC: PPI, irq_id between 16 and 31 (incl.)
Christoffer Dall86ce8532013-01-20 18:28:08 -0500849
850(The irq_id field thus corresponds nicely to the IRQ ID in the ARM GIC specs)
851
Gabriel L. Somlo100943c2014-02-27 23:06:17 -0500852In both cases, level is used to assert/deassert the line.
Avi Kivity5dadbfd2009-08-23 17:08:04 +0300853
Marc Zyngier92f35b72019-08-18 14:09:47 +0100854When KVM_CAP_ARM_IRQ_LINE_LAYOUT_2 is supported, the target vcpu is
855identified as (256 * vcpu2_index + vcpu_index). Otherwise, vcpu2_index
856must be zero.
857
858Note that on arm/arm64, the KVM_CAP_IRQCHIP capability only conditions
859injection of interrupts for the in-kernel irqchip. KVM_IRQ_LINE can always
860be used for a userspace interrupt controller.
861
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100862::
863
864 struct kvm_irq_level {
Avi Kivity5dadbfd2009-08-23 17:08:04 +0300865 union {
866 __u32 irq; /* GSI */
867 __s32 status; /* not used for KVM_IRQ_LEVEL */
868 };
869 __u32 level; /* 0 or 1 */
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100870 };
Avi Kivity5dadbfd2009-08-23 17:08:04 +0300871
Jan Kiszka414fa982012-04-24 16:40:15 +0200872
Paul Bolle68ba6972011-02-15 00:05:59 +01008734.26 KVM_GET_IRQCHIP
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100874--------------------
Avi Kivity5dadbfd2009-08-23 17:08:04 +0300875
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100876:Capability: KVM_CAP_IRQCHIP
877:Architectures: x86
878:Type: vm ioctl
879:Parameters: struct kvm_irqchip (in/out)
880:Returns: 0 on success, -1 on error
Avi Kivity5dadbfd2009-08-23 17:08:04 +0300881
882Reads the state of a kernel interrupt controller created with
883KVM_CREATE_IRQCHIP into a buffer provided by the caller.
884
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100885::
886
887 struct kvm_irqchip {
Avi Kivity5dadbfd2009-08-23 17:08:04 +0300888 __u32 chip_id; /* 0 = PIC1, 1 = PIC2, 2 = IOAPIC */
889 __u32 pad;
890 union {
891 char dummy[512]; /* reserving space */
892 struct kvm_pic_state pic;
893 struct kvm_ioapic_state ioapic;
894 } chip;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100895 };
Avi Kivity5dadbfd2009-08-23 17:08:04 +0300896
Jan Kiszka414fa982012-04-24 16:40:15 +0200897
Paul Bolle68ba6972011-02-15 00:05:59 +01008984.27 KVM_SET_IRQCHIP
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100899--------------------
Avi Kivity5dadbfd2009-08-23 17:08:04 +0300900
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100901:Capability: KVM_CAP_IRQCHIP
902:Architectures: x86
903:Type: vm ioctl
904:Parameters: struct kvm_irqchip (in)
905:Returns: 0 on success, -1 on error
Avi Kivity5dadbfd2009-08-23 17:08:04 +0300906
907Sets the state of a kernel interrupt controller created with
908KVM_CREATE_IRQCHIP from a buffer provided by the caller.
909
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100910::
911
912 struct kvm_irqchip {
Avi Kivity5dadbfd2009-08-23 17:08:04 +0300913 __u32 chip_id; /* 0 = PIC1, 1 = PIC2, 2 = IOAPIC */
914 __u32 pad;
915 union {
916 char dummy[512]; /* reserving space */
917 struct kvm_pic_state pic;
918 struct kvm_ioapic_state ioapic;
919 } chip;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100920 };
Avi Kivity5dadbfd2009-08-23 17:08:04 +0300921
Jan Kiszka414fa982012-04-24 16:40:15 +0200922
Paul Bolle68ba6972011-02-15 00:05:59 +01009234.28 KVM_XEN_HVM_CONFIG
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100924-----------------------
Ed Swierkffde22a2009-10-15 15:21:43 -0700925
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100926:Capability: KVM_CAP_XEN_HVM
927:Architectures: x86
928:Type: vm ioctl
929:Parameters: struct kvm_xen_hvm_config (in)
930:Returns: 0 on success, -1 on error
Ed Swierkffde22a2009-10-15 15:21:43 -0700931
932Sets the MSR that the Xen HVM guest uses to initialize its hypercall
933page, and provides the starting address and size of the hypercall
934blobs in userspace. When the guest writes the MSR, kvm copies one
935page of a blob (32- or 64-bit, depending on the vcpu mode) to guest
936memory.
937
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100938::
939
940 struct kvm_xen_hvm_config {
Ed Swierkffde22a2009-10-15 15:21:43 -0700941 __u32 flags;
942 __u32 msr;
943 __u64 blob_addr_32;
944 __u64 blob_addr_64;
945 __u8 blob_size_32;
946 __u8 blob_size_64;
947 __u8 pad2[30];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100948 };
Ed Swierkffde22a2009-10-15 15:21:43 -0700949
Jan Kiszka414fa982012-04-24 16:40:15 +0200950
Paul Bolle68ba6972011-02-15 00:05:59 +01009514.29 KVM_GET_CLOCK
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100952------------------
Glauber Costaafbcf7a2009-10-16 15:28:36 -0400953
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100954:Capability: KVM_CAP_ADJUST_CLOCK
955:Architectures: x86
956:Type: vm ioctl
957:Parameters: struct kvm_clock_data (out)
958:Returns: 0 on success, -1 on error
Glauber Costaafbcf7a2009-10-16 15:28:36 -0400959
960Gets the current timestamp of kvmclock as seen by the current guest. In
961conjunction with KVM_SET_CLOCK, it is used to ensure monotonicity on scenarios
962such as migration.
963
Paolo Bonzinie3fd9a92016-11-09 17:48:15 +0100964When KVM_CAP_ADJUST_CLOCK is passed to KVM_CHECK_EXTENSION, it returns the
965set of bits that KVM can return in struct kvm_clock_data's flag member.
966
967The only flag defined now is KVM_CLOCK_TSC_STABLE. If set, the returned
968value is the exact kvmclock value seen by all VCPUs at the instant
969when KVM_GET_CLOCK was called. If clear, the returned value is simply
970CLOCK_MONOTONIC plus a constant offset; the offset can be modified
971with KVM_SET_CLOCK. KVM will try to make all VCPUs follow this clock,
972but the exact value read by each VCPU could differ, because the host
973TSC is not stable.
974
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100975::
976
977 struct kvm_clock_data {
Glauber Costaafbcf7a2009-10-16 15:28:36 -0400978 __u64 clock; /* kvmclock current value */
979 __u32 flags;
980 __u32 pad[9];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100981 };
Glauber Costaafbcf7a2009-10-16 15:28:36 -0400982
Jan Kiszka414fa982012-04-24 16:40:15 +0200983
Paul Bolle68ba6972011-02-15 00:05:59 +01009844.30 KVM_SET_CLOCK
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100985------------------
Glauber Costaafbcf7a2009-10-16 15:28:36 -0400986
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100987:Capability: KVM_CAP_ADJUST_CLOCK
988:Architectures: x86
989:Type: vm ioctl
990:Parameters: struct kvm_clock_data (in)
991:Returns: 0 on success, -1 on error
Glauber Costaafbcf7a2009-10-16 15:28:36 -0400992
Wu Fengguang2044892d2009-12-24 09:04:16 +0800993Sets the current timestamp of kvmclock to the value specified in its parameter.
Glauber Costaafbcf7a2009-10-16 15:28:36 -0400994In conjunction with KVM_GET_CLOCK, it is used to ensure monotonicity on scenarios
995such as migration.
996
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +0100997::
998
999 struct kvm_clock_data {
Glauber Costaafbcf7a2009-10-16 15:28:36 -04001000 __u64 clock; /* kvmclock current value */
1001 __u32 flags;
1002 __u32 pad[9];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001003 };
Glauber Costaafbcf7a2009-10-16 15:28:36 -04001004
Jan Kiszka414fa982012-04-24 16:40:15 +02001005
Paul Bolle68ba6972011-02-15 00:05:59 +010010064.31 KVM_GET_VCPU_EVENTS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001007------------------------
Jan Kiszka3cfc3092009-11-12 01:04:25 +01001008
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001009:Capability: KVM_CAP_VCPU_EVENTS
1010:Extended by: KVM_CAP_INTR_SHADOW
1011:Architectures: x86, arm, arm64
1012:Type: vcpu ioctl
1013:Parameters: struct kvm_vcpu_event (out)
1014:Returns: 0 on success, -1 on error
Jan Kiszka3cfc3092009-11-12 01:04:25 +01001015
Dongjiu Gengb7b27fa2018-07-19 16:24:22 +01001016X86:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001017^^^^
Dongjiu Gengb7b27fa2018-07-19 16:24:22 +01001018
Jan Kiszka3cfc3092009-11-12 01:04:25 +01001019Gets currently pending exceptions, interrupts, and NMIs as well as related
1020states of the vcpu.
1021
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001022::
1023
1024 struct kvm_vcpu_events {
Jan Kiszka3cfc3092009-11-12 01:04:25 +01001025 struct {
1026 __u8 injected;
1027 __u8 nr;
1028 __u8 has_error_code;
Jim Mattson59073aa2018-10-16 14:29:20 -07001029 __u8 pending;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01001030 __u32 error_code;
1031 } exception;
1032 struct {
1033 __u8 injected;
1034 __u8 nr;
1035 __u8 soft;
Jan Kiszka48005f62010-02-19 19:38:07 +01001036 __u8 shadow;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01001037 } interrupt;
1038 struct {
1039 __u8 injected;
1040 __u8 pending;
1041 __u8 masked;
1042 __u8 pad;
1043 } nmi;
1044 __u32 sipi_vector;
Jan Kiszkadab4b912009-12-06 18:24:15 +01001045 __u32 flags;
Paolo Bonzinif0778252015-04-01 15:06:40 +02001046 struct {
1047 __u8 smm;
1048 __u8 pending;
1049 __u8 smm_inside_nmi;
1050 __u8 latched_init;
1051 } smi;
Jim Mattson59073aa2018-10-16 14:29:20 -07001052 __u8 reserved[27];
1053 __u8 exception_has_payload;
1054 __u64 exception_payload;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001055 };
Jan Kiszka3cfc3092009-11-12 01:04:25 +01001056
Jim Mattson59073aa2018-10-16 14:29:20 -07001057The following bits are defined in the flags field:
Jan Kiszka48005f62010-02-19 19:38:07 +01001058
Jim Mattson59073aa2018-10-16 14:29:20 -07001059- KVM_VCPUEVENT_VALID_SHADOW may be set to signal that
Paolo Bonzinif0778252015-04-01 15:06:40 +02001060 interrupt.shadow contains a valid state.
1061
Jim Mattson59073aa2018-10-16 14:29:20 -07001062- KVM_VCPUEVENT_VALID_SMM may be set to signal that smi contains a
1063 valid state.
1064
1065- KVM_VCPUEVENT_VALID_PAYLOAD may be set to signal that the
1066 exception_has_payload, exception_payload, and exception.pending
1067 fields contain a valid state. This bit will be set whenever
1068 KVM_CAP_EXCEPTION_PAYLOAD is enabled.
Jan Kiszka414fa982012-04-24 16:40:15 +02001069
James Morseb0960b92018-07-19 16:24:25 +01001070ARM/ARM64:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001071^^^^^^^^^^
Dongjiu Gengb7b27fa2018-07-19 16:24:22 +01001072
1073If the guest accesses a device that is being emulated by the host kernel in
1074such a way that a real device would generate a physical SError, KVM may make
1075a virtual SError pending for that VCPU. This system error interrupt remains
1076pending until the guest takes the exception by unmasking PSTATE.A.
1077
1078Running the VCPU may cause it to take a pending SError, or make an access that
1079causes an SError to become pending. The event's description is only valid while
1080the VPCU is not running.
1081
1082This API provides a way to read and write the pending 'event' state that is not
1083visible to the guest. To save, restore or migrate a VCPU the struct representing
1084the state can be read then written using this GET/SET API, along with the other
1085guest-visible registers. It is not possible to 'cancel' an SError that has been
1086made pending.
1087
1088A device being emulated in user-space may also wish to generate an SError. To do
1089this the events structure can be populated by user-space. The current state
1090should be read first, to ensure no existing SError is pending. If an existing
1091SError is pending, the architecture's 'Multiple SError interrupts' rules should
1092be followed. (2.5.3 of DDI0587.a "ARM Reliability, Availability, and
1093Serviceability (RAS) Specification").
1094
Dongjiu Gengbe26b3a2018-07-19 16:24:23 +01001095SError exceptions always have an ESR value. Some CPUs have the ability to
1096specify what the virtual SError's ESR value should be. These systems will
Dongjiu Geng688e0582018-08-20 17:39:25 -04001097advertise KVM_CAP_ARM_INJECT_SERROR_ESR. In this case exception.has_esr will
Dongjiu Gengbe26b3a2018-07-19 16:24:23 +01001098always have a non-zero value when read, and the agent making an SError pending
1099should specify the ISS field in the lower 24 bits of exception.serror_esr. If
Dongjiu Geng688e0582018-08-20 17:39:25 -04001100the system supports KVM_CAP_ARM_INJECT_SERROR_ESR, but user-space sets the events
Dongjiu Gengbe26b3a2018-07-19 16:24:23 +01001101with exception.has_esr as zero, KVM will choose an ESR.
1102
1103Specifying exception.has_esr on a system that does not support it will return
1104-EINVAL. Setting anything other than the lower 24bits of exception.serror_esr
1105will return -EINVAL.
1106
Christoffer Dallda345172019-10-11 13:07:06 +02001107It is not possible to read back a pending external abort (injected via
1108KVM_SET_VCPU_EVENTS or otherwise) because such an exception is always delivered
1109directly to the virtual CPU).
1110
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001111::
Christoffer Dallda345172019-10-11 13:07:06 +02001112
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001113 struct kvm_vcpu_events {
Dongjiu Gengb7b27fa2018-07-19 16:24:22 +01001114 struct {
1115 __u8 serror_pending;
1116 __u8 serror_has_esr;
Christoffer Dallda345172019-10-11 13:07:06 +02001117 __u8 ext_dabt_pending;
Dongjiu Gengb7b27fa2018-07-19 16:24:22 +01001118 /* Align it to 8 bytes */
Christoffer Dallda345172019-10-11 13:07:06 +02001119 __u8 pad[5];
Dongjiu Gengb7b27fa2018-07-19 16:24:22 +01001120 __u64 serror_esr;
1121 } exception;
1122 __u32 reserved[12];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001123 };
Dongjiu Gengb7b27fa2018-07-19 16:24:22 +01001124
Paul Bolle68ba6972011-02-15 00:05:59 +010011254.32 KVM_SET_VCPU_EVENTS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001126------------------------
Jan Kiszka3cfc3092009-11-12 01:04:25 +01001127
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001128:Capability: KVM_CAP_VCPU_EVENTS
1129:Extended by: KVM_CAP_INTR_SHADOW
1130:Architectures: x86, arm, arm64
1131:Type: vcpu ioctl
1132:Parameters: struct kvm_vcpu_event (in)
1133:Returns: 0 on success, -1 on error
Jan Kiszka3cfc3092009-11-12 01:04:25 +01001134
Dongjiu Gengb7b27fa2018-07-19 16:24:22 +01001135X86:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001136^^^^
Dongjiu Gengb7b27fa2018-07-19 16:24:22 +01001137
Jan Kiszka3cfc3092009-11-12 01:04:25 +01001138Set pending exceptions, interrupts, and NMIs as well as related states of the
1139vcpu.
1140
1141See KVM_GET_VCPU_EVENTS for the data structure.
1142
Jan Kiszkadab4b912009-12-06 18:24:15 +01001143Fields that may be modified asynchronously by running VCPUs can be excluded
Paolo Bonzinif0778252015-04-01 15:06:40 +02001144from the update. These fields are nmi.pending, sipi_vector, smi.smm,
1145smi.pending. Keep the corresponding bits in the flags field cleared to
1146suppress overwriting the current in-kernel state. The bits are:
Jan Kiszkadab4b912009-12-06 18:24:15 +01001147
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001148=============================== ==================================
1149KVM_VCPUEVENT_VALID_NMI_PENDING transfer nmi.pending to the kernel
1150KVM_VCPUEVENT_VALID_SIPI_VECTOR transfer sipi_vector
1151KVM_VCPUEVENT_VALID_SMM transfer the smi sub-struct.
1152=============================== ==================================
Jan Kiszkadab4b912009-12-06 18:24:15 +01001153
Jan Kiszka48005f62010-02-19 19:38:07 +01001154If KVM_CAP_INTR_SHADOW is available, KVM_VCPUEVENT_VALID_SHADOW can be set in
1155the flags field to signal that interrupt.shadow contains a valid state and
1156shall be written into the VCPU.
1157
Paolo Bonzinif0778252015-04-01 15:06:40 +02001158KVM_VCPUEVENT_VALID_SMM can only be set if KVM_CAP_X86_SMM is available.
1159
Jim Mattson59073aa2018-10-16 14:29:20 -07001160If KVM_CAP_EXCEPTION_PAYLOAD is enabled, KVM_VCPUEVENT_VALID_PAYLOAD
1161can be set in the flags field to signal that the
1162exception_has_payload, exception_payload, and exception.pending fields
1163contain a valid state and shall be written into the VCPU.
1164
James Morseb0960b92018-07-19 16:24:25 +01001165ARM/ARM64:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001166^^^^^^^^^^
Dongjiu Gengb7b27fa2018-07-19 16:24:22 +01001167
Christoffer Dallda345172019-10-11 13:07:06 +02001168User space may need to inject several types of events to the guest.
1169
Dongjiu Gengb7b27fa2018-07-19 16:24:22 +01001170Set the pending SError exception state for this VCPU. It is not possible to
1171'cancel' an Serror that has been made pending.
1172
Christoffer Dallda345172019-10-11 13:07:06 +02001173If the guest performed an access to I/O memory which could not be handled by
1174userspace, for example because of missing instruction syndrome decode
1175information or because there is no device mapped at the accessed IPA, then
1176userspace can ask the kernel to inject an external abort using the address
1177from the exiting fault on the VCPU. It is a programming error to set
1178ext_dabt_pending after an exit which was not either KVM_EXIT_MMIO or
1179KVM_EXIT_ARM_NISV. This feature is only available if the system supports
1180KVM_CAP_ARM_INJECT_EXT_DABT. This is a helper which provides commonality in
1181how userspace reports accesses for the above cases to guests, across different
1182userspace implementations. Nevertheless, userspace can still emulate all Arm
1183exceptions by manipulating individual registers using the KVM_SET_ONE_REG API.
1184
Dongjiu Gengb7b27fa2018-07-19 16:24:22 +01001185See KVM_GET_VCPU_EVENTS for the data structure.
1186
Jan Kiszka414fa982012-04-24 16:40:15 +02001187
Paul Bolle68ba6972011-02-15 00:05:59 +010011884.33 KVM_GET_DEBUGREGS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001189----------------------
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01001190
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001191:Capability: KVM_CAP_DEBUGREGS
1192:Architectures: x86
1193:Type: vm ioctl
1194:Parameters: struct kvm_debugregs (out)
1195:Returns: 0 on success, -1 on error
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01001196
1197Reads debug registers from the vcpu.
1198
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001199::
1200
1201 struct kvm_debugregs {
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01001202 __u64 db[4];
1203 __u64 dr6;
1204 __u64 dr7;
1205 __u64 flags;
1206 __u64 reserved[9];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001207 };
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01001208
Jan Kiszka414fa982012-04-24 16:40:15 +02001209
Paul Bolle68ba6972011-02-15 00:05:59 +010012104.34 KVM_SET_DEBUGREGS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001211----------------------
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01001212
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001213:Capability: KVM_CAP_DEBUGREGS
1214:Architectures: x86
1215:Type: vm ioctl
1216:Parameters: struct kvm_debugregs (in)
1217:Returns: 0 on success, -1 on error
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01001218
1219Writes debug registers into the vcpu.
1220
1221See KVM_GET_DEBUGREGS for the data structure. The flags field is unused
1222yet and must be cleared on entry.
1223
Jan Kiszka414fa982012-04-24 16:40:15 +02001224
Paul Bolle68ba6972011-02-15 00:05:59 +010012254.35 KVM_SET_USER_MEMORY_REGION
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001226-------------------------------
Avi Kivity0f2d8f42010-03-25 12:16:48 +02001227
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001228:Capability: KVM_CAP_USER_MEMORY
1229:Architectures: all
1230:Type: vm ioctl
1231:Parameters: struct kvm_userspace_memory_region (in)
1232:Returns: 0 on success, -1 on error
Avi Kivity0f2d8f42010-03-25 12:16:48 +02001233
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001234::
1235
1236 struct kvm_userspace_memory_region {
Avi Kivity0f2d8f42010-03-25 12:16:48 +02001237 __u32 slot;
1238 __u32 flags;
1239 __u64 guest_phys_addr;
1240 __u64 memory_size; /* bytes */
1241 __u64 userspace_addr; /* start of the userspace allocated memory */
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001242 };
Avi Kivity0f2d8f42010-03-25 12:16:48 +02001243
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001244 /* for kvm_memory_region::flags */
1245 #define KVM_MEM_LOG_DIRTY_PAGES (1UL << 0)
1246 #define KVM_MEM_READONLY (1UL << 1)
Avi Kivity0f2d8f42010-03-25 12:16:48 +02001247
Paolo Bonzinie2788c42019-03-28 17:22:31 +01001248This ioctl allows the user to create, modify or delete a guest physical
1249memory slot. Bits 0-15 of "slot" specify the slot id and this value
1250should be less than the maximum number of user memory slots supported per
Paolo Bonzinic110ae52019-03-28 17:24:03 +01001251VM. The maximum allowed slots can be queried using KVM_CAP_NR_MEMSLOTS.
1252Slots may not overlap in guest physical address space.
Avi Kivity0f2d8f42010-03-25 12:16:48 +02001253
Paolo Bonzinif481b062015-05-17 17:30:37 +02001254If KVM_CAP_MULTI_ADDRESS_SPACE is available, bits 16-31 of "slot"
1255specifies the address space which is being modified. They must be
1256less than the value that KVM_CHECK_EXTENSION returns for the
1257KVM_CAP_MULTI_ADDRESS_SPACE capability. Slots in separate address spaces
1258are unrelated; the restriction on overlapping slots only applies within
1259each address space.
1260
Paolo Bonzinie2788c42019-03-28 17:22:31 +01001261Deleting a slot is done by passing zero for memory_size. When changing
1262an existing slot, it may be moved in the guest physical memory space,
1263or its flags may be modified, but it may not be resized.
1264
Avi Kivity0f2d8f42010-03-25 12:16:48 +02001265Memory for the region is taken starting at the address denoted by the
1266field userspace_addr, which must point at user addressable memory for
1267the entire memory slot size. Any object may back this memory, including
1268anonymous memory, ordinary files, and hugetlbfs.
1269
Marc Zyngier256a0042021-01-21 12:08:15 +00001270On architectures that support a form of address tagging, userspace_addr must
1271be an untagged address.
1272
Avi Kivity0f2d8f42010-03-25 12:16:48 +02001273It is recommended that the lower 21 bits of guest_phys_addr and userspace_addr
1274be identical. This allows large pages in the guest to be backed by large
1275pages in the host.
1276
Takuya Yoshikawa75d61fb2013-01-30 19:40:41 +09001277The flags field supports two flags: KVM_MEM_LOG_DIRTY_PAGES and
1278KVM_MEM_READONLY. The former can be set to instruct KVM to keep track of
1279writes to memory within the slot. See KVM_GET_DIRTY_LOG ioctl to know how to
1280use it. The latter can be set, if KVM_CAP_READONLY_MEM capability allows it,
1281to make a new slot read-only. In this case, writes to this memory will be
1282posted to userspace as KVM_EXIT_MMIO exits.
Avi Kivity0f2d8f42010-03-25 12:16:48 +02001283
Jan Kiszka7efd8fa2012-09-07 13:17:47 +02001284When the KVM_CAP_SYNC_MMU capability is available, changes in the backing of
1285the memory region are automatically reflected into the guest. For example, an
1286mmap() that affects the region will be made visible immediately. Another
1287example is madvise(MADV_DROP).
Avi Kivity0f2d8f42010-03-25 12:16:48 +02001288
1289It is recommended to use this API instead of the KVM_SET_MEMORY_REGION ioctl.
1290The KVM_SET_MEMORY_REGION does not allow fine grained control over memory
1291allocation and is deprecated.
Jan Kiszka3cfc3092009-11-12 01:04:25 +01001292
Jan Kiszka414fa982012-04-24 16:40:15 +02001293
Paul Bolle68ba6972011-02-15 00:05:59 +010012944.36 KVM_SET_TSS_ADDR
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001295---------------------
Avi Kivity8a5416d2010-03-25 12:27:30 +02001296
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001297:Capability: KVM_CAP_SET_TSS_ADDR
1298:Architectures: x86
1299:Type: vm ioctl
1300:Parameters: unsigned long tss_address (in)
1301:Returns: 0 on success, -1 on error
Avi Kivity8a5416d2010-03-25 12:27:30 +02001302
1303This ioctl defines the physical address of a three-page region in the guest
1304physical address space. The region must be within the first 4GB of the
1305guest physical address space and must not conflict with any memory slot
1306or any mmio address. The guest may malfunction if it accesses this memory
1307region.
1308
1309This ioctl is required on Intel-based hosts. This is needed on Intel hardware
1310because of a quirk in the virtualization implementation (see the internals
1311documentation when it pops into existence).
1312
Jan Kiszka414fa982012-04-24 16:40:15 +02001313
Paul Bolle68ba6972011-02-15 00:05:59 +010013144.37 KVM_ENABLE_CAP
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001315-------------------
Alexander Graf71fbfd52010-03-24 21:48:29 +01001316
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001317:Capability: KVM_CAP_ENABLE_CAP
1318:Architectures: mips, ppc, s390
1319:Type: vcpu ioctl
1320:Parameters: struct kvm_enable_cap (in)
1321:Returns: 0 on success; -1 on error
Paolo Bonzinie5d83c72017-02-16 10:40:56 +01001322
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001323:Capability: KVM_CAP_ENABLE_CAP_VM
1324:Architectures: all
Quentin Perretd1fd90b2021-01-08 16:53:49 +00001325:Type: vm ioctl
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001326:Parameters: struct kvm_enable_cap (in)
1327:Returns: 0 on success; -1 on error
Alexander Graf71fbfd52010-03-24 21:48:29 +01001328
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001329.. note::
1330
1331 Not all extensions are enabled by default. Using this ioctl the application
1332 can enable an extension, making it available to the guest.
Alexander Graf71fbfd52010-03-24 21:48:29 +01001333
1334On systems that do not support this ioctl, it always fails. On systems that
1335do support it, it only works for extensions that are supported for enablement.
1336
1337To check if a capability can be enabled, the KVM_CHECK_EXTENSION ioctl should
1338be used.
1339
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001340::
1341
1342 struct kvm_enable_cap {
Alexander Graf71fbfd52010-03-24 21:48:29 +01001343 /* in */
1344 __u32 cap;
1345
1346The capability that is supposed to get enabled.
1347
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001348::
1349
Alexander Graf71fbfd52010-03-24 21:48:29 +01001350 __u32 flags;
1351
1352A bitfield indicating future enhancements. Has to be 0 for now.
1353
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001354::
1355
Alexander Graf71fbfd52010-03-24 21:48:29 +01001356 __u64 args[4];
1357
1358Arguments for enabling a feature. If a feature needs initial values to
1359function properly, this is the place to put them.
1360
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001361::
1362
Alexander Graf71fbfd52010-03-24 21:48:29 +01001363 __u8 pad[64];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001364 };
Alexander Graf71fbfd52010-03-24 21:48:29 +01001365
Cornelia Huckd938dc52013-10-23 18:26:34 +02001366The vcpu ioctl should be used for vcpu-specific capabilities, the vm ioctl
1367for vm-wide capabilities.
Jan Kiszka414fa982012-04-24 16:40:15 +02001368
Paul Bolle68ba6972011-02-15 00:05:59 +010013694.38 KVM_GET_MP_STATE
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001370---------------------
Avi Kivityb843f062010-04-25 15:51:46 +03001371
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001372:Capability: KVM_CAP_MP_STATE
1373:Architectures: x86, s390, arm, arm64
1374:Type: vcpu ioctl
1375:Parameters: struct kvm_mp_state (out)
1376:Returns: 0 on success; -1 on error
Avi Kivityb843f062010-04-25 15:51:46 +03001377
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001378::
1379
1380 struct kvm_mp_state {
Avi Kivityb843f062010-04-25 15:51:46 +03001381 __u32 mp_state;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001382 };
Avi Kivityb843f062010-04-25 15:51:46 +03001383
1384Returns the vcpu's current "multiprocessing state" (though also valid on
1385uniprocessor guests).
1386
1387Possible values are:
1388
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001389 ========================== ===============================================
1390 KVM_MP_STATE_RUNNABLE the vcpu is currently running [x86,arm/arm64]
1391 KVM_MP_STATE_UNINITIALIZED the vcpu is an application processor (AP)
Tiejun Chenc32a4272014-11-20 11:07:18 +01001392 which has not yet received an INIT signal [x86]
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001393 KVM_MP_STATE_INIT_RECEIVED the vcpu has received an INIT signal, and is
Tiejun Chenc32a4272014-11-20 11:07:18 +01001394 now ready for a SIPI [x86]
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001395 KVM_MP_STATE_HALTED the vcpu has executed a HLT instruction and
Tiejun Chenc32a4272014-11-20 11:07:18 +01001396 is waiting for an interrupt [x86]
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001397 KVM_MP_STATE_SIPI_RECEIVED the vcpu has just received a SIPI (vector
Tiejun Chenc32a4272014-11-20 11:07:18 +01001398 accessible via KVM_GET_VCPU_EVENTS) [x86]
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001399 KVM_MP_STATE_STOPPED the vcpu is stopped [s390,arm/arm64]
1400 KVM_MP_STATE_CHECK_STOP the vcpu is in a special error state [s390]
1401 KVM_MP_STATE_OPERATING the vcpu is operating (running or halted)
David Hildenbrand6352e4d2014-04-10 17:35:00 +02001402 [s390]
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001403 KVM_MP_STATE_LOAD the vcpu is in a special load/startup state
David Hildenbrand6352e4d2014-04-10 17:35:00 +02001404 [s390]
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001405 ========================== ===============================================
Avi Kivityb843f062010-04-25 15:51:46 +03001406
Tiejun Chenc32a4272014-11-20 11:07:18 +01001407On x86, this ioctl is only useful after KVM_CREATE_IRQCHIP. Without an
David Hildenbrand0b4820d2014-05-12 16:05:13 +02001408in-kernel irqchip, the multiprocessing state must be maintained by userspace on
1409these architectures.
Avi Kivityb843f062010-04-25 15:51:46 +03001410
Alex Bennéeecccf0c2015-03-13 17:02:52 +00001411For arm/arm64:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001412^^^^^^^^^^^^^^
Alex Bennéeecccf0c2015-03-13 17:02:52 +00001413
1414The only states that are valid are KVM_MP_STATE_STOPPED and
1415KVM_MP_STATE_RUNNABLE which reflect if the vcpu is paused or not.
Jan Kiszka414fa982012-04-24 16:40:15 +02001416
Paul Bolle68ba6972011-02-15 00:05:59 +010014174.39 KVM_SET_MP_STATE
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001418---------------------
Avi Kivityb843f062010-04-25 15:51:46 +03001419
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001420:Capability: KVM_CAP_MP_STATE
1421:Architectures: x86, s390, arm, arm64
1422:Type: vcpu ioctl
1423:Parameters: struct kvm_mp_state (in)
1424:Returns: 0 on success; -1 on error
Avi Kivityb843f062010-04-25 15:51:46 +03001425
1426Sets the vcpu's current "multiprocessing state"; see KVM_GET_MP_STATE for
1427arguments.
1428
Tiejun Chenc32a4272014-11-20 11:07:18 +01001429On x86, this ioctl is only useful after KVM_CREATE_IRQCHIP. Without an
David Hildenbrand0b4820d2014-05-12 16:05:13 +02001430in-kernel irqchip, the multiprocessing state must be maintained by userspace on
1431these architectures.
Avi Kivityb843f062010-04-25 15:51:46 +03001432
Alex Bennéeecccf0c2015-03-13 17:02:52 +00001433For arm/arm64:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001434^^^^^^^^^^^^^^
Alex Bennéeecccf0c2015-03-13 17:02:52 +00001435
1436The only states that are valid are KVM_MP_STATE_STOPPED and
1437KVM_MP_STATE_RUNNABLE which reflect if the vcpu should be paused or not.
Jan Kiszka414fa982012-04-24 16:40:15 +02001438
Paul Bolle68ba6972011-02-15 00:05:59 +010014394.40 KVM_SET_IDENTITY_MAP_ADDR
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001440------------------------------
Avi Kivity47dbb842010-04-29 12:08:56 +03001441
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001442:Capability: KVM_CAP_SET_IDENTITY_MAP_ADDR
1443:Architectures: x86
1444:Type: vm ioctl
1445:Parameters: unsigned long identity (in)
1446:Returns: 0 on success, -1 on error
Avi Kivity47dbb842010-04-29 12:08:56 +03001447
1448This ioctl defines the physical address of a one-page region in the guest
1449physical address space. The region must be within the first 4GB of the
1450guest physical address space and must not conflict with any memory slot
1451or any mmio address. The guest may malfunction if it accesses this memory
1452region.
1453
David Hildenbrand726b99c2017-08-24 20:51:35 +02001454Setting the address to 0 will result in resetting the address to its default
1455(0xfffbc000).
1456
Avi Kivity47dbb842010-04-29 12:08:56 +03001457This ioctl is required on Intel-based hosts. This is needed on Intel hardware
1458because of a quirk in the virtualization implementation (see the internals
1459documentation when it pops into existence).
1460
David Hildenbrand1af1ac92017-08-24 20:51:36 +02001461Fails if any VCPU has already been created.
Jan Kiszka414fa982012-04-24 16:40:15 +02001462
Paul Bolle68ba6972011-02-15 00:05:59 +010014634.41 KVM_SET_BOOT_CPU_ID
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001464------------------------
Avi Kivity57bc24c2010-04-29 12:12:57 +03001465
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001466:Capability: KVM_CAP_SET_BOOT_CPU_ID
1467:Architectures: x86
1468:Type: vm ioctl
1469:Parameters: unsigned long vcpu_id
1470:Returns: 0 on success, -1 on error
Avi Kivity57bc24c2010-04-29 12:12:57 +03001471
1472Define which vcpu is the Bootstrap Processor (BSP). Values are the same
1473as the vcpu id in KVM_CREATE_VCPU. If this ioctl is not called, the default
1474is vcpu 0.
1475
Jan Kiszka414fa982012-04-24 16:40:15 +02001476
Paul Bolle68ba6972011-02-15 00:05:59 +010014774.42 KVM_GET_XSAVE
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001478------------------
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001479
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001480:Capability: KVM_CAP_XSAVE
1481:Architectures: x86
1482:Type: vcpu ioctl
1483:Parameters: struct kvm_xsave (out)
1484:Returns: 0 on success, -1 on error
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001485
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001486
1487::
1488
1489 struct kvm_xsave {
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001490 __u32 region[1024];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001491 };
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001492
1493This ioctl would copy current vcpu's xsave struct to the userspace.
1494
Jan Kiszka414fa982012-04-24 16:40:15 +02001495
Paul Bolle68ba6972011-02-15 00:05:59 +010014964.43 KVM_SET_XSAVE
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001497------------------
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001498
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001499:Capability: KVM_CAP_XSAVE
1500:Architectures: x86
1501:Type: vcpu ioctl
1502:Parameters: struct kvm_xsave (in)
1503:Returns: 0 on success, -1 on error
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001504
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001505::
1506
1507
1508 struct kvm_xsave {
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001509 __u32 region[1024];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001510 };
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001511
1512This ioctl would copy userspace's xsave struct to the kernel.
1513
Jan Kiszka414fa982012-04-24 16:40:15 +02001514
Paul Bolle68ba6972011-02-15 00:05:59 +010015154.44 KVM_GET_XCRS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001516-----------------
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001517
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001518:Capability: KVM_CAP_XCRS
1519:Architectures: x86
1520:Type: vcpu ioctl
1521:Parameters: struct kvm_xcrs (out)
1522:Returns: 0 on success, -1 on error
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001523
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001524::
1525
1526 struct kvm_xcr {
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001527 __u32 xcr;
1528 __u32 reserved;
1529 __u64 value;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001530 };
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001531
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001532 struct kvm_xcrs {
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001533 __u32 nr_xcrs;
1534 __u32 flags;
1535 struct kvm_xcr xcrs[KVM_MAX_XCRS];
1536 __u64 padding[16];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001537 };
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001538
1539This ioctl would copy current vcpu's xcrs to the userspace.
1540
Jan Kiszka414fa982012-04-24 16:40:15 +02001541
Paul Bolle68ba6972011-02-15 00:05:59 +010015424.45 KVM_SET_XCRS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001543-----------------
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001544
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001545:Capability: KVM_CAP_XCRS
1546:Architectures: x86
1547:Type: vcpu ioctl
1548:Parameters: struct kvm_xcrs (in)
1549:Returns: 0 on success, -1 on error
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001550
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001551::
1552
1553 struct kvm_xcr {
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001554 __u32 xcr;
1555 __u32 reserved;
1556 __u64 value;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001557 };
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001558
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001559 struct kvm_xcrs {
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001560 __u32 nr_xcrs;
1561 __u32 flags;
1562 struct kvm_xcr xcrs[KVM_MAX_XCRS];
1563 __u64 padding[16];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001564 };
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001565
1566This ioctl would set vcpu's xcr to the value userspace specified.
1567
Jan Kiszka414fa982012-04-24 16:40:15 +02001568
Paul Bolle68ba6972011-02-15 00:05:59 +010015694.46 KVM_GET_SUPPORTED_CPUID
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001570----------------------------
Avi Kivityd1535132010-07-14 09:45:21 +03001571
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001572:Capability: KVM_CAP_EXT_CPUID
1573:Architectures: x86
1574:Type: system ioctl
1575:Parameters: struct kvm_cpuid2 (in/out)
1576:Returns: 0 on success, -1 on error
Avi Kivityd1535132010-07-14 09:45:21 +03001577
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001578::
1579
1580 struct kvm_cpuid2 {
Avi Kivityd1535132010-07-14 09:45:21 +03001581 __u32 nent;
1582 __u32 padding;
1583 struct kvm_cpuid_entry2 entries[0];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001584 };
Avi Kivityd1535132010-07-14 09:45:21 +03001585
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001586 #define KVM_CPUID_FLAG_SIGNIFCANT_INDEX BIT(0)
Sean Christopherson7ff6c032020-03-02 15:56:51 -08001587 #define KVM_CPUID_FLAG_STATEFUL_FUNC BIT(1) /* deprecated */
1588 #define KVM_CPUID_FLAG_STATE_READ_NEXT BIT(2) /* deprecated */
Avi Kivityd1535132010-07-14 09:45:21 +03001589
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001590 struct kvm_cpuid_entry2 {
Avi Kivityd1535132010-07-14 09:45:21 +03001591 __u32 function;
1592 __u32 index;
1593 __u32 flags;
1594 __u32 eax;
1595 __u32 ebx;
1596 __u32 ecx;
1597 __u32 edx;
1598 __u32 padding[3];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001599 };
Avi Kivityd1535132010-07-14 09:45:21 +03001600
Jim Mattsondf9cb9c2018-05-24 11:59:54 -07001601This ioctl returns x86 cpuid features which are supported by both the
1602hardware and kvm in its default configuration. Userspace can use the
1603information returned by this ioctl to construct cpuid information (for
1604KVM_SET_CPUID2) that is consistent with hardware, kernel, and
1605userspace capabilities, and with user requirements (for example, the
1606user may wish to constrain cpuid to emulate older hardware, or for
1607feature consistency across a cluster).
1608
1609Note that certain capabilities, such as KVM_CAP_X86_DISABLE_EXITS, may
1610expose cpuid features (e.g. MONITOR) which are not supported by kvm in
1611its default configuration. If userspace enables such capabilities, it
1612is responsible for modifying the results of this ioctl appropriately.
Avi Kivityd1535132010-07-14 09:45:21 +03001613
1614Userspace invokes KVM_GET_SUPPORTED_CPUID by passing a kvm_cpuid2 structure
1615with the 'nent' field indicating the number of entries in the variable-size
1616array 'entries'. If the number of entries is too low to describe the cpu
1617capabilities, an error (E2BIG) is returned. If the number is too high,
1618the 'nent' field is adjusted and an error (ENOMEM) is returned. If the
1619number is just right, the 'nent' field is adjusted to the number of valid
1620entries in the 'entries' array, which is then filled.
1621
1622The entries returned are the host cpuid as returned by the cpuid instruction,
Avi Kivityc39cbd22010-09-12 16:39:11 +02001623with unknown or unsupported features masked out. Some features (for example,
1624x2apic), may not be present in the host cpu, but are exposed by kvm if it can
1625emulate them efficiently. The fields in each entry are defined as follows:
Avi Kivityd1535132010-07-14 09:45:21 +03001626
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001627 function:
1628 the eax value used to obtain the entry
1629
1630 index:
1631 the ecx value used to obtain the entry (for entries that are
Avi Kivityd1535132010-07-14 09:45:21 +03001632 affected by ecx)
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001633
1634 flags:
1635 an OR of zero or more of the following:
1636
Avi Kivityd1535132010-07-14 09:45:21 +03001637 KVM_CPUID_FLAG_SIGNIFCANT_INDEX:
1638 if the index field is valid
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001639
1640 eax, ebx, ecx, edx:
1641 the values returned by the cpuid instruction for
Avi Kivityd1535132010-07-14 09:45:21 +03001642 this function/index combination
1643
Jan Kiszka4d25a0662011-12-21 12:28:29 +01001644The TSC deadline timer feature (CPUID leaf 1, ecx[24]) is always returned
1645as false, since the feature depends on KVM_CREATE_IRQCHIP for local APIC
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001646support. Instead it is reported via::
Jan Kiszka4d25a0662011-12-21 12:28:29 +01001647
1648 ioctl(KVM_CHECK_EXTENSION, KVM_CAP_TSC_DEADLINE_TIMER)
1649
1650if that returns true and you use KVM_CREATE_IRQCHIP, or if you emulate the
1651feature in userspace, then you can enable the feature for KVM_SET_CPUID2.
1652
Jan Kiszka414fa982012-04-24 16:40:15 +02001653
Paul Bolle68ba6972011-02-15 00:05:59 +010016544.47 KVM_PPC_GET_PVINFO
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001655-----------------------
Alexander Graf15711e92010-07-29 14:48:08 +02001656
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001657:Capability: KVM_CAP_PPC_GET_PVINFO
1658:Architectures: ppc
1659:Type: vm ioctl
1660:Parameters: struct kvm_ppc_pvinfo (out)
1661:Returns: 0 on success, !0 on error
Alexander Graf15711e92010-07-29 14:48:08 +02001662
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001663::
1664
1665 struct kvm_ppc_pvinfo {
Alexander Graf15711e92010-07-29 14:48:08 +02001666 __u32 flags;
1667 __u32 hcall[4];
1668 __u8 pad[108];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001669 };
Alexander Graf15711e92010-07-29 14:48:08 +02001670
1671This ioctl fetches PV specific information that need to be passed to the guest
1672using the device tree or other means from vm context.
1673
Liu Yu-B132019202e072012-07-03 05:48:52 +00001674The hcall array defines 4 instructions that make up a hypercall.
Alexander Graf15711e92010-07-29 14:48:08 +02001675
1676If any additional field gets added to this structure later on, a bit for that
1677additional piece of information will be set in the flags bitmap.
1678
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001679The flags bitmap is defined as::
Liu Yu-B132019202e072012-07-03 05:48:52 +00001680
1681 /* the host supports the ePAPR idle hcall
1682 #define KVM_PPC_PVINFO_FLAGS_EV_IDLE (1<<0)
Jan Kiszka414fa982012-04-24 16:40:15 +02001683
Paul Bolle68ba6972011-02-15 00:05:59 +010016844.52 KVM_SET_GSI_ROUTING
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001685------------------------
Jan Kiszka49f48172010-11-16 22:30:07 +01001686
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001687:Capability: KVM_CAP_IRQ_ROUTING
1688:Architectures: x86 s390 arm arm64
1689:Type: vm ioctl
1690:Parameters: struct kvm_irq_routing (in)
1691:Returns: 0 on success, -1 on error
Jan Kiszka49f48172010-11-16 22:30:07 +01001692
1693Sets the GSI routing table entries, overwriting any previously set entries.
1694
Eric Auger180ae7b2016-07-22 16:20:41 +00001695On arm/arm64, GSI routing has the following limitation:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001696
Eric Auger180ae7b2016-07-22 16:20:41 +00001697- GSI routing does not apply to KVM_IRQ_LINE but only to KVM_IRQFD.
1698
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001699::
1700
1701 struct kvm_irq_routing {
Jan Kiszka49f48172010-11-16 22:30:07 +01001702 __u32 nr;
1703 __u32 flags;
1704 struct kvm_irq_routing_entry entries[0];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001705 };
Jan Kiszka49f48172010-11-16 22:30:07 +01001706
1707No flags are specified so far, the corresponding field must be set to zero.
1708
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001709::
1710
1711 struct kvm_irq_routing_entry {
Jan Kiszka49f48172010-11-16 22:30:07 +01001712 __u32 gsi;
1713 __u32 type;
1714 __u32 flags;
1715 __u32 pad;
1716 union {
1717 struct kvm_irq_routing_irqchip irqchip;
1718 struct kvm_irq_routing_msi msi;
Cornelia Huck84223592013-07-15 13:36:01 +02001719 struct kvm_irq_routing_s390_adapter adapter;
Andrey Smetanin5c9194122015-11-10 15:36:34 +03001720 struct kvm_irq_routing_hv_sint hv_sint;
Jan Kiszka49f48172010-11-16 22:30:07 +01001721 __u32 pad[8];
1722 } u;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001723 };
Jan Kiszka49f48172010-11-16 22:30:07 +01001724
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001725 /* gsi routing entry types */
1726 #define KVM_IRQ_ROUTING_IRQCHIP 1
1727 #define KVM_IRQ_ROUTING_MSI 2
1728 #define KVM_IRQ_ROUTING_S390_ADAPTER 3
1729 #define KVM_IRQ_ROUTING_HV_SINT 4
Jan Kiszka49f48172010-11-16 22:30:07 +01001730
Eric Auger76a10b82016-07-22 16:20:37 +00001731flags:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001732
Paolo Bonzini6f49b2f2016-08-04 13:59:56 +02001733- KVM_MSI_VALID_DEVID: used along with KVM_IRQ_ROUTING_MSI routing entry
1734 type, specifies that the devid field contains a valid value. The per-VM
1735 KVM_CAP_MSI_DEVID capability advertises the requirement to provide
1736 the device ID. If this capability is not available, userspace should
1737 never set the KVM_MSI_VALID_DEVID flag as the ioctl might fail.
Eric Auger76a10b82016-07-22 16:20:37 +00001738- zero otherwise
Jan Kiszka49f48172010-11-16 22:30:07 +01001739
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001740::
1741
1742 struct kvm_irq_routing_irqchip {
Jan Kiszka49f48172010-11-16 22:30:07 +01001743 __u32 irqchip;
1744 __u32 pin;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001745 };
Jan Kiszka49f48172010-11-16 22:30:07 +01001746
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001747 struct kvm_irq_routing_msi {
Jan Kiszka49f48172010-11-16 22:30:07 +01001748 __u32 address_lo;
1749 __u32 address_hi;
1750 __u32 data;
Eric Auger76a10b82016-07-22 16:20:37 +00001751 union {
1752 __u32 pad;
1753 __u32 devid;
1754 };
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001755 };
Jan Kiszka49f48172010-11-16 22:30:07 +01001756
Paolo Bonzini6f49b2f2016-08-04 13:59:56 +02001757If KVM_MSI_VALID_DEVID is set, devid contains a unique device identifier
1758for the device that wrote the MSI message. For PCI, this is usually a
1759BFD identifier in the lower 16 bits.
Eric Auger76a10b82016-07-22 16:20:37 +00001760
Radim Krčmář371313132016-07-12 22:09:27 +02001761On x86, address_hi is ignored unless the KVM_X2APIC_API_USE_32BIT_IDS
1762feature of KVM_CAP_X2APIC_API capability is enabled. If it is enabled,
1763address_hi bits 31-8 provide bits 31-8 of the destination id. Bits 7-0 of
1764address_hi must be zero.
1765
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001766::
1767
1768 struct kvm_irq_routing_s390_adapter {
Cornelia Huck84223592013-07-15 13:36:01 +02001769 __u64 ind_addr;
1770 __u64 summary_addr;
1771 __u64 ind_offset;
1772 __u32 summary_offset;
1773 __u32 adapter_id;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001774 };
Cornelia Huck84223592013-07-15 13:36:01 +02001775
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001776 struct kvm_irq_routing_hv_sint {
Andrey Smetanin5c9194122015-11-10 15:36:34 +03001777 __u32 vcpu;
1778 __u32 sint;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001779 };
Jan Kiszka414fa982012-04-24 16:40:15 +02001780
Jan Kiszka414fa982012-04-24 16:40:15 +02001781
17824.55 KVM_SET_TSC_KHZ
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001783--------------------
Joerg Roedel92a1f122011-03-25 09:44:51 +01001784
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001785:Capability: KVM_CAP_TSC_CONTROL
1786:Architectures: x86
1787:Type: vcpu ioctl
1788:Parameters: virtual tsc_khz
1789:Returns: 0 on success, -1 on error
Joerg Roedel92a1f122011-03-25 09:44:51 +01001790
1791Specifies the tsc frequency for the virtual machine. The unit of the
1792frequency is KHz.
1793
Jan Kiszka414fa982012-04-24 16:40:15 +02001794
17954.56 KVM_GET_TSC_KHZ
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001796--------------------
Joerg Roedel92a1f122011-03-25 09:44:51 +01001797
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001798:Capability: KVM_CAP_GET_TSC_KHZ
1799:Architectures: x86
1800:Type: vcpu ioctl
1801:Parameters: none
1802:Returns: virtual tsc-khz on success, negative value on error
Joerg Roedel92a1f122011-03-25 09:44:51 +01001803
1804Returns the tsc frequency of the guest. The unit of the return value is
1805KHz. If the host has unstable tsc this ioctl returns -EIO instead as an
1806error.
1807
Jan Kiszka414fa982012-04-24 16:40:15 +02001808
18094.57 KVM_GET_LAPIC
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001810------------------
Avi Kivitye7677932011-05-11 08:30:51 -04001811
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001812:Capability: KVM_CAP_IRQCHIP
1813:Architectures: x86
1814:Type: vcpu ioctl
1815:Parameters: struct kvm_lapic_state (out)
1816:Returns: 0 on success, -1 on error
Avi Kivitye7677932011-05-11 08:30:51 -04001817
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001818::
1819
1820 #define KVM_APIC_REG_SIZE 0x400
1821 struct kvm_lapic_state {
Avi Kivitye7677932011-05-11 08:30:51 -04001822 char regs[KVM_APIC_REG_SIZE];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001823 };
Avi Kivitye7677932011-05-11 08:30:51 -04001824
1825Reads the Local APIC registers and copies them into the input argument. The
1826data format and layout are the same as documented in the architecture manual.
1827
Radim Krčmář371313132016-07-12 22:09:27 +02001828If KVM_X2APIC_API_USE_32BIT_IDS feature of KVM_CAP_X2APIC_API is
1829enabled, then the format of APIC_ID register depends on the APIC mode
1830(reported by MSR_IA32_APICBASE) of its VCPU. x2APIC stores APIC ID in
1831the APIC_ID register (bytes 32-35). xAPIC only allows an 8-bit APIC ID
1832which is stored in bits 31-24 of the APIC register, or equivalently in
1833byte 35 of struct kvm_lapic_state's regs field. KVM_GET_LAPIC must then
1834be called after MSR_IA32_APICBASE has been set with KVM_SET_MSR.
1835
1836If KVM_X2APIC_API_USE_32BIT_IDS feature is disabled, struct kvm_lapic_state
1837always uses xAPIC format.
1838
Jan Kiszka414fa982012-04-24 16:40:15 +02001839
18404.58 KVM_SET_LAPIC
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001841------------------
Avi Kivitye7677932011-05-11 08:30:51 -04001842
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001843:Capability: KVM_CAP_IRQCHIP
1844:Architectures: x86
1845:Type: vcpu ioctl
1846:Parameters: struct kvm_lapic_state (in)
1847:Returns: 0 on success, -1 on error
Avi Kivitye7677932011-05-11 08:30:51 -04001848
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001849::
1850
1851 #define KVM_APIC_REG_SIZE 0x400
1852 struct kvm_lapic_state {
Avi Kivitye7677932011-05-11 08:30:51 -04001853 char regs[KVM_APIC_REG_SIZE];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001854 };
Avi Kivitye7677932011-05-11 08:30:51 -04001855
Masanari Iidadf5cbb22014-03-21 10:04:30 +09001856Copies the input argument into the Local APIC registers. The data format
Avi Kivitye7677932011-05-11 08:30:51 -04001857and layout are the same as documented in the architecture manual.
1858
Radim Krčmář371313132016-07-12 22:09:27 +02001859The format of the APIC ID register (bytes 32-35 of struct kvm_lapic_state's
1860regs field) depends on the state of the KVM_CAP_X2APIC_API capability.
1861See the note in KVM_GET_LAPIC.
1862
Jan Kiszka414fa982012-04-24 16:40:15 +02001863
18644.59 KVM_IOEVENTFD
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001865------------------
Sasha Levin55399a02011-05-28 14:12:30 +03001866
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001867:Capability: KVM_CAP_IOEVENTFD
1868:Architectures: all
1869:Type: vm ioctl
1870:Parameters: struct kvm_ioeventfd (in)
1871:Returns: 0 on success, !0 on error
Sasha Levin55399a02011-05-28 14:12:30 +03001872
1873This ioctl attaches or detaches an ioeventfd to a legal pio/mmio address
1874within the guest. A guest write in the registered address will signal the
1875provided event instead of triggering an exit.
1876
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001877::
1878
1879 struct kvm_ioeventfd {
Sasha Levin55399a02011-05-28 14:12:30 +03001880 __u64 datamatch;
1881 __u64 addr; /* legal pio/mmio address */
Jason Wange9ea5062015-09-15 14:41:59 +08001882 __u32 len; /* 0, 1, 2, 4, or 8 bytes */
Sasha Levin55399a02011-05-28 14:12:30 +03001883 __s32 fd;
1884 __u32 flags;
1885 __u8 pad[36];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001886 };
Sasha Levin55399a02011-05-28 14:12:30 +03001887
Cornelia Huck2b834512013-02-28 12:33:20 +01001888For the special case of virtio-ccw devices on s390, the ioevent is matched
1889to a subchannel/virtqueue tuple instead.
1890
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001891The following flags are defined::
Sasha Levin55399a02011-05-28 14:12:30 +03001892
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001893 #define KVM_IOEVENTFD_FLAG_DATAMATCH (1 << kvm_ioeventfd_flag_nr_datamatch)
1894 #define KVM_IOEVENTFD_FLAG_PIO (1 << kvm_ioeventfd_flag_nr_pio)
1895 #define KVM_IOEVENTFD_FLAG_DEASSIGN (1 << kvm_ioeventfd_flag_nr_deassign)
1896 #define KVM_IOEVENTFD_FLAG_VIRTIO_CCW_NOTIFY \
Cornelia Huck2b834512013-02-28 12:33:20 +01001897 (1 << kvm_ioeventfd_flag_nr_virtio_ccw_notify)
Sasha Levin55399a02011-05-28 14:12:30 +03001898
1899If datamatch flag is set, the event will be signaled only if the written value
1900to the registered address is equal to datamatch in struct kvm_ioeventfd.
1901
Cornelia Huck2b834512013-02-28 12:33:20 +01001902For virtio-ccw devices, addr contains the subchannel id and datamatch the
1903virtqueue index.
1904
Jason Wange9ea5062015-09-15 14:41:59 +08001905With KVM_CAP_IOEVENTFD_ANY_LENGTH, a zero length ioeventfd is allowed, and
1906the kernel will ignore the length of guest write and may get a faster vmexit.
1907The speedup may only apply to specific architectures, but the ioeventfd will
1908work anyway.
Jan Kiszka414fa982012-04-24 16:40:15 +02001909
19104.60 KVM_DIRTY_TLB
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001911------------------
Scott Wooddc83b8b2011-08-18 15:25:21 -05001912
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001913:Capability: KVM_CAP_SW_TLB
1914:Architectures: ppc
1915:Type: vcpu ioctl
1916:Parameters: struct kvm_dirty_tlb (in)
1917:Returns: 0 on success, -1 on error
Scott Wooddc83b8b2011-08-18 15:25:21 -05001918
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001919::
1920
1921 struct kvm_dirty_tlb {
Scott Wooddc83b8b2011-08-18 15:25:21 -05001922 __u64 bitmap;
1923 __u32 num_dirty;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001924 };
Scott Wooddc83b8b2011-08-18 15:25:21 -05001925
1926This must be called whenever userspace has changed an entry in the shared
1927TLB, prior to calling KVM_RUN on the associated vcpu.
1928
1929The "bitmap" field is the userspace address of an array. This array
1930consists of a number of bits, equal to the total number of TLB entries as
1931determined by the last successful call to KVM_CONFIG_TLB, rounded up to the
1932nearest multiple of 64.
1933
1934Each bit corresponds to one TLB entry, ordered the same as in the shared TLB
1935array.
1936
1937The array is little-endian: the bit 0 is the least significant bit of the
1938first byte, bit 8 is the least significant bit of the second byte, etc.
1939This avoids any complications with differing word sizes.
1940
1941The "num_dirty" field is a performance hint for KVM to determine whether it
1942should skip processing the bitmap and just invalidate everything. It must
1943be set to the number of set bits in the bitmap.
1944
Jan Kiszka414fa982012-04-24 16:40:15 +02001945
David Gibson54738c02011-06-29 00:22:41 +000019464.62 KVM_CREATE_SPAPR_TCE
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001947-------------------------
David Gibson54738c02011-06-29 00:22:41 +00001948
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001949:Capability: KVM_CAP_SPAPR_TCE
1950:Architectures: powerpc
1951:Type: vm ioctl
1952:Parameters: struct kvm_create_spapr_tce (in)
1953:Returns: file descriptor for manipulating the created TCE table
David Gibson54738c02011-06-29 00:22:41 +00001954
1955This creates a virtual TCE (translation control entry) table, which
1956is an IOMMU for PAPR-style virtual I/O. It is used to translate
1957logical addresses used in virtual I/O into guest physical addresses,
1958and provides a scatter/gather capability for PAPR virtual I/O.
1959
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001960::
1961
1962 /* for KVM_CAP_SPAPR_TCE */
1963 struct kvm_create_spapr_tce {
David Gibson54738c02011-06-29 00:22:41 +00001964 __u64 liobn;
1965 __u32 window_size;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001966 };
David Gibson54738c02011-06-29 00:22:41 +00001967
1968The liobn field gives the logical IO bus number for which to create a
1969TCE table. The window_size field specifies the size of the DMA window
1970which this TCE table will translate - the table will contain one 64
1971bit TCE entry for every 4kiB of the DMA window.
1972
1973When the guest issues an H_PUT_TCE hcall on a liobn for which a TCE
1974table has been created using this ioctl(), the kernel will handle it
1975in real mode, updating the TCE table. H_PUT_TCE calls for other
1976liobns will cause a vm exit and must be handled by userspace.
1977
1978The return value is a file descriptor which can be passed to mmap(2)
1979to map the created TCE table into userspace. This lets userspace read
1980the entries written by kernel-handled H_PUT_TCE calls, and also lets
1981userspace update the TCE table directly which is useful in some
1982circumstances.
1983
Jan Kiszka414fa982012-04-24 16:40:15 +02001984
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +000019854.63 KVM_ALLOCATE_RMA
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001986---------------------
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00001987
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01001988:Capability: KVM_CAP_PPC_RMA
1989:Architectures: powerpc
1990:Type: vm ioctl
1991:Parameters: struct kvm_allocate_rma (out)
1992:Returns: file descriptor for mapping the allocated RMA
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00001993
1994This allocates a Real Mode Area (RMA) from the pool allocated at boot
1995time by the kernel. An RMA is a physically-contiguous, aligned region
1996of memory used on older POWER processors to provide the memory which
1997will be accessed by real-mode (MMU off) accesses in a KVM guest.
1998POWER processors support a set of sizes for the RMA that usually
1999includes 64MB, 128MB, 256MB and some larger powers of two.
2000
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002001::
2002
2003 /* for KVM_ALLOCATE_RMA */
2004 struct kvm_allocate_rma {
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00002005 __u64 rma_size;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002006 };
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +00002007
2008The return value is a file descriptor which can be passed to mmap(2)
2009to map the allocated RMA into userspace. The mapped area can then be
2010passed to the KVM_SET_USER_MEMORY_REGION ioctl to establish it as the
2011RMA for a virtual machine. The size of the RMA in bytes (which is
2012fixed at host kernel boot time) is returned in the rma_size field of
2013the argument structure.
2014
2015The KVM_CAP_PPC_RMA capability is 1 or 2 if the KVM_ALLOCATE_RMA ioctl
2016is supported; 2 if the processor requires all virtual machines to have
2017an RMA, or 1 if the processor can use an RMA but doesn't require it,
2018because it supports the Virtual RMA (VRMA) facility.
2019
Jan Kiszka414fa982012-04-24 16:40:15 +02002020
Avi Kivity3f745f12011-12-07 12:42:47 +020020214.64 KVM_NMI
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002022------------
Avi Kivity3f745f12011-12-07 12:42:47 +02002023
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002024:Capability: KVM_CAP_USER_NMI
2025:Architectures: x86
2026:Type: vcpu ioctl
2027:Parameters: none
2028:Returns: 0 on success, -1 on error
Avi Kivity3f745f12011-12-07 12:42:47 +02002029
2030Queues an NMI on the thread's vcpu. Note this is well defined only
2031when KVM_CREATE_IRQCHIP has not been called, since this is an interface
2032between the virtual cpu core and virtual local APIC. After KVM_CREATE_IRQCHIP
2033has been called, this interface is completely emulated within the kernel.
2034
2035To use this to emulate the LINT1 input with KVM_CREATE_IRQCHIP, use the
2036following algorithm:
2037
Masanari Iida5d4f6f32015-10-04 00:46:21 +09002038 - pause the vcpu
Avi Kivity3f745f12011-12-07 12:42:47 +02002039 - read the local APIC's state (KVM_GET_LAPIC)
2040 - check whether changing LINT1 will queue an NMI (see the LVT entry for LINT1)
2041 - if so, issue KVM_NMI
2042 - resume the vcpu
2043
2044Some guests configure the LINT1 NMI input to cause a panic, aiding in
2045debugging.
2046
Jan Kiszka414fa982012-04-24 16:40:15 +02002047
Alexander Grafe24ed812011-09-14 10:02:41 +020020484.65 KVM_S390_UCAS_MAP
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002049----------------------
Carsten Otte27e03932012-01-04 10:25:21 +01002050
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002051:Capability: KVM_CAP_S390_UCONTROL
2052:Architectures: s390
2053:Type: vcpu ioctl
2054:Parameters: struct kvm_s390_ucas_mapping (in)
2055:Returns: 0 in case of success
Carsten Otte27e03932012-01-04 10:25:21 +01002056
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002057The parameter is defined like this::
2058
Carsten Otte27e03932012-01-04 10:25:21 +01002059 struct kvm_s390_ucas_mapping {
2060 __u64 user_addr;
2061 __u64 vcpu_addr;
2062 __u64 length;
2063 };
2064
2065This ioctl maps the memory at "user_addr" with the length "length" to
2066the vcpu's address space starting at "vcpu_addr". All parameters need to
Anatol Pomozovf884ab12013-05-08 16:56:16 -07002067be aligned by 1 megabyte.
Carsten Otte27e03932012-01-04 10:25:21 +01002068
Jan Kiszka414fa982012-04-24 16:40:15 +02002069
Alexander Grafe24ed812011-09-14 10:02:41 +020020704.66 KVM_S390_UCAS_UNMAP
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002071------------------------
Carsten Otte27e03932012-01-04 10:25:21 +01002072
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002073:Capability: KVM_CAP_S390_UCONTROL
2074:Architectures: s390
2075:Type: vcpu ioctl
2076:Parameters: struct kvm_s390_ucas_mapping (in)
2077:Returns: 0 in case of success
Carsten Otte27e03932012-01-04 10:25:21 +01002078
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002079The parameter is defined like this::
2080
Carsten Otte27e03932012-01-04 10:25:21 +01002081 struct kvm_s390_ucas_mapping {
2082 __u64 user_addr;
2083 __u64 vcpu_addr;
2084 __u64 length;
2085 };
2086
2087This ioctl unmaps the memory in the vcpu's address space starting at
2088"vcpu_addr" with the length "length". The field "user_addr" is ignored.
Anatol Pomozovf884ab12013-05-08 16:56:16 -07002089All parameters need to be aligned by 1 megabyte.
Carsten Otte27e03932012-01-04 10:25:21 +01002090
Jan Kiszka414fa982012-04-24 16:40:15 +02002091
Alexander Grafe24ed812011-09-14 10:02:41 +020020924.67 KVM_S390_VCPU_FAULT
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002093------------------------
Carsten Otteccc79102012-01-04 10:25:26 +01002094
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002095:Capability: KVM_CAP_S390_UCONTROL
2096:Architectures: s390
2097:Type: vcpu ioctl
2098:Parameters: vcpu absolute address (in)
2099:Returns: 0 in case of success
Carsten Otteccc79102012-01-04 10:25:26 +01002100
2101This call creates a page table entry on the virtual cpu's address space
2102(for user controlled virtual machines) or the virtual machine's address
2103space (for regular virtual machines). This only works for minor faults,
2104thus it's recommended to access subject memory page via the user page
2105table upfront. This is useful to handle validity intercepts for user
2106controlled virtual machines to fault in the virtual cpu's lowcore pages
2107prior to calling the KVM_RUN ioctl.
2108
Jan Kiszka414fa982012-04-24 16:40:15 +02002109
Alexander Grafe24ed812011-09-14 10:02:41 +020021104.68 KVM_SET_ONE_REG
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002111--------------------
Alexander Grafe24ed812011-09-14 10:02:41 +02002112
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002113:Capability: KVM_CAP_ONE_REG
2114:Architectures: all
2115:Type: vcpu ioctl
2116:Parameters: struct kvm_one_reg (in)
2117:Returns: 0 on success, negative value on failure
2118
Dave Martin395f5622019-01-15 17:02:08 +00002119Errors:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002120
2121 ====== ============================================================
2122  ENOENT   no such register
Janosch Frank68cf7b12019-06-14 13:11:21 +02002123  EINVAL   invalid register ID, or no such register or used with VMs in
2124 protected virtualization mode on s390
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002125  EPERM    (arm64) register access not allowed before vcpu finalization
2126 ====== ============================================================
2127
Dave Martinfe365b42019-04-12 12:59:47 +01002128(These error codes are indicative only: do not rely on a specific error
2129code being returned in a specific situation.)
Alexander Grafe24ed812011-09-14 10:02:41 +02002130
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002131::
2132
2133 struct kvm_one_reg {
Alexander Grafe24ed812011-09-14 10:02:41 +02002134 __u64 id;
2135 __u64 addr;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002136 };
Alexander Grafe24ed812011-09-14 10:02:41 +02002137
2138Using this ioctl, a single vcpu register can be set to a specific value
2139defined by user space with the passed in struct kvm_one_reg, where id
2140refers to the register identifier as described below and addr is a pointer
2141to a variable with the respective size. There can be architecture agnostic
2142and architecture specific registers. Each have their own range of operation
2143and their own constants and width. To keep track of the implemented
2144registers, find a list below:
2145
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002146 ======= =============================== ============
2147 Arch Register Width (bits)
2148 ======= =============================== ============
2149 PPC KVM_REG_PPC_HIOR 64
2150 PPC KVM_REG_PPC_IAC1 64
2151 PPC KVM_REG_PPC_IAC2 64
2152 PPC KVM_REG_PPC_IAC3 64
2153 PPC KVM_REG_PPC_IAC4 64
2154 PPC KVM_REG_PPC_DAC1 64
2155 PPC KVM_REG_PPC_DAC2 64
2156 PPC KVM_REG_PPC_DABR 64
2157 PPC KVM_REG_PPC_DSCR 64
2158 PPC KVM_REG_PPC_PURR 64
2159 PPC KVM_REG_PPC_SPURR 64
2160 PPC KVM_REG_PPC_DAR 64
2161 PPC KVM_REG_PPC_DSISR 32
2162 PPC KVM_REG_PPC_AMR 64
2163 PPC KVM_REG_PPC_UAMOR 64
2164 PPC KVM_REG_PPC_MMCR0 64
2165 PPC KVM_REG_PPC_MMCR1 64
2166 PPC KVM_REG_PPC_MMCRA 64
2167 PPC KVM_REG_PPC_MMCR2 64
2168 PPC KVM_REG_PPC_MMCRS 64
Athira Rajeev5752fe02020-07-17 10:38:17 -04002169 PPC KVM_REG_PPC_MMCR3 64
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002170 PPC KVM_REG_PPC_SIAR 64
2171 PPC KVM_REG_PPC_SDAR 64
2172 PPC KVM_REG_PPC_SIER 64
Athira Rajeev5752fe02020-07-17 10:38:17 -04002173 PPC KVM_REG_PPC_SIER2 64
2174 PPC KVM_REG_PPC_SIER3 64
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002175 PPC KVM_REG_PPC_PMC1 32
2176 PPC KVM_REG_PPC_PMC2 32
2177 PPC KVM_REG_PPC_PMC3 32
2178 PPC KVM_REG_PPC_PMC4 32
2179 PPC KVM_REG_PPC_PMC5 32
2180 PPC KVM_REG_PPC_PMC6 32
2181 PPC KVM_REG_PPC_PMC7 32
2182 PPC KVM_REG_PPC_PMC8 32
2183 PPC KVM_REG_PPC_FPR0 64
2184 ...
2185 PPC KVM_REG_PPC_FPR31 64
2186 PPC KVM_REG_PPC_VR0 128
2187 ...
2188 PPC KVM_REG_PPC_VR31 128
2189 PPC KVM_REG_PPC_VSR0 128
2190 ...
2191 PPC KVM_REG_PPC_VSR31 128
2192 PPC KVM_REG_PPC_FPSCR 64
2193 PPC KVM_REG_PPC_VSCR 32
2194 PPC KVM_REG_PPC_VPA_ADDR 64
2195 PPC KVM_REG_PPC_VPA_SLB 128
2196 PPC KVM_REG_PPC_VPA_DTL 128
2197 PPC KVM_REG_PPC_EPCR 32
2198 PPC KVM_REG_PPC_EPR 32
2199 PPC KVM_REG_PPC_TCR 32
2200 PPC KVM_REG_PPC_TSR 32
2201 PPC KVM_REG_PPC_OR_TSR 32
2202 PPC KVM_REG_PPC_CLEAR_TSR 32
2203 PPC KVM_REG_PPC_MAS0 32
2204 PPC KVM_REG_PPC_MAS1 32
2205 PPC KVM_REG_PPC_MAS2 64
2206 PPC KVM_REG_PPC_MAS7_3 64
2207 PPC KVM_REG_PPC_MAS4 32
2208 PPC KVM_REG_PPC_MAS6 32
2209 PPC KVM_REG_PPC_MMUCFG 32
2210 PPC KVM_REG_PPC_TLB0CFG 32
2211 PPC KVM_REG_PPC_TLB1CFG 32
2212 PPC KVM_REG_PPC_TLB2CFG 32
2213 PPC KVM_REG_PPC_TLB3CFG 32
2214 PPC KVM_REG_PPC_TLB0PS 32
2215 PPC KVM_REG_PPC_TLB1PS 32
2216 PPC KVM_REG_PPC_TLB2PS 32
2217 PPC KVM_REG_PPC_TLB3PS 32
2218 PPC KVM_REG_PPC_EPTCFG 32
2219 PPC KVM_REG_PPC_ICP_STATE 64
2220 PPC KVM_REG_PPC_VP_STATE 128
2221 PPC KVM_REG_PPC_TB_OFFSET 64
2222 PPC KVM_REG_PPC_SPMC1 32
2223 PPC KVM_REG_PPC_SPMC2 32
2224 PPC KVM_REG_PPC_IAMR 64
2225 PPC KVM_REG_PPC_TFHAR 64
2226 PPC KVM_REG_PPC_TFIAR 64
2227 PPC KVM_REG_PPC_TEXASR 64
2228 PPC KVM_REG_PPC_FSCR 64
2229 PPC KVM_REG_PPC_PSPB 32
2230 PPC KVM_REG_PPC_EBBHR 64
2231 PPC KVM_REG_PPC_EBBRR 64
2232 PPC KVM_REG_PPC_BESCR 64
2233 PPC KVM_REG_PPC_TAR 64
2234 PPC KVM_REG_PPC_DPDES 64
2235 PPC KVM_REG_PPC_DAWR 64
2236 PPC KVM_REG_PPC_DAWRX 64
2237 PPC KVM_REG_PPC_CIABR 64
2238 PPC KVM_REG_PPC_IC 64
2239 PPC KVM_REG_PPC_VTB 64
2240 PPC KVM_REG_PPC_CSIGR 64
2241 PPC KVM_REG_PPC_TACR 64
2242 PPC KVM_REG_PPC_TCSCR 64
2243 PPC KVM_REG_PPC_PID 64
2244 PPC KVM_REG_PPC_ACOP 64
2245 PPC KVM_REG_PPC_VRSAVE 32
2246 PPC KVM_REG_PPC_LPCR 32
2247 PPC KVM_REG_PPC_LPCR_64 64
2248 PPC KVM_REG_PPC_PPR 64
2249 PPC KVM_REG_PPC_ARCH_COMPAT 32
2250 PPC KVM_REG_PPC_DABRX 32
2251 PPC KVM_REG_PPC_WORT 64
2252 PPC KVM_REG_PPC_SPRG9 64
2253 PPC KVM_REG_PPC_DBSR 32
2254 PPC KVM_REG_PPC_TIDR 64
2255 PPC KVM_REG_PPC_PSSCR 64
2256 PPC KVM_REG_PPC_DEC_EXPIRY 64
2257 PPC KVM_REG_PPC_PTCR 64
2258 PPC KVM_REG_PPC_TM_GPR0 64
2259 ...
2260 PPC KVM_REG_PPC_TM_GPR31 64
2261 PPC KVM_REG_PPC_TM_VSR0 128
2262 ...
2263 PPC KVM_REG_PPC_TM_VSR63 128
2264 PPC KVM_REG_PPC_TM_CR 64
2265 PPC KVM_REG_PPC_TM_LR 64
2266 PPC KVM_REG_PPC_TM_CTR 64
2267 PPC KVM_REG_PPC_TM_FPSCR 64
2268 PPC KVM_REG_PPC_TM_AMR 64
2269 PPC KVM_REG_PPC_TM_PPR 64
2270 PPC KVM_REG_PPC_TM_VRSAVE 64
2271 PPC KVM_REG_PPC_TM_VSCR 32
2272 PPC KVM_REG_PPC_TM_DSCR 64
2273 PPC KVM_REG_PPC_TM_TAR 64
2274 PPC KVM_REG_PPC_TM_XER 64
2275
2276 MIPS KVM_REG_MIPS_R0 64
2277 ...
2278 MIPS KVM_REG_MIPS_R31 64
2279 MIPS KVM_REG_MIPS_HI 64
2280 MIPS KVM_REG_MIPS_LO 64
2281 MIPS KVM_REG_MIPS_PC 64
2282 MIPS KVM_REG_MIPS_CP0_INDEX 32
2283 MIPS KVM_REG_MIPS_CP0_ENTRYLO0 64
2284 MIPS KVM_REG_MIPS_CP0_ENTRYLO1 64
2285 MIPS KVM_REG_MIPS_CP0_CONTEXT 64
2286 MIPS KVM_REG_MIPS_CP0_CONTEXTCONFIG 32
2287 MIPS KVM_REG_MIPS_CP0_USERLOCAL 64
2288 MIPS KVM_REG_MIPS_CP0_XCONTEXTCONFIG 64
2289 MIPS KVM_REG_MIPS_CP0_PAGEMASK 32
2290 MIPS KVM_REG_MIPS_CP0_PAGEGRAIN 32
2291 MIPS KVM_REG_MIPS_CP0_SEGCTL0 64
2292 MIPS KVM_REG_MIPS_CP0_SEGCTL1 64
2293 MIPS KVM_REG_MIPS_CP0_SEGCTL2 64
2294 MIPS KVM_REG_MIPS_CP0_PWBASE 64
2295 MIPS KVM_REG_MIPS_CP0_PWFIELD 64
2296 MIPS KVM_REG_MIPS_CP0_PWSIZE 64
2297 MIPS KVM_REG_MIPS_CP0_WIRED 32
2298 MIPS KVM_REG_MIPS_CP0_PWCTL 32
2299 MIPS KVM_REG_MIPS_CP0_HWRENA 32
2300 MIPS KVM_REG_MIPS_CP0_BADVADDR 64
2301 MIPS KVM_REG_MIPS_CP0_BADINSTR 32
2302 MIPS KVM_REG_MIPS_CP0_BADINSTRP 32
2303 MIPS KVM_REG_MIPS_CP0_COUNT 32
2304 MIPS KVM_REG_MIPS_CP0_ENTRYHI 64
2305 MIPS KVM_REG_MIPS_CP0_COMPARE 32
2306 MIPS KVM_REG_MIPS_CP0_STATUS 32
2307 MIPS KVM_REG_MIPS_CP0_INTCTL 32
2308 MIPS KVM_REG_MIPS_CP0_CAUSE 32
2309 MIPS KVM_REG_MIPS_CP0_EPC 64
2310 MIPS KVM_REG_MIPS_CP0_PRID 32
2311 MIPS KVM_REG_MIPS_CP0_EBASE 64
2312 MIPS KVM_REG_MIPS_CP0_CONFIG 32
2313 MIPS KVM_REG_MIPS_CP0_CONFIG1 32
2314 MIPS KVM_REG_MIPS_CP0_CONFIG2 32
2315 MIPS KVM_REG_MIPS_CP0_CONFIG3 32
2316 MIPS KVM_REG_MIPS_CP0_CONFIG4 32
2317 MIPS KVM_REG_MIPS_CP0_CONFIG5 32
2318 MIPS KVM_REG_MIPS_CP0_CONFIG7 32
2319 MIPS KVM_REG_MIPS_CP0_XCONTEXT 64
2320 MIPS KVM_REG_MIPS_CP0_ERROREPC 64
2321 MIPS KVM_REG_MIPS_CP0_KSCRATCH1 64
2322 MIPS KVM_REG_MIPS_CP0_KSCRATCH2 64
2323 MIPS KVM_REG_MIPS_CP0_KSCRATCH3 64
2324 MIPS KVM_REG_MIPS_CP0_KSCRATCH4 64
2325 MIPS KVM_REG_MIPS_CP0_KSCRATCH5 64
2326 MIPS KVM_REG_MIPS_CP0_KSCRATCH6 64
2327 MIPS KVM_REG_MIPS_CP0_MAAR(0..63) 64
2328 MIPS KVM_REG_MIPS_COUNT_CTL 64
2329 MIPS KVM_REG_MIPS_COUNT_RESUME 64
2330 MIPS KVM_REG_MIPS_COUNT_HZ 64
2331 MIPS KVM_REG_MIPS_FPR_32(0..31) 32
2332 MIPS KVM_REG_MIPS_FPR_64(0..31) 64
2333 MIPS KVM_REG_MIPS_VEC_128(0..31) 128
2334 MIPS KVM_REG_MIPS_FCR_IR 32
2335 MIPS KVM_REG_MIPS_FCR_CSR 32
2336 MIPS KVM_REG_MIPS_MSA_IR 32
2337 MIPS KVM_REG_MIPS_MSA_CSR 32
2338 ======= =============================== ============
Jan Kiszka414fa982012-04-24 16:40:15 +02002339
Christoffer Dall749cf76c2013-01-20 18:28:06 -05002340ARM registers are mapped using the lower 32 bits. The upper 16 of that
2341is the register group type, or coprocessor number:
2342
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002343ARM core registers have the following id bit patterns::
2344
Christoffer Dallaa404dd2013-04-22 18:57:46 -07002345 0x4020 0000 0010 <index into the kvm_regs struct:16>
Christoffer Dall749cf76c2013-01-20 18:28:06 -05002346
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002347ARM 32-bit CP15 registers have the following id bit patterns::
2348
Christoffer Dallaa404dd2013-04-22 18:57:46 -07002349 0x4020 0000 000F <zero:1> <crn:4> <crm:4> <opc1:4> <opc2:3>
Christoffer Dall11382452013-01-20 18:28:10 -05002350
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002351ARM 64-bit CP15 registers have the following id bit patterns::
2352
Christoffer Dallaa404dd2013-04-22 18:57:46 -07002353 0x4030 0000 000F <zero:1> <zero:4> <crm:4> <opc1:4> <zero:3>
Christoffer Dall749cf76c2013-01-20 18:28:06 -05002354
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002355ARM CCSIDR registers are demultiplexed by CSSELR value::
2356
Christoffer Dallaa404dd2013-04-22 18:57:46 -07002357 0x4020 0000 0011 00 <csselr:8>
Christoffer Dall749cf76c2013-01-20 18:28:06 -05002358
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002359ARM 32-bit VFP control registers have the following id bit patterns::
2360
Christoffer Dallaa404dd2013-04-22 18:57:46 -07002361 0x4020 0000 0012 1 <regno:12>
Rusty Russell4fe21e42013-01-20 18:28:11 -05002362
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002363ARM 64-bit FP registers have the following id bit patterns::
2364
Christoffer Dallaa404dd2013-04-22 18:57:46 -07002365 0x4030 0000 0012 0 <regno:12>
Rusty Russell4fe21e42013-01-20 18:28:11 -05002366
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002367ARM firmware pseudo-registers have the following bit pattern::
2368
Marc Zyngier85bd0ba2018-01-21 16:42:56 +00002369 0x4030 0000 0014 <regno:16>
2370
Marc Zyngier379e04c72013-04-02 17:46:31 +01002371
2372arm64 registers are mapped using the lower 32 bits. The upper 16 of
2373that is the register group type, or coprocessor number:
2374
2375arm64 core/FP-SIMD registers have the following id bit patterns. Note
2376that the size of the access is variable, as the kvm_regs structure
2377contains elements ranging from 32 to 128 bits. The index is a 32bit
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002378value in the kvm_regs structure seen as a 32bit array::
2379
Marc Zyngier379e04c72013-04-02 17:46:31 +01002380 0x60x0 0000 0010 <index into the kvm_regs struct:16>
2381
Dave Martinfd3bc912018-09-28 14:39:26 +01002382Specifically:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002383
2384======================= ========= ===== =======================================
Dave Martinfd3bc912018-09-28 14:39:26 +01002385 Encoding Register Bits kvm_regs member
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002386======================= ========= ===== =======================================
Dave Martinfd3bc912018-09-28 14:39:26 +01002387 0x6030 0000 0010 0000 X0 64 regs.regs[0]
2388 0x6030 0000 0010 0002 X1 64 regs.regs[1]
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002389 ...
Dave Martinfd3bc912018-09-28 14:39:26 +01002390 0x6030 0000 0010 003c X30 64 regs.regs[30]
2391 0x6030 0000 0010 003e SP 64 regs.sp
2392 0x6030 0000 0010 0040 PC 64 regs.pc
2393 0x6030 0000 0010 0042 PSTATE 64 regs.pstate
2394 0x6030 0000 0010 0044 SP_EL1 64 sp_el1
2395 0x6030 0000 0010 0046 ELR_EL1 64 elr_el1
2396 0x6030 0000 0010 0048 SPSR_EL1 64 spsr[KVM_SPSR_EL1] (alias SPSR_SVC)
2397 0x6030 0000 0010 004a SPSR_ABT 64 spsr[KVM_SPSR_ABT]
2398 0x6030 0000 0010 004c SPSR_UND 64 spsr[KVM_SPSR_UND]
2399 0x6030 0000 0010 004e SPSR_IRQ 64 spsr[KVM_SPSR_IRQ]
2400 0x6060 0000 0010 0050 SPSR_FIQ 64 spsr[KVM_SPSR_FIQ]
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002401 0x6040 0000 0010 0054 V0 128 fp_regs.vregs[0] [1]_
2402 0x6040 0000 0010 0058 V1 128 fp_regs.vregs[1] [1]_
2403 ...
2404 0x6040 0000 0010 00d0 V31 128 fp_regs.vregs[31] [1]_
Dave Martinfd3bc912018-09-28 14:39:26 +01002405 0x6020 0000 0010 00d4 FPSR 32 fp_regs.fpsr
2406 0x6020 0000 0010 00d5 FPCR 32 fp_regs.fpcr
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002407======================= ========= ===== =======================================
Dave Martinfd3bc912018-09-28 14:39:26 +01002408
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002409.. [1] These encodings are not accepted for SVE-enabled vcpus. See
2410 KVM_ARM_VCPU_INIT.
Dave Martin50036ad2018-09-28 14:39:27 +01002411
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002412 The equivalent register content can be accessed via bits [127:0] of
2413 the corresponding SVE Zn registers instead for vcpus that have SVE
2414 enabled (see below).
Dave Martin50036ad2018-09-28 14:39:27 +01002415
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002416arm64 CCSIDR registers are demultiplexed by CSSELR value::
2417
Marc Zyngier379e04c72013-04-02 17:46:31 +01002418 0x6020 0000 0011 00 <csselr:8>
2419
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002420arm64 system registers have the following id bit patterns::
2421
Marc Zyngier379e04c72013-04-02 17:46:31 +01002422 0x6030 0000 0013 <op0:2> <op1:3> <crn:4> <crm:4> <op2:3>
2423
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002424.. warning::
2425
Andrew Jones290a6bb2020-01-20 14:08:25 +01002426 Two system register IDs do not follow the specified pattern. These
2427 are KVM_REG_ARM_TIMER_CVAL and KVM_REG_ARM_TIMER_CNT, which map to
2428 system registers CNTV_CVAL_EL0 and CNTVCT_EL0 respectively. These
2429 two had their values accidentally swapped, which means TIMER_CVAL is
2430 derived from the register encoding for CNTVCT_EL0 and TIMER_CNT is
2431 derived from the register encoding for CNTV_CVAL_EL0. As this is
2432 API, it must remain this way.
2433
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002434arm64 firmware pseudo-registers have the following bit pattern::
2435
Marc Zyngier85bd0ba2018-01-21 16:42:56 +00002436 0x6030 0000 0014 <regno:16>
2437
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002438arm64 SVE registers have the following bit patterns::
2439
Dave Martin50036ad2018-09-28 14:39:27 +01002440 0x6080 0000 0015 00 <n:5> <slice:5> Zn bits[2048*slice + 2047 : 2048*slice]
2441 0x6050 0000 0015 04 <n:4> <slice:5> Pn bits[256*slice + 255 : 256*slice]
2442 0x6050 0000 0015 060 <slice:5> FFR bits[256*slice + 255 : 256*slice]
2443 0x6060 0000 0015 ffff KVM_REG_ARM64_SVE_VLS pseudo-register
2444
Dave Martin43b8e1f2019-04-12 13:25:38 +01002445Access to register IDs where 2048 * slice >= 128 * max_vq will fail with
2446ENOENT. max_vq is the vcpu's maximum supported vector length in 128-bit
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002447quadwords: see [2]_ below.
Dave Martin50036ad2018-09-28 14:39:27 +01002448
2449These registers are only accessible on vcpus for which SVE is enabled.
2450See KVM_ARM_VCPU_INIT for details.
2451
2452In addition, except for KVM_REG_ARM64_SVE_VLS, these registers are not
2453accessible until the vcpu's SVE configuration has been finalized
2454using KVM_ARM_VCPU_FINALIZE(KVM_ARM_VCPU_SVE). See KVM_ARM_VCPU_INIT
2455and KVM_ARM_VCPU_FINALIZE for more information about this procedure.
2456
2457KVM_REG_ARM64_SVE_VLS is a pseudo-register that allows the set of vector
2458lengths supported by the vcpu to be discovered and configured by
2459userspace. When transferred to or from user memory via KVM_GET_ONE_REG
Dave Martin4bd774e2019-04-11 17:09:59 +01002460or KVM_SET_ONE_REG, the value of this register is of type
2461__u64[KVM_ARM64_SVE_VLS_WORDS], and encodes the set of vector lengths as
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002462follows::
Dave Martin50036ad2018-09-28 14:39:27 +01002463
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002464 __u64 vector_lengths[KVM_ARM64_SVE_VLS_WORDS];
Dave Martin50036ad2018-09-28 14:39:27 +01002465
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002466 if (vq >= SVE_VQ_MIN && vq <= SVE_VQ_MAX &&
2467 ((vector_lengths[(vq - KVM_ARM64_SVE_VQ_MIN) / 64] >>
Dave Martin4bd774e2019-04-11 17:09:59 +01002468 ((vq - KVM_ARM64_SVE_VQ_MIN) % 64)) & 1))
Dave Martin50036ad2018-09-28 14:39:27 +01002469 /* Vector length vq * 16 bytes supported */
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002470 else
Dave Martin50036ad2018-09-28 14:39:27 +01002471 /* Vector length vq * 16 bytes not supported */
2472
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002473.. [2] The maximum value vq for which the above condition is true is
2474 max_vq. This is the maximum vector length available to the guest on
2475 this vcpu, and determines which register slices are visible through
2476 this ioctl interface.
Dave Martin50036ad2018-09-28 14:39:27 +01002477
Mauro Carvalho Chehabb693d0b2019-06-12 14:52:38 -03002478(See Documentation/arm64/sve.rst for an explanation of the "vq"
Dave Martin50036ad2018-09-28 14:39:27 +01002479nomenclature.)
2480
2481KVM_REG_ARM64_SVE_VLS is only accessible after KVM_ARM_VCPU_INIT.
2482KVM_ARM_VCPU_INIT initialises it to the best set of vector lengths that
2483the host supports.
2484
2485Userspace may subsequently modify it if desired until the vcpu's SVE
2486configuration is finalized using KVM_ARM_VCPU_FINALIZE(KVM_ARM_VCPU_SVE).
2487
2488Apart from simply removing all vector lengths from the host set that
2489exceed some value, support for arbitrarily chosen sets of vector lengths
2490is hardware-dependent and may not be available. Attempting to configure
2491an invalid set of vector lengths via KVM_SET_ONE_REG will fail with
2492EINVAL.
2493
2494After the vcpu's SVE configuration is finalized, further attempts to
2495write this register will fail with EPERM.
2496
James Hoganc2d2c212014-07-04 15:11:35 +01002497
2498MIPS registers are mapped using the lower 32 bits. The upper 16 of that is
2499the register group type:
2500
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002501MIPS core registers (see above) have the following id bit patterns::
2502
James Hoganc2d2c212014-07-04 15:11:35 +01002503 0x7030 0000 0000 <reg:16>
2504
2505MIPS CP0 registers (see KVM_REG_MIPS_CP0_* above) have the following id bit
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002506patterns depending on whether they're 32-bit or 64-bit registers::
2507
James Hoganc2d2c212014-07-04 15:11:35 +01002508 0x7020 0000 0001 00 <reg:5> <sel:3> (32-bit)
2509 0x7030 0000 0001 00 <reg:5> <sel:3> (64-bit)
2510
James Hogan013044c2016-12-07 17:16:37 +00002511Note: KVM_REG_MIPS_CP0_ENTRYLO0 and KVM_REG_MIPS_CP0_ENTRYLO1 are the MIPS64
2512versions of the EntryLo registers regardless of the word size of the host
2513hardware, host kernel, guest, and whether XPA is present in the guest, i.e.
2514with the RI and XI bits (if they exist) in bits 63 and 62 respectively, and
2515the PFNX field starting at bit 30.
2516
James Hogand42a0082017-03-14 10:15:38 +00002517MIPS MAARs (see KVM_REG_MIPS_CP0_MAAR(*) above) have the following id bit
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002518patterns::
2519
James Hogand42a0082017-03-14 10:15:38 +00002520 0x7030 0000 0001 01 <reg:8>
2521
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002522MIPS KVM control registers (see above) have the following id bit patterns::
2523
James Hoganc2d2c212014-07-04 15:11:35 +01002524 0x7030 0000 0002 <reg:16>
2525
James Hogan379245c2014-12-02 15:48:24 +00002526MIPS FPU registers (see KVM_REG_MIPS_FPR_{32,64}() above) have the following
2527id bit patterns depending on the size of the register being accessed. They are
2528always accessed according to the current guest FPU mode (Status.FR and
2529Config5.FRE), i.e. as the guest would see them, and they become unpredictable
James Hoganab86bd62014-12-02 15:48:24 +00002530if the guest FPU mode is changed. MIPS SIMD Architecture (MSA) vector
2531registers (see KVM_REG_MIPS_VEC_128() above) have similar patterns as they
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002532overlap the FPU registers::
2533
James Hogan379245c2014-12-02 15:48:24 +00002534 0x7020 0000 0003 00 <0:3> <reg:5> (32-bit FPU registers)
2535 0x7030 0000 0003 00 <0:3> <reg:5> (64-bit FPU registers)
James Hoganab86bd62014-12-02 15:48:24 +00002536 0x7040 0000 0003 00 <0:3> <reg:5> (128-bit MSA vector registers)
James Hogan379245c2014-12-02 15:48:24 +00002537
2538MIPS FPU control registers (see KVM_REG_MIPS_FCR_{IR,CSR} above) have the
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002539following id bit patterns::
2540
James Hogan379245c2014-12-02 15:48:24 +00002541 0x7020 0000 0003 01 <0:3> <reg:5>
2542
James Hoganab86bd62014-12-02 15:48:24 +00002543MIPS MSA control registers (see KVM_REG_MIPS_MSA_{IR,CSR} above) have the
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002544following id bit patterns::
2545
James Hoganab86bd62014-12-02 15:48:24 +00002546 0x7020 0000 0003 02 <0:3> <reg:5>
2547
James Hoganc2d2c212014-07-04 15:11:35 +01002548
Alexander Grafe24ed812011-09-14 10:02:41 +020025494.69 KVM_GET_ONE_REG
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002550--------------------
Alexander Grafe24ed812011-09-14 10:02:41 +02002551
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002552:Capability: KVM_CAP_ONE_REG
2553:Architectures: all
2554:Type: vcpu ioctl
2555:Parameters: struct kvm_one_reg (in and out)
2556:Returns: 0 on success, negative value on failure
2557
Dave Martinfe365b42019-04-12 12:59:47 +01002558Errors include:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002559
2560 ======== ============================================================
2561  ENOENT   no such register
Janosch Frank68cf7b12019-06-14 13:11:21 +02002562  EINVAL   invalid register ID, or no such register or used with VMs in
2563 protected virtualization mode on s390
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002564  EPERM    (arm64) register access not allowed before vcpu finalization
2565 ======== ============================================================
2566
Dave Martinfe365b42019-04-12 12:59:47 +01002567(These error codes are indicative only: do not rely on a specific error
2568code being returned in a specific situation.)
Alexander Grafe24ed812011-09-14 10:02:41 +02002569
2570This ioctl allows to receive the value of a single register implemented
2571in a vcpu. The register to read is indicated by the "id" field of the
2572kvm_one_reg struct passed in. On success, the register value can be found
2573at the memory location pointed to by "addr".
2574
2575The list of registers accessible using this interface is identical to the
Bharat Bhushan2e232702012-08-15 17:37:13 +00002576list in 4.68.
Alexander Grafe24ed812011-09-14 10:02:41 +02002577
Jan Kiszka414fa982012-04-24 16:40:15 +02002578
Eric B Munson1c0b28c2012-03-10 14:37:27 -050025794.70 KVM_KVMCLOCK_CTRL
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002580----------------------
Eric B Munson1c0b28c2012-03-10 14:37:27 -05002581
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002582:Capability: KVM_CAP_KVMCLOCK_CTRL
2583:Architectures: Any that implement pvclocks (currently x86 only)
2584:Type: vcpu ioctl
2585:Parameters: None
2586:Returns: 0 on success, -1 on error
Eric B Munson1c0b28c2012-03-10 14:37:27 -05002587
Joshua Abraham35c59992020-05-01 18:36:24 -04002588This ioctl sets a flag accessible to the guest indicating that the specified
2589vCPU has been paused by the host userspace.
2590
2591The host will set a flag in the pvclock structure that is checked from the
2592soft lockup watchdog. The flag is part of the pvclock structure that is
2593shared between guest and host, specifically the second bit of the flags
Eric B Munson1c0b28c2012-03-10 14:37:27 -05002594field of the pvclock_vcpu_time_info structure. It will be set exclusively by
2595the host and read/cleared exclusively by the guest. The guest operation of
Joshua Abraham35c59992020-05-01 18:36:24 -04002596checking and clearing the flag must be an atomic operation so
Eric B Munson1c0b28c2012-03-10 14:37:27 -05002597load-link/store-conditional, or equivalent must be used. There are two cases
2598where the guest will clear the flag: when the soft lockup watchdog timer resets
2599itself or when a soft lockup is detected. This ioctl can be called any time
2600after pausing the vcpu, but before it is resumed.
2601
Jan Kiszka414fa982012-04-24 16:40:15 +02002602
Jan Kiszka07975ad2012-03-29 21:14:12 +020026034.71 KVM_SIGNAL_MSI
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002604-------------------
Jan Kiszka07975ad2012-03-29 21:14:12 +02002605
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002606:Capability: KVM_CAP_SIGNAL_MSI
2607:Architectures: x86 arm arm64
2608:Type: vm ioctl
2609:Parameters: struct kvm_msi (in)
2610:Returns: >0 on delivery, 0 if guest blocked the MSI, and -1 on error
Jan Kiszka07975ad2012-03-29 21:14:12 +02002611
2612Directly inject a MSI message. Only valid with in-kernel irqchip that handles
2613MSI messages.
2614
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002615::
2616
2617 struct kvm_msi {
Jan Kiszka07975ad2012-03-29 21:14:12 +02002618 __u32 address_lo;
2619 __u32 address_hi;
2620 __u32 data;
2621 __u32 flags;
Andre Przywara2b8ddd92016-07-15 12:43:24 +01002622 __u32 devid;
2623 __u8 pad[12];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002624 };
Jan Kiszka07975ad2012-03-29 21:14:12 +02002625
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002626flags:
2627 KVM_MSI_VALID_DEVID: devid contains a valid value. The per-VM
Paolo Bonzini6f49b2f2016-08-04 13:59:56 +02002628 KVM_CAP_MSI_DEVID capability advertises the requirement to provide
2629 the device ID. If this capability is not available, userspace
2630 should never set the KVM_MSI_VALID_DEVID flag as the ioctl might fail.
Andre Przywara2b8ddd92016-07-15 12:43:24 +01002631
Paolo Bonzini6f49b2f2016-08-04 13:59:56 +02002632If KVM_MSI_VALID_DEVID is set, devid contains a unique device identifier
2633for the device that wrote the MSI message. For PCI, this is usually a
2634BFD identifier in the lower 16 bits.
Jan Kiszka07975ad2012-03-29 21:14:12 +02002635
Paolo Bonzini055b6ae2016-08-04 14:01:05 +02002636On x86, address_hi is ignored unless the KVM_X2APIC_API_USE_32BIT_IDS
2637feature of KVM_CAP_X2APIC_API capability is enabled. If it is enabled,
2638address_hi bits 31-8 provide bits 31-8 of the destination id. Bits 7-0 of
2639address_hi must be zero.
Radim Krčmář371313132016-07-12 22:09:27 +02002640
Jan Kiszka414fa982012-04-24 16:40:15 +02002641
Jan Kiszka0589ff62012-04-24 16:40:16 +020026424.71 KVM_CREATE_PIT2
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002643--------------------
Jan Kiszka0589ff62012-04-24 16:40:16 +02002644
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002645:Capability: KVM_CAP_PIT2
2646:Architectures: x86
2647:Type: vm ioctl
2648:Parameters: struct kvm_pit_config (in)
2649:Returns: 0 on success, -1 on error
Jan Kiszka0589ff62012-04-24 16:40:16 +02002650
2651Creates an in-kernel device model for the i8254 PIT. This call is only valid
2652after enabling in-kernel irqchip support via KVM_CREATE_IRQCHIP. The following
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002653parameters have to be passed::
Jan Kiszka0589ff62012-04-24 16:40:16 +02002654
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002655 struct kvm_pit_config {
Jan Kiszka0589ff62012-04-24 16:40:16 +02002656 __u32 flags;
2657 __u32 pad[15];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002658 };
Jan Kiszka0589ff62012-04-24 16:40:16 +02002659
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002660Valid flags are::
Jan Kiszka0589ff62012-04-24 16:40:16 +02002661
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002662 #define KVM_PIT_SPEAKER_DUMMY 1 /* emulate speaker port stub */
Jan Kiszka0589ff62012-04-24 16:40:16 +02002663
Jan Kiszkab6ddf052012-04-24 16:40:17 +02002664PIT timer interrupts may use a per-VM kernel thread for injection. If it
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002665exists, this thread will have a name of the following pattern::
Jan Kiszkab6ddf052012-04-24 16:40:17 +02002666
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002667 kvm-pit/<owner-process-pid>
Jan Kiszkab6ddf052012-04-24 16:40:17 +02002668
2669When running a guest with elevated priorities, the scheduling parameters of
2670this thread may have to be adjusted accordingly.
2671
Jan Kiszka0589ff62012-04-24 16:40:16 +02002672This IOCTL replaces the obsolete KVM_CREATE_PIT.
2673
2674
26754.72 KVM_GET_PIT2
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002676-----------------
Jan Kiszka0589ff62012-04-24 16:40:16 +02002677
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002678:Capability: KVM_CAP_PIT_STATE2
2679:Architectures: x86
2680:Type: vm ioctl
2681:Parameters: struct kvm_pit_state2 (out)
2682:Returns: 0 on success, -1 on error
Jan Kiszka0589ff62012-04-24 16:40:16 +02002683
2684Retrieves the state of the in-kernel PIT model. Only valid after
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002685KVM_CREATE_PIT2. The state is returned in the following structure::
Jan Kiszka0589ff62012-04-24 16:40:16 +02002686
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002687 struct kvm_pit_state2 {
Jan Kiszka0589ff62012-04-24 16:40:16 +02002688 struct kvm_pit_channel_state channels[3];
2689 __u32 flags;
2690 __u32 reserved[9];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002691 };
Jan Kiszka0589ff62012-04-24 16:40:16 +02002692
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002693Valid flags are::
Jan Kiszka0589ff62012-04-24 16:40:16 +02002694
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002695 /* disable PIT in HPET legacy mode */
2696 #define KVM_PIT_FLAGS_HPET_LEGACY 0x00000001
Jan Kiszka0589ff62012-04-24 16:40:16 +02002697
2698This IOCTL replaces the obsolete KVM_GET_PIT.
2699
2700
27014.73 KVM_SET_PIT2
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002702-----------------
Jan Kiszka0589ff62012-04-24 16:40:16 +02002703
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002704:Capability: KVM_CAP_PIT_STATE2
2705:Architectures: x86
2706:Type: vm ioctl
2707:Parameters: struct kvm_pit_state2 (in)
2708:Returns: 0 on success, -1 on error
Jan Kiszka0589ff62012-04-24 16:40:16 +02002709
2710Sets the state of the in-kernel PIT model. Only valid after KVM_CREATE_PIT2.
2711See KVM_GET_PIT2 for details on struct kvm_pit_state2.
2712
2713This IOCTL replaces the obsolete KVM_SET_PIT.
2714
2715
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +000027164.74 KVM_PPC_GET_SMMU_INFO
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002717--------------------------
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00002718
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002719:Capability: KVM_CAP_PPC_GET_SMMU_INFO
2720:Architectures: powerpc
2721:Type: vm ioctl
2722:Parameters: None
2723:Returns: 0 on success, -1 on error
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00002724
2725This populates and returns a structure describing the features of
2726the "Server" class MMU emulation supported by KVM.
Stefan Hubercc22c352013-06-05 12:24:37 +02002727This can in turn be used by userspace to generate the appropriate
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00002728device-tree properties for the guest operating system.
2729
Carlos Garciac98be0c2014-04-04 22:31:00 -04002730The structure contains some global information, followed by an
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002731array of supported segment page sizes::
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00002732
2733 struct kvm_ppc_smmu_info {
2734 __u64 flags;
2735 __u32 slb_size;
2736 __u32 pad;
2737 struct kvm_ppc_one_seg_page_size sps[KVM_PPC_PAGE_SIZES_MAX_SZ];
2738 };
2739
2740The supported flags are:
2741
2742 - KVM_PPC_PAGE_SIZES_REAL:
2743 When that flag is set, guest page sizes must "fit" the backing
2744 store page sizes. When not set, any page size in the list can
2745 be used regardless of how they are backed by userspace.
2746
2747 - KVM_PPC_1T_SEGMENTS
2748 The emulated MMU supports 1T segments in addition to the
2749 standard 256M ones.
2750
Paul Mackerras901f8c32018-10-08 14:24:30 +11002751 - KVM_PPC_NO_HASH
2752 This flag indicates that HPT guests are not supported by KVM,
2753 thus all guests must use radix MMU mode.
2754
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00002755The "slb_size" field indicates how many SLB entries are supported
2756
2757The "sps" array contains 8 entries indicating the supported base
2758page sizes for a segment in increasing order. Each entry is defined
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002759as follow::
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00002760
2761 struct kvm_ppc_one_seg_page_size {
2762 __u32 page_shift; /* Base page shift of segment (or 0) */
2763 __u32 slb_enc; /* SLB encoding for BookS */
2764 struct kvm_ppc_one_page_size enc[KVM_PPC_PAGE_SIZES_MAX_SZ];
2765 };
2766
2767An entry with a "page_shift" of 0 is unused. Because the array is
2768organized in increasing order, a lookup can stop when encoutering
2769such an entry.
2770
2771The "slb_enc" field provides the encoding to use in the SLB for the
2772page size. The bits are in positions such as the value can directly
2773be OR'ed into the "vsid" argument of the slbmte instruction.
2774
2775The "enc" array is a list which for each of those segment base page
2776size provides the list of supported actual page sizes (which can be
2777only larger or equal to the base page size), along with the
Anatol Pomozovf884ab12013-05-08 16:56:16 -07002778corresponding encoding in the hash PTE. Similarly, the array is
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +000027798 entries sorted by increasing sizes and an entry with a "0" shift
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002780is an empty entry and a terminator::
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00002781
2782 struct kvm_ppc_one_page_size {
2783 __u32 page_shift; /* Page shift (or 0) */
2784 __u32 pte_enc; /* Encoding in the HPTE (>>12) */
2785 };
2786
2787The "pte_enc" field provides a value that can OR'ed into the hash
2788PTE's RPN field (ie, it needs to be shifted left by 12 to OR it
2789into the hash PTE second double word).
2790
Alex Williamsonf36992e2012-06-29 09:56:16 -060027914.75 KVM_IRQFD
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002792--------------
Alex Williamsonf36992e2012-06-29 09:56:16 -06002793
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002794:Capability: KVM_CAP_IRQFD
2795:Architectures: x86 s390 arm arm64
2796:Type: vm ioctl
2797:Parameters: struct kvm_irqfd (in)
2798:Returns: 0 on success, -1 on error
Alex Williamsonf36992e2012-06-29 09:56:16 -06002799
2800Allows setting an eventfd to directly trigger a guest interrupt.
2801kvm_irqfd.fd specifies the file descriptor to use as the eventfd and
2802kvm_irqfd.gsi specifies the irqchip pin toggled by this event. When
Masanari Iida17180032013-12-22 01:21:23 +09002803an event is triggered on the eventfd, an interrupt is injected into
Alex Williamsonf36992e2012-06-29 09:56:16 -06002804the guest using the specified gsi pin. The irqfd is removed using
2805the KVM_IRQFD_FLAG_DEASSIGN flag, specifying both kvm_irqfd.fd
2806and kvm_irqfd.gsi.
2807
Alex Williamson7a844282012-09-21 11:58:03 -06002808With KVM_CAP_IRQFD_RESAMPLE, KVM_IRQFD supports a de-assert and notify
2809mechanism allowing emulation of level-triggered, irqfd-based
2810interrupts. When KVM_IRQFD_FLAG_RESAMPLE is set the user must pass an
2811additional eventfd in the kvm_irqfd.resamplefd field. When operating
2812in resample mode, posting of an interrupt through kvm_irq.fd asserts
2813the specified gsi in the irqchip. When the irqchip is resampled, such
Masanari Iida17180032013-12-22 01:21:23 +09002814as from an EOI, the gsi is de-asserted and the user is notified via
Alex Williamson7a844282012-09-21 11:58:03 -06002815kvm_irqfd.resamplefd. It is the user's responsibility to re-queue
2816the interrupt if the device making use of it still requires service.
2817Note that closing the resamplefd is not sufficient to disable the
2818irqfd. The KVM_IRQFD_FLAG_RESAMPLE is only necessary on assignment
2819and need not be specified with KVM_IRQFD_FLAG_DEASSIGN.
2820
Eric Auger180ae7b2016-07-22 16:20:41 +00002821On arm/arm64, gsi routing being supported, the following can happen:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002822
Eric Auger180ae7b2016-07-22 16:20:41 +00002823- in case no routing entry is associated to this gsi, injection fails
2824- in case the gsi is associated to an irqchip routing entry,
2825 irqchip.pin + 32 corresponds to the injected SPI ID.
Eric Auger995a0ee2016-07-22 16:20:42 +00002826- in case the gsi is associated to an MSI routing entry, the MSI
2827 message and device ID are translated into an LPI (support restricted
2828 to GICv3 ITS in-kernel emulation).
Eric Auger174178f2015-03-04 11:14:36 +01002829
Linus Torvalds5fecc9d2012-07-24 12:01:20 -070028304.76 KVM_PPC_ALLOCATE_HTAB
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002831--------------------------
Paul Mackerras32fad282012-05-04 02:32:53 +00002832
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002833:Capability: KVM_CAP_PPC_ALLOC_HTAB
2834:Architectures: powerpc
2835:Type: vm ioctl
2836:Parameters: Pointer to u32 containing hash table order (in/out)
2837:Returns: 0 on success, -1 on error
Paul Mackerras32fad282012-05-04 02:32:53 +00002838
2839This requests the host kernel to allocate an MMU hash table for a
2840guest using the PAPR paravirtualization interface. This only does
2841anything if the kernel is configured to use the Book 3S HV style of
2842virtualization. Otherwise the capability doesn't exist and the ioctl
2843returns an ENOTTY error. The rest of this description assumes Book 3S
2844HV.
2845
2846There must be no vcpus running when this ioctl is called; if there
2847are, it will do nothing and return an EBUSY error.
2848
2849The parameter is a pointer to a 32-bit unsigned integer variable
2850containing the order (log base 2) of the desired size of the hash
2851table, which must be between 18 and 46. On successful return from the
David Gibsonf98a8bf2016-12-20 16:49:03 +11002852ioctl, the value will not be changed by the kernel.
Paul Mackerras32fad282012-05-04 02:32:53 +00002853
2854If no hash table has been allocated when any vcpu is asked to run
2855(with the KVM_RUN ioctl), the host kernel will allocate a
2856default-sized hash table (16 MB).
2857
2858If this ioctl is called when a hash table has already been allocated,
David Gibsonf98a8bf2016-12-20 16:49:03 +11002859with a different order from the existing hash table, the existing hash
2860table will be freed and a new one allocated. If this is ioctl is
2861called when a hash table has already been allocated of the same order
2862as specified, the kernel will clear out the existing hash table (zero
2863all HPTEs). In either case, if the guest is using the virtualized
2864real-mode area (VRMA) facility, the kernel will re-create the VMRA
2865HPTEs on the next KVM_RUN of any vcpu.
Paul Mackerras32fad282012-05-04 02:32:53 +00002866
Cornelia Huck416ad652012-10-02 16:25:37 +020028674.77 KVM_S390_INTERRUPT
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002868-----------------------
Cornelia Huck416ad652012-10-02 16:25:37 +02002869
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002870:Capability: basic
2871:Architectures: s390
2872:Type: vm ioctl, vcpu ioctl
2873:Parameters: struct kvm_s390_interrupt (in)
2874:Returns: 0 on success, -1 on error
Cornelia Huck416ad652012-10-02 16:25:37 +02002875
2876Allows to inject an interrupt to the guest. Interrupts can be floating
2877(vm ioctl) or per cpu (vcpu ioctl), depending on the interrupt type.
2878
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002879Interrupt parameters are passed via kvm_s390_interrupt::
Cornelia Huck416ad652012-10-02 16:25:37 +02002880
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002881 struct kvm_s390_interrupt {
Cornelia Huck416ad652012-10-02 16:25:37 +02002882 __u32 type;
2883 __u32 parm;
2884 __u64 parm64;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002885 };
Cornelia Huck416ad652012-10-02 16:25:37 +02002886
2887type can be one of the following:
2888
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002889KVM_S390_SIGP_STOP (vcpu)
2890 - sigp stop; optional flags in parm
2891KVM_S390_PROGRAM_INT (vcpu)
2892 - program check; code in parm
2893KVM_S390_SIGP_SET_PREFIX (vcpu)
2894 - sigp set prefix; prefix address in parm
2895KVM_S390_RESTART (vcpu)
2896 - restart
2897KVM_S390_INT_CLOCK_COMP (vcpu)
2898 - clock comparator interrupt
2899KVM_S390_INT_CPU_TIMER (vcpu)
2900 - CPU timer interrupt
2901KVM_S390_INT_VIRTIO (vm)
2902 - virtio external interrupt; external interrupt
2903 parameters in parm and parm64
2904KVM_S390_INT_SERVICE (vm)
2905 - sclp external interrupt; sclp parameter in parm
2906KVM_S390_INT_EMERGENCY (vcpu)
2907 - sigp emergency; source cpu in parm
2908KVM_S390_INT_EXTERNAL_CALL (vcpu)
2909 - sigp external call; source cpu in parm
2910KVM_S390_INT_IO(ai,cssid,ssid,schid) (vm)
2911 - compound value to indicate an
2912 I/O interrupt (ai - adapter interrupt; cssid,ssid,schid - subchannel);
2913 I/O interruption parameters in parm (subchannel) and parm64 (intparm,
2914 interruption subclass)
2915KVM_S390_MCHK (vm, vcpu)
2916 - machine check interrupt; cr 14 bits in parm, machine check interrupt
2917 code in parm64 (note that machine checks needing further payload are not
2918 supported by this ioctl)
Cornelia Huck416ad652012-10-02 16:25:37 +02002919
Sean Christopherson5e124902019-02-15 12:48:38 -08002920This is an asynchronous vcpu ioctl and can be invoked from any thread.
Cornelia Huck416ad652012-10-02 16:25:37 +02002921
Paul Mackerrasa2932922012-11-19 22:57:20 +000029224.78 KVM_PPC_GET_HTAB_FD
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002923------------------------
Paul Mackerrasa2932922012-11-19 22:57:20 +00002924
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002925:Capability: KVM_CAP_PPC_HTAB_FD
2926:Architectures: powerpc
2927:Type: vm ioctl
2928:Parameters: Pointer to struct kvm_get_htab_fd (in)
2929:Returns: file descriptor number (>= 0) on success, -1 on error
Paul Mackerrasa2932922012-11-19 22:57:20 +00002930
2931This returns a file descriptor that can be used either to read out the
2932entries in the guest's hashed page table (HPT), or to write entries to
2933initialize the HPT. The returned fd can only be written to if the
2934KVM_GET_HTAB_WRITE bit is set in the flags field of the argument, and
2935can only be read if that bit is clear. The argument struct looks like
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002936this::
Paul Mackerrasa2932922012-11-19 22:57:20 +00002937
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002938 /* For KVM_PPC_GET_HTAB_FD */
2939 struct kvm_get_htab_fd {
Paul Mackerrasa2932922012-11-19 22:57:20 +00002940 __u64 flags;
2941 __u64 start_index;
2942 __u64 reserved[2];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002943 };
Paul Mackerrasa2932922012-11-19 22:57:20 +00002944
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002945 /* Values for kvm_get_htab_fd.flags */
2946 #define KVM_GET_HTAB_BOLTED_ONLY ((__u64)0x1)
2947 #define KVM_GET_HTAB_WRITE ((__u64)0x2)
Paul Mackerrasa2932922012-11-19 22:57:20 +00002948
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002949The 'start_index' field gives the index in the HPT of the entry at
Paul Mackerrasa2932922012-11-19 22:57:20 +00002950which to start reading. It is ignored when writing.
2951
2952Reads on the fd will initially supply information about all
2953"interesting" HPT entries. Interesting entries are those with the
2954bolted bit set, if the KVM_GET_HTAB_BOLTED_ONLY bit is set, otherwise
2955all entries. When the end of the HPT is reached, the read() will
2956return. If read() is called again on the fd, it will start again from
2957the beginning of the HPT, but will only return HPT entries that have
2958changed since they were last read.
2959
2960Data read or written is structured as a header (8 bytes) followed by a
2961series of valid HPT entries (16 bytes) each. The header indicates how
2962many valid HPT entries there are and how many invalid entries follow
2963the valid entries. The invalid entries are not represented explicitly
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002964in the stream. The header format is::
Paul Mackerrasa2932922012-11-19 22:57:20 +00002965
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002966 struct kvm_get_htab_header {
Paul Mackerrasa2932922012-11-19 22:57:20 +00002967 __u32 index;
2968 __u16 n_valid;
2969 __u16 n_invalid;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002970 };
Paul Mackerrasa2932922012-11-19 22:57:20 +00002971
2972Writes to the fd create HPT entries starting at the index given in the
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002973header; first 'n_valid' valid entries with contents from the data
2974written, then 'n_invalid' invalid entries, invalidating any previously
Paul Mackerrasa2932922012-11-19 22:57:20 +00002975valid entries found.
2976
Scott Wood852b6d52013-04-12 14:08:42 +000029774.79 KVM_CREATE_DEVICE
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002978----------------------
Scott Wood852b6d52013-04-12 14:08:42 +00002979
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002980:Capability: KVM_CAP_DEVICE_CTRL
2981:Type: vm ioctl
2982:Parameters: struct kvm_create_device (in/out)
2983:Returns: 0 on success, -1 on error
2984
Scott Wood852b6d52013-04-12 14:08:42 +00002985Errors:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002986
2987 ====== =======================================================
2988 ENODEV The device type is unknown or unsupported
2989 EEXIST Device already created, and this type of device may not
Scott Wood852b6d52013-04-12 14:08:42 +00002990 be instantiated multiple times
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01002991 ====== =======================================================
Scott Wood852b6d52013-04-12 14:08:42 +00002992
2993 Other error conditions may be defined by individual device types or
2994 have their standard meanings.
2995
2996Creates an emulated device in the kernel. The file descriptor returned
2997in fd can be used with KVM_SET/GET/HAS_DEVICE_ATTR.
2998
2999If the KVM_CREATE_DEVICE_TEST flag is set, only test whether the
3000device type is supported (not necessarily whether it can be created
3001in the current vm).
3002
3003Individual devices should not define flags. Attributes should be used
3004for specifying any behavior that is not implied by the device type
3005number.
3006
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003007::
3008
3009 struct kvm_create_device {
Scott Wood852b6d52013-04-12 14:08:42 +00003010 __u32 type; /* in: KVM_DEV_TYPE_xxx */
3011 __u32 fd; /* out: device handle */
3012 __u32 flags; /* in: KVM_CREATE_DEVICE_xxx */
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003013 };
Scott Wood852b6d52013-04-12 14:08:42 +00003014
30154.80 KVM_SET_DEVICE_ATTR/KVM_GET_DEVICE_ATTR
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003016--------------------------------------------
Scott Wood852b6d52013-04-12 14:08:42 +00003017
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003018:Capability: KVM_CAP_DEVICE_CTRL, KVM_CAP_VM_ATTRIBUTES for vm device,
3019 KVM_CAP_VCPU_ATTRIBUTES for vcpu device
3020:Type: device ioctl, vm ioctl, vcpu ioctl
3021:Parameters: struct kvm_device_attr
3022:Returns: 0 on success, -1 on error
3023
Scott Wood852b6d52013-04-12 14:08:42 +00003024Errors:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003025
3026 ===== =============================================================
3027 ENXIO The group or attribute is unknown/unsupported for this device
David Hildenbrandf9cbd9b2016-03-03 09:48:47 +01003028 or hardware support is missing.
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003029 EPERM The attribute cannot (currently) be accessed this way
Scott Wood852b6d52013-04-12 14:08:42 +00003030 (e.g. read-only attribute, or attribute that only makes
3031 sense when the device is in a different state)
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003032 ===== =============================================================
Scott Wood852b6d52013-04-12 14:08:42 +00003033
3034 Other error conditions may be defined by individual device types.
3035
3036Gets/sets a specified piece of device configuration and/or state. The
3037semantics are device-specific. See individual device documentation in
3038the "devices" directory. As with ONE_REG, the size of the data
3039transferred is defined by the particular attribute.
3040
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003041::
3042
3043 struct kvm_device_attr {
Scott Wood852b6d52013-04-12 14:08:42 +00003044 __u32 flags; /* no flags currently defined */
3045 __u32 group; /* device-defined */
3046 __u64 attr; /* group-defined */
3047 __u64 addr; /* userspace address of attr data */
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003048 };
Scott Wood852b6d52013-04-12 14:08:42 +00003049
30504.81 KVM_HAS_DEVICE_ATTR
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003051------------------------
Scott Wood852b6d52013-04-12 14:08:42 +00003052
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003053:Capability: KVM_CAP_DEVICE_CTRL, KVM_CAP_VM_ATTRIBUTES for vm device,
3054 KVM_CAP_VCPU_ATTRIBUTES for vcpu device
3055:Type: device ioctl, vm ioctl, vcpu ioctl
3056:Parameters: struct kvm_device_attr
3057:Returns: 0 on success, -1 on error
3058
Scott Wood852b6d52013-04-12 14:08:42 +00003059Errors:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003060
3061 ===== =============================================================
3062 ENXIO The group or attribute is unknown/unsupported for this device
David Hildenbrandf9cbd9b2016-03-03 09:48:47 +01003063 or hardware support is missing.
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003064 ===== =============================================================
Scott Wood852b6d52013-04-12 14:08:42 +00003065
3066Tests whether a device supports a particular attribute. A successful
3067return indicates the attribute is implemented. It does not necessarily
3068indicate that the attribute can be read or written in the device's
3069current state. "addr" is ignored.
Alex Williamsonf36992e2012-06-29 09:56:16 -06003070
Alexey Kardashevskiyd8968f12013-06-19 11:42:07 +100030714.82 KVM_ARM_VCPU_INIT
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003072----------------------
Christoffer Dall749cf76c2013-01-20 18:28:06 -05003073
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003074:Capability: basic
3075:Architectures: arm, arm64
3076:Type: vcpu ioctl
3077:Parameters: struct kvm_vcpu_init (in)
3078:Returns: 0 on success; -1 on error
3079
Christoffer Dall749cf76c2013-01-20 18:28:06 -05003080Errors:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003081
3082 ====== =================================================================
3083  EINVAL    the target is unknown, or the combination of features is invalid.
3084  ENOENT    a features bit specified is unknown.
3085 ====== =================================================================
Christoffer Dall749cf76c2013-01-20 18:28:06 -05003086
3087This tells KVM what type of CPU to present to the guest, and what
3088optional features it should have.  This will cause a reset of the cpu
3089registers to their initial values.  If this is not called, KVM_RUN will
3090return ENOEXEC for that vcpu.
3091
3092Note that because some registers reflect machine topology, all vcpus
3093should be created before this ioctl is invoked.
3094
Christoffer Dallf7fa034d2014-10-16 16:40:53 +02003095Userspace can call this function multiple times for a given vcpu, including
3096after the vcpu has been run. This will reset the vcpu to its initial
3097state. All calls to this function after the initial call must use the same
3098target and same set of feature flags, otherwise EINVAL will be returned.
3099
Marc Zyngieraa024c22013-01-20 18:28:13 -05003100Possible features:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003101
Marc Zyngieraa024c22013-01-20 18:28:13 -05003102 - KVM_ARM_VCPU_POWER_OFF: Starts the CPU in a power-off state.
Christoffer Dall3ad8b3d2014-10-16 16:14:43 +02003103 Depends on KVM_CAP_ARM_PSCI. If not set, the CPU will be powered on
3104 and execute guest code when KVM_RUN is called.
Marc Zyngier379e04c72013-04-02 17:46:31 +01003105 - KVM_ARM_VCPU_EL1_32BIT: Starts the CPU in a 32bit mode.
3106 Depends on KVM_CAP_ARM_EL1_32BIT (arm64 only).
Marc Zyngier85bd0ba2018-01-21 16:42:56 +00003107 - KVM_ARM_VCPU_PSCI_0_2: Emulate PSCI v0.2 (or a future revision
3108 backward compatible with v0.2) for the CPU.
Anup Patel50bb0c92014-04-29 11:24:17 +05303109 Depends on KVM_CAP_ARM_PSCI_0_2.
Shannon Zhao808e7382016-01-11 22:46:15 +08003110 - KVM_ARM_VCPU_PMU_V3: Emulate PMUv3 for the CPU.
3111 Depends on KVM_CAP_ARM_PMU_V3.
Marc Zyngieraa024c22013-01-20 18:28:13 -05003112
Amit Daniel Kachhapa22fa322019-04-23 10:12:36 +05303113 - KVM_ARM_VCPU_PTRAUTH_ADDRESS: Enables Address Pointer authentication
3114 for arm64 only.
Amit Daniel Kachhapa243c162019-04-23 10:12:37 +05303115 Depends on KVM_CAP_ARM_PTRAUTH_ADDRESS.
3116 If KVM_CAP_ARM_PTRAUTH_ADDRESS and KVM_CAP_ARM_PTRAUTH_GENERIC are
3117 both present, then both KVM_ARM_VCPU_PTRAUTH_ADDRESS and
3118 KVM_ARM_VCPU_PTRAUTH_GENERIC must be requested or neither must be
3119 requested.
Amit Daniel Kachhapa22fa322019-04-23 10:12:36 +05303120
3121 - KVM_ARM_VCPU_PTRAUTH_GENERIC: Enables Generic Pointer authentication
3122 for arm64 only.
Amit Daniel Kachhapa243c162019-04-23 10:12:37 +05303123 Depends on KVM_CAP_ARM_PTRAUTH_GENERIC.
3124 If KVM_CAP_ARM_PTRAUTH_ADDRESS and KVM_CAP_ARM_PTRAUTH_GENERIC are
3125 both present, then both KVM_ARM_VCPU_PTRAUTH_ADDRESS and
3126 KVM_ARM_VCPU_PTRAUTH_GENERIC must be requested or neither must be
3127 requested.
Amit Daniel Kachhapa22fa322019-04-23 10:12:36 +05303128
Dave Martin50036ad2018-09-28 14:39:27 +01003129 - KVM_ARM_VCPU_SVE: Enables SVE for the CPU (arm64 only).
3130 Depends on KVM_CAP_ARM_SVE.
3131 Requires KVM_ARM_VCPU_FINALIZE(KVM_ARM_VCPU_SVE):
3132
3133 * After KVM_ARM_VCPU_INIT:
3134
3135 - KVM_REG_ARM64_SVE_VLS may be read using KVM_GET_ONE_REG: the
3136 initial value of this pseudo-register indicates the best set of
3137 vector lengths possible for a vcpu on this host.
3138
3139 * Before KVM_ARM_VCPU_FINALIZE(KVM_ARM_VCPU_SVE):
3140
3141 - KVM_RUN and KVM_GET_REG_LIST are not available;
3142
3143 - KVM_GET_ONE_REG and KVM_SET_ONE_REG cannot be used to access
3144 the scalable archietctural SVE registers
3145 KVM_REG_ARM64_SVE_ZREG(), KVM_REG_ARM64_SVE_PREG() or
3146 KVM_REG_ARM64_SVE_FFR;
3147
3148 - KVM_REG_ARM64_SVE_VLS may optionally be written using
3149 KVM_SET_ONE_REG, to modify the set of vector lengths available
3150 for the vcpu.
3151
3152 * After KVM_ARM_VCPU_FINALIZE(KVM_ARM_VCPU_SVE):
3153
3154 - the KVM_REG_ARM64_SVE_VLS pseudo-register is immutable, and can
3155 no longer be written using KVM_SET_ONE_REG.
Christoffer Dall749cf76c2013-01-20 18:28:06 -05003156
Anup Patel740edfc2013-09-30 14:20:08 +053031574.83 KVM_ARM_PREFERRED_TARGET
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003158-----------------------------
Anup Patel740edfc2013-09-30 14:20:08 +05303159
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003160:Capability: basic
3161:Architectures: arm, arm64
3162:Type: vm ioctl
Randy Dunlapa84b7572020-07-07 11:04:14 -07003163:Parameters: struct kvm_vcpu_init (out)
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003164:Returns: 0 on success; -1 on error
3165
Anup Patel740edfc2013-09-30 14:20:08 +05303166Errors:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003167
3168 ====== ==========================================
3169 ENODEV no preferred target available for the host
3170 ====== ==========================================
Anup Patel740edfc2013-09-30 14:20:08 +05303171
3172This queries KVM for preferred CPU target type which can be emulated
3173by KVM on underlying host.
3174
3175The ioctl returns struct kvm_vcpu_init instance containing information
3176about preferred CPU target type and recommended features for it. The
3177kvm_vcpu_init->features bitmap returned will have feature bits set if
3178the preferred target recommends setting these features, but this is
3179not mandatory.
3180
3181The information returned by this ioctl can be used to prepare an instance
3182of struct kvm_vcpu_init for KVM_ARM_VCPU_INIT ioctl which will result in
Randy Dunlap3747c5d2020-07-03 14:29:06 -07003183VCPU matching underlying host.
Anup Patel740edfc2013-09-30 14:20:08 +05303184
3185
31864.84 KVM_GET_REG_LIST
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003187---------------------
Christoffer Dall749cf76c2013-01-20 18:28:06 -05003188
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003189:Capability: basic
3190:Architectures: arm, arm64, mips
3191:Type: vcpu ioctl
3192:Parameters: struct kvm_reg_list (in/out)
3193:Returns: 0 on success; -1 on error
3194
Christoffer Dall749cf76c2013-01-20 18:28:06 -05003195Errors:
Christoffer Dall749cf76c2013-01-20 18:28:06 -05003196
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003197 ===== ==============================================================
3198  E2BIG     the reg index list is too big to fit in the array specified by
3199             the user (the number required will be written into n).
3200 ===== ==============================================================
3201
3202::
3203
3204 struct kvm_reg_list {
Christoffer Dall749cf76c2013-01-20 18:28:06 -05003205 __u64 n; /* number of registers in reg[] */
3206 __u64 reg[0];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003207 };
Christoffer Dall749cf76c2013-01-20 18:28:06 -05003208
3209This ioctl returns the guest registers that are supported for the
3210KVM_GET_ONE_REG/KVM_SET_ONE_REG calls.
3211
Christoffer Dallce01e4e2013-09-23 14:55:56 -07003212
32134.85 KVM_ARM_SET_DEVICE_ADDR (deprecated)
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003214-----------------------------------------
Christoffer Dall3401d5462013-01-23 13:18:04 -05003215
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003216:Capability: KVM_CAP_ARM_SET_DEVICE_ADDR
3217:Architectures: arm, arm64
3218:Type: vm ioctl
3219:Parameters: struct kvm_arm_device_address (in)
3220:Returns: 0 on success, -1 on error
3221
Christoffer Dall3401d5462013-01-23 13:18:04 -05003222Errors:
Christoffer Dall3401d5462013-01-23 13:18:04 -05003223
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003224 ====== ============================================
3225 ENODEV The device id is unknown
3226 ENXIO Device not supported on current system
3227 EEXIST Address already set
3228 E2BIG Address outside guest physical address space
3229 EBUSY Address overlaps with other device range
3230 ====== ============================================
3231
3232::
3233
3234 struct kvm_arm_device_addr {
Christoffer Dall3401d5462013-01-23 13:18:04 -05003235 __u64 id;
3236 __u64 addr;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003237 };
Christoffer Dall3401d5462013-01-23 13:18:04 -05003238
3239Specify a device address in the guest's physical address space where guests
3240can access emulated or directly exposed devices, which the host kernel needs
3241to know about. The id field is an architecture specific identifier for a
3242specific device.
3243
Marc Zyngier379e04c72013-04-02 17:46:31 +01003244ARM/arm64 divides the id field into two parts, a device id and an
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003245address type id specific to the individual device::
Christoffer Dall3401d5462013-01-23 13:18:04 -05003246
3247  bits: | 63 ... 32 | 31 ... 16 | 15 ... 0 |
3248 field: | 0x00000000 | device id | addr type id |
3249
Marc Zyngier379e04c72013-04-02 17:46:31 +01003250ARM/arm64 currently only require this when using the in-kernel GIC
3251support for the hardware VGIC features, using KVM_ARM_DEVICE_VGIC_V2
3252as the device id. When setting the base address for the guest's
3253mapping of the VGIC virtual CPU and distributor interface, the ioctl
3254must be called after calling KVM_CREATE_IRQCHIP, but before calling
3255KVM_RUN on any of the VCPUs. Calling this ioctl twice for any of the
3256base addresses will return -EEXIST.
Christoffer Dall3401d5462013-01-23 13:18:04 -05003257
Christoffer Dallce01e4e2013-09-23 14:55:56 -07003258Note, this IOCTL is deprecated and the more flexible SET/GET_DEVICE_ATTR API
3259should be used instead.
3260
3261
Anup Patel740edfc2013-09-30 14:20:08 +053032624.86 KVM_PPC_RTAS_DEFINE_TOKEN
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003263------------------------------
Michael Ellerman8e591cb2013-04-17 20:30:00 +00003264
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003265:Capability: KVM_CAP_PPC_RTAS
3266:Architectures: ppc
3267:Type: vm ioctl
3268:Parameters: struct kvm_rtas_token_args
3269:Returns: 0 on success, -1 on error
Michael Ellerman8e591cb2013-04-17 20:30:00 +00003270
3271Defines a token value for a RTAS (Run Time Abstraction Services)
3272service in order to allow it to be handled in the kernel. The
3273argument struct gives the name of the service, which must be the name
3274of a service that has a kernel-side implementation. If the token
3275value is non-zero, it will be associated with that service, and
3276subsequent RTAS calls by the guest specifying that token will be
3277handled by the kernel. If the token value is 0, then any token
3278associated with the service will be forgotten, and subsequent RTAS
3279calls by the guest for that service will be passed to userspace to be
3280handled.
3281
Alex Bennée4bd9d342014-09-09 17:27:18 +010032824.87 KVM_SET_GUEST_DEBUG
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003283------------------------
Alex Bennée4bd9d342014-09-09 17:27:18 +01003284
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003285:Capability: KVM_CAP_SET_GUEST_DEBUG
3286:Architectures: x86, s390, ppc, arm64
3287:Type: vcpu ioctl
3288:Parameters: struct kvm_guest_debug (in)
3289:Returns: 0 on success; -1 on error
Alex Bennée4bd9d342014-09-09 17:27:18 +01003290
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003291::
3292
3293 struct kvm_guest_debug {
Alex Bennée4bd9d342014-09-09 17:27:18 +01003294 __u32 control;
3295 __u32 pad;
3296 struct kvm_guest_debug_arch arch;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003297 };
Alex Bennée4bd9d342014-09-09 17:27:18 +01003298
3299Set up the processor specific debug registers and configure vcpu for
3300handling guest debug events. There are two parts to the structure, the
3301first a control bitfield indicates the type of debug events to handle
3302when running. Common control bits are:
3303
3304 - KVM_GUESTDBG_ENABLE: guest debugging is enabled
3305 - KVM_GUESTDBG_SINGLESTEP: the next run should single-step
3306
3307The top 16 bits of the control field are architecture specific control
3308flags which can include the following:
3309
Alex Bennée4bd611c2015-07-07 17:29:57 +01003310 - KVM_GUESTDBG_USE_SW_BP: using software breakpoints [x86, arm64]
Alex Bennée834bf882015-07-07 17:30:02 +01003311 - KVM_GUESTDBG_USE_HW_BP: using hardware breakpoints [x86, s390, arm64]
Alex Bennée4bd9d342014-09-09 17:27:18 +01003312 - KVM_GUESTDBG_INJECT_DB: inject DB type exception [x86]
3313 - KVM_GUESTDBG_INJECT_BP: inject BP type exception [x86]
3314 - KVM_GUESTDBG_EXIT_PENDING: trigger an immediate guest exit [s390]
3315
3316For example KVM_GUESTDBG_USE_SW_BP indicates that software breakpoints
3317are enabled in memory so we need to ensure breakpoint exceptions are
3318correctly trapped and the KVM run loop exits at the breakpoint and not
3319running off into the normal guest vector. For KVM_GUESTDBG_USE_HW_BP
3320we need to ensure the guest vCPUs architecture specific registers are
3321updated to the correct (supplied) values.
3322
3323The second part of the structure is architecture specific and
3324typically contains a set of debug registers.
3325
Alex Bennée834bf882015-07-07 17:30:02 +01003326For arm64 the number of debug registers is implementation defined and
3327can be determined by querying the KVM_CAP_GUEST_DEBUG_HW_BPS and
3328KVM_CAP_GUEST_DEBUG_HW_WPS capabilities which return a positive number
3329indicating the number of supported registers.
3330
Fabiano Rosas1a9167a2019-06-19 13:01:27 -03003331For ppc, the KVM_CAP_PPC_GUEST_DEBUG_SSTEP capability indicates whether
3332the single-step debug event (KVM_GUESTDBG_SINGLESTEP) is supported.
3333
Alex Bennée4bd9d342014-09-09 17:27:18 +01003334When debug events exit the main run loop with the reason
3335KVM_EXIT_DEBUG with the kvm_debug_exit_arch part of the kvm_run
3336structure containing architecture specific debug information.
Christoffer Dall3401d5462013-01-23 13:18:04 -05003337
Alex Bennée209cf192014-09-09 17:27:19 +010033384.88 KVM_GET_EMULATED_CPUID
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003339---------------------------
Alex Bennée209cf192014-09-09 17:27:19 +01003340
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003341:Capability: KVM_CAP_EXT_EMUL_CPUID
3342:Architectures: x86
3343:Type: system ioctl
3344:Parameters: struct kvm_cpuid2 (in/out)
3345:Returns: 0 on success, -1 on error
Alex Bennée209cf192014-09-09 17:27:19 +01003346
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003347::
3348
3349 struct kvm_cpuid2 {
Alex Bennée209cf192014-09-09 17:27:19 +01003350 __u32 nent;
3351 __u32 flags;
3352 struct kvm_cpuid_entry2 entries[0];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003353 };
Alex Bennée209cf192014-09-09 17:27:19 +01003354
3355The member 'flags' is used for passing flags from userspace.
3356
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003357::
Alex Bennée209cf192014-09-09 17:27:19 +01003358
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003359 #define KVM_CPUID_FLAG_SIGNIFCANT_INDEX BIT(0)
Sean Christopherson7ff6c032020-03-02 15:56:51 -08003360 #define KVM_CPUID_FLAG_STATEFUL_FUNC BIT(1) /* deprecated */
3361 #define KVM_CPUID_FLAG_STATE_READ_NEXT BIT(2) /* deprecated */
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003362
3363 struct kvm_cpuid_entry2 {
Alex Bennée209cf192014-09-09 17:27:19 +01003364 __u32 function;
3365 __u32 index;
3366 __u32 flags;
3367 __u32 eax;
3368 __u32 ebx;
3369 __u32 ecx;
3370 __u32 edx;
3371 __u32 padding[3];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003372 };
Alex Bennée209cf192014-09-09 17:27:19 +01003373
3374This ioctl returns x86 cpuid features which are emulated by
3375kvm.Userspace can use the information returned by this ioctl to query
3376which features are emulated by kvm instead of being present natively.
3377
3378Userspace invokes KVM_GET_EMULATED_CPUID by passing a kvm_cpuid2
3379structure with the 'nent' field indicating the number of entries in
3380the variable-size array 'entries'. If the number of entries is too low
3381to describe the cpu capabilities, an error (E2BIG) is returned. If the
3382number is too high, the 'nent' field is adjusted and an error (ENOMEM)
3383is returned. If the number is just right, the 'nent' field is adjusted
3384to the number of valid entries in the 'entries' array, which is then
3385filled.
3386
3387The entries returned are the set CPUID bits of the respective features
3388which kvm emulates, as returned by the CPUID instruction, with unknown
3389or unsupported feature bits cleared.
3390
3391Features like x2apic, for example, may not be present in the host cpu
3392but are exposed by kvm in KVM_GET_SUPPORTED_CPUID because they can be
3393emulated efficiently and thus not included here.
3394
3395The fields in each entry are defined as follows:
3396
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003397 function:
3398 the eax value used to obtain the entry
3399 index:
3400 the ecx value used to obtain the entry (for entries that are
Alex Bennée209cf192014-09-09 17:27:19 +01003401 affected by ecx)
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003402 flags:
3403 an OR of zero or more of the following:
3404
Alex Bennée209cf192014-09-09 17:27:19 +01003405 KVM_CPUID_FLAG_SIGNIFCANT_INDEX:
3406 if the index field is valid
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003407
3408 eax, ebx, ecx, edx:
3409
3410 the values returned by the cpuid instruction for
Alex Bennée209cf192014-09-09 17:27:19 +01003411 this function/index combination
3412
Thomas Huth41408c282015-02-06 15:01:21 +010034134.89 KVM_S390_MEM_OP
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003414--------------------
Thomas Huth41408c282015-02-06 15:01:21 +01003415
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003416:Capability: KVM_CAP_S390_MEM_OP
3417:Architectures: s390
3418:Type: vcpu ioctl
3419:Parameters: struct kvm_s390_mem_op (in)
3420:Returns: = 0 on success,
3421 < 0 on generic error (e.g. -EFAULT or -ENOMEM),
3422 > 0 if an exception occurred while walking the page tables
Thomas Huth41408c282015-02-06 15:01:21 +01003423
Masanari Iida5d4f6f32015-10-04 00:46:21 +09003424Read or write data from/to the logical (virtual) memory of a VCPU.
Thomas Huth41408c282015-02-06 15:01:21 +01003425
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003426Parameters are specified via the following structure::
Thomas Huth41408c282015-02-06 15:01:21 +01003427
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003428 struct kvm_s390_mem_op {
Thomas Huth41408c282015-02-06 15:01:21 +01003429 __u64 gaddr; /* the guest address */
3430 __u64 flags; /* flags */
3431 __u32 size; /* amount of bytes */
3432 __u32 op; /* type of operation */
3433 __u64 buf; /* buffer in userspace */
3434 __u8 ar; /* the access register number */
3435 __u8 reserved[31]; /* should be set to 0 */
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003436 };
Thomas Huth41408c282015-02-06 15:01:21 +01003437
3438The type of operation is specified in the "op" field. It is either
3439KVM_S390_MEMOP_LOGICAL_READ for reading from logical memory space or
3440KVM_S390_MEMOP_LOGICAL_WRITE for writing to logical memory space. The
3441KVM_S390_MEMOP_F_CHECK_ONLY flag can be set in the "flags" field to check
3442whether the corresponding memory access would create an access exception
3443(without touching the data in the memory at the destination). In case an
3444access exception occurred while walking the MMU tables of the guest, the
3445ioctl returns a positive error number to indicate the type of exception.
3446This exception is also raised directly at the corresponding VCPU if the
3447flag KVM_S390_MEMOP_F_INJECT_EXCEPTION is set in the "flags" field.
3448
3449The start address of the memory region has to be specified in the "gaddr"
Cornelia Huckb4d863c2019-08-29 14:47:46 +02003450field, and the length of the region in the "size" field (which must not
3451be 0). The maximum value for "size" can be obtained by checking the
3452KVM_CAP_S390_MEM_OP capability. "buf" is the buffer supplied by the
3453userspace application where the read data should be written to for
3454KVM_S390_MEMOP_LOGICAL_READ, or where the data that should be written is
3455stored for a KVM_S390_MEMOP_LOGICAL_WRITE. When KVM_S390_MEMOP_F_CHECK_ONLY
3456is specified, "buf" is unused and can be NULL. "ar" designates the access
3457register number to be used; the valid range is 0..15.
Thomas Huth41408c282015-02-06 15:01:21 +01003458
3459The "reserved" field is meant for future extensions. It is not used by
3460KVM with the currently defined set of flags.
3461
Jason J. Herne30ee2a92014-09-23 09:23:01 -040034624.90 KVM_S390_GET_SKEYS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003463-----------------------
Jason J. Herne30ee2a92014-09-23 09:23:01 -04003464
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003465:Capability: KVM_CAP_S390_SKEYS
3466:Architectures: s390
3467:Type: vm ioctl
3468:Parameters: struct kvm_s390_skeys
3469:Returns: 0 on success, KVM_S390_GET_KEYS_NONE if guest is not using storage
3470 keys, negative value on error
Jason J. Herne30ee2a92014-09-23 09:23:01 -04003471
3472This ioctl is used to get guest storage key values on the s390
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003473architecture. The ioctl takes parameters via the kvm_s390_skeys struct::
Jason J. Herne30ee2a92014-09-23 09:23:01 -04003474
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003475 struct kvm_s390_skeys {
Jason J. Herne30ee2a92014-09-23 09:23:01 -04003476 __u64 start_gfn;
3477 __u64 count;
3478 __u64 skeydata_addr;
3479 __u32 flags;
3480 __u32 reserved[9];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003481 };
Jason J. Herne30ee2a92014-09-23 09:23:01 -04003482
3483The start_gfn field is the number of the first guest frame whose storage keys
3484you want to get.
3485
3486The count field is the number of consecutive frames (starting from start_gfn)
3487whose storage keys to get. The count field must be at least 1 and the maximum
3488allowed value is defined as KVM_S390_SKEYS_ALLOC_MAX. Values outside this range
3489will cause the ioctl to return -EINVAL.
3490
3491The skeydata_addr field is the address to a buffer large enough to hold count
3492bytes. This buffer will be filled with storage key data by the ioctl.
3493
34944.91 KVM_S390_SET_SKEYS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003495-----------------------
Jason J. Herne30ee2a92014-09-23 09:23:01 -04003496
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003497:Capability: KVM_CAP_S390_SKEYS
3498:Architectures: s390
3499:Type: vm ioctl
3500:Parameters: struct kvm_s390_skeys
3501:Returns: 0 on success, negative value on error
Jason J. Herne30ee2a92014-09-23 09:23:01 -04003502
3503This ioctl is used to set guest storage key values on the s390
3504architecture. The ioctl takes parameters via the kvm_s390_skeys struct.
3505See section on KVM_S390_GET_SKEYS for struct definition.
3506
3507The start_gfn field is the number of the first guest frame whose storage keys
3508you want to set.
3509
3510The count field is the number of consecutive frames (starting from start_gfn)
3511whose storage keys to get. The count field must be at least 1 and the maximum
3512allowed value is defined as KVM_S390_SKEYS_ALLOC_MAX. Values outside this range
3513will cause the ioctl to return -EINVAL.
3514
3515The skeydata_addr field is the address to a buffer containing count bytes of
3516storage keys. Each byte in the buffer will be set as the storage key for a
3517single frame starting at start_gfn for count frames.
3518
3519Note: If any architecturally invalid key value is found in the given data then
3520the ioctl will return -EINVAL.
3521
Jens Freimann47b43c52014-11-11 20:57:06 +010035224.92 KVM_S390_IRQ
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003523-----------------
Jens Freimann47b43c52014-11-11 20:57:06 +01003524
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003525:Capability: KVM_CAP_S390_INJECT_IRQ
3526:Architectures: s390
3527:Type: vcpu ioctl
3528:Parameters: struct kvm_s390_irq (in)
3529:Returns: 0 on success, -1 on error
3530
Jens Freimann47b43c52014-11-11 20:57:06 +01003531Errors:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003532
3533
3534 ====== =================================================================
3535 EINVAL interrupt type is invalid
3536 type is KVM_S390_SIGP_STOP and flag parameter is invalid value,
Jens Freimann47b43c52014-11-11 20:57:06 +01003537 type is KVM_S390_INT_EXTERNAL_CALL and code is bigger
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003538 than the maximum of VCPUs
3539 EBUSY type is KVM_S390_SIGP_SET_PREFIX and vcpu is not stopped,
3540 type is KVM_S390_SIGP_STOP and a stop irq is already pending,
Jens Freimann47b43c52014-11-11 20:57:06 +01003541 type is KVM_S390_INT_EXTERNAL_CALL and an external call interrupt
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003542 is already pending
3543 ====== =================================================================
Jens Freimann47b43c52014-11-11 20:57:06 +01003544
3545Allows to inject an interrupt to the guest.
3546
3547Using struct kvm_s390_irq as a parameter allows
3548to inject additional payload which is not
3549possible via KVM_S390_INTERRUPT.
3550
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003551Interrupt parameters are passed via kvm_s390_irq::
Jens Freimann47b43c52014-11-11 20:57:06 +01003552
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003553 struct kvm_s390_irq {
Jens Freimann47b43c52014-11-11 20:57:06 +01003554 __u64 type;
3555 union {
3556 struct kvm_s390_io_info io;
3557 struct kvm_s390_ext_info ext;
3558 struct kvm_s390_pgm_info pgm;
3559 struct kvm_s390_emerg_info emerg;
3560 struct kvm_s390_extcall_info extcall;
3561 struct kvm_s390_prefix_info prefix;
3562 struct kvm_s390_stop_info stop;
3563 struct kvm_s390_mchk_info mchk;
3564 char reserved[64];
3565 } u;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003566 };
Jens Freimann47b43c52014-11-11 20:57:06 +01003567
3568type can be one of the following:
3569
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003570- KVM_S390_SIGP_STOP - sigp stop; parameter in .stop
3571- KVM_S390_PROGRAM_INT - program check; parameters in .pgm
3572- KVM_S390_SIGP_SET_PREFIX - sigp set prefix; parameters in .prefix
3573- KVM_S390_RESTART - restart; no parameters
3574- KVM_S390_INT_CLOCK_COMP - clock comparator interrupt; no parameters
3575- KVM_S390_INT_CPU_TIMER - CPU timer interrupt; no parameters
3576- KVM_S390_INT_EMERGENCY - sigp emergency; parameters in .emerg
3577- KVM_S390_INT_EXTERNAL_CALL - sigp external call; parameters in .extcall
3578- KVM_S390_MCHK - machine check interrupt; parameters in .mchk
Jens Freimann47b43c52014-11-11 20:57:06 +01003579
Sean Christopherson5e124902019-02-15 12:48:38 -08003580This is an asynchronous vcpu ioctl and can be invoked from any thread.
Jens Freimann47b43c52014-11-11 20:57:06 +01003581
Jens Freimann816c7662014-11-24 17:13:46 +010035824.94 KVM_S390_GET_IRQ_STATE
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003583---------------------------
Jens Freimann816c7662014-11-24 17:13:46 +01003584
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003585:Capability: KVM_CAP_S390_IRQ_STATE
3586:Architectures: s390
3587:Type: vcpu ioctl
3588:Parameters: struct kvm_s390_irq_state (out)
3589:Returns: >= number of bytes copied into buffer,
3590 -EINVAL if buffer size is 0,
3591 -ENOBUFS if buffer size is too small to fit all pending interrupts,
3592 -EFAULT if the buffer address was invalid
Jens Freimann816c7662014-11-24 17:13:46 +01003593
3594This ioctl allows userspace to retrieve the complete state of all currently
3595pending interrupts in a single buffer. Use cases include migration
3596and introspection. The parameter structure contains the address of a
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003597userspace buffer and its length::
Jens Freimann816c7662014-11-24 17:13:46 +01003598
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003599 struct kvm_s390_irq_state {
Jens Freimann816c7662014-11-24 17:13:46 +01003600 __u64 buf;
Christian Borntraegerbb64da92017-11-21 16:02:52 +01003601 __u32 flags; /* will stay unused for compatibility reasons */
Jens Freimann816c7662014-11-24 17:13:46 +01003602 __u32 len;
Christian Borntraegerbb64da92017-11-21 16:02:52 +01003603 __u32 reserved[4]; /* will stay unused for compatibility reasons */
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003604 };
Jens Freimann816c7662014-11-24 17:13:46 +01003605
3606Userspace passes in the above struct and for each pending interrupt a
3607struct kvm_s390_irq is copied to the provided buffer.
3608
Christian Borntraegerbb64da92017-11-21 16:02:52 +01003609The structure contains a flags and a reserved field for future extensions. As
3610the kernel never checked for flags == 0 and QEMU never pre-zeroed flags and
3611reserved, these fields can not be used in the future without breaking
3612compatibility.
3613
Jens Freimann816c7662014-11-24 17:13:46 +01003614If -ENOBUFS is returned the buffer provided was too small and userspace
3615may retry with a bigger buffer.
3616
36174.95 KVM_S390_SET_IRQ_STATE
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003618---------------------------
Jens Freimann816c7662014-11-24 17:13:46 +01003619
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003620:Capability: KVM_CAP_S390_IRQ_STATE
3621:Architectures: s390
3622:Type: vcpu ioctl
3623:Parameters: struct kvm_s390_irq_state (in)
3624:Returns: 0 on success,
3625 -EFAULT if the buffer address was invalid,
3626 -EINVAL for an invalid buffer length (see below),
3627 -EBUSY if there were already interrupts pending,
3628 errors occurring when actually injecting the
Jens Freimann816c7662014-11-24 17:13:46 +01003629 interrupt. See KVM_S390_IRQ.
3630
3631This ioctl allows userspace to set the complete state of all cpu-local
3632interrupts currently pending for the vcpu. It is intended for restoring
3633interrupt state after a migration. The input parameter is a userspace buffer
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003634containing a struct kvm_s390_irq_state::
Jens Freimann816c7662014-11-24 17:13:46 +01003635
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003636 struct kvm_s390_irq_state {
Jens Freimann816c7662014-11-24 17:13:46 +01003637 __u64 buf;
Christian Borntraegerbb64da92017-11-21 16:02:52 +01003638 __u32 flags; /* will stay unused for compatibility reasons */
Jens Freimann816c7662014-11-24 17:13:46 +01003639 __u32 len;
Christian Borntraegerbb64da92017-11-21 16:02:52 +01003640 __u32 reserved[4]; /* will stay unused for compatibility reasons */
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003641 };
Jens Freimann816c7662014-11-24 17:13:46 +01003642
Christian Borntraegerbb64da92017-11-21 16:02:52 +01003643The restrictions for flags and reserved apply as well.
3644(see KVM_S390_GET_IRQ_STATE)
3645
Jens Freimann816c7662014-11-24 17:13:46 +01003646The userspace memory referenced by buf contains a struct kvm_s390_irq
3647for each interrupt to be injected into the guest.
3648If one of the interrupts could not be injected for some reason the
3649ioctl aborts.
3650
3651len must be a multiple of sizeof(struct kvm_s390_irq). It must be > 0
3652and it must not exceed (max_vcpus + 32) * sizeof(struct kvm_s390_irq),
3653which is the maximum number of possibly pending cpu-local interrupts.
Jens Freimann47b43c52014-11-11 20:57:06 +01003654
Alexey Kardashevskiyed8e5a22016-01-19 16:12:28 +110036554.96 KVM_SMI
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003656------------
Paolo Bonzinif0778252015-04-01 15:06:40 +02003657
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003658:Capability: KVM_CAP_X86_SMM
3659:Architectures: x86
3660:Type: vcpu ioctl
3661:Parameters: none
3662:Returns: 0 on success, -1 on error
Paolo Bonzinif0778252015-04-01 15:06:40 +02003663
3664Queues an SMI on the thread's vcpu.
3665
Alexey Kardashevskiyd3695aa2016-02-15 12:55:09 +110036664.97 KVM_CAP_PPC_MULTITCE
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003667-------------------------
Alexey Kardashevskiyd3695aa2016-02-15 12:55:09 +11003668
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003669:Capability: KVM_CAP_PPC_MULTITCE
3670:Architectures: ppc
3671:Type: vm
Alexey Kardashevskiyd3695aa2016-02-15 12:55:09 +11003672
3673This capability means the kernel is capable of handling hypercalls
3674H_PUT_TCE_INDIRECT and H_STUFF_TCE without passing those into the user
3675space. This significantly accelerates DMA operations for PPC KVM guests.
3676User space should expect that its handlers for these hypercalls
3677are not going to be called if user space previously registered LIOBN
3678in KVM (via KVM_CREATE_SPAPR_TCE or similar calls).
3679
3680In order to enable H_PUT_TCE_INDIRECT and H_STUFF_TCE use in the guest,
3681user space might have to advertise it for the guest. For example,
3682IBM pSeries (sPAPR) guest starts using them if "hcall-multi-tce" is
3683present in the "ibm,hypertas-functions" device-tree property.
3684
3685The hypercalls mentioned above may or may not be processed successfully
3686in the kernel based fast path. If they can not be handled by the kernel,
3687they will get passed on to user space. So user space still has to have
3688an implementation for these despite the in kernel acceleration.
3689
3690This capability is always enabled.
3691
Alexey Kardashevskiy58ded422016-03-01 17:54:40 +110036924.98 KVM_CREATE_SPAPR_TCE_64
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003693----------------------------
Alexey Kardashevskiy58ded422016-03-01 17:54:40 +11003694
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003695:Capability: KVM_CAP_SPAPR_TCE_64
3696:Architectures: powerpc
3697:Type: vm ioctl
3698:Parameters: struct kvm_create_spapr_tce_64 (in)
3699:Returns: file descriptor for manipulating the created TCE table
Alexey Kardashevskiy58ded422016-03-01 17:54:40 +11003700
3701This is an extension for KVM_CAP_SPAPR_TCE which only supports 32bit
3702windows, described in 4.62 KVM_CREATE_SPAPR_TCE
3703
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003704This capability uses extended struct in ioctl interface::
Alexey Kardashevskiy58ded422016-03-01 17:54:40 +11003705
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003706 /* for KVM_CAP_SPAPR_TCE_64 */
3707 struct kvm_create_spapr_tce_64 {
Alexey Kardashevskiy58ded422016-03-01 17:54:40 +11003708 __u64 liobn;
3709 __u32 page_shift;
3710 __u32 flags;
3711 __u64 offset; /* in pages */
3712 __u64 size; /* in pages */
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003713 };
Alexey Kardashevskiy58ded422016-03-01 17:54:40 +11003714
3715The aim of extension is to support an additional bigger DMA window with
3716a variable page size.
3717KVM_CREATE_SPAPR_TCE_64 receives a 64bit window size, an IOMMU page shift and
3718a bus offset of the corresponding DMA window, @size and @offset are numbers
3719of IOMMU pages.
3720
3721@flags are not used at the moment.
3722
3723The rest of functionality is identical to KVM_CREATE_SPAPR_TCE.
3724
David Gibsonccc4df42016-12-20 16:48:57 +110037254.99 KVM_REINJECT_CONTROL
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003726-------------------------
Radim Krčmář107d44a22016-03-02 22:56:53 +01003727
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003728:Capability: KVM_CAP_REINJECT_CONTROL
3729:Architectures: x86
3730:Type: vm ioctl
3731:Parameters: struct kvm_reinject_control (in)
3732:Returns: 0 on success,
Radim Krčmář107d44a22016-03-02 22:56:53 +01003733 -EFAULT if struct kvm_reinject_control cannot be read,
3734 -ENXIO if KVM_CREATE_PIT or KVM_CREATE_PIT2 didn't succeed earlier.
3735
3736i8254 (PIT) has two modes, reinject and !reinject. The default is reinject,
3737where KVM queues elapsed i8254 ticks and monitors completion of interrupt from
3738vector(s) that i8254 injects. Reinject mode dequeues a tick and injects its
3739interrupt whenever there isn't a pending interrupt from i8254.
3740!reinject mode injects an interrupt as soon as a tick arrives.
3741
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003742::
3743
3744 struct kvm_reinject_control {
Radim Krčmář107d44a22016-03-02 22:56:53 +01003745 __u8 pit_reinject;
3746 __u8 reserved[31];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003747 };
Radim Krčmář107d44a22016-03-02 22:56:53 +01003748
3749pit_reinject = 0 (!reinject mode) is recommended, unless running an old
3750operating system that uses the PIT for timing (e.g. Linux 2.4.x).
3751
David Gibsonccc4df42016-12-20 16:48:57 +110037524.100 KVM_PPC_CONFIGURE_V3_MMU
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003753------------------------------
Paul Mackerrasc9270132017-01-30 21:21:41 +11003754
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003755:Capability: KVM_CAP_PPC_RADIX_MMU or KVM_CAP_PPC_HASH_MMU_V3
3756:Architectures: ppc
3757:Type: vm ioctl
3758:Parameters: struct kvm_ppc_mmuv3_cfg (in)
3759:Returns: 0 on success,
Paul Mackerrasc9270132017-01-30 21:21:41 +11003760 -EFAULT if struct kvm_ppc_mmuv3_cfg cannot be read,
3761 -EINVAL if the configuration is invalid
3762
3763This ioctl controls whether the guest will use radix or HPT (hashed
3764page table) translation, and sets the pointer to the process table for
3765the guest.
3766
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003767::
3768
3769 struct kvm_ppc_mmuv3_cfg {
Paul Mackerrasc9270132017-01-30 21:21:41 +11003770 __u64 flags;
3771 __u64 process_table;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003772 };
Paul Mackerrasc9270132017-01-30 21:21:41 +11003773
3774There are two bits that can be set in flags; KVM_PPC_MMUV3_RADIX and
3775KVM_PPC_MMUV3_GTSE. KVM_PPC_MMUV3_RADIX, if set, configures the guest
3776to use radix tree translation, and if clear, to use HPT translation.
3777KVM_PPC_MMUV3_GTSE, if set and if KVM permits it, configures the guest
3778to be able to use the global TLB and SLB invalidation instructions;
3779if clear, the guest may not use these instructions.
3780
3781The process_table field specifies the address and size of the guest
3782process table, which is in the guest's space. This field is formatted
3783as the second doubleword of the partition table entry, as defined in
3784the Power ISA V3.00, Book III section 5.7.6.1.
3785
David Gibsonccc4df42016-12-20 16:48:57 +110037864.101 KVM_PPC_GET_RMMU_INFO
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003787---------------------------
Paul Mackerrasc9270132017-01-30 21:21:41 +11003788
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003789:Capability: KVM_CAP_PPC_RADIX_MMU
3790:Architectures: ppc
3791:Type: vm ioctl
3792:Parameters: struct kvm_ppc_rmmu_info (out)
3793:Returns: 0 on success,
Paul Mackerrasc9270132017-01-30 21:21:41 +11003794 -EFAULT if struct kvm_ppc_rmmu_info cannot be written,
3795 -EINVAL if no useful information can be returned
3796
3797This ioctl returns a structure containing two things: (a) a list
3798containing supported radix tree geometries, and (b) a list that maps
3799page sizes to put in the "AP" (actual page size) field for the tlbie
3800(TLB invalidate entry) instruction.
3801
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003802::
3803
3804 struct kvm_ppc_rmmu_info {
Paul Mackerrasc9270132017-01-30 21:21:41 +11003805 struct kvm_ppc_radix_geom {
3806 __u8 page_shift;
3807 __u8 level_bits[4];
3808 __u8 pad[3];
3809 } geometries[8];
3810 __u32 ap_encodings[8];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003811 };
Paul Mackerrasc9270132017-01-30 21:21:41 +11003812
3813The geometries[] field gives up to 8 supported geometries for the
3814radix page table, in terms of the log base 2 of the smallest page
3815size, and the number of bits indexed at each level of the tree, from
3816the PTE level up to the PGD level in that order. Any unused entries
3817will have 0 in the page_shift field.
3818
3819The ap_encodings gives the supported page sizes and their AP field
3820encodings, encoded with the AP value in the top 3 bits and the log
3821base 2 of the page size in the bottom 6 bits.
3822
David Gibsonef1ead02016-12-20 16:48:58 +110038234.102 KVM_PPC_RESIZE_HPT_PREPARE
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003824--------------------------------
David Gibsonef1ead02016-12-20 16:48:58 +11003825
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003826:Capability: KVM_CAP_SPAPR_RESIZE_HPT
3827:Architectures: powerpc
3828:Type: vm ioctl
3829:Parameters: struct kvm_ppc_resize_hpt (in)
3830:Returns: 0 on successful completion,
David Gibsonef1ead02016-12-20 16:48:58 +11003831 >0 if a new HPT is being prepared, the value is an estimated
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003832 number of milliseconds until preparation is complete,
David Gibsonef1ead02016-12-20 16:48:58 +11003833 -EFAULT if struct kvm_reinject_control cannot be read,
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003834 -EINVAL if the supplied shift or flags are invalid,
3835 -ENOMEM if unable to allocate the new HPT,
3836 -ENOSPC if there was a hash collision
3837
3838::
3839
3840 struct kvm_ppc_rmmu_info {
3841 struct kvm_ppc_radix_geom {
3842 __u8 page_shift;
3843 __u8 level_bits[4];
3844 __u8 pad[3];
3845 } geometries[8];
3846 __u32 ap_encodings[8];
3847 };
3848
3849The geometries[] field gives up to 8 supported geometries for the
3850radix page table, in terms of the log base 2 of the smallest page
3851size, and the number of bits indexed at each level of the tree, from
3852the PTE level up to the PGD level in that order. Any unused entries
3853will have 0 in the page_shift field.
3854
3855The ap_encodings gives the supported page sizes and their AP field
3856encodings, encoded with the AP value in the top 3 bits and the log
3857base 2 of the page size in the bottom 6 bits.
3858
38594.102 KVM_PPC_RESIZE_HPT_PREPARE
3860--------------------------------
3861
3862:Capability: KVM_CAP_SPAPR_RESIZE_HPT
3863:Architectures: powerpc
3864:Type: vm ioctl
3865:Parameters: struct kvm_ppc_resize_hpt (in)
3866:Returns: 0 on successful completion,
3867 >0 if a new HPT is being prepared, the value is an estimated
3868 number of milliseconds until preparation is complete,
3869 -EFAULT if struct kvm_reinject_control cannot be read,
3870 -EINVAL if the supplied shift or flags are invalid,when moving existing
3871 HPT entries to the new HPT,
David Gibsonef1ead02016-12-20 16:48:58 +11003872 -EIO on other error conditions
3873
3874Used to implement the PAPR extension for runtime resizing of a guest's
3875Hashed Page Table (HPT). Specifically this starts, stops or monitors
3876the preparation of a new potential HPT for the guest, essentially
3877implementing the H_RESIZE_HPT_PREPARE hypercall.
3878
3879If called with shift > 0 when there is no pending HPT for the guest,
3880this begins preparation of a new pending HPT of size 2^(shift) bytes.
3881It then returns a positive integer with the estimated number of
3882milliseconds until preparation is complete.
3883
3884If called when there is a pending HPT whose size does not match that
3885requested in the parameters, discards the existing pending HPT and
3886creates a new one as above.
3887
3888If called when there is a pending HPT of the size requested, will:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003889
David Gibsonef1ead02016-12-20 16:48:58 +11003890 * If preparation of the pending HPT is already complete, return 0
3891 * If preparation of the pending HPT has failed, return an error
3892 code, then discard the pending HPT.
3893 * If preparation of the pending HPT is still in progress, return an
3894 estimated number of milliseconds until preparation is complete.
3895
3896If called with shift == 0, discards any currently pending HPT and
3897returns 0 (i.e. cancels any in-progress preparation).
3898
3899flags is reserved for future expansion, currently setting any bits in
3900flags will result in an -EINVAL.
3901
3902Normally this will be called repeatedly with the same parameters until
3903it returns <= 0. The first call will initiate preparation, subsequent
3904ones will monitor preparation until it completes or fails.
3905
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003906::
3907
3908 struct kvm_ppc_resize_hpt {
David Gibsonef1ead02016-12-20 16:48:58 +11003909 __u64 flags;
3910 __u32 shift;
3911 __u32 pad;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003912 };
David Gibsonef1ead02016-12-20 16:48:58 +11003913
39144.103 KVM_PPC_RESIZE_HPT_COMMIT
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003915-------------------------------
David Gibsonef1ead02016-12-20 16:48:58 +11003916
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003917:Capability: KVM_CAP_SPAPR_RESIZE_HPT
3918:Architectures: powerpc
3919:Type: vm ioctl
3920:Parameters: struct kvm_ppc_resize_hpt (in)
3921:Returns: 0 on successful completion,
David Gibsonef1ead02016-12-20 16:48:58 +11003922 -EFAULT if struct kvm_reinject_control cannot be read,
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003923 -EINVAL if the supplied shift or flags are invalid,
David Gibsonef1ead02016-12-20 16:48:58 +11003924 -ENXIO is there is no pending HPT, or the pending HPT doesn't
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003925 have the requested size,
3926 -EBUSY if the pending HPT is not fully prepared,
David Gibsonef1ead02016-12-20 16:48:58 +11003927 -ENOSPC if there was a hash collision when moving existing
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003928 HPT entries to the new HPT,
David Gibsonef1ead02016-12-20 16:48:58 +11003929 -EIO on other error conditions
3930
3931Used to implement the PAPR extension for runtime resizing of a guest's
3932Hashed Page Table (HPT). Specifically this requests that the guest be
3933transferred to working with the new HPT, essentially implementing the
3934H_RESIZE_HPT_COMMIT hypercall.
3935
3936This should only be called after KVM_PPC_RESIZE_HPT_PREPARE has
3937returned 0 with the same parameters. In other cases
3938KVM_PPC_RESIZE_HPT_COMMIT will return an error (usually -ENXIO or
3939-EBUSY, though others may be possible if the preparation was started,
3940but failed).
3941
3942This will have undefined effects on the guest if it has not already
3943placed itself in a quiescent state where no vcpu will make MMU enabled
3944memory accesses.
3945
3946On succsful completion, the pending HPT will become the guest's active
3947HPT and the previous HPT will be discarded.
3948
3949On failure, the guest will still be operating on its previous HPT.
3950
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003951::
3952
3953 struct kvm_ppc_resize_hpt {
David Gibsonef1ead02016-12-20 16:48:58 +11003954 __u64 flags;
3955 __u32 shift;
3956 __u32 pad;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003957 };
David Gibsonef1ead02016-12-20 16:48:58 +11003958
Luiz Capitulino3aa53852017-03-13 09:08:20 -040039594.104 KVM_X86_GET_MCE_CAP_SUPPORTED
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003960-----------------------------------
Luiz Capitulino3aa53852017-03-13 09:08:20 -04003961
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003962:Capability: KVM_CAP_MCE
3963:Architectures: x86
3964:Type: system ioctl
3965:Parameters: u64 mce_cap (out)
3966:Returns: 0 on success, -1 on error
Luiz Capitulino3aa53852017-03-13 09:08:20 -04003967
3968Returns supported MCE capabilities. The u64 mce_cap parameter
3969has the same format as the MSR_IA32_MCG_CAP register. Supported
3970capabilities will have the corresponding bits set.
3971
39724.105 KVM_X86_SETUP_MCE
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003973-----------------------
Luiz Capitulino3aa53852017-03-13 09:08:20 -04003974
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003975:Capability: KVM_CAP_MCE
3976:Architectures: x86
3977:Type: vcpu ioctl
3978:Parameters: u64 mcg_cap (in)
3979:Returns: 0 on success,
Luiz Capitulino3aa53852017-03-13 09:08:20 -04003980 -EFAULT if u64 mcg_cap cannot be read,
3981 -EINVAL if the requested number of banks is invalid,
3982 -EINVAL if requested MCE capability is not supported.
3983
3984Initializes MCE support for use. The u64 mcg_cap parameter
3985has the same format as the MSR_IA32_MCG_CAP register and
3986specifies which capabilities should be enabled. The maximum
3987supported number of error-reporting banks can be retrieved when
3988checking for KVM_CAP_MCE. The supported capabilities can be
3989retrieved with KVM_X86_GET_MCE_CAP_SUPPORTED.
3990
39914.106 KVM_X86_SET_MCE
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003992---------------------
Luiz Capitulino3aa53852017-03-13 09:08:20 -04003993
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01003994:Capability: KVM_CAP_MCE
3995:Architectures: x86
3996:Type: vcpu ioctl
3997:Parameters: struct kvm_x86_mce (in)
3998:Returns: 0 on success,
Luiz Capitulino3aa53852017-03-13 09:08:20 -04003999 -EFAULT if struct kvm_x86_mce cannot be read,
4000 -EINVAL if the bank number is invalid,
4001 -EINVAL if VAL bit is not set in status field.
4002
4003Inject a machine check error (MCE) into the guest. The input
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004004parameter is::
Luiz Capitulino3aa53852017-03-13 09:08:20 -04004005
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004006 struct kvm_x86_mce {
Luiz Capitulino3aa53852017-03-13 09:08:20 -04004007 __u64 status;
4008 __u64 addr;
4009 __u64 misc;
4010 __u64 mcg_status;
4011 __u8 bank;
4012 __u8 pad1[7];
4013 __u64 pad2[3];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004014 };
Luiz Capitulino3aa53852017-03-13 09:08:20 -04004015
4016If the MCE being reported is an uncorrected error, KVM will
4017inject it as an MCE exception into the guest. If the guest
4018MCG_STATUS register reports that an MCE is in progress, KVM
4019causes an KVM_EXIT_SHUTDOWN vmexit.
4020
4021Otherwise, if the MCE is a corrected error, KVM will just
4022store it in the corresponding bank (provided this bank is
4023not holding a previously reported uncorrected error).
4024
Claudio Imbrenda4036e382016-08-04 17:58:47 +020040254.107 KVM_S390_GET_CMMA_BITS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004026----------------------------
Claudio Imbrenda4036e382016-08-04 17:58:47 +02004027
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004028:Capability: KVM_CAP_S390_CMMA_MIGRATION
4029:Architectures: s390
4030:Type: vm ioctl
4031:Parameters: struct kvm_s390_cmma_log (in, out)
4032:Returns: 0 on success, a negative value on error
Claudio Imbrenda4036e382016-08-04 17:58:47 +02004033
4034This ioctl is used to get the values of the CMMA bits on the s390
4035architecture. It is meant to be used in two scenarios:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004036
Claudio Imbrenda4036e382016-08-04 17:58:47 +02004037- During live migration to save the CMMA values. Live migration needs
4038 to be enabled via the KVM_REQ_START_MIGRATION VM property.
4039- To non-destructively peek at the CMMA values, with the flag
4040 KVM_S390_CMMA_PEEK set.
4041
4042The ioctl takes parameters via the kvm_s390_cmma_log struct. The desired
4043values are written to a buffer whose location is indicated via the "values"
4044member in the kvm_s390_cmma_log struct. The values in the input struct are
4045also updated as needed.
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004046
Claudio Imbrenda4036e382016-08-04 17:58:47 +02004047Each CMMA value takes up one byte.
4048
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004049::
4050
4051 struct kvm_s390_cmma_log {
Claudio Imbrenda4036e382016-08-04 17:58:47 +02004052 __u64 start_gfn;
4053 __u32 count;
4054 __u32 flags;
4055 union {
4056 __u64 remaining;
4057 __u64 mask;
4058 };
4059 __u64 values;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004060 };
Claudio Imbrenda4036e382016-08-04 17:58:47 +02004061
4062start_gfn is the number of the first guest frame whose CMMA values are
4063to be retrieved,
4064
4065count is the length of the buffer in bytes,
4066
4067values points to the buffer where the result will be written to.
4068
4069If count is greater than KVM_S390_SKEYS_MAX, then it is considered to be
4070KVM_S390_SKEYS_MAX. KVM_S390_SKEYS_MAX is re-used for consistency with
4071other ioctls.
4072
4073The result is written in the buffer pointed to by the field values, and
4074the values of the input parameter are updated as follows.
4075
4076Depending on the flags, different actions are performed. The only
4077supported flag so far is KVM_S390_CMMA_PEEK.
4078
4079The default behaviour if KVM_S390_CMMA_PEEK is not set is:
4080start_gfn will indicate the first page frame whose CMMA bits were dirty.
4081It is not necessarily the same as the one passed as input, as clean pages
4082are skipped.
4083
4084count will indicate the number of bytes actually written in the buffer.
4085It can (and very often will) be smaller than the input value, since the
4086buffer is only filled until 16 bytes of clean values are found (which
4087are then not copied in the buffer). Since a CMMA migration block needs
4088the base address and the length, for a total of 16 bytes, we will send
4089back some clean data if there is some dirty data afterwards, as long as
4090the size of the clean data does not exceed the size of the header. This
4091allows to minimize the amount of data to be saved or transferred over
4092the network at the expense of more roundtrips to userspace. The next
4093invocation of the ioctl will skip over all the clean values, saving
4094potentially more than just the 16 bytes we found.
4095
4096If KVM_S390_CMMA_PEEK is set:
4097the existing storage attributes are read even when not in migration
4098mode, and no other action is performed;
4099
4100the output start_gfn will be equal to the input start_gfn,
4101
4102the output count will be equal to the input count, except if the end of
4103memory has been reached.
4104
4105In both cases:
4106the field "remaining" will indicate the total number of dirty CMMA values
4107still remaining, or 0 if KVM_S390_CMMA_PEEK is set and migration mode is
4108not enabled.
4109
4110mask is unused.
4111
4112values points to the userspace buffer where the result will be stored.
4113
4114This ioctl can fail with -ENOMEM if not enough memory can be allocated to
4115complete the task, with -ENXIO if CMMA is not enabled, with -EINVAL if
4116KVM_S390_CMMA_PEEK is not set but migration mode was not enabled, with
4117-EFAULT if the userspace address is invalid or if no page table is
4118present for the addresses (e.g. when using hugepages).
4119
41204.108 KVM_S390_SET_CMMA_BITS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004121----------------------------
Claudio Imbrenda4036e382016-08-04 17:58:47 +02004122
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004123:Capability: KVM_CAP_S390_CMMA_MIGRATION
4124:Architectures: s390
4125:Type: vm ioctl
4126:Parameters: struct kvm_s390_cmma_log (in)
4127:Returns: 0 on success, a negative value on error
Claudio Imbrenda4036e382016-08-04 17:58:47 +02004128
4129This ioctl is used to set the values of the CMMA bits on the s390
4130architecture. It is meant to be used during live migration to restore
4131the CMMA values, but there are no restrictions on its use.
4132The ioctl takes parameters via the kvm_s390_cmma_values struct.
4133Each CMMA value takes up one byte.
4134
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004135::
4136
4137 struct kvm_s390_cmma_log {
Claudio Imbrenda4036e382016-08-04 17:58:47 +02004138 __u64 start_gfn;
4139 __u32 count;
4140 __u32 flags;
4141 union {
4142 __u64 remaining;
4143 __u64 mask;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004144 };
Claudio Imbrenda4036e382016-08-04 17:58:47 +02004145 __u64 values;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004146 };
Claudio Imbrenda4036e382016-08-04 17:58:47 +02004147
4148start_gfn indicates the starting guest frame number,
4149
4150count indicates how many values are to be considered in the buffer,
4151
4152flags is not used and must be 0.
4153
4154mask indicates which PGSTE bits are to be considered.
4155
4156remaining is not used.
4157
4158values points to the buffer in userspace where to store the values.
4159
4160This ioctl can fail with -ENOMEM if not enough memory can be allocated to
4161complete the task, with -ENXIO if CMMA is not enabled, with -EINVAL if
4162the count field is too large (e.g. more than KVM_S390_CMMA_SIZE_MAX) or
4163if the flags field was not 0, with -EFAULT if the userspace address is
4164invalid, if invalid pages are written to (e.g. after the end of memory)
4165or if no page table is present for the addresses (e.g. when using
4166hugepages).
4167
Radim Krčmář7bf14c22018-02-01 15:04:17 +010041684.109 KVM_PPC_GET_CPU_CHAR
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004169--------------------------
Paul Mackerras3214d012018-01-15 16:06:47 +11004170
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004171:Capability: KVM_CAP_PPC_GET_CPU_CHAR
4172:Architectures: powerpc
4173:Type: vm ioctl
4174:Parameters: struct kvm_ppc_cpu_char (out)
4175:Returns: 0 on successful completion,
Paul Mackerras3214d012018-01-15 16:06:47 +11004176 -EFAULT if struct kvm_ppc_cpu_char cannot be written
4177
4178This ioctl gives userspace information about certain characteristics
4179of the CPU relating to speculative execution of instructions and
4180possible information leakage resulting from speculative execution (see
4181CVE-2017-5715, CVE-2017-5753 and CVE-2017-5754). The information is
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004182returned in struct kvm_ppc_cpu_char, which looks like this::
Paul Mackerras3214d012018-01-15 16:06:47 +11004183
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004184 struct kvm_ppc_cpu_char {
Paul Mackerras3214d012018-01-15 16:06:47 +11004185 __u64 character; /* characteristics of the CPU */
4186 __u64 behaviour; /* recommended software behaviour */
4187 __u64 character_mask; /* valid bits in character */
4188 __u64 behaviour_mask; /* valid bits in behaviour */
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004189 };
Paul Mackerras3214d012018-01-15 16:06:47 +11004190
4191For extensibility, the character_mask and behaviour_mask fields
4192indicate which bits of character and behaviour have been filled in by
4193the kernel. If the set of defined bits is extended in future then
4194userspace will be able to tell whether it is running on a kernel that
4195knows about the new bits.
4196
4197The character field describes attributes of the CPU which can help
4198with preventing inadvertent information disclosure - specifically,
4199whether there is an instruction to flash-invalidate the L1 data cache
4200(ori 30,30,0 or mtspr SPRN_TRIG2,rN), whether the L1 data cache is set
4201to a mode where entries can only be used by the thread that created
4202them, whether the bcctr[l] instruction prevents speculation, and
4203whether a speculation barrier instruction (ori 31,31,0) is provided.
4204
4205The behaviour field describes actions that software should take to
4206prevent inadvertent information disclosure, and thus describes which
4207vulnerabilities the hardware is subject to; specifically whether the
4208L1 data cache should be flushed when returning to user mode from the
4209kernel, and whether a speculation barrier should be placed between an
4210array bounds check and the array access.
4211
4212These fields use the same bit definitions as the new
4213H_GET_CPU_CHARACTERISTICS hypercall.
4214
Radim Krčmář7bf14c22018-02-01 15:04:17 +010042154.110 KVM_MEMORY_ENCRYPT_OP
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004216---------------------------
Brijesh Singh5acc5c02017-12-04 10:57:26 -06004217
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004218:Capability: basic
4219:Architectures: x86
Connor Kuehl46ca9ee2020-08-19 16:19:52 -05004220:Type: vm
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004221:Parameters: an opaque platform specific structure (in/out)
4222:Returns: 0 on success; -1 on error
Brijesh Singh5acc5c02017-12-04 10:57:26 -06004223
4224If the platform supports creating encrypted VMs then this ioctl can be used
4225for issuing platform-specific memory encryption commands to manage those
4226encrypted VMs.
4227
4228Currently, this ioctl is used for issuing Secure Encrypted Virtualization
4229(SEV) commands on AMD Processors. The SEV commands are defined in
Christoph Hellwig2f5947d2019-07-24 09:24:49 +02004230Documentation/virt/kvm/amd-memory-encryption.rst.
Brijesh Singh5acc5c02017-12-04 10:57:26 -06004231
Radim Krčmář7bf14c22018-02-01 15:04:17 +010042324.111 KVM_MEMORY_ENCRYPT_REG_REGION
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004233-----------------------------------
Brijesh Singh69eaede2017-12-04 10:57:26 -06004234
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004235:Capability: basic
4236:Architectures: x86
4237:Type: system
4238:Parameters: struct kvm_enc_region (in)
4239:Returns: 0 on success; -1 on error
Brijesh Singh69eaede2017-12-04 10:57:26 -06004240
4241This ioctl can be used to register a guest memory region which may
4242contain encrypted data (e.g. guest RAM, SMRAM etc).
4243
4244It is used in the SEV-enabled guest. When encryption is enabled, a guest
4245memory region may contain encrypted data. The SEV memory encryption
4246engine uses a tweak such that two identical plaintext pages, each at
4247different locations will have differing ciphertexts. So swapping or
4248moving ciphertext of those pages will not result in plaintext being
4249swapped. So relocating (or migrating) physical backing pages for the SEV
4250guest will require some additional steps.
4251
4252Note: The current SEV key management spec does not provide commands to
4253swap or migrate (move) ciphertext pages. Hence, for now we pin the guest
4254memory region registered with the ioctl.
4255
Radim Krčmář7bf14c22018-02-01 15:04:17 +010042564.112 KVM_MEMORY_ENCRYPT_UNREG_REGION
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004257-------------------------------------
Brijesh Singh69eaede2017-12-04 10:57:26 -06004258
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004259:Capability: basic
4260:Architectures: x86
4261:Type: system
4262:Parameters: struct kvm_enc_region (in)
4263:Returns: 0 on success; -1 on error
Brijesh Singh69eaede2017-12-04 10:57:26 -06004264
4265This ioctl can be used to unregister the guest memory region registered
4266with KVM_MEMORY_ENCRYPT_REG_REGION ioctl above.
4267
Roman Kaganfaeb7832018-02-01 16:48:32 +030042684.113 KVM_HYPERV_EVENTFD
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004269------------------------
Roman Kaganfaeb7832018-02-01 16:48:32 +03004270
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004271:Capability: KVM_CAP_HYPERV_EVENTFD
4272:Architectures: x86
4273:Type: vm ioctl
4274:Parameters: struct kvm_hyperv_eventfd (in)
Roman Kaganfaeb7832018-02-01 16:48:32 +03004275
4276This ioctl (un)registers an eventfd to receive notifications from the guest on
4277the specified Hyper-V connection id through the SIGNAL_EVENT hypercall, without
4278causing a user exit. SIGNAL_EVENT hypercall with non-zero event flag number
4279(bits 24-31) still triggers a KVM_EXIT_HYPERV_HCALL user exit.
4280
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004281::
4282
4283 struct kvm_hyperv_eventfd {
Roman Kaganfaeb7832018-02-01 16:48:32 +03004284 __u32 conn_id;
4285 __s32 fd;
4286 __u32 flags;
4287 __u32 padding[3];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004288 };
Roman Kaganfaeb7832018-02-01 16:48:32 +03004289
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004290The conn_id field should fit within 24 bits::
Roman Kaganfaeb7832018-02-01 16:48:32 +03004291
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004292 #define KVM_HYPERV_CONN_ID_MASK 0x00ffffff
Roman Kaganfaeb7832018-02-01 16:48:32 +03004293
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004294The acceptable values for the flags field are::
Roman Kaganfaeb7832018-02-01 16:48:32 +03004295
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004296 #define KVM_HYPERV_EVENTFD_DEASSIGN (1 << 0)
Roman Kaganfaeb7832018-02-01 16:48:32 +03004297
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004298:Returns: 0 on success,
4299 -EINVAL if conn_id or flags is outside the allowed range,
4300 -ENOENT on deassign if the conn_id isn't registered,
4301 -EEXIST on assign if the conn_id is already registered
Roman Kaganfaeb7832018-02-01 16:48:32 +03004302
Jim Mattson8fcc4b52018-07-10 11:27:20 +020043034.114 KVM_GET_NESTED_STATE
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004304--------------------------
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004305
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004306:Capability: KVM_CAP_NESTED_STATE
4307:Architectures: x86
4308:Type: vcpu ioctl
4309:Parameters: struct kvm_nested_state (in/out)
4310:Returns: 0 on success, -1 on error
4311
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004312Errors:
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004313
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004314 ===== =============================================================
4315 E2BIG the total state size exceeds the value of 'size' specified by
4316 the user; the size required will be written into size.
4317 ===== =============================================================
4318
4319::
4320
4321 struct kvm_nested_state {
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004322 __u16 flags;
4323 __u16 format;
4324 __u32 size;
Liran Alon6ca00df2019-06-16 15:03:10 +03004325
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004326 union {
Liran Alon6ca00df2019-06-16 15:03:10 +03004327 struct kvm_vmx_nested_state_hdr vmx;
4328 struct kvm_svm_nested_state_hdr svm;
4329
4330 /* Pad the header to 128 bytes. */
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004331 __u8 pad[120];
Liran Alon6ca00df2019-06-16 15:03:10 +03004332 } hdr;
4333
4334 union {
4335 struct kvm_vmx_nested_state_data vmx[0];
4336 struct kvm_svm_nested_state_data svm[0];
4337 } data;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004338 };
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004339
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004340 #define KVM_STATE_NESTED_GUEST_MODE 0x00000001
4341 #define KVM_STATE_NESTED_RUN_PENDING 0x00000002
4342 #define KVM_STATE_NESTED_EVMCS 0x00000004
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004343
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004344 #define KVM_STATE_NESTED_FORMAT_VMX 0
4345 #define KVM_STATE_NESTED_FORMAT_SVM 1
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004346
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004347 #define KVM_STATE_NESTED_VMX_VMCS_SIZE 0x1000
Liran Alon6ca00df2019-06-16 15:03:10 +03004348
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004349 #define KVM_STATE_NESTED_VMX_SMM_GUEST_MODE 0x00000001
4350 #define KVM_STATE_NESTED_VMX_SMM_VMXON 0x00000002
Liran Alon6ca00df2019-06-16 15:03:10 +03004351
Mauro Carvalho Chehab3c97f032020-09-09 16:10:48 +02004352 #define KVM_STATE_VMX_PREEMPTION_TIMER_DEADLINE 0x00000001
Peter Shier850448f2020-05-26 14:51:06 -07004353
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004354 struct kvm_vmx_nested_state_hdr {
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004355 __u64 vmxon_pa;
Liran Alon6ca00df2019-06-16 15:03:10 +03004356 __u64 vmcs12_pa;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004357
4358 struct {
4359 __u16 flags;
4360 } smm;
Paolo Bonzini83d31e52020-07-09 13:12:09 -04004361
4362 __u32 flags;
4363 __u64 preemption_timer_deadline;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004364 };
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004365
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004366 struct kvm_vmx_nested_state_data {
Liran Alon6ca00df2019-06-16 15:03:10 +03004367 __u8 vmcs12[KVM_STATE_NESTED_VMX_VMCS_SIZE];
4368 __u8 shadow_vmcs12[KVM_STATE_NESTED_VMX_VMCS_SIZE];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004369 };
Liran Alon6ca00df2019-06-16 15:03:10 +03004370
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004371This ioctl copies the vcpu's nested virtualization state from the kernel to
4372userspace.
4373
Liran Alon6ca00df2019-06-16 15:03:10 +03004374The maximum size of the state can be retrieved by passing KVM_CAP_NESTED_STATE
4375to the KVM_CHECK_EXTENSION ioctl().
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004376
43774.115 KVM_SET_NESTED_STATE
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004378--------------------------
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004379
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004380:Capability: KVM_CAP_NESTED_STATE
4381:Architectures: x86
4382:Type: vcpu ioctl
4383:Parameters: struct kvm_nested_state (in)
4384:Returns: 0 on success, -1 on error
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004385
Liran Alon6ca00df2019-06-16 15:03:10 +03004386This copies the vcpu's kvm_nested_state struct from userspace to the kernel.
4387For the definition of struct kvm_nested_state, see KVM_GET_NESTED_STATE.
Radim Krčmář7bf14c22018-02-01 15:04:17 +01004388
Peng Hao99434502018-10-14 07:09:56 +080043894.116 KVM_(UN)REGISTER_COALESCED_MMIO
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004390-------------------------------------
Peng Hao99434502018-10-14 07:09:56 +08004391
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004392:Capability: KVM_CAP_COALESCED_MMIO (for coalesced mmio)
4393 KVM_CAP_COALESCED_PIO (for coalesced pio)
4394:Architectures: all
4395:Type: vm ioctl
4396:Parameters: struct kvm_coalesced_mmio_zone
4397:Returns: 0 on success, < 0 on error
Peng Hao99434502018-10-14 07:09:56 +08004398
Peng Hao0804c842018-10-14 07:09:55 +08004399Coalesced I/O is a performance optimization that defers hardware
Peng Hao99434502018-10-14 07:09:56 +08004400register write emulation so that userspace exits are avoided. It is
4401typically used to reduce the overhead of emulating frequently accessed
4402hardware registers.
4403
Peng Hao0804c842018-10-14 07:09:55 +08004404When a hardware register is configured for coalesced I/O, write accesses
Peng Hao99434502018-10-14 07:09:56 +08004405do not exit to userspace and their value is recorded in a ring buffer
4406that is shared between kernel and userspace.
4407
Peng Hao0804c842018-10-14 07:09:55 +08004408Coalesced I/O is used if one or more write accesses to a hardware
Peng Hao99434502018-10-14 07:09:56 +08004409register can be deferred until a read or a write to another hardware
4410register on the same device. This last access will cause a vmexit and
4411userspace will process accesses from the ring buffer before emulating
Peng Hao0804c842018-10-14 07:09:55 +08004412it. That will avoid exiting to userspace on repeated writes.
4413
4414Coalesced pio is based on coalesced mmio. There is little difference
4415between coalesced mmio and pio except that coalesced pio records accesses
4416to I/O ports.
Peng Hao99434502018-10-14 07:09:56 +08004417
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +020044184.117 KVM_CLEAR_DIRTY_LOG (vm ioctl)
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004419------------------------------------
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02004420
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004421:Capability: KVM_CAP_MANUAL_DIRTY_LOG_PROTECT2
4422:Architectures: x86, arm, arm64, mips
4423:Type: vm ioctl
4424:Parameters: struct kvm_dirty_log (in)
4425:Returns: 0 on success, -1 on error
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02004426
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004427::
4428
4429 /* for KVM_CLEAR_DIRTY_LOG */
4430 struct kvm_clear_dirty_log {
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02004431 __u32 slot;
4432 __u32 num_pages;
4433 __u64 first_page;
4434 union {
4435 void __user *dirty_bitmap; /* one bit per page */
4436 __u64 padding;
4437 };
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004438 };
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02004439
4440The ioctl clears the dirty status of pages in a memory slot, according to
4441the bitmap that is passed in struct kvm_clear_dirty_log's dirty_bitmap
4442field. Bit 0 of the bitmap corresponds to page "first_page" in the
4443memory slot, and num_pages is the size in bits of the input bitmap.
Paolo Bonzini76d58e02019-04-17 15:28:44 +02004444first_page must be a multiple of 64; num_pages must also be a multiple of
444564 unless first_page + num_pages is the size of the memory slot. For each
4446bit that is set in the input bitmap, the corresponding page is marked "clean"
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02004447in KVM's dirty bitmap, and dirty tracking is re-enabled for that page
4448(for example via write-protection, or by clearing the dirty bit in
4449a page table entry).
4450
4451If KVM_CAP_MULTI_ADDRESS_SPACE is available, bits 16-31 specifies
4452the address space for which you want to return the dirty bitmap.
4453They must be less than the value that KVM_CHECK_EXTENSION returns for
4454the KVM_CAP_MULTI_ADDRESS_SPACE capability.
4455
Peter Xud7547c52019-05-08 17:15:47 +08004456This ioctl is mostly useful when KVM_CAP_MANUAL_DIRTY_LOG_PROTECT2
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02004457is enabled; for more information, see the description of the capability.
4458However, it can always be used as long as KVM_CHECK_EXTENSION confirms
Peter Xud7547c52019-05-08 17:15:47 +08004459that KVM_CAP_MANUAL_DIRTY_LOG_PROTECT2 is present.
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02004460
Vitaly Kuznetsov2bc39972018-12-10 18:21:56 +010044614.118 KVM_GET_SUPPORTED_HV_CPUID
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004462--------------------------------
Vitaly Kuznetsov2bc39972018-12-10 18:21:56 +01004463
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004464:Capability: KVM_CAP_HYPERV_CPUID
4465:Architectures: x86
4466:Type: vcpu ioctl
4467:Parameters: struct kvm_cpuid2 (in/out)
4468:Returns: 0 on success, -1 on error
Vitaly Kuznetsov2bc39972018-12-10 18:21:56 +01004469
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004470::
4471
4472 struct kvm_cpuid2 {
Vitaly Kuznetsov2bc39972018-12-10 18:21:56 +01004473 __u32 nent;
4474 __u32 padding;
4475 struct kvm_cpuid_entry2 entries[0];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004476 };
Vitaly Kuznetsov2bc39972018-12-10 18:21:56 +01004477
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004478 struct kvm_cpuid_entry2 {
Vitaly Kuznetsov2bc39972018-12-10 18:21:56 +01004479 __u32 function;
4480 __u32 index;
4481 __u32 flags;
4482 __u32 eax;
4483 __u32 ebx;
4484 __u32 ecx;
4485 __u32 edx;
4486 __u32 padding[3];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004487 };
Vitaly Kuznetsov2bc39972018-12-10 18:21:56 +01004488
4489This ioctl returns x86 cpuid features leaves related to Hyper-V emulation in
4490KVM. Userspace can use the information returned by this ioctl to construct
4491cpuid information presented to guests consuming Hyper-V enlightenments (e.g.
4492Windows or Hyper-V guests).
4493
4494CPUID feature leaves returned by this ioctl are defined by Hyper-V Top Level
4495Functional Specification (TLFS). These leaves can't be obtained with
4496KVM_GET_SUPPORTED_CPUID ioctl because some of them intersect with KVM feature
4497leaves (0x40000000, 0x40000001).
4498
4499Currently, the following list of CPUID leaves are returned:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004500 - HYPERV_CPUID_VENDOR_AND_MAX_FUNCTIONS
4501 - HYPERV_CPUID_INTERFACE
4502 - HYPERV_CPUID_VERSION
4503 - HYPERV_CPUID_FEATURES
4504 - HYPERV_CPUID_ENLIGHTMENT_INFO
4505 - HYPERV_CPUID_IMPLEMENT_LIMITS
4506 - HYPERV_CPUID_NESTED_FEATURES
Vitaly Kuznetsovb44f50d2020-09-24 16:57:51 +02004507 - HYPERV_CPUID_SYNDBG_VENDOR_AND_MAX_FUNCTIONS
4508 - HYPERV_CPUID_SYNDBG_INTERFACE
4509 - HYPERV_CPUID_SYNDBG_PLATFORM_CAPABILITIES
Vitaly Kuznetsov2bc39972018-12-10 18:21:56 +01004510
4511HYPERV_CPUID_NESTED_FEATURES leaf is only exposed when Enlightened VMCS was
4512enabled on the corresponding vCPU (KVM_CAP_HYPERV_ENLIGHTENED_VMCS).
4513
Vitaly Kuznetsovb44f50d2020-09-24 16:57:51 +02004514Userspace invokes KVM_GET_SUPPORTED_HV_CPUID by passing a kvm_cpuid2 structure
Vitaly Kuznetsov2bc39972018-12-10 18:21:56 +01004515with the 'nent' field indicating the number of entries in the variable-size
4516array 'entries'. If the number of entries is too low to describe all Hyper-V
4517feature leaves, an error (E2BIG) is returned. If the number is more or equal
4518to the number of Hyper-V feature leaves, the 'nent' field is adjusted to the
4519number of valid entries in the 'entries' array, which is then filled.
4520
4521'index' and 'flags' fields in 'struct kvm_cpuid_entry2' are currently reserved,
4522userspace should not expect to get any particular value there.
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02004523
Dave Martin50036ad2018-09-28 14:39:27 +010045244.119 KVM_ARM_VCPU_FINALIZE
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004525---------------------------
Dave Martin50036ad2018-09-28 14:39:27 +01004526
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004527:Architectures: arm, arm64
4528:Type: vcpu ioctl
4529:Parameters: int feature (in)
4530:Returns: 0 on success, -1 on error
4531
Dave Martin50036ad2018-09-28 14:39:27 +01004532Errors:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004533
4534 ====== ==============================================================
4535 EPERM feature not enabled, needs configuration, or already finalized
4536 EINVAL feature unknown or not present
4537 ====== ==============================================================
Dave Martin50036ad2018-09-28 14:39:27 +01004538
4539Recognised values for feature:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004540
4541 ===== ===========================================
Dave Martin9df2d662019-04-12 13:28:05 +01004542 arm64 KVM_ARM_VCPU_SVE (requires KVM_CAP_ARM_SVE)
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004543 ===== ===========================================
Dave Martin50036ad2018-09-28 14:39:27 +01004544
4545Finalizes the configuration of the specified vcpu feature.
4546
4547The vcpu must already have been initialised, enabling the affected feature, by
4548means of a successful KVM_ARM_VCPU_INIT call with the appropriate flag set in
4549features[].
4550
4551For affected vcpu features, this is a mandatory step that must be performed
4552before the vcpu is fully usable.
4553
4554Between KVM_ARM_VCPU_INIT and KVM_ARM_VCPU_FINALIZE, the feature may be
4555configured by use of ioctls such as KVM_SET_ONE_REG. The exact configuration
4556that should be performaned and how to do it are feature-dependent.
4557
4558Other calls that depend on a particular feature being finalized, such as
4559KVM_RUN, KVM_GET_REG_LIST, KVM_GET_ONE_REG and KVM_SET_ONE_REG, will fail with
4560-EPERM unless the feature has already been finalized by means of a
4561KVM_ARM_VCPU_FINALIZE call.
4562
4563See KVM_ARM_VCPU_INIT for details of vcpu features that require finalization
4564using this ioctl.
4565
Eric Hankland66bb8a02019-07-10 18:25:15 -070045664.120 KVM_SET_PMU_EVENT_FILTER
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004567------------------------------
Eric Hankland66bb8a02019-07-10 18:25:15 -07004568
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004569:Capability: KVM_CAP_PMU_EVENT_FILTER
4570:Architectures: x86
4571:Type: vm ioctl
4572:Parameters: struct kvm_pmu_event_filter (in)
4573:Returns: 0 on success, -1 on error
Eric Hankland66bb8a02019-07-10 18:25:15 -07004574
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004575::
4576
4577 struct kvm_pmu_event_filter {
Eric Hankland30cd8602019-07-18 11:38:18 -07004578 __u32 action;
4579 __u32 nevents;
4580 __u32 fixed_counter_bitmap;
4581 __u32 flags;
4582 __u32 pad[4];
4583 __u64 events[0];
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004584 };
Eric Hankland66bb8a02019-07-10 18:25:15 -07004585
4586This ioctl restricts the set of PMU events that the guest can program.
4587The argument holds a list of events which will be allowed or denied.
4588The eventsel+umask of each event the guest attempts to program is compared
4589against the events field to determine whether the guest should have access.
Eric Hankland30cd8602019-07-18 11:38:18 -07004590The events field only controls general purpose counters; fixed purpose
4591counters are controlled by the fixed_counter_bitmap.
4592
4593No flags are defined yet, the field must be zero.
Eric Hankland66bb8a02019-07-10 18:25:15 -07004594
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004595Valid values for 'action'::
4596
4597 #define KVM_PMU_EVENT_ALLOW 0
4598 #define KVM_PMU_EVENT_DENY 1
Eric Hankland66bb8a02019-07-10 18:25:15 -07004599
Bharata B Rao22945682019-11-25 08:36:30 +053046004.121 KVM_PPC_SVM_OFF
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004601---------------------
Bharata B Rao22945682019-11-25 08:36:30 +05304602
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004603:Capability: basic
4604:Architectures: powerpc
4605:Type: vm ioctl
4606:Parameters: none
4607:Returns: 0 on successful completion,
4608
Bharata B Rao22945682019-11-25 08:36:30 +05304609Errors:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004610
4611 ====== ================================================================
4612 EINVAL if ultravisor failed to terminate the secure guest
4613 ENOMEM if hypervisor failed to allocate new radix page tables for guest
4614 ====== ================================================================
Bharata B Rao22945682019-11-25 08:36:30 +05304615
4616This ioctl is used to turn off the secure mode of the guest or transition
4617the guest from secure mode to normal mode. This is invoked when the guest
4618is reset. This has no effect if called for a normal guest.
4619
4620This ioctl issues an ultravisor call to terminate the secure guest,
4621unpins the VPA pages and releases all the device pages that are used to
4622track the secure pages by hypervisor.
Eric Hankland66bb8a02019-07-10 18:25:15 -07004623
Janosch Frank7de3f142020-01-31 05:02:02 -050046244.122 KVM_S390_NORMAL_RESET
Christian Borntraegera93236f2020-02-24 11:15:59 +01004625---------------------------
Janosch Frank7de3f142020-01-31 05:02:02 -05004626
Christian Borntraegera93236f2020-02-24 11:15:59 +01004627:Capability: KVM_CAP_S390_VCPU_RESETS
4628:Architectures: s390
4629:Type: vcpu ioctl
4630:Parameters: none
4631:Returns: 0
Janosch Frank7de3f142020-01-31 05:02:02 -05004632
4633This ioctl resets VCPU registers and control structures according to
4634the cpu reset definition in the POP (Principles Of Operation).
4635
46364.123 KVM_S390_INITIAL_RESET
Christian Borntraegera93236f2020-02-24 11:15:59 +01004637----------------------------
Janosch Frank7de3f142020-01-31 05:02:02 -05004638
Christian Borntraegera93236f2020-02-24 11:15:59 +01004639:Capability: none
4640:Architectures: s390
4641:Type: vcpu ioctl
4642:Parameters: none
4643:Returns: 0
Janosch Frank7de3f142020-01-31 05:02:02 -05004644
4645This ioctl resets VCPU registers and control structures according to
4646the initial cpu reset definition in the POP. However, the cpu is not
4647put into ESA mode. This reset is a superset of the normal reset.
4648
46494.124 KVM_S390_CLEAR_RESET
Christian Borntraegera93236f2020-02-24 11:15:59 +01004650--------------------------
Janosch Frank7de3f142020-01-31 05:02:02 -05004651
Christian Borntraegera93236f2020-02-24 11:15:59 +01004652:Capability: KVM_CAP_S390_VCPU_RESETS
4653:Architectures: s390
4654:Type: vcpu ioctl
4655:Parameters: none
4656:Returns: 0
Janosch Frank7de3f142020-01-31 05:02:02 -05004657
4658This ioctl resets VCPU registers and control structures according to
4659the clear cpu reset definition in the POP. However, the cpu is not put
4660into ESA mode. This reset is a superset of the initial reset.
4661
4662
Janosch Frank04ed89d2019-11-08 05:05:26 -050046634.125 KVM_S390_PV_COMMAND
4664-------------------------
4665
4666:Capability: KVM_CAP_S390_PROTECTED
4667:Architectures: s390
4668:Type: vm ioctl
4669:Parameters: struct kvm_pv_cmd
4670:Returns: 0 on success, < 0 on error
4671
4672::
4673
4674 struct kvm_pv_cmd {
4675 __u32 cmd; /* Command to be executed */
4676 __u16 rc; /* Ultravisor return code */
4677 __u16 rrc; /* Ultravisor return reason code */
4678 __u64 data; /* Data or address */
4679 __u32 flags; /* flags for future extensions. Must be 0 for now */
4680 __u32 reserved[3];
4681 };
4682
4683cmd values:
4684
4685KVM_PV_ENABLE
4686 Allocate memory and register the VM with the Ultravisor, thereby
4687 donating memory to the Ultravisor that will become inaccessible to
4688 KVM. All existing CPUs are converted to protected ones. After this
4689 command has succeeded, any CPU added via hotplug will become
4690 protected during its creation as well.
4691
Christian Borntraeger7a265362020-03-27 08:06:42 +01004692 Errors:
4693
4694 ===== =============================
4695 EINTR an unmasked signal is pending
4696 ===== =============================
4697
Janosch Frank04ed89d2019-11-08 05:05:26 -05004698KVM_PV_DISABLE
4699
4700 Deregister the VM from the Ultravisor and reclaim the memory that
4701 had been donated to the Ultravisor, making it usable by the kernel
4702 again. All registered VCPUs are converted back to non-protected
4703 ones.
4704
4705KVM_PV_VM_SET_SEC_PARMS
4706 Pass the image header from VM memory to the Ultravisor in
4707 preparation of image unpacking and verification.
4708
4709KVM_PV_VM_UNPACK
4710 Unpack (protect and decrypt) a page of the encrypted boot image.
4711
4712KVM_PV_VM_VERIFY
4713 Verify the integrity of the unpacked image. Only if this succeeds,
4714 KVM is allowed to start protected VCPUs.
4715
Alexander Graf1a1552542020-09-25 16:34:21 +020047164.126 KVM_X86_SET_MSR_FILTER
4717----------------------------
4718
4719:Capability: KVM_X86_SET_MSR_FILTER
4720:Architectures: x86
4721:Type: vm ioctl
4722:Parameters: struct kvm_msr_filter
4723:Returns: 0 on success, < 0 on error
4724
4725::
4726
4727 struct kvm_msr_filter_range {
4728 #define KVM_MSR_FILTER_READ (1 << 0)
4729 #define KVM_MSR_FILTER_WRITE (1 << 1)
4730 __u32 flags;
4731 __u32 nmsrs; /* number of msrs in bitmap */
4732 __u32 base; /* MSR index the bitmap starts at */
4733 __u8 *bitmap; /* a 1 bit allows the operations in flags, 0 denies */
4734 };
4735
4736 #define KVM_MSR_FILTER_MAX_RANGES 16
4737 struct kvm_msr_filter {
4738 #define KVM_MSR_FILTER_DEFAULT_ALLOW (0 << 0)
4739 #define KVM_MSR_FILTER_DEFAULT_DENY (1 << 0)
4740 __u32 flags;
4741 struct kvm_msr_filter_range ranges[KVM_MSR_FILTER_MAX_RANGES];
4742 };
4743
Sean Christopherson9389b9d2020-10-05 12:55:32 -07004744flags values for ``struct kvm_msr_filter_range``:
Alexander Graf1a1552542020-09-25 16:34:21 +02004745
Sean Christopherson9389b9d2020-10-05 12:55:32 -07004746``KVM_MSR_FILTER_READ``
Alexander Graf1a1552542020-09-25 16:34:21 +02004747
4748 Filter read accesses to MSRs using the given bitmap. A 0 in the bitmap
4749 indicates that a read should immediately fail, while a 1 indicates that
4750 a read for a particular MSR should be handled regardless of the default
4751 filter action.
4752
Sean Christopherson9389b9d2020-10-05 12:55:32 -07004753``KVM_MSR_FILTER_WRITE``
Alexander Graf1a1552542020-09-25 16:34:21 +02004754
4755 Filter write accesses to MSRs using the given bitmap. A 0 in the bitmap
4756 indicates that a write should immediately fail, while a 1 indicates that
4757 a write for a particular MSR should be handled regardless of the default
4758 filter action.
4759
Sean Christopherson9389b9d2020-10-05 12:55:32 -07004760``KVM_MSR_FILTER_READ | KVM_MSR_FILTER_WRITE``
Alexander Graf1a1552542020-09-25 16:34:21 +02004761
4762 Filter both read and write accesses to MSRs using the given bitmap. A 0
4763 in the bitmap indicates that both reads and writes should immediately fail,
4764 while a 1 indicates that reads and writes for a particular MSR are not
4765 filtered by this range.
4766
Sean Christopherson9389b9d2020-10-05 12:55:32 -07004767flags values for ``struct kvm_msr_filter``:
Alexander Graf1a1552542020-09-25 16:34:21 +02004768
Sean Christopherson9389b9d2020-10-05 12:55:32 -07004769``KVM_MSR_FILTER_DEFAULT_ALLOW``
Alexander Graf1a1552542020-09-25 16:34:21 +02004770
4771 If no filter range matches an MSR index that is getting accessed, KVM will
4772 fall back to allowing access to the MSR.
4773
Sean Christopherson9389b9d2020-10-05 12:55:32 -07004774``KVM_MSR_FILTER_DEFAULT_DENY``
Alexander Graf1a1552542020-09-25 16:34:21 +02004775
4776 If no filter range matches an MSR index that is getting accessed, KVM will
4777 fall back to rejecting access to the MSR. In this mode, all MSRs that should
4778 be processed by KVM need to explicitly be marked as allowed in the bitmaps.
4779
4780This ioctl allows user space to define up to 16 bitmaps of MSR ranges to
4781specify whether a certain MSR access should be explicitly filtered for or not.
4782
4783If this ioctl has never been invoked, MSR accesses are not guarded and the
Sean Christopherson9389b9d2020-10-05 12:55:32 -07004784default KVM in-kernel emulation behavior is fully preserved.
Alexander Graf1a1552542020-09-25 16:34:21 +02004785
Paolo Bonzini043248b2020-10-20 10:57:01 -04004786Calling this ioctl with an empty set of ranges (all nmsrs == 0) disables MSR
4787filtering. In that mode, ``KVM_MSR_FILTER_DEFAULT_DENY`` is invalid and causes
4788an error.
4789
Alexander Graf1a1552542020-09-25 16:34:21 +02004790As soon as the filtering is in place, every MSR access is processed through
Sean Christopherson9389b9d2020-10-05 12:55:32 -07004791the filtering except for accesses to the x2APIC MSRs (from 0x800 to 0x8ff);
4792x2APIC MSRs are always allowed, independent of the ``default_allow`` setting,
4793and their behavior depends on the ``X2APIC_ENABLE`` bit of the APIC base
4794register.
4795
Paolo Bonzini043248b2020-10-20 10:57:01 -04004796If a bit is within one of the defined ranges, read and write accesses are
4797guarded by the bitmap's value for the MSR index if the kind of access
4798is included in the ``struct kvm_msr_filter_range`` flags. If no range
4799cover this particular access, the behavior is determined by the flags
4800field in the kvm_msr_filter struct: ``KVM_MSR_FILTER_DEFAULT_ALLOW``
4801and ``KVM_MSR_FILTER_DEFAULT_DENY``.
Alexander Graf1a1552542020-09-25 16:34:21 +02004802
4803Each bitmap range specifies a range of MSRs to potentially allow access on.
4804The range goes from MSR index [base .. base+nmsrs]. The flags field
4805indicates whether reads, writes or both reads and writes are filtered
4806by setting a 1 bit in the bitmap for the corresponding MSR index.
4807
4808If an MSR access is not permitted through the filtering, it generates a
4809#GP inside the guest. When combined with KVM_CAP_X86_USER_SPACE_MSR, that
4810allows user space to deflect and potentially handle various MSR accesses
4811into user space.
4812
Sean Christopherson771dfb32021-03-16 11:44:33 -07004813Note, invoking this ioctl with a vCPU is running is inherently racy. However,
4814KVM does guarantee that vCPUs will see either the previous filter or the new
4815filter, e.g. MSRs with identical settings in both the old and new filter will
4816have deterministic behavior.
Alexander Graf1a1552542020-09-25 16:34:21 +02004817
Janosch Frank04ed89d2019-11-08 05:05:26 -05004818
Avi Kivity9c1b96e2009-06-09 12:37:58 +030048195. The kvm_run structure
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004820========================
Avi Kivity9c1b96e2009-06-09 12:37:58 +03004821
4822Application code obtains a pointer to the kvm_run structure by
4823mmap()ing a vcpu fd. From that point, application code can control
4824execution by changing fields in kvm_run prior to calling the KVM_RUN
4825ioctl, and obtain information about the reason KVM_RUN returned by
4826looking up structure members.
4827
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004828::
4829
4830 struct kvm_run {
Avi Kivity9c1b96e2009-06-09 12:37:58 +03004831 /* in */
4832 __u8 request_interrupt_window;
4833
4834Request that KVM_RUN return when it becomes possible to inject external
4835interrupts into the guest. Useful in conjunction with KVM_INTERRUPT.
4836
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004837::
4838
Paolo Bonzini460df4c2017-02-08 11:50:15 +01004839 __u8 immediate_exit;
4840
4841This field is polled once when KVM_RUN starts; if non-zero, KVM_RUN
4842exits immediately, returning -EINTR. In the common scenario where a
4843signal is used to "kick" a VCPU out of KVM_RUN, this field can be used
4844to avoid usage of KVM_SET_SIGNAL_MASK, which has worse scalability.
4845Rather than blocking the signal outside KVM_RUN, userspace can set up
4846a signal handler that sets run->immediate_exit to a non-zero value.
4847
4848This field is ignored if KVM_CAP_IMMEDIATE_EXIT is not available.
4849
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004850::
4851
Paolo Bonzini460df4c2017-02-08 11:50:15 +01004852 __u8 padding1[6];
Avi Kivity9c1b96e2009-06-09 12:37:58 +03004853
4854 /* out */
4855 __u32 exit_reason;
4856
4857When KVM_RUN has returned successfully (return value 0), this informs
4858application code why KVM_RUN has returned. Allowable values for this
4859field are detailed below.
4860
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004861::
4862
Avi Kivity9c1b96e2009-06-09 12:37:58 +03004863 __u8 ready_for_interrupt_injection;
4864
4865If request_interrupt_window has been specified, this field indicates
4866an interrupt can be injected now with KVM_INTERRUPT.
4867
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004868::
4869
Avi Kivity9c1b96e2009-06-09 12:37:58 +03004870 __u8 if_flag;
4871
4872The value of the current interrupt flag. Only valid if in-kernel
4873local APIC is not used.
4874
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004875::
4876
Paolo Bonzinif0778252015-04-01 15:06:40 +02004877 __u16 flags;
4878
4879More architecture-specific flags detailing state of the VCPU that may
4880affect the device's behavior. The only currently defined flag is
4881KVM_RUN_X86_SMM, which is valid on x86 machines and is set if the
4882VCPU is in system management mode.
Avi Kivity9c1b96e2009-06-09 12:37:58 +03004883
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004884::
4885
Avi Kivity9c1b96e2009-06-09 12:37:58 +03004886 /* in (pre_kvm_run), out (post_kvm_run) */
4887 __u64 cr8;
4888
4889The value of the cr8 register. Only valid if in-kernel local APIC is
4890not used. Both input and output.
4891
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004892::
4893
Avi Kivity9c1b96e2009-06-09 12:37:58 +03004894 __u64 apic_base;
4895
4896The value of the APIC BASE msr. Only valid if in-kernel local
4897APIC is not used. Both input and output.
4898
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004899::
4900
Avi Kivity9c1b96e2009-06-09 12:37:58 +03004901 union {
4902 /* KVM_EXIT_UNKNOWN */
4903 struct {
4904 __u64 hardware_exit_reason;
4905 } hw;
4906
4907If exit_reason is KVM_EXIT_UNKNOWN, the vcpu has exited due to unknown
4908reasons. Further architecture-specific information is available in
4909hardware_exit_reason.
4910
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004911::
4912
Avi Kivity9c1b96e2009-06-09 12:37:58 +03004913 /* KVM_EXIT_FAIL_ENTRY */
4914 struct {
4915 __u64 hardware_entry_failure_reason;
Jim Mattson1aa561b2020-06-03 16:56:21 -07004916 __u32 cpu; /* if KVM_LAST_CPU */
Avi Kivity9c1b96e2009-06-09 12:37:58 +03004917 } fail_entry;
4918
4919If exit_reason is KVM_EXIT_FAIL_ENTRY, the vcpu could not be run due
4920to unknown reasons. Further architecture-specific information is
4921available in hardware_entry_failure_reason.
4922
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004923::
4924
Avi Kivity9c1b96e2009-06-09 12:37:58 +03004925 /* KVM_EXIT_EXCEPTION */
4926 struct {
4927 __u32 exception;
4928 __u32 error_code;
4929 } ex;
4930
4931Unused.
4932
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004933::
4934
Avi Kivity9c1b96e2009-06-09 12:37:58 +03004935 /* KVM_EXIT_IO */
4936 struct {
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004937 #define KVM_EXIT_IO_IN 0
4938 #define KVM_EXIT_IO_OUT 1
Avi Kivity9c1b96e2009-06-09 12:37:58 +03004939 __u8 direction;
4940 __u8 size; /* bytes */
4941 __u16 port;
4942 __u32 count;
4943 __u64 data_offset; /* relative to kvm_run start */
4944 } io;
4945
Wu Fengguang2044892d2009-12-24 09:04:16 +08004946If exit_reason is KVM_EXIT_IO, then the vcpu has
Avi Kivity9c1b96e2009-06-09 12:37:58 +03004947executed a port I/O instruction which could not be satisfied by kvm.
4948data_offset describes where the data is located (KVM_EXIT_IO_OUT) or
4949where kvm expects application code to place the data for the next
Wu Fengguang2044892d2009-12-24 09:04:16 +08004950KVM_RUN invocation (KVM_EXIT_IO_IN). Data format is a packed array.
Avi Kivity9c1b96e2009-06-09 12:37:58 +03004951
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004952::
4953
Alex Bennée8ab30c12015-07-07 17:29:53 +01004954 /* KVM_EXIT_DEBUG */
Avi Kivity9c1b96e2009-06-09 12:37:58 +03004955 struct {
4956 struct kvm_debug_exit_arch arch;
4957 } debug;
4958
Alex Bennée8ab30c12015-07-07 17:29:53 +01004959If the exit_reason is KVM_EXIT_DEBUG, then a vcpu is processing a debug event
4960for which architecture specific information is returned.
Avi Kivity9c1b96e2009-06-09 12:37:58 +03004961
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004962::
4963
Avi Kivity9c1b96e2009-06-09 12:37:58 +03004964 /* KVM_EXIT_MMIO */
4965 struct {
4966 __u64 phys_addr;
4967 __u8 data[8];
4968 __u32 len;
4969 __u8 is_write;
4970 } mmio;
4971
Wu Fengguang2044892d2009-12-24 09:04:16 +08004972If exit_reason is KVM_EXIT_MMIO, then the vcpu has
Avi Kivity9c1b96e2009-06-09 12:37:58 +03004973executed a memory-mapped I/O instruction which could not be satisfied
4974by kvm. The 'data' member contains the written data if 'is_write' is
4975true, and should be filled by application code otherwise.
4976
Christoffer Dall6acdb162014-01-28 08:28:42 -08004977The 'data' member contains, in its first 'len' bytes, the value as it would
4978appear if the VCPU performed a load or store of the appropriate width directly
4979to the byte array.
4980
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004981.. note::
4982
Alexander Graf1ae09952020-09-25 16:34:16 +02004983 For KVM_EXIT_IO, KVM_EXIT_MMIO, KVM_EXIT_OSI, KVM_EXIT_PAPR,
4984 KVM_EXIT_EPR, KVM_EXIT_X86_RDMSR and KVM_EXIT_X86_WRMSR the corresponding
4985 operations are complete (and guest state is consistent) only after userspace
4986 has re-entered the kernel with KVM_RUN. The kernel side will first finish
4987 incomplete operations and then check for pending signals. Userspace
4988 can re-enter the guest with an unmasked signal pending to complete
4989 pending operations.
Marcelo Tosatti67961342010-02-13 16:10:26 -02004990
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01004991::
4992
Avi Kivity9c1b96e2009-06-09 12:37:58 +03004993 /* KVM_EXIT_HYPERCALL */
4994 struct {
4995 __u64 nr;
4996 __u64 args[6];
4997 __u64 ret;
4998 __u32 longmode;
4999 __u32 pad;
5000 } hypercall;
5001
Avi Kivity647dc492010-04-01 14:39:21 +03005002Unused. This was once used for 'hypercall to userspace'. To implement
5003such functionality, use KVM_EXIT_IO (x86) or KVM_EXIT_MMIO (all except s390).
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005004
5005.. note:: KVM_EXIT_IO is significantly faster than KVM_EXIT_MMIO.
5006
5007::
Avi Kivity9c1b96e2009-06-09 12:37:58 +03005008
5009 /* KVM_EXIT_TPR_ACCESS */
5010 struct {
5011 __u64 rip;
5012 __u32 is_write;
5013 __u32 pad;
5014 } tpr_access;
5015
5016To be documented (KVM_TPR_ACCESS_REPORTING).
5017
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005018::
5019
Avi Kivity9c1b96e2009-06-09 12:37:58 +03005020 /* KVM_EXIT_S390_SIEIC */
5021 struct {
5022 __u8 icptcode;
5023 __u64 mask; /* psw upper half */
5024 __u64 addr; /* psw lower half */
5025 __u16 ipa;
5026 __u32 ipb;
5027 } s390_sieic;
5028
5029s390 specific.
5030
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005031::
5032
Avi Kivity9c1b96e2009-06-09 12:37:58 +03005033 /* KVM_EXIT_S390_RESET */
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005034 #define KVM_S390_RESET_POR 1
5035 #define KVM_S390_RESET_CLEAR 2
5036 #define KVM_S390_RESET_SUBSYSTEM 4
5037 #define KVM_S390_RESET_CPU_INIT 8
5038 #define KVM_S390_RESET_IPL 16
Avi Kivity9c1b96e2009-06-09 12:37:58 +03005039 __u64 s390_reset_flags;
5040
5041s390 specific.
5042
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005043::
5044
Carsten Ottee168bf82012-01-04 10:25:22 +01005045 /* KVM_EXIT_S390_UCONTROL */
5046 struct {
5047 __u64 trans_exc_code;
5048 __u32 pgm_code;
5049 } s390_ucontrol;
5050
5051s390 specific. A page fault has occurred for a user controlled virtual
5052machine (KVM_VM_S390_UNCONTROL) on it's host page table that cannot be
5053resolved by the kernel.
5054The program code and the translation exception code that were placed
5055in the cpu's lowcore are presented here as defined by the z Architecture
5056Principles of Operation Book in the Chapter for Dynamic Address Translation
5057(DAT)
5058
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005059::
5060
Avi Kivity9c1b96e2009-06-09 12:37:58 +03005061 /* KVM_EXIT_DCR */
5062 struct {
5063 __u32 dcrn;
5064 __u32 data;
5065 __u8 is_write;
5066 } dcr;
5067
Alexander Grafce91ddc2014-07-28 19:29:13 +02005068Deprecated - was used for 440 KVM.
Avi Kivity9c1b96e2009-06-09 12:37:58 +03005069
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005070::
5071
Alexander Grafad0a0482010-03-24 21:48:30 +01005072 /* KVM_EXIT_OSI */
5073 struct {
5074 __u64 gprs[32];
5075 } osi;
5076
5077MOL uses a special hypercall interface it calls 'OSI'. To enable it, we catch
5078hypercalls and exit with this exit struct that contains all the guest gprs.
5079
5080If exit_reason is KVM_EXIT_OSI, then the vcpu has triggered such a hypercall.
5081Userspace can now handle the hypercall and when it's done modify the gprs as
5082necessary. Upon guest entry all guest GPRs will then be replaced by the values
5083in this struct.
5084
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005085::
5086
Paul Mackerrasde56a942011-06-29 00:21:34 +00005087 /* KVM_EXIT_PAPR_HCALL */
5088 struct {
5089 __u64 nr;
5090 __u64 ret;
5091 __u64 args[9];
5092 } papr_hcall;
5093
5094This is used on 64-bit PowerPC when emulating a pSeries partition,
5095e.g. with the 'pseries' machine type in qemu. It occurs when the
5096guest does a hypercall using the 'sc 1' instruction. The 'nr' field
5097contains the hypercall number (from the guest R3), and 'args' contains
5098the arguments (from the guest R4 - R12). Userspace should put the
5099return code in 'ret' and any extra returned values in args[].
5100The possible hypercalls are defined in the Power Architecture Platform
5101Requirements (PAPR) document available from www.power.org (free
5102developer registration required to access it).
5103
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005104::
5105
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +01005106 /* KVM_EXIT_S390_TSCH */
5107 struct {
5108 __u16 subchannel_id;
5109 __u16 subchannel_nr;
5110 __u32 io_int_parm;
5111 __u32 io_int_word;
5112 __u32 ipb;
5113 __u8 dequeued;
5114 } s390_tsch;
5115
5116s390 specific. This exit occurs when KVM_CAP_S390_CSS_SUPPORT has been enabled
5117and TEST SUBCHANNEL was intercepted. If dequeued is set, a pending I/O
5118interrupt for the target subchannel has been dequeued and subchannel_id,
5119subchannel_nr, io_int_parm and io_int_word contain the parameters for that
5120interrupt. ipb is needed for instruction parameter decoding.
5121
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005122::
5123
Alexander Graf1c810632013-01-04 18:12:48 +01005124 /* KVM_EXIT_EPR */
5125 struct {
5126 __u32 epr;
5127 } epr;
5128
5129On FSL BookE PowerPC chips, the interrupt controller has a fast patch
5130interrupt acknowledge path to the core. When the core successfully
5131delivers an interrupt, it automatically populates the EPR register with
5132the interrupt vector number and acknowledges the interrupt inside
5133the interrupt controller.
5134
5135In case the interrupt controller lives in user space, we need to do
5136the interrupt acknowledge cycle through it to fetch the next to be
5137delivered interrupt vector using this exit.
5138
5139It gets triggered whenever both KVM_CAP_PPC_EPR are enabled and an
5140external interrupt has just been delivered into the guest. User space
5141should put the acknowledged interrupt vector into the 'epr' field.
5142
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005143::
5144
Anup Patel8ad6b632014-04-29 11:24:19 +05305145 /* KVM_EXIT_SYSTEM_EVENT */
5146 struct {
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005147 #define KVM_SYSTEM_EVENT_SHUTDOWN 1
5148 #define KVM_SYSTEM_EVENT_RESET 2
5149 #define KVM_SYSTEM_EVENT_CRASH 3
Anup Patel8ad6b632014-04-29 11:24:19 +05305150 __u32 type;
5151 __u64 flags;
5152 } system_event;
5153
5154If exit_reason is KVM_EXIT_SYSTEM_EVENT then the vcpu has triggered
5155a system-level event using some architecture specific mechanism (hypercall
5156or some special instruction). In case of ARM/ARM64, this is triggered using
5157HVC instruction based PSCI call from the vcpu. The 'type' field describes
5158the system-level event type. The 'flags' field describes architecture
5159specific flags for the system-level event.
5160
Christoffer Dallcf5d31882014-10-16 17:00:18 +02005161Valid values for 'type' are:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005162
5163 - KVM_SYSTEM_EVENT_SHUTDOWN -- the guest has requested a shutdown of the
Christoffer Dallcf5d31882014-10-16 17:00:18 +02005164 VM. Userspace is not obliged to honour this, and if it does honour
5165 this does not need to destroy the VM synchronously (ie it may call
5166 KVM_RUN again before shutdown finally occurs).
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005167 - KVM_SYSTEM_EVENT_RESET -- the guest has requested a reset of the VM.
Christoffer Dallcf5d31882014-10-16 17:00:18 +02005168 As with SHUTDOWN, userspace can choose to ignore the request, or
5169 to schedule the reset to occur in the future and may call KVM_RUN again.
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005170 - KVM_SYSTEM_EVENT_CRASH -- the guest crash occurred and the guest
Andrey Smetanin2ce79182015-07-03 15:01:41 +03005171 has requested a crash condition maintenance. Userspace can choose
5172 to ignore the request, or to gather VM memory core dump and/or
5173 reset/shutdown of the VM.
Christoffer Dallcf5d31882014-10-16 17:00:18 +02005174
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005175::
5176
Steve Rutherford7543a632015-07-29 23:21:41 -07005177 /* KVM_EXIT_IOAPIC_EOI */
5178 struct {
5179 __u8 vector;
5180 } eoi;
5181
5182Indicates that the VCPU's in-kernel local APIC received an EOI for a
5183level-triggered IOAPIC interrupt. This exit only triggers when the
5184IOAPIC is implemented in userspace (i.e. KVM_CAP_SPLIT_IRQCHIP is enabled);
5185the userspace IOAPIC should process the EOI and retrigger the interrupt if
5186it is still asserted. Vector is the LAPIC interrupt vector for which the
5187EOI was received.
5188
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005189::
5190
Andrey Smetanindb3975712015-11-10 15:36:35 +03005191 struct kvm_hyperv_exit {
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005192 #define KVM_EXIT_HYPERV_SYNIC 1
5193 #define KVM_EXIT_HYPERV_HCALL 2
Jon Doronf97f5a52020-05-29 16:45:40 +03005194 #define KVM_EXIT_HYPERV_SYNDBG 3
Andrey Smetanindb3975712015-11-10 15:36:35 +03005195 __u32 type;
Jon Doronf7d31e62020-04-24 14:37:40 +03005196 __u32 pad1;
Andrey Smetanindb3975712015-11-10 15:36:35 +03005197 union {
5198 struct {
5199 __u32 msr;
Jon Doronf7d31e62020-04-24 14:37:40 +03005200 __u32 pad2;
Andrey Smetanindb3975712015-11-10 15:36:35 +03005201 __u64 control;
5202 __u64 evt_page;
5203 __u64 msg_page;
5204 } synic;
Andrey Smetanin83326e42016-02-11 16:45:01 +03005205 struct {
5206 __u64 input;
5207 __u64 result;
5208 __u64 params[2];
5209 } hcall;
Jon Doronf97f5a52020-05-29 16:45:40 +03005210 struct {
5211 __u32 msr;
5212 __u32 pad2;
5213 __u64 control;
5214 __u64 status;
5215 __u64 send_page;
5216 __u64 recv_page;
5217 __u64 pending_page;
5218 } syndbg;
Andrey Smetanindb3975712015-11-10 15:36:35 +03005219 } u;
5220 };
5221 /* KVM_EXIT_HYPERV */
5222 struct kvm_hyperv_exit hyperv;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005223
Andrey Smetanindb3975712015-11-10 15:36:35 +03005224Indicates that the VCPU exits into userspace to process some tasks
5225related to Hyper-V emulation.
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005226
Andrey Smetanindb3975712015-11-10 15:36:35 +03005227Valid values for 'type' are:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005228
5229 - KVM_EXIT_HYPERV_SYNIC -- synchronously notify user-space about
5230
Andrey Smetanindb3975712015-11-10 15:36:35 +03005231Hyper-V SynIC state change. Notification is used to remap SynIC
5232event/message pages and to enable/disable SynIC messages/events processing
5233in userspace.
5234
Jon Doronf97f5a52020-05-29 16:45:40 +03005235 - KVM_EXIT_HYPERV_SYNDBG -- synchronously notify user-space about
5236
5237Hyper-V Synthetic debugger state change. Notification is used to either update
5238the pending_page location or to send a control command (send the buffer located
5239in send_page or recv a buffer to recv_page).
5240
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005241::
5242
Christoffer Dallc7262002019-10-11 13:07:05 +02005243 /* KVM_EXIT_ARM_NISV */
5244 struct {
5245 __u64 esr_iss;
5246 __u64 fault_ipa;
5247 } arm_nisv;
5248
5249Used on arm and arm64 systems. If a guest accesses memory not in a memslot,
5250KVM will typically return to userspace and ask it to do MMIO emulation on its
5251behalf. However, for certain classes of instructions, no instruction decode
5252(direction, length of memory access) is provided, and fetching and decoding
5253the instruction from the VM is overly complicated to live in the kernel.
5254
5255Historically, when this situation occurred, KVM would print a warning and kill
5256the VM. KVM assumed that if the guest accessed non-memslot memory, it was
5257trying to do I/O, which just couldn't be emulated, and the warning message was
5258phrased accordingly. However, what happened more often was that a guest bug
5259caused access outside the guest memory areas which should lead to a more
5260meaningful warning message and an external abort in the guest, if the access
5261did not fall within an I/O window.
5262
5263Userspace implementations can query for KVM_CAP_ARM_NISV_TO_USER, and enable
5264this capability at VM creation. Once this is done, these types of errors will
5265instead return to userspace with KVM_EXIT_ARM_NISV, with the valid bits from
5266the HSR (arm) and ESR_EL2 (arm64) in the esr_iss field, and the faulting IPA
5267in the fault_ipa field. Userspace can either fix up the access if it's
5268actually an I/O access by decoding the instruction from guest memory (if it's
5269very brave) and continue executing the guest, or it can decide to suspend,
5270dump, or restart the guest.
5271
5272Note that KVM does not skip the faulting instruction as it does for
5273KVM_EXIT_MMIO, but userspace has to emulate any change to the processing state
5274if it decides to decode and emulate the instruction.
5275
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005276::
5277
Alexander Graf1ae09952020-09-25 16:34:16 +02005278 /* KVM_EXIT_X86_RDMSR / KVM_EXIT_X86_WRMSR */
5279 struct {
5280 __u8 error; /* user -> kernel */
5281 __u8 pad[7];
5282 __u32 reason; /* kernel -> user */
5283 __u32 index; /* kernel -> user */
5284 __u64 data; /* kernel <-> user */
5285 } msr;
5286
5287Used on x86 systems. When the VM capability KVM_CAP_X86_USER_SPACE_MSR is
5288enabled, MSR accesses to registers that would invoke a #GP by KVM kernel code
5289will instead trigger a KVM_EXIT_X86_RDMSR exit for reads and KVM_EXIT_X86_WRMSR
5290exit for writes.
5291
5292The "reason" field specifies why the MSR trap occurred. User space will only
5293receive MSR exit traps when a particular reason was requested during through
5294ENABLE_CAP. Currently valid exit reasons are:
5295
5296 KVM_MSR_EXIT_REASON_UNKNOWN - access to MSR that is unknown to KVM
5297 KVM_MSR_EXIT_REASON_INVAL - access to invalid MSRs or reserved bits
Alexander Graf1a1552542020-09-25 16:34:21 +02005298 KVM_MSR_EXIT_REASON_FILTER - access blocked by KVM_X86_SET_MSR_FILTER
Alexander Graf1ae09952020-09-25 16:34:16 +02005299
5300For KVM_EXIT_X86_RDMSR, the "index" field tells user space which MSR the guest
5301wants to read. To respond to this request with a successful read, user space
5302writes the respective data into the "data" field and must continue guest
5303execution to ensure the read data is transferred into guest register state.
5304
5305If the RDMSR request was unsuccessful, user space indicates that with a "1" in
5306the "error" field. This will inject a #GP into the guest when the VCPU is
5307executed again.
5308
5309For KVM_EXIT_X86_WRMSR, the "index" field tells user space which MSR the guest
5310wants to write. Once finished processing the event, user space must continue
5311vCPU execution. If the MSR write was unsuccessful, user space also sets the
5312"error" field to "1".
5313
5314::
5315
Avi Kivity9c1b96e2009-06-09 12:37:58 +03005316 /* Fix the size of the union. */
5317 char padding[256];
5318 };
Christian Borntraegerb9e5dc82012-01-11 11:20:30 +01005319
5320 /*
5321 * shared registers between kvm and userspace.
5322 * kvm_valid_regs specifies the register classes set by the host
5323 * kvm_dirty_regs specified the register classes dirtied by userspace
5324 * struct kvm_sync_regs is architecture specific, as well as the
5325 * bits for kvm_valid_regs and kvm_dirty_regs
5326 */
5327 __u64 kvm_valid_regs;
5328 __u64 kvm_dirty_regs;
5329 union {
5330 struct kvm_sync_regs regs;
Ken Hofsass7b7e3952018-01-31 16:03:35 -08005331 char padding[SYNC_REGS_SIZE_BYTES];
Christian Borntraegerb9e5dc82012-01-11 11:20:30 +01005332 } s;
5333
5334If KVM_CAP_SYNC_REGS is defined, these fields allow userspace to access
5335certain guest registers without having to call SET/GET_*REGS. Thus we can
5336avoid some system call overhead if userspace has to handle the exit.
5337Userspace can query the validity of the structure by checking
5338kvm_valid_regs for specific bits. These bits are architecture specific
5339and usually define the validity of a groups of registers. (e.g. one bit
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005340for general purpose registers)
Christian Borntraegerb9e5dc82012-01-11 11:20:30 +01005341
David Hildenbrandd8482c02014-07-29 08:19:26 +02005342Please note that the kernel is allowed to use the kvm_run structure as the
5343primary storage for certain register types. Therefore, the kernel may use the
5344values in kvm_run even if the corresponding bit in kvm_dirty_regs is not set.
5345
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005346::
5347
5348 };
Alexander Graf821246a2011-08-31 10:58:55 +02005349
Jan Kiszka414fa982012-04-24 16:40:15 +02005350
Borislav Petkov9c15bb12013-09-22 16:44:50 +02005351
Paul Mackerras699a0ea2014-06-02 11:02:59 +100053526. Capabilities that can be enabled on vCPUs
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005353============================================
Alexander Graf821246a2011-08-31 10:58:55 +02005354
Cornelia Huck0907c852014-06-27 09:29:26 +02005355There are certain capabilities that change the behavior of the virtual CPU or
5356the virtual machine when enabled. To enable them, please see section 4.37.
5357Below you can find a list of capabilities and what their effect on the vCPU or
5358the virtual machine is when enabling them.
Alexander Graf821246a2011-08-31 10:58:55 +02005359
5360The following information is provided along with the description:
5361
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005362 Architectures:
5363 which instruction set architectures provide this ioctl.
Alexander Graf821246a2011-08-31 10:58:55 +02005364 x86 includes both i386 and x86_64.
5365
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005366 Target:
5367 whether this is a per-vcpu or per-vm capability.
Cornelia Huck0907c852014-06-27 09:29:26 +02005368
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005369 Parameters:
5370 what parameters are accepted by the capability.
Alexander Graf821246a2011-08-31 10:58:55 +02005371
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005372 Returns:
5373 the return value. General error numbers (EBADF, ENOMEM, EINVAL)
Alexander Graf821246a2011-08-31 10:58:55 +02005374 are not detailed, but errors with specific meanings are.
5375
Jan Kiszka414fa982012-04-24 16:40:15 +02005376
Alexander Graf821246a2011-08-31 10:58:55 +020053776.1 KVM_CAP_PPC_OSI
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005378-------------------
Alexander Graf821246a2011-08-31 10:58:55 +02005379
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005380:Architectures: ppc
5381:Target: vcpu
5382:Parameters: none
5383:Returns: 0 on success; -1 on error
Alexander Graf821246a2011-08-31 10:58:55 +02005384
5385This capability enables interception of OSI hypercalls that otherwise would
5386be treated as normal system calls to be injected into the guest. OSI hypercalls
5387were invented by Mac-on-Linux to have a standardized communication mechanism
5388between the guest and the host.
5389
5390When this capability is enabled, KVM_EXIT_OSI can occur.
5391
Jan Kiszka414fa982012-04-24 16:40:15 +02005392
Alexander Graf821246a2011-08-31 10:58:55 +020053936.2 KVM_CAP_PPC_PAPR
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005394--------------------
Alexander Graf821246a2011-08-31 10:58:55 +02005395
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005396:Architectures: ppc
5397:Target: vcpu
5398:Parameters: none
5399:Returns: 0 on success; -1 on error
Alexander Graf821246a2011-08-31 10:58:55 +02005400
5401This capability enables interception of PAPR hypercalls. PAPR hypercalls are
5402done using the hypercall instruction "sc 1".
5403
5404It also sets the guest privilege level to "supervisor" mode. Usually the guest
5405runs in "hypervisor" privilege mode with a few missing features.
5406
5407In addition to the above, it changes the semantics of SDR1. In this mode, the
5408HTAB address part of SDR1 contains an HVA instead of a GPA, as PAPR keeps the
5409HTAB invisible to the guest.
5410
5411When this capability is enabled, KVM_EXIT_PAPR_HCALL can occur.
Scott Wooddc83b8b2011-08-18 15:25:21 -05005412
Jan Kiszka414fa982012-04-24 16:40:15 +02005413
Scott Wooddc83b8b2011-08-18 15:25:21 -050054146.3 KVM_CAP_SW_TLB
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005415------------------
Scott Wooddc83b8b2011-08-18 15:25:21 -05005416
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005417:Architectures: ppc
5418:Target: vcpu
5419:Parameters: args[0] is the address of a struct kvm_config_tlb
5420:Returns: 0 on success; -1 on error
Scott Wooddc83b8b2011-08-18 15:25:21 -05005421
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005422::
5423
5424 struct kvm_config_tlb {
Scott Wooddc83b8b2011-08-18 15:25:21 -05005425 __u64 params;
5426 __u64 array;
5427 __u32 mmu_type;
5428 __u32 array_len;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005429 };
Scott Wooddc83b8b2011-08-18 15:25:21 -05005430
5431Configures the virtual CPU's TLB array, establishing a shared memory area
5432between userspace and KVM. The "params" and "array" fields are userspace
5433addresses of mmu-type-specific data structures. The "array_len" field is an
5434safety mechanism, and should be set to the size in bytes of the memory that
5435userspace has reserved for the array. It must be at least the size dictated
5436by "mmu_type" and "params".
5437
5438While KVM_RUN is active, the shared region is under control of KVM. Its
5439contents are undefined, and any modification by userspace results in
5440boundedly undefined behavior.
5441
5442On return from KVM_RUN, the shared region will reflect the current state of
5443the guest's TLB. If userspace makes any changes, it must call KVM_DIRTY_TLB
5444to tell KVM which entries have been changed, prior to calling KVM_RUN again
5445on this vcpu.
5446
5447For mmu types KVM_MMU_FSL_BOOKE_NOHV and KVM_MMU_FSL_BOOKE_HV:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005448
Scott Wooddc83b8b2011-08-18 15:25:21 -05005449 - The "params" field is of type "struct kvm_book3e_206_tlb_params".
5450 - The "array" field points to an array of type "struct
5451 kvm_book3e_206_tlb_entry".
5452 - The array consists of all entries in the first TLB, followed by all
5453 entries in the second TLB.
5454 - Within a TLB, entries are ordered first by increasing set number. Within a
5455 set, entries are ordered by way (increasing ESEL).
5456 - The hash for determining set number in TLB0 is: (MAS2 >> 12) & (num_sets - 1)
5457 where "num_sets" is the tlb_sizes[] value divided by the tlb_ways[] value.
5458 - The tsize field of mas1 shall be set to 4K on TLB0, even though the
5459 hardware ignores this value for TLB0.
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +01005460
54616.4 KVM_CAP_S390_CSS_SUPPORT
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005462----------------------------
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +01005463
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005464:Architectures: s390
5465:Target: vcpu
5466:Parameters: none
5467:Returns: 0 on success; -1 on error
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +01005468
5469This capability enables support for handling of channel I/O instructions.
5470
5471TEST PENDING INTERRUPTION and the interrupt portion of TEST SUBCHANNEL are
5472handled in-kernel, while the other I/O instructions are passed to userspace.
5473
5474When this capability is enabled, KVM_EXIT_S390_TSCH will occur on TEST
5475SUBCHANNEL intercepts.
Alexander Graf1c810632013-01-04 18:12:48 +01005476
Cornelia Huck0907c852014-06-27 09:29:26 +02005477Note that even though this capability is enabled per-vcpu, the complete
5478virtual machine is affected.
5479
Alexander Graf1c810632013-01-04 18:12:48 +010054806.5 KVM_CAP_PPC_EPR
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005481-------------------
Alexander Graf1c810632013-01-04 18:12:48 +01005482
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005483:Architectures: ppc
5484:Target: vcpu
5485:Parameters: args[0] defines whether the proxy facility is active
5486:Returns: 0 on success; -1 on error
Alexander Graf1c810632013-01-04 18:12:48 +01005487
5488This capability enables or disables the delivery of interrupts through the
5489external proxy facility.
5490
5491When enabled (args[0] != 0), every time the guest gets an external interrupt
5492delivered, it automatically exits into user space with a KVM_EXIT_EPR exit
5493to receive the topmost interrupt vector.
5494
5495When disabled (args[0] == 0), behavior is as if this facility is unsupported.
5496
5497When this capability is enabled, KVM_EXIT_EPR can occur.
Scott Woodeb1e4f42013-04-12 14:08:47 +00005498
54996.6 KVM_CAP_IRQ_MPIC
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005500--------------------
Scott Woodeb1e4f42013-04-12 14:08:47 +00005501
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005502:Architectures: ppc
5503:Parameters: args[0] is the MPIC device fd;
5504 args[1] is the MPIC CPU number for this vcpu
Scott Woodeb1e4f42013-04-12 14:08:47 +00005505
5506This capability connects the vcpu to an in-kernel MPIC device.
Paul Mackerras5975a2e2013-04-27 00:28:37 +00005507
55086.7 KVM_CAP_IRQ_XICS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005509--------------------
Paul Mackerras5975a2e2013-04-27 00:28:37 +00005510
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005511:Architectures: ppc
5512:Target: vcpu
5513:Parameters: args[0] is the XICS device fd;
5514 args[1] is the XICS CPU number (server ID) for this vcpu
Paul Mackerras5975a2e2013-04-27 00:28:37 +00005515
5516This capability connects the vcpu to an in-kernel XICS device.
Cornelia Huck8a366a42014-06-27 11:06:25 +02005517
55186.8 KVM_CAP_S390_IRQCHIP
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005519------------------------
Cornelia Huck8a366a42014-06-27 11:06:25 +02005520
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005521:Architectures: s390
5522:Target: vm
5523:Parameters: none
Cornelia Huck8a366a42014-06-27 11:06:25 +02005524
5525This capability enables the in-kernel irqchip for s390. Please refer to
5526"4.24 KVM_CREATE_IRQCHIP" for details.
Paul Mackerras699a0ea2014-06-02 11:02:59 +10005527
James Hogan5fafd8742014-12-08 23:07:56 +000055286.9 KVM_CAP_MIPS_FPU
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005529--------------------
James Hogan5fafd8742014-12-08 23:07:56 +00005530
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005531:Architectures: mips
5532:Target: vcpu
5533:Parameters: args[0] is reserved for future use (should be 0).
James Hogan5fafd8742014-12-08 23:07:56 +00005534
5535This capability allows the use of the host Floating Point Unit by the guest. It
5536allows 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 +01005537done the ``KVM_REG_MIPS_FPR_*`` and ``KVM_REG_MIPS_FCR_*`` registers can be
5538accessed (depending on the current guest FPU register mode), and the Status.FR,
James Hogan5fafd8742014-12-08 23:07:56 +00005539Config5.FRE bits are accessible via the KVM API and also from the guest,
5540depending on them being supported by the FPU.
5541
James Hogand952bd02014-12-08 23:07:56 +000055426.10 KVM_CAP_MIPS_MSA
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005543---------------------
James Hogand952bd02014-12-08 23:07:56 +00005544
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005545:Architectures: mips
5546:Target: vcpu
5547:Parameters: args[0] is reserved for future use (should be 0).
James Hogand952bd02014-12-08 23:07:56 +00005548
5549This capability allows the use of the MIPS SIMD Architecture (MSA) by the guest.
5550It 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 +01005551Once this is done the ``KVM_REG_MIPS_VEC_*`` and ``KVM_REG_MIPS_MSA_*``
5552registers can be accessed, and the Config5.MSAEn bit is accessible via the
5553KVM API and also from the guest.
James Hogand952bd02014-12-08 23:07:56 +00005554
Ken Hofsass01643c52018-01-31 16:03:36 -080055556.74 KVM_CAP_SYNC_REGS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005556----------------------
5557
5558:Architectures: s390, x86
5559:Target: s390: always enabled, x86: vcpu
5560:Parameters: none
5561:Returns: x86: KVM_CHECK_EXTENSION returns a bit-array indicating which register
5562 sets are supported
5563 (bitfields defined in arch/x86/include/uapi/asm/kvm.h).
Ken Hofsass01643c52018-01-31 16:03:36 -08005564
5565As described above in the kvm_sync_regs struct info in section 5 (kvm_run):
5566KVM_CAP_SYNC_REGS "allow[s] userspace to access certain guest registers
5567without having to call SET/GET_*REGS". This reduces overhead by eliminating
5568repeated ioctl calls for setting and/or getting register values. This is
5569particularly important when userspace is making synchronous guest state
5570modifications, e.g. when emulating and/or intercepting instructions in
5571userspace.
5572
5573For s390 specifics, please refer to the source code.
5574
5575For x86:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005576
Ken Hofsass01643c52018-01-31 16:03:36 -08005577- the register sets to be copied out to kvm_run are selectable
5578 by userspace (rather that all sets being copied out for every exit).
5579- vcpu_events are available in addition to regs and sregs.
5580
5581For x86, the 'kvm_valid_regs' field of struct kvm_run is overloaded to
5582function as an input bit-array field set by userspace to indicate the
5583specific register sets to be copied out on the next exit.
5584
5585To indicate when userspace has modified values that should be copied into
5586the vCPU, the all architecture bitarray field, 'kvm_dirty_regs' must be set.
5587This is done using the same bitflags as for the 'kvm_valid_regs' field.
5588If the dirty bit is not set, then the register set values will not be copied
5589into the vCPU even if they've been modified.
5590
5591Unused bitfields in the bitarrays must be set to zero.
5592
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005593::
5594
5595 struct kvm_sync_regs {
Ken Hofsass01643c52018-01-31 16:03:36 -08005596 struct kvm_regs regs;
5597 struct kvm_sregs sregs;
5598 struct kvm_vcpu_events events;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005599 };
Ken Hofsass01643c52018-01-31 16:03:36 -08005600
Cédric Le Goatereacc56b2019-04-18 12:39:28 +020056016.75 KVM_CAP_PPC_IRQ_XIVE
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005602-------------------------
Cédric Le Goatereacc56b2019-04-18 12:39:28 +02005603
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005604:Architectures: ppc
5605:Target: vcpu
5606:Parameters: args[0] is the XIVE device fd;
5607 args[1] is the XIVE CPU number (server ID) for this vcpu
Cédric Le Goatereacc56b2019-04-18 12:39:28 +02005608
5609This capability connects the vcpu to an in-kernel XIVE device.
5610
Paul Mackerras699a0ea2014-06-02 11:02:59 +100056117. Capabilities that can be enabled on VMs
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005612==========================================
Paul Mackerras699a0ea2014-06-02 11:02:59 +10005613
5614There are certain capabilities that change the behavior of the virtual
5615machine when enabled. To enable them, please see section 4.37. Below
5616you can find a list of capabilities and what their effect on the VM
5617is when enabling them.
5618
5619The following information is provided along with the description:
5620
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005621 Architectures:
5622 which instruction set architectures provide this ioctl.
Paul Mackerras699a0ea2014-06-02 11:02:59 +10005623 x86 includes both i386 and x86_64.
5624
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005625 Parameters:
5626 what parameters are accepted by the capability.
Paul Mackerras699a0ea2014-06-02 11:02:59 +10005627
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005628 Returns:
5629 the return value. General error numbers (EBADF, ENOMEM, EINVAL)
Paul Mackerras699a0ea2014-06-02 11:02:59 +10005630 are not detailed, but errors with specific meanings are.
5631
5632
56337.1 KVM_CAP_PPC_ENABLE_HCALL
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005634----------------------------
Paul Mackerras699a0ea2014-06-02 11:02:59 +10005635
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005636:Architectures: ppc
5637:Parameters: args[0] is the sPAPR hcall number;
5638 args[1] is 0 to disable, 1 to enable in-kernel handling
Paul Mackerras699a0ea2014-06-02 11:02:59 +10005639
5640This capability controls whether individual sPAPR hypercalls (hcalls)
5641get handled by the kernel or not. Enabling or disabling in-kernel
5642handling of an hcall is effective across the VM. On creation, an
5643initial set of hcalls are enabled for in-kernel handling, which
5644consists of those hcalls for which in-kernel handlers were implemented
5645before this capability was implemented. If disabled, the kernel will
5646not to attempt to handle the hcall, but will always exit to userspace
5647to handle it. Note that it may not make sense to enable some and
5648disable others of a group of related hcalls, but KVM does not prevent
5649userspace from doing that.
Paul Mackerrasae2113a2014-06-02 11:03:00 +10005650
5651If the hcall number specified is not one that has an in-kernel
5652implementation, the KVM_ENABLE_CAP ioctl will fail with an EINVAL
5653error.
David Hildenbrand2444b352014-10-09 14:10:13 +02005654
56557.2 KVM_CAP_S390_USER_SIGP
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005656--------------------------
David Hildenbrand2444b352014-10-09 14:10:13 +02005657
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005658:Architectures: s390
5659:Parameters: none
David Hildenbrand2444b352014-10-09 14:10:13 +02005660
5661This capability controls which SIGP orders will be handled completely in user
5662space. With this capability enabled, all fast orders will be handled completely
5663in the kernel:
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005664
David Hildenbrand2444b352014-10-09 14:10:13 +02005665- SENSE
5666- SENSE RUNNING
5667- EXTERNAL CALL
5668- EMERGENCY SIGNAL
5669- CONDITIONAL EMERGENCY SIGNAL
5670
5671All other orders will be handled completely in user space.
5672
5673Only privileged operation exceptions will be checked for in the kernel (or even
5674in the hardware prior to interception). If this capability is not enabled, the
5675old way of handling SIGP orders is used (partially in kernel and user space).
Eric Farman68c55752014-06-09 10:57:26 -04005676
56777.3 KVM_CAP_S390_VECTOR_REGISTERS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005678---------------------------------
Eric Farman68c55752014-06-09 10:57:26 -04005679
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005680:Architectures: s390
5681:Parameters: none
5682:Returns: 0 on success, negative value on error
Eric Farman68c55752014-06-09 10:57:26 -04005683
5684Allows use of the vector registers introduced with z13 processor, and
5685provides for the synchronization between host and user space. Will
5686return -EINVAL if the machine does not support vectors.
Ekaterina Tumanovae44fc8c2015-01-30 16:55:56 +01005687
56887.4 KVM_CAP_S390_USER_STSI
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005689--------------------------
Ekaterina Tumanovae44fc8c2015-01-30 16:55:56 +01005690
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005691:Architectures: s390
5692:Parameters: none
Ekaterina Tumanovae44fc8c2015-01-30 16:55:56 +01005693
5694This capability allows post-handlers for the STSI instruction. After
5695initial handling in the kernel, KVM exits to user space with
5696KVM_EXIT_S390_STSI to allow user space to insert further data.
5697
5698Before exiting to userspace, kvm handlers should fill in s390_stsi field of
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005699vcpu->run::
5700
5701 struct {
Ekaterina Tumanovae44fc8c2015-01-30 16:55:56 +01005702 __u64 addr;
5703 __u8 ar;
5704 __u8 reserved;
5705 __u8 fc;
5706 __u8 sel1;
5707 __u16 sel2;
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005708 } s390_stsi;
Ekaterina Tumanovae44fc8c2015-01-30 16:55:56 +01005709
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005710 @addr - guest address of STSI SYSIB
5711 @fc - function code
5712 @sel1 - selector 1
5713 @sel2 - selector 2
5714 @ar - access register number
Ekaterina Tumanovae44fc8c2015-01-30 16:55:56 +01005715
5716KVM handlers should exit to userspace with rc = -EREMOTE.
Michael Ellermane928e9c2015-03-20 20:39:41 +11005717
Steve Rutherford49df6392015-07-29 23:21:40 -070057187.5 KVM_CAP_SPLIT_IRQCHIP
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005719-------------------------
Steve Rutherford49df6392015-07-29 23:21:40 -07005720
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005721:Architectures: x86
5722:Parameters: args[0] - number of routes reserved for userspace IOAPICs
5723:Returns: 0 on success, -1 on error
Steve Rutherford49df6392015-07-29 23:21:40 -07005724
5725Create a local apic for each processor in the kernel. This can be used
5726instead of KVM_CREATE_IRQCHIP if the userspace VMM wishes to emulate the
5727IOAPIC and PIC (and also the PIT, even though this has to be enabled
5728separately).
5729
Steve Rutherfordb053b2a2015-07-29 23:32:35 -07005730This capability also enables in kernel routing of interrupt requests;
5731when KVM_CAP_SPLIT_IRQCHIP only routes of KVM_IRQ_ROUTING_MSI type are
5732used in the IRQ routing table. The first args[0] MSI routes are reserved
5733for the IOAPIC pins. Whenever the LAPIC receives an EOI for these routes,
5734a KVM_EXIT_IOAPIC_EOI vmexit will be reported to userspace.
Steve Rutherford49df6392015-07-29 23:21:40 -07005735
5736Fails if VCPU has already been created, or if the irqchip is already in the
5737kernel (i.e. KVM_CREATE_IRQCHIP has already been called).
5738
David Hildenbrand051c87f2016-04-19 13:13:40 +020057397.6 KVM_CAP_S390_RI
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005740-------------------
David Hildenbrand051c87f2016-04-19 13:13:40 +02005741
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005742:Architectures: s390
5743:Parameters: none
David Hildenbrand051c87f2016-04-19 13:13:40 +02005744
5745Allows use of runtime-instrumentation introduced with zEC12 processor.
5746Will return -EINVAL if the machine does not support runtime-instrumentation.
5747Will return -EBUSY if a VCPU has already been created.
Michael Ellermane928e9c2015-03-20 20:39:41 +11005748
Radim Krčmář371313132016-07-12 22:09:27 +020057497.7 KVM_CAP_X2APIC_API
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005750----------------------
Radim Krčmář371313132016-07-12 22:09:27 +02005751
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005752:Architectures: x86
5753:Parameters: args[0] - features that should be enabled
5754:Returns: 0 on success, -EINVAL when args[0] contains invalid features
Radim Krčmář371313132016-07-12 22:09:27 +02005755
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005756Valid feature flags in args[0] are::
Radim Krčmář371313132016-07-12 22:09:27 +02005757
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005758 #define KVM_X2APIC_API_USE_32BIT_IDS (1ULL << 0)
5759 #define KVM_X2APIC_API_DISABLE_BROADCAST_QUIRK (1ULL << 1)
Radim Krčmář371313132016-07-12 22:09:27 +02005760
5761Enabling KVM_X2APIC_API_USE_32BIT_IDS changes the behavior of
5762KVM_SET_GSI_ROUTING, KVM_SIGNAL_MSI, KVM_SET_LAPIC, and KVM_GET_LAPIC,
5763allowing the use of 32-bit APIC IDs. See KVM_CAP_X2APIC_API in their
5764respective sections.
5765
Radim Krčmářc5192652016-07-12 22:09:28 +02005766KVM_X2APIC_API_DISABLE_BROADCAST_QUIRK must be enabled for x2APIC to work
5767in logical mode or with more than 255 VCPUs. Otherwise, KVM treats 0xff
5768as a broadcast even in x2APIC mode in order to support physical x2APIC
5769without interrupt remapping. This is undesirable in logical mode,
5770where 0xff represents CPUs 0-7 in cluster 0.
Radim Krčmář371313132016-07-12 22:09:27 +02005771
David Hildenbrand6502a342016-06-21 14:19:51 +020057727.8 KVM_CAP_S390_USER_INSTR0
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005773----------------------------
David Hildenbrand6502a342016-06-21 14:19:51 +02005774
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005775:Architectures: s390
5776:Parameters: none
David Hildenbrand6502a342016-06-21 14:19:51 +02005777
5778With this capability enabled, all illegal instructions 0x0000 (2 bytes) will
5779be intercepted and forwarded to user space. User space can use this
5780mechanism e.g. to realize 2-byte software breakpoints. The kernel will
5781not inject an operating exception for these instructions, user space has
5782to take care of that.
5783
5784This capability can be enabled dynamically even if VCPUs were already
5785created and are running.
Radim Krčmář371313132016-07-12 22:09:27 +02005786
Fan Zhang4e0b1ab2016-11-29 07:17:55 +010057877.9 KVM_CAP_S390_GS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005788-------------------
Fan Zhang4e0b1ab2016-11-29 07:17:55 +01005789
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005790:Architectures: s390
5791:Parameters: none
5792:Returns: 0 on success; -EINVAL if the machine does not support
5793 guarded storage; -EBUSY if a VCPU has already been created.
Fan Zhang4e0b1ab2016-11-29 07:17:55 +01005794
5795Allows use of guarded storage for the KVM guest.
5796
Yi Min Zhao47a46932017-03-10 09:29:38 +010057977.10 KVM_CAP_S390_AIS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005798---------------------
Yi Min Zhao47a46932017-03-10 09:29:38 +01005799
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005800:Architectures: s390
5801:Parameters: none
Yi Min Zhao47a46932017-03-10 09:29:38 +01005802
5803Allow use of adapter-interruption suppression.
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005804:Returns: 0 on success; -EBUSY if a VCPU has already been created.
Yi Min Zhao47a46932017-03-10 09:29:38 +01005805
Paul Mackerras3c313522017-02-06 13:24:41 +110058067.11 KVM_CAP_PPC_SMT
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005807--------------------
Paul Mackerras3c313522017-02-06 13:24:41 +11005808
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005809:Architectures: ppc
5810:Parameters: vsmt_mode, flags
Paul Mackerras3c313522017-02-06 13:24:41 +11005811
5812Enabling this capability on a VM provides userspace with a way to set
5813the desired virtual SMT mode (i.e. the number of virtual CPUs per
5814virtual core). The virtual SMT mode, vsmt_mode, must be a power of 2
5815between 1 and 8. On POWER8, vsmt_mode must also be no greater than
5816the number of threads per subcore for the host. Currently flags must
5817be 0. A successful call to enable this capability will result in
5818vsmt_mode being returned when the KVM_CAP_PPC_SMT capability is
5819subsequently queried for the VM. This capability is only supported by
5820HV KVM, and can only be set before any VCPUs have been created.
Paul Mackerras2ed4f9d2017-06-21 16:01:27 +10005821The KVM_CAP_PPC_SMT_POSSIBLE capability indicates which virtual SMT
5822modes are available.
Paul Mackerras3c313522017-02-06 13:24:41 +11005823
Aravinda Prasad134764e2017-05-11 16:32:48 +053058247.12 KVM_CAP_PPC_FWNMI
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005825----------------------
Aravinda Prasad134764e2017-05-11 16:32:48 +05305826
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005827:Architectures: ppc
5828:Parameters: none
Aravinda Prasad134764e2017-05-11 16:32:48 +05305829
5830With this capability a machine check exception in the guest address
5831space will cause KVM to exit the guest with NMI exit reason. This
5832enables QEMU to build error log and branch to guest kernel registered
5833machine check handling routine. Without this capability KVM will
5834branch to guests' 0x200 interrupt vector.
5835
Wanpeng Li4d5422c2018-03-12 04:53:02 -070058367.13 KVM_CAP_X86_DISABLE_EXITS
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005837------------------------------
Wanpeng Li4d5422c2018-03-12 04:53:02 -07005838
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005839:Architectures: x86
5840:Parameters: args[0] defines which exits are disabled
5841:Returns: 0 on success, -EINVAL when args[0] contains invalid exits
Wanpeng Li4d5422c2018-03-12 04:53:02 -07005842
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005843Valid bits in args[0] are::
Wanpeng Li4d5422c2018-03-12 04:53:02 -07005844
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005845 #define KVM_X86_DISABLE_EXITS_MWAIT (1 << 0)
5846 #define KVM_X86_DISABLE_EXITS_HLT (1 << 1)
5847 #define KVM_X86_DISABLE_EXITS_PAUSE (1 << 2)
5848 #define KVM_X86_DISABLE_EXITS_CSTATE (1 << 3)
Wanpeng Li4d5422c2018-03-12 04:53:02 -07005849
5850Enabling this capability on a VM provides userspace with a way to no
5851longer intercept some instructions for improved latency in some
5852workloads, and is suggested when vCPUs are associated to dedicated
5853physical CPUs. More bits can be added in the future; userspace can
5854just pass the KVM_CHECK_EXTENSION result to KVM_ENABLE_CAP to disable
5855all such vmexits.
5856
Wanpeng Licaa057a2018-03-12 04:53:03 -07005857Do not enable KVM_FEATURE_PV_UNHALT if you disable HLT exits.
Wanpeng Li4d5422c2018-03-12 04:53:02 -07005858
Janosch Franka4499382018-07-13 11:28:31 +010058597.14 KVM_CAP_S390_HPAGE_1M
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005860--------------------------
Janosch Franka4499382018-07-13 11:28:31 +01005861
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005862:Architectures: s390
5863:Parameters: none
5864:Returns: 0 on success, -EINVAL if hpage module parameter was not set
5865 or cmma is enabled, or the VM has the KVM_VM_S390_UCONTROL
5866 flag set
Janosch Franka4499382018-07-13 11:28:31 +01005867
5868With this capability the KVM support for memory backing with 1m pages
5869through hugetlbfs can be enabled for a VM. After the capability is
5870enabled, cmma can't be enabled anymore and pfmfi and the storage key
5871interpretation are disabled. If cmma has already been enabled or the
5872hpage module parameter is not set to 1, -EINVAL is returned.
5873
5874While it is generally possible to create a huge page backed VM without
5875this capability, the VM will not be able to run.
5876
Jim Mattsonc4f55192018-10-16 14:29:24 -070058777.15 KVM_CAP_MSR_PLATFORM_INFO
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005878------------------------------
Drew Schmitt6fbbde92018-08-20 10:32:15 -07005879
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005880:Architectures: x86
5881:Parameters: args[0] whether feature should be enabled or not
Drew Schmitt6fbbde92018-08-20 10:32:15 -07005882
5883With this capability, a guest may read the MSR_PLATFORM_INFO MSR. Otherwise,
5884a #GP would be raised when the guest tries to access. Currently, this
5885capability does not enable write permissions of this MSR for the guest.
5886
Paul Mackerrasaa069a92018-09-21 20:02:01 +100058877.16 KVM_CAP_PPC_NESTED_HV
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005888--------------------------
Paul Mackerrasaa069a92018-09-21 20:02:01 +10005889
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005890:Architectures: ppc
5891:Parameters: none
5892:Returns: 0 on success, -EINVAL when the implementation doesn't support
5893 nested-HV virtualization.
Paul Mackerrasaa069a92018-09-21 20:02:01 +10005894
5895HV-KVM on POWER9 and later systems allows for "nested-HV"
5896virtualization, which provides a way for a guest VM to run guests that
5897can run using the CPU's supervisor mode (privileged non-hypervisor
5898state). Enabling this capability on a VM depends on the CPU having
5899the necessary functionality and on the facility being enabled with a
5900kvm-hv module parameter.
5901
Jim Mattsonc4f55192018-10-16 14:29:24 -070059027.17 KVM_CAP_EXCEPTION_PAYLOAD
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005903------------------------------
Jim Mattsonc4f55192018-10-16 14:29:24 -07005904
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005905:Architectures: x86
5906:Parameters: args[0] whether feature should be enabled or not
Jim Mattsonc4f55192018-10-16 14:29:24 -07005907
5908With this capability enabled, CR2 will not be modified prior to the
5909emulated VM-exit when L1 intercepts a #PF exception that occurs in
5910L2. Similarly, for kvm-intel only, DR6 will not be modified prior to
5911the emulated VM-exit when L1 intercepts a #DB exception that occurs in
5912L2. As a result, when KVM_GET_VCPU_EVENTS reports a pending #PF (or
5913#DB) exception for L2, exception.has_payload will be set and the
5914faulting address (or the new DR6 bits*) will be reported in the
5915exception_payload field. Similarly, when userspace injects a #PF (or
5916#DB) into L2 using KVM_SET_VCPU_EVENTS, it is expected to set
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005917exception.has_payload and to put the faulting address - or the new DR6
5918bits\ [#]_ - in the exception_payload field.
Jim Mattsonc4f55192018-10-16 14:29:24 -07005919
5920This capability also enables exception.pending in struct
5921kvm_vcpu_events, which allows userspace to distinguish between pending
5922and injected exceptions.
5923
5924
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005925.. [#] For the new DR6 bits, note that bit 16 is set iff the #DB exception
5926 will clear DR6.RTM.
Jim Mattsonc4f55192018-10-16 14:29:24 -07005927
Peter Xud7547c52019-05-08 17:15:47 +080059287.18 KVM_CAP_MANUAL_DIRTY_LOG_PROTECT2
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02005929
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01005930:Architectures: x86, arm, arm64, mips
5931:Parameters: args[0] whether feature should be enabled or not
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02005932
Jay Zhou3c9bd402020-02-27 09:32:27 +08005933Valid flags are::
5934
5935 #define KVM_DIRTY_LOG_MANUAL_PROTECT_ENABLE (1 << 0)
5936 #define KVM_DIRTY_LOG_INITIALLY_SET (1 << 1)
5937
5938With KVM_DIRTY_LOG_MANUAL_PROTECT_ENABLE is set, KVM_GET_DIRTY_LOG will not
5939automatically clear and write-protect all pages that are returned as dirty.
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02005940Rather, userspace will have to do this operation separately using
5941KVM_CLEAR_DIRTY_LOG.
5942
5943At the cost of a slightly more complicated operation, this provides better
5944scalability and responsiveness for two reasons. First,
5945KVM_CLEAR_DIRTY_LOG ioctl can operate on a 64-page granularity rather
5946than requiring to sync a full memslot; this ensures that KVM does not
5947take spinlocks for an extended period of time. Second, in some cases a
5948large amount of time can pass between a call to KVM_GET_DIRTY_LOG and
5949userspace actually using the data in the page. Pages can be modified
Jay Zhou3c9bd402020-02-27 09:32:27 +08005950during this time, which is inefficient for both the guest and userspace:
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02005951the guest will incur a higher penalty due to write protection faults,
5952while userspace can see false reports of dirty pages. Manual reprotection
5953helps reducing this time, improving guest performance and reducing the
5954number of dirty log false positives.
5955
Jay Zhou3c9bd402020-02-27 09:32:27 +08005956With KVM_DIRTY_LOG_INITIALLY_SET set, all the bits of the dirty bitmap
5957will be initialized to 1 when created. This also improves performance because
5958dirty logging can be enabled gradually in small chunks on the first call
5959to KVM_CLEAR_DIRTY_LOG. KVM_DIRTY_LOG_INITIALLY_SET depends on
5960KVM_DIRTY_LOG_MANUAL_PROTECT_ENABLE (it is also only available on
Keqian Zhuc8626262020-04-13 20:20:23 +08005961x86 and arm64 for now).
Jay Zhou3c9bd402020-02-27 09:32:27 +08005962
Peter Xud7547c52019-05-08 17:15:47 +08005963KVM_CAP_MANUAL_DIRTY_LOG_PROTECT2 was previously available under the name
5964KVM_CAP_MANUAL_DIRTY_LOG_PROTECT, but the implementation had bugs that make
5965it hard or impossible to use it correctly. The availability of
5966KVM_CAP_MANUAL_DIRTY_LOG_PROTECT2 signals that those bugs are fixed.
5967Userspace should not try to use KVM_CAP_MANUAL_DIRTY_LOG_PROTECT.
Paolo Bonzini2a31b9d2018-10-23 02:36:47 +02005968
Paul Mackerras9a5788c2020-03-19 15:29:55 +110059697.19 KVM_CAP_PPC_SECURE_GUEST
5970------------------------------
5971
5972:Architectures: ppc
5973
5974This capability indicates that KVM is running on a host that has
5975ultravisor firmware and thus can support a secure guest. On such a
5976system, a guest can ask the ultravisor to make it a secure guest,
5977one whose memory is inaccessible to the host except for pages which
5978are explicitly requested to be shared with the host. The ultravisor
5979notifies KVM when a guest requests to become a secure guest, and KVM
5980has the opportunity to veto the transition.
5981
5982If present, this capability can be enabled for a VM, meaning that KVM
5983will allow the transition to secure guest mode. Otherwise KVM will
5984veto the transition.
5985
David Matlackacd05782020-04-17 15:14:46 -070059867.20 KVM_CAP_HALT_POLL
5987----------------------
5988
5989:Architectures: all
5990:Target: VM
5991:Parameters: args[0] is the maximum poll time in nanoseconds
5992:Returns: 0 on success; -1 on error
5993
5994This capability overrides the kvm module parameter halt_poll_ns for the
5995target VM.
5996
5997VCPU polling allows a VCPU to poll for wakeup events instead of immediately
5998scheduling during guest halts. The maximum time a VCPU can spend polling is
5999controlled by the kvm module parameter halt_poll_ns. This capability allows
6000the maximum halt time to specified on a per-VM basis, effectively overriding
6001the module parameter for the target VM.
6002
Alexander Graf1ae09952020-09-25 16:34:16 +020060037.21 KVM_CAP_X86_USER_SPACE_MSR
6004-------------------------------
6005
6006:Architectures: x86
6007:Target: VM
6008:Parameters: args[0] contains the mask of KVM_MSR_EXIT_REASON_* events to report
6009:Returns: 0 on success; -1 on error
6010
6011This capability enables trapping of #GP invoking RDMSR and WRMSR instructions
6012into user space.
6013
6014When a guest requests to read or write an MSR, KVM may not implement all MSRs
6015that are relevant to a respective system. It also does not differentiate by
6016CPU type.
6017
6018To allow more fine grained control over MSR handling, user space may enable
6019this capability. With it enabled, MSR accesses that match the mask specified in
6020args[0] and trigger a #GP event inside the guest by KVM will instead trigger
6021KVM_EXIT_X86_RDMSR and KVM_EXIT_X86_WRMSR exit notifications which user space
6022can then handle to implement model specific MSR handling and/or user notifications
6023to inform a user that an MSR was not handled.
6024
Michael Ellermane928e9c2015-03-20 20:39:41 +110060258. Other capabilities.
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006026======================
Michael Ellermane928e9c2015-03-20 20:39:41 +11006027
6028This section lists capabilities that give information about other
6029features of the KVM implementation.
6030
60318.1 KVM_CAP_PPC_HWRNG
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006032---------------------
Michael Ellermane928e9c2015-03-20 20:39:41 +11006033
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006034:Architectures: ppc
Michael Ellermane928e9c2015-03-20 20:39:41 +11006035
6036This capability, if KVM_CHECK_EXTENSION indicates that it is
Randy Dunlap3747c5d2020-07-03 14:29:06 -07006037available, means that the kernel has an implementation of the
Michael Ellermane928e9c2015-03-20 20:39:41 +11006038H_RANDOM hypercall backed by a hardware random-number generator.
6039If present, the kernel H_RANDOM handler can be enabled for guest use
6040with the KVM_CAP_PPC_ENABLE_HCALL capability.
Andrey Smetanin5c9194122015-11-10 15:36:34 +03006041
60428.2 KVM_CAP_HYPERV_SYNIC
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006043------------------------
Andrey Smetanin5c9194122015-11-10 15:36:34 +03006044
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006045:Architectures: x86
6046
Andrey Smetanin5c9194122015-11-10 15:36:34 +03006047This capability, if KVM_CHECK_EXTENSION indicates that it is
Randy Dunlap3747c5d2020-07-03 14:29:06 -07006048available, means that the kernel has an implementation of the
Andrey Smetanin5c9194122015-11-10 15:36:34 +03006049Hyper-V Synthetic interrupt controller(SynIC). Hyper-V SynIC is
6050used to support Windows Hyper-V based guest paravirt drivers(VMBus).
6051
6052In order to use SynIC, it has to be activated by setting this
6053capability via KVM_ENABLE_CAP ioctl on the vcpu fd. Note that this
6054will disable the use of APIC hardware virtualization even if supported
6055by the CPU, as it's incompatible with SynIC auto-EOI behavior.
Paul Mackerrasc9270132017-01-30 21:21:41 +11006056
60578.3 KVM_CAP_PPC_RADIX_MMU
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006058-------------------------
Paul Mackerrasc9270132017-01-30 21:21:41 +11006059
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006060:Architectures: ppc
Paul Mackerrasc9270132017-01-30 21:21:41 +11006061
6062This capability, if KVM_CHECK_EXTENSION indicates that it is
Randy Dunlap3747c5d2020-07-03 14:29:06 -07006063available, means that the kernel can support guests using the
Paul Mackerrasc9270132017-01-30 21:21:41 +11006064radix MMU defined in Power ISA V3.00 (as implemented in the POWER9
6065processor).
6066
60678.4 KVM_CAP_PPC_HASH_MMU_V3
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006068---------------------------
Paul Mackerrasc9270132017-01-30 21:21:41 +11006069
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006070:Architectures: ppc
Paul Mackerrasc9270132017-01-30 21:21:41 +11006071
6072This capability, if KVM_CHECK_EXTENSION indicates that it is
Randy Dunlap3747c5d2020-07-03 14:29:06 -07006073available, means that the kernel can support guests using the
Paul Mackerrasc9270132017-01-30 21:21:41 +11006074hashed page table MMU defined in Power ISA V3.00 (as implemented in
6075the POWER9 processor), including in-memory segment tables.
James Hogana8a3c422017-03-14 10:15:19 +00006076
60778.5 KVM_CAP_MIPS_VZ
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006078-------------------
James Hogana8a3c422017-03-14 10:15:19 +00006079
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006080:Architectures: mips
James Hogana8a3c422017-03-14 10:15:19 +00006081
6082This capability, if KVM_CHECK_EXTENSION on the main kvm handle indicates that
6083it is available, means that full hardware assisted virtualization capabilities
6084of the hardware are available for use through KVM. An appropriate
6085KVM_VM_MIPS_* type must be passed to KVM_CREATE_VM to create a VM which
6086utilises it.
6087
6088If KVM_CHECK_EXTENSION on a kvm VM handle indicates that this capability is
6089available, it means that the VM is using full hardware assisted virtualization
6090capabilities of the hardware. This is useful to check after creating a VM with
6091KVM_VM_MIPS_DEFAULT.
6092
6093The value returned by KVM_CHECK_EXTENSION should be compared against known
6094values (see below). All other values are reserved. This is to allow for the
6095possibility of other hardware assisted virtualization implementations which
6096may be incompatible with the MIPS VZ ASE.
6097
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006098== ==========================================================================
6099 0 The trap & emulate implementation is in use to run guest code in user
James Hogana8a3c422017-03-14 10:15:19 +00006100 mode. Guest virtual memory segments are rearranged to fit the guest in the
6101 user mode address space.
6102
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006103 1 The MIPS VZ ASE is in use, providing full hardware assisted
James Hogana8a3c422017-03-14 10:15:19 +00006104 virtualization, including standard guest virtual memory segments.
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006105== ==========================================================================
James Hogana8a3c422017-03-14 10:15:19 +00006106
61078.6 KVM_CAP_MIPS_TE
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006108-------------------
James Hogana8a3c422017-03-14 10:15:19 +00006109
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006110:Architectures: mips
James Hogana8a3c422017-03-14 10:15:19 +00006111
6112This capability, if KVM_CHECK_EXTENSION on the main kvm handle indicates that
6113it is available, means that the trap & emulate implementation is available to
6114run guest code in user mode, even if KVM_CAP_MIPS_VZ indicates that hardware
6115assisted virtualisation is also available. KVM_VM_MIPS_TE (0) must be passed
6116to KVM_CREATE_VM to create a VM which utilises it.
6117
6118If KVM_CHECK_EXTENSION on a kvm VM handle indicates that this capability is
6119available, it means that the VM is using trap & emulate.
James Hogan578fd612017-03-14 10:15:20 +00006120
61218.7 KVM_CAP_MIPS_64BIT
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006122----------------------
James Hogan578fd612017-03-14 10:15:20 +00006123
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006124:Architectures: mips
James Hogan578fd612017-03-14 10:15:20 +00006125
6126This capability indicates the supported architecture type of the guest, i.e. the
6127supported register and address width.
6128
6129The values returned when this capability is checked by KVM_CHECK_EXTENSION on a
6130kvm VM handle correspond roughly to the CP0_Config.AT register field, and should
6131be checked specifically against known values (see below). All other values are
6132reserved.
6133
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006134== ========================================================================
6135 0 MIPS32 or microMIPS32.
James Hogan578fd612017-03-14 10:15:20 +00006136 Both registers and addresses are 32-bits wide.
6137 It will only be possible to run 32-bit guest code.
6138
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006139 1 MIPS64 or microMIPS64 with access only to 32-bit compatibility segments.
James Hogan578fd612017-03-14 10:15:20 +00006140 Registers are 64-bits wide, but addresses are 32-bits wide.
6141 64-bit guest code may run but cannot access MIPS64 memory segments.
6142 It will also be possible to run 32-bit guest code.
6143
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006144 2 MIPS64 or microMIPS64 with access to all address segments.
James Hogan578fd612017-03-14 10:15:20 +00006145 Both registers and addresses are 64-bits wide.
6146 It will be possible to run 64-bit or 32-bit guest code.
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006147== ========================================================================
Michael S. Tsirkin668fffa2017-04-21 12:27:17 +02006148
Paolo Bonzinic24a7be2017-04-27 17:33:14 +020061498.9 KVM_CAP_ARM_USER_IRQ
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006150------------------------
Alexander Graf3fe17e62016-09-27 21:08:05 +02006151
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006152:Architectures: arm, arm64
6153
Alexander Graf3fe17e62016-09-27 21:08:05 +02006154This capability, if KVM_CHECK_EXTENSION indicates that it is available, means
6155that if userspace creates a VM without an in-kernel interrupt controller, it
6156will be notified of changes to the output level of in-kernel emulated devices,
6157which can generate virtual interrupts, presented to the VM.
6158For such VMs, on every return to userspace, the kernel
6159updates the vcpu's run->s.regs.device_irq_level field to represent the actual
6160output level of the device.
6161
6162Whenever kvm detects a change in the device output level, kvm guarantees at
6163least one return to userspace before running the VM. This exit could either
6164be a KVM_EXIT_INTR or any other exit event, like KVM_EXIT_MMIO. This way,
6165userspace can always sample the device output level and re-compute the state of
6166the userspace interrupt controller. Userspace should always check the state
6167of run->s.regs.device_irq_level on every kvm exit.
6168The value in run->s.regs.device_irq_level can represent both level and edge
6169triggered interrupt signals, depending on the device. Edge triggered interrupt
6170signals will exit to userspace with the bit in run->s.regs.device_irq_level
6171set exactly once per edge signal.
6172
6173The field run->s.regs.device_irq_level is available independent of
6174run->kvm_valid_regs or run->kvm_dirty_regs bits.
6175
6176If KVM_CAP_ARM_USER_IRQ is supported, the KVM_CHECK_EXTENSION ioctl returns a
6177number larger than 0 indicating the version of this capability is implemented
Randy Dunlap3747c5d2020-07-03 14:29:06 -07006178and thereby which bits in run->s.regs.device_irq_level can signal values.
Alexander Graf3fe17e62016-09-27 21:08:05 +02006179
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006180Currently the following bits are defined for the device_irq_level bitmap::
Alexander Graf3fe17e62016-09-27 21:08:05 +02006181
6182 KVM_CAP_ARM_USER_IRQ >= 1:
6183
6184 KVM_ARM_DEV_EL1_VTIMER - EL1 virtual timer
6185 KVM_ARM_DEV_EL1_PTIMER - EL1 physical timer
6186 KVM_ARM_DEV_PMU - ARM PMU overflow interrupt signal
6187
6188Future versions of kvm may implement additional events. These will get
6189indicated by returning a higher number from KVM_CHECK_EXTENSION and will be
6190listed above.
Paul Mackerras2ed4f9d2017-06-21 16:01:27 +10006191
61928.10 KVM_CAP_PPC_SMT_POSSIBLE
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006193-----------------------------
Paul Mackerras2ed4f9d2017-06-21 16:01:27 +10006194
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006195:Architectures: ppc
Paul Mackerras2ed4f9d2017-06-21 16:01:27 +10006196
6197Querying this capability returns a bitmap indicating the possible
6198virtual SMT modes that can be set using KVM_CAP_PPC_SMT. If bit N
6199(counting from the right) is set, then a virtual SMT mode of 2^N is
6200available.
Roman Kaganefc479e2017-06-22 16:51:01 +03006201
62028.11 KVM_CAP_HYPERV_SYNIC2
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006203--------------------------
Roman Kaganefc479e2017-06-22 16:51:01 +03006204
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006205:Architectures: x86
Roman Kaganefc479e2017-06-22 16:51:01 +03006206
6207This capability enables a newer version of Hyper-V Synthetic interrupt
6208controller (SynIC). The only difference with KVM_CAP_HYPERV_SYNIC is that KVM
6209doesn't clear SynIC message and event flags pages when they are enabled by
6210writing to the respective MSRs.
Roman Kagand3457c82017-07-14 17:13:20 +03006211
62128.12 KVM_CAP_HYPERV_VP_INDEX
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006213----------------------------
Roman Kagand3457c82017-07-14 17:13:20 +03006214
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006215:Architectures: x86
Roman Kagand3457c82017-07-14 17:13:20 +03006216
6217This capability indicates that userspace can load HV_X64_MSR_VP_INDEX msr. Its
6218value is used to denote the target vcpu for a SynIC interrupt. For
6219compatibilty, KVM initializes this msr to KVM's internal vcpu index. When this
6220capability is absent, userspace can still query this msr's value.
Christian Borntraegerda9a1442017-11-09 10:00:45 +01006221
62228.13 KVM_CAP_S390_AIS_MIGRATION
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006223-------------------------------
Christian Borntraegerda9a1442017-11-09 10:00:45 +01006224
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006225:Architectures: s390
6226:Parameters: none
Christian Borntraegerda9a1442017-11-09 10:00:45 +01006227
6228This capability indicates if the flic device will be able to get/set the
6229AIS states for migration via the KVM_DEV_FLIC_AISM_ALL attribute and allows
6230to discover this without having to create a flic device.
Christian Borntraeger5c2b4d52018-02-22 13:40:04 +00006231
62328.14 KVM_CAP_S390_PSW
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006233---------------------
Christian Borntraeger5c2b4d52018-02-22 13:40:04 +00006234
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006235:Architectures: s390
Christian Borntraeger5c2b4d52018-02-22 13:40:04 +00006236
6237This capability indicates that the PSW is exposed via the kvm_run structure.
6238
62398.15 KVM_CAP_S390_GMAP
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006240----------------------
Christian Borntraeger5c2b4d52018-02-22 13:40:04 +00006241
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006242:Architectures: s390
Christian Borntraeger5c2b4d52018-02-22 13:40:04 +00006243
6244This capability indicates that the user space memory used as guest mapping can
6245be anywhere in the user memory address space, as long as the memory slots are
6246aligned and sized to a segment (1MB) boundary.
6247
62488.16 KVM_CAP_S390_COW
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006249---------------------
Christian Borntraeger5c2b4d52018-02-22 13:40:04 +00006250
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006251:Architectures: s390
Christian Borntraeger5c2b4d52018-02-22 13:40:04 +00006252
6253This capability indicates that the user space memory used as guest mapping can
6254use copy-on-write semantics as well as dirty pages tracking via read-only page
6255tables.
6256
62578.17 KVM_CAP_S390_BPB
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006258---------------------
Christian Borntraeger5c2b4d52018-02-22 13:40:04 +00006259
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006260:Architectures: s390
Christian Borntraeger5c2b4d52018-02-22 13:40:04 +00006261
6262This capability indicates that kvm will implement the interfaces to handle
6263reset, migration and nested KVM for branch prediction blocking. The stfle
6264facility 82 should not be provided to the guest without this capability.
Vitaly Kuznetsovc1aea912018-05-16 17:21:31 +02006265
Vitaly Kuznetsov2ddc6492018-06-22 16:56:14 +020062668.18 KVM_CAP_HYPERV_TLBFLUSH
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006267----------------------------
Vitaly Kuznetsovc1aea912018-05-16 17:21:31 +02006268
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006269:Architectures: x86
Vitaly Kuznetsovc1aea912018-05-16 17:21:31 +02006270
6271This capability indicates that KVM supports paravirtualized Hyper-V TLB Flush
6272hypercalls:
6273HvFlushVirtualAddressSpace, HvFlushVirtualAddressSpaceEx,
6274HvFlushVirtualAddressList, HvFlushVirtualAddressListEx.
Dongjiu Gengbe26b3a2018-07-19 16:24:23 +01006275
Dongjiu Geng688e0582018-08-20 17:39:25 -040062768.19 KVM_CAP_ARM_INJECT_SERROR_ESR
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006277----------------------------------
Dongjiu Gengbe26b3a2018-07-19 16:24:23 +01006278
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +01006279:Architectures: arm, arm64
Dongjiu Gengbe26b3a2018-07-19 16:24:23 +01006280
6281This capability indicates that userspace can specify (via the
6282KVM_SET_VCPU_EVENTS ioctl) the syndrome value reported to the guest when it
6283takes a virtual SError interrupt exception.
6284If KVM advertises this capability, userspace can only specify the ISS field for
6285the ESR syndrome. Other parts of the ESR, such as the EC are generated by the
6286CPU when the exception is taken. If this virtual SError is taken to EL1 using
6287AArch64, this value will be reported in the ISS field of ESR_ELx.
6288
6289See KVM_CAP_VCPU_EVENTS for more details.
Vitaly Kuznetsov214ff832018-09-26 19:02:59 +02006290
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +010062918.20 KVM_CAP_HYPERV_SEND_IPI
6292----------------------------
6293
6294:Architectures: x86
Vitaly Kuznetsov214ff832018-09-26 19:02:59 +02006295
6296This capability indicates that KVM supports paravirtualized Hyper-V IPI send
6297hypercalls:
6298HvCallSendSyntheticClusterIpi, HvCallSendSyntheticClusterIpiEx.
Tianyu Lan344c6c82019-08-22 22:30:20 +08006299
Mauro Carvalho Chehab106ee472020-02-10 07:02:55 +010063008.21 KVM_CAP_HYPERV_DIRECT_TLBFLUSH
6301-----------------------------------
6302
Andrew Jones739c7af2020-08-04 19:06:03 +02006303:Architectures: x86
Tianyu Lan344c6c82019-08-22 22:30:20 +08006304
6305This capability indicates that KVM running on top of Hyper-V hypervisor
6306enables Direct TLB flush for its guests meaning that TLB flush
6307hypercalls are handled by Level 0 hypervisor (Hyper-V) bypassing KVM.
6308Due to the different ABI for hypercall parameters between Hyper-V and
6309KVM, enabling this capability effectively disables all hypercall
6310handling by KVM (as some KVM hypercall may be mistakenly treated as TLB
6311flush hypercalls by Hyper-V) so userspace should disable KVM identification
6312in CPUID and only exposes Hyper-V identification. In this case, guest
6313thinks it's running on Hyper-V and only use Hyper-V hypercalls.
Janosch Frank7de3f142020-01-31 05:02:02 -05006314
63158.22 KVM_CAP_S390_VCPU_RESETS
Andrew Jones739c7af2020-08-04 19:06:03 +02006316-----------------------------
Janosch Frank7de3f142020-01-31 05:02:02 -05006317
Andrew Jones739c7af2020-08-04 19:06:03 +02006318:Architectures: s390
Janosch Frank7de3f142020-01-31 05:02:02 -05006319
6320This capability indicates that the KVM_S390_NORMAL_RESET and
6321KVM_S390_CLEAR_RESET ioctls are available.
Janosch Frank04ed89d2019-11-08 05:05:26 -05006322
63238.23 KVM_CAP_S390_PROTECTED
Andrew Jones739c7af2020-08-04 19:06:03 +02006324---------------------------
Janosch Frank04ed89d2019-11-08 05:05:26 -05006325
Andrew Jones739c7af2020-08-04 19:06:03 +02006326:Architectures: s390
Janosch Frank04ed89d2019-11-08 05:05:26 -05006327
6328This capability indicates that the Ultravisor has been initialized and
6329KVM can therefore start protected VMs.
6330This capability governs the KVM_S390_PV_COMMAND ioctl and the
6331KVM_MP_STATE_LOAD MP_STATE. KVM_SET_MP_STATE can fail for protected
6332guests when the state change is invalid.
Andrew Jones004a0122020-08-04 19:06:04 +02006333
63348.24 KVM_CAP_STEAL_TIME
6335-----------------------
6336
6337:Architectures: arm64, x86
6338
6339This capability indicates that KVM supports steal time accounting.
6340When steal time accounting is supported it may be enabled with
6341architecture-specific interfaces. This capability and the architecture-
6342specific interfaces must be consistent, i.e. if one says the feature
6343is supported, than the other should as well and vice versa. For arm64
6344see Documentation/virt/kvm/devices/vcpu.rst "KVM_ARM_VCPU_PVTIME_CTRL".
6345For x86 see Documentation/virt/kvm/msr.rst "MSR_KVM_STEAL_TIME".
Collin Wallingf20d4e92020-06-25 11:07:23 -04006346
63478.25 KVM_CAP_S390_DIAG318
6348-------------------------
6349
6350:Architectures: s390
6351
6352This capability enables a guest to set information about its control program
6353(i.e. guest kernel type and version). The information is helpful during
6354system/firmware service events, providing additional data about the guest
6355environments running on the machine.
6356
6357The information is associated with the DIAGNOSE 0x318 instruction, which sets
6358an 8-byte value consisting of a one-byte Control Program Name Code (CPNC) and
6359a 7-byte Control Program Version Code (CPVC). The CPNC determines what
6360environment the control program is running in (e.g. Linux, z/VM...), and the
6361CPVC is used for information specific to OS (e.g. Linux version, Linux
6362distribution...)
6363
6364If this capability is available, then the CPNC and CPVC can be synchronized
6365between KVM and userspace via the sync regs mechanism (KVM_SYNC_DIAG318).
Alexander Graf1ae09952020-09-25 16:34:16 +02006366
63678.26 KVM_CAP_X86_USER_SPACE_MSR
6368-------------------------------
6369
6370:Architectures: x86
6371
6372This capability indicates that KVM supports deflection of MSR reads and
6373writes to user space. It can be enabled on a VM level. If enabled, MSR
6374accesses that would usually trigger a #GP by KVM into the guest will
6375instead get bounced to user space through the KVM_EXIT_X86_RDMSR and
6376KVM_EXIT_X86_WRMSR exit notifications.
Alexander Graf1a1552542020-09-25 16:34:21 +02006377
Peter Xu3d202672020-09-30 21:20:31 -040063788.27 KVM_X86_SET_MSR_FILTER
Alexander Graf1a1552542020-09-25 16:34:21 +02006379---------------------------
6380
6381:Architectures: x86
6382
6383This capability indicates that KVM supports that accesses to user defined MSRs
6384may be rejected. With this capability exposed, KVM exports new VM ioctl
6385KVM_X86_SET_MSR_FILTER which user space can call to specify bitmaps of MSR
6386ranges that KVM should reject access to.
6387
6388In combination with KVM_CAP_X86_USER_SPACE_MSR, this allows user space to
6389trap and emulate MSRs that are outside of the scope of KVM as well as
6390limit the attack surface on KVM's MSR emulation code.
Oliver Upton66570e92020-08-18 15:24:28 +00006391
Peter Xu177158e2020-10-23 14:33:46 -040063928.28 KVM_CAP_ENFORCE_PV_CPUID
Oliver Upton66570e92020-08-18 15:24:28 +00006393-----------------------------
6394
6395Architectures: x86
6396
6397When enabled, KVM will disable paravirtual features provided to the
6398guest according to the bits in the KVM_CPUID_FEATURES CPUID leaf
6399(0x40000001). Otherwise, a guest may use the paravirtual features
6400regardless of what has actually been exposed through the CPUID leaf.