Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1 | .. SPDX-License-Identifier: GPL-2.0 |
| 2 | |
| 3 | =================================================================== |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 4 | The Definitive KVM (Kernel-based Virtual Machine) API Documentation |
| 5 | =================================================================== |
| 6 | |
| 7 | 1. General description |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 8 | ====================== |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 9 | |
| 10 | The kvm API is a set of ioctls that are issued to control various aspects |
Wainer dos Santos Moschetta | 80b10aa | 2019-11-29 13:17:30 -0500 | [diff] [blame] | 11 | of a virtual machine. The ioctls belong to the following classes: |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 12 | |
| 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 Christopherson | 5e12490 | 2019-02-15 12:48:38 -0800 | [diff] [blame] | 15 | virtual machines. |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 16 | |
| 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 Christopherson | ddba918 | 2019-02-15 12:48:39 -0800 | [diff] [blame] | 19 | create virtual cpus (vcpus) and devices. |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 20 | |
Sean Christopherson | 5e12490 | 2019-02-15 12:48:38 -0800 | [diff] [blame] | 21 | VM ioctls must be issued from the same process (address space) that was |
| 22 | used to create the VM. |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 23 | |
| 24 | - vcpu ioctls: These query and set attributes that control the operation |
| 25 | of a single virtual cpu. |
| 26 | |
Sean Christopherson | 5e12490 | 2019-02-15 12:48:38 -0800 | [diff] [blame] | 27 | 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 Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 31 | |
Sean Christopherson | ddba918 | 2019-02-15 12:48:39 -0800 | [diff] [blame] | 32 | - 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 Kiszka | 414fa98 | 2012-04-24 16:40:15 +0200 | [diff] [blame] | 37 | |
Wu Fengguang | 2044892d | 2009-12-24 09:04:16 +0800 | [diff] [blame] | 38 | 2. File descriptors |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 39 | =================== |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 40 | |
| 41 | The kvm API is centered around file descriptors. An initial |
| 42 | open("/dev/kvm") obtains a handle to the kvm subsystem; this handle |
| 43 | can be used to issue system ioctls. A KVM_CREATE_VM ioctl on this |
Wu Fengguang | 2044892d | 2009-12-24 09:04:16 +0800 | [diff] [blame] | 44 | handle will create a VM file descriptor which can be used to issue VM |
Sean Christopherson | ddba918 | 2019-02-15 12:48:39 -0800 | [diff] [blame] | 45 | ioctls. A KVM_CREATE_VCPU or KVM_CREATE_DEVICE ioctl on a VM fd will |
| 46 | create a virtual cpu or device and return a file descriptor pointing to |
| 47 | the new resource. Finally, ioctls on a vcpu or device fd can be used |
| 48 | to control the vcpu or device. For vcpus, this includes the important |
| 49 | task of actually running guest code. |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 50 | |
| 51 | In general file descriptors can be migrated among processes by means |
| 52 | of fork() and the SCM_RIGHTS facility of unix domain socket. These |
| 53 | kinds of tricks are explicitly not supported by kvm. While they will |
| 54 | not cause harm to the host, their actual behavior is not guaranteed by |
Sean Christopherson | 5e12490 | 2019-02-15 12:48:38 -0800 | [diff] [blame] | 55 | the API. See "General description" for details on the ioctl usage |
| 56 | model that is supported by KVM. |
Jan Kiszka | 414fa98 | 2012-04-24 16:40:15 +0200 | [diff] [blame] | 57 | |
Sean Christopherson | eca6be5 | 2019-02-15 12:48:40 -0800 | [diff] [blame] | 58 | It is important to note that althought VM ioctls may only be issued from |
| 59 | the process that created the VM, a VM's lifecycle is associated with its |
| 60 | file descriptor, not its creator (process). In other words, the VM and |
| 61 | its resources, *including the associated address space*, are not freed |
| 62 | until the last reference to the VM's file descriptor has been released. |
| 63 | For example, if fork() is issued after ioctl(KVM_CREATE_VM), the VM will |
| 64 | not be freed until both the parent (original) process and its child have |
| 65 | put their references to the VM's file descriptor. |
| 66 | |
| 67 | Because a VM's resources are not freed until the last reference to its |
Randy Dunlap | 3747c5d | 2020-07-03 14:29:06 -0700 | [diff] [blame] | 68 | file descriptor is released, creating additional references to a VM |
Sean Christopherson | eca6be5 | 2019-02-15 12:48:40 -0800 | [diff] [blame] | 69 | via fork(), dup(), etc... without careful consideration is strongly |
| 70 | discouraged and may have unwanted side effects, e.g. memory allocated |
| 71 | by and on behalf of the VM's process may not be freed/unaccounted when |
| 72 | the VM is shut down. |
| 73 | |
| 74 | |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 75 | 3. Extensions |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 76 | ============= |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 77 | |
| 78 | As of Linux 2.6.22, the KVM ABI has been stabilized: no backward |
| 79 | incompatible change are allowed. However, there is an extension |
| 80 | facility that allows backward-compatible extensions to the API to be |
| 81 | queried and used. |
| 82 | |
Masanari Iida | c9f3f2d | 2013-07-18 01:29:12 +0900 | [diff] [blame] | 83 | The extension mechanism is not based on the Linux version number. |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 84 | Instead, kvm defines extension identifiers and a facility to query |
| 85 | whether a particular extension identifier is available. If it is, a |
| 86 | set of ioctls is available for application use. |
| 87 | |
Jan Kiszka | 414fa98 | 2012-04-24 16:40:15 +0200 | [diff] [blame] | 88 | |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 89 | 4. API description |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 90 | ================== |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 91 | |
| 92 | This section describes ioctls that can be used to control kvm guests. |
| 93 | For each ioctl, the following information is provided along with a |
| 94 | description: |
| 95 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 96 | Capability: |
| 97 | which KVM extension provides this ioctl. Can be 'basic', |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 98 | which means that is will be provided by any kernel that supports |
Michael S. Tsirkin | 7f05db6 | 2014-10-12 11:34:00 +0300 | [diff] [blame] | 99 | API version 12 (see section 4.1), a KVM_CAP_xyz constant, which |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 100 | means availability needs to be checked with KVM_CHECK_EXTENSION |
Michael S. Tsirkin | 7f05db6 | 2014-10-12 11:34:00 +0300 | [diff] [blame] | 101 | (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 Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 105 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 106 | Architectures: |
| 107 | which instruction set architectures provide this ioctl. |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 108 | x86 includes both i386 and x86_64. |
| 109 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 110 | Type: |
| 111 | system, vm, or vcpu. |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 112 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 113 | Parameters: |
| 114 | what parameters are accepted by the ioctl. |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 115 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 116 | Returns: |
| 117 | the return value. General error numbers (EBADF, ENOMEM, EINVAL) |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 118 | are not detailed, but errors with specific meanings are. |
| 119 | |
Jan Kiszka | 414fa98 | 2012-04-24 16:40:15 +0200 | [diff] [blame] | 120 | |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 121 | 4.1 KVM_GET_API_VERSION |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 122 | ----------------------- |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 123 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 124 | :Capability: basic |
| 125 | :Architectures: all |
| 126 | :Type: system ioctl |
| 127 | :Parameters: none |
| 128 | :Returns: the constant KVM_API_VERSION (=12) |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 129 | |
| 130 | This identifies the API version as the stable kvm API. It is not |
| 131 | expected that this number will change. However, Linux 2.6.20 and |
| 132 | 2.6.21 report earlier versions; these are not documented and not |
| 133 | supported. Applications should refuse to run if KVM_GET_API_VERSION |
| 134 | returns a value other than 12. If this check passes, all ioctls |
| 135 | described as 'basic' will be available. |
| 136 | |
Jan Kiszka | 414fa98 | 2012-04-24 16:40:15 +0200 | [diff] [blame] | 137 | |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 138 | 4.2 KVM_CREATE_VM |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 139 | ----------------- |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 140 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 141 | :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 Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 146 | |
Jann Horn | bcb85c8 | 2017-04-24 11:16:49 +0200 | [diff] [blame] | 147 | The new VM has no virtual cpus and no memory. |
James Hogan | a8a3c42 | 2017-03-14 10:15:19 +0000 | [diff] [blame] | 148 | You probably want to use 0 as machine type. |
Carsten Otte | e08b963 | 2012-01-04 10:25:20 +0100 | [diff] [blame] | 149 | |
| 150 | In order to create user controlled virtual machines on S390, check |
| 151 | KVM_CAP_S390_UCONTROL and use the flag KVM_VM_S390_UCONTROL as |
| 152 | privileged user (CAP_SYS_ADMIN). |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 153 | |
James Hogan | a8a3c42 | 2017-03-14 10:15:19 +0000 | [diff] [blame] | 154 | To use hardware assisted virtualization on MIPS (VZ ASE) rather than |
| 155 | the default trap & emulate implementation (which changes the virtual |
| 156 | memory layout to fit in user mode), check KVM_CAP_MIPS_VZ and use the |
| 157 | flag KVM_VM_MIPS_VZ. |
| 158 | |
Jan Kiszka | 414fa98 | 2012-04-24 16:40:15 +0200 | [diff] [blame] | 159 | |
Suzuki K Poulose | 233a7cb | 2018-09-26 17:32:54 +0100 | [diff] [blame] | 160 | On arm64, the physical address size for a VM (IPA Size limit) is limited |
| 161 | to 40bits by default. The limit can be configured if the host supports the |
| 162 | extension KVM_CAP_ARM_VM_IPA_SIZE. When supported, use |
| 163 | KVM_VM_TYPE_ARM_IPA_SIZE(IPA_Bits) to set the size in the machine type |
| 164 | identifier, where IPA_Bits is the maximum width of any physical |
| 165 | address used by the VM. The IPA_Bits is encoded in bits[7-0] of the |
| 166 | machine type identifier. |
| 167 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 168 | e.g, to configure a guest to use 48bit physical address size:: |
Suzuki K Poulose | 233a7cb | 2018-09-26 17:32:54 +0100 | [diff] [blame] | 169 | |
| 170 | vm_fd = ioctl(dev_fd, KVM_CREATE_VM, KVM_VM_TYPE_ARM_IPA_SIZE(48)); |
| 171 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 172 | The requested size (IPA_Bits) must be: |
Suzuki K Poulose | 233a7cb | 2018-09-26 17:32:54 +0100 | [diff] [blame] | 173 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 174 | == ========================================================= |
| 175 | 0 Implies default size, 40bits (for backward compatibility) |
| 176 | N Implies N bits, where N is a positive integer such that, |
Suzuki K Poulose | 233a7cb | 2018-09-26 17:32:54 +0100 | [diff] [blame] | 177 | 32 <= N <= Host_IPA_Limit |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 178 | == ========================================================= |
Suzuki K Poulose | 233a7cb | 2018-09-26 17:32:54 +0100 | [diff] [blame] | 179 | |
| 180 | Host_IPA_Limit is the maximum possible value for IPA_Bits on the host and |
| 181 | is dependent on the CPU capability and the kernel configuration. The limit can |
| 182 | be retrieved using KVM_CAP_ARM_VM_IPA_SIZE of the KVM_CHECK_EXTENSION |
| 183 | ioctl() at run-time. |
| 184 | |
Marc Zyngier | ac821b6 | 2021-03-11 10:00:15 +0000 | [diff] [blame] | 185 | Creation of the VM will fail if the requested IPA size (whether it is |
| 186 | implicit or explicit) is unsupported on the host. |
| 187 | |
Suzuki K Poulose | 233a7cb | 2018-09-26 17:32:54 +0100 | [diff] [blame] | 188 | Please note that configuring the IPA size does not affect the capability |
| 189 | exposed by the guest CPUs in ID_AA64MMFR0_EL1[PARange]. It only affects |
| 190 | size of the address translated by the stage2 level (guest physical to |
| 191 | host physical address translations). |
| 192 | |
| 193 | |
Tom Lendacky | 801e459 | 2018-02-21 13:39:51 -0600 | [diff] [blame] | 194 | 4.3 KVM_GET_MSR_INDEX_LIST, KVM_GET_MSR_FEATURE_INDEX_LIST |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 195 | ---------------------------------------------------------- |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 196 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 197 | :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 Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 203 | Errors: |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 204 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 205 | ====== ============================================================ |
| 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 Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 214 | __u32 nmsrs; /* number of msrs in entries */ |
| 215 | __u32 indices[0]; |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 216 | }; |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 217 | |
Tom Lendacky | 801e459 | 2018-02-21 13:39:51 -0600 | [diff] [blame] | 218 | The user fills in the size of the indices array in nmsrs, and in return |
| 219 | kvm adjusts nmsrs to reflect the actual number of msrs and fills in the |
| 220 | indices array with their numbers. |
| 221 | |
| 222 | KVM_GET_MSR_INDEX_LIST returns the guest msrs that are supported. The list |
| 223 | varies by kvm version and host processor, but does not change otherwise. |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 224 | |
Avi Kivity | 2e2602c | 2010-07-07 14:09:39 +0300 | [diff] [blame] | 225 | Note: if kvm indicates supports MCE (KVM_CAP_MCE), then the MCE bank MSRs are |
| 226 | not returned in the MSR list, as different vcpus can have a different number |
| 227 | of banks, as set via the KVM_X86_SETUP_MCE ioctl. |
| 228 | |
Tom Lendacky | 801e459 | 2018-02-21 13:39:51 -0600 | [diff] [blame] | 229 | KVM_GET_MSR_FEATURE_INDEX_LIST returns the list of MSRs that can be passed |
| 230 | to the KVM_GET_MSRS system ioctl. This lets userspace probe host capabilities |
| 231 | and processor features that are exposed via MSRs (e.g., VMX capabilities). |
| 232 | This list also varies by kvm version and host processor, but does not change |
| 233 | otherwise. |
| 234 | |
Jan Kiszka | 414fa98 | 2012-04-24 16:40:15 +0200 | [diff] [blame] | 235 | |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 236 | 4.4 KVM_CHECK_EXTENSION |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 237 | ----------------------- |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 238 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 239 | :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 Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 244 | |
| 245 | The API allows the application to query about extensions to the core |
| 246 | kvm API. Userspace passes an extension identifier (an integer) and |
| 247 | receives an integer that describes the extension availability. |
| 248 | Generally 0 means no and 1 means yes, but some extensions may report |
| 249 | additional information in the integer return value. |
| 250 | |
Alexander Graf | 92b591a | 2014-07-14 18:33:08 +0200 | [diff] [blame] | 251 | Based on their initialization different VMs may have different capabilities. |
| 252 | It is thus encouraged to use the vm ioctl to query for capabilities (available |
| 253 | with KVM_CAP_CHECK_EXTENSION_VM on the vm fd) |
Jan Kiszka | 414fa98 | 2012-04-24 16:40:15 +0200 | [diff] [blame] | 254 | |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 255 | 4.5 KVM_GET_VCPU_MMAP_SIZE |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 256 | -------------------------- |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 257 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 258 | :Capability: basic |
| 259 | :Architectures: all |
| 260 | :Type: system ioctl |
| 261 | :Parameters: none |
| 262 | :Returns: size of vcpu mmap area, in bytes |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 263 | |
| 264 | The KVM_RUN ioctl (cf.) communicates with userspace via a shared |
| 265 | memory region. This ioctl returns the size of that region. See the |
| 266 | KVM_RUN documentation for details. |
| 267 | |
Jan Kiszka | 414fa98 | 2012-04-24 16:40:15 +0200 | [diff] [blame] | 268 | |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 269 | 4.6 KVM_SET_MEMORY_REGION |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 270 | ------------------------- |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 271 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 272 | :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 Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 277 | |
Avi Kivity | b74a07b | 2010-06-21 11:48:05 +0300 | [diff] [blame] | 278 | This ioctl is obsolete and has been removed. |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 279 | |
Jan Kiszka | 414fa98 | 2012-04-24 16:40:15 +0200 | [diff] [blame] | 280 | |
Paul Bolle | 68ba697 | 2011-02-15 00:05:59 +0100 | [diff] [blame] | 281 | 4.7 KVM_CREATE_VCPU |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 282 | ------------------- |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 283 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 284 | :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 Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 289 | |
Greg Kurz | 0b1b1df | 2016-05-09 18:13:37 +0200 | [diff] [blame] | 290 | This API adds a vcpu to a virtual machine. No more than max_vcpus may be added. |
| 291 | The vcpu id is an integer in the range [0, max_vcpu_id). |
Sasha Levin | 8c3ba33 | 2011-07-18 17:17:15 +0300 | [diff] [blame] | 292 | |
| 293 | The recommended max_vcpus value can be retrieved using the KVM_CAP_NR_VCPUS of |
| 294 | the KVM_CHECK_EXTENSION ioctl() at run-time. |
| 295 | The maximum possible value for max_vcpus can be retrieved using the |
| 296 | KVM_CAP_MAX_VCPUS of the KVM_CHECK_EXTENSION ioctl() at run-time. |
| 297 | |
Pekka Enberg | 76d2540 | 2011-05-09 22:48:54 +0300 | [diff] [blame] | 298 | If the KVM_CAP_NR_VCPUS does not exist, you should assume that max_vcpus is 4 |
| 299 | cpus max. |
Sasha Levin | 8c3ba33 | 2011-07-18 17:17:15 +0300 | [diff] [blame] | 300 | If the KVM_CAP_MAX_VCPUS does not exist, you should assume that max_vcpus is |
| 301 | same as the value returned from KVM_CAP_NR_VCPUS. |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 302 | |
Greg Kurz | 0b1b1df | 2016-05-09 18:13:37 +0200 | [diff] [blame] | 303 | The maximum possible value for max_vcpu_id can be retrieved using the |
| 304 | KVM_CAP_MAX_VCPU_ID of the KVM_CHECK_EXTENSION ioctl() at run-time. |
| 305 | |
| 306 | If the KVM_CAP_MAX_VCPU_ID does not exist, you should assume that max_vcpu_id |
| 307 | is the same as the value returned from KVM_CAP_MAX_VCPUS. |
| 308 | |
Paul Mackerras | 371fefd | 2011-06-29 00:23:08 +0000 | [diff] [blame] | 309 | On powerpc using book3s_hv mode, the vcpus are mapped onto virtual |
| 310 | threads in one or more virtual CPU cores. (This is because the |
| 311 | hardware requires all the hardware threads in a CPU core to be in the |
| 312 | same partition.) The KVM_CAP_PPC_SMT capability indicates the number |
| 313 | of vcpus per virtual core (vcore). The vcore id is obtained by |
| 314 | dividing the vcpu id by the number of vcpus per vcore. The vcpus in a |
| 315 | given 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). |
| 317 | Userspace can control the threading (SMT) mode of the guest by its |
| 318 | allocation of vcpu ids. For example, if userspace wants |
| 319 | single-threaded guest vcpus, it should make all vcpu ids be a multiple |
| 320 | of the number of vcpus per vcore. |
| 321 | |
Carsten Otte | 5b1c149 | 2012-01-04 10:25:23 +0100 | [diff] [blame] | 322 | For virtual cpus that have been created with S390 user controlled virtual |
| 323 | machines, the resulting vcpu fd can be memory mapped at page offset |
| 324 | KVM_S390_SIE_PAGE_OFFSET in order to obtain a memory map of the virtual |
| 325 | cpu's hardware control block. |
| 326 | |
Jan Kiszka | 414fa98 | 2012-04-24 16:40:15 +0200 | [diff] [blame] | 327 | |
Paul Bolle | 68ba697 | 2011-02-15 00:05:59 +0100 | [diff] [blame] | 328 | 4.8 KVM_GET_DIRTY_LOG (vm ioctl) |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 329 | -------------------------------- |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 330 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 331 | :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 Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 336 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 337 | :: |
| 338 | |
| 339 | /* for KVM_GET_DIRTY_LOG */ |
| 340 | struct kvm_dirty_log { |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 341 | __u32 slot; |
| 342 | __u32 padding; |
| 343 | union { |
| 344 | void __user *dirty_bitmap; /* one bit per page */ |
| 345 | __u64 padding; |
| 346 | }; |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 347 | }; |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 348 | |
| 349 | Given a memory slot, return a bitmap containing any pages dirtied |
| 350 | since the last call to this ioctl. Bit 0 is the first page in the |
| 351 | memory slot. Ensure the entire structure is cleared to avoid padding |
| 352 | issues. |
| 353 | |
Paolo Bonzini | f481b06 | 2015-05-17 17:30:37 +0200 | [diff] [blame] | 354 | If KVM_CAP_MULTI_ADDRESS_SPACE is available, bits 16-31 specifies |
| 355 | the address space for which you want to return the dirty bitmap. |
| 356 | They must be less than the value that KVM_CHECK_EXTENSION returns for |
| 357 | the KVM_CAP_MULTI_ADDRESS_SPACE capability. |
| 358 | |
Paolo Bonzini | 2a31b9d | 2018-10-23 02:36:47 +0200 | [diff] [blame] | 359 | The bits in the dirty bitmap are cleared before the ioctl returns, unless |
Peter Xu | d7547c5 | 2019-05-08 17:15:47 +0800 | [diff] [blame] | 360 | KVM_CAP_MANUAL_DIRTY_LOG_PROTECT2 is enabled. For more information, |
Paolo Bonzini | 2a31b9d | 2018-10-23 02:36:47 +0200 | [diff] [blame] | 361 | see the description of the capability. |
Jan Kiszka | 414fa98 | 2012-04-24 16:40:15 +0200 | [diff] [blame] | 362 | |
Paul Bolle | 68ba697 | 2011-02-15 00:05:59 +0100 | [diff] [blame] | 363 | 4.9 KVM_SET_MEMORY_ALIAS |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 364 | ------------------------ |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 365 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 366 | :Capability: basic |
| 367 | :Architectures: x86 |
| 368 | :Type: vm ioctl |
| 369 | :Parameters: struct kvm_memory_alias (in) |
| 370 | :Returns: 0 (success), -1 (error) |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 371 | |
Avi Kivity | a1f4d395 | 2010-06-21 11:44:20 +0300 | [diff] [blame] | 372 | This ioctl is obsolete and has been removed. |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 373 | |
Jan Kiszka | 414fa98 | 2012-04-24 16:40:15 +0200 | [diff] [blame] | 374 | |
Paul Bolle | 68ba697 | 2011-02-15 00:05:59 +0100 | [diff] [blame] | 375 | 4.10 KVM_RUN |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 376 | ------------ |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 377 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 378 | :Capability: basic |
| 379 | :Architectures: all |
| 380 | :Type: vcpu ioctl |
| 381 | :Parameters: none |
| 382 | :Returns: 0 on success, -1 on error |
| 383 | |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 384 | Errors: |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 385 | |
Alexandru Elisei | aab2bdb | 2020-12-01 15:01:53 +0000 | [diff] [blame] | 386 | ======= ============================================================== |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 387 | EINTR an unmasked signal is pending |
Alexandru Elisei | aab2bdb | 2020-12-01 15:01:53 +0000 | [diff] [blame] | 388 | ENOEXEC the vcpu hasn't been initialized or the guest tried to execute |
| 389 | instructions from device memory (arm64) |
| 390 | ENOSYS data abort outside memslots with no syndrome info and |
| 391 | KVM_CAP_ARM_NISV_TO_USER not enabled (arm64) |
| 392 | EPERM SVE feature set but not finalized (arm64) |
| 393 | ======= ============================================================== |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 394 | |
| 395 | This ioctl is used to run a guest virtual cpu. While there are no |
| 396 | explicit parameters, there is an implicit parameter block that can be |
| 397 | obtained by mmap()ing the vcpu fd at offset 0, with the size given by |
| 398 | KVM_GET_VCPU_MMAP_SIZE. The parameter block is formatted as a 'struct |
| 399 | kvm_run' (see below). |
| 400 | |
Jan Kiszka | 414fa98 | 2012-04-24 16:40:15 +0200 | [diff] [blame] | 401 | |
Paul Bolle | 68ba697 | 2011-02-15 00:05:59 +0100 | [diff] [blame] | 402 | 4.11 KVM_GET_REGS |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 403 | ----------------- |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 404 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 405 | :Capability: basic |
| 406 | :Architectures: all except ARM, arm64 |
| 407 | :Type: vcpu ioctl |
| 408 | :Parameters: struct kvm_regs (out) |
| 409 | :Returns: 0 on success, -1 on error |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 410 | |
| 411 | Reads the general purpose registers from the vcpu. |
| 412 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 413 | :: |
| 414 | |
| 415 | /* x86 */ |
| 416 | struct kvm_regs { |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 417 | /* out (KVM_GET_REGS) / in (KVM_SET_REGS) */ |
| 418 | __u64 rax, rbx, rcx, rdx; |
| 419 | __u64 rsi, rdi, rsp, rbp; |
| 420 | __u64 r8, r9, r10, r11; |
| 421 | __u64 r12, r13, r14, r15; |
| 422 | __u64 rip, rflags; |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 423 | }; |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 424 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 425 | /* mips */ |
| 426 | struct kvm_regs { |
James Hogan | c2d2c21 | 2014-07-04 15:11:35 +0100 | [diff] [blame] | 427 | /* out (KVM_GET_REGS) / in (KVM_SET_REGS) */ |
| 428 | __u64 gpr[32]; |
| 429 | __u64 hi; |
| 430 | __u64 lo; |
| 431 | __u64 pc; |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 432 | }; |
James Hogan | c2d2c21 | 2014-07-04 15:11:35 +0100 | [diff] [blame] | 433 | |
Jan Kiszka | 414fa98 | 2012-04-24 16:40:15 +0200 | [diff] [blame] | 434 | |
Paul Bolle | 68ba697 | 2011-02-15 00:05:59 +0100 | [diff] [blame] | 435 | 4.12 KVM_SET_REGS |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 436 | ----------------- |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 437 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 438 | :Capability: basic |
| 439 | :Architectures: all except ARM, arm64 |
| 440 | :Type: vcpu ioctl |
| 441 | :Parameters: struct kvm_regs (in) |
| 442 | :Returns: 0 on success, -1 on error |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 443 | |
| 444 | Writes the general purpose registers into the vcpu. |
| 445 | |
| 446 | See KVM_GET_REGS for the data structure. |
| 447 | |
Jan Kiszka | 414fa98 | 2012-04-24 16:40:15 +0200 | [diff] [blame] | 448 | |
Paul Bolle | 68ba697 | 2011-02-15 00:05:59 +0100 | [diff] [blame] | 449 | 4.13 KVM_GET_SREGS |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 450 | ------------------ |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 451 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 452 | :Capability: basic |
| 453 | :Architectures: x86, ppc |
| 454 | :Type: vcpu ioctl |
| 455 | :Parameters: struct kvm_sregs (out) |
| 456 | :Returns: 0 on success, -1 on error |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 457 | |
| 458 | Reads special registers from the vcpu. |
| 459 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 460 | :: |
| 461 | |
| 462 | /* x86 */ |
| 463 | struct kvm_sregs { |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 464 | struct kvm_segment cs, ds, es, fs, gs, ss; |
| 465 | struct kvm_segment tr, ldt; |
| 466 | struct kvm_dtable gdt, idt; |
| 467 | __u64 cr0, cr2, cr3, cr4, cr8; |
| 468 | __u64 efer; |
| 469 | __u64 apic_base; |
| 470 | __u64 interrupt_bitmap[(KVM_NR_INTERRUPTS + 63) / 64]; |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 471 | }; |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 472 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 473 | /* ppc -- see arch/powerpc/include/uapi/asm/kvm.h */ |
Scott Wood | 5ce941e | 2011-04-27 17:24:21 -0500 | [diff] [blame] | 474 | |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 475 | interrupt_bitmap is a bitmap of pending external interrupts. At most |
| 476 | one bit may be set. This interrupt has been acknowledged by the APIC |
| 477 | but not yet injected into the cpu core. |
| 478 | |
Jan Kiszka | 414fa98 | 2012-04-24 16:40:15 +0200 | [diff] [blame] | 479 | |
Paul Bolle | 68ba697 | 2011-02-15 00:05:59 +0100 | [diff] [blame] | 480 | 4.14 KVM_SET_SREGS |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 481 | ------------------ |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 482 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 483 | :Capability: basic |
| 484 | :Architectures: x86, ppc |
| 485 | :Type: vcpu ioctl |
| 486 | :Parameters: struct kvm_sregs (in) |
| 487 | :Returns: 0 on success, -1 on error |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 488 | |
| 489 | Writes special registers into the vcpu. See KVM_GET_SREGS for the |
| 490 | data structures. |
| 491 | |
Jan Kiszka | 414fa98 | 2012-04-24 16:40:15 +0200 | [diff] [blame] | 492 | |
Paul Bolle | 68ba697 | 2011-02-15 00:05:59 +0100 | [diff] [blame] | 493 | 4.15 KVM_TRANSLATE |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 494 | ------------------ |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 495 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 496 | :Capability: basic |
| 497 | :Architectures: x86 |
| 498 | :Type: vcpu ioctl |
| 499 | :Parameters: struct kvm_translation (in/out) |
| 500 | :Returns: 0 on success, -1 on error |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 501 | |
| 502 | Translates a virtual address according to the vcpu's current address |
| 503 | translation mode. |
| 504 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 505 | :: |
| 506 | |
| 507 | struct kvm_translation { |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 508 | /* in */ |
| 509 | __u64 linear_address; |
| 510 | |
| 511 | /* out */ |
| 512 | __u64 physical_address; |
| 513 | __u8 valid; |
| 514 | __u8 writeable; |
| 515 | __u8 usermode; |
| 516 | __u8 pad[5]; |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 517 | }; |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 518 | |
Jan Kiszka | 414fa98 | 2012-04-24 16:40:15 +0200 | [diff] [blame] | 519 | |
Paul Bolle | 68ba697 | 2011-02-15 00:05:59 +0100 | [diff] [blame] | 520 | 4.16 KVM_INTERRUPT |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 521 | ------------------ |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 522 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 523 | :Capability: basic |
| 524 | :Architectures: x86, ppc, mips |
| 525 | :Type: vcpu ioctl |
| 526 | :Parameters: struct kvm_interrupt (in) |
| 527 | :Returns: 0 on success, negative on failure. |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 528 | |
Steve Rutherford | 1c1a9ce | 2015-07-30 11:27:16 +0200 | [diff] [blame] | 529 | Queues a hardware interrupt vector to be injected. |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 530 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 531 | :: |
| 532 | |
| 533 | /* for KVM_INTERRUPT */ |
| 534 | struct kvm_interrupt { |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 535 | /* in */ |
| 536 | __u32 irq; |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 537 | }; |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 538 | |
Alexander Graf | 6f7a2bd | 2010-08-31 02:03:32 +0200 | [diff] [blame] | 539 | X86: |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 540 | ^^^^ |
Alexander Graf | 6f7a2bd | 2010-08-31 02:03:32 +0200 | [diff] [blame] | 541 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 542 | :Returns: |
| 543 | |
| 544 | ========= =================================== |
| 545 | 0 on success, |
| 546 | -EEXIST if an interrupt is already enqueued |
Randy Dunlap | 3747c5d | 2020-07-03 14:29:06 -0700 | [diff] [blame] | 547 | -EINVAL the irq number is invalid |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 548 | -ENXIO if the PIC is in the kernel |
| 549 | -EFAULT if the pointer is invalid |
| 550 | ========= =================================== |
Steve Rutherford | 1c1a9ce | 2015-07-30 11:27:16 +0200 | [diff] [blame] | 551 | |
| 552 | Note 'irq' is an interrupt vector, not an interrupt pin or line. This |
| 553 | ioctl is useful if the in-kernel PIC is not used. |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 554 | |
Alexander Graf | 6f7a2bd | 2010-08-31 02:03:32 +0200 | [diff] [blame] | 555 | PPC: |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 556 | ^^^^ |
Alexander Graf | 6f7a2bd | 2010-08-31 02:03:32 +0200 | [diff] [blame] | 557 | |
| 558 | Queues an external interrupt to be injected. This ioctl is overleaded |
| 559 | with 3 different irq values: |
| 560 | |
| 561 | a) KVM_INTERRUPT_SET |
| 562 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 563 | This injects an edge type external interrupt into the guest once it's ready |
| 564 | to receive interrupts. When injected, the interrupt is done. |
Alexander Graf | 6f7a2bd | 2010-08-31 02:03:32 +0200 | [diff] [blame] | 565 | |
| 566 | b) KVM_INTERRUPT_UNSET |
| 567 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 568 | This unsets any pending interrupt. |
Alexander Graf | 6f7a2bd | 2010-08-31 02:03:32 +0200 | [diff] [blame] | 569 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 570 | Only available with KVM_CAP_PPC_UNSET_IRQ. |
Alexander Graf | 6f7a2bd | 2010-08-31 02:03:32 +0200 | [diff] [blame] | 571 | |
| 572 | c) KVM_INTERRUPT_SET_LEVEL |
| 573 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 574 | This injects a level type external interrupt into the guest context. The |
| 575 | interrupt stays pending until a specific ioctl with KVM_INTERRUPT_UNSET |
| 576 | is triggered. |
Alexander Graf | 6f7a2bd | 2010-08-31 02:03:32 +0200 | [diff] [blame] | 577 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 578 | Only available with KVM_CAP_PPC_IRQ_LEVEL. |
Alexander Graf | 6f7a2bd | 2010-08-31 02:03:32 +0200 | [diff] [blame] | 579 | |
| 580 | Note that any value for 'irq' other than the ones stated above is invalid |
| 581 | and incurs unexpected behavior. |
| 582 | |
Sean Christopherson | 5e12490 | 2019-02-15 12:48:38 -0800 | [diff] [blame] | 583 | This is an asynchronous vcpu ioctl and can be invoked from any thread. |
| 584 | |
James Hogan | c2d2c21 | 2014-07-04 15:11:35 +0100 | [diff] [blame] | 585 | MIPS: |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 586 | ^^^^^ |
James Hogan | c2d2c21 | 2014-07-04 15:11:35 +0100 | [diff] [blame] | 587 | |
| 588 | Queues an external interrupt to be injected into the virtual CPU. A negative |
| 589 | interrupt number dequeues the interrupt. |
| 590 | |
Sean Christopherson | 5e12490 | 2019-02-15 12:48:38 -0800 | [diff] [blame] | 591 | This is an asynchronous vcpu ioctl and can be invoked from any thread. |
| 592 | |
Jan Kiszka | 414fa98 | 2012-04-24 16:40:15 +0200 | [diff] [blame] | 593 | |
Paul Bolle | 68ba697 | 2011-02-15 00:05:59 +0100 | [diff] [blame] | 594 | 4.17 KVM_DEBUG_GUEST |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 595 | -------------------- |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 596 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 597 | :Capability: basic |
| 598 | :Architectures: none |
| 599 | :Type: vcpu ioctl |
| 600 | :Parameters: none) |
| 601 | :Returns: -1 on error |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 602 | |
| 603 | Support for this has been removed. Use KVM_SET_GUEST_DEBUG instead. |
| 604 | |
Jan Kiszka | 414fa98 | 2012-04-24 16:40:15 +0200 | [diff] [blame] | 605 | |
Paul Bolle | 68ba697 | 2011-02-15 00:05:59 +0100 | [diff] [blame] | 606 | 4.18 KVM_GET_MSRS |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 607 | ----------------- |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 608 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 609 | :Capability: basic (vcpu), KVM_CAP_GET_MSR_FEATURES (system) |
| 610 | :Architectures: x86 |
| 611 | :Type: system ioctl, vcpu ioctl |
| 612 | :Parameters: struct kvm_msrs (in/out) |
| 613 | :Returns: number of msrs successfully returned; |
| 614 | -1 on error |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 615 | |
Tom Lendacky | 801e459 | 2018-02-21 13:39:51 -0600 | [diff] [blame] | 616 | When used as a system ioctl: |
| 617 | Reads the values of MSR-based features that are available for the VM. This |
| 618 | is similar to KVM_GET_SUPPORTED_CPUID, but it returns MSR indices and values. |
| 619 | The list of msr-based features can be obtained using KVM_GET_MSR_FEATURE_INDEX_LIST |
| 620 | in a system ioctl. |
| 621 | |
| 622 | When used as a vcpu ioctl: |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 623 | Reads model-specific registers from the vcpu. Supported msr indices can |
Tom Lendacky | 801e459 | 2018-02-21 13:39:51 -0600 | [diff] [blame] | 624 | be obtained using KVM_GET_MSR_INDEX_LIST in a system ioctl. |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 625 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 626 | :: |
| 627 | |
| 628 | struct kvm_msrs { |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 629 | __u32 nmsrs; /* number of msrs in entries */ |
| 630 | __u32 pad; |
| 631 | |
| 632 | struct kvm_msr_entry entries[0]; |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 633 | }; |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 634 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 635 | struct kvm_msr_entry { |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 636 | __u32 index; |
| 637 | __u32 reserved; |
| 638 | __u64 data; |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 639 | }; |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 640 | |
| 641 | Application code should set the 'nmsrs' member (which indicates the |
| 642 | size of the entries array) and the 'index' member of each array entry. |
| 643 | kvm will fill in the 'data' member. |
| 644 | |
Jan Kiszka | 414fa98 | 2012-04-24 16:40:15 +0200 | [diff] [blame] | 645 | |
Paul Bolle | 68ba697 | 2011-02-15 00:05:59 +0100 | [diff] [blame] | 646 | 4.19 KVM_SET_MSRS |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 647 | ----------------- |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 648 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 649 | :Capability: basic |
| 650 | :Architectures: x86 |
| 651 | :Type: vcpu ioctl |
| 652 | :Parameters: struct kvm_msrs (in) |
| 653 | :Returns: number of msrs successfully set (see below), -1 on error |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 654 | |
| 655 | Writes model-specific registers to the vcpu. See KVM_GET_MSRS for the |
| 656 | data structures. |
| 657 | |
| 658 | Application code should set the 'nmsrs' member (which indicates the |
| 659 | size of the entries array), and the 'index' and 'data' members of each |
| 660 | array entry. |
| 661 | |
Xiaoyao Li | b274a29 | 2019-09-05 08:57:37 +0800 | [diff] [blame] | 662 | It tries to set the MSRs in array entries[] one by one. If setting an MSR |
| 663 | fails, e.g., due to setting reserved bits, the MSR isn't supported/emulated |
| 664 | by KVM, etc..., it stops processing the MSR list and returns the number of |
| 665 | MSRs that have been set successfully. |
| 666 | |
Jan Kiszka | 414fa98 | 2012-04-24 16:40:15 +0200 | [diff] [blame] | 667 | |
Paul Bolle | 68ba697 | 2011-02-15 00:05:59 +0100 | [diff] [blame] | 668 | 4.20 KVM_SET_CPUID |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 669 | ------------------ |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 670 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 671 | :Capability: basic |
| 672 | :Architectures: x86 |
| 673 | :Type: vcpu ioctl |
| 674 | :Parameters: struct kvm_cpuid (in) |
| 675 | :Returns: 0 on success, -1 on error |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 676 | |
| 677 | Defines the vcpu responses to the cpuid instruction. Applications |
| 678 | should use the KVM_SET_CPUID2 ioctl if available. |
| 679 | |
Xiaoyao Li | 1896409 | 2020-07-08 14:50:47 +0800 | [diff] [blame] | 680 | Note, when this IOCTL fails, KVM gives no guarantees that previous valid CPUID |
| 681 | configuration (if there is) is not corrupted. Userspace can get a copy of the |
| 682 | resulting CPUID configuration through KVM_GET_CPUID2 in case. |
| 683 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 684 | :: |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 685 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 686 | struct kvm_cpuid_entry { |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 687 | __u32 function; |
| 688 | __u32 eax; |
| 689 | __u32 ebx; |
| 690 | __u32 ecx; |
| 691 | __u32 edx; |
| 692 | __u32 padding; |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 693 | }; |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 694 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 695 | /* for KVM_SET_CPUID */ |
| 696 | struct kvm_cpuid { |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 697 | __u32 nent; |
| 698 | __u32 padding; |
| 699 | struct kvm_cpuid_entry entries[0]; |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 700 | }; |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 701 | |
Jan Kiszka | 414fa98 | 2012-04-24 16:40:15 +0200 | [diff] [blame] | 702 | |
Paul Bolle | 68ba697 | 2011-02-15 00:05:59 +0100 | [diff] [blame] | 703 | 4.21 KVM_SET_SIGNAL_MASK |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 704 | ------------------------ |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 705 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 706 | :Capability: basic |
| 707 | :Architectures: all |
| 708 | :Type: vcpu ioctl |
| 709 | :Parameters: struct kvm_signal_mask (in) |
| 710 | :Returns: 0 on success, -1 on error |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 711 | |
| 712 | Defines which signals are blocked during execution of KVM_RUN. This |
| 713 | signal mask temporarily overrides the threads signal mask. Any |
| 714 | unblocked signal received (except SIGKILL and SIGSTOP, which retain |
| 715 | their traditional behaviour) will cause KVM_RUN to return with -EINTR. |
| 716 | |
| 717 | Note the signal will only be delivered if not blocked by the original |
| 718 | signal mask. |
| 719 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 720 | :: |
| 721 | |
| 722 | /* for KVM_SET_SIGNAL_MASK */ |
| 723 | struct kvm_signal_mask { |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 724 | __u32 len; |
| 725 | __u8 sigset[0]; |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 726 | }; |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 727 | |
Jan Kiszka | 414fa98 | 2012-04-24 16:40:15 +0200 | [diff] [blame] | 728 | |
Paul Bolle | 68ba697 | 2011-02-15 00:05:59 +0100 | [diff] [blame] | 729 | 4.22 KVM_GET_FPU |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 730 | ---------------- |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 731 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 732 | :Capability: basic |
| 733 | :Architectures: x86 |
| 734 | :Type: vcpu ioctl |
| 735 | :Parameters: struct kvm_fpu (out) |
| 736 | :Returns: 0 on success, -1 on error |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 737 | |
| 738 | Reads the floating point state from the vcpu. |
| 739 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 740 | :: |
| 741 | |
| 742 | /* for KVM_GET_FPU and KVM_SET_FPU */ |
| 743 | struct kvm_fpu { |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 744 | __u8 fpr[8][16]; |
| 745 | __u16 fcw; |
| 746 | __u16 fsw; |
| 747 | __u8 ftwx; /* in fxsave format */ |
| 748 | __u8 pad1; |
| 749 | __u16 last_opcode; |
| 750 | __u64 last_ip; |
| 751 | __u64 last_dp; |
| 752 | __u8 xmm[16][16]; |
| 753 | __u32 mxcsr; |
| 754 | __u32 pad2; |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 755 | }; |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 756 | |
Jan Kiszka | 414fa98 | 2012-04-24 16:40:15 +0200 | [diff] [blame] | 757 | |
Paul Bolle | 68ba697 | 2011-02-15 00:05:59 +0100 | [diff] [blame] | 758 | 4.23 KVM_SET_FPU |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 759 | ---------------- |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 760 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 761 | :Capability: basic |
| 762 | :Architectures: x86 |
| 763 | :Type: vcpu ioctl |
| 764 | :Parameters: struct kvm_fpu (in) |
| 765 | :Returns: 0 on success, -1 on error |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 766 | |
| 767 | Writes the floating point state to the vcpu. |
| 768 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 769 | :: |
| 770 | |
| 771 | /* for KVM_GET_FPU and KVM_SET_FPU */ |
| 772 | struct kvm_fpu { |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 773 | __u8 fpr[8][16]; |
| 774 | __u16 fcw; |
| 775 | __u16 fsw; |
| 776 | __u8 ftwx; /* in fxsave format */ |
| 777 | __u8 pad1; |
| 778 | __u16 last_opcode; |
| 779 | __u64 last_ip; |
| 780 | __u64 last_dp; |
| 781 | __u8 xmm[16][16]; |
| 782 | __u32 mxcsr; |
| 783 | __u32 pad2; |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 784 | }; |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 785 | |
Jan Kiszka | 414fa98 | 2012-04-24 16:40:15 +0200 | [diff] [blame] | 786 | |
Paul Bolle | 68ba697 | 2011-02-15 00:05:59 +0100 | [diff] [blame] | 787 | 4.24 KVM_CREATE_IRQCHIP |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 788 | ----------------------- |
Avi Kivity | 5dadbfd | 2009-08-23 17:08:04 +0300 | [diff] [blame] | 789 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 790 | :Capability: KVM_CAP_IRQCHIP, KVM_CAP_S390_IRQCHIP (s390) |
| 791 | :Architectures: x86, ARM, arm64, s390 |
| 792 | :Type: vm ioctl |
| 793 | :Parameters: none |
| 794 | :Returns: 0 on success, -1 on error |
Avi Kivity | 5dadbfd | 2009-08-23 17:08:04 +0300 | [diff] [blame] | 795 | |
Andre Przywara | ac3d373 | 2014-06-03 10:26:30 +0200 | [diff] [blame] | 796 | Creates an interrupt controller model in the kernel. |
| 797 | On x86, creates a virtual ioapic, a virtual PIC (two PICs, nested), and sets up |
| 798 | future vcpus to have a local APIC. IRQ routing for GSIs 0-15 is set to both |
| 799 | PIC and IOAPIC; GSI 16-23 only go to the IOAPIC. |
| 800 | On ARM/arm64, a GICv2 is created. Any other GIC versions require the usage of |
| 801 | KVM_CREATE_DEVICE, which also supports creating a GICv2. Using |
| 802 | KVM_CREATE_DEVICE is preferred over KVM_CREATE_IRQCHIP for GICv2. |
| 803 | On s390, a dummy irq routing table is created. |
Cornelia Huck | 8422359 | 2013-07-15 13:36:01 +0200 | [diff] [blame] | 804 | |
| 805 | Note that on s390 the KVM_CAP_S390_IRQCHIP vm capability needs to be enabled |
| 806 | before KVM_CREATE_IRQCHIP can be used. |
Avi Kivity | 5dadbfd | 2009-08-23 17:08:04 +0300 | [diff] [blame] | 807 | |
Jan Kiszka | 414fa98 | 2012-04-24 16:40:15 +0200 | [diff] [blame] | 808 | |
Paul Bolle | 68ba697 | 2011-02-15 00:05:59 +0100 | [diff] [blame] | 809 | 4.25 KVM_IRQ_LINE |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 810 | ----------------- |
Avi Kivity | 5dadbfd | 2009-08-23 17:08:04 +0300 | [diff] [blame] | 811 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 812 | :Capability: KVM_CAP_IRQCHIP |
| 813 | :Architectures: x86, arm, arm64 |
| 814 | :Type: vm ioctl |
| 815 | :Parameters: struct kvm_irq_level |
| 816 | :Returns: 0 on success, -1 on error |
Avi Kivity | 5dadbfd | 2009-08-23 17:08:04 +0300 | [diff] [blame] | 817 | |
| 818 | Sets the level of a GSI input to the interrupt controller model in the kernel. |
Christoffer Dall | 86ce853 | 2013-01-20 18:28:08 -0500 | [diff] [blame] | 819 | On some architectures it is required that an interrupt controller model has |
| 820 | been previously created with KVM_CREATE_IRQCHIP. Note that edge-triggered |
| 821 | interrupts require the level to be set to 1 and then back to 0. |
| 822 | |
Gabriel L. Somlo | 100943c | 2014-02-27 23:06:17 -0500 | [diff] [blame] | 823 | On real hardware, interrupt pins can be active-low or active-high. This |
| 824 | does not matter for the level field of struct kvm_irq_level: 1 always |
| 825 | means active (asserted), 0 means inactive (deasserted). |
| 826 | |
| 827 | x86 allows the operating system to program the interrupt polarity |
| 828 | (active-low/active-high) for level-triggered interrupts, and KVM used |
| 829 | to consider the polarity. However, due to bitrot in the handling of |
| 830 | active-low interrupts, the above convention is now valid on x86 too. |
| 831 | This is signaled by KVM_CAP_X86_IOAPIC_POLARITY_IGNORED. Userspace |
| 832 | should not present interrupts to the guest as active-low unless this |
| 833 | capability is present (or unless it is not using the in-kernel irqchip, |
| 834 | of course). |
| 835 | |
| 836 | |
Marc Zyngier | 379e04c7 | 2013-04-02 17:46:31 +0100 | [diff] [blame] | 837 | ARM/arm64 can signal an interrupt either at the CPU level, or at the |
| 838 | in-kernel irqchip (GIC), and for in-kernel irqchip can tell the GIC to |
| 839 | use PPIs designated for specific cpus. The irq field is interpreted |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 840 | like this:: |
Christoffer Dall | 86ce853 | 2013-01-20 18:28:08 -0500 | [diff] [blame] | 841 | |
Marc Zyngier | 92f35b7 | 2019-08-18 14:09:47 +0100 | [diff] [blame] | 842 | bits: | 31 ... 28 | 27 ... 24 | 23 ... 16 | 15 ... 0 | |
| 843 | field: | vcpu2_index | irq_type | vcpu_index | irq_id | |
Christoffer Dall | 86ce853 | 2013-01-20 18:28:08 -0500 | [diff] [blame] | 844 | |
| 845 | The irq_type field has the following values: |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 846 | |
| 847 | - irq_type[0]: |
| 848 | out-of-kernel GIC: irq_id 0 is IRQ, irq_id 1 is FIQ |
| 849 | - irq_type[1]: |
| 850 | in-kernel GIC: SPI, irq_id between 32 and 1019 (incl.) |
Christoffer Dall | 86ce853 | 2013-01-20 18:28:08 -0500 | [diff] [blame] | 851 | (the vcpu_index field is ignored) |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 852 | - irq_type[2]: |
| 853 | in-kernel GIC: PPI, irq_id between 16 and 31 (incl.) |
Christoffer Dall | 86ce853 | 2013-01-20 18:28:08 -0500 | [diff] [blame] | 854 | |
| 855 | (The irq_id field thus corresponds nicely to the IRQ ID in the ARM GIC specs) |
| 856 | |
Gabriel L. Somlo | 100943c | 2014-02-27 23:06:17 -0500 | [diff] [blame] | 857 | In both cases, level is used to assert/deassert the line. |
Avi Kivity | 5dadbfd | 2009-08-23 17:08:04 +0300 | [diff] [blame] | 858 | |
Marc Zyngier | 92f35b7 | 2019-08-18 14:09:47 +0100 | [diff] [blame] | 859 | When KVM_CAP_ARM_IRQ_LINE_LAYOUT_2 is supported, the target vcpu is |
| 860 | identified as (256 * vcpu2_index + vcpu_index). Otherwise, vcpu2_index |
| 861 | must be zero. |
| 862 | |
| 863 | Note that on arm/arm64, the KVM_CAP_IRQCHIP capability only conditions |
| 864 | injection of interrupts for the in-kernel irqchip. KVM_IRQ_LINE can always |
| 865 | be used for a userspace interrupt controller. |
| 866 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 867 | :: |
| 868 | |
| 869 | struct kvm_irq_level { |
Avi Kivity | 5dadbfd | 2009-08-23 17:08:04 +0300 | [diff] [blame] | 870 | union { |
| 871 | __u32 irq; /* GSI */ |
| 872 | __s32 status; /* not used for KVM_IRQ_LEVEL */ |
| 873 | }; |
| 874 | __u32 level; /* 0 or 1 */ |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 875 | }; |
Avi Kivity | 5dadbfd | 2009-08-23 17:08:04 +0300 | [diff] [blame] | 876 | |
Jan Kiszka | 414fa98 | 2012-04-24 16:40:15 +0200 | [diff] [blame] | 877 | |
Paul Bolle | 68ba697 | 2011-02-15 00:05:59 +0100 | [diff] [blame] | 878 | 4.26 KVM_GET_IRQCHIP |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 879 | -------------------- |
Avi Kivity | 5dadbfd | 2009-08-23 17:08:04 +0300 | [diff] [blame] | 880 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 881 | :Capability: KVM_CAP_IRQCHIP |
| 882 | :Architectures: x86 |
| 883 | :Type: vm ioctl |
| 884 | :Parameters: struct kvm_irqchip (in/out) |
| 885 | :Returns: 0 on success, -1 on error |
Avi Kivity | 5dadbfd | 2009-08-23 17:08:04 +0300 | [diff] [blame] | 886 | |
| 887 | Reads the state of a kernel interrupt controller created with |
| 888 | KVM_CREATE_IRQCHIP into a buffer provided by the caller. |
| 889 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 890 | :: |
| 891 | |
| 892 | struct kvm_irqchip { |
Avi Kivity | 5dadbfd | 2009-08-23 17:08:04 +0300 | [diff] [blame] | 893 | __u32 chip_id; /* 0 = PIC1, 1 = PIC2, 2 = IOAPIC */ |
| 894 | __u32 pad; |
| 895 | union { |
| 896 | char dummy[512]; /* reserving space */ |
| 897 | struct kvm_pic_state pic; |
| 898 | struct kvm_ioapic_state ioapic; |
| 899 | } chip; |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 900 | }; |
Avi Kivity | 5dadbfd | 2009-08-23 17:08:04 +0300 | [diff] [blame] | 901 | |
Jan Kiszka | 414fa98 | 2012-04-24 16:40:15 +0200 | [diff] [blame] | 902 | |
Paul Bolle | 68ba697 | 2011-02-15 00:05:59 +0100 | [diff] [blame] | 903 | 4.27 KVM_SET_IRQCHIP |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 904 | -------------------- |
Avi Kivity | 5dadbfd | 2009-08-23 17:08:04 +0300 | [diff] [blame] | 905 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 906 | :Capability: KVM_CAP_IRQCHIP |
| 907 | :Architectures: x86 |
| 908 | :Type: vm ioctl |
| 909 | :Parameters: struct kvm_irqchip (in) |
| 910 | :Returns: 0 on success, -1 on error |
Avi Kivity | 5dadbfd | 2009-08-23 17:08:04 +0300 | [diff] [blame] | 911 | |
| 912 | Sets the state of a kernel interrupt controller created with |
| 913 | KVM_CREATE_IRQCHIP from a buffer provided by the caller. |
| 914 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 915 | :: |
| 916 | |
| 917 | struct kvm_irqchip { |
Avi Kivity | 5dadbfd | 2009-08-23 17:08:04 +0300 | [diff] [blame] | 918 | __u32 chip_id; /* 0 = PIC1, 1 = PIC2, 2 = IOAPIC */ |
| 919 | __u32 pad; |
| 920 | union { |
| 921 | char dummy[512]; /* reserving space */ |
| 922 | struct kvm_pic_state pic; |
| 923 | struct kvm_ioapic_state ioapic; |
| 924 | } chip; |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 925 | }; |
Avi Kivity | 5dadbfd | 2009-08-23 17:08:04 +0300 | [diff] [blame] | 926 | |
Jan Kiszka | 414fa98 | 2012-04-24 16:40:15 +0200 | [diff] [blame] | 927 | |
Paul Bolle | 68ba697 | 2011-02-15 00:05:59 +0100 | [diff] [blame] | 928 | 4.28 KVM_XEN_HVM_CONFIG |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 929 | ----------------------- |
Ed Swierk | ffde22a | 2009-10-15 15:21:43 -0700 | [diff] [blame] | 930 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 931 | :Capability: KVM_CAP_XEN_HVM |
| 932 | :Architectures: x86 |
| 933 | :Type: vm ioctl |
| 934 | :Parameters: struct kvm_xen_hvm_config (in) |
| 935 | :Returns: 0 on success, -1 on error |
Ed Swierk | ffde22a | 2009-10-15 15:21:43 -0700 | [diff] [blame] | 936 | |
| 937 | Sets the MSR that the Xen HVM guest uses to initialize its hypercall |
| 938 | page, and provides the starting address and size of the hypercall |
| 939 | blobs in userspace. When the guest writes the MSR, kvm copies one |
| 940 | page of a blob (32- or 64-bit, depending on the vcpu mode) to guest |
| 941 | memory. |
| 942 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 943 | :: |
| 944 | |
| 945 | struct kvm_xen_hvm_config { |
Ed Swierk | ffde22a | 2009-10-15 15:21:43 -0700 | [diff] [blame] | 946 | __u32 flags; |
| 947 | __u32 msr; |
| 948 | __u64 blob_addr_32; |
| 949 | __u64 blob_addr_64; |
| 950 | __u8 blob_size_32; |
| 951 | __u8 blob_size_64; |
| 952 | __u8 pad2[30]; |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 953 | }; |
Ed Swierk | ffde22a | 2009-10-15 15:21:43 -0700 | [diff] [blame] | 954 | |
Jan Kiszka | 414fa98 | 2012-04-24 16:40:15 +0200 | [diff] [blame] | 955 | |
Paul Bolle | 68ba697 | 2011-02-15 00:05:59 +0100 | [diff] [blame] | 956 | 4.29 KVM_GET_CLOCK |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 957 | ------------------ |
Glauber Costa | afbcf7a | 2009-10-16 15:28:36 -0400 | [diff] [blame] | 958 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 959 | :Capability: KVM_CAP_ADJUST_CLOCK |
| 960 | :Architectures: x86 |
| 961 | :Type: vm ioctl |
| 962 | :Parameters: struct kvm_clock_data (out) |
| 963 | :Returns: 0 on success, -1 on error |
Glauber Costa | afbcf7a | 2009-10-16 15:28:36 -0400 | [diff] [blame] | 964 | |
| 965 | Gets the current timestamp of kvmclock as seen by the current guest. In |
| 966 | conjunction with KVM_SET_CLOCK, it is used to ensure monotonicity on scenarios |
| 967 | such as migration. |
| 968 | |
Paolo Bonzini | e3fd9a9 | 2016-11-09 17:48:15 +0100 | [diff] [blame] | 969 | When KVM_CAP_ADJUST_CLOCK is passed to KVM_CHECK_EXTENSION, it returns the |
| 970 | set of bits that KVM can return in struct kvm_clock_data's flag member. |
| 971 | |
| 972 | The only flag defined now is KVM_CLOCK_TSC_STABLE. If set, the returned |
| 973 | value is the exact kvmclock value seen by all VCPUs at the instant |
| 974 | when KVM_GET_CLOCK was called. If clear, the returned value is simply |
| 975 | CLOCK_MONOTONIC plus a constant offset; the offset can be modified |
| 976 | with KVM_SET_CLOCK. KVM will try to make all VCPUs follow this clock, |
| 977 | but the exact value read by each VCPU could differ, because the host |
| 978 | TSC is not stable. |
| 979 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 980 | :: |
| 981 | |
| 982 | struct kvm_clock_data { |
Glauber Costa | afbcf7a | 2009-10-16 15:28:36 -0400 | [diff] [blame] | 983 | __u64 clock; /* kvmclock current value */ |
| 984 | __u32 flags; |
| 985 | __u32 pad[9]; |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 986 | }; |
Glauber Costa | afbcf7a | 2009-10-16 15:28:36 -0400 | [diff] [blame] | 987 | |
Jan Kiszka | 414fa98 | 2012-04-24 16:40:15 +0200 | [diff] [blame] | 988 | |
Paul Bolle | 68ba697 | 2011-02-15 00:05:59 +0100 | [diff] [blame] | 989 | 4.30 KVM_SET_CLOCK |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 990 | ------------------ |
Glauber Costa | afbcf7a | 2009-10-16 15:28:36 -0400 | [diff] [blame] | 991 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 992 | :Capability: KVM_CAP_ADJUST_CLOCK |
| 993 | :Architectures: x86 |
| 994 | :Type: vm ioctl |
| 995 | :Parameters: struct kvm_clock_data (in) |
| 996 | :Returns: 0 on success, -1 on error |
Glauber Costa | afbcf7a | 2009-10-16 15:28:36 -0400 | [diff] [blame] | 997 | |
Wu Fengguang | 2044892d | 2009-12-24 09:04:16 +0800 | [diff] [blame] | 998 | Sets the current timestamp of kvmclock to the value specified in its parameter. |
Glauber Costa | afbcf7a | 2009-10-16 15:28:36 -0400 | [diff] [blame] | 999 | In conjunction with KVM_GET_CLOCK, it is used to ensure monotonicity on scenarios |
| 1000 | such as migration. |
| 1001 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1002 | :: |
| 1003 | |
| 1004 | struct kvm_clock_data { |
Glauber Costa | afbcf7a | 2009-10-16 15:28:36 -0400 | [diff] [blame] | 1005 | __u64 clock; /* kvmclock current value */ |
| 1006 | __u32 flags; |
| 1007 | __u32 pad[9]; |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1008 | }; |
Glauber Costa | afbcf7a | 2009-10-16 15:28:36 -0400 | [diff] [blame] | 1009 | |
Jan Kiszka | 414fa98 | 2012-04-24 16:40:15 +0200 | [diff] [blame] | 1010 | |
Paul Bolle | 68ba697 | 2011-02-15 00:05:59 +0100 | [diff] [blame] | 1011 | 4.31 KVM_GET_VCPU_EVENTS |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1012 | ------------------------ |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 1013 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1014 | :Capability: KVM_CAP_VCPU_EVENTS |
| 1015 | :Extended by: KVM_CAP_INTR_SHADOW |
| 1016 | :Architectures: x86, arm, arm64 |
| 1017 | :Type: vcpu ioctl |
| 1018 | :Parameters: struct kvm_vcpu_event (out) |
| 1019 | :Returns: 0 on success, -1 on error |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 1020 | |
Dongjiu Geng | b7b27fa | 2018-07-19 16:24:22 +0100 | [diff] [blame] | 1021 | X86: |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1022 | ^^^^ |
Dongjiu Geng | b7b27fa | 2018-07-19 16:24:22 +0100 | [diff] [blame] | 1023 | |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 1024 | Gets currently pending exceptions, interrupts, and NMIs as well as related |
| 1025 | states of the vcpu. |
| 1026 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1027 | :: |
| 1028 | |
| 1029 | struct kvm_vcpu_events { |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 1030 | struct { |
| 1031 | __u8 injected; |
| 1032 | __u8 nr; |
| 1033 | __u8 has_error_code; |
Jim Mattson | 59073aa | 2018-10-16 14:29:20 -0700 | [diff] [blame] | 1034 | __u8 pending; |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 1035 | __u32 error_code; |
| 1036 | } exception; |
| 1037 | struct { |
| 1038 | __u8 injected; |
| 1039 | __u8 nr; |
| 1040 | __u8 soft; |
Jan Kiszka | 48005f6 | 2010-02-19 19:38:07 +0100 | [diff] [blame] | 1041 | __u8 shadow; |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 1042 | } interrupt; |
| 1043 | struct { |
| 1044 | __u8 injected; |
| 1045 | __u8 pending; |
| 1046 | __u8 masked; |
| 1047 | __u8 pad; |
| 1048 | } nmi; |
| 1049 | __u32 sipi_vector; |
Jan Kiszka | dab4b91 | 2009-12-06 18:24:15 +0100 | [diff] [blame] | 1050 | __u32 flags; |
Paolo Bonzini | f077825 | 2015-04-01 15:06:40 +0200 | [diff] [blame] | 1051 | struct { |
| 1052 | __u8 smm; |
| 1053 | __u8 pending; |
| 1054 | __u8 smm_inside_nmi; |
| 1055 | __u8 latched_init; |
| 1056 | } smi; |
Jim Mattson | 59073aa | 2018-10-16 14:29:20 -0700 | [diff] [blame] | 1057 | __u8 reserved[27]; |
| 1058 | __u8 exception_has_payload; |
| 1059 | __u64 exception_payload; |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1060 | }; |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 1061 | |
Jim Mattson | 59073aa | 2018-10-16 14:29:20 -0700 | [diff] [blame] | 1062 | The following bits are defined in the flags field: |
Jan Kiszka | 48005f6 | 2010-02-19 19:38:07 +0100 | [diff] [blame] | 1063 | |
Jim Mattson | 59073aa | 2018-10-16 14:29:20 -0700 | [diff] [blame] | 1064 | - KVM_VCPUEVENT_VALID_SHADOW may be set to signal that |
Paolo Bonzini | f077825 | 2015-04-01 15:06:40 +0200 | [diff] [blame] | 1065 | interrupt.shadow contains a valid state. |
| 1066 | |
Jim Mattson | 59073aa | 2018-10-16 14:29:20 -0700 | [diff] [blame] | 1067 | - KVM_VCPUEVENT_VALID_SMM may be set to signal that smi contains a |
| 1068 | valid state. |
| 1069 | |
| 1070 | - KVM_VCPUEVENT_VALID_PAYLOAD may be set to signal that the |
| 1071 | exception_has_payload, exception_payload, and exception.pending |
| 1072 | fields contain a valid state. This bit will be set whenever |
| 1073 | KVM_CAP_EXCEPTION_PAYLOAD is enabled. |
Jan Kiszka | 414fa98 | 2012-04-24 16:40:15 +0200 | [diff] [blame] | 1074 | |
James Morse | b0960b9 | 2018-07-19 16:24:25 +0100 | [diff] [blame] | 1075 | ARM/ARM64: |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1076 | ^^^^^^^^^^ |
Dongjiu Geng | b7b27fa | 2018-07-19 16:24:22 +0100 | [diff] [blame] | 1077 | |
| 1078 | If the guest accesses a device that is being emulated by the host kernel in |
| 1079 | such a way that a real device would generate a physical SError, KVM may make |
| 1080 | a virtual SError pending for that VCPU. This system error interrupt remains |
| 1081 | pending until the guest takes the exception by unmasking PSTATE.A. |
| 1082 | |
| 1083 | Running the VCPU may cause it to take a pending SError, or make an access that |
| 1084 | causes an SError to become pending. The event's description is only valid while |
| 1085 | the VPCU is not running. |
| 1086 | |
| 1087 | This API provides a way to read and write the pending 'event' state that is not |
| 1088 | visible to the guest. To save, restore or migrate a VCPU the struct representing |
| 1089 | the state can be read then written using this GET/SET API, along with the other |
| 1090 | guest-visible registers. It is not possible to 'cancel' an SError that has been |
| 1091 | made pending. |
| 1092 | |
| 1093 | A device being emulated in user-space may also wish to generate an SError. To do |
| 1094 | this the events structure can be populated by user-space. The current state |
| 1095 | should be read first, to ensure no existing SError is pending. If an existing |
| 1096 | SError is pending, the architecture's 'Multiple SError interrupts' rules should |
| 1097 | be followed. (2.5.3 of DDI0587.a "ARM Reliability, Availability, and |
| 1098 | Serviceability (RAS) Specification"). |
| 1099 | |
Dongjiu Geng | be26b3a | 2018-07-19 16:24:23 +0100 | [diff] [blame] | 1100 | SError exceptions always have an ESR value. Some CPUs have the ability to |
| 1101 | specify what the virtual SError's ESR value should be. These systems will |
Dongjiu Geng | 688e058 | 2018-08-20 17:39:25 -0400 | [diff] [blame] | 1102 | advertise KVM_CAP_ARM_INJECT_SERROR_ESR. In this case exception.has_esr will |
Dongjiu Geng | be26b3a | 2018-07-19 16:24:23 +0100 | [diff] [blame] | 1103 | always have a non-zero value when read, and the agent making an SError pending |
| 1104 | should specify the ISS field in the lower 24 bits of exception.serror_esr. If |
Dongjiu Geng | 688e058 | 2018-08-20 17:39:25 -0400 | [diff] [blame] | 1105 | the system supports KVM_CAP_ARM_INJECT_SERROR_ESR, but user-space sets the events |
Dongjiu Geng | be26b3a | 2018-07-19 16:24:23 +0100 | [diff] [blame] | 1106 | with exception.has_esr as zero, KVM will choose an ESR. |
| 1107 | |
| 1108 | Specifying exception.has_esr on a system that does not support it will return |
| 1109 | -EINVAL. Setting anything other than the lower 24bits of exception.serror_esr |
| 1110 | will return -EINVAL. |
| 1111 | |
Christoffer Dall | da34517 | 2019-10-11 13:07:06 +0200 | [diff] [blame] | 1112 | It is not possible to read back a pending external abort (injected via |
| 1113 | KVM_SET_VCPU_EVENTS or otherwise) because such an exception is always delivered |
| 1114 | directly to the virtual CPU). |
| 1115 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1116 | :: |
Christoffer Dall | da34517 | 2019-10-11 13:07:06 +0200 | [diff] [blame] | 1117 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1118 | struct kvm_vcpu_events { |
Dongjiu Geng | b7b27fa | 2018-07-19 16:24:22 +0100 | [diff] [blame] | 1119 | struct { |
| 1120 | __u8 serror_pending; |
| 1121 | __u8 serror_has_esr; |
Christoffer Dall | da34517 | 2019-10-11 13:07:06 +0200 | [diff] [blame] | 1122 | __u8 ext_dabt_pending; |
Dongjiu Geng | b7b27fa | 2018-07-19 16:24:22 +0100 | [diff] [blame] | 1123 | /* Align it to 8 bytes */ |
Christoffer Dall | da34517 | 2019-10-11 13:07:06 +0200 | [diff] [blame] | 1124 | __u8 pad[5]; |
Dongjiu Geng | b7b27fa | 2018-07-19 16:24:22 +0100 | [diff] [blame] | 1125 | __u64 serror_esr; |
| 1126 | } exception; |
| 1127 | __u32 reserved[12]; |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1128 | }; |
Dongjiu Geng | b7b27fa | 2018-07-19 16:24:22 +0100 | [diff] [blame] | 1129 | |
Paul Bolle | 68ba697 | 2011-02-15 00:05:59 +0100 | [diff] [blame] | 1130 | 4.32 KVM_SET_VCPU_EVENTS |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1131 | ------------------------ |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 1132 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1133 | :Capability: KVM_CAP_VCPU_EVENTS |
| 1134 | :Extended by: KVM_CAP_INTR_SHADOW |
| 1135 | :Architectures: x86, arm, arm64 |
| 1136 | :Type: vcpu ioctl |
| 1137 | :Parameters: struct kvm_vcpu_event (in) |
| 1138 | :Returns: 0 on success, -1 on error |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 1139 | |
Dongjiu Geng | b7b27fa | 2018-07-19 16:24:22 +0100 | [diff] [blame] | 1140 | X86: |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1141 | ^^^^ |
Dongjiu Geng | b7b27fa | 2018-07-19 16:24:22 +0100 | [diff] [blame] | 1142 | |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 1143 | Set pending exceptions, interrupts, and NMIs as well as related states of the |
| 1144 | vcpu. |
| 1145 | |
| 1146 | See KVM_GET_VCPU_EVENTS for the data structure. |
| 1147 | |
Jan Kiszka | dab4b91 | 2009-12-06 18:24:15 +0100 | [diff] [blame] | 1148 | Fields that may be modified asynchronously by running VCPUs can be excluded |
Paolo Bonzini | f077825 | 2015-04-01 15:06:40 +0200 | [diff] [blame] | 1149 | from the update. These fields are nmi.pending, sipi_vector, smi.smm, |
| 1150 | smi.pending. Keep the corresponding bits in the flags field cleared to |
| 1151 | suppress overwriting the current in-kernel state. The bits are: |
Jan Kiszka | dab4b91 | 2009-12-06 18:24:15 +0100 | [diff] [blame] | 1152 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1153 | =============================== ================================== |
| 1154 | KVM_VCPUEVENT_VALID_NMI_PENDING transfer nmi.pending to the kernel |
| 1155 | KVM_VCPUEVENT_VALID_SIPI_VECTOR transfer sipi_vector |
| 1156 | KVM_VCPUEVENT_VALID_SMM transfer the smi sub-struct. |
| 1157 | =============================== ================================== |
Jan Kiszka | dab4b91 | 2009-12-06 18:24:15 +0100 | [diff] [blame] | 1158 | |
Jan Kiszka | 48005f6 | 2010-02-19 19:38:07 +0100 | [diff] [blame] | 1159 | If KVM_CAP_INTR_SHADOW is available, KVM_VCPUEVENT_VALID_SHADOW can be set in |
| 1160 | the flags field to signal that interrupt.shadow contains a valid state and |
| 1161 | shall be written into the VCPU. |
| 1162 | |
Paolo Bonzini | f077825 | 2015-04-01 15:06:40 +0200 | [diff] [blame] | 1163 | KVM_VCPUEVENT_VALID_SMM can only be set if KVM_CAP_X86_SMM is available. |
| 1164 | |
Jim Mattson | 59073aa | 2018-10-16 14:29:20 -0700 | [diff] [blame] | 1165 | If KVM_CAP_EXCEPTION_PAYLOAD is enabled, KVM_VCPUEVENT_VALID_PAYLOAD |
| 1166 | can be set in the flags field to signal that the |
| 1167 | exception_has_payload, exception_payload, and exception.pending fields |
| 1168 | contain a valid state and shall be written into the VCPU. |
| 1169 | |
James Morse | b0960b9 | 2018-07-19 16:24:25 +0100 | [diff] [blame] | 1170 | ARM/ARM64: |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1171 | ^^^^^^^^^^ |
Dongjiu Geng | b7b27fa | 2018-07-19 16:24:22 +0100 | [diff] [blame] | 1172 | |
Christoffer Dall | da34517 | 2019-10-11 13:07:06 +0200 | [diff] [blame] | 1173 | User space may need to inject several types of events to the guest. |
| 1174 | |
Dongjiu Geng | b7b27fa | 2018-07-19 16:24:22 +0100 | [diff] [blame] | 1175 | Set the pending SError exception state for this VCPU. It is not possible to |
| 1176 | 'cancel' an Serror that has been made pending. |
| 1177 | |
Christoffer Dall | da34517 | 2019-10-11 13:07:06 +0200 | [diff] [blame] | 1178 | If the guest performed an access to I/O memory which could not be handled by |
| 1179 | userspace, for example because of missing instruction syndrome decode |
| 1180 | information or because there is no device mapped at the accessed IPA, then |
| 1181 | userspace can ask the kernel to inject an external abort using the address |
| 1182 | from the exiting fault on the VCPU. It is a programming error to set |
| 1183 | ext_dabt_pending after an exit which was not either KVM_EXIT_MMIO or |
| 1184 | KVM_EXIT_ARM_NISV. This feature is only available if the system supports |
| 1185 | KVM_CAP_ARM_INJECT_EXT_DABT. This is a helper which provides commonality in |
| 1186 | how userspace reports accesses for the above cases to guests, across different |
| 1187 | userspace implementations. Nevertheless, userspace can still emulate all Arm |
| 1188 | exceptions by manipulating individual registers using the KVM_SET_ONE_REG API. |
| 1189 | |
Dongjiu Geng | b7b27fa | 2018-07-19 16:24:22 +0100 | [diff] [blame] | 1190 | See KVM_GET_VCPU_EVENTS for the data structure. |
| 1191 | |
Jan Kiszka | 414fa98 | 2012-04-24 16:40:15 +0200 | [diff] [blame] | 1192 | |
Paul Bolle | 68ba697 | 2011-02-15 00:05:59 +0100 | [diff] [blame] | 1193 | 4.33 KVM_GET_DEBUGREGS |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1194 | ---------------------- |
Jan Kiszka | a1efbe7 | 2010-02-15 10:45:43 +0100 | [diff] [blame] | 1195 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1196 | :Capability: KVM_CAP_DEBUGREGS |
| 1197 | :Architectures: x86 |
| 1198 | :Type: vm ioctl |
| 1199 | :Parameters: struct kvm_debugregs (out) |
| 1200 | :Returns: 0 on success, -1 on error |
Jan Kiszka | a1efbe7 | 2010-02-15 10:45:43 +0100 | [diff] [blame] | 1201 | |
| 1202 | Reads debug registers from the vcpu. |
| 1203 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1204 | :: |
| 1205 | |
| 1206 | struct kvm_debugregs { |
Jan Kiszka | a1efbe7 | 2010-02-15 10:45:43 +0100 | [diff] [blame] | 1207 | __u64 db[4]; |
| 1208 | __u64 dr6; |
| 1209 | __u64 dr7; |
| 1210 | __u64 flags; |
| 1211 | __u64 reserved[9]; |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1212 | }; |
Jan Kiszka | a1efbe7 | 2010-02-15 10:45:43 +0100 | [diff] [blame] | 1213 | |
Jan Kiszka | 414fa98 | 2012-04-24 16:40:15 +0200 | [diff] [blame] | 1214 | |
Paul Bolle | 68ba697 | 2011-02-15 00:05:59 +0100 | [diff] [blame] | 1215 | 4.34 KVM_SET_DEBUGREGS |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1216 | ---------------------- |
Jan Kiszka | a1efbe7 | 2010-02-15 10:45:43 +0100 | [diff] [blame] | 1217 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1218 | :Capability: KVM_CAP_DEBUGREGS |
| 1219 | :Architectures: x86 |
| 1220 | :Type: vm ioctl |
| 1221 | :Parameters: struct kvm_debugregs (in) |
| 1222 | :Returns: 0 on success, -1 on error |
Jan Kiszka | a1efbe7 | 2010-02-15 10:45:43 +0100 | [diff] [blame] | 1223 | |
| 1224 | Writes debug registers into the vcpu. |
| 1225 | |
| 1226 | See KVM_GET_DEBUGREGS for the data structure. The flags field is unused |
| 1227 | yet and must be cleared on entry. |
| 1228 | |
Jan Kiszka | 414fa98 | 2012-04-24 16:40:15 +0200 | [diff] [blame] | 1229 | |
Paul Bolle | 68ba697 | 2011-02-15 00:05:59 +0100 | [diff] [blame] | 1230 | 4.35 KVM_SET_USER_MEMORY_REGION |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1231 | ------------------------------- |
Avi Kivity | 0f2d8f4 | 2010-03-25 12:16:48 +0200 | [diff] [blame] | 1232 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1233 | :Capability: KVM_CAP_USER_MEMORY |
| 1234 | :Architectures: all |
| 1235 | :Type: vm ioctl |
| 1236 | :Parameters: struct kvm_userspace_memory_region (in) |
| 1237 | :Returns: 0 on success, -1 on error |
Avi Kivity | 0f2d8f4 | 2010-03-25 12:16:48 +0200 | [diff] [blame] | 1238 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1239 | :: |
| 1240 | |
| 1241 | struct kvm_userspace_memory_region { |
Avi Kivity | 0f2d8f4 | 2010-03-25 12:16:48 +0200 | [diff] [blame] | 1242 | __u32 slot; |
| 1243 | __u32 flags; |
| 1244 | __u64 guest_phys_addr; |
| 1245 | __u64 memory_size; /* bytes */ |
| 1246 | __u64 userspace_addr; /* start of the userspace allocated memory */ |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1247 | }; |
Avi Kivity | 0f2d8f4 | 2010-03-25 12:16:48 +0200 | [diff] [blame] | 1248 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1249 | /* for kvm_memory_region::flags */ |
| 1250 | #define KVM_MEM_LOG_DIRTY_PAGES (1UL << 0) |
| 1251 | #define KVM_MEM_READONLY (1UL << 1) |
Avi Kivity | 0f2d8f4 | 2010-03-25 12:16:48 +0200 | [diff] [blame] | 1252 | |
Paolo Bonzini | e2788c4 | 2019-03-28 17:22:31 +0100 | [diff] [blame] | 1253 | This ioctl allows the user to create, modify or delete a guest physical |
| 1254 | memory slot. Bits 0-15 of "slot" specify the slot id and this value |
| 1255 | should be less than the maximum number of user memory slots supported per |
Paolo Bonzini | c110ae5 | 2019-03-28 17:24:03 +0100 | [diff] [blame] | 1256 | VM. The maximum allowed slots can be queried using KVM_CAP_NR_MEMSLOTS. |
| 1257 | Slots may not overlap in guest physical address space. |
Avi Kivity | 0f2d8f4 | 2010-03-25 12:16:48 +0200 | [diff] [blame] | 1258 | |
Paolo Bonzini | f481b06 | 2015-05-17 17:30:37 +0200 | [diff] [blame] | 1259 | If KVM_CAP_MULTI_ADDRESS_SPACE is available, bits 16-31 of "slot" |
| 1260 | specifies the address space which is being modified. They must be |
| 1261 | less than the value that KVM_CHECK_EXTENSION returns for the |
| 1262 | KVM_CAP_MULTI_ADDRESS_SPACE capability. Slots in separate address spaces |
| 1263 | are unrelated; the restriction on overlapping slots only applies within |
| 1264 | each address space. |
| 1265 | |
Paolo Bonzini | e2788c4 | 2019-03-28 17:22:31 +0100 | [diff] [blame] | 1266 | Deleting a slot is done by passing zero for memory_size. When changing |
| 1267 | an existing slot, it may be moved in the guest physical memory space, |
| 1268 | or its flags may be modified, but it may not be resized. |
| 1269 | |
Avi Kivity | 0f2d8f4 | 2010-03-25 12:16:48 +0200 | [diff] [blame] | 1270 | Memory for the region is taken starting at the address denoted by the |
| 1271 | field userspace_addr, which must point at user addressable memory for |
| 1272 | the entire memory slot size. Any object may back this memory, including |
| 1273 | anonymous memory, ordinary files, and hugetlbfs. |
| 1274 | |
Marc Zyngier | 67ba354 | 2021-01-21 12:08:15 +0000 | [diff] [blame] | 1275 | On architectures that support a form of address tagging, userspace_addr must |
| 1276 | be an untagged address. |
| 1277 | |
Avi Kivity | 0f2d8f4 | 2010-03-25 12:16:48 +0200 | [diff] [blame] | 1278 | It is recommended that the lower 21 bits of guest_phys_addr and userspace_addr |
| 1279 | be identical. This allows large pages in the guest to be backed by large |
| 1280 | pages in the host. |
| 1281 | |
Takuya Yoshikawa | 75d61fb | 2013-01-30 19:40:41 +0900 | [diff] [blame] | 1282 | The flags field supports two flags: KVM_MEM_LOG_DIRTY_PAGES and |
| 1283 | KVM_MEM_READONLY. The former can be set to instruct KVM to keep track of |
| 1284 | writes to memory within the slot. See KVM_GET_DIRTY_LOG ioctl to know how to |
| 1285 | use it. The latter can be set, if KVM_CAP_READONLY_MEM capability allows it, |
| 1286 | to make a new slot read-only. In this case, writes to this memory will be |
| 1287 | posted to userspace as KVM_EXIT_MMIO exits. |
Avi Kivity | 0f2d8f4 | 2010-03-25 12:16:48 +0200 | [diff] [blame] | 1288 | |
Jan Kiszka | 7efd8fa | 2012-09-07 13:17:47 +0200 | [diff] [blame] | 1289 | When the KVM_CAP_SYNC_MMU capability is available, changes in the backing of |
| 1290 | the memory region are automatically reflected into the guest. For example, an |
| 1291 | mmap() that affects the region will be made visible immediately. Another |
| 1292 | example is madvise(MADV_DROP). |
Avi Kivity | 0f2d8f4 | 2010-03-25 12:16:48 +0200 | [diff] [blame] | 1293 | |
| 1294 | It is recommended to use this API instead of the KVM_SET_MEMORY_REGION ioctl. |
| 1295 | The KVM_SET_MEMORY_REGION does not allow fine grained control over memory |
| 1296 | allocation and is deprecated. |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 1297 | |
Jan Kiszka | 414fa98 | 2012-04-24 16:40:15 +0200 | [diff] [blame] | 1298 | |
Paul Bolle | 68ba697 | 2011-02-15 00:05:59 +0100 | [diff] [blame] | 1299 | 4.36 KVM_SET_TSS_ADDR |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1300 | --------------------- |
Avi Kivity | 8a5416d | 2010-03-25 12:27:30 +0200 | [diff] [blame] | 1301 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1302 | :Capability: KVM_CAP_SET_TSS_ADDR |
| 1303 | :Architectures: x86 |
| 1304 | :Type: vm ioctl |
| 1305 | :Parameters: unsigned long tss_address (in) |
| 1306 | :Returns: 0 on success, -1 on error |
Avi Kivity | 8a5416d | 2010-03-25 12:27:30 +0200 | [diff] [blame] | 1307 | |
| 1308 | This ioctl defines the physical address of a three-page region in the guest |
| 1309 | physical address space. The region must be within the first 4GB of the |
| 1310 | guest physical address space and must not conflict with any memory slot |
| 1311 | or any mmio address. The guest may malfunction if it accesses this memory |
| 1312 | region. |
| 1313 | |
| 1314 | This ioctl is required on Intel-based hosts. This is needed on Intel hardware |
| 1315 | because of a quirk in the virtualization implementation (see the internals |
| 1316 | documentation when it pops into existence). |
| 1317 | |
Jan Kiszka | 414fa98 | 2012-04-24 16:40:15 +0200 | [diff] [blame] | 1318 | |
Paul Bolle | 68ba697 | 2011-02-15 00:05:59 +0100 | [diff] [blame] | 1319 | 4.37 KVM_ENABLE_CAP |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1320 | ------------------- |
Alexander Graf | 71fbfd5 | 2010-03-24 21:48:29 +0100 | [diff] [blame] | 1321 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1322 | :Capability: KVM_CAP_ENABLE_CAP |
| 1323 | :Architectures: mips, ppc, s390 |
| 1324 | :Type: vcpu ioctl |
| 1325 | :Parameters: struct kvm_enable_cap (in) |
| 1326 | :Returns: 0 on success; -1 on error |
Paolo Bonzini | e5d83c7 | 2017-02-16 10:40:56 +0100 | [diff] [blame] | 1327 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1328 | :Capability: KVM_CAP_ENABLE_CAP_VM |
| 1329 | :Architectures: all |
Quentin Perret | d1fd90b | 2021-01-08 16:53:49 +0000 | [diff] [blame] | 1330 | :Type: vm ioctl |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1331 | :Parameters: struct kvm_enable_cap (in) |
| 1332 | :Returns: 0 on success; -1 on error |
Alexander Graf | 71fbfd5 | 2010-03-24 21:48:29 +0100 | [diff] [blame] | 1333 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1334 | .. note:: |
| 1335 | |
| 1336 | Not all extensions are enabled by default. Using this ioctl the application |
| 1337 | can enable an extension, making it available to the guest. |
Alexander Graf | 71fbfd5 | 2010-03-24 21:48:29 +0100 | [diff] [blame] | 1338 | |
| 1339 | On systems that do not support this ioctl, it always fails. On systems that |
| 1340 | do support it, it only works for extensions that are supported for enablement. |
| 1341 | |
| 1342 | To check if a capability can be enabled, the KVM_CHECK_EXTENSION ioctl should |
| 1343 | be used. |
| 1344 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1345 | :: |
| 1346 | |
| 1347 | struct kvm_enable_cap { |
Alexander Graf | 71fbfd5 | 2010-03-24 21:48:29 +0100 | [diff] [blame] | 1348 | /* in */ |
| 1349 | __u32 cap; |
| 1350 | |
| 1351 | The capability that is supposed to get enabled. |
| 1352 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1353 | :: |
| 1354 | |
Alexander Graf | 71fbfd5 | 2010-03-24 21:48:29 +0100 | [diff] [blame] | 1355 | __u32 flags; |
| 1356 | |
| 1357 | A bitfield indicating future enhancements. Has to be 0 for now. |
| 1358 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1359 | :: |
| 1360 | |
Alexander Graf | 71fbfd5 | 2010-03-24 21:48:29 +0100 | [diff] [blame] | 1361 | __u64 args[4]; |
| 1362 | |
| 1363 | Arguments for enabling a feature. If a feature needs initial values to |
| 1364 | function properly, this is the place to put them. |
| 1365 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1366 | :: |
| 1367 | |
Alexander Graf | 71fbfd5 | 2010-03-24 21:48:29 +0100 | [diff] [blame] | 1368 | __u8 pad[64]; |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1369 | }; |
Alexander Graf | 71fbfd5 | 2010-03-24 21:48:29 +0100 | [diff] [blame] | 1370 | |
Cornelia Huck | d938dc5 | 2013-10-23 18:26:34 +0200 | [diff] [blame] | 1371 | The vcpu ioctl should be used for vcpu-specific capabilities, the vm ioctl |
| 1372 | for vm-wide capabilities. |
Jan Kiszka | 414fa98 | 2012-04-24 16:40:15 +0200 | [diff] [blame] | 1373 | |
Paul Bolle | 68ba697 | 2011-02-15 00:05:59 +0100 | [diff] [blame] | 1374 | 4.38 KVM_GET_MP_STATE |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1375 | --------------------- |
Avi Kivity | b843f06 | 2010-04-25 15:51:46 +0300 | [diff] [blame] | 1376 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1377 | :Capability: KVM_CAP_MP_STATE |
| 1378 | :Architectures: x86, s390, arm, arm64 |
| 1379 | :Type: vcpu ioctl |
| 1380 | :Parameters: struct kvm_mp_state (out) |
| 1381 | :Returns: 0 on success; -1 on error |
Avi Kivity | b843f06 | 2010-04-25 15:51:46 +0300 | [diff] [blame] | 1382 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1383 | :: |
| 1384 | |
| 1385 | struct kvm_mp_state { |
Avi Kivity | b843f06 | 2010-04-25 15:51:46 +0300 | [diff] [blame] | 1386 | __u32 mp_state; |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1387 | }; |
Avi Kivity | b843f06 | 2010-04-25 15:51:46 +0300 | [diff] [blame] | 1388 | |
| 1389 | Returns the vcpu's current "multiprocessing state" (though also valid on |
| 1390 | uniprocessor guests). |
| 1391 | |
| 1392 | Possible values are: |
| 1393 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1394 | ========================== =============================================== |
| 1395 | KVM_MP_STATE_RUNNABLE the vcpu is currently running [x86,arm/arm64] |
| 1396 | KVM_MP_STATE_UNINITIALIZED the vcpu is an application processor (AP) |
Tiejun Chen | c32a427 | 2014-11-20 11:07:18 +0100 | [diff] [blame] | 1397 | which has not yet received an INIT signal [x86] |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1398 | KVM_MP_STATE_INIT_RECEIVED the vcpu has received an INIT signal, and is |
Tiejun Chen | c32a427 | 2014-11-20 11:07:18 +0100 | [diff] [blame] | 1399 | now ready for a SIPI [x86] |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1400 | KVM_MP_STATE_HALTED the vcpu has executed a HLT instruction and |
Tiejun Chen | c32a427 | 2014-11-20 11:07:18 +0100 | [diff] [blame] | 1401 | is waiting for an interrupt [x86] |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1402 | KVM_MP_STATE_SIPI_RECEIVED the vcpu has just received a SIPI (vector |
Tiejun Chen | c32a427 | 2014-11-20 11:07:18 +0100 | [diff] [blame] | 1403 | accessible via KVM_GET_VCPU_EVENTS) [x86] |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1404 | KVM_MP_STATE_STOPPED the vcpu is stopped [s390,arm/arm64] |
| 1405 | KVM_MP_STATE_CHECK_STOP the vcpu is in a special error state [s390] |
| 1406 | KVM_MP_STATE_OPERATING the vcpu is operating (running or halted) |
David Hildenbrand | 6352e4d | 2014-04-10 17:35:00 +0200 | [diff] [blame] | 1407 | [s390] |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1408 | KVM_MP_STATE_LOAD the vcpu is in a special load/startup state |
David Hildenbrand | 6352e4d | 2014-04-10 17:35:00 +0200 | [diff] [blame] | 1409 | [s390] |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1410 | ========================== =============================================== |
Avi Kivity | b843f06 | 2010-04-25 15:51:46 +0300 | [diff] [blame] | 1411 | |
Tiejun Chen | c32a427 | 2014-11-20 11:07:18 +0100 | [diff] [blame] | 1412 | On x86, this ioctl is only useful after KVM_CREATE_IRQCHIP. Without an |
David Hildenbrand | 0b4820d | 2014-05-12 16:05:13 +0200 | [diff] [blame] | 1413 | in-kernel irqchip, the multiprocessing state must be maintained by userspace on |
| 1414 | these architectures. |
Avi Kivity | b843f06 | 2010-04-25 15:51:46 +0300 | [diff] [blame] | 1415 | |
Alex Bennée | ecccf0c | 2015-03-13 17:02:52 +0000 | [diff] [blame] | 1416 | For arm/arm64: |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1417 | ^^^^^^^^^^^^^^ |
Alex Bennée | ecccf0c | 2015-03-13 17:02:52 +0000 | [diff] [blame] | 1418 | |
| 1419 | The only states that are valid are KVM_MP_STATE_STOPPED and |
| 1420 | KVM_MP_STATE_RUNNABLE which reflect if the vcpu is paused or not. |
Jan Kiszka | 414fa98 | 2012-04-24 16:40:15 +0200 | [diff] [blame] | 1421 | |
Paul Bolle | 68ba697 | 2011-02-15 00:05:59 +0100 | [diff] [blame] | 1422 | 4.39 KVM_SET_MP_STATE |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1423 | --------------------- |
Avi Kivity | b843f06 | 2010-04-25 15:51:46 +0300 | [diff] [blame] | 1424 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1425 | :Capability: KVM_CAP_MP_STATE |
| 1426 | :Architectures: x86, s390, arm, arm64 |
| 1427 | :Type: vcpu ioctl |
| 1428 | :Parameters: struct kvm_mp_state (in) |
| 1429 | :Returns: 0 on success; -1 on error |
Avi Kivity | b843f06 | 2010-04-25 15:51:46 +0300 | [diff] [blame] | 1430 | |
| 1431 | Sets the vcpu's current "multiprocessing state"; see KVM_GET_MP_STATE for |
| 1432 | arguments. |
| 1433 | |
Tiejun Chen | c32a427 | 2014-11-20 11:07:18 +0100 | [diff] [blame] | 1434 | On x86, this ioctl is only useful after KVM_CREATE_IRQCHIP. Without an |
David Hildenbrand | 0b4820d | 2014-05-12 16:05:13 +0200 | [diff] [blame] | 1435 | in-kernel irqchip, the multiprocessing state must be maintained by userspace on |
| 1436 | these architectures. |
Avi Kivity | b843f06 | 2010-04-25 15:51:46 +0300 | [diff] [blame] | 1437 | |
Alex Bennée | ecccf0c | 2015-03-13 17:02:52 +0000 | [diff] [blame] | 1438 | For arm/arm64: |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1439 | ^^^^^^^^^^^^^^ |
Alex Bennée | ecccf0c | 2015-03-13 17:02:52 +0000 | [diff] [blame] | 1440 | |
| 1441 | The only states that are valid are KVM_MP_STATE_STOPPED and |
| 1442 | KVM_MP_STATE_RUNNABLE which reflect if the vcpu should be paused or not. |
Jan Kiszka | 414fa98 | 2012-04-24 16:40:15 +0200 | [diff] [blame] | 1443 | |
Paul Bolle | 68ba697 | 2011-02-15 00:05:59 +0100 | [diff] [blame] | 1444 | 4.40 KVM_SET_IDENTITY_MAP_ADDR |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1445 | ------------------------------ |
Avi Kivity | 47dbb84 | 2010-04-29 12:08:56 +0300 | [diff] [blame] | 1446 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1447 | :Capability: KVM_CAP_SET_IDENTITY_MAP_ADDR |
| 1448 | :Architectures: x86 |
| 1449 | :Type: vm ioctl |
| 1450 | :Parameters: unsigned long identity (in) |
| 1451 | :Returns: 0 on success, -1 on error |
Avi Kivity | 47dbb84 | 2010-04-29 12:08:56 +0300 | [diff] [blame] | 1452 | |
| 1453 | This ioctl defines the physical address of a one-page region in the guest |
| 1454 | physical address space. The region must be within the first 4GB of the |
| 1455 | guest physical address space and must not conflict with any memory slot |
| 1456 | or any mmio address. The guest may malfunction if it accesses this memory |
| 1457 | region. |
| 1458 | |
David Hildenbrand | 726b99c | 2017-08-24 20:51:35 +0200 | [diff] [blame] | 1459 | Setting the address to 0 will result in resetting the address to its default |
| 1460 | (0xfffbc000). |
| 1461 | |
Avi Kivity | 47dbb84 | 2010-04-29 12:08:56 +0300 | [diff] [blame] | 1462 | This ioctl is required on Intel-based hosts. This is needed on Intel hardware |
| 1463 | because of a quirk in the virtualization implementation (see the internals |
| 1464 | documentation when it pops into existence). |
| 1465 | |
David Hildenbrand | 1af1ac9 | 2017-08-24 20:51:36 +0200 | [diff] [blame] | 1466 | Fails if any VCPU has already been created. |
Jan Kiszka | 414fa98 | 2012-04-24 16:40:15 +0200 | [diff] [blame] | 1467 | |
Paul Bolle | 68ba697 | 2011-02-15 00:05:59 +0100 | [diff] [blame] | 1468 | 4.41 KVM_SET_BOOT_CPU_ID |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1469 | ------------------------ |
Avi Kivity | 57bc24c | 2010-04-29 12:12:57 +0300 | [diff] [blame] | 1470 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1471 | :Capability: KVM_CAP_SET_BOOT_CPU_ID |
| 1472 | :Architectures: x86 |
| 1473 | :Type: vm ioctl |
| 1474 | :Parameters: unsigned long vcpu_id |
| 1475 | :Returns: 0 on success, -1 on error |
Avi Kivity | 57bc24c | 2010-04-29 12:12:57 +0300 | [diff] [blame] | 1476 | |
| 1477 | Define which vcpu is the Bootstrap Processor (BSP). Values are the same |
| 1478 | as the vcpu id in KVM_CREATE_VCPU. If this ioctl is not called, the default |
| 1479 | is vcpu 0. |
| 1480 | |
Jan Kiszka | 414fa98 | 2012-04-24 16:40:15 +0200 | [diff] [blame] | 1481 | |
Paul Bolle | 68ba697 | 2011-02-15 00:05:59 +0100 | [diff] [blame] | 1482 | 4.42 KVM_GET_XSAVE |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1483 | ------------------ |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 1484 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1485 | :Capability: KVM_CAP_XSAVE |
| 1486 | :Architectures: x86 |
| 1487 | :Type: vcpu ioctl |
| 1488 | :Parameters: struct kvm_xsave (out) |
| 1489 | :Returns: 0 on success, -1 on error |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 1490 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1491 | |
| 1492 | :: |
| 1493 | |
| 1494 | struct kvm_xsave { |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 1495 | __u32 region[1024]; |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1496 | }; |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 1497 | |
| 1498 | This ioctl would copy current vcpu's xsave struct to the userspace. |
| 1499 | |
Jan Kiszka | 414fa98 | 2012-04-24 16:40:15 +0200 | [diff] [blame] | 1500 | |
Paul Bolle | 68ba697 | 2011-02-15 00:05:59 +0100 | [diff] [blame] | 1501 | 4.43 KVM_SET_XSAVE |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1502 | ------------------ |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 1503 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1504 | :Capability: KVM_CAP_XSAVE |
| 1505 | :Architectures: x86 |
| 1506 | :Type: vcpu ioctl |
| 1507 | :Parameters: struct kvm_xsave (in) |
| 1508 | :Returns: 0 on success, -1 on error |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 1509 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1510 | :: |
| 1511 | |
| 1512 | |
| 1513 | struct kvm_xsave { |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 1514 | __u32 region[1024]; |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1515 | }; |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 1516 | |
| 1517 | This ioctl would copy userspace's xsave struct to the kernel. |
| 1518 | |
Jan Kiszka | 414fa98 | 2012-04-24 16:40:15 +0200 | [diff] [blame] | 1519 | |
Paul Bolle | 68ba697 | 2011-02-15 00:05:59 +0100 | [diff] [blame] | 1520 | 4.44 KVM_GET_XCRS |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1521 | ----------------- |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 1522 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1523 | :Capability: KVM_CAP_XCRS |
| 1524 | :Architectures: x86 |
| 1525 | :Type: vcpu ioctl |
| 1526 | :Parameters: struct kvm_xcrs (out) |
| 1527 | :Returns: 0 on success, -1 on error |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 1528 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1529 | :: |
| 1530 | |
| 1531 | struct kvm_xcr { |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 1532 | __u32 xcr; |
| 1533 | __u32 reserved; |
| 1534 | __u64 value; |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1535 | }; |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 1536 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1537 | struct kvm_xcrs { |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 1538 | __u32 nr_xcrs; |
| 1539 | __u32 flags; |
| 1540 | struct kvm_xcr xcrs[KVM_MAX_XCRS]; |
| 1541 | __u64 padding[16]; |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1542 | }; |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 1543 | |
| 1544 | This ioctl would copy current vcpu's xcrs to the userspace. |
| 1545 | |
Jan Kiszka | 414fa98 | 2012-04-24 16:40:15 +0200 | [diff] [blame] | 1546 | |
Paul Bolle | 68ba697 | 2011-02-15 00:05:59 +0100 | [diff] [blame] | 1547 | 4.45 KVM_SET_XCRS |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1548 | ----------------- |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 1549 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1550 | :Capability: KVM_CAP_XCRS |
| 1551 | :Architectures: x86 |
| 1552 | :Type: vcpu ioctl |
| 1553 | :Parameters: struct kvm_xcrs (in) |
| 1554 | :Returns: 0 on success, -1 on error |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 1555 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1556 | :: |
| 1557 | |
| 1558 | struct kvm_xcr { |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 1559 | __u32 xcr; |
| 1560 | __u32 reserved; |
| 1561 | __u64 value; |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1562 | }; |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 1563 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1564 | struct kvm_xcrs { |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 1565 | __u32 nr_xcrs; |
| 1566 | __u32 flags; |
| 1567 | struct kvm_xcr xcrs[KVM_MAX_XCRS]; |
| 1568 | __u64 padding[16]; |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1569 | }; |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 1570 | |
| 1571 | This ioctl would set vcpu's xcr to the value userspace specified. |
| 1572 | |
Jan Kiszka | 414fa98 | 2012-04-24 16:40:15 +0200 | [diff] [blame] | 1573 | |
Paul Bolle | 68ba697 | 2011-02-15 00:05:59 +0100 | [diff] [blame] | 1574 | 4.46 KVM_GET_SUPPORTED_CPUID |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1575 | ---------------------------- |
Avi Kivity | d153513 | 2010-07-14 09:45:21 +0300 | [diff] [blame] | 1576 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1577 | :Capability: KVM_CAP_EXT_CPUID |
| 1578 | :Architectures: x86 |
| 1579 | :Type: system ioctl |
| 1580 | :Parameters: struct kvm_cpuid2 (in/out) |
| 1581 | :Returns: 0 on success, -1 on error |
Avi Kivity | d153513 | 2010-07-14 09:45:21 +0300 | [diff] [blame] | 1582 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1583 | :: |
| 1584 | |
| 1585 | struct kvm_cpuid2 { |
Avi Kivity | d153513 | 2010-07-14 09:45:21 +0300 | [diff] [blame] | 1586 | __u32 nent; |
| 1587 | __u32 padding; |
| 1588 | struct kvm_cpuid_entry2 entries[0]; |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1589 | }; |
Avi Kivity | d153513 | 2010-07-14 09:45:21 +0300 | [diff] [blame] | 1590 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1591 | #define KVM_CPUID_FLAG_SIGNIFCANT_INDEX BIT(0) |
Sean Christopherson | 7ff6c03 | 2020-03-02 15:56:51 -0800 | [diff] [blame] | 1592 | #define KVM_CPUID_FLAG_STATEFUL_FUNC BIT(1) /* deprecated */ |
| 1593 | #define KVM_CPUID_FLAG_STATE_READ_NEXT BIT(2) /* deprecated */ |
Avi Kivity | d153513 | 2010-07-14 09:45:21 +0300 | [diff] [blame] | 1594 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1595 | struct kvm_cpuid_entry2 { |
Avi Kivity | d153513 | 2010-07-14 09:45:21 +0300 | [diff] [blame] | 1596 | __u32 function; |
| 1597 | __u32 index; |
| 1598 | __u32 flags; |
| 1599 | __u32 eax; |
| 1600 | __u32 ebx; |
| 1601 | __u32 ecx; |
| 1602 | __u32 edx; |
| 1603 | __u32 padding[3]; |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1604 | }; |
Avi Kivity | d153513 | 2010-07-14 09:45:21 +0300 | [diff] [blame] | 1605 | |
Jim Mattson | df9cb9c | 2018-05-24 11:59:54 -0700 | [diff] [blame] | 1606 | This ioctl returns x86 cpuid features which are supported by both the |
| 1607 | hardware and kvm in its default configuration. Userspace can use the |
| 1608 | information returned by this ioctl to construct cpuid information (for |
| 1609 | KVM_SET_CPUID2) that is consistent with hardware, kernel, and |
| 1610 | userspace capabilities, and with user requirements (for example, the |
| 1611 | user may wish to constrain cpuid to emulate older hardware, or for |
| 1612 | feature consistency across a cluster). |
| 1613 | |
| 1614 | Note that certain capabilities, such as KVM_CAP_X86_DISABLE_EXITS, may |
| 1615 | expose cpuid features (e.g. MONITOR) which are not supported by kvm in |
| 1616 | its default configuration. If userspace enables such capabilities, it |
| 1617 | is responsible for modifying the results of this ioctl appropriately. |
Avi Kivity | d153513 | 2010-07-14 09:45:21 +0300 | [diff] [blame] | 1618 | |
| 1619 | Userspace invokes KVM_GET_SUPPORTED_CPUID by passing a kvm_cpuid2 structure |
| 1620 | with the 'nent' field indicating the number of entries in the variable-size |
| 1621 | array 'entries'. If the number of entries is too low to describe the cpu |
| 1622 | capabilities, an error (E2BIG) is returned. If the number is too high, |
| 1623 | the 'nent' field is adjusted and an error (ENOMEM) is returned. If the |
| 1624 | number is just right, the 'nent' field is adjusted to the number of valid |
| 1625 | entries in the 'entries' array, which is then filled. |
| 1626 | |
| 1627 | The entries returned are the host cpuid as returned by the cpuid instruction, |
Avi Kivity | c39cbd2 | 2010-09-12 16:39:11 +0200 | [diff] [blame] | 1628 | with unknown or unsupported features masked out. Some features (for example, |
| 1629 | x2apic), may not be present in the host cpu, but are exposed by kvm if it can |
| 1630 | emulate them efficiently. The fields in each entry are defined as follows: |
Avi Kivity | d153513 | 2010-07-14 09:45:21 +0300 | [diff] [blame] | 1631 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1632 | function: |
| 1633 | the eax value used to obtain the entry |
| 1634 | |
| 1635 | index: |
| 1636 | the ecx value used to obtain the entry (for entries that are |
Avi Kivity | d153513 | 2010-07-14 09:45:21 +0300 | [diff] [blame] | 1637 | affected by ecx) |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1638 | |
| 1639 | flags: |
| 1640 | an OR of zero or more of the following: |
| 1641 | |
Avi Kivity | d153513 | 2010-07-14 09:45:21 +0300 | [diff] [blame] | 1642 | KVM_CPUID_FLAG_SIGNIFCANT_INDEX: |
| 1643 | if the index field is valid |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1644 | |
| 1645 | eax, ebx, ecx, edx: |
| 1646 | the values returned by the cpuid instruction for |
Avi Kivity | d153513 | 2010-07-14 09:45:21 +0300 | [diff] [blame] | 1647 | this function/index combination |
| 1648 | |
Jan Kiszka | 4d25a066 | 2011-12-21 12:28:29 +0100 | [diff] [blame] | 1649 | The TSC deadline timer feature (CPUID leaf 1, ecx[24]) is always returned |
| 1650 | as false, since the feature depends on KVM_CREATE_IRQCHIP for local APIC |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1651 | support. Instead it is reported via:: |
Jan Kiszka | 4d25a066 | 2011-12-21 12:28:29 +0100 | [diff] [blame] | 1652 | |
| 1653 | ioctl(KVM_CHECK_EXTENSION, KVM_CAP_TSC_DEADLINE_TIMER) |
| 1654 | |
| 1655 | if that returns true and you use KVM_CREATE_IRQCHIP, or if you emulate the |
| 1656 | feature in userspace, then you can enable the feature for KVM_SET_CPUID2. |
| 1657 | |
Jan Kiszka | 414fa98 | 2012-04-24 16:40:15 +0200 | [diff] [blame] | 1658 | |
Paul Bolle | 68ba697 | 2011-02-15 00:05:59 +0100 | [diff] [blame] | 1659 | 4.47 KVM_PPC_GET_PVINFO |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1660 | ----------------------- |
Alexander Graf | 15711e9 | 2010-07-29 14:48:08 +0200 | [diff] [blame] | 1661 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1662 | :Capability: KVM_CAP_PPC_GET_PVINFO |
| 1663 | :Architectures: ppc |
| 1664 | :Type: vm ioctl |
| 1665 | :Parameters: struct kvm_ppc_pvinfo (out) |
| 1666 | :Returns: 0 on success, !0 on error |
Alexander Graf | 15711e9 | 2010-07-29 14:48:08 +0200 | [diff] [blame] | 1667 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1668 | :: |
| 1669 | |
| 1670 | struct kvm_ppc_pvinfo { |
Alexander Graf | 15711e9 | 2010-07-29 14:48:08 +0200 | [diff] [blame] | 1671 | __u32 flags; |
| 1672 | __u32 hcall[4]; |
| 1673 | __u8 pad[108]; |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1674 | }; |
Alexander Graf | 15711e9 | 2010-07-29 14:48:08 +0200 | [diff] [blame] | 1675 | |
| 1676 | This ioctl fetches PV specific information that need to be passed to the guest |
| 1677 | using the device tree or other means from vm context. |
| 1678 | |
Liu Yu-B13201 | 9202e07 | 2012-07-03 05:48:52 +0000 | [diff] [blame] | 1679 | The hcall array defines 4 instructions that make up a hypercall. |
Alexander Graf | 15711e9 | 2010-07-29 14:48:08 +0200 | [diff] [blame] | 1680 | |
| 1681 | If any additional field gets added to this structure later on, a bit for that |
| 1682 | additional piece of information will be set in the flags bitmap. |
| 1683 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1684 | The flags bitmap is defined as:: |
Liu Yu-B13201 | 9202e07 | 2012-07-03 05:48:52 +0000 | [diff] [blame] | 1685 | |
| 1686 | /* the host supports the ePAPR idle hcall |
| 1687 | #define KVM_PPC_PVINFO_FLAGS_EV_IDLE (1<<0) |
Jan Kiszka | 414fa98 | 2012-04-24 16:40:15 +0200 | [diff] [blame] | 1688 | |
Paul Bolle | 68ba697 | 2011-02-15 00:05:59 +0100 | [diff] [blame] | 1689 | 4.52 KVM_SET_GSI_ROUTING |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1690 | ------------------------ |
Jan Kiszka | 49f4817 | 2010-11-16 22:30:07 +0100 | [diff] [blame] | 1691 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1692 | :Capability: KVM_CAP_IRQ_ROUTING |
| 1693 | :Architectures: x86 s390 arm arm64 |
| 1694 | :Type: vm ioctl |
| 1695 | :Parameters: struct kvm_irq_routing (in) |
| 1696 | :Returns: 0 on success, -1 on error |
Jan Kiszka | 49f4817 | 2010-11-16 22:30:07 +0100 | [diff] [blame] | 1697 | |
| 1698 | Sets the GSI routing table entries, overwriting any previously set entries. |
| 1699 | |
Eric Auger | 180ae7b | 2016-07-22 16:20:41 +0000 | [diff] [blame] | 1700 | On arm/arm64, GSI routing has the following limitation: |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1701 | |
Eric Auger | 180ae7b | 2016-07-22 16:20:41 +0000 | [diff] [blame] | 1702 | - GSI routing does not apply to KVM_IRQ_LINE but only to KVM_IRQFD. |
| 1703 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1704 | :: |
| 1705 | |
| 1706 | struct kvm_irq_routing { |
Jan Kiszka | 49f4817 | 2010-11-16 22:30:07 +0100 | [diff] [blame] | 1707 | __u32 nr; |
| 1708 | __u32 flags; |
| 1709 | struct kvm_irq_routing_entry entries[0]; |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1710 | }; |
Jan Kiszka | 49f4817 | 2010-11-16 22:30:07 +0100 | [diff] [blame] | 1711 | |
| 1712 | No flags are specified so far, the corresponding field must be set to zero. |
| 1713 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1714 | :: |
| 1715 | |
| 1716 | struct kvm_irq_routing_entry { |
Jan Kiszka | 49f4817 | 2010-11-16 22:30:07 +0100 | [diff] [blame] | 1717 | __u32 gsi; |
| 1718 | __u32 type; |
| 1719 | __u32 flags; |
| 1720 | __u32 pad; |
| 1721 | union { |
| 1722 | struct kvm_irq_routing_irqchip irqchip; |
| 1723 | struct kvm_irq_routing_msi msi; |
Cornelia Huck | 8422359 | 2013-07-15 13:36:01 +0200 | [diff] [blame] | 1724 | struct kvm_irq_routing_s390_adapter adapter; |
Andrey Smetanin | 5c919412 | 2015-11-10 15:36:34 +0300 | [diff] [blame] | 1725 | struct kvm_irq_routing_hv_sint hv_sint; |
Jan Kiszka | 49f4817 | 2010-11-16 22:30:07 +0100 | [diff] [blame] | 1726 | __u32 pad[8]; |
| 1727 | } u; |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1728 | }; |
Jan Kiszka | 49f4817 | 2010-11-16 22:30:07 +0100 | [diff] [blame] | 1729 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1730 | /* gsi routing entry types */ |
| 1731 | #define KVM_IRQ_ROUTING_IRQCHIP 1 |
| 1732 | #define KVM_IRQ_ROUTING_MSI 2 |
| 1733 | #define KVM_IRQ_ROUTING_S390_ADAPTER 3 |
| 1734 | #define KVM_IRQ_ROUTING_HV_SINT 4 |
Jan Kiszka | 49f4817 | 2010-11-16 22:30:07 +0100 | [diff] [blame] | 1735 | |
Eric Auger | 76a10b8 | 2016-07-22 16:20:37 +0000 | [diff] [blame] | 1736 | flags: |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1737 | |
Paolo Bonzini | 6f49b2f | 2016-08-04 13:59:56 +0200 | [diff] [blame] | 1738 | - KVM_MSI_VALID_DEVID: used along with KVM_IRQ_ROUTING_MSI routing entry |
| 1739 | type, specifies that the devid field contains a valid value. The per-VM |
| 1740 | KVM_CAP_MSI_DEVID capability advertises the requirement to provide |
| 1741 | the device ID. If this capability is not available, userspace should |
| 1742 | never set the KVM_MSI_VALID_DEVID flag as the ioctl might fail. |
Eric Auger | 76a10b8 | 2016-07-22 16:20:37 +0000 | [diff] [blame] | 1743 | - zero otherwise |
Jan Kiszka | 49f4817 | 2010-11-16 22:30:07 +0100 | [diff] [blame] | 1744 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1745 | :: |
| 1746 | |
| 1747 | struct kvm_irq_routing_irqchip { |
Jan Kiszka | 49f4817 | 2010-11-16 22:30:07 +0100 | [diff] [blame] | 1748 | __u32 irqchip; |
| 1749 | __u32 pin; |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1750 | }; |
Jan Kiszka | 49f4817 | 2010-11-16 22:30:07 +0100 | [diff] [blame] | 1751 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1752 | struct kvm_irq_routing_msi { |
Jan Kiszka | 49f4817 | 2010-11-16 22:30:07 +0100 | [diff] [blame] | 1753 | __u32 address_lo; |
| 1754 | __u32 address_hi; |
| 1755 | __u32 data; |
Eric Auger | 76a10b8 | 2016-07-22 16:20:37 +0000 | [diff] [blame] | 1756 | union { |
| 1757 | __u32 pad; |
| 1758 | __u32 devid; |
| 1759 | }; |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1760 | }; |
Jan Kiszka | 49f4817 | 2010-11-16 22:30:07 +0100 | [diff] [blame] | 1761 | |
Paolo Bonzini | 6f49b2f | 2016-08-04 13:59:56 +0200 | [diff] [blame] | 1762 | If KVM_MSI_VALID_DEVID is set, devid contains a unique device identifier |
| 1763 | for the device that wrote the MSI message. For PCI, this is usually a |
| 1764 | BFD identifier in the lower 16 bits. |
Eric Auger | 76a10b8 | 2016-07-22 16:20:37 +0000 | [diff] [blame] | 1765 | |
Radim Krčmář | 37131313 | 2016-07-12 22:09:27 +0200 | [diff] [blame] | 1766 | On x86, address_hi is ignored unless the KVM_X2APIC_API_USE_32BIT_IDS |
| 1767 | feature of KVM_CAP_X2APIC_API capability is enabled. If it is enabled, |
| 1768 | address_hi bits 31-8 provide bits 31-8 of the destination id. Bits 7-0 of |
| 1769 | address_hi must be zero. |
| 1770 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1771 | :: |
| 1772 | |
| 1773 | struct kvm_irq_routing_s390_adapter { |
Cornelia Huck | 8422359 | 2013-07-15 13:36:01 +0200 | [diff] [blame] | 1774 | __u64 ind_addr; |
| 1775 | __u64 summary_addr; |
| 1776 | __u64 ind_offset; |
| 1777 | __u32 summary_offset; |
| 1778 | __u32 adapter_id; |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1779 | }; |
Cornelia Huck | 8422359 | 2013-07-15 13:36:01 +0200 | [diff] [blame] | 1780 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1781 | struct kvm_irq_routing_hv_sint { |
Andrey Smetanin | 5c919412 | 2015-11-10 15:36:34 +0300 | [diff] [blame] | 1782 | __u32 vcpu; |
| 1783 | __u32 sint; |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1784 | }; |
Jan Kiszka | 414fa98 | 2012-04-24 16:40:15 +0200 | [diff] [blame] | 1785 | |
Jan Kiszka | 414fa98 | 2012-04-24 16:40:15 +0200 | [diff] [blame] | 1786 | |
| 1787 | 4.55 KVM_SET_TSC_KHZ |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1788 | -------------------- |
Joerg Roedel | 92a1f12 | 2011-03-25 09:44:51 +0100 | [diff] [blame] | 1789 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1790 | :Capability: KVM_CAP_TSC_CONTROL |
| 1791 | :Architectures: x86 |
| 1792 | :Type: vcpu ioctl |
| 1793 | :Parameters: virtual tsc_khz |
| 1794 | :Returns: 0 on success, -1 on error |
Joerg Roedel | 92a1f12 | 2011-03-25 09:44:51 +0100 | [diff] [blame] | 1795 | |
| 1796 | Specifies the tsc frequency for the virtual machine. The unit of the |
| 1797 | frequency is KHz. |
| 1798 | |
Jan Kiszka | 414fa98 | 2012-04-24 16:40:15 +0200 | [diff] [blame] | 1799 | |
| 1800 | 4.56 KVM_GET_TSC_KHZ |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1801 | -------------------- |
Joerg Roedel | 92a1f12 | 2011-03-25 09:44:51 +0100 | [diff] [blame] | 1802 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1803 | :Capability: KVM_CAP_GET_TSC_KHZ |
| 1804 | :Architectures: x86 |
| 1805 | :Type: vcpu ioctl |
| 1806 | :Parameters: none |
| 1807 | :Returns: virtual tsc-khz on success, negative value on error |
Joerg Roedel | 92a1f12 | 2011-03-25 09:44:51 +0100 | [diff] [blame] | 1808 | |
| 1809 | Returns the tsc frequency of the guest. The unit of the return value is |
| 1810 | KHz. If the host has unstable tsc this ioctl returns -EIO instead as an |
| 1811 | error. |
| 1812 | |
Jan Kiszka | 414fa98 | 2012-04-24 16:40:15 +0200 | [diff] [blame] | 1813 | |
| 1814 | 4.57 KVM_GET_LAPIC |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1815 | ------------------ |
Avi Kivity | e767793 | 2011-05-11 08:30:51 -0400 | [diff] [blame] | 1816 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1817 | :Capability: KVM_CAP_IRQCHIP |
| 1818 | :Architectures: x86 |
| 1819 | :Type: vcpu ioctl |
| 1820 | :Parameters: struct kvm_lapic_state (out) |
| 1821 | :Returns: 0 on success, -1 on error |
Avi Kivity | e767793 | 2011-05-11 08:30:51 -0400 | [diff] [blame] | 1822 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1823 | :: |
| 1824 | |
| 1825 | #define KVM_APIC_REG_SIZE 0x400 |
| 1826 | struct kvm_lapic_state { |
Avi Kivity | e767793 | 2011-05-11 08:30:51 -0400 | [diff] [blame] | 1827 | char regs[KVM_APIC_REG_SIZE]; |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1828 | }; |
Avi Kivity | e767793 | 2011-05-11 08:30:51 -0400 | [diff] [blame] | 1829 | |
| 1830 | Reads the Local APIC registers and copies them into the input argument. The |
| 1831 | data format and layout are the same as documented in the architecture manual. |
| 1832 | |
Radim Krčmář | 37131313 | 2016-07-12 22:09:27 +0200 | [diff] [blame] | 1833 | If KVM_X2APIC_API_USE_32BIT_IDS feature of KVM_CAP_X2APIC_API is |
| 1834 | enabled, then the format of APIC_ID register depends on the APIC mode |
| 1835 | (reported by MSR_IA32_APICBASE) of its VCPU. x2APIC stores APIC ID in |
| 1836 | the APIC_ID register (bytes 32-35). xAPIC only allows an 8-bit APIC ID |
| 1837 | which is stored in bits 31-24 of the APIC register, or equivalently in |
| 1838 | byte 35 of struct kvm_lapic_state's regs field. KVM_GET_LAPIC must then |
| 1839 | be called after MSR_IA32_APICBASE has been set with KVM_SET_MSR. |
| 1840 | |
| 1841 | If KVM_X2APIC_API_USE_32BIT_IDS feature is disabled, struct kvm_lapic_state |
| 1842 | always uses xAPIC format. |
| 1843 | |
Jan Kiszka | 414fa98 | 2012-04-24 16:40:15 +0200 | [diff] [blame] | 1844 | |
| 1845 | 4.58 KVM_SET_LAPIC |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1846 | ------------------ |
Avi Kivity | e767793 | 2011-05-11 08:30:51 -0400 | [diff] [blame] | 1847 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1848 | :Capability: KVM_CAP_IRQCHIP |
| 1849 | :Architectures: x86 |
| 1850 | :Type: vcpu ioctl |
| 1851 | :Parameters: struct kvm_lapic_state (in) |
| 1852 | :Returns: 0 on success, -1 on error |
Avi Kivity | e767793 | 2011-05-11 08:30:51 -0400 | [diff] [blame] | 1853 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1854 | :: |
| 1855 | |
| 1856 | #define KVM_APIC_REG_SIZE 0x400 |
| 1857 | struct kvm_lapic_state { |
Avi Kivity | e767793 | 2011-05-11 08:30:51 -0400 | [diff] [blame] | 1858 | char regs[KVM_APIC_REG_SIZE]; |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1859 | }; |
Avi Kivity | e767793 | 2011-05-11 08:30:51 -0400 | [diff] [blame] | 1860 | |
Masanari Iida | df5cbb2 | 2014-03-21 10:04:30 +0900 | [diff] [blame] | 1861 | Copies the input argument into the Local APIC registers. The data format |
Avi Kivity | e767793 | 2011-05-11 08:30:51 -0400 | [diff] [blame] | 1862 | and layout are the same as documented in the architecture manual. |
| 1863 | |
Radim Krčmář | 37131313 | 2016-07-12 22:09:27 +0200 | [diff] [blame] | 1864 | The format of the APIC ID register (bytes 32-35 of struct kvm_lapic_state's |
| 1865 | regs field) depends on the state of the KVM_CAP_X2APIC_API capability. |
| 1866 | See the note in KVM_GET_LAPIC. |
| 1867 | |
Jan Kiszka | 414fa98 | 2012-04-24 16:40:15 +0200 | [diff] [blame] | 1868 | |
| 1869 | 4.59 KVM_IOEVENTFD |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1870 | ------------------ |
Sasha Levin | 55399a0 | 2011-05-28 14:12:30 +0300 | [diff] [blame] | 1871 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1872 | :Capability: KVM_CAP_IOEVENTFD |
| 1873 | :Architectures: all |
| 1874 | :Type: vm ioctl |
| 1875 | :Parameters: struct kvm_ioeventfd (in) |
| 1876 | :Returns: 0 on success, !0 on error |
Sasha Levin | 55399a0 | 2011-05-28 14:12:30 +0300 | [diff] [blame] | 1877 | |
| 1878 | This ioctl attaches or detaches an ioeventfd to a legal pio/mmio address |
| 1879 | within the guest. A guest write in the registered address will signal the |
| 1880 | provided event instead of triggering an exit. |
| 1881 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1882 | :: |
| 1883 | |
| 1884 | struct kvm_ioeventfd { |
Sasha Levin | 55399a0 | 2011-05-28 14:12:30 +0300 | [diff] [blame] | 1885 | __u64 datamatch; |
| 1886 | __u64 addr; /* legal pio/mmio address */ |
Jason Wang | e9ea506 | 2015-09-15 14:41:59 +0800 | [diff] [blame] | 1887 | __u32 len; /* 0, 1, 2, 4, or 8 bytes */ |
Sasha Levin | 55399a0 | 2011-05-28 14:12:30 +0300 | [diff] [blame] | 1888 | __s32 fd; |
| 1889 | __u32 flags; |
| 1890 | __u8 pad[36]; |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1891 | }; |
Sasha Levin | 55399a0 | 2011-05-28 14:12:30 +0300 | [diff] [blame] | 1892 | |
Cornelia Huck | 2b83451 | 2013-02-28 12:33:20 +0100 | [diff] [blame] | 1893 | For the special case of virtio-ccw devices on s390, the ioevent is matched |
| 1894 | to a subchannel/virtqueue tuple instead. |
| 1895 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1896 | The following flags are defined:: |
Sasha Levin | 55399a0 | 2011-05-28 14:12:30 +0300 | [diff] [blame] | 1897 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1898 | #define KVM_IOEVENTFD_FLAG_DATAMATCH (1 << kvm_ioeventfd_flag_nr_datamatch) |
| 1899 | #define KVM_IOEVENTFD_FLAG_PIO (1 << kvm_ioeventfd_flag_nr_pio) |
| 1900 | #define KVM_IOEVENTFD_FLAG_DEASSIGN (1 << kvm_ioeventfd_flag_nr_deassign) |
| 1901 | #define KVM_IOEVENTFD_FLAG_VIRTIO_CCW_NOTIFY \ |
Cornelia Huck | 2b83451 | 2013-02-28 12:33:20 +0100 | [diff] [blame] | 1902 | (1 << kvm_ioeventfd_flag_nr_virtio_ccw_notify) |
Sasha Levin | 55399a0 | 2011-05-28 14:12:30 +0300 | [diff] [blame] | 1903 | |
| 1904 | If datamatch flag is set, the event will be signaled only if the written value |
| 1905 | to the registered address is equal to datamatch in struct kvm_ioeventfd. |
| 1906 | |
Cornelia Huck | 2b83451 | 2013-02-28 12:33:20 +0100 | [diff] [blame] | 1907 | For virtio-ccw devices, addr contains the subchannel id and datamatch the |
| 1908 | virtqueue index. |
| 1909 | |
Jason Wang | e9ea506 | 2015-09-15 14:41:59 +0800 | [diff] [blame] | 1910 | With KVM_CAP_IOEVENTFD_ANY_LENGTH, a zero length ioeventfd is allowed, and |
| 1911 | the kernel will ignore the length of guest write and may get a faster vmexit. |
| 1912 | The speedup may only apply to specific architectures, but the ioeventfd will |
| 1913 | work anyway. |
Jan Kiszka | 414fa98 | 2012-04-24 16:40:15 +0200 | [diff] [blame] | 1914 | |
| 1915 | 4.60 KVM_DIRTY_TLB |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1916 | ------------------ |
Scott Wood | dc83b8b | 2011-08-18 15:25:21 -0500 | [diff] [blame] | 1917 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1918 | :Capability: KVM_CAP_SW_TLB |
| 1919 | :Architectures: ppc |
| 1920 | :Type: vcpu ioctl |
| 1921 | :Parameters: struct kvm_dirty_tlb (in) |
| 1922 | :Returns: 0 on success, -1 on error |
Scott Wood | dc83b8b | 2011-08-18 15:25:21 -0500 | [diff] [blame] | 1923 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1924 | :: |
| 1925 | |
| 1926 | struct kvm_dirty_tlb { |
Scott Wood | dc83b8b | 2011-08-18 15:25:21 -0500 | [diff] [blame] | 1927 | __u64 bitmap; |
| 1928 | __u32 num_dirty; |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1929 | }; |
Scott Wood | dc83b8b | 2011-08-18 15:25:21 -0500 | [diff] [blame] | 1930 | |
| 1931 | This must be called whenever userspace has changed an entry in the shared |
| 1932 | TLB, prior to calling KVM_RUN on the associated vcpu. |
| 1933 | |
| 1934 | The "bitmap" field is the userspace address of an array. This array |
| 1935 | consists of a number of bits, equal to the total number of TLB entries as |
| 1936 | determined by the last successful call to KVM_CONFIG_TLB, rounded up to the |
| 1937 | nearest multiple of 64. |
| 1938 | |
| 1939 | Each bit corresponds to one TLB entry, ordered the same as in the shared TLB |
| 1940 | array. |
| 1941 | |
| 1942 | The array is little-endian: the bit 0 is the least significant bit of the |
| 1943 | first byte, bit 8 is the least significant bit of the second byte, etc. |
| 1944 | This avoids any complications with differing word sizes. |
| 1945 | |
| 1946 | The "num_dirty" field is a performance hint for KVM to determine whether it |
| 1947 | should skip processing the bitmap and just invalidate everything. It must |
| 1948 | be set to the number of set bits in the bitmap. |
| 1949 | |
Jan Kiszka | 414fa98 | 2012-04-24 16:40:15 +0200 | [diff] [blame] | 1950 | |
David Gibson | 54738c0 | 2011-06-29 00:22:41 +0000 | [diff] [blame] | 1951 | 4.62 KVM_CREATE_SPAPR_TCE |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1952 | ------------------------- |
David Gibson | 54738c0 | 2011-06-29 00:22:41 +0000 | [diff] [blame] | 1953 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1954 | :Capability: KVM_CAP_SPAPR_TCE |
| 1955 | :Architectures: powerpc |
| 1956 | :Type: vm ioctl |
| 1957 | :Parameters: struct kvm_create_spapr_tce (in) |
| 1958 | :Returns: file descriptor for manipulating the created TCE table |
David Gibson | 54738c0 | 2011-06-29 00:22:41 +0000 | [diff] [blame] | 1959 | |
| 1960 | This creates a virtual TCE (translation control entry) table, which |
| 1961 | is an IOMMU for PAPR-style virtual I/O. It is used to translate |
| 1962 | logical addresses used in virtual I/O into guest physical addresses, |
| 1963 | and provides a scatter/gather capability for PAPR virtual I/O. |
| 1964 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1965 | :: |
| 1966 | |
| 1967 | /* for KVM_CAP_SPAPR_TCE */ |
| 1968 | struct kvm_create_spapr_tce { |
David Gibson | 54738c0 | 2011-06-29 00:22:41 +0000 | [diff] [blame] | 1969 | __u64 liobn; |
| 1970 | __u32 window_size; |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1971 | }; |
David Gibson | 54738c0 | 2011-06-29 00:22:41 +0000 | [diff] [blame] | 1972 | |
| 1973 | The liobn field gives the logical IO bus number for which to create a |
| 1974 | TCE table. The window_size field specifies the size of the DMA window |
| 1975 | which this TCE table will translate - the table will contain one 64 |
| 1976 | bit TCE entry for every 4kiB of the DMA window. |
| 1977 | |
| 1978 | When the guest issues an H_PUT_TCE hcall on a liobn for which a TCE |
| 1979 | table has been created using this ioctl(), the kernel will handle it |
| 1980 | in real mode, updating the TCE table. H_PUT_TCE calls for other |
| 1981 | liobns will cause a vm exit and must be handled by userspace. |
| 1982 | |
| 1983 | The return value is a file descriptor which can be passed to mmap(2) |
| 1984 | to map the created TCE table into userspace. This lets userspace read |
| 1985 | the entries written by kernel-handled H_PUT_TCE calls, and also lets |
| 1986 | userspace update the TCE table directly which is useful in some |
| 1987 | circumstances. |
| 1988 | |
Jan Kiszka | 414fa98 | 2012-04-24 16:40:15 +0200 | [diff] [blame] | 1989 | |
Paul Mackerras | aa04b4c | 2011-06-29 00:25:44 +0000 | [diff] [blame] | 1990 | 4.63 KVM_ALLOCATE_RMA |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1991 | --------------------- |
Paul Mackerras | aa04b4c | 2011-06-29 00:25:44 +0000 | [diff] [blame] | 1992 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 1993 | :Capability: KVM_CAP_PPC_RMA |
| 1994 | :Architectures: powerpc |
| 1995 | :Type: vm ioctl |
| 1996 | :Parameters: struct kvm_allocate_rma (out) |
| 1997 | :Returns: file descriptor for mapping the allocated RMA |
Paul Mackerras | aa04b4c | 2011-06-29 00:25:44 +0000 | [diff] [blame] | 1998 | |
| 1999 | This allocates a Real Mode Area (RMA) from the pool allocated at boot |
| 2000 | time by the kernel. An RMA is a physically-contiguous, aligned region |
| 2001 | of memory used on older POWER processors to provide the memory which |
| 2002 | will be accessed by real-mode (MMU off) accesses in a KVM guest. |
| 2003 | POWER processors support a set of sizes for the RMA that usually |
| 2004 | includes 64MB, 128MB, 256MB and some larger powers of two. |
| 2005 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2006 | :: |
| 2007 | |
| 2008 | /* for KVM_ALLOCATE_RMA */ |
| 2009 | struct kvm_allocate_rma { |
Paul Mackerras | aa04b4c | 2011-06-29 00:25:44 +0000 | [diff] [blame] | 2010 | __u64 rma_size; |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2011 | }; |
Paul Mackerras | aa04b4c | 2011-06-29 00:25:44 +0000 | [diff] [blame] | 2012 | |
| 2013 | The return value is a file descriptor which can be passed to mmap(2) |
| 2014 | to map the allocated RMA into userspace. The mapped area can then be |
| 2015 | passed to the KVM_SET_USER_MEMORY_REGION ioctl to establish it as the |
| 2016 | RMA for a virtual machine. The size of the RMA in bytes (which is |
| 2017 | fixed at host kernel boot time) is returned in the rma_size field of |
| 2018 | the argument structure. |
| 2019 | |
| 2020 | The KVM_CAP_PPC_RMA capability is 1 or 2 if the KVM_ALLOCATE_RMA ioctl |
| 2021 | is supported; 2 if the processor requires all virtual machines to have |
| 2022 | an RMA, or 1 if the processor can use an RMA but doesn't require it, |
| 2023 | because it supports the Virtual RMA (VRMA) facility. |
| 2024 | |
Jan Kiszka | 414fa98 | 2012-04-24 16:40:15 +0200 | [diff] [blame] | 2025 | |
Avi Kivity | 3f745f1 | 2011-12-07 12:42:47 +0200 | [diff] [blame] | 2026 | 4.64 KVM_NMI |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2027 | ------------ |
Avi Kivity | 3f745f1 | 2011-12-07 12:42:47 +0200 | [diff] [blame] | 2028 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2029 | :Capability: KVM_CAP_USER_NMI |
| 2030 | :Architectures: x86 |
| 2031 | :Type: vcpu ioctl |
| 2032 | :Parameters: none |
| 2033 | :Returns: 0 on success, -1 on error |
Avi Kivity | 3f745f1 | 2011-12-07 12:42:47 +0200 | [diff] [blame] | 2034 | |
| 2035 | Queues an NMI on the thread's vcpu. Note this is well defined only |
| 2036 | when KVM_CREATE_IRQCHIP has not been called, since this is an interface |
| 2037 | between the virtual cpu core and virtual local APIC. After KVM_CREATE_IRQCHIP |
| 2038 | has been called, this interface is completely emulated within the kernel. |
| 2039 | |
| 2040 | To use this to emulate the LINT1 input with KVM_CREATE_IRQCHIP, use the |
| 2041 | following algorithm: |
| 2042 | |
Masanari Iida | 5d4f6f3 | 2015-10-04 00:46:21 +0900 | [diff] [blame] | 2043 | - pause the vcpu |
Avi Kivity | 3f745f1 | 2011-12-07 12:42:47 +0200 | [diff] [blame] | 2044 | - read the local APIC's state (KVM_GET_LAPIC) |
| 2045 | - check whether changing LINT1 will queue an NMI (see the LVT entry for LINT1) |
| 2046 | - if so, issue KVM_NMI |
| 2047 | - resume the vcpu |
| 2048 | |
| 2049 | Some guests configure the LINT1 NMI input to cause a panic, aiding in |
| 2050 | debugging. |
| 2051 | |
Jan Kiszka | 414fa98 | 2012-04-24 16:40:15 +0200 | [diff] [blame] | 2052 | |
Alexander Graf | e24ed81 | 2011-09-14 10:02:41 +0200 | [diff] [blame] | 2053 | 4.65 KVM_S390_UCAS_MAP |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2054 | ---------------------- |
Carsten Otte | 27e0393 | 2012-01-04 10:25:21 +0100 | [diff] [blame] | 2055 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2056 | :Capability: KVM_CAP_S390_UCONTROL |
| 2057 | :Architectures: s390 |
| 2058 | :Type: vcpu ioctl |
| 2059 | :Parameters: struct kvm_s390_ucas_mapping (in) |
| 2060 | :Returns: 0 in case of success |
Carsten Otte | 27e0393 | 2012-01-04 10:25:21 +0100 | [diff] [blame] | 2061 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2062 | The parameter is defined like this:: |
| 2063 | |
Carsten Otte | 27e0393 | 2012-01-04 10:25:21 +0100 | [diff] [blame] | 2064 | struct kvm_s390_ucas_mapping { |
| 2065 | __u64 user_addr; |
| 2066 | __u64 vcpu_addr; |
| 2067 | __u64 length; |
| 2068 | }; |
| 2069 | |
| 2070 | This ioctl maps the memory at "user_addr" with the length "length" to |
| 2071 | the vcpu's address space starting at "vcpu_addr". All parameters need to |
Anatol Pomozov | f884ab1 | 2013-05-08 16:56:16 -0700 | [diff] [blame] | 2072 | be aligned by 1 megabyte. |
Carsten Otte | 27e0393 | 2012-01-04 10:25:21 +0100 | [diff] [blame] | 2073 | |
Jan Kiszka | 414fa98 | 2012-04-24 16:40:15 +0200 | [diff] [blame] | 2074 | |
Alexander Graf | e24ed81 | 2011-09-14 10:02:41 +0200 | [diff] [blame] | 2075 | 4.66 KVM_S390_UCAS_UNMAP |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2076 | ------------------------ |
Carsten Otte | 27e0393 | 2012-01-04 10:25:21 +0100 | [diff] [blame] | 2077 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2078 | :Capability: KVM_CAP_S390_UCONTROL |
| 2079 | :Architectures: s390 |
| 2080 | :Type: vcpu ioctl |
| 2081 | :Parameters: struct kvm_s390_ucas_mapping (in) |
| 2082 | :Returns: 0 in case of success |
Carsten Otte | 27e0393 | 2012-01-04 10:25:21 +0100 | [diff] [blame] | 2083 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2084 | The parameter is defined like this:: |
| 2085 | |
Carsten Otte | 27e0393 | 2012-01-04 10:25:21 +0100 | [diff] [blame] | 2086 | struct kvm_s390_ucas_mapping { |
| 2087 | __u64 user_addr; |
| 2088 | __u64 vcpu_addr; |
| 2089 | __u64 length; |
| 2090 | }; |
| 2091 | |
| 2092 | This ioctl unmaps the memory in the vcpu's address space starting at |
| 2093 | "vcpu_addr" with the length "length". The field "user_addr" is ignored. |
Anatol Pomozov | f884ab1 | 2013-05-08 16:56:16 -0700 | [diff] [blame] | 2094 | All parameters need to be aligned by 1 megabyte. |
Carsten Otte | 27e0393 | 2012-01-04 10:25:21 +0100 | [diff] [blame] | 2095 | |
Jan Kiszka | 414fa98 | 2012-04-24 16:40:15 +0200 | [diff] [blame] | 2096 | |
Alexander Graf | e24ed81 | 2011-09-14 10:02:41 +0200 | [diff] [blame] | 2097 | 4.67 KVM_S390_VCPU_FAULT |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2098 | ------------------------ |
Carsten Otte | ccc7910 | 2012-01-04 10:25:26 +0100 | [diff] [blame] | 2099 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2100 | :Capability: KVM_CAP_S390_UCONTROL |
| 2101 | :Architectures: s390 |
| 2102 | :Type: vcpu ioctl |
| 2103 | :Parameters: vcpu absolute address (in) |
| 2104 | :Returns: 0 in case of success |
Carsten Otte | ccc7910 | 2012-01-04 10:25:26 +0100 | [diff] [blame] | 2105 | |
| 2106 | This call creates a page table entry on the virtual cpu's address space |
| 2107 | (for user controlled virtual machines) or the virtual machine's address |
| 2108 | space (for regular virtual machines). This only works for minor faults, |
| 2109 | thus it's recommended to access subject memory page via the user page |
| 2110 | table upfront. This is useful to handle validity intercepts for user |
| 2111 | controlled virtual machines to fault in the virtual cpu's lowcore pages |
| 2112 | prior to calling the KVM_RUN ioctl. |
| 2113 | |
Jan Kiszka | 414fa98 | 2012-04-24 16:40:15 +0200 | [diff] [blame] | 2114 | |
Alexander Graf | e24ed81 | 2011-09-14 10:02:41 +0200 | [diff] [blame] | 2115 | 4.68 KVM_SET_ONE_REG |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2116 | -------------------- |
Alexander Graf | e24ed81 | 2011-09-14 10:02:41 +0200 | [diff] [blame] | 2117 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2118 | :Capability: KVM_CAP_ONE_REG |
| 2119 | :Architectures: all |
| 2120 | :Type: vcpu ioctl |
| 2121 | :Parameters: struct kvm_one_reg (in) |
| 2122 | :Returns: 0 on success, negative value on failure |
| 2123 | |
Dave Martin | 395f562 | 2019-01-15 17:02:08 +0000 | [diff] [blame] | 2124 | Errors: |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2125 | |
| 2126 | ====== ============================================================ |
| 2127 | ENOENT no such register |
Janosch Frank | 68cf7b1 | 2019-06-14 13:11:21 +0200 | [diff] [blame] | 2128 | EINVAL invalid register ID, or no such register or used with VMs in |
| 2129 | protected virtualization mode on s390 |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2130 | EPERM (arm64) register access not allowed before vcpu finalization |
| 2131 | ====== ============================================================ |
| 2132 | |
Dave Martin | fe365b4 | 2019-04-12 12:59:47 +0100 | [diff] [blame] | 2133 | (These error codes are indicative only: do not rely on a specific error |
| 2134 | code being returned in a specific situation.) |
Alexander Graf | e24ed81 | 2011-09-14 10:02:41 +0200 | [diff] [blame] | 2135 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2136 | :: |
| 2137 | |
| 2138 | struct kvm_one_reg { |
Alexander Graf | e24ed81 | 2011-09-14 10:02:41 +0200 | [diff] [blame] | 2139 | __u64 id; |
| 2140 | __u64 addr; |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2141 | }; |
Alexander Graf | e24ed81 | 2011-09-14 10:02:41 +0200 | [diff] [blame] | 2142 | |
| 2143 | Using this ioctl, a single vcpu register can be set to a specific value |
| 2144 | defined by user space with the passed in struct kvm_one_reg, where id |
| 2145 | refers to the register identifier as described below and addr is a pointer |
| 2146 | to a variable with the respective size. There can be architecture agnostic |
| 2147 | and architecture specific registers. Each have their own range of operation |
| 2148 | and their own constants and width. To keep track of the implemented |
| 2149 | registers, find a list below: |
| 2150 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2151 | ======= =============================== ============ |
| 2152 | Arch Register Width (bits) |
| 2153 | ======= =============================== ============ |
| 2154 | PPC KVM_REG_PPC_HIOR 64 |
| 2155 | PPC KVM_REG_PPC_IAC1 64 |
| 2156 | PPC KVM_REG_PPC_IAC2 64 |
| 2157 | PPC KVM_REG_PPC_IAC3 64 |
| 2158 | PPC KVM_REG_PPC_IAC4 64 |
| 2159 | PPC KVM_REG_PPC_DAC1 64 |
| 2160 | PPC KVM_REG_PPC_DAC2 64 |
| 2161 | PPC KVM_REG_PPC_DABR 64 |
| 2162 | PPC KVM_REG_PPC_DSCR 64 |
| 2163 | PPC KVM_REG_PPC_PURR 64 |
| 2164 | PPC KVM_REG_PPC_SPURR 64 |
| 2165 | PPC KVM_REG_PPC_DAR 64 |
| 2166 | PPC KVM_REG_PPC_DSISR 32 |
| 2167 | PPC KVM_REG_PPC_AMR 64 |
| 2168 | PPC KVM_REG_PPC_UAMOR 64 |
| 2169 | PPC KVM_REG_PPC_MMCR0 64 |
| 2170 | PPC KVM_REG_PPC_MMCR1 64 |
| 2171 | PPC KVM_REG_PPC_MMCRA 64 |
| 2172 | PPC KVM_REG_PPC_MMCR2 64 |
| 2173 | PPC KVM_REG_PPC_MMCRS 64 |
Athira Rajeev | 5752fe0 | 2020-07-17 10:38:17 -0400 | [diff] [blame] | 2174 | PPC KVM_REG_PPC_MMCR3 64 |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2175 | PPC KVM_REG_PPC_SIAR 64 |
| 2176 | PPC KVM_REG_PPC_SDAR 64 |
| 2177 | PPC KVM_REG_PPC_SIER 64 |
Athira Rajeev | 5752fe0 | 2020-07-17 10:38:17 -0400 | [diff] [blame] | 2178 | PPC KVM_REG_PPC_SIER2 64 |
| 2179 | PPC KVM_REG_PPC_SIER3 64 |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2180 | PPC KVM_REG_PPC_PMC1 32 |
| 2181 | PPC KVM_REG_PPC_PMC2 32 |
| 2182 | PPC KVM_REG_PPC_PMC3 32 |
| 2183 | PPC KVM_REG_PPC_PMC4 32 |
| 2184 | PPC KVM_REG_PPC_PMC5 32 |
| 2185 | PPC KVM_REG_PPC_PMC6 32 |
| 2186 | PPC KVM_REG_PPC_PMC7 32 |
| 2187 | PPC KVM_REG_PPC_PMC8 32 |
| 2188 | PPC KVM_REG_PPC_FPR0 64 |
| 2189 | ... |
| 2190 | PPC KVM_REG_PPC_FPR31 64 |
| 2191 | PPC KVM_REG_PPC_VR0 128 |
| 2192 | ... |
| 2193 | PPC KVM_REG_PPC_VR31 128 |
| 2194 | PPC KVM_REG_PPC_VSR0 128 |
| 2195 | ... |
| 2196 | PPC KVM_REG_PPC_VSR31 128 |
| 2197 | PPC KVM_REG_PPC_FPSCR 64 |
| 2198 | PPC KVM_REG_PPC_VSCR 32 |
| 2199 | PPC KVM_REG_PPC_VPA_ADDR 64 |
| 2200 | PPC KVM_REG_PPC_VPA_SLB 128 |
| 2201 | PPC KVM_REG_PPC_VPA_DTL 128 |
| 2202 | PPC KVM_REG_PPC_EPCR 32 |
| 2203 | PPC KVM_REG_PPC_EPR 32 |
| 2204 | PPC KVM_REG_PPC_TCR 32 |
| 2205 | PPC KVM_REG_PPC_TSR 32 |
| 2206 | PPC KVM_REG_PPC_OR_TSR 32 |
| 2207 | PPC KVM_REG_PPC_CLEAR_TSR 32 |
| 2208 | PPC KVM_REG_PPC_MAS0 32 |
| 2209 | PPC KVM_REG_PPC_MAS1 32 |
| 2210 | PPC KVM_REG_PPC_MAS2 64 |
| 2211 | PPC KVM_REG_PPC_MAS7_3 64 |
| 2212 | PPC KVM_REG_PPC_MAS4 32 |
| 2213 | PPC KVM_REG_PPC_MAS6 32 |
| 2214 | PPC KVM_REG_PPC_MMUCFG 32 |
| 2215 | PPC KVM_REG_PPC_TLB0CFG 32 |
| 2216 | PPC KVM_REG_PPC_TLB1CFG 32 |
| 2217 | PPC KVM_REG_PPC_TLB2CFG 32 |
| 2218 | PPC KVM_REG_PPC_TLB3CFG 32 |
| 2219 | PPC KVM_REG_PPC_TLB0PS 32 |
| 2220 | PPC KVM_REG_PPC_TLB1PS 32 |
| 2221 | PPC KVM_REG_PPC_TLB2PS 32 |
| 2222 | PPC KVM_REG_PPC_TLB3PS 32 |
| 2223 | PPC KVM_REG_PPC_EPTCFG 32 |
| 2224 | PPC KVM_REG_PPC_ICP_STATE 64 |
| 2225 | PPC KVM_REG_PPC_VP_STATE 128 |
| 2226 | PPC KVM_REG_PPC_TB_OFFSET 64 |
| 2227 | PPC KVM_REG_PPC_SPMC1 32 |
| 2228 | PPC KVM_REG_PPC_SPMC2 32 |
| 2229 | PPC KVM_REG_PPC_IAMR 64 |
| 2230 | PPC KVM_REG_PPC_TFHAR 64 |
| 2231 | PPC KVM_REG_PPC_TFIAR 64 |
| 2232 | PPC KVM_REG_PPC_TEXASR 64 |
| 2233 | PPC KVM_REG_PPC_FSCR 64 |
| 2234 | PPC KVM_REG_PPC_PSPB 32 |
| 2235 | PPC KVM_REG_PPC_EBBHR 64 |
| 2236 | PPC KVM_REG_PPC_EBBRR 64 |
| 2237 | PPC KVM_REG_PPC_BESCR 64 |
| 2238 | PPC KVM_REG_PPC_TAR 64 |
| 2239 | PPC KVM_REG_PPC_DPDES 64 |
| 2240 | PPC KVM_REG_PPC_DAWR 64 |
| 2241 | PPC KVM_REG_PPC_DAWRX 64 |
| 2242 | PPC KVM_REG_PPC_CIABR 64 |
| 2243 | PPC KVM_REG_PPC_IC 64 |
| 2244 | PPC KVM_REG_PPC_VTB 64 |
| 2245 | PPC KVM_REG_PPC_CSIGR 64 |
| 2246 | PPC KVM_REG_PPC_TACR 64 |
| 2247 | PPC KVM_REG_PPC_TCSCR 64 |
| 2248 | PPC KVM_REG_PPC_PID 64 |
| 2249 | PPC KVM_REG_PPC_ACOP 64 |
| 2250 | PPC KVM_REG_PPC_VRSAVE 32 |
| 2251 | PPC KVM_REG_PPC_LPCR 32 |
| 2252 | PPC KVM_REG_PPC_LPCR_64 64 |
| 2253 | PPC KVM_REG_PPC_PPR 64 |
| 2254 | PPC KVM_REG_PPC_ARCH_COMPAT 32 |
| 2255 | PPC KVM_REG_PPC_DABRX 32 |
| 2256 | PPC KVM_REG_PPC_WORT 64 |
| 2257 | PPC KVM_REG_PPC_SPRG9 64 |
| 2258 | PPC KVM_REG_PPC_DBSR 32 |
| 2259 | PPC KVM_REG_PPC_TIDR 64 |
| 2260 | PPC KVM_REG_PPC_PSSCR 64 |
| 2261 | PPC KVM_REG_PPC_DEC_EXPIRY 64 |
| 2262 | PPC KVM_REG_PPC_PTCR 64 |
| 2263 | PPC KVM_REG_PPC_TM_GPR0 64 |
| 2264 | ... |
| 2265 | PPC KVM_REG_PPC_TM_GPR31 64 |
| 2266 | PPC KVM_REG_PPC_TM_VSR0 128 |
| 2267 | ... |
| 2268 | PPC KVM_REG_PPC_TM_VSR63 128 |
| 2269 | PPC KVM_REG_PPC_TM_CR 64 |
| 2270 | PPC KVM_REG_PPC_TM_LR 64 |
| 2271 | PPC KVM_REG_PPC_TM_CTR 64 |
| 2272 | PPC KVM_REG_PPC_TM_FPSCR 64 |
| 2273 | PPC KVM_REG_PPC_TM_AMR 64 |
| 2274 | PPC KVM_REG_PPC_TM_PPR 64 |
| 2275 | PPC KVM_REG_PPC_TM_VRSAVE 64 |
| 2276 | PPC KVM_REG_PPC_TM_VSCR 32 |
| 2277 | PPC KVM_REG_PPC_TM_DSCR 64 |
| 2278 | PPC KVM_REG_PPC_TM_TAR 64 |
| 2279 | PPC KVM_REG_PPC_TM_XER 64 |
| 2280 | |
| 2281 | MIPS KVM_REG_MIPS_R0 64 |
| 2282 | ... |
| 2283 | MIPS KVM_REG_MIPS_R31 64 |
| 2284 | MIPS KVM_REG_MIPS_HI 64 |
| 2285 | MIPS KVM_REG_MIPS_LO 64 |
| 2286 | MIPS KVM_REG_MIPS_PC 64 |
| 2287 | MIPS KVM_REG_MIPS_CP0_INDEX 32 |
| 2288 | MIPS KVM_REG_MIPS_CP0_ENTRYLO0 64 |
| 2289 | MIPS KVM_REG_MIPS_CP0_ENTRYLO1 64 |
| 2290 | MIPS KVM_REG_MIPS_CP0_CONTEXT 64 |
| 2291 | MIPS KVM_REG_MIPS_CP0_CONTEXTCONFIG 32 |
| 2292 | MIPS KVM_REG_MIPS_CP0_USERLOCAL 64 |
| 2293 | MIPS KVM_REG_MIPS_CP0_XCONTEXTCONFIG 64 |
| 2294 | MIPS KVM_REG_MIPS_CP0_PAGEMASK 32 |
| 2295 | MIPS KVM_REG_MIPS_CP0_PAGEGRAIN 32 |
| 2296 | MIPS KVM_REG_MIPS_CP0_SEGCTL0 64 |
| 2297 | MIPS KVM_REG_MIPS_CP0_SEGCTL1 64 |
| 2298 | MIPS KVM_REG_MIPS_CP0_SEGCTL2 64 |
| 2299 | MIPS KVM_REG_MIPS_CP0_PWBASE 64 |
| 2300 | MIPS KVM_REG_MIPS_CP0_PWFIELD 64 |
| 2301 | MIPS KVM_REG_MIPS_CP0_PWSIZE 64 |
| 2302 | MIPS KVM_REG_MIPS_CP0_WIRED 32 |
| 2303 | MIPS KVM_REG_MIPS_CP0_PWCTL 32 |
| 2304 | MIPS KVM_REG_MIPS_CP0_HWRENA 32 |
| 2305 | MIPS KVM_REG_MIPS_CP0_BADVADDR 64 |
| 2306 | MIPS KVM_REG_MIPS_CP0_BADINSTR 32 |
| 2307 | MIPS KVM_REG_MIPS_CP0_BADINSTRP 32 |
| 2308 | MIPS KVM_REG_MIPS_CP0_COUNT 32 |
| 2309 | MIPS KVM_REG_MIPS_CP0_ENTRYHI 64 |
| 2310 | MIPS KVM_REG_MIPS_CP0_COMPARE 32 |
| 2311 | MIPS KVM_REG_MIPS_CP0_STATUS 32 |
| 2312 | MIPS KVM_REG_MIPS_CP0_INTCTL 32 |
| 2313 | MIPS KVM_REG_MIPS_CP0_CAUSE 32 |
| 2314 | MIPS KVM_REG_MIPS_CP0_EPC 64 |
| 2315 | MIPS KVM_REG_MIPS_CP0_PRID 32 |
| 2316 | MIPS KVM_REG_MIPS_CP0_EBASE 64 |
| 2317 | MIPS KVM_REG_MIPS_CP0_CONFIG 32 |
| 2318 | MIPS KVM_REG_MIPS_CP0_CONFIG1 32 |
| 2319 | MIPS KVM_REG_MIPS_CP0_CONFIG2 32 |
| 2320 | MIPS KVM_REG_MIPS_CP0_CONFIG3 32 |
| 2321 | MIPS KVM_REG_MIPS_CP0_CONFIG4 32 |
| 2322 | MIPS KVM_REG_MIPS_CP0_CONFIG5 32 |
| 2323 | MIPS KVM_REG_MIPS_CP0_CONFIG7 32 |
| 2324 | MIPS KVM_REG_MIPS_CP0_XCONTEXT 64 |
| 2325 | MIPS KVM_REG_MIPS_CP0_ERROREPC 64 |
| 2326 | MIPS KVM_REG_MIPS_CP0_KSCRATCH1 64 |
| 2327 | MIPS KVM_REG_MIPS_CP0_KSCRATCH2 64 |
| 2328 | MIPS KVM_REG_MIPS_CP0_KSCRATCH3 64 |
| 2329 | MIPS KVM_REG_MIPS_CP0_KSCRATCH4 64 |
| 2330 | MIPS KVM_REG_MIPS_CP0_KSCRATCH5 64 |
| 2331 | MIPS KVM_REG_MIPS_CP0_KSCRATCH6 64 |
| 2332 | MIPS KVM_REG_MIPS_CP0_MAAR(0..63) 64 |
| 2333 | MIPS KVM_REG_MIPS_COUNT_CTL 64 |
| 2334 | MIPS KVM_REG_MIPS_COUNT_RESUME 64 |
| 2335 | MIPS KVM_REG_MIPS_COUNT_HZ 64 |
| 2336 | MIPS KVM_REG_MIPS_FPR_32(0..31) 32 |
| 2337 | MIPS KVM_REG_MIPS_FPR_64(0..31) 64 |
| 2338 | MIPS KVM_REG_MIPS_VEC_128(0..31) 128 |
| 2339 | MIPS KVM_REG_MIPS_FCR_IR 32 |
| 2340 | MIPS KVM_REG_MIPS_FCR_CSR 32 |
| 2341 | MIPS KVM_REG_MIPS_MSA_IR 32 |
| 2342 | MIPS KVM_REG_MIPS_MSA_CSR 32 |
| 2343 | ======= =============================== ============ |
Jan Kiszka | 414fa98 | 2012-04-24 16:40:15 +0200 | [diff] [blame] | 2344 | |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 2345 | ARM registers are mapped using the lower 32 bits. The upper 16 of that |
| 2346 | is the register group type, or coprocessor number: |
| 2347 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2348 | ARM core registers have the following id bit patterns:: |
| 2349 | |
Christoffer Dall | aa404dd | 2013-04-22 18:57:46 -0700 | [diff] [blame] | 2350 | 0x4020 0000 0010 <index into the kvm_regs struct:16> |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 2351 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2352 | ARM 32-bit CP15 registers have the following id bit patterns:: |
| 2353 | |
Christoffer Dall | aa404dd | 2013-04-22 18:57:46 -0700 | [diff] [blame] | 2354 | 0x4020 0000 000F <zero:1> <crn:4> <crm:4> <opc1:4> <opc2:3> |
Christoffer Dall | 1138245 | 2013-01-20 18:28:10 -0500 | [diff] [blame] | 2355 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2356 | ARM 64-bit CP15 registers have the following id bit patterns:: |
| 2357 | |
Christoffer Dall | aa404dd | 2013-04-22 18:57:46 -0700 | [diff] [blame] | 2358 | 0x4030 0000 000F <zero:1> <zero:4> <crm:4> <opc1:4> <zero:3> |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 2359 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2360 | ARM CCSIDR registers are demultiplexed by CSSELR value:: |
| 2361 | |
Christoffer Dall | aa404dd | 2013-04-22 18:57:46 -0700 | [diff] [blame] | 2362 | 0x4020 0000 0011 00 <csselr:8> |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 2363 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2364 | ARM 32-bit VFP control registers have the following id bit patterns:: |
| 2365 | |
Christoffer Dall | aa404dd | 2013-04-22 18:57:46 -0700 | [diff] [blame] | 2366 | 0x4020 0000 0012 1 <regno:12> |
Rusty Russell | 4fe21e4 | 2013-01-20 18:28:11 -0500 | [diff] [blame] | 2367 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2368 | ARM 64-bit FP registers have the following id bit patterns:: |
| 2369 | |
Christoffer Dall | aa404dd | 2013-04-22 18:57:46 -0700 | [diff] [blame] | 2370 | 0x4030 0000 0012 0 <regno:12> |
Rusty Russell | 4fe21e4 | 2013-01-20 18:28:11 -0500 | [diff] [blame] | 2371 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2372 | ARM firmware pseudo-registers have the following bit pattern:: |
| 2373 | |
Marc Zyngier | 85bd0ba | 2018-01-21 16:42:56 +0000 | [diff] [blame] | 2374 | 0x4030 0000 0014 <regno:16> |
| 2375 | |
Marc Zyngier | 379e04c7 | 2013-04-02 17:46:31 +0100 | [diff] [blame] | 2376 | |
| 2377 | arm64 registers are mapped using the lower 32 bits. The upper 16 of |
| 2378 | that is the register group type, or coprocessor number: |
| 2379 | |
| 2380 | arm64 core/FP-SIMD registers have the following id bit patterns. Note |
| 2381 | that the size of the access is variable, as the kvm_regs structure |
| 2382 | contains elements ranging from 32 to 128 bits. The index is a 32bit |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2383 | value in the kvm_regs structure seen as a 32bit array:: |
| 2384 | |
Marc Zyngier | 379e04c7 | 2013-04-02 17:46:31 +0100 | [diff] [blame] | 2385 | 0x60x0 0000 0010 <index into the kvm_regs struct:16> |
| 2386 | |
Dave Martin | fd3bc91 | 2018-09-28 14:39:26 +0100 | [diff] [blame] | 2387 | Specifically: |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2388 | |
| 2389 | ======================= ========= ===== ======================================= |
Dave Martin | fd3bc91 | 2018-09-28 14:39:26 +0100 | [diff] [blame] | 2390 | Encoding Register Bits kvm_regs member |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2391 | ======================= ========= ===== ======================================= |
Dave Martin | fd3bc91 | 2018-09-28 14:39:26 +0100 | [diff] [blame] | 2392 | 0x6030 0000 0010 0000 X0 64 regs.regs[0] |
| 2393 | 0x6030 0000 0010 0002 X1 64 regs.regs[1] |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2394 | ... |
Dave Martin | fd3bc91 | 2018-09-28 14:39:26 +0100 | [diff] [blame] | 2395 | 0x6030 0000 0010 003c X30 64 regs.regs[30] |
| 2396 | 0x6030 0000 0010 003e SP 64 regs.sp |
| 2397 | 0x6030 0000 0010 0040 PC 64 regs.pc |
| 2398 | 0x6030 0000 0010 0042 PSTATE 64 regs.pstate |
| 2399 | 0x6030 0000 0010 0044 SP_EL1 64 sp_el1 |
| 2400 | 0x6030 0000 0010 0046 ELR_EL1 64 elr_el1 |
| 2401 | 0x6030 0000 0010 0048 SPSR_EL1 64 spsr[KVM_SPSR_EL1] (alias SPSR_SVC) |
| 2402 | 0x6030 0000 0010 004a SPSR_ABT 64 spsr[KVM_SPSR_ABT] |
| 2403 | 0x6030 0000 0010 004c SPSR_UND 64 spsr[KVM_SPSR_UND] |
| 2404 | 0x6030 0000 0010 004e SPSR_IRQ 64 spsr[KVM_SPSR_IRQ] |
| 2405 | 0x6060 0000 0010 0050 SPSR_FIQ 64 spsr[KVM_SPSR_FIQ] |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2406 | 0x6040 0000 0010 0054 V0 128 fp_regs.vregs[0] [1]_ |
| 2407 | 0x6040 0000 0010 0058 V1 128 fp_regs.vregs[1] [1]_ |
| 2408 | ... |
| 2409 | 0x6040 0000 0010 00d0 V31 128 fp_regs.vregs[31] [1]_ |
Dave Martin | fd3bc91 | 2018-09-28 14:39:26 +0100 | [diff] [blame] | 2410 | 0x6020 0000 0010 00d4 FPSR 32 fp_regs.fpsr |
| 2411 | 0x6020 0000 0010 00d5 FPCR 32 fp_regs.fpcr |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2412 | ======================= ========= ===== ======================================= |
Dave Martin | fd3bc91 | 2018-09-28 14:39:26 +0100 | [diff] [blame] | 2413 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2414 | .. [1] These encodings are not accepted for SVE-enabled vcpus. See |
| 2415 | KVM_ARM_VCPU_INIT. |
Dave Martin | 50036ad | 2018-09-28 14:39:27 +0100 | [diff] [blame] | 2416 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2417 | The equivalent register content can be accessed via bits [127:0] of |
| 2418 | the corresponding SVE Zn registers instead for vcpus that have SVE |
| 2419 | enabled (see below). |
Dave Martin | 50036ad | 2018-09-28 14:39:27 +0100 | [diff] [blame] | 2420 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2421 | arm64 CCSIDR registers are demultiplexed by CSSELR value:: |
| 2422 | |
Marc Zyngier | 379e04c7 | 2013-04-02 17:46:31 +0100 | [diff] [blame] | 2423 | 0x6020 0000 0011 00 <csselr:8> |
| 2424 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2425 | arm64 system registers have the following id bit patterns:: |
| 2426 | |
Marc Zyngier | 379e04c7 | 2013-04-02 17:46:31 +0100 | [diff] [blame] | 2427 | 0x6030 0000 0013 <op0:2> <op1:3> <crn:4> <crm:4> <op2:3> |
| 2428 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2429 | .. warning:: |
| 2430 | |
Andrew Jones | 290a6bb | 2020-01-20 14:08:25 +0100 | [diff] [blame] | 2431 | Two system register IDs do not follow the specified pattern. These |
| 2432 | are KVM_REG_ARM_TIMER_CVAL and KVM_REG_ARM_TIMER_CNT, which map to |
| 2433 | system registers CNTV_CVAL_EL0 and CNTVCT_EL0 respectively. These |
| 2434 | two had their values accidentally swapped, which means TIMER_CVAL is |
| 2435 | derived from the register encoding for CNTVCT_EL0 and TIMER_CNT is |
| 2436 | derived from the register encoding for CNTV_CVAL_EL0. As this is |
| 2437 | API, it must remain this way. |
| 2438 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2439 | arm64 firmware pseudo-registers have the following bit pattern:: |
| 2440 | |
Marc Zyngier | 85bd0ba | 2018-01-21 16:42:56 +0000 | [diff] [blame] | 2441 | 0x6030 0000 0014 <regno:16> |
| 2442 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2443 | arm64 SVE registers have the following bit patterns:: |
| 2444 | |
Dave Martin | 50036ad | 2018-09-28 14:39:27 +0100 | [diff] [blame] | 2445 | 0x6080 0000 0015 00 <n:5> <slice:5> Zn bits[2048*slice + 2047 : 2048*slice] |
| 2446 | 0x6050 0000 0015 04 <n:4> <slice:5> Pn bits[256*slice + 255 : 256*slice] |
| 2447 | 0x6050 0000 0015 060 <slice:5> FFR bits[256*slice + 255 : 256*slice] |
| 2448 | 0x6060 0000 0015 ffff KVM_REG_ARM64_SVE_VLS pseudo-register |
| 2449 | |
Dave Martin | 43b8e1f | 2019-04-12 13:25:38 +0100 | [diff] [blame] | 2450 | Access to register IDs where 2048 * slice >= 128 * max_vq will fail with |
| 2451 | ENOENT. max_vq is the vcpu's maximum supported vector length in 128-bit |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2452 | quadwords: see [2]_ below. |
Dave Martin | 50036ad | 2018-09-28 14:39:27 +0100 | [diff] [blame] | 2453 | |
| 2454 | These registers are only accessible on vcpus for which SVE is enabled. |
| 2455 | See KVM_ARM_VCPU_INIT for details. |
| 2456 | |
| 2457 | In addition, except for KVM_REG_ARM64_SVE_VLS, these registers are not |
| 2458 | accessible until the vcpu's SVE configuration has been finalized |
| 2459 | using KVM_ARM_VCPU_FINALIZE(KVM_ARM_VCPU_SVE). See KVM_ARM_VCPU_INIT |
| 2460 | and KVM_ARM_VCPU_FINALIZE for more information about this procedure. |
| 2461 | |
| 2462 | KVM_REG_ARM64_SVE_VLS is a pseudo-register that allows the set of vector |
| 2463 | lengths supported by the vcpu to be discovered and configured by |
| 2464 | userspace. When transferred to or from user memory via KVM_GET_ONE_REG |
Dave Martin | 4bd774e | 2019-04-11 17:09:59 +0100 | [diff] [blame] | 2465 | or KVM_SET_ONE_REG, the value of this register is of type |
| 2466 | __u64[KVM_ARM64_SVE_VLS_WORDS], and encodes the set of vector lengths as |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2467 | follows:: |
Dave Martin | 50036ad | 2018-09-28 14:39:27 +0100 | [diff] [blame] | 2468 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2469 | __u64 vector_lengths[KVM_ARM64_SVE_VLS_WORDS]; |
Dave Martin | 50036ad | 2018-09-28 14:39:27 +0100 | [diff] [blame] | 2470 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2471 | if (vq >= SVE_VQ_MIN && vq <= SVE_VQ_MAX && |
| 2472 | ((vector_lengths[(vq - KVM_ARM64_SVE_VQ_MIN) / 64] >> |
Dave Martin | 4bd774e | 2019-04-11 17:09:59 +0100 | [diff] [blame] | 2473 | ((vq - KVM_ARM64_SVE_VQ_MIN) % 64)) & 1)) |
Dave Martin | 50036ad | 2018-09-28 14:39:27 +0100 | [diff] [blame] | 2474 | /* Vector length vq * 16 bytes supported */ |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2475 | else |
Dave Martin | 50036ad | 2018-09-28 14:39:27 +0100 | [diff] [blame] | 2476 | /* Vector length vq * 16 bytes not supported */ |
| 2477 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2478 | .. [2] The maximum value vq for which the above condition is true is |
| 2479 | max_vq. This is the maximum vector length available to the guest on |
| 2480 | this vcpu, and determines which register slices are visible through |
| 2481 | this ioctl interface. |
Dave Martin | 50036ad | 2018-09-28 14:39:27 +0100 | [diff] [blame] | 2482 | |
Mauro Carvalho Chehab | b693d0b | 2019-06-12 14:52:38 -0300 | [diff] [blame] | 2483 | (See Documentation/arm64/sve.rst for an explanation of the "vq" |
Dave Martin | 50036ad | 2018-09-28 14:39:27 +0100 | [diff] [blame] | 2484 | nomenclature.) |
| 2485 | |
| 2486 | KVM_REG_ARM64_SVE_VLS is only accessible after KVM_ARM_VCPU_INIT. |
| 2487 | KVM_ARM_VCPU_INIT initialises it to the best set of vector lengths that |
| 2488 | the host supports. |
| 2489 | |
| 2490 | Userspace may subsequently modify it if desired until the vcpu's SVE |
| 2491 | configuration is finalized using KVM_ARM_VCPU_FINALIZE(KVM_ARM_VCPU_SVE). |
| 2492 | |
| 2493 | Apart from simply removing all vector lengths from the host set that |
| 2494 | exceed some value, support for arbitrarily chosen sets of vector lengths |
| 2495 | is hardware-dependent and may not be available. Attempting to configure |
| 2496 | an invalid set of vector lengths via KVM_SET_ONE_REG will fail with |
| 2497 | EINVAL. |
| 2498 | |
| 2499 | After the vcpu's SVE configuration is finalized, further attempts to |
| 2500 | write this register will fail with EPERM. |
| 2501 | |
James Hogan | c2d2c21 | 2014-07-04 15:11:35 +0100 | [diff] [blame] | 2502 | |
| 2503 | MIPS registers are mapped using the lower 32 bits. The upper 16 of that is |
| 2504 | the register group type: |
| 2505 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2506 | MIPS core registers (see above) have the following id bit patterns:: |
| 2507 | |
James Hogan | c2d2c21 | 2014-07-04 15:11:35 +0100 | [diff] [blame] | 2508 | 0x7030 0000 0000 <reg:16> |
| 2509 | |
| 2510 | MIPS CP0 registers (see KVM_REG_MIPS_CP0_* above) have the following id bit |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2511 | patterns depending on whether they're 32-bit or 64-bit registers:: |
| 2512 | |
James Hogan | c2d2c21 | 2014-07-04 15:11:35 +0100 | [diff] [blame] | 2513 | 0x7020 0000 0001 00 <reg:5> <sel:3> (32-bit) |
| 2514 | 0x7030 0000 0001 00 <reg:5> <sel:3> (64-bit) |
| 2515 | |
James Hogan | 013044c | 2016-12-07 17:16:37 +0000 | [diff] [blame] | 2516 | Note: KVM_REG_MIPS_CP0_ENTRYLO0 and KVM_REG_MIPS_CP0_ENTRYLO1 are the MIPS64 |
| 2517 | versions of the EntryLo registers regardless of the word size of the host |
| 2518 | hardware, host kernel, guest, and whether XPA is present in the guest, i.e. |
| 2519 | with the RI and XI bits (if they exist) in bits 63 and 62 respectively, and |
| 2520 | the PFNX field starting at bit 30. |
| 2521 | |
James Hogan | d42a008 | 2017-03-14 10:15:38 +0000 | [diff] [blame] | 2522 | MIPS MAARs (see KVM_REG_MIPS_CP0_MAAR(*) above) have the following id bit |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2523 | patterns:: |
| 2524 | |
James Hogan | d42a008 | 2017-03-14 10:15:38 +0000 | [diff] [blame] | 2525 | 0x7030 0000 0001 01 <reg:8> |
| 2526 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2527 | MIPS KVM control registers (see above) have the following id bit patterns:: |
| 2528 | |
James Hogan | c2d2c21 | 2014-07-04 15:11:35 +0100 | [diff] [blame] | 2529 | 0x7030 0000 0002 <reg:16> |
| 2530 | |
James Hogan | 379245c | 2014-12-02 15:48:24 +0000 | [diff] [blame] | 2531 | MIPS FPU registers (see KVM_REG_MIPS_FPR_{32,64}() above) have the following |
| 2532 | id bit patterns depending on the size of the register being accessed. They are |
| 2533 | always accessed according to the current guest FPU mode (Status.FR and |
| 2534 | Config5.FRE), i.e. as the guest would see them, and they become unpredictable |
James Hogan | ab86bd6 | 2014-12-02 15:48:24 +0000 | [diff] [blame] | 2535 | if the guest FPU mode is changed. MIPS SIMD Architecture (MSA) vector |
| 2536 | registers (see KVM_REG_MIPS_VEC_128() above) have similar patterns as they |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2537 | overlap the FPU registers:: |
| 2538 | |
James Hogan | 379245c | 2014-12-02 15:48:24 +0000 | [diff] [blame] | 2539 | 0x7020 0000 0003 00 <0:3> <reg:5> (32-bit FPU registers) |
| 2540 | 0x7030 0000 0003 00 <0:3> <reg:5> (64-bit FPU registers) |
James Hogan | ab86bd6 | 2014-12-02 15:48:24 +0000 | [diff] [blame] | 2541 | 0x7040 0000 0003 00 <0:3> <reg:5> (128-bit MSA vector registers) |
James Hogan | 379245c | 2014-12-02 15:48:24 +0000 | [diff] [blame] | 2542 | |
| 2543 | MIPS FPU control registers (see KVM_REG_MIPS_FCR_{IR,CSR} above) have the |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2544 | following id bit patterns:: |
| 2545 | |
James Hogan | 379245c | 2014-12-02 15:48:24 +0000 | [diff] [blame] | 2546 | 0x7020 0000 0003 01 <0:3> <reg:5> |
| 2547 | |
James Hogan | ab86bd6 | 2014-12-02 15:48:24 +0000 | [diff] [blame] | 2548 | MIPS MSA control registers (see KVM_REG_MIPS_MSA_{IR,CSR} above) have the |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2549 | following id bit patterns:: |
| 2550 | |
James Hogan | ab86bd6 | 2014-12-02 15:48:24 +0000 | [diff] [blame] | 2551 | 0x7020 0000 0003 02 <0:3> <reg:5> |
| 2552 | |
James Hogan | c2d2c21 | 2014-07-04 15:11:35 +0100 | [diff] [blame] | 2553 | |
Alexander Graf | e24ed81 | 2011-09-14 10:02:41 +0200 | [diff] [blame] | 2554 | 4.69 KVM_GET_ONE_REG |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2555 | -------------------- |
Alexander Graf | e24ed81 | 2011-09-14 10:02:41 +0200 | [diff] [blame] | 2556 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2557 | :Capability: KVM_CAP_ONE_REG |
| 2558 | :Architectures: all |
| 2559 | :Type: vcpu ioctl |
| 2560 | :Parameters: struct kvm_one_reg (in and out) |
| 2561 | :Returns: 0 on success, negative value on failure |
| 2562 | |
Dave Martin | fe365b4 | 2019-04-12 12:59:47 +0100 | [diff] [blame] | 2563 | Errors include: |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2564 | |
| 2565 | ======== ============================================================ |
| 2566 | ENOENT no such register |
Janosch Frank | 68cf7b1 | 2019-06-14 13:11:21 +0200 | [diff] [blame] | 2567 | EINVAL invalid register ID, or no such register or used with VMs in |
| 2568 | protected virtualization mode on s390 |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2569 | EPERM (arm64) register access not allowed before vcpu finalization |
| 2570 | ======== ============================================================ |
| 2571 | |
Dave Martin | fe365b4 | 2019-04-12 12:59:47 +0100 | [diff] [blame] | 2572 | (These error codes are indicative only: do not rely on a specific error |
| 2573 | code being returned in a specific situation.) |
Alexander Graf | e24ed81 | 2011-09-14 10:02:41 +0200 | [diff] [blame] | 2574 | |
| 2575 | This ioctl allows to receive the value of a single register implemented |
| 2576 | in a vcpu. The register to read is indicated by the "id" field of the |
| 2577 | kvm_one_reg struct passed in. On success, the register value can be found |
| 2578 | at the memory location pointed to by "addr". |
| 2579 | |
| 2580 | The list of registers accessible using this interface is identical to the |
Bharat Bhushan | 2e23270 | 2012-08-15 17:37:13 +0000 | [diff] [blame] | 2581 | list in 4.68. |
Alexander Graf | e24ed81 | 2011-09-14 10:02:41 +0200 | [diff] [blame] | 2582 | |
Jan Kiszka | 414fa98 | 2012-04-24 16:40:15 +0200 | [diff] [blame] | 2583 | |
Eric B Munson | 1c0b28c | 2012-03-10 14:37:27 -0500 | [diff] [blame] | 2584 | 4.70 KVM_KVMCLOCK_CTRL |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2585 | ---------------------- |
Eric B Munson | 1c0b28c | 2012-03-10 14:37:27 -0500 | [diff] [blame] | 2586 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2587 | :Capability: KVM_CAP_KVMCLOCK_CTRL |
| 2588 | :Architectures: Any that implement pvclocks (currently x86 only) |
| 2589 | :Type: vcpu ioctl |
| 2590 | :Parameters: None |
| 2591 | :Returns: 0 on success, -1 on error |
Eric B Munson | 1c0b28c | 2012-03-10 14:37:27 -0500 | [diff] [blame] | 2592 | |
Joshua Abraham | 35c5999 | 2020-05-01 18:36:24 -0400 | [diff] [blame] | 2593 | This ioctl sets a flag accessible to the guest indicating that the specified |
| 2594 | vCPU has been paused by the host userspace. |
| 2595 | |
| 2596 | The host will set a flag in the pvclock structure that is checked from the |
| 2597 | soft lockup watchdog. The flag is part of the pvclock structure that is |
| 2598 | shared between guest and host, specifically the second bit of the flags |
Eric B Munson | 1c0b28c | 2012-03-10 14:37:27 -0500 | [diff] [blame] | 2599 | field of the pvclock_vcpu_time_info structure. It will be set exclusively by |
| 2600 | the host and read/cleared exclusively by the guest. The guest operation of |
Joshua Abraham | 35c5999 | 2020-05-01 18:36:24 -0400 | [diff] [blame] | 2601 | checking and clearing the flag must be an atomic operation so |
Eric B Munson | 1c0b28c | 2012-03-10 14:37:27 -0500 | [diff] [blame] | 2602 | load-link/store-conditional, or equivalent must be used. There are two cases |
| 2603 | where the guest will clear the flag: when the soft lockup watchdog timer resets |
| 2604 | itself or when a soft lockup is detected. This ioctl can be called any time |
| 2605 | after pausing the vcpu, but before it is resumed. |
| 2606 | |
Jan Kiszka | 414fa98 | 2012-04-24 16:40:15 +0200 | [diff] [blame] | 2607 | |
Jan Kiszka | 07975ad | 2012-03-29 21:14:12 +0200 | [diff] [blame] | 2608 | 4.71 KVM_SIGNAL_MSI |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2609 | ------------------- |
Jan Kiszka | 07975ad | 2012-03-29 21:14:12 +0200 | [diff] [blame] | 2610 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2611 | :Capability: KVM_CAP_SIGNAL_MSI |
| 2612 | :Architectures: x86 arm arm64 |
| 2613 | :Type: vm ioctl |
| 2614 | :Parameters: struct kvm_msi (in) |
| 2615 | :Returns: >0 on delivery, 0 if guest blocked the MSI, and -1 on error |
Jan Kiszka | 07975ad | 2012-03-29 21:14:12 +0200 | [diff] [blame] | 2616 | |
| 2617 | Directly inject a MSI message. Only valid with in-kernel irqchip that handles |
| 2618 | MSI messages. |
| 2619 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2620 | :: |
| 2621 | |
| 2622 | struct kvm_msi { |
Jan Kiszka | 07975ad | 2012-03-29 21:14:12 +0200 | [diff] [blame] | 2623 | __u32 address_lo; |
| 2624 | __u32 address_hi; |
| 2625 | __u32 data; |
| 2626 | __u32 flags; |
Andre Przywara | 2b8ddd9 | 2016-07-15 12:43:24 +0100 | [diff] [blame] | 2627 | __u32 devid; |
| 2628 | __u8 pad[12]; |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2629 | }; |
Jan Kiszka | 07975ad | 2012-03-29 21:14:12 +0200 | [diff] [blame] | 2630 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2631 | flags: |
| 2632 | KVM_MSI_VALID_DEVID: devid contains a valid value. The per-VM |
Paolo Bonzini | 6f49b2f | 2016-08-04 13:59:56 +0200 | [diff] [blame] | 2633 | KVM_CAP_MSI_DEVID capability advertises the requirement to provide |
| 2634 | the device ID. If this capability is not available, userspace |
| 2635 | should never set the KVM_MSI_VALID_DEVID flag as the ioctl might fail. |
Andre Przywara | 2b8ddd9 | 2016-07-15 12:43:24 +0100 | [diff] [blame] | 2636 | |
Paolo Bonzini | 6f49b2f | 2016-08-04 13:59:56 +0200 | [diff] [blame] | 2637 | If KVM_MSI_VALID_DEVID is set, devid contains a unique device identifier |
| 2638 | for the device that wrote the MSI message. For PCI, this is usually a |
| 2639 | BFD identifier in the lower 16 bits. |
Jan Kiszka | 07975ad | 2012-03-29 21:14:12 +0200 | [diff] [blame] | 2640 | |
Paolo Bonzini | 055b6ae | 2016-08-04 14:01:05 +0200 | [diff] [blame] | 2641 | On x86, address_hi is ignored unless the KVM_X2APIC_API_USE_32BIT_IDS |
| 2642 | feature of KVM_CAP_X2APIC_API capability is enabled. If it is enabled, |
| 2643 | address_hi bits 31-8 provide bits 31-8 of the destination id. Bits 7-0 of |
| 2644 | address_hi must be zero. |
Radim Krčmář | 37131313 | 2016-07-12 22:09:27 +0200 | [diff] [blame] | 2645 | |
Jan Kiszka | 414fa98 | 2012-04-24 16:40:15 +0200 | [diff] [blame] | 2646 | |
Jan Kiszka | 0589ff6 | 2012-04-24 16:40:16 +0200 | [diff] [blame] | 2647 | 4.71 KVM_CREATE_PIT2 |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2648 | -------------------- |
Jan Kiszka | 0589ff6 | 2012-04-24 16:40:16 +0200 | [diff] [blame] | 2649 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2650 | :Capability: KVM_CAP_PIT2 |
| 2651 | :Architectures: x86 |
| 2652 | :Type: vm ioctl |
| 2653 | :Parameters: struct kvm_pit_config (in) |
| 2654 | :Returns: 0 on success, -1 on error |
Jan Kiszka | 0589ff6 | 2012-04-24 16:40:16 +0200 | [diff] [blame] | 2655 | |
| 2656 | Creates an in-kernel device model for the i8254 PIT. This call is only valid |
| 2657 | after enabling in-kernel irqchip support via KVM_CREATE_IRQCHIP. The following |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2658 | parameters have to be passed:: |
Jan Kiszka | 0589ff6 | 2012-04-24 16:40:16 +0200 | [diff] [blame] | 2659 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2660 | struct kvm_pit_config { |
Jan Kiszka | 0589ff6 | 2012-04-24 16:40:16 +0200 | [diff] [blame] | 2661 | __u32 flags; |
| 2662 | __u32 pad[15]; |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2663 | }; |
Jan Kiszka | 0589ff6 | 2012-04-24 16:40:16 +0200 | [diff] [blame] | 2664 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2665 | Valid flags are:: |
Jan Kiszka | 0589ff6 | 2012-04-24 16:40:16 +0200 | [diff] [blame] | 2666 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2667 | #define KVM_PIT_SPEAKER_DUMMY 1 /* emulate speaker port stub */ |
Jan Kiszka | 0589ff6 | 2012-04-24 16:40:16 +0200 | [diff] [blame] | 2668 | |
Jan Kiszka | b6ddf05 | 2012-04-24 16:40:17 +0200 | [diff] [blame] | 2669 | PIT timer interrupts may use a per-VM kernel thread for injection. If it |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2670 | exists, this thread will have a name of the following pattern:: |
Jan Kiszka | b6ddf05 | 2012-04-24 16:40:17 +0200 | [diff] [blame] | 2671 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2672 | kvm-pit/<owner-process-pid> |
Jan Kiszka | b6ddf05 | 2012-04-24 16:40:17 +0200 | [diff] [blame] | 2673 | |
| 2674 | When running a guest with elevated priorities, the scheduling parameters of |
| 2675 | this thread may have to be adjusted accordingly. |
| 2676 | |
Jan Kiszka | 0589ff6 | 2012-04-24 16:40:16 +0200 | [diff] [blame] | 2677 | This IOCTL replaces the obsolete KVM_CREATE_PIT. |
| 2678 | |
| 2679 | |
| 2680 | 4.72 KVM_GET_PIT2 |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2681 | ----------------- |
Jan Kiszka | 0589ff6 | 2012-04-24 16:40:16 +0200 | [diff] [blame] | 2682 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2683 | :Capability: KVM_CAP_PIT_STATE2 |
| 2684 | :Architectures: x86 |
| 2685 | :Type: vm ioctl |
| 2686 | :Parameters: struct kvm_pit_state2 (out) |
| 2687 | :Returns: 0 on success, -1 on error |
Jan Kiszka | 0589ff6 | 2012-04-24 16:40:16 +0200 | [diff] [blame] | 2688 | |
| 2689 | Retrieves the state of the in-kernel PIT model. Only valid after |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2690 | KVM_CREATE_PIT2. The state is returned in the following structure:: |
Jan Kiszka | 0589ff6 | 2012-04-24 16:40:16 +0200 | [diff] [blame] | 2691 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2692 | struct kvm_pit_state2 { |
Jan Kiszka | 0589ff6 | 2012-04-24 16:40:16 +0200 | [diff] [blame] | 2693 | struct kvm_pit_channel_state channels[3]; |
| 2694 | __u32 flags; |
| 2695 | __u32 reserved[9]; |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2696 | }; |
Jan Kiszka | 0589ff6 | 2012-04-24 16:40:16 +0200 | [diff] [blame] | 2697 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2698 | Valid flags are:: |
Jan Kiszka | 0589ff6 | 2012-04-24 16:40:16 +0200 | [diff] [blame] | 2699 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2700 | /* disable PIT in HPET legacy mode */ |
| 2701 | #define KVM_PIT_FLAGS_HPET_LEGACY 0x00000001 |
Jan Kiszka | 0589ff6 | 2012-04-24 16:40:16 +0200 | [diff] [blame] | 2702 | |
| 2703 | This IOCTL replaces the obsolete KVM_GET_PIT. |
| 2704 | |
| 2705 | |
| 2706 | 4.73 KVM_SET_PIT2 |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2707 | ----------------- |
Jan Kiszka | 0589ff6 | 2012-04-24 16:40:16 +0200 | [diff] [blame] | 2708 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2709 | :Capability: KVM_CAP_PIT_STATE2 |
| 2710 | :Architectures: x86 |
| 2711 | :Type: vm ioctl |
| 2712 | :Parameters: struct kvm_pit_state2 (in) |
| 2713 | :Returns: 0 on success, -1 on error |
Jan Kiszka | 0589ff6 | 2012-04-24 16:40:16 +0200 | [diff] [blame] | 2714 | |
| 2715 | Sets the state of the in-kernel PIT model. Only valid after KVM_CREATE_PIT2. |
| 2716 | See KVM_GET_PIT2 for details on struct kvm_pit_state2. |
| 2717 | |
| 2718 | This IOCTL replaces the obsolete KVM_SET_PIT. |
| 2719 | |
| 2720 | |
Benjamin Herrenschmidt | 5b74716 | 2012-04-26 19:43:42 +0000 | [diff] [blame] | 2721 | 4.74 KVM_PPC_GET_SMMU_INFO |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2722 | -------------------------- |
Benjamin Herrenschmidt | 5b74716 | 2012-04-26 19:43:42 +0000 | [diff] [blame] | 2723 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2724 | :Capability: KVM_CAP_PPC_GET_SMMU_INFO |
| 2725 | :Architectures: powerpc |
| 2726 | :Type: vm ioctl |
| 2727 | :Parameters: None |
| 2728 | :Returns: 0 on success, -1 on error |
Benjamin Herrenschmidt | 5b74716 | 2012-04-26 19:43:42 +0000 | [diff] [blame] | 2729 | |
| 2730 | This populates and returns a structure describing the features of |
| 2731 | the "Server" class MMU emulation supported by KVM. |
Stefan Huber | cc22c35 | 2013-06-05 12:24:37 +0200 | [diff] [blame] | 2732 | This can in turn be used by userspace to generate the appropriate |
Benjamin Herrenschmidt | 5b74716 | 2012-04-26 19:43:42 +0000 | [diff] [blame] | 2733 | device-tree properties for the guest operating system. |
| 2734 | |
Carlos Garcia | c98be0c | 2014-04-04 22:31:00 -0400 | [diff] [blame] | 2735 | The structure contains some global information, followed by an |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2736 | array of supported segment page sizes:: |
Benjamin Herrenschmidt | 5b74716 | 2012-04-26 19:43:42 +0000 | [diff] [blame] | 2737 | |
| 2738 | struct kvm_ppc_smmu_info { |
| 2739 | __u64 flags; |
| 2740 | __u32 slb_size; |
| 2741 | __u32 pad; |
| 2742 | struct kvm_ppc_one_seg_page_size sps[KVM_PPC_PAGE_SIZES_MAX_SZ]; |
| 2743 | }; |
| 2744 | |
| 2745 | The supported flags are: |
| 2746 | |
| 2747 | - KVM_PPC_PAGE_SIZES_REAL: |
| 2748 | When that flag is set, guest page sizes must "fit" the backing |
| 2749 | store page sizes. When not set, any page size in the list can |
| 2750 | be used regardless of how they are backed by userspace. |
| 2751 | |
| 2752 | - KVM_PPC_1T_SEGMENTS |
| 2753 | The emulated MMU supports 1T segments in addition to the |
| 2754 | standard 256M ones. |
| 2755 | |
Paul Mackerras | 901f8c3 | 2018-10-08 14:24:30 +1100 | [diff] [blame] | 2756 | - KVM_PPC_NO_HASH |
| 2757 | This flag indicates that HPT guests are not supported by KVM, |
| 2758 | thus all guests must use radix MMU mode. |
| 2759 | |
Benjamin Herrenschmidt | 5b74716 | 2012-04-26 19:43:42 +0000 | [diff] [blame] | 2760 | The "slb_size" field indicates how many SLB entries are supported |
| 2761 | |
| 2762 | The "sps" array contains 8 entries indicating the supported base |
| 2763 | page sizes for a segment in increasing order. Each entry is defined |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2764 | as follow:: |
Benjamin Herrenschmidt | 5b74716 | 2012-04-26 19:43:42 +0000 | [diff] [blame] | 2765 | |
| 2766 | struct kvm_ppc_one_seg_page_size { |
| 2767 | __u32 page_shift; /* Base page shift of segment (or 0) */ |
| 2768 | __u32 slb_enc; /* SLB encoding for BookS */ |
| 2769 | struct kvm_ppc_one_page_size enc[KVM_PPC_PAGE_SIZES_MAX_SZ]; |
| 2770 | }; |
| 2771 | |
| 2772 | An entry with a "page_shift" of 0 is unused. Because the array is |
| 2773 | organized in increasing order, a lookup can stop when encoutering |
| 2774 | such an entry. |
| 2775 | |
| 2776 | The "slb_enc" field provides the encoding to use in the SLB for the |
| 2777 | page size. The bits are in positions such as the value can directly |
| 2778 | be OR'ed into the "vsid" argument of the slbmte instruction. |
| 2779 | |
| 2780 | The "enc" array is a list which for each of those segment base page |
| 2781 | size provides the list of supported actual page sizes (which can be |
| 2782 | only larger or equal to the base page size), along with the |
Anatol Pomozov | f884ab1 | 2013-05-08 16:56:16 -0700 | [diff] [blame] | 2783 | corresponding encoding in the hash PTE. Similarly, the array is |
Benjamin Herrenschmidt | 5b74716 | 2012-04-26 19:43:42 +0000 | [diff] [blame] | 2784 | 8 entries sorted by increasing sizes and an entry with a "0" shift |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2785 | is an empty entry and a terminator:: |
Benjamin Herrenschmidt | 5b74716 | 2012-04-26 19:43:42 +0000 | [diff] [blame] | 2786 | |
| 2787 | struct kvm_ppc_one_page_size { |
| 2788 | __u32 page_shift; /* Page shift (or 0) */ |
| 2789 | __u32 pte_enc; /* Encoding in the HPTE (>>12) */ |
| 2790 | }; |
| 2791 | |
| 2792 | The "pte_enc" field provides a value that can OR'ed into the hash |
| 2793 | PTE's RPN field (ie, it needs to be shifted left by 12 to OR it |
| 2794 | into the hash PTE second double word). |
| 2795 | |
Alex Williamson | f36992e | 2012-06-29 09:56:16 -0600 | [diff] [blame] | 2796 | 4.75 KVM_IRQFD |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2797 | -------------- |
Alex Williamson | f36992e | 2012-06-29 09:56:16 -0600 | [diff] [blame] | 2798 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2799 | :Capability: KVM_CAP_IRQFD |
| 2800 | :Architectures: x86 s390 arm arm64 |
| 2801 | :Type: vm ioctl |
| 2802 | :Parameters: struct kvm_irqfd (in) |
| 2803 | :Returns: 0 on success, -1 on error |
Alex Williamson | f36992e | 2012-06-29 09:56:16 -0600 | [diff] [blame] | 2804 | |
| 2805 | Allows setting an eventfd to directly trigger a guest interrupt. |
| 2806 | kvm_irqfd.fd specifies the file descriptor to use as the eventfd and |
| 2807 | kvm_irqfd.gsi specifies the irqchip pin toggled by this event. When |
Masanari Iida | 1718003 | 2013-12-22 01:21:23 +0900 | [diff] [blame] | 2808 | an event is triggered on the eventfd, an interrupt is injected into |
Alex Williamson | f36992e | 2012-06-29 09:56:16 -0600 | [diff] [blame] | 2809 | the guest using the specified gsi pin. The irqfd is removed using |
| 2810 | the KVM_IRQFD_FLAG_DEASSIGN flag, specifying both kvm_irqfd.fd |
| 2811 | and kvm_irqfd.gsi. |
| 2812 | |
Alex Williamson | 7a84428 | 2012-09-21 11:58:03 -0600 | [diff] [blame] | 2813 | With KVM_CAP_IRQFD_RESAMPLE, KVM_IRQFD supports a de-assert and notify |
| 2814 | mechanism allowing emulation of level-triggered, irqfd-based |
| 2815 | interrupts. When KVM_IRQFD_FLAG_RESAMPLE is set the user must pass an |
| 2816 | additional eventfd in the kvm_irqfd.resamplefd field. When operating |
| 2817 | in resample mode, posting of an interrupt through kvm_irq.fd asserts |
| 2818 | the specified gsi in the irqchip. When the irqchip is resampled, such |
Masanari Iida | 1718003 | 2013-12-22 01:21:23 +0900 | [diff] [blame] | 2819 | as from an EOI, the gsi is de-asserted and the user is notified via |
Alex Williamson | 7a84428 | 2012-09-21 11:58:03 -0600 | [diff] [blame] | 2820 | kvm_irqfd.resamplefd. It is the user's responsibility to re-queue |
| 2821 | the interrupt if the device making use of it still requires service. |
| 2822 | Note that closing the resamplefd is not sufficient to disable the |
| 2823 | irqfd. The KVM_IRQFD_FLAG_RESAMPLE is only necessary on assignment |
| 2824 | and need not be specified with KVM_IRQFD_FLAG_DEASSIGN. |
| 2825 | |
Eric Auger | 180ae7b | 2016-07-22 16:20:41 +0000 | [diff] [blame] | 2826 | On arm/arm64, gsi routing being supported, the following can happen: |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2827 | |
Eric Auger | 180ae7b | 2016-07-22 16:20:41 +0000 | [diff] [blame] | 2828 | - in case no routing entry is associated to this gsi, injection fails |
| 2829 | - in case the gsi is associated to an irqchip routing entry, |
| 2830 | irqchip.pin + 32 corresponds to the injected SPI ID. |
Eric Auger | 995a0ee | 2016-07-22 16:20:42 +0000 | [diff] [blame] | 2831 | - in case the gsi is associated to an MSI routing entry, the MSI |
| 2832 | message and device ID are translated into an LPI (support restricted |
| 2833 | to GICv3 ITS in-kernel emulation). |
Eric Auger | 174178f | 2015-03-04 11:14:36 +0100 | [diff] [blame] | 2834 | |
Linus Torvalds | 5fecc9d | 2012-07-24 12:01:20 -0700 | [diff] [blame] | 2835 | 4.76 KVM_PPC_ALLOCATE_HTAB |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2836 | -------------------------- |
Paul Mackerras | 32fad28 | 2012-05-04 02:32:53 +0000 | [diff] [blame] | 2837 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2838 | :Capability: KVM_CAP_PPC_ALLOC_HTAB |
| 2839 | :Architectures: powerpc |
| 2840 | :Type: vm ioctl |
| 2841 | :Parameters: Pointer to u32 containing hash table order (in/out) |
| 2842 | :Returns: 0 on success, -1 on error |
Paul Mackerras | 32fad28 | 2012-05-04 02:32:53 +0000 | [diff] [blame] | 2843 | |
| 2844 | This requests the host kernel to allocate an MMU hash table for a |
| 2845 | guest using the PAPR paravirtualization interface. This only does |
| 2846 | anything if the kernel is configured to use the Book 3S HV style of |
| 2847 | virtualization. Otherwise the capability doesn't exist and the ioctl |
| 2848 | returns an ENOTTY error. The rest of this description assumes Book 3S |
| 2849 | HV. |
| 2850 | |
| 2851 | There must be no vcpus running when this ioctl is called; if there |
| 2852 | are, it will do nothing and return an EBUSY error. |
| 2853 | |
| 2854 | The parameter is a pointer to a 32-bit unsigned integer variable |
| 2855 | containing the order (log base 2) of the desired size of the hash |
| 2856 | table, which must be between 18 and 46. On successful return from the |
David Gibson | f98a8bf | 2016-12-20 16:49:03 +1100 | [diff] [blame] | 2857 | ioctl, the value will not be changed by the kernel. |
Paul Mackerras | 32fad28 | 2012-05-04 02:32:53 +0000 | [diff] [blame] | 2858 | |
| 2859 | If no hash table has been allocated when any vcpu is asked to run |
| 2860 | (with the KVM_RUN ioctl), the host kernel will allocate a |
| 2861 | default-sized hash table (16 MB). |
| 2862 | |
| 2863 | If this ioctl is called when a hash table has already been allocated, |
David Gibson | f98a8bf | 2016-12-20 16:49:03 +1100 | [diff] [blame] | 2864 | with a different order from the existing hash table, the existing hash |
| 2865 | table will be freed and a new one allocated. If this is ioctl is |
| 2866 | called when a hash table has already been allocated of the same order |
| 2867 | as specified, the kernel will clear out the existing hash table (zero |
| 2868 | all HPTEs). In either case, if the guest is using the virtualized |
| 2869 | real-mode area (VRMA) facility, the kernel will re-create the VMRA |
| 2870 | HPTEs on the next KVM_RUN of any vcpu. |
Paul Mackerras | 32fad28 | 2012-05-04 02:32:53 +0000 | [diff] [blame] | 2871 | |
Cornelia Huck | 416ad65 | 2012-10-02 16:25:37 +0200 | [diff] [blame] | 2872 | 4.77 KVM_S390_INTERRUPT |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2873 | ----------------------- |
Cornelia Huck | 416ad65 | 2012-10-02 16:25:37 +0200 | [diff] [blame] | 2874 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2875 | :Capability: basic |
| 2876 | :Architectures: s390 |
| 2877 | :Type: vm ioctl, vcpu ioctl |
| 2878 | :Parameters: struct kvm_s390_interrupt (in) |
| 2879 | :Returns: 0 on success, -1 on error |
Cornelia Huck | 416ad65 | 2012-10-02 16:25:37 +0200 | [diff] [blame] | 2880 | |
| 2881 | Allows to inject an interrupt to the guest. Interrupts can be floating |
| 2882 | (vm ioctl) or per cpu (vcpu ioctl), depending on the interrupt type. |
| 2883 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2884 | Interrupt parameters are passed via kvm_s390_interrupt:: |
Cornelia Huck | 416ad65 | 2012-10-02 16:25:37 +0200 | [diff] [blame] | 2885 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2886 | struct kvm_s390_interrupt { |
Cornelia Huck | 416ad65 | 2012-10-02 16:25:37 +0200 | [diff] [blame] | 2887 | __u32 type; |
| 2888 | __u32 parm; |
| 2889 | __u64 parm64; |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2890 | }; |
Cornelia Huck | 416ad65 | 2012-10-02 16:25:37 +0200 | [diff] [blame] | 2891 | |
| 2892 | type can be one of the following: |
| 2893 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2894 | KVM_S390_SIGP_STOP (vcpu) |
| 2895 | - sigp stop; optional flags in parm |
| 2896 | KVM_S390_PROGRAM_INT (vcpu) |
| 2897 | - program check; code in parm |
| 2898 | KVM_S390_SIGP_SET_PREFIX (vcpu) |
| 2899 | - sigp set prefix; prefix address in parm |
| 2900 | KVM_S390_RESTART (vcpu) |
| 2901 | - restart |
| 2902 | KVM_S390_INT_CLOCK_COMP (vcpu) |
| 2903 | - clock comparator interrupt |
| 2904 | KVM_S390_INT_CPU_TIMER (vcpu) |
| 2905 | - CPU timer interrupt |
| 2906 | KVM_S390_INT_VIRTIO (vm) |
| 2907 | - virtio external interrupt; external interrupt |
| 2908 | parameters in parm and parm64 |
| 2909 | KVM_S390_INT_SERVICE (vm) |
| 2910 | - sclp external interrupt; sclp parameter in parm |
| 2911 | KVM_S390_INT_EMERGENCY (vcpu) |
| 2912 | - sigp emergency; source cpu in parm |
| 2913 | KVM_S390_INT_EXTERNAL_CALL (vcpu) |
| 2914 | - sigp external call; source cpu in parm |
| 2915 | KVM_S390_INT_IO(ai,cssid,ssid,schid) (vm) |
| 2916 | - compound value to indicate an |
| 2917 | I/O interrupt (ai - adapter interrupt; cssid,ssid,schid - subchannel); |
| 2918 | I/O interruption parameters in parm (subchannel) and parm64 (intparm, |
| 2919 | interruption subclass) |
| 2920 | KVM_S390_MCHK (vm, vcpu) |
| 2921 | - machine check interrupt; cr 14 bits in parm, machine check interrupt |
| 2922 | code in parm64 (note that machine checks needing further payload are not |
| 2923 | supported by this ioctl) |
Cornelia Huck | 416ad65 | 2012-10-02 16:25:37 +0200 | [diff] [blame] | 2924 | |
Sean Christopherson | 5e12490 | 2019-02-15 12:48:38 -0800 | [diff] [blame] | 2925 | This is an asynchronous vcpu ioctl and can be invoked from any thread. |
Cornelia Huck | 416ad65 | 2012-10-02 16:25:37 +0200 | [diff] [blame] | 2926 | |
Paul Mackerras | a293292 | 2012-11-19 22:57:20 +0000 | [diff] [blame] | 2927 | 4.78 KVM_PPC_GET_HTAB_FD |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2928 | ------------------------ |
Paul Mackerras | a293292 | 2012-11-19 22:57:20 +0000 | [diff] [blame] | 2929 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2930 | :Capability: KVM_CAP_PPC_HTAB_FD |
| 2931 | :Architectures: powerpc |
| 2932 | :Type: vm ioctl |
| 2933 | :Parameters: Pointer to struct kvm_get_htab_fd (in) |
| 2934 | :Returns: file descriptor number (>= 0) on success, -1 on error |
Paul Mackerras | a293292 | 2012-11-19 22:57:20 +0000 | [diff] [blame] | 2935 | |
| 2936 | This returns a file descriptor that can be used either to read out the |
| 2937 | entries in the guest's hashed page table (HPT), or to write entries to |
| 2938 | initialize the HPT. The returned fd can only be written to if the |
| 2939 | KVM_GET_HTAB_WRITE bit is set in the flags field of the argument, and |
| 2940 | can only be read if that bit is clear. The argument struct looks like |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2941 | this:: |
Paul Mackerras | a293292 | 2012-11-19 22:57:20 +0000 | [diff] [blame] | 2942 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2943 | /* For KVM_PPC_GET_HTAB_FD */ |
| 2944 | struct kvm_get_htab_fd { |
Paul Mackerras | a293292 | 2012-11-19 22:57:20 +0000 | [diff] [blame] | 2945 | __u64 flags; |
| 2946 | __u64 start_index; |
| 2947 | __u64 reserved[2]; |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2948 | }; |
Paul Mackerras | a293292 | 2012-11-19 22:57:20 +0000 | [diff] [blame] | 2949 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2950 | /* Values for kvm_get_htab_fd.flags */ |
| 2951 | #define KVM_GET_HTAB_BOLTED_ONLY ((__u64)0x1) |
| 2952 | #define KVM_GET_HTAB_WRITE ((__u64)0x2) |
Paul Mackerras | a293292 | 2012-11-19 22:57:20 +0000 | [diff] [blame] | 2953 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2954 | The 'start_index' field gives the index in the HPT of the entry at |
Paul Mackerras | a293292 | 2012-11-19 22:57:20 +0000 | [diff] [blame] | 2955 | which to start reading. It is ignored when writing. |
| 2956 | |
| 2957 | Reads on the fd will initially supply information about all |
| 2958 | "interesting" HPT entries. Interesting entries are those with the |
| 2959 | bolted bit set, if the KVM_GET_HTAB_BOLTED_ONLY bit is set, otherwise |
| 2960 | all entries. When the end of the HPT is reached, the read() will |
| 2961 | return. If read() is called again on the fd, it will start again from |
| 2962 | the beginning of the HPT, but will only return HPT entries that have |
| 2963 | changed since they were last read. |
| 2964 | |
| 2965 | Data read or written is structured as a header (8 bytes) followed by a |
| 2966 | series of valid HPT entries (16 bytes) each. The header indicates how |
| 2967 | many valid HPT entries there are and how many invalid entries follow |
| 2968 | the valid entries. The invalid entries are not represented explicitly |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2969 | in the stream. The header format is:: |
Paul Mackerras | a293292 | 2012-11-19 22:57:20 +0000 | [diff] [blame] | 2970 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2971 | struct kvm_get_htab_header { |
Paul Mackerras | a293292 | 2012-11-19 22:57:20 +0000 | [diff] [blame] | 2972 | __u32 index; |
| 2973 | __u16 n_valid; |
| 2974 | __u16 n_invalid; |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2975 | }; |
Paul Mackerras | a293292 | 2012-11-19 22:57:20 +0000 | [diff] [blame] | 2976 | |
| 2977 | Writes to the fd create HPT entries starting at the index given in the |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2978 | header; first 'n_valid' valid entries with contents from the data |
| 2979 | written, then 'n_invalid' invalid entries, invalidating any previously |
Paul Mackerras | a293292 | 2012-11-19 22:57:20 +0000 | [diff] [blame] | 2980 | valid entries found. |
| 2981 | |
Scott Wood | 852b6d5 | 2013-04-12 14:08:42 +0000 | [diff] [blame] | 2982 | 4.79 KVM_CREATE_DEVICE |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2983 | ---------------------- |
Scott Wood | 852b6d5 | 2013-04-12 14:08:42 +0000 | [diff] [blame] | 2984 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2985 | :Capability: KVM_CAP_DEVICE_CTRL |
| 2986 | :Type: vm ioctl |
| 2987 | :Parameters: struct kvm_create_device (in/out) |
| 2988 | :Returns: 0 on success, -1 on error |
| 2989 | |
Scott Wood | 852b6d5 | 2013-04-12 14:08:42 +0000 | [diff] [blame] | 2990 | Errors: |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2991 | |
| 2992 | ====== ======================================================= |
| 2993 | ENODEV The device type is unknown or unsupported |
| 2994 | EEXIST Device already created, and this type of device may not |
Scott Wood | 852b6d5 | 2013-04-12 14:08:42 +0000 | [diff] [blame] | 2995 | be instantiated multiple times |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 2996 | ====== ======================================================= |
Scott Wood | 852b6d5 | 2013-04-12 14:08:42 +0000 | [diff] [blame] | 2997 | |
| 2998 | Other error conditions may be defined by individual device types or |
| 2999 | have their standard meanings. |
| 3000 | |
| 3001 | Creates an emulated device in the kernel. The file descriptor returned |
| 3002 | in fd can be used with KVM_SET/GET/HAS_DEVICE_ATTR. |
| 3003 | |
| 3004 | If the KVM_CREATE_DEVICE_TEST flag is set, only test whether the |
| 3005 | device type is supported (not necessarily whether it can be created |
| 3006 | in the current vm). |
| 3007 | |
| 3008 | Individual devices should not define flags. Attributes should be used |
| 3009 | for specifying any behavior that is not implied by the device type |
| 3010 | number. |
| 3011 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3012 | :: |
| 3013 | |
| 3014 | struct kvm_create_device { |
Scott Wood | 852b6d5 | 2013-04-12 14:08:42 +0000 | [diff] [blame] | 3015 | __u32 type; /* in: KVM_DEV_TYPE_xxx */ |
| 3016 | __u32 fd; /* out: device handle */ |
| 3017 | __u32 flags; /* in: KVM_CREATE_DEVICE_xxx */ |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3018 | }; |
Scott Wood | 852b6d5 | 2013-04-12 14:08:42 +0000 | [diff] [blame] | 3019 | |
| 3020 | 4.80 KVM_SET_DEVICE_ATTR/KVM_GET_DEVICE_ATTR |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3021 | -------------------------------------------- |
Scott Wood | 852b6d5 | 2013-04-12 14:08:42 +0000 | [diff] [blame] | 3022 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3023 | :Capability: KVM_CAP_DEVICE_CTRL, KVM_CAP_VM_ATTRIBUTES for vm device, |
| 3024 | KVM_CAP_VCPU_ATTRIBUTES for vcpu device |
| 3025 | :Type: device ioctl, vm ioctl, vcpu ioctl |
| 3026 | :Parameters: struct kvm_device_attr |
| 3027 | :Returns: 0 on success, -1 on error |
| 3028 | |
Scott Wood | 852b6d5 | 2013-04-12 14:08:42 +0000 | [diff] [blame] | 3029 | Errors: |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3030 | |
| 3031 | ===== ============================================================= |
| 3032 | ENXIO The group or attribute is unknown/unsupported for this device |
David Hildenbrand | f9cbd9b | 2016-03-03 09:48:47 +0100 | [diff] [blame] | 3033 | or hardware support is missing. |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3034 | EPERM The attribute cannot (currently) be accessed this way |
Scott Wood | 852b6d5 | 2013-04-12 14:08:42 +0000 | [diff] [blame] | 3035 | (e.g. read-only attribute, or attribute that only makes |
| 3036 | sense when the device is in a different state) |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3037 | ===== ============================================================= |
Scott Wood | 852b6d5 | 2013-04-12 14:08:42 +0000 | [diff] [blame] | 3038 | |
| 3039 | Other error conditions may be defined by individual device types. |
| 3040 | |
| 3041 | Gets/sets a specified piece of device configuration and/or state. The |
| 3042 | semantics are device-specific. See individual device documentation in |
| 3043 | the "devices" directory. As with ONE_REG, the size of the data |
| 3044 | transferred is defined by the particular attribute. |
| 3045 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3046 | :: |
| 3047 | |
| 3048 | struct kvm_device_attr { |
Scott Wood | 852b6d5 | 2013-04-12 14:08:42 +0000 | [diff] [blame] | 3049 | __u32 flags; /* no flags currently defined */ |
| 3050 | __u32 group; /* device-defined */ |
| 3051 | __u64 attr; /* group-defined */ |
| 3052 | __u64 addr; /* userspace address of attr data */ |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3053 | }; |
Scott Wood | 852b6d5 | 2013-04-12 14:08:42 +0000 | [diff] [blame] | 3054 | |
| 3055 | 4.81 KVM_HAS_DEVICE_ATTR |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3056 | ------------------------ |
Scott Wood | 852b6d5 | 2013-04-12 14:08:42 +0000 | [diff] [blame] | 3057 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3058 | :Capability: KVM_CAP_DEVICE_CTRL, KVM_CAP_VM_ATTRIBUTES for vm device, |
| 3059 | KVM_CAP_VCPU_ATTRIBUTES for vcpu device |
| 3060 | :Type: device ioctl, vm ioctl, vcpu ioctl |
| 3061 | :Parameters: struct kvm_device_attr |
| 3062 | :Returns: 0 on success, -1 on error |
| 3063 | |
Scott Wood | 852b6d5 | 2013-04-12 14:08:42 +0000 | [diff] [blame] | 3064 | Errors: |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3065 | |
| 3066 | ===== ============================================================= |
| 3067 | ENXIO The group or attribute is unknown/unsupported for this device |
David Hildenbrand | f9cbd9b | 2016-03-03 09:48:47 +0100 | [diff] [blame] | 3068 | or hardware support is missing. |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3069 | ===== ============================================================= |
Scott Wood | 852b6d5 | 2013-04-12 14:08:42 +0000 | [diff] [blame] | 3070 | |
| 3071 | Tests whether a device supports a particular attribute. A successful |
| 3072 | return indicates the attribute is implemented. It does not necessarily |
| 3073 | indicate that the attribute can be read or written in the device's |
| 3074 | current state. "addr" is ignored. |
Alex Williamson | f36992e | 2012-06-29 09:56:16 -0600 | [diff] [blame] | 3075 | |
Alexey Kardashevskiy | d8968f1 | 2013-06-19 11:42:07 +1000 | [diff] [blame] | 3076 | 4.82 KVM_ARM_VCPU_INIT |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3077 | ---------------------- |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 3078 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3079 | :Capability: basic |
| 3080 | :Architectures: arm, arm64 |
| 3081 | :Type: vcpu ioctl |
| 3082 | :Parameters: struct kvm_vcpu_init (in) |
| 3083 | :Returns: 0 on success; -1 on error |
| 3084 | |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 3085 | Errors: |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3086 | |
| 3087 | ====== ================================================================= |
| 3088 | EINVAL the target is unknown, or the combination of features is invalid. |
| 3089 | ENOENT a features bit specified is unknown. |
| 3090 | ====== ================================================================= |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 3091 | |
| 3092 | This tells KVM what type of CPU to present to the guest, and what |
| 3093 | optional features it should have. This will cause a reset of the cpu |
| 3094 | registers to their initial values. If this is not called, KVM_RUN will |
| 3095 | return ENOEXEC for that vcpu. |
| 3096 | |
| 3097 | Note that because some registers reflect machine topology, all vcpus |
| 3098 | should be created before this ioctl is invoked. |
| 3099 | |
Christoffer Dall | f7fa034d | 2014-10-16 16:40:53 +0200 | [diff] [blame] | 3100 | Userspace can call this function multiple times for a given vcpu, including |
| 3101 | after the vcpu has been run. This will reset the vcpu to its initial |
| 3102 | state. All calls to this function after the initial call must use the same |
| 3103 | target and same set of feature flags, otherwise EINVAL will be returned. |
| 3104 | |
Marc Zyngier | aa024c2 | 2013-01-20 18:28:13 -0500 | [diff] [blame] | 3105 | Possible features: |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3106 | |
Marc Zyngier | aa024c2 | 2013-01-20 18:28:13 -0500 | [diff] [blame] | 3107 | - KVM_ARM_VCPU_POWER_OFF: Starts the CPU in a power-off state. |
Christoffer Dall | 3ad8b3d | 2014-10-16 16:14:43 +0200 | [diff] [blame] | 3108 | Depends on KVM_CAP_ARM_PSCI. If not set, the CPU will be powered on |
| 3109 | and execute guest code when KVM_RUN is called. |
Marc Zyngier | 379e04c7 | 2013-04-02 17:46:31 +0100 | [diff] [blame] | 3110 | - KVM_ARM_VCPU_EL1_32BIT: Starts the CPU in a 32bit mode. |
| 3111 | Depends on KVM_CAP_ARM_EL1_32BIT (arm64 only). |
Marc Zyngier | 85bd0ba | 2018-01-21 16:42:56 +0000 | [diff] [blame] | 3112 | - KVM_ARM_VCPU_PSCI_0_2: Emulate PSCI v0.2 (or a future revision |
| 3113 | backward compatible with v0.2) for the CPU. |
Anup Patel | 50bb0c9 | 2014-04-29 11:24:17 +0530 | [diff] [blame] | 3114 | Depends on KVM_CAP_ARM_PSCI_0_2. |
Shannon Zhao | 808e738 | 2016-01-11 22:46:15 +0800 | [diff] [blame] | 3115 | - KVM_ARM_VCPU_PMU_V3: Emulate PMUv3 for the CPU. |
| 3116 | Depends on KVM_CAP_ARM_PMU_V3. |
Marc Zyngier | aa024c2 | 2013-01-20 18:28:13 -0500 | [diff] [blame] | 3117 | |
Amit Daniel Kachhap | a22fa32 | 2019-04-23 10:12:36 +0530 | [diff] [blame] | 3118 | - KVM_ARM_VCPU_PTRAUTH_ADDRESS: Enables Address Pointer authentication |
| 3119 | for arm64 only. |
Amit Daniel Kachhap | a243c16 | 2019-04-23 10:12:37 +0530 | [diff] [blame] | 3120 | Depends on KVM_CAP_ARM_PTRAUTH_ADDRESS. |
| 3121 | If KVM_CAP_ARM_PTRAUTH_ADDRESS and KVM_CAP_ARM_PTRAUTH_GENERIC are |
| 3122 | both present, then both KVM_ARM_VCPU_PTRAUTH_ADDRESS and |
| 3123 | KVM_ARM_VCPU_PTRAUTH_GENERIC must be requested or neither must be |
| 3124 | requested. |
Amit Daniel Kachhap | a22fa32 | 2019-04-23 10:12:36 +0530 | [diff] [blame] | 3125 | |
| 3126 | - KVM_ARM_VCPU_PTRAUTH_GENERIC: Enables Generic Pointer authentication |
| 3127 | for arm64 only. |
Amit Daniel Kachhap | a243c16 | 2019-04-23 10:12:37 +0530 | [diff] [blame] | 3128 | Depends on KVM_CAP_ARM_PTRAUTH_GENERIC. |
| 3129 | If KVM_CAP_ARM_PTRAUTH_ADDRESS and KVM_CAP_ARM_PTRAUTH_GENERIC are |
| 3130 | both present, then both KVM_ARM_VCPU_PTRAUTH_ADDRESS and |
| 3131 | KVM_ARM_VCPU_PTRAUTH_GENERIC must be requested or neither must be |
| 3132 | requested. |
Amit Daniel Kachhap | a22fa32 | 2019-04-23 10:12:36 +0530 | [diff] [blame] | 3133 | |
Dave Martin | 50036ad | 2018-09-28 14:39:27 +0100 | [diff] [blame] | 3134 | - KVM_ARM_VCPU_SVE: Enables SVE for the CPU (arm64 only). |
| 3135 | Depends on KVM_CAP_ARM_SVE. |
| 3136 | Requires KVM_ARM_VCPU_FINALIZE(KVM_ARM_VCPU_SVE): |
| 3137 | |
| 3138 | * After KVM_ARM_VCPU_INIT: |
| 3139 | |
| 3140 | - KVM_REG_ARM64_SVE_VLS may be read using KVM_GET_ONE_REG: the |
| 3141 | initial value of this pseudo-register indicates the best set of |
| 3142 | vector lengths possible for a vcpu on this host. |
| 3143 | |
| 3144 | * Before KVM_ARM_VCPU_FINALIZE(KVM_ARM_VCPU_SVE): |
| 3145 | |
| 3146 | - KVM_RUN and KVM_GET_REG_LIST are not available; |
| 3147 | |
| 3148 | - KVM_GET_ONE_REG and KVM_SET_ONE_REG cannot be used to access |
| 3149 | the scalable archietctural SVE registers |
| 3150 | KVM_REG_ARM64_SVE_ZREG(), KVM_REG_ARM64_SVE_PREG() or |
| 3151 | KVM_REG_ARM64_SVE_FFR; |
| 3152 | |
| 3153 | - KVM_REG_ARM64_SVE_VLS may optionally be written using |
| 3154 | KVM_SET_ONE_REG, to modify the set of vector lengths available |
| 3155 | for the vcpu. |
| 3156 | |
| 3157 | * After KVM_ARM_VCPU_FINALIZE(KVM_ARM_VCPU_SVE): |
| 3158 | |
| 3159 | - the KVM_REG_ARM64_SVE_VLS pseudo-register is immutable, and can |
| 3160 | no longer be written using KVM_SET_ONE_REG. |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 3161 | |
Anup Patel | 740edfc | 2013-09-30 14:20:08 +0530 | [diff] [blame] | 3162 | 4.83 KVM_ARM_PREFERRED_TARGET |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3163 | ----------------------------- |
Anup Patel | 740edfc | 2013-09-30 14:20:08 +0530 | [diff] [blame] | 3164 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3165 | :Capability: basic |
| 3166 | :Architectures: arm, arm64 |
| 3167 | :Type: vm ioctl |
Randy Dunlap | a84b757 | 2020-07-07 11:04:14 -0700 | [diff] [blame] | 3168 | :Parameters: struct kvm_vcpu_init (out) |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3169 | :Returns: 0 on success; -1 on error |
| 3170 | |
Anup Patel | 740edfc | 2013-09-30 14:20:08 +0530 | [diff] [blame] | 3171 | Errors: |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3172 | |
| 3173 | ====== ========================================== |
| 3174 | ENODEV no preferred target available for the host |
| 3175 | ====== ========================================== |
Anup Patel | 740edfc | 2013-09-30 14:20:08 +0530 | [diff] [blame] | 3176 | |
| 3177 | This queries KVM for preferred CPU target type which can be emulated |
| 3178 | by KVM on underlying host. |
| 3179 | |
| 3180 | The ioctl returns struct kvm_vcpu_init instance containing information |
| 3181 | about preferred CPU target type and recommended features for it. The |
| 3182 | kvm_vcpu_init->features bitmap returned will have feature bits set if |
| 3183 | the preferred target recommends setting these features, but this is |
| 3184 | not mandatory. |
| 3185 | |
| 3186 | The information returned by this ioctl can be used to prepare an instance |
| 3187 | of struct kvm_vcpu_init for KVM_ARM_VCPU_INIT ioctl which will result in |
Randy Dunlap | 3747c5d | 2020-07-03 14:29:06 -0700 | [diff] [blame] | 3188 | VCPU matching underlying host. |
Anup Patel | 740edfc | 2013-09-30 14:20:08 +0530 | [diff] [blame] | 3189 | |
| 3190 | |
| 3191 | 4.84 KVM_GET_REG_LIST |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3192 | --------------------- |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 3193 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3194 | :Capability: basic |
| 3195 | :Architectures: arm, arm64, mips |
| 3196 | :Type: vcpu ioctl |
| 3197 | :Parameters: struct kvm_reg_list (in/out) |
| 3198 | :Returns: 0 on success; -1 on error |
| 3199 | |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 3200 | Errors: |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 3201 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3202 | ===== ============================================================== |
| 3203 | E2BIG the reg index list is too big to fit in the array specified by |
| 3204 | the user (the number required will be written into n). |
| 3205 | ===== ============================================================== |
| 3206 | |
| 3207 | :: |
| 3208 | |
| 3209 | struct kvm_reg_list { |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 3210 | __u64 n; /* number of registers in reg[] */ |
| 3211 | __u64 reg[0]; |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3212 | }; |
Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 3213 | |
| 3214 | This ioctl returns the guest registers that are supported for the |
| 3215 | KVM_GET_ONE_REG/KVM_SET_ONE_REG calls. |
| 3216 | |
Christoffer Dall | ce01e4e | 2013-09-23 14:55:56 -0700 | [diff] [blame] | 3217 | |
| 3218 | 4.85 KVM_ARM_SET_DEVICE_ADDR (deprecated) |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3219 | ----------------------------------------- |
Christoffer Dall | 3401d546 | 2013-01-23 13:18:04 -0500 | [diff] [blame] | 3220 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3221 | :Capability: KVM_CAP_ARM_SET_DEVICE_ADDR |
| 3222 | :Architectures: arm, arm64 |
| 3223 | :Type: vm ioctl |
| 3224 | :Parameters: struct kvm_arm_device_address (in) |
| 3225 | :Returns: 0 on success, -1 on error |
| 3226 | |
Christoffer Dall | 3401d546 | 2013-01-23 13:18:04 -0500 | [diff] [blame] | 3227 | Errors: |
Christoffer Dall | 3401d546 | 2013-01-23 13:18:04 -0500 | [diff] [blame] | 3228 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3229 | ====== ============================================ |
| 3230 | ENODEV The device id is unknown |
| 3231 | ENXIO Device not supported on current system |
| 3232 | EEXIST Address already set |
| 3233 | E2BIG Address outside guest physical address space |
| 3234 | EBUSY Address overlaps with other device range |
| 3235 | ====== ============================================ |
| 3236 | |
| 3237 | :: |
| 3238 | |
| 3239 | struct kvm_arm_device_addr { |
Christoffer Dall | 3401d546 | 2013-01-23 13:18:04 -0500 | [diff] [blame] | 3240 | __u64 id; |
| 3241 | __u64 addr; |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3242 | }; |
Christoffer Dall | 3401d546 | 2013-01-23 13:18:04 -0500 | [diff] [blame] | 3243 | |
| 3244 | Specify a device address in the guest's physical address space where guests |
| 3245 | can access emulated or directly exposed devices, which the host kernel needs |
| 3246 | to know about. The id field is an architecture specific identifier for a |
| 3247 | specific device. |
| 3248 | |
Marc Zyngier | 379e04c7 | 2013-04-02 17:46:31 +0100 | [diff] [blame] | 3249 | ARM/arm64 divides the id field into two parts, a device id and an |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3250 | address type id specific to the individual device:: |
Christoffer Dall | 3401d546 | 2013-01-23 13:18:04 -0500 | [diff] [blame] | 3251 | |
| 3252 | bits: | 63 ... 32 | 31 ... 16 | 15 ... 0 | |
| 3253 | field: | 0x00000000 | device id | addr type id | |
| 3254 | |
Marc Zyngier | 379e04c7 | 2013-04-02 17:46:31 +0100 | [diff] [blame] | 3255 | ARM/arm64 currently only require this when using the in-kernel GIC |
| 3256 | support for the hardware VGIC features, using KVM_ARM_DEVICE_VGIC_V2 |
| 3257 | as the device id. When setting the base address for the guest's |
| 3258 | mapping of the VGIC virtual CPU and distributor interface, the ioctl |
| 3259 | must be called after calling KVM_CREATE_IRQCHIP, but before calling |
| 3260 | KVM_RUN on any of the VCPUs. Calling this ioctl twice for any of the |
| 3261 | base addresses will return -EEXIST. |
Christoffer Dall | 3401d546 | 2013-01-23 13:18:04 -0500 | [diff] [blame] | 3262 | |
Christoffer Dall | ce01e4e | 2013-09-23 14:55:56 -0700 | [diff] [blame] | 3263 | Note, this IOCTL is deprecated and the more flexible SET/GET_DEVICE_ATTR API |
| 3264 | should be used instead. |
| 3265 | |
| 3266 | |
Anup Patel | 740edfc | 2013-09-30 14:20:08 +0530 | [diff] [blame] | 3267 | 4.86 KVM_PPC_RTAS_DEFINE_TOKEN |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3268 | ------------------------------ |
Michael Ellerman | 8e591cb | 2013-04-17 20:30:00 +0000 | [diff] [blame] | 3269 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3270 | :Capability: KVM_CAP_PPC_RTAS |
| 3271 | :Architectures: ppc |
| 3272 | :Type: vm ioctl |
| 3273 | :Parameters: struct kvm_rtas_token_args |
| 3274 | :Returns: 0 on success, -1 on error |
Michael Ellerman | 8e591cb | 2013-04-17 20:30:00 +0000 | [diff] [blame] | 3275 | |
| 3276 | Defines a token value for a RTAS (Run Time Abstraction Services) |
| 3277 | service in order to allow it to be handled in the kernel. The |
| 3278 | argument struct gives the name of the service, which must be the name |
| 3279 | of a service that has a kernel-side implementation. If the token |
| 3280 | value is non-zero, it will be associated with that service, and |
| 3281 | subsequent RTAS calls by the guest specifying that token will be |
| 3282 | handled by the kernel. If the token value is 0, then any token |
| 3283 | associated with the service will be forgotten, and subsequent RTAS |
| 3284 | calls by the guest for that service will be passed to userspace to be |
| 3285 | handled. |
| 3286 | |
Alex Bennée | 4bd9d34 | 2014-09-09 17:27:18 +0100 | [diff] [blame] | 3287 | 4.87 KVM_SET_GUEST_DEBUG |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3288 | ------------------------ |
Alex Bennée | 4bd9d34 | 2014-09-09 17:27:18 +0100 | [diff] [blame] | 3289 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3290 | :Capability: KVM_CAP_SET_GUEST_DEBUG |
| 3291 | :Architectures: x86, s390, ppc, arm64 |
| 3292 | :Type: vcpu ioctl |
| 3293 | :Parameters: struct kvm_guest_debug (in) |
| 3294 | :Returns: 0 on success; -1 on error |
Alex Bennée | 4bd9d34 | 2014-09-09 17:27:18 +0100 | [diff] [blame] | 3295 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3296 | :: |
| 3297 | |
| 3298 | struct kvm_guest_debug { |
Alex Bennée | 4bd9d34 | 2014-09-09 17:27:18 +0100 | [diff] [blame] | 3299 | __u32 control; |
| 3300 | __u32 pad; |
| 3301 | struct kvm_guest_debug_arch arch; |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3302 | }; |
Alex Bennée | 4bd9d34 | 2014-09-09 17:27:18 +0100 | [diff] [blame] | 3303 | |
| 3304 | Set up the processor specific debug registers and configure vcpu for |
| 3305 | handling guest debug events. There are two parts to the structure, the |
| 3306 | first a control bitfield indicates the type of debug events to handle |
| 3307 | when running. Common control bits are: |
| 3308 | |
| 3309 | - KVM_GUESTDBG_ENABLE: guest debugging is enabled |
| 3310 | - KVM_GUESTDBG_SINGLESTEP: the next run should single-step |
| 3311 | |
| 3312 | The top 16 bits of the control field are architecture specific control |
| 3313 | flags which can include the following: |
| 3314 | |
Alex Bennée | 4bd611c | 2015-07-07 17:29:57 +0100 | [diff] [blame] | 3315 | - KVM_GUESTDBG_USE_SW_BP: using software breakpoints [x86, arm64] |
Alex Bennée | 834bf88 | 2015-07-07 17:30:02 +0100 | [diff] [blame] | 3316 | - KVM_GUESTDBG_USE_HW_BP: using hardware breakpoints [x86, s390, arm64] |
Alex Bennée | 4bd9d34 | 2014-09-09 17:27:18 +0100 | [diff] [blame] | 3317 | - KVM_GUESTDBG_INJECT_DB: inject DB type exception [x86] |
| 3318 | - KVM_GUESTDBG_INJECT_BP: inject BP type exception [x86] |
| 3319 | - KVM_GUESTDBG_EXIT_PENDING: trigger an immediate guest exit [s390] |
| 3320 | |
| 3321 | For example KVM_GUESTDBG_USE_SW_BP indicates that software breakpoints |
| 3322 | are enabled in memory so we need to ensure breakpoint exceptions are |
| 3323 | correctly trapped and the KVM run loop exits at the breakpoint and not |
| 3324 | running off into the normal guest vector. For KVM_GUESTDBG_USE_HW_BP |
| 3325 | we need to ensure the guest vCPUs architecture specific registers are |
| 3326 | updated to the correct (supplied) values. |
| 3327 | |
| 3328 | The second part of the structure is architecture specific and |
| 3329 | typically contains a set of debug registers. |
| 3330 | |
Alex Bennée | 834bf88 | 2015-07-07 17:30:02 +0100 | [diff] [blame] | 3331 | For arm64 the number of debug registers is implementation defined and |
| 3332 | can be determined by querying the KVM_CAP_GUEST_DEBUG_HW_BPS and |
| 3333 | KVM_CAP_GUEST_DEBUG_HW_WPS capabilities which return a positive number |
| 3334 | indicating the number of supported registers. |
| 3335 | |
Fabiano Rosas | 1a9167a | 2019-06-19 13:01:27 -0300 | [diff] [blame] | 3336 | For ppc, the KVM_CAP_PPC_GUEST_DEBUG_SSTEP capability indicates whether |
| 3337 | the single-step debug event (KVM_GUESTDBG_SINGLESTEP) is supported. |
| 3338 | |
Alex Bennée | 4bd9d34 | 2014-09-09 17:27:18 +0100 | [diff] [blame] | 3339 | When debug events exit the main run loop with the reason |
| 3340 | KVM_EXIT_DEBUG with the kvm_debug_exit_arch part of the kvm_run |
| 3341 | structure containing architecture specific debug information. |
Christoffer Dall | 3401d546 | 2013-01-23 13:18:04 -0500 | [diff] [blame] | 3342 | |
Alex Bennée | 209cf19 | 2014-09-09 17:27:19 +0100 | [diff] [blame] | 3343 | 4.88 KVM_GET_EMULATED_CPUID |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3344 | --------------------------- |
Alex Bennée | 209cf19 | 2014-09-09 17:27:19 +0100 | [diff] [blame] | 3345 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3346 | :Capability: KVM_CAP_EXT_EMUL_CPUID |
| 3347 | :Architectures: x86 |
| 3348 | :Type: system ioctl |
| 3349 | :Parameters: struct kvm_cpuid2 (in/out) |
| 3350 | :Returns: 0 on success, -1 on error |
Alex Bennée | 209cf19 | 2014-09-09 17:27:19 +0100 | [diff] [blame] | 3351 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3352 | :: |
| 3353 | |
| 3354 | struct kvm_cpuid2 { |
Alex Bennée | 209cf19 | 2014-09-09 17:27:19 +0100 | [diff] [blame] | 3355 | __u32 nent; |
| 3356 | __u32 flags; |
| 3357 | struct kvm_cpuid_entry2 entries[0]; |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3358 | }; |
Alex Bennée | 209cf19 | 2014-09-09 17:27:19 +0100 | [diff] [blame] | 3359 | |
| 3360 | The member 'flags' is used for passing flags from userspace. |
| 3361 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3362 | :: |
Alex Bennée | 209cf19 | 2014-09-09 17:27:19 +0100 | [diff] [blame] | 3363 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3364 | #define KVM_CPUID_FLAG_SIGNIFCANT_INDEX BIT(0) |
Sean Christopherson | 7ff6c03 | 2020-03-02 15:56:51 -0800 | [diff] [blame] | 3365 | #define KVM_CPUID_FLAG_STATEFUL_FUNC BIT(1) /* deprecated */ |
| 3366 | #define KVM_CPUID_FLAG_STATE_READ_NEXT BIT(2) /* deprecated */ |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3367 | |
| 3368 | struct kvm_cpuid_entry2 { |
Alex Bennée | 209cf19 | 2014-09-09 17:27:19 +0100 | [diff] [blame] | 3369 | __u32 function; |
| 3370 | __u32 index; |
| 3371 | __u32 flags; |
| 3372 | __u32 eax; |
| 3373 | __u32 ebx; |
| 3374 | __u32 ecx; |
| 3375 | __u32 edx; |
| 3376 | __u32 padding[3]; |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3377 | }; |
Alex Bennée | 209cf19 | 2014-09-09 17:27:19 +0100 | [diff] [blame] | 3378 | |
| 3379 | This ioctl returns x86 cpuid features which are emulated by |
| 3380 | kvm.Userspace can use the information returned by this ioctl to query |
| 3381 | which features are emulated by kvm instead of being present natively. |
| 3382 | |
| 3383 | Userspace invokes KVM_GET_EMULATED_CPUID by passing a kvm_cpuid2 |
| 3384 | structure with the 'nent' field indicating the number of entries in |
| 3385 | the variable-size array 'entries'. If the number of entries is too low |
| 3386 | to describe the cpu capabilities, an error (E2BIG) is returned. If the |
| 3387 | number is too high, the 'nent' field is adjusted and an error (ENOMEM) |
| 3388 | is returned. If the number is just right, the 'nent' field is adjusted |
| 3389 | to the number of valid entries in the 'entries' array, which is then |
| 3390 | filled. |
| 3391 | |
| 3392 | The entries returned are the set CPUID bits of the respective features |
| 3393 | which kvm emulates, as returned by the CPUID instruction, with unknown |
| 3394 | or unsupported feature bits cleared. |
| 3395 | |
| 3396 | Features like x2apic, for example, may not be present in the host cpu |
| 3397 | but are exposed by kvm in KVM_GET_SUPPORTED_CPUID because they can be |
| 3398 | emulated efficiently and thus not included here. |
| 3399 | |
| 3400 | The fields in each entry are defined as follows: |
| 3401 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3402 | function: |
| 3403 | the eax value used to obtain the entry |
| 3404 | index: |
| 3405 | the ecx value used to obtain the entry (for entries that are |
Alex Bennée | 209cf19 | 2014-09-09 17:27:19 +0100 | [diff] [blame] | 3406 | affected by ecx) |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3407 | flags: |
| 3408 | an OR of zero or more of the following: |
| 3409 | |
Alex Bennée | 209cf19 | 2014-09-09 17:27:19 +0100 | [diff] [blame] | 3410 | KVM_CPUID_FLAG_SIGNIFCANT_INDEX: |
| 3411 | if the index field is valid |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3412 | |
| 3413 | eax, ebx, ecx, edx: |
| 3414 | |
| 3415 | the values returned by the cpuid instruction for |
Alex Bennée | 209cf19 | 2014-09-09 17:27:19 +0100 | [diff] [blame] | 3416 | this function/index combination |
| 3417 | |
Thomas Huth | 41408c28 | 2015-02-06 15:01:21 +0100 | [diff] [blame] | 3418 | 4.89 KVM_S390_MEM_OP |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3419 | -------------------- |
Thomas Huth | 41408c28 | 2015-02-06 15:01:21 +0100 | [diff] [blame] | 3420 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3421 | :Capability: KVM_CAP_S390_MEM_OP |
| 3422 | :Architectures: s390 |
| 3423 | :Type: vcpu ioctl |
| 3424 | :Parameters: struct kvm_s390_mem_op (in) |
| 3425 | :Returns: = 0 on success, |
| 3426 | < 0 on generic error (e.g. -EFAULT or -ENOMEM), |
| 3427 | > 0 if an exception occurred while walking the page tables |
Thomas Huth | 41408c28 | 2015-02-06 15:01:21 +0100 | [diff] [blame] | 3428 | |
Masanari Iida | 5d4f6f3 | 2015-10-04 00:46:21 +0900 | [diff] [blame] | 3429 | Read or write data from/to the logical (virtual) memory of a VCPU. |
Thomas Huth | 41408c28 | 2015-02-06 15:01:21 +0100 | [diff] [blame] | 3430 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3431 | Parameters are specified via the following structure:: |
Thomas Huth | 41408c28 | 2015-02-06 15:01:21 +0100 | [diff] [blame] | 3432 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3433 | struct kvm_s390_mem_op { |
Thomas Huth | 41408c28 | 2015-02-06 15:01:21 +0100 | [diff] [blame] | 3434 | __u64 gaddr; /* the guest address */ |
| 3435 | __u64 flags; /* flags */ |
| 3436 | __u32 size; /* amount of bytes */ |
| 3437 | __u32 op; /* type of operation */ |
| 3438 | __u64 buf; /* buffer in userspace */ |
| 3439 | __u8 ar; /* the access register number */ |
| 3440 | __u8 reserved[31]; /* should be set to 0 */ |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3441 | }; |
Thomas Huth | 41408c28 | 2015-02-06 15:01:21 +0100 | [diff] [blame] | 3442 | |
| 3443 | The type of operation is specified in the "op" field. It is either |
| 3444 | KVM_S390_MEMOP_LOGICAL_READ for reading from logical memory space or |
| 3445 | KVM_S390_MEMOP_LOGICAL_WRITE for writing to logical memory space. The |
| 3446 | KVM_S390_MEMOP_F_CHECK_ONLY flag can be set in the "flags" field to check |
| 3447 | whether the corresponding memory access would create an access exception |
| 3448 | (without touching the data in the memory at the destination). In case an |
| 3449 | access exception occurred while walking the MMU tables of the guest, the |
| 3450 | ioctl returns a positive error number to indicate the type of exception. |
| 3451 | This exception is also raised directly at the corresponding VCPU if the |
| 3452 | flag KVM_S390_MEMOP_F_INJECT_EXCEPTION is set in the "flags" field. |
| 3453 | |
| 3454 | The start address of the memory region has to be specified in the "gaddr" |
Cornelia Huck | b4d863c | 2019-08-29 14:47:46 +0200 | [diff] [blame] | 3455 | field, and the length of the region in the "size" field (which must not |
| 3456 | be 0). The maximum value for "size" can be obtained by checking the |
| 3457 | KVM_CAP_S390_MEM_OP capability. "buf" is the buffer supplied by the |
| 3458 | userspace application where the read data should be written to for |
| 3459 | KVM_S390_MEMOP_LOGICAL_READ, or where the data that should be written is |
| 3460 | stored for a KVM_S390_MEMOP_LOGICAL_WRITE. When KVM_S390_MEMOP_F_CHECK_ONLY |
| 3461 | is specified, "buf" is unused and can be NULL. "ar" designates the access |
| 3462 | register number to be used; the valid range is 0..15. |
Thomas Huth | 41408c28 | 2015-02-06 15:01:21 +0100 | [diff] [blame] | 3463 | |
| 3464 | The "reserved" field is meant for future extensions. It is not used by |
| 3465 | KVM with the currently defined set of flags. |
| 3466 | |
Jason J. Herne | 30ee2a9 | 2014-09-23 09:23:01 -0400 | [diff] [blame] | 3467 | 4.90 KVM_S390_GET_SKEYS |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3468 | ----------------------- |
Jason J. Herne | 30ee2a9 | 2014-09-23 09:23:01 -0400 | [diff] [blame] | 3469 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3470 | :Capability: KVM_CAP_S390_SKEYS |
| 3471 | :Architectures: s390 |
| 3472 | :Type: vm ioctl |
| 3473 | :Parameters: struct kvm_s390_skeys |
| 3474 | :Returns: 0 on success, KVM_S390_GET_KEYS_NONE if guest is not using storage |
| 3475 | keys, negative value on error |
Jason J. Herne | 30ee2a9 | 2014-09-23 09:23:01 -0400 | [diff] [blame] | 3476 | |
| 3477 | This ioctl is used to get guest storage key values on the s390 |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3478 | architecture. The ioctl takes parameters via the kvm_s390_skeys struct:: |
Jason J. Herne | 30ee2a9 | 2014-09-23 09:23:01 -0400 | [diff] [blame] | 3479 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3480 | struct kvm_s390_skeys { |
Jason J. Herne | 30ee2a9 | 2014-09-23 09:23:01 -0400 | [diff] [blame] | 3481 | __u64 start_gfn; |
| 3482 | __u64 count; |
| 3483 | __u64 skeydata_addr; |
| 3484 | __u32 flags; |
| 3485 | __u32 reserved[9]; |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3486 | }; |
Jason J. Herne | 30ee2a9 | 2014-09-23 09:23:01 -0400 | [diff] [blame] | 3487 | |
| 3488 | The start_gfn field is the number of the first guest frame whose storage keys |
| 3489 | you want to get. |
| 3490 | |
| 3491 | The count field is the number of consecutive frames (starting from start_gfn) |
| 3492 | whose storage keys to get. The count field must be at least 1 and the maximum |
| 3493 | allowed value is defined as KVM_S390_SKEYS_ALLOC_MAX. Values outside this range |
| 3494 | will cause the ioctl to return -EINVAL. |
| 3495 | |
| 3496 | The skeydata_addr field is the address to a buffer large enough to hold count |
| 3497 | bytes. This buffer will be filled with storage key data by the ioctl. |
| 3498 | |
| 3499 | 4.91 KVM_S390_SET_SKEYS |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3500 | ----------------------- |
Jason J. Herne | 30ee2a9 | 2014-09-23 09:23:01 -0400 | [diff] [blame] | 3501 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3502 | :Capability: KVM_CAP_S390_SKEYS |
| 3503 | :Architectures: s390 |
| 3504 | :Type: vm ioctl |
| 3505 | :Parameters: struct kvm_s390_skeys |
| 3506 | :Returns: 0 on success, negative value on error |
Jason J. Herne | 30ee2a9 | 2014-09-23 09:23:01 -0400 | [diff] [blame] | 3507 | |
| 3508 | This ioctl is used to set guest storage key values on the s390 |
| 3509 | architecture. The ioctl takes parameters via the kvm_s390_skeys struct. |
| 3510 | See section on KVM_S390_GET_SKEYS for struct definition. |
| 3511 | |
| 3512 | The start_gfn field is the number of the first guest frame whose storage keys |
| 3513 | you want to set. |
| 3514 | |
| 3515 | The count field is the number of consecutive frames (starting from start_gfn) |
| 3516 | whose storage keys to get. The count field must be at least 1 and the maximum |
| 3517 | allowed value is defined as KVM_S390_SKEYS_ALLOC_MAX. Values outside this range |
| 3518 | will cause the ioctl to return -EINVAL. |
| 3519 | |
| 3520 | The skeydata_addr field is the address to a buffer containing count bytes of |
| 3521 | storage keys. Each byte in the buffer will be set as the storage key for a |
| 3522 | single frame starting at start_gfn for count frames. |
| 3523 | |
| 3524 | Note: If any architecturally invalid key value is found in the given data then |
| 3525 | the ioctl will return -EINVAL. |
| 3526 | |
Jens Freimann | 47b43c5 | 2014-11-11 20:57:06 +0100 | [diff] [blame] | 3527 | 4.92 KVM_S390_IRQ |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3528 | ----------------- |
Jens Freimann | 47b43c5 | 2014-11-11 20:57:06 +0100 | [diff] [blame] | 3529 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3530 | :Capability: KVM_CAP_S390_INJECT_IRQ |
| 3531 | :Architectures: s390 |
| 3532 | :Type: vcpu ioctl |
| 3533 | :Parameters: struct kvm_s390_irq (in) |
| 3534 | :Returns: 0 on success, -1 on error |
| 3535 | |
Jens Freimann | 47b43c5 | 2014-11-11 20:57:06 +0100 | [diff] [blame] | 3536 | Errors: |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3537 | |
| 3538 | |
| 3539 | ====== ================================================================= |
| 3540 | EINVAL interrupt type is invalid |
| 3541 | type is KVM_S390_SIGP_STOP and flag parameter is invalid value, |
Jens Freimann | 47b43c5 | 2014-11-11 20:57:06 +0100 | [diff] [blame] | 3542 | type is KVM_S390_INT_EXTERNAL_CALL and code is bigger |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3543 | than the maximum of VCPUs |
| 3544 | EBUSY type is KVM_S390_SIGP_SET_PREFIX and vcpu is not stopped, |
| 3545 | type is KVM_S390_SIGP_STOP and a stop irq is already pending, |
Jens Freimann | 47b43c5 | 2014-11-11 20:57:06 +0100 | [diff] [blame] | 3546 | type is KVM_S390_INT_EXTERNAL_CALL and an external call interrupt |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3547 | is already pending |
| 3548 | ====== ================================================================= |
Jens Freimann | 47b43c5 | 2014-11-11 20:57:06 +0100 | [diff] [blame] | 3549 | |
| 3550 | Allows to inject an interrupt to the guest. |
| 3551 | |
| 3552 | Using struct kvm_s390_irq as a parameter allows |
| 3553 | to inject additional payload which is not |
| 3554 | possible via KVM_S390_INTERRUPT. |
| 3555 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3556 | Interrupt parameters are passed via kvm_s390_irq:: |
Jens Freimann | 47b43c5 | 2014-11-11 20:57:06 +0100 | [diff] [blame] | 3557 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3558 | struct kvm_s390_irq { |
Jens Freimann | 47b43c5 | 2014-11-11 20:57:06 +0100 | [diff] [blame] | 3559 | __u64 type; |
| 3560 | union { |
| 3561 | struct kvm_s390_io_info io; |
| 3562 | struct kvm_s390_ext_info ext; |
| 3563 | struct kvm_s390_pgm_info pgm; |
| 3564 | struct kvm_s390_emerg_info emerg; |
| 3565 | struct kvm_s390_extcall_info extcall; |
| 3566 | struct kvm_s390_prefix_info prefix; |
| 3567 | struct kvm_s390_stop_info stop; |
| 3568 | struct kvm_s390_mchk_info mchk; |
| 3569 | char reserved[64]; |
| 3570 | } u; |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3571 | }; |
Jens Freimann | 47b43c5 | 2014-11-11 20:57:06 +0100 | [diff] [blame] | 3572 | |
| 3573 | type can be one of the following: |
| 3574 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3575 | - KVM_S390_SIGP_STOP - sigp stop; parameter in .stop |
| 3576 | - KVM_S390_PROGRAM_INT - program check; parameters in .pgm |
| 3577 | - KVM_S390_SIGP_SET_PREFIX - sigp set prefix; parameters in .prefix |
| 3578 | - KVM_S390_RESTART - restart; no parameters |
| 3579 | - KVM_S390_INT_CLOCK_COMP - clock comparator interrupt; no parameters |
| 3580 | - KVM_S390_INT_CPU_TIMER - CPU timer interrupt; no parameters |
| 3581 | - KVM_S390_INT_EMERGENCY - sigp emergency; parameters in .emerg |
| 3582 | - KVM_S390_INT_EXTERNAL_CALL - sigp external call; parameters in .extcall |
| 3583 | - KVM_S390_MCHK - machine check interrupt; parameters in .mchk |
Jens Freimann | 47b43c5 | 2014-11-11 20:57:06 +0100 | [diff] [blame] | 3584 | |
Sean Christopherson | 5e12490 | 2019-02-15 12:48:38 -0800 | [diff] [blame] | 3585 | This is an asynchronous vcpu ioctl and can be invoked from any thread. |
Jens Freimann | 47b43c5 | 2014-11-11 20:57:06 +0100 | [diff] [blame] | 3586 | |
Jens Freimann | 816c766 | 2014-11-24 17:13:46 +0100 | [diff] [blame] | 3587 | 4.94 KVM_S390_GET_IRQ_STATE |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3588 | --------------------------- |
Jens Freimann | 816c766 | 2014-11-24 17:13:46 +0100 | [diff] [blame] | 3589 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3590 | :Capability: KVM_CAP_S390_IRQ_STATE |
| 3591 | :Architectures: s390 |
| 3592 | :Type: vcpu ioctl |
| 3593 | :Parameters: struct kvm_s390_irq_state (out) |
| 3594 | :Returns: >= number of bytes copied into buffer, |
| 3595 | -EINVAL if buffer size is 0, |
| 3596 | -ENOBUFS if buffer size is too small to fit all pending interrupts, |
| 3597 | -EFAULT if the buffer address was invalid |
Jens Freimann | 816c766 | 2014-11-24 17:13:46 +0100 | [diff] [blame] | 3598 | |
| 3599 | This ioctl allows userspace to retrieve the complete state of all currently |
| 3600 | pending interrupts in a single buffer. Use cases include migration |
| 3601 | and introspection. The parameter structure contains the address of a |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3602 | userspace buffer and its length:: |
Jens Freimann | 816c766 | 2014-11-24 17:13:46 +0100 | [diff] [blame] | 3603 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3604 | struct kvm_s390_irq_state { |
Jens Freimann | 816c766 | 2014-11-24 17:13:46 +0100 | [diff] [blame] | 3605 | __u64 buf; |
Christian Borntraeger | bb64da9 | 2017-11-21 16:02:52 +0100 | [diff] [blame] | 3606 | __u32 flags; /* will stay unused for compatibility reasons */ |
Jens Freimann | 816c766 | 2014-11-24 17:13:46 +0100 | [diff] [blame] | 3607 | __u32 len; |
Christian Borntraeger | bb64da9 | 2017-11-21 16:02:52 +0100 | [diff] [blame] | 3608 | __u32 reserved[4]; /* will stay unused for compatibility reasons */ |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3609 | }; |
Jens Freimann | 816c766 | 2014-11-24 17:13:46 +0100 | [diff] [blame] | 3610 | |
| 3611 | Userspace passes in the above struct and for each pending interrupt a |
| 3612 | struct kvm_s390_irq is copied to the provided buffer. |
| 3613 | |
Christian Borntraeger | bb64da9 | 2017-11-21 16:02:52 +0100 | [diff] [blame] | 3614 | The structure contains a flags and a reserved field for future extensions. As |
| 3615 | the kernel never checked for flags == 0 and QEMU never pre-zeroed flags and |
| 3616 | reserved, these fields can not be used in the future without breaking |
| 3617 | compatibility. |
| 3618 | |
Jens Freimann | 816c766 | 2014-11-24 17:13:46 +0100 | [diff] [blame] | 3619 | If -ENOBUFS is returned the buffer provided was too small and userspace |
| 3620 | may retry with a bigger buffer. |
| 3621 | |
| 3622 | 4.95 KVM_S390_SET_IRQ_STATE |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3623 | --------------------------- |
Jens Freimann | 816c766 | 2014-11-24 17:13:46 +0100 | [diff] [blame] | 3624 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3625 | :Capability: KVM_CAP_S390_IRQ_STATE |
| 3626 | :Architectures: s390 |
| 3627 | :Type: vcpu ioctl |
| 3628 | :Parameters: struct kvm_s390_irq_state (in) |
| 3629 | :Returns: 0 on success, |
| 3630 | -EFAULT if the buffer address was invalid, |
| 3631 | -EINVAL for an invalid buffer length (see below), |
| 3632 | -EBUSY if there were already interrupts pending, |
| 3633 | errors occurring when actually injecting the |
Jens Freimann | 816c766 | 2014-11-24 17:13:46 +0100 | [diff] [blame] | 3634 | interrupt. See KVM_S390_IRQ. |
| 3635 | |
| 3636 | This ioctl allows userspace to set the complete state of all cpu-local |
| 3637 | interrupts currently pending for the vcpu. It is intended for restoring |
| 3638 | interrupt state after a migration. The input parameter is a userspace buffer |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3639 | containing a struct kvm_s390_irq_state:: |
Jens Freimann | 816c766 | 2014-11-24 17:13:46 +0100 | [diff] [blame] | 3640 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3641 | struct kvm_s390_irq_state { |
Jens Freimann | 816c766 | 2014-11-24 17:13:46 +0100 | [diff] [blame] | 3642 | __u64 buf; |
Christian Borntraeger | bb64da9 | 2017-11-21 16:02:52 +0100 | [diff] [blame] | 3643 | __u32 flags; /* will stay unused for compatibility reasons */ |
Jens Freimann | 816c766 | 2014-11-24 17:13:46 +0100 | [diff] [blame] | 3644 | __u32 len; |
Christian Borntraeger | bb64da9 | 2017-11-21 16:02:52 +0100 | [diff] [blame] | 3645 | __u32 reserved[4]; /* will stay unused for compatibility reasons */ |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3646 | }; |
Jens Freimann | 816c766 | 2014-11-24 17:13:46 +0100 | [diff] [blame] | 3647 | |
Christian Borntraeger | bb64da9 | 2017-11-21 16:02:52 +0100 | [diff] [blame] | 3648 | The restrictions for flags and reserved apply as well. |
| 3649 | (see KVM_S390_GET_IRQ_STATE) |
| 3650 | |
Jens Freimann | 816c766 | 2014-11-24 17:13:46 +0100 | [diff] [blame] | 3651 | The userspace memory referenced by buf contains a struct kvm_s390_irq |
| 3652 | for each interrupt to be injected into the guest. |
| 3653 | If one of the interrupts could not be injected for some reason the |
| 3654 | ioctl aborts. |
| 3655 | |
| 3656 | len must be a multiple of sizeof(struct kvm_s390_irq). It must be > 0 |
| 3657 | and it must not exceed (max_vcpus + 32) * sizeof(struct kvm_s390_irq), |
| 3658 | which is the maximum number of possibly pending cpu-local interrupts. |
Jens Freimann | 47b43c5 | 2014-11-11 20:57:06 +0100 | [diff] [blame] | 3659 | |
Alexey Kardashevskiy | ed8e5a2 | 2016-01-19 16:12:28 +1100 | [diff] [blame] | 3660 | 4.96 KVM_SMI |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3661 | ------------ |
Paolo Bonzini | f077825 | 2015-04-01 15:06:40 +0200 | [diff] [blame] | 3662 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3663 | :Capability: KVM_CAP_X86_SMM |
| 3664 | :Architectures: x86 |
| 3665 | :Type: vcpu ioctl |
| 3666 | :Parameters: none |
| 3667 | :Returns: 0 on success, -1 on error |
Paolo Bonzini | f077825 | 2015-04-01 15:06:40 +0200 | [diff] [blame] | 3668 | |
| 3669 | Queues an SMI on the thread's vcpu. |
| 3670 | |
Alexey Kardashevskiy | d3695aa | 2016-02-15 12:55:09 +1100 | [diff] [blame] | 3671 | 4.97 KVM_CAP_PPC_MULTITCE |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3672 | ------------------------- |
Alexey Kardashevskiy | d3695aa | 2016-02-15 12:55:09 +1100 | [diff] [blame] | 3673 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3674 | :Capability: KVM_CAP_PPC_MULTITCE |
| 3675 | :Architectures: ppc |
| 3676 | :Type: vm |
Alexey Kardashevskiy | d3695aa | 2016-02-15 12:55:09 +1100 | [diff] [blame] | 3677 | |
| 3678 | This capability means the kernel is capable of handling hypercalls |
| 3679 | H_PUT_TCE_INDIRECT and H_STUFF_TCE without passing those into the user |
| 3680 | space. This significantly accelerates DMA operations for PPC KVM guests. |
| 3681 | User space should expect that its handlers for these hypercalls |
| 3682 | are not going to be called if user space previously registered LIOBN |
| 3683 | in KVM (via KVM_CREATE_SPAPR_TCE or similar calls). |
| 3684 | |
| 3685 | In order to enable H_PUT_TCE_INDIRECT and H_STUFF_TCE use in the guest, |
| 3686 | user space might have to advertise it for the guest. For example, |
| 3687 | IBM pSeries (sPAPR) guest starts using them if "hcall-multi-tce" is |
| 3688 | present in the "ibm,hypertas-functions" device-tree property. |
| 3689 | |
| 3690 | The hypercalls mentioned above may or may not be processed successfully |
| 3691 | in the kernel based fast path. If they can not be handled by the kernel, |
| 3692 | they will get passed on to user space. So user space still has to have |
| 3693 | an implementation for these despite the in kernel acceleration. |
| 3694 | |
| 3695 | This capability is always enabled. |
| 3696 | |
Alexey Kardashevskiy | 58ded42 | 2016-03-01 17:54:40 +1100 | [diff] [blame] | 3697 | 4.98 KVM_CREATE_SPAPR_TCE_64 |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3698 | ---------------------------- |
Alexey Kardashevskiy | 58ded42 | 2016-03-01 17:54:40 +1100 | [diff] [blame] | 3699 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3700 | :Capability: KVM_CAP_SPAPR_TCE_64 |
| 3701 | :Architectures: powerpc |
| 3702 | :Type: vm ioctl |
| 3703 | :Parameters: struct kvm_create_spapr_tce_64 (in) |
| 3704 | :Returns: file descriptor for manipulating the created TCE table |
Alexey Kardashevskiy | 58ded42 | 2016-03-01 17:54:40 +1100 | [diff] [blame] | 3705 | |
| 3706 | This is an extension for KVM_CAP_SPAPR_TCE which only supports 32bit |
| 3707 | windows, described in 4.62 KVM_CREATE_SPAPR_TCE |
| 3708 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3709 | This capability uses extended struct in ioctl interface:: |
Alexey Kardashevskiy | 58ded42 | 2016-03-01 17:54:40 +1100 | [diff] [blame] | 3710 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3711 | /* for KVM_CAP_SPAPR_TCE_64 */ |
| 3712 | struct kvm_create_spapr_tce_64 { |
Alexey Kardashevskiy | 58ded42 | 2016-03-01 17:54:40 +1100 | [diff] [blame] | 3713 | __u64 liobn; |
| 3714 | __u32 page_shift; |
| 3715 | __u32 flags; |
| 3716 | __u64 offset; /* in pages */ |
| 3717 | __u64 size; /* in pages */ |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3718 | }; |
Alexey Kardashevskiy | 58ded42 | 2016-03-01 17:54:40 +1100 | [diff] [blame] | 3719 | |
| 3720 | The aim of extension is to support an additional bigger DMA window with |
| 3721 | a variable page size. |
| 3722 | KVM_CREATE_SPAPR_TCE_64 receives a 64bit window size, an IOMMU page shift and |
| 3723 | a bus offset of the corresponding DMA window, @size and @offset are numbers |
| 3724 | of IOMMU pages. |
| 3725 | |
| 3726 | @flags are not used at the moment. |
| 3727 | |
| 3728 | The rest of functionality is identical to KVM_CREATE_SPAPR_TCE. |
| 3729 | |
David Gibson | ccc4df4 | 2016-12-20 16:48:57 +1100 | [diff] [blame] | 3730 | 4.99 KVM_REINJECT_CONTROL |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3731 | ------------------------- |
Radim Krčmář | 107d44a2 | 2016-03-02 22:56:53 +0100 | [diff] [blame] | 3732 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3733 | :Capability: KVM_CAP_REINJECT_CONTROL |
| 3734 | :Architectures: x86 |
| 3735 | :Type: vm ioctl |
| 3736 | :Parameters: struct kvm_reinject_control (in) |
| 3737 | :Returns: 0 on success, |
Radim Krčmář | 107d44a2 | 2016-03-02 22:56:53 +0100 | [diff] [blame] | 3738 | -EFAULT if struct kvm_reinject_control cannot be read, |
| 3739 | -ENXIO if KVM_CREATE_PIT or KVM_CREATE_PIT2 didn't succeed earlier. |
| 3740 | |
| 3741 | i8254 (PIT) has two modes, reinject and !reinject. The default is reinject, |
| 3742 | where KVM queues elapsed i8254 ticks and monitors completion of interrupt from |
| 3743 | vector(s) that i8254 injects. Reinject mode dequeues a tick and injects its |
| 3744 | interrupt whenever there isn't a pending interrupt from i8254. |
| 3745 | !reinject mode injects an interrupt as soon as a tick arrives. |
| 3746 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3747 | :: |
| 3748 | |
| 3749 | struct kvm_reinject_control { |
Radim Krčmář | 107d44a2 | 2016-03-02 22:56:53 +0100 | [diff] [blame] | 3750 | __u8 pit_reinject; |
| 3751 | __u8 reserved[31]; |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3752 | }; |
Radim Krčmář | 107d44a2 | 2016-03-02 22:56:53 +0100 | [diff] [blame] | 3753 | |
| 3754 | pit_reinject = 0 (!reinject mode) is recommended, unless running an old |
| 3755 | operating system that uses the PIT for timing (e.g. Linux 2.4.x). |
| 3756 | |
David Gibson | ccc4df4 | 2016-12-20 16:48:57 +1100 | [diff] [blame] | 3757 | 4.100 KVM_PPC_CONFIGURE_V3_MMU |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3758 | ------------------------------ |
Paul Mackerras | c927013 | 2017-01-30 21:21:41 +1100 | [diff] [blame] | 3759 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3760 | :Capability: KVM_CAP_PPC_RADIX_MMU or KVM_CAP_PPC_HASH_MMU_V3 |
| 3761 | :Architectures: ppc |
| 3762 | :Type: vm ioctl |
| 3763 | :Parameters: struct kvm_ppc_mmuv3_cfg (in) |
| 3764 | :Returns: 0 on success, |
Paul Mackerras | c927013 | 2017-01-30 21:21:41 +1100 | [diff] [blame] | 3765 | -EFAULT if struct kvm_ppc_mmuv3_cfg cannot be read, |
| 3766 | -EINVAL if the configuration is invalid |
| 3767 | |
| 3768 | This ioctl controls whether the guest will use radix or HPT (hashed |
| 3769 | page table) translation, and sets the pointer to the process table for |
| 3770 | the guest. |
| 3771 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3772 | :: |
| 3773 | |
| 3774 | struct kvm_ppc_mmuv3_cfg { |
Paul Mackerras | c927013 | 2017-01-30 21:21:41 +1100 | [diff] [blame] | 3775 | __u64 flags; |
| 3776 | __u64 process_table; |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3777 | }; |
Paul Mackerras | c927013 | 2017-01-30 21:21:41 +1100 | [diff] [blame] | 3778 | |
| 3779 | There are two bits that can be set in flags; KVM_PPC_MMUV3_RADIX and |
| 3780 | KVM_PPC_MMUV3_GTSE. KVM_PPC_MMUV3_RADIX, if set, configures the guest |
| 3781 | to use radix tree translation, and if clear, to use HPT translation. |
| 3782 | KVM_PPC_MMUV3_GTSE, if set and if KVM permits it, configures the guest |
| 3783 | to be able to use the global TLB and SLB invalidation instructions; |
| 3784 | if clear, the guest may not use these instructions. |
| 3785 | |
| 3786 | The process_table field specifies the address and size of the guest |
| 3787 | process table, which is in the guest's space. This field is formatted |
| 3788 | as the second doubleword of the partition table entry, as defined in |
| 3789 | the Power ISA V3.00, Book III section 5.7.6.1. |
| 3790 | |
David Gibson | ccc4df4 | 2016-12-20 16:48:57 +1100 | [diff] [blame] | 3791 | 4.101 KVM_PPC_GET_RMMU_INFO |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3792 | --------------------------- |
Paul Mackerras | c927013 | 2017-01-30 21:21:41 +1100 | [diff] [blame] | 3793 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3794 | :Capability: KVM_CAP_PPC_RADIX_MMU |
| 3795 | :Architectures: ppc |
| 3796 | :Type: vm ioctl |
| 3797 | :Parameters: struct kvm_ppc_rmmu_info (out) |
| 3798 | :Returns: 0 on success, |
Paul Mackerras | c927013 | 2017-01-30 21:21:41 +1100 | [diff] [blame] | 3799 | -EFAULT if struct kvm_ppc_rmmu_info cannot be written, |
| 3800 | -EINVAL if no useful information can be returned |
| 3801 | |
| 3802 | This ioctl returns a structure containing two things: (a) a list |
| 3803 | containing supported radix tree geometries, and (b) a list that maps |
| 3804 | page sizes to put in the "AP" (actual page size) field for the tlbie |
| 3805 | (TLB invalidate entry) instruction. |
| 3806 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3807 | :: |
| 3808 | |
| 3809 | struct kvm_ppc_rmmu_info { |
Paul Mackerras | c927013 | 2017-01-30 21:21:41 +1100 | [diff] [blame] | 3810 | struct kvm_ppc_radix_geom { |
| 3811 | __u8 page_shift; |
| 3812 | __u8 level_bits[4]; |
| 3813 | __u8 pad[3]; |
| 3814 | } geometries[8]; |
| 3815 | __u32 ap_encodings[8]; |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3816 | }; |
Paul Mackerras | c927013 | 2017-01-30 21:21:41 +1100 | [diff] [blame] | 3817 | |
| 3818 | The geometries[] field gives up to 8 supported geometries for the |
| 3819 | radix page table, in terms of the log base 2 of the smallest page |
| 3820 | size, and the number of bits indexed at each level of the tree, from |
| 3821 | the PTE level up to the PGD level in that order. Any unused entries |
| 3822 | will have 0 in the page_shift field. |
| 3823 | |
| 3824 | The ap_encodings gives the supported page sizes and their AP field |
| 3825 | encodings, encoded with the AP value in the top 3 bits and the log |
| 3826 | base 2 of the page size in the bottom 6 bits. |
| 3827 | |
David Gibson | ef1ead0 | 2016-12-20 16:48:58 +1100 | [diff] [blame] | 3828 | 4.102 KVM_PPC_RESIZE_HPT_PREPARE |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3829 | -------------------------------- |
David Gibson | ef1ead0 | 2016-12-20 16:48:58 +1100 | [diff] [blame] | 3830 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3831 | :Capability: KVM_CAP_SPAPR_RESIZE_HPT |
| 3832 | :Architectures: powerpc |
| 3833 | :Type: vm ioctl |
| 3834 | :Parameters: struct kvm_ppc_resize_hpt (in) |
| 3835 | :Returns: 0 on successful completion, |
David Gibson | ef1ead0 | 2016-12-20 16:48:58 +1100 | [diff] [blame] | 3836 | >0 if a new HPT is being prepared, the value is an estimated |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3837 | number of milliseconds until preparation is complete, |
David Gibson | ef1ead0 | 2016-12-20 16:48:58 +1100 | [diff] [blame] | 3838 | -EFAULT if struct kvm_reinject_control cannot be read, |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3839 | -EINVAL if the supplied shift or flags are invalid, |
| 3840 | -ENOMEM if unable to allocate the new HPT, |
| 3841 | -ENOSPC if there was a hash collision |
| 3842 | |
| 3843 | :: |
| 3844 | |
| 3845 | struct kvm_ppc_rmmu_info { |
| 3846 | struct kvm_ppc_radix_geom { |
| 3847 | __u8 page_shift; |
| 3848 | __u8 level_bits[4]; |
| 3849 | __u8 pad[3]; |
| 3850 | } geometries[8]; |
| 3851 | __u32 ap_encodings[8]; |
| 3852 | }; |
| 3853 | |
| 3854 | The geometries[] field gives up to 8 supported geometries for the |
| 3855 | radix page table, in terms of the log base 2 of the smallest page |
| 3856 | size, and the number of bits indexed at each level of the tree, from |
| 3857 | the PTE level up to the PGD level in that order. Any unused entries |
| 3858 | will have 0 in the page_shift field. |
| 3859 | |
| 3860 | The ap_encodings gives the supported page sizes and their AP field |
| 3861 | encodings, encoded with the AP value in the top 3 bits and the log |
| 3862 | base 2 of the page size in the bottom 6 bits. |
| 3863 | |
| 3864 | 4.102 KVM_PPC_RESIZE_HPT_PREPARE |
| 3865 | -------------------------------- |
| 3866 | |
| 3867 | :Capability: KVM_CAP_SPAPR_RESIZE_HPT |
| 3868 | :Architectures: powerpc |
| 3869 | :Type: vm ioctl |
| 3870 | :Parameters: struct kvm_ppc_resize_hpt (in) |
| 3871 | :Returns: 0 on successful completion, |
| 3872 | >0 if a new HPT is being prepared, the value is an estimated |
| 3873 | number of milliseconds until preparation is complete, |
| 3874 | -EFAULT if struct kvm_reinject_control cannot be read, |
| 3875 | -EINVAL if the supplied shift or flags are invalid,when moving existing |
| 3876 | HPT entries to the new HPT, |
David Gibson | ef1ead0 | 2016-12-20 16:48:58 +1100 | [diff] [blame] | 3877 | -EIO on other error conditions |
| 3878 | |
| 3879 | Used to implement the PAPR extension for runtime resizing of a guest's |
| 3880 | Hashed Page Table (HPT). Specifically this starts, stops or monitors |
| 3881 | the preparation of a new potential HPT for the guest, essentially |
| 3882 | implementing the H_RESIZE_HPT_PREPARE hypercall. |
| 3883 | |
| 3884 | If called with shift > 0 when there is no pending HPT for the guest, |
| 3885 | this begins preparation of a new pending HPT of size 2^(shift) bytes. |
| 3886 | It then returns a positive integer with the estimated number of |
| 3887 | milliseconds until preparation is complete. |
| 3888 | |
| 3889 | If called when there is a pending HPT whose size does not match that |
| 3890 | requested in the parameters, discards the existing pending HPT and |
| 3891 | creates a new one as above. |
| 3892 | |
| 3893 | If called when there is a pending HPT of the size requested, will: |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3894 | |
David Gibson | ef1ead0 | 2016-12-20 16:48:58 +1100 | [diff] [blame] | 3895 | * If preparation of the pending HPT is already complete, return 0 |
| 3896 | * If preparation of the pending HPT has failed, return an error |
| 3897 | code, then discard the pending HPT. |
| 3898 | * If preparation of the pending HPT is still in progress, return an |
| 3899 | estimated number of milliseconds until preparation is complete. |
| 3900 | |
| 3901 | If called with shift == 0, discards any currently pending HPT and |
| 3902 | returns 0 (i.e. cancels any in-progress preparation). |
| 3903 | |
| 3904 | flags is reserved for future expansion, currently setting any bits in |
| 3905 | flags will result in an -EINVAL. |
| 3906 | |
| 3907 | Normally this will be called repeatedly with the same parameters until |
| 3908 | it returns <= 0. The first call will initiate preparation, subsequent |
| 3909 | ones will monitor preparation until it completes or fails. |
| 3910 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3911 | :: |
| 3912 | |
| 3913 | struct kvm_ppc_resize_hpt { |
David Gibson | ef1ead0 | 2016-12-20 16:48:58 +1100 | [diff] [blame] | 3914 | __u64 flags; |
| 3915 | __u32 shift; |
| 3916 | __u32 pad; |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3917 | }; |
David Gibson | ef1ead0 | 2016-12-20 16:48:58 +1100 | [diff] [blame] | 3918 | |
| 3919 | 4.103 KVM_PPC_RESIZE_HPT_COMMIT |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3920 | ------------------------------- |
David Gibson | ef1ead0 | 2016-12-20 16:48:58 +1100 | [diff] [blame] | 3921 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3922 | :Capability: KVM_CAP_SPAPR_RESIZE_HPT |
| 3923 | :Architectures: powerpc |
| 3924 | :Type: vm ioctl |
| 3925 | :Parameters: struct kvm_ppc_resize_hpt (in) |
| 3926 | :Returns: 0 on successful completion, |
David Gibson | ef1ead0 | 2016-12-20 16:48:58 +1100 | [diff] [blame] | 3927 | -EFAULT if struct kvm_reinject_control cannot be read, |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3928 | -EINVAL if the supplied shift or flags are invalid, |
David Gibson | ef1ead0 | 2016-12-20 16:48:58 +1100 | [diff] [blame] | 3929 | -ENXIO is there is no pending HPT, or the pending HPT doesn't |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3930 | have the requested size, |
| 3931 | -EBUSY if the pending HPT is not fully prepared, |
David Gibson | ef1ead0 | 2016-12-20 16:48:58 +1100 | [diff] [blame] | 3932 | -ENOSPC if there was a hash collision when moving existing |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3933 | HPT entries to the new HPT, |
David Gibson | ef1ead0 | 2016-12-20 16:48:58 +1100 | [diff] [blame] | 3934 | -EIO on other error conditions |
| 3935 | |
| 3936 | Used to implement the PAPR extension for runtime resizing of a guest's |
| 3937 | Hashed Page Table (HPT). Specifically this requests that the guest be |
| 3938 | transferred to working with the new HPT, essentially implementing the |
| 3939 | H_RESIZE_HPT_COMMIT hypercall. |
| 3940 | |
| 3941 | This should only be called after KVM_PPC_RESIZE_HPT_PREPARE has |
| 3942 | returned 0 with the same parameters. In other cases |
| 3943 | KVM_PPC_RESIZE_HPT_COMMIT will return an error (usually -ENXIO or |
| 3944 | -EBUSY, though others may be possible if the preparation was started, |
| 3945 | but failed). |
| 3946 | |
| 3947 | This will have undefined effects on the guest if it has not already |
| 3948 | placed itself in a quiescent state where no vcpu will make MMU enabled |
| 3949 | memory accesses. |
| 3950 | |
| 3951 | On succsful completion, the pending HPT will become the guest's active |
| 3952 | HPT and the previous HPT will be discarded. |
| 3953 | |
| 3954 | On failure, the guest will still be operating on its previous HPT. |
| 3955 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3956 | :: |
| 3957 | |
| 3958 | struct kvm_ppc_resize_hpt { |
David Gibson | ef1ead0 | 2016-12-20 16:48:58 +1100 | [diff] [blame] | 3959 | __u64 flags; |
| 3960 | __u32 shift; |
| 3961 | __u32 pad; |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3962 | }; |
David Gibson | ef1ead0 | 2016-12-20 16:48:58 +1100 | [diff] [blame] | 3963 | |
Luiz Capitulino | 3aa5385 | 2017-03-13 09:08:20 -0400 | [diff] [blame] | 3964 | 4.104 KVM_X86_GET_MCE_CAP_SUPPORTED |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3965 | ----------------------------------- |
Luiz Capitulino | 3aa5385 | 2017-03-13 09:08:20 -0400 | [diff] [blame] | 3966 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3967 | :Capability: KVM_CAP_MCE |
| 3968 | :Architectures: x86 |
| 3969 | :Type: system ioctl |
| 3970 | :Parameters: u64 mce_cap (out) |
| 3971 | :Returns: 0 on success, -1 on error |
Luiz Capitulino | 3aa5385 | 2017-03-13 09:08:20 -0400 | [diff] [blame] | 3972 | |
| 3973 | Returns supported MCE capabilities. The u64 mce_cap parameter |
| 3974 | has the same format as the MSR_IA32_MCG_CAP register. Supported |
| 3975 | capabilities will have the corresponding bits set. |
| 3976 | |
| 3977 | 4.105 KVM_X86_SETUP_MCE |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3978 | ----------------------- |
Luiz Capitulino | 3aa5385 | 2017-03-13 09:08:20 -0400 | [diff] [blame] | 3979 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3980 | :Capability: KVM_CAP_MCE |
| 3981 | :Architectures: x86 |
| 3982 | :Type: vcpu ioctl |
| 3983 | :Parameters: u64 mcg_cap (in) |
| 3984 | :Returns: 0 on success, |
Luiz Capitulino | 3aa5385 | 2017-03-13 09:08:20 -0400 | [diff] [blame] | 3985 | -EFAULT if u64 mcg_cap cannot be read, |
| 3986 | -EINVAL if the requested number of banks is invalid, |
| 3987 | -EINVAL if requested MCE capability is not supported. |
| 3988 | |
| 3989 | Initializes MCE support for use. The u64 mcg_cap parameter |
| 3990 | has the same format as the MSR_IA32_MCG_CAP register and |
| 3991 | specifies which capabilities should be enabled. The maximum |
| 3992 | supported number of error-reporting banks can be retrieved when |
| 3993 | checking for KVM_CAP_MCE. The supported capabilities can be |
| 3994 | retrieved with KVM_X86_GET_MCE_CAP_SUPPORTED. |
| 3995 | |
| 3996 | 4.106 KVM_X86_SET_MCE |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3997 | --------------------- |
Luiz Capitulino | 3aa5385 | 2017-03-13 09:08:20 -0400 | [diff] [blame] | 3998 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 3999 | :Capability: KVM_CAP_MCE |
| 4000 | :Architectures: x86 |
| 4001 | :Type: vcpu ioctl |
| 4002 | :Parameters: struct kvm_x86_mce (in) |
| 4003 | :Returns: 0 on success, |
Luiz Capitulino | 3aa5385 | 2017-03-13 09:08:20 -0400 | [diff] [blame] | 4004 | -EFAULT if struct kvm_x86_mce cannot be read, |
| 4005 | -EINVAL if the bank number is invalid, |
| 4006 | -EINVAL if VAL bit is not set in status field. |
| 4007 | |
| 4008 | Inject a machine check error (MCE) into the guest. The input |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4009 | parameter is:: |
Luiz Capitulino | 3aa5385 | 2017-03-13 09:08:20 -0400 | [diff] [blame] | 4010 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4011 | struct kvm_x86_mce { |
Luiz Capitulino | 3aa5385 | 2017-03-13 09:08:20 -0400 | [diff] [blame] | 4012 | __u64 status; |
| 4013 | __u64 addr; |
| 4014 | __u64 misc; |
| 4015 | __u64 mcg_status; |
| 4016 | __u8 bank; |
| 4017 | __u8 pad1[7]; |
| 4018 | __u64 pad2[3]; |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4019 | }; |
Luiz Capitulino | 3aa5385 | 2017-03-13 09:08:20 -0400 | [diff] [blame] | 4020 | |
| 4021 | If the MCE being reported is an uncorrected error, KVM will |
| 4022 | inject it as an MCE exception into the guest. If the guest |
| 4023 | MCG_STATUS register reports that an MCE is in progress, KVM |
| 4024 | causes an KVM_EXIT_SHUTDOWN vmexit. |
| 4025 | |
| 4026 | Otherwise, if the MCE is a corrected error, KVM will just |
| 4027 | store it in the corresponding bank (provided this bank is |
| 4028 | not holding a previously reported uncorrected error). |
| 4029 | |
Claudio Imbrenda | 4036e38 | 2016-08-04 17:58:47 +0200 | [diff] [blame] | 4030 | 4.107 KVM_S390_GET_CMMA_BITS |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4031 | ---------------------------- |
Claudio Imbrenda | 4036e38 | 2016-08-04 17:58:47 +0200 | [diff] [blame] | 4032 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4033 | :Capability: KVM_CAP_S390_CMMA_MIGRATION |
| 4034 | :Architectures: s390 |
| 4035 | :Type: vm ioctl |
| 4036 | :Parameters: struct kvm_s390_cmma_log (in, out) |
| 4037 | :Returns: 0 on success, a negative value on error |
Claudio Imbrenda | 4036e38 | 2016-08-04 17:58:47 +0200 | [diff] [blame] | 4038 | |
| 4039 | This ioctl is used to get the values of the CMMA bits on the s390 |
| 4040 | architecture. It is meant to be used in two scenarios: |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4041 | |
Claudio Imbrenda | 4036e38 | 2016-08-04 17:58:47 +0200 | [diff] [blame] | 4042 | - During live migration to save the CMMA values. Live migration needs |
| 4043 | to be enabled via the KVM_REQ_START_MIGRATION VM property. |
| 4044 | - To non-destructively peek at the CMMA values, with the flag |
| 4045 | KVM_S390_CMMA_PEEK set. |
| 4046 | |
| 4047 | The ioctl takes parameters via the kvm_s390_cmma_log struct. The desired |
| 4048 | values are written to a buffer whose location is indicated via the "values" |
| 4049 | member in the kvm_s390_cmma_log struct. The values in the input struct are |
| 4050 | also updated as needed. |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4051 | |
Claudio Imbrenda | 4036e38 | 2016-08-04 17:58:47 +0200 | [diff] [blame] | 4052 | Each CMMA value takes up one byte. |
| 4053 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4054 | :: |
| 4055 | |
| 4056 | struct kvm_s390_cmma_log { |
Claudio Imbrenda | 4036e38 | 2016-08-04 17:58:47 +0200 | [diff] [blame] | 4057 | __u64 start_gfn; |
| 4058 | __u32 count; |
| 4059 | __u32 flags; |
| 4060 | union { |
| 4061 | __u64 remaining; |
| 4062 | __u64 mask; |
| 4063 | }; |
| 4064 | __u64 values; |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4065 | }; |
Claudio Imbrenda | 4036e38 | 2016-08-04 17:58:47 +0200 | [diff] [blame] | 4066 | |
| 4067 | start_gfn is the number of the first guest frame whose CMMA values are |
| 4068 | to be retrieved, |
| 4069 | |
| 4070 | count is the length of the buffer in bytes, |
| 4071 | |
| 4072 | values points to the buffer where the result will be written to. |
| 4073 | |
| 4074 | If count is greater than KVM_S390_SKEYS_MAX, then it is considered to be |
| 4075 | KVM_S390_SKEYS_MAX. KVM_S390_SKEYS_MAX is re-used for consistency with |
| 4076 | other ioctls. |
| 4077 | |
| 4078 | The result is written in the buffer pointed to by the field values, and |
| 4079 | the values of the input parameter are updated as follows. |
| 4080 | |
| 4081 | Depending on the flags, different actions are performed. The only |
| 4082 | supported flag so far is KVM_S390_CMMA_PEEK. |
| 4083 | |
| 4084 | The default behaviour if KVM_S390_CMMA_PEEK is not set is: |
| 4085 | start_gfn will indicate the first page frame whose CMMA bits were dirty. |
| 4086 | It is not necessarily the same as the one passed as input, as clean pages |
| 4087 | are skipped. |
| 4088 | |
| 4089 | count will indicate the number of bytes actually written in the buffer. |
| 4090 | It can (and very often will) be smaller than the input value, since the |
| 4091 | buffer is only filled until 16 bytes of clean values are found (which |
| 4092 | are then not copied in the buffer). Since a CMMA migration block needs |
| 4093 | the base address and the length, for a total of 16 bytes, we will send |
| 4094 | back some clean data if there is some dirty data afterwards, as long as |
| 4095 | the size of the clean data does not exceed the size of the header. This |
| 4096 | allows to minimize the amount of data to be saved or transferred over |
| 4097 | the network at the expense of more roundtrips to userspace. The next |
| 4098 | invocation of the ioctl will skip over all the clean values, saving |
| 4099 | potentially more than just the 16 bytes we found. |
| 4100 | |
| 4101 | If KVM_S390_CMMA_PEEK is set: |
| 4102 | the existing storage attributes are read even when not in migration |
| 4103 | mode, and no other action is performed; |
| 4104 | |
| 4105 | the output start_gfn will be equal to the input start_gfn, |
| 4106 | |
| 4107 | the output count will be equal to the input count, except if the end of |
| 4108 | memory has been reached. |
| 4109 | |
| 4110 | In both cases: |
| 4111 | the field "remaining" will indicate the total number of dirty CMMA values |
| 4112 | still remaining, or 0 if KVM_S390_CMMA_PEEK is set and migration mode is |
| 4113 | not enabled. |
| 4114 | |
| 4115 | mask is unused. |
| 4116 | |
| 4117 | values points to the userspace buffer where the result will be stored. |
| 4118 | |
| 4119 | This ioctl can fail with -ENOMEM if not enough memory can be allocated to |
| 4120 | complete the task, with -ENXIO if CMMA is not enabled, with -EINVAL if |
| 4121 | KVM_S390_CMMA_PEEK is not set but migration mode was not enabled, with |
| 4122 | -EFAULT if the userspace address is invalid or if no page table is |
| 4123 | present for the addresses (e.g. when using hugepages). |
| 4124 | |
| 4125 | 4.108 KVM_S390_SET_CMMA_BITS |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4126 | ---------------------------- |
Claudio Imbrenda | 4036e38 | 2016-08-04 17:58:47 +0200 | [diff] [blame] | 4127 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4128 | :Capability: KVM_CAP_S390_CMMA_MIGRATION |
| 4129 | :Architectures: s390 |
| 4130 | :Type: vm ioctl |
| 4131 | :Parameters: struct kvm_s390_cmma_log (in) |
| 4132 | :Returns: 0 on success, a negative value on error |
Claudio Imbrenda | 4036e38 | 2016-08-04 17:58:47 +0200 | [diff] [blame] | 4133 | |
| 4134 | This ioctl is used to set the values of the CMMA bits on the s390 |
| 4135 | architecture. It is meant to be used during live migration to restore |
| 4136 | the CMMA values, but there are no restrictions on its use. |
| 4137 | The ioctl takes parameters via the kvm_s390_cmma_values struct. |
| 4138 | Each CMMA value takes up one byte. |
| 4139 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4140 | :: |
| 4141 | |
| 4142 | struct kvm_s390_cmma_log { |
Claudio Imbrenda | 4036e38 | 2016-08-04 17:58:47 +0200 | [diff] [blame] | 4143 | __u64 start_gfn; |
| 4144 | __u32 count; |
| 4145 | __u32 flags; |
| 4146 | union { |
| 4147 | __u64 remaining; |
| 4148 | __u64 mask; |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4149 | }; |
Claudio Imbrenda | 4036e38 | 2016-08-04 17:58:47 +0200 | [diff] [blame] | 4150 | __u64 values; |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4151 | }; |
Claudio Imbrenda | 4036e38 | 2016-08-04 17:58:47 +0200 | [diff] [blame] | 4152 | |
| 4153 | start_gfn indicates the starting guest frame number, |
| 4154 | |
| 4155 | count indicates how many values are to be considered in the buffer, |
| 4156 | |
| 4157 | flags is not used and must be 0. |
| 4158 | |
| 4159 | mask indicates which PGSTE bits are to be considered. |
| 4160 | |
| 4161 | remaining is not used. |
| 4162 | |
| 4163 | values points to the buffer in userspace where to store the values. |
| 4164 | |
| 4165 | This ioctl can fail with -ENOMEM if not enough memory can be allocated to |
| 4166 | complete the task, with -ENXIO if CMMA is not enabled, with -EINVAL if |
| 4167 | the count field is too large (e.g. more than KVM_S390_CMMA_SIZE_MAX) or |
| 4168 | if the flags field was not 0, with -EFAULT if the userspace address is |
| 4169 | invalid, if invalid pages are written to (e.g. after the end of memory) |
| 4170 | or if no page table is present for the addresses (e.g. when using |
| 4171 | hugepages). |
| 4172 | |
Radim Krčmář | 7bf14c2 | 2018-02-01 15:04:17 +0100 | [diff] [blame] | 4173 | 4.109 KVM_PPC_GET_CPU_CHAR |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4174 | -------------------------- |
Paul Mackerras | 3214d01 | 2018-01-15 16:06:47 +1100 | [diff] [blame] | 4175 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4176 | :Capability: KVM_CAP_PPC_GET_CPU_CHAR |
| 4177 | :Architectures: powerpc |
| 4178 | :Type: vm ioctl |
| 4179 | :Parameters: struct kvm_ppc_cpu_char (out) |
| 4180 | :Returns: 0 on successful completion, |
Paul Mackerras | 3214d01 | 2018-01-15 16:06:47 +1100 | [diff] [blame] | 4181 | -EFAULT if struct kvm_ppc_cpu_char cannot be written |
| 4182 | |
| 4183 | This ioctl gives userspace information about certain characteristics |
| 4184 | of the CPU relating to speculative execution of instructions and |
| 4185 | possible information leakage resulting from speculative execution (see |
| 4186 | CVE-2017-5715, CVE-2017-5753 and CVE-2017-5754). The information is |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4187 | returned in struct kvm_ppc_cpu_char, which looks like this:: |
Paul Mackerras | 3214d01 | 2018-01-15 16:06:47 +1100 | [diff] [blame] | 4188 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4189 | struct kvm_ppc_cpu_char { |
Paul Mackerras | 3214d01 | 2018-01-15 16:06:47 +1100 | [diff] [blame] | 4190 | __u64 character; /* characteristics of the CPU */ |
| 4191 | __u64 behaviour; /* recommended software behaviour */ |
| 4192 | __u64 character_mask; /* valid bits in character */ |
| 4193 | __u64 behaviour_mask; /* valid bits in behaviour */ |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4194 | }; |
Paul Mackerras | 3214d01 | 2018-01-15 16:06:47 +1100 | [diff] [blame] | 4195 | |
| 4196 | For extensibility, the character_mask and behaviour_mask fields |
| 4197 | indicate which bits of character and behaviour have been filled in by |
| 4198 | the kernel. If the set of defined bits is extended in future then |
| 4199 | userspace will be able to tell whether it is running on a kernel that |
| 4200 | knows about the new bits. |
| 4201 | |
| 4202 | The character field describes attributes of the CPU which can help |
| 4203 | with preventing inadvertent information disclosure - specifically, |
| 4204 | whether there is an instruction to flash-invalidate the L1 data cache |
| 4205 | (ori 30,30,0 or mtspr SPRN_TRIG2,rN), whether the L1 data cache is set |
| 4206 | to a mode where entries can only be used by the thread that created |
| 4207 | them, whether the bcctr[l] instruction prevents speculation, and |
| 4208 | whether a speculation barrier instruction (ori 31,31,0) is provided. |
| 4209 | |
| 4210 | The behaviour field describes actions that software should take to |
| 4211 | prevent inadvertent information disclosure, and thus describes which |
| 4212 | vulnerabilities the hardware is subject to; specifically whether the |
| 4213 | L1 data cache should be flushed when returning to user mode from the |
| 4214 | kernel, and whether a speculation barrier should be placed between an |
| 4215 | array bounds check and the array access. |
| 4216 | |
| 4217 | These fields use the same bit definitions as the new |
| 4218 | H_GET_CPU_CHARACTERISTICS hypercall. |
| 4219 | |
Radim Krčmář | 7bf14c2 | 2018-02-01 15:04:17 +0100 | [diff] [blame] | 4220 | 4.110 KVM_MEMORY_ENCRYPT_OP |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4221 | --------------------------- |
Brijesh Singh | 5acc5c0 | 2017-12-04 10:57:26 -0600 | [diff] [blame] | 4222 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4223 | :Capability: basic |
| 4224 | :Architectures: x86 |
Connor Kuehl | 46ca9ee | 2020-08-19 16:19:52 -0500 | [diff] [blame] | 4225 | :Type: vm |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4226 | :Parameters: an opaque platform specific structure (in/out) |
| 4227 | :Returns: 0 on success; -1 on error |
Brijesh Singh | 5acc5c0 | 2017-12-04 10:57:26 -0600 | [diff] [blame] | 4228 | |
| 4229 | If the platform supports creating encrypted VMs then this ioctl can be used |
| 4230 | for issuing platform-specific memory encryption commands to manage those |
| 4231 | encrypted VMs. |
| 4232 | |
| 4233 | Currently, this ioctl is used for issuing Secure Encrypted Virtualization |
| 4234 | (SEV) commands on AMD Processors. The SEV commands are defined in |
Christoph Hellwig | 2f5947d | 2019-07-24 09:24:49 +0200 | [diff] [blame] | 4235 | Documentation/virt/kvm/amd-memory-encryption.rst. |
Brijesh Singh | 5acc5c0 | 2017-12-04 10:57:26 -0600 | [diff] [blame] | 4236 | |
Radim Krčmář | 7bf14c2 | 2018-02-01 15:04:17 +0100 | [diff] [blame] | 4237 | 4.111 KVM_MEMORY_ENCRYPT_REG_REGION |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4238 | ----------------------------------- |
Brijesh Singh | 69eaede | 2017-12-04 10:57:26 -0600 | [diff] [blame] | 4239 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4240 | :Capability: basic |
| 4241 | :Architectures: x86 |
| 4242 | :Type: system |
| 4243 | :Parameters: struct kvm_enc_region (in) |
| 4244 | :Returns: 0 on success; -1 on error |
Brijesh Singh | 69eaede | 2017-12-04 10:57:26 -0600 | [diff] [blame] | 4245 | |
| 4246 | This ioctl can be used to register a guest memory region which may |
| 4247 | contain encrypted data (e.g. guest RAM, SMRAM etc). |
| 4248 | |
| 4249 | It is used in the SEV-enabled guest. When encryption is enabled, a guest |
| 4250 | memory region may contain encrypted data. The SEV memory encryption |
| 4251 | engine uses a tweak such that two identical plaintext pages, each at |
| 4252 | different locations will have differing ciphertexts. So swapping or |
| 4253 | moving ciphertext of those pages will not result in plaintext being |
| 4254 | swapped. So relocating (or migrating) physical backing pages for the SEV |
| 4255 | guest will require some additional steps. |
| 4256 | |
| 4257 | Note: The current SEV key management spec does not provide commands to |
| 4258 | swap or migrate (move) ciphertext pages. Hence, for now we pin the guest |
| 4259 | memory region registered with the ioctl. |
| 4260 | |
Radim Krčmář | 7bf14c2 | 2018-02-01 15:04:17 +0100 | [diff] [blame] | 4261 | 4.112 KVM_MEMORY_ENCRYPT_UNREG_REGION |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4262 | ------------------------------------- |
Brijesh Singh | 69eaede | 2017-12-04 10:57:26 -0600 | [diff] [blame] | 4263 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4264 | :Capability: basic |
| 4265 | :Architectures: x86 |
| 4266 | :Type: system |
| 4267 | :Parameters: struct kvm_enc_region (in) |
| 4268 | :Returns: 0 on success; -1 on error |
Brijesh Singh | 69eaede | 2017-12-04 10:57:26 -0600 | [diff] [blame] | 4269 | |
| 4270 | This ioctl can be used to unregister the guest memory region registered |
| 4271 | with KVM_MEMORY_ENCRYPT_REG_REGION ioctl above. |
| 4272 | |
Roman Kagan | faeb783 | 2018-02-01 16:48:32 +0300 | [diff] [blame] | 4273 | 4.113 KVM_HYPERV_EVENTFD |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4274 | ------------------------ |
Roman Kagan | faeb783 | 2018-02-01 16:48:32 +0300 | [diff] [blame] | 4275 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4276 | :Capability: KVM_CAP_HYPERV_EVENTFD |
| 4277 | :Architectures: x86 |
| 4278 | :Type: vm ioctl |
| 4279 | :Parameters: struct kvm_hyperv_eventfd (in) |
Roman Kagan | faeb783 | 2018-02-01 16:48:32 +0300 | [diff] [blame] | 4280 | |
| 4281 | This ioctl (un)registers an eventfd to receive notifications from the guest on |
| 4282 | the specified Hyper-V connection id through the SIGNAL_EVENT hypercall, without |
| 4283 | causing a user exit. SIGNAL_EVENT hypercall with non-zero event flag number |
| 4284 | (bits 24-31) still triggers a KVM_EXIT_HYPERV_HCALL user exit. |
| 4285 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4286 | :: |
| 4287 | |
| 4288 | struct kvm_hyperv_eventfd { |
Roman Kagan | faeb783 | 2018-02-01 16:48:32 +0300 | [diff] [blame] | 4289 | __u32 conn_id; |
| 4290 | __s32 fd; |
| 4291 | __u32 flags; |
| 4292 | __u32 padding[3]; |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4293 | }; |
Roman Kagan | faeb783 | 2018-02-01 16:48:32 +0300 | [diff] [blame] | 4294 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4295 | The conn_id field should fit within 24 bits:: |
Roman Kagan | faeb783 | 2018-02-01 16:48:32 +0300 | [diff] [blame] | 4296 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4297 | #define KVM_HYPERV_CONN_ID_MASK 0x00ffffff |
Roman Kagan | faeb783 | 2018-02-01 16:48:32 +0300 | [diff] [blame] | 4298 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4299 | The acceptable values for the flags field are:: |
Roman Kagan | faeb783 | 2018-02-01 16:48:32 +0300 | [diff] [blame] | 4300 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4301 | #define KVM_HYPERV_EVENTFD_DEASSIGN (1 << 0) |
Roman Kagan | faeb783 | 2018-02-01 16:48:32 +0300 | [diff] [blame] | 4302 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4303 | :Returns: 0 on success, |
| 4304 | -EINVAL if conn_id or flags is outside the allowed range, |
| 4305 | -ENOENT on deassign if the conn_id isn't registered, |
| 4306 | -EEXIST on assign if the conn_id is already registered |
Roman Kagan | faeb783 | 2018-02-01 16:48:32 +0300 | [diff] [blame] | 4307 | |
Jim Mattson | 8fcc4b5 | 2018-07-10 11:27:20 +0200 | [diff] [blame] | 4308 | 4.114 KVM_GET_NESTED_STATE |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4309 | -------------------------- |
Jim Mattson | 8fcc4b5 | 2018-07-10 11:27:20 +0200 | [diff] [blame] | 4310 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4311 | :Capability: KVM_CAP_NESTED_STATE |
| 4312 | :Architectures: x86 |
| 4313 | :Type: vcpu ioctl |
| 4314 | :Parameters: struct kvm_nested_state (in/out) |
| 4315 | :Returns: 0 on success, -1 on error |
| 4316 | |
Jim Mattson | 8fcc4b5 | 2018-07-10 11:27:20 +0200 | [diff] [blame] | 4317 | Errors: |
Jim Mattson | 8fcc4b5 | 2018-07-10 11:27:20 +0200 | [diff] [blame] | 4318 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4319 | ===== ============================================================= |
| 4320 | E2BIG the total state size exceeds the value of 'size' specified by |
| 4321 | the user; the size required will be written into size. |
| 4322 | ===== ============================================================= |
| 4323 | |
| 4324 | :: |
| 4325 | |
| 4326 | struct kvm_nested_state { |
Jim Mattson | 8fcc4b5 | 2018-07-10 11:27:20 +0200 | [diff] [blame] | 4327 | __u16 flags; |
| 4328 | __u16 format; |
| 4329 | __u32 size; |
Liran Alon | 6ca00df | 2019-06-16 15:03:10 +0300 | [diff] [blame] | 4330 | |
Jim Mattson | 8fcc4b5 | 2018-07-10 11:27:20 +0200 | [diff] [blame] | 4331 | union { |
Liran Alon | 6ca00df | 2019-06-16 15:03:10 +0300 | [diff] [blame] | 4332 | struct kvm_vmx_nested_state_hdr vmx; |
| 4333 | struct kvm_svm_nested_state_hdr svm; |
| 4334 | |
| 4335 | /* Pad the header to 128 bytes. */ |
Jim Mattson | 8fcc4b5 | 2018-07-10 11:27:20 +0200 | [diff] [blame] | 4336 | __u8 pad[120]; |
Liran Alon | 6ca00df | 2019-06-16 15:03:10 +0300 | [diff] [blame] | 4337 | } hdr; |
| 4338 | |
| 4339 | union { |
| 4340 | struct kvm_vmx_nested_state_data vmx[0]; |
| 4341 | struct kvm_svm_nested_state_data svm[0]; |
| 4342 | } data; |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4343 | }; |
Jim Mattson | 8fcc4b5 | 2018-07-10 11:27:20 +0200 | [diff] [blame] | 4344 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4345 | #define KVM_STATE_NESTED_GUEST_MODE 0x00000001 |
| 4346 | #define KVM_STATE_NESTED_RUN_PENDING 0x00000002 |
| 4347 | #define KVM_STATE_NESTED_EVMCS 0x00000004 |
Jim Mattson | 8fcc4b5 | 2018-07-10 11:27:20 +0200 | [diff] [blame] | 4348 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4349 | #define KVM_STATE_NESTED_FORMAT_VMX 0 |
| 4350 | #define KVM_STATE_NESTED_FORMAT_SVM 1 |
Jim Mattson | 8fcc4b5 | 2018-07-10 11:27:20 +0200 | [diff] [blame] | 4351 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4352 | #define KVM_STATE_NESTED_VMX_VMCS_SIZE 0x1000 |
Liran Alon | 6ca00df | 2019-06-16 15:03:10 +0300 | [diff] [blame] | 4353 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4354 | #define KVM_STATE_NESTED_VMX_SMM_GUEST_MODE 0x00000001 |
| 4355 | #define KVM_STATE_NESTED_VMX_SMM_VMXON 0x00000002 |
Liran Alon | 6ca00df | 2019-06-16 15:03:10 +0300 | [diff] [blame] | 4356 | |
Mauro Carvalho Chehab | 3c97f03 | 2020-09-09 16:10:48 +0200 | [diff] [blame] | 4357 | #define KVM_STATE_VMX_PREEMPTION_TIMER_DEADLINE 0x00000001 |
Peter Shier | 850448f | 2020-05-26 14:51:06 -0700 | [diff] [blame] | 4358 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4359 | struct kvm_vmx_nested_state_hdr { |
Jim Mattson | 8fcc4b5 | 2018-07-10 11:27:20 +0200 | [diff] [blame] | 4360 | __u64 vmxon_pa; |
Liran Alon | 6ca00df | 2019-06-16 15:03:10 +0300 | [diff] [blame] | 4361 | __u64 vmcs12_pa; |
Jim Mattson | 8fcc4b5 | 2018-07-10 11:27:20 +0200 | [diff] [blame] | 4362 | |
| 4363 | struct { |
| 4364 | __u16 flags; |
| 4365 | } smm; |
Paolo Bonzini | 83d31e5 | 2020-07-09 13:12:09 -0400 | [diff] [blame] | 4366 | |
| 4367 | __u32 flags; |
| 4368 | __u64 preemption_timer_deadline; |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4369 | }; |
Jim Mattson | 8fcc4b5 | 2018-07-10 11:27:20 +0200 | [diff] [blame] | 4370 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4371 | struct kvm_vmx_nested_state_data { |
Liran Alon | 6ca00df | 2019-06-16 15:03:10 +0300 | [diff] [blame] | 4372 | __u8 vmcs12[KVM_STATE_NESTED_VMX_VMCS_SIZE]; |
| 4373 | __u8 shadow_vmcs12[KVM_STATE_NESTED_VMX_VMCS_SIZE]; |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4374 | }; |
Liran Alon | 6ca00df | 2019-06-16 15:03:10 +0300 | [diff] [blame] | 4375 | |
Jim Mattson | 8fcc4b5 | 2018-07-10 11:27:20 +0200 | [diff] [blame] | 4376 | This ioctl copies the vcpu's nested virtualization state from the kernel to |
| 4377 | userspace. |
| 4378 | |
Liran Alon | 6ca00df | 2019-06-16 15:03:10 +0300 | [diff] [blame] | 4379 | The maximum size of the state can be retrieved by passing KVM_CAP_NESTED_STATE |
| 4380 | to the KVM_CHECK_EXTENSION ioctl(). |
Jim Mattson | 8fcc4b5 | 2018-07-10 11:27:20 +0200 | [diff] [blame] | 4381 | |
| 4382 | 4.115 KVM_SET_NESTED_STATE |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4383 | -------------------------- |
Jim Mattson | 8fcc4b5 | 2018-07-10 11:27:20 +0200 | [diff] [blame] | 4384 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4385 | :Capability: KVM_CAP_NESTED_STATE |
| 4386 | :Architectures: x86 |
| 4387 | :Type: vcpu ioctl |
| 4388 | :Parameters: struct kvm_nested_state (in) |
| 4389 | :Returns: 0 on success, -1 on error |
Jim Mattson | 8fcc4b5 | 2018-07-10 11:27:20 +0200 | [diff] [blame] | 4390 | |
Liran Alon | 6ca00df | 2019-06-16 15:03:10 +0300 | [diff] [blame] | 4391 | This copies the vcpu's kvm_nested_state struct from userspace to the kernel. |
| 4392 | For the definition of struct kvm_nested_state, see KVM_GET_NESTED_STATE. |
Radim Krčmář | 7bf14c2 | 2018-02-01 15:04:17 +0100 | [diff] [blame] | 4393 | |
Peng Hao | 9943450 | 2018-10-14 07:09:56 +0800 | [diff] [blame] | 4394 | 4.116 KVM_(UN)REGISTER_COALESCED_MMIO |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4395 | ------------------------------------- |
Peng Hao | 9943450 | 2018-10-14 07:09:56 +0800 | [diff] [blame] | 4396 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4397 | :Capability: KVM_CAP_COALESCED_MMIO (for coalesced mmio) |
| 4398 | KVM_CAP_COALESCED_PIO (for coalesced pio) |
| 4399 | :Architectures: all |
| 4400 | :Type: vm ioctl |
| 4401 | :Parameters: struct kvm_coalesced_mmio_zone |
| 4402 | :Returns: 0 on success, < 0 on error |
Peng Hao | 9943450 | 2018-10-14 07:09:56 +0800 | [diff] [blame] | 4403 | |
Peng Hao | 0804c84 | 2018-10-14 07:09:55 +0800 | [diff] [blame] | 4404 | Coalesced I/O is a performance optimization that defers hardware |
Peng Hao | 9943450 | 2018-10-14 07:09:56 +0800 | [diff] [blame] | 4405 | register write emulation so that userspace exits are avoided. It is |
| 4406 | typically used to reduce the overhead of emulating frequently accessed |
| 4407 | hardware registers. |
| 4408 | |
Peng Hao | 0804c84 | 2018-10-14 07:09:55 +0800 | [diff] [blame] | 4409 | When a hardware register is configured for coalesced I/O, write accesses |
Peng Hao | 9943450 | 2018-10-14 07:09:56 +0800 | [diff] [blame] | 4410 | do not exit to userspace and their value is recorded in a ring buffer |
| 4411 | that is shared between kernel and userspace. |
| 4412 | |
Peng Hao | 0804c84 | 2018-10-14 07:09:55 +0800 | [diff] [blame] | 4413 | Coalesced I/O is used if one or more write accesses to a hardware |
Peng Hao | 9943450 | 2018-10-14 07:09:56 +0800 | [diff] [blame] | 4414 | register can be deferred until a read or a write to another hardware |
| 4415 | register on the same device. This last access will cause a vmexit and |
| 4416 | userspace will process accesses from the ring buffer before emulating |
Peng Hao | 0804c84 | 2018-10-14 07:09:55 +0800 | [diff] [blame] | 4417 | it. That will avoid exiting to userspace on repeated writes. |
| 4418 | |
| 4419 | Coalesced pio is based on coalesced mmio. There is little difference |
| 4420 | between coalesced mmio and pio except that coalesced pio records accesses |
| 4421 | to I/O ports. |
Peng Hao | 9943450 | 2018-10-14 07:09:56 +0800 | [diff] [blame] | 4422 | |
Paolo Bonzini | 2a31b9d | 2018-10-23 02:36:47 +0200 | [diff] [blame] | 4423 | 4.117 KVM_CLEAR_DIRTY_LOG (vm ioctl) |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4424 | ------------------------------------ |
Paolo Bonzini | 2a31b9d | 2018-10-23 02:36:47 +0200 | [diff] [blame] | 4425 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4426 | :Capability: KVM_CAP_MANUAL_DIRTY_LOG_PROTECT2 |
| 4427 | :Architectures: x86, arm, arm64, mips |
| 4428 | :Type: vm ioctl |
| 4429 | :Parameters: struct kvm_dirty_log (in) |
| 4430 | :Returns: 0 on success, -1 on error |
Paolo Bonzini | 2a31b9d | 2018-10-23 02:36:47 +0200 | [diff] [blame] | 4431 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4432 | :: |
| 4433 | |
| 4434 | /* for KVM_CLEAR_DIRTY_LOG */ |
| 4435 | struct kvm_clear_dirty_log { |
Paolo Bonzini | 2a31b9d | 2018-10-23 02:36:47 +0200 | [diff] [blame] | 4436 | __u32 slot; |
| 4437 | __u32 num_pages; |
| 4438 | __u64 first_page; |
| 4439 | union { |
| 4440 | void __user *dirty_bitmap; /* one bit per page */ |
| 4441 | __u64 padding; |
| 4442 | }; |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4443 | }; |
Paolo Bonzini | 2a31b9d | 2018-10-23 02:36:47 +0200 | [diff] [blame] | 4444 | |
| 4445 | The ioctl clears the dirty status of pages in a memory slot, according to |
| 4446 | the bitmap that is passed in struct kvm_clear_dirty_log's dirty_bitmap |
| 4447 | field. Bit 0 of the bitmap corresponds to page "first_page" in the |
| 4448 | memory slot, and num_pages is the size in bits of the input bitmap. |
Paolo Bonzini | 76d58e0 | 2019-04-17 15:28:44 +0200 | [diff] [blame] | 4449 | first_page must be a multiple of 64; num_pages must also be a multiple of |
| 4450 | 64 unless first_page + num_pages is the size of the memory slot. For each |
| 4451 | bit that is set in the input bitmap, the corresponding page is marked "clean" |
Paolo Bonzini | 2a31b9d | 2018-10-23 02:36:47 +0200 | [diff] [blame] | 4452 | in KVM's dirty bitmap, and dirty tracking is re-enabled for that page |
| 4453 | (for example via write-protection, or by clearing the dirty bit in |
| 4454 | a page table entry). |
| 4455 | |
| 4456 | If KVM_CAP_MULTI_ADDRESS_SPACE is available, bits 16-31 specifies |
| 4457 | the address space for which you want to return the dirty bitmap. |
| 4458 | They must be less than the value that KVM_CHECK_EXTENSION returns for |
| 4459 | the KVM_CAP_MULTI_ADDRESS_SPACE capability. |
| 4460 | |
Peter Xu | d7547c5 | 2019-05-08 17:15:47 +0800 | [diff] [blame] | 4461 | This ioctl is mostly useful when KVM_CAP_MANUAL_DIRTY_LOG_PROTECT2 |
Paolo Bonzini | 2a31b9d | 2018-10-23 02:36:47 +0200 | [diff] [blame] | 4462 | is enabled; for more information, see the description of the capability. |
| 4463 | However, it can always be used as long as KVM_CHECK_EXTENSION confirms |
Peter Xu | d7547c5 | 2019-05-08 17:15:47 +0800 | [diff] [blame] | 4464 | that KVM_CAP_MANUAL_DIRTY_LOG_PROTECT2 is present. |
Paolo Bonzini | 2a31b9d | 2018-10-23 02:36:47 +0200 | [diff] [blame] | 4465 | |
Vitaly Kuznetsov | 2bc3997 | 2018-12-10 18:21:56 +0100 | [diff] [blame] | 4466 | 4.118 KVM_GET_SUPPORTED_HV_CPUID |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4467 | -------------------------------- |
Vitaly Kuznetsov | 2bc3997 | 2018-12-10 18:21:56 +0100 | [diff] [blame] | 4468 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4469 | :Capability: KVM_CAP_HYPERV_CPUID |
| 4470 | :Architectures: x86 |
| 4471 | :Type: vcpu ioctl |
| 4472 | :Parameters: struct kvm_cpuid2 (in/out) |
| 4473 | :Returns: 0 on success, -1 on error |
Vitaly Kuznetsov | 2bc3997 | 2018-12-10 18:21:56 +0100 | [diff] [blame] | 4474 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4475 | :: |
| 4476 | |
| 4477 | struct kvm_cpuid2 { |
Vitaly Kuznetsov | 2bc3997 | 2018-12-10 18:21:56 +0100 | [diff] [blame] | 4478 | __u32 nent; |
| 4479 | __u32 padding; |
| 4480 | struct kvm_cpuid_entry2 entries[0]; |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4481 | }; |
Vitaly Kuznetsov | 2bc3997 | 2018-12-10 18:21:56 +0100 | [diff] [blame] | 4482 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4483 | struct kvm_cpuid_entry2 { |
Vitaly Kuznetsov | 2bc3997 | 2018-12-10 18:21:56 +0100 | [diff] [blame] | 4484 | __u32 function; |
| 4485 | __u32 index; |
| 4486 | __u32 flags; |
| 4487 | __u32 eax; |
| 4488 | __u32 ebx; |
| 4489 | __u32 ecx; |
| 4490 | __u32 edx; |
| 4491 | __u32 padding[3]; |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4492 | }; |
Vitaly Kuznetsov | 2bc3997 | 2018-12-10 18:21:56 +0100 | [diff] [blame] | 4493 | |
| 4494 | This ioctl returns x86 cpuid features leaves related to Hyper-V emulation in |
| 4495 | KVM. Userspace can use the information returned by this ioctl to construct |
| 4496 | cpuid information presented to guests consuming Hyper-V enlightenments (e.g. |
| 4497 | Windows or Hyper-V guests). |
| 4498 | |
| 4499 | CPUID feature leaves returned by this ioctl are defined by Hyper-V Top Level |
| 4500 | Functional Specification (TLFS). These leaves can't be obtained with |
| 4501 | KVM_GET_SUPPORTED_CPUID ioctl because some of them intersect with KVM feature |
| 4502 | leaves (0x40000000, 0x40000001). |
| 4503 | |
| 4504 | Currently, the following list of CPUID leaves are returned: |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4505 | - HYPERV_CPUID_VENDOR_AND_MAX_FUNCTIONS |
| 4506 | - HYPERV_CPUID_INTERFACE |
| 4507 | - HYPERV_CPUID_VERSION |
| 4508 | - HYPERV_CPUID_FEATURES |
| 4509 | - HYPERV_CPUID_ENLIGHTMENT_INFO |
| 4510 | - HYPERV_CPUID_IMPLEMENT_LIMITS |
| 4511 | - HYPERV_CPUID_NESTED_FEATURES |
Vitaly Kuznetsov | b44f50d | 2020-09-24 16:57:51 +0200 | [diff] [blame] | 4512 | - HYPERV_CPUID_SYNDBG_VENDOR_AND_MAX_FUNCTIONS |
| 4513 | - HYPERV_CPUID_SYNDBG_INTERFACE |
| 4514 | - HYPERV_CPUID_SYNDBG_PLATFORM_CAPABILITIES |
Vitaly Kuznetsov | 2bc3997 | 2018-12-10 18:21:56 +0100 | [diff] [blame] | 4515 | |
| 4516 | HYPERV_CPUID_NESTED_FEATURES leaf is only exposed when Enlightened VMCS was |
| 4517 | enabled on the corresponding vCPU (KVM_CAP_HYPERV_ENLIGHTENED_VMCS). |
| 4518 | |
Vitaly Kuznetsov | b44f50d | 2020-09-24 16:57:51 +0200 | [diff] [blame] | 4519 | Userspace invokes KVM_GET_SUPPORTED_HV_CPUID by passing a kvm_cpuid2 structure |
Vitaly Kuznetsov | 2bc3997 | 2018-12-10 18:21:56 +0100 | [diff] [blame] | 4520 | with the 'nent' field indicating the number of entries in the variable-size |
| 4521 | array 'entries'. If the number of entries is too low to describe all Hyper-V |
| 4522 | feature leaves, an error (E2BIG) is returned. If the number is more or equal |
| 4523 | to the number of Hyper-V feature leaves, the 'nent' field is adjusted to the |
| 4524 | number of valid entries in the 'entries' array, which is then filled. |
| 4525 | |
| 4526 | 'index' and 'flags' fields in 'struct kvm_cpuid_entry2' are currently reserved, |
| 4527 | userspace should not expect to get any particular value there. |
Paolo Bonzini | 2a31b9d | 2018-10-23 02:36:47 +0200 | [diff] [blame] | 4528 | |
Dave Martin | 50036ad | 2018-09-28 14:39:27 +0100 | [diff] [blame] | 4529 | 4.119 KVM_ARM_VCPU_FINALIZE |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4530 | --------------------------- |
Dave Martin | 50036ad | 2018-09-28 14:39:27 +0100 | [diff] [blame] | 4531 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4532 | :Architectures: arm, arm64 |
| 4533 | :Type: vcpu ioctl |
| 4534 | :Parameters: int feature (in) |
| 4535 | :Returns: 0 on success, -1 on error |
| 4536 | |
Dave Martin | 50036ad | 2018-09-28 14:39:27 +0100 | [diff] [blame] | 4537 | Errors: |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4538 | |
| 4539 | ====== ============================================================== |
| 4540 | EPERM feature not enabled, needs configuration, or already finalized |
| 4541 | EINVAL feature unknown or not present |
| 4542 | ====== ============================================================== |
Dave Martin | 50036ad | 2018-09-28 14:39:27 +0100 | [diff] [blame] | 4543 | |
| 4544 | Recognised values for feature: |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4545 | |
| 4546 | ===== =========================================== |
Dave Martin | 9df2d66 | 2019-04-12 13:28:05 +0100 | [diff] [blame] | 4547 | arm64 KVM_ARM_VCPU_SVE (requires KVM_CAP_ARM_SVE) |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4548 | ===== =========================================== |
Dave Martin | 50036ad | 2018-09-28 14:39:27 +0100 | [diff] [blame] | 4549 | |
| 4550 | Finalizes the configuration of the specified vcpu feature. |
| 4551 | |
| 4552 | The vcpu must already have been initialised, enabling the affected feature, by |
| 4553 | means of a successful KVM_ARM_VCPU_INIT call with the appropriate flag set in |
| 4554 | features[]. |
| 4555 | |
| 4556 | For affected vcpu features, this is a mandatory step that must be performed |
| 4557 | before the vcpu is fully usable. |
| 4558 | |
| 4559 | Between KVM_ARM_VCPU_INIT and KVM_ARM_VCPU_FINALIZE, the feature may be |
| 4560 | configured by use of ioctls such as KVM_SET_ONE_REG. The exact configuration |
| 4561 | that should be performaned and how to do it are feature-dependent. |
| 4562 | |
| 4563 | Other calls that depend on a particular feature being finalized, such as |
| 4564 | KVM_RUN, KVM_GET_REG_LIST, KVM_GET_ONE_REG and KVM_SET_ONE_REG, will fail with |
| 4565 | -EPERM unless the feature has already been finalized by means of a |
| 4566 | KVM_ARM_VCPU_FINALIZE call. |
| 4567 | |
| 4568 | See KVM_ARM_VCPU_INIT for details of vcpu features that require finalization |
| 4569 | using this ioctl. |
| 4570 | |
Eric Hankland | 66bb8a0 | 2019-07-10 18:25:15 -0700 | [diff] [blame] | 4571 | 4.120 KVM_SET_PMU_EVENT_FILTER |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4572 | ------------------------------ |
Eric Hankland | 66bb8a0 | 2019-07-10 18:25:15 -0700 | [diff] [blame] | 4573 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4574 | :Capability: KVM_CAP_PMU_EVENT_FILTER |
| 4575 | :Architectures: x86 |
| 4576 | :Type: vm ioctl |
| 4577 | :Parameters: struct kvm_pmu_event_filter (in) |
| 4578 | :Returns: 0 on success, -1 on error |
Eric Hankland | 66bb8a0 | 2019-07-10 18:25:15 -0700 | [diff] [blame] | 4579 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4580 | :: |
| 4581 | |
| 4582 | struct kvm_pmu_event_filter { |
Eric Hankland | 30cd860 | 2019-07-18 11:38:18 -0700 | [diff] [blame] | 4583 | __u32 action; |
| 4584 | __u32 nevents; |
| 4585 | __u32 fixed_counter_bitmap; |
| 4586 | __u32 flags; |
| 4587 | __u32 pad[4]; |
| 4588 | __u64 events[0]; |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4589 | }; |
Eric Hankland | 66bb8a0 | 2019-07-10 18:25:15 -0700 | [diff] [blame] | 4590 | |
| 4591 | This ioctl restricts the set of PMU events that the guest can program. |
| 4592 | The argument holds a list of events which will be allowed or denied. |
| 4593 | The eventsel+umask of each event the guest attempts to program is compared |
| 4594 | against the events field to determine whether the guest should have access. |
Eric Hankland | 30cd860 | 2019-07-18 11:38:18 -0700 | [diff] [blame] | 4595 | The events field only controls general purpose counters; fixed purpose |
| 4596 | counters are controlled by the fixed_counter_bitmap. |
| 4597 | |
| 4598 | No flags are defined yet, the field must be zero. |
Eric Hankland | 66bb8a0 | 2019-07-10 18:25:15 -0700 | [diff] [blame] | 4599 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4600 | Valid values for 'action':: |
| 4601 | |
| 4602 | #define KVM_PMU_EVENT_ALLOW 0 |
| 4603 | #define KVM_PMU_EVENT_DENY 1 |
Eric Hankland | 66bb8a0 | 2019-07-10 18:25:15 -0700 | [diff] [blame] | 4604 | |
Bharata B Rao | 2294568 | 2019-11-25 08:36:30 +0530 | [diff] [blame] | 4605 | 4.121 KVM_PPC_SVM_OFF |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4606 | --------------------- |
Bharata B Rao | 2294568 | 2019-11-25 08:36:30 +0530 | [diff] [blame] | 4607 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4608 | :Capability: basic |
| 4609 | :Architectures: powerpc |
| 4610 | :Type: vm ioctl |
| 4611 | :Parameters: none |
| 4612 | :Returns: 0 on successful completion, |
| 4613 | |
Bharata B Rao | 2294568 | 2019-11-25 08:36:30 +0530 | [diff] [blame] | 4614 | Errors: |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4615 | |
| 4616 | ====== ================================================================ |
| 4617 | EINVAL if ultravisor failed to terminate the secure guest |
| 4618 | ENOMEM if hypervisor failed to allocate new radix page tables for guest |
| 4619 | ====== ================================================================ |
Bharata B Rao | 2294568 | 2019-11-25 08:36:30 +0530 | [diff] [blame] | 4620 | |
| 4621 | This ioctl is used to turn off the secure mode of the guest or transition |
| 4622 | the guest from secure mode to normal mode. This is invoked when the guest |
| 4623 | is reset. This has no effect if called for a normal guest. |
| 4624 | |
| 4625 | This ioctl issues an ultravisor call to terminate the secure guest, |
| 4626 | unpins the VPA pages and releases all the device pages that are used to |
| 4627 | track the secure pages by hypervisor. |
Eric Hankland | 66bb8a0 | 2019-07-10 18:25:15 -0700 | [diff] [blame] | 4628 | |
Janosch Frank | 7de3f14 | 2020-01-31 05:02:02 -0500 | [diff] [blame] | 4629 | 4.122 KVM_S390_NORMAL_RESET |
Christian Borntraeger | a93236f | 2020-02-24 11:15:59 +0100 | [diff] [blame] | 4630 | --------------------------- |
Janosch Frank | 7de3f14 | 2020-01-31 05:02:02 -0500 | [diff] [blame] | 4631 | |
Christian Borntraeger | a93236f | 2020-02-24 11:15:59 +0100 | [diff] [blame] | 4632 | :Capability: KVM_CAP_S390_VCPU_RESETS |
| 4633 | :Architectures: s390 |
| 4634 | :Type: vcpu ioctl |
| 4635 | :Parameters: none |
| 4636 | :Returns: 0 |
Janosch Frank | 7de3f14 | 2020-01-31 05:02:02 -0500 | [diff] [blame] | 4637 | |
| 4638 | This ioctl resets VCPU registers and control structures according to |
| 4639 | the cpu reset definition in the POP (Principles Of Operation). |
| 4640 | |
| 4641 | 4.123 KVM_S390_INITIAL_RESET |
Christian Borntraeger | a93236f | 2020-02-24 11:15:59 +0100 | [diff] [blame] | 4642 | ---------------------------- |
Janosch Frank | 7de3f14 | 2020-01-31 05:02:02 -0500 | [diff] [blame] | 4643 | |
Christian Borntraeger | a93236f | 2020-02-24 11:15:59 +0100 | [diff] [blame] | 4644 | :Capability: none |
| 4645 | :Architectures: s390 |
| 4646 | :Type: vcpu ioctl |
| 4647 | :Parameters: none |
| 4648 | :Returns: 0 |
Janosch Frank | 7de3f14 | 2020-01-31 05:02:02 -0500 | [diff] [blame] | 4649 | |
| 4650 | This ioctl resets VCPU registers and control structures according to |
| 4651 | the initial cpu reset definition in the POP. However, the cpu is not |
| 4652 | put into ESA mode. This reset is a superset of the normal reset. |
| 4653 | |
| 4654 | 4.124 KVM_S390_CLEAR_RESET |
Christian Borntraeger | a93236f | 2020-02-24 11:15:59 +0100 | [diff] [blame] | 4655 | -------------------------- |
Janosch Frank | 7de3f14 | 2020-01-31 05:02:02 -0500 | [diff] [blame] | 4656 | |
Christian Borntraeger | a93236f | 2020-02-24 11:15:59 +0100 | [diff] [blame] | 4657 | :Capability: KVM_CAP_S390_VCPU_RESETS |
| 4658 | :Architectures: s390 |
| 4659 | :Type: vcpu ioctl |
| 4660 | :Parameters: none |
| 4661 | :Returns: 0 |
Janosch Frank | 7de3f14 | 2020-01-31 05:02:02 -0500 | [diff] [blame] | 4662 | |
| 4663 | This ioctl resets VCPU registers and control structures according to |
| 4664 | the clear cpu reset definition in the POP. However, the cpu is not put |
| 4665 | into ESA mode. This reset is a superset of the initial reset. |
| 4666 | |
| 4667 | |
Janosch Frank | 04ed89d | 2019-11-08 05:05:26 -0500 | [diff] [blame] | 4668 | 4.125 KVM_S390_PV_COMMAND |
| 4669 | ------------------------- |
| 4670 | |
| 4671 | :Capability: KVM_CAP_S390_PROTECTED |
| 4672 | :Architectures: s390 |
| 4673 | :Type: vm ioctl |
| 4674 | :Parameters: struct kvm_pv_cmd |
| 4675 | :Returns: 0 on success, < 0 on error |
| 4676 | |
| 4677 | :: |
| 4678 | |
| 4679 | struct kvm_pv_cmd { |
| 4680 | __u32 cmd; /* Command to be executed */ |
| 4681 | __u16 rc; /* Ultravisor return code */ |
| 4682 | __u16 rrc; /* Ultravisor return reason code */ |
| 4683 | __u64 data; /* Data or address */ |
| 4684 | __u32 flags; /* flags for future extensions. Must be 0 for now */ |
| 4685 | __u32 reserved[3]; |
| 4686 | }; |
| 4687 | |
| 4688 | cmd values: |
| 4689 | |
| 4690 | KVM_PV_ENABLE |
| 4691 | Allocate memory and register the VM with the Ultravisor, thereby |
| 4692 | donating memory to the Ultravisor that will become inaccessible to |
| 4693 | KVM. All existing CPUs are converted to protected ones. After this |
| 4694 | command has succeeded, any CPU added via hotplug will become |
| 4695 | protected during its creation as well. |
| 4696 | |
Christian Borntraeger | 7a26536 | 2020-03-27 08:06:42 +0100 | [diff] [blame] | 4697 | Errors: |
| 4698 | |
| 4699 | ===== ============================= |
| 4700 | EINTR an unmasked signal is pending |
| 4701 | ===== ============================= |
| 4702 | |
Janosch Frank | 04ed89d | 2019-11-08 05:05:26 -0500 | [diff] [blame] | 4703 | KVM_PV_DISABLE |
| 4704 | |
| 4705 | Deregister the VM from the Ultravisor and reclaim the memory that |
| 4706 | had been donated to the Ultravisor, making it usable by the kernel |
| 4707 | again. All registered VCPUs are converted back to non-protected |
| 4708 | ones. |
| 4709 | |
| 4710 | KVM_PV_VM_SET_SEC_PARMS |
| 4711 | Pass the image header from VM memory to the Ultravisor in |
| 4712 | preparation of image unpacking and verification. |
| 4713 | |
| 4714 | KVM_PV_VM_UNPACK |
| 4715 | Unpack (protect and decrypt) a page of the encrypted boot image. |
| 4716 | |
| 4717 | KVM_PV_VM_VERIFY |
| 4718 | Verify the integrity of the unpacked image. Only if this succeeds, |
| 4719 | KVM is allowed to start protected VCPUs. |
| 4720 | |
Alexander Graf | 1a155254 | 2020-09-25 16:34:21 +0200 | [diff] [blame] | 4721 | 4.126 KVM_X86_SET_MSR_FILTER |
| 4722 | ---------------------------- |
| 4723 | |
| 4724 | :Capability: KVM_X86_SET_MSR_FILTER |
| 4725 | :Architectures: x86 |
| 4726 | :Type: vm ioctl |
| 4727 | :Parameters: struct kvm_msr_filter |
| 4728 | :Returns: 0 on success, < 0 on error |
| 4729 | |
| 4730 | :: |
| 4731 | |
| 4732 | struct kvm_msr_filter_range { |
| 4733 | #define KVM_MSR_FILTER_READ (1 << 0) |
| 4734 | #define KVM_MSR_FILTER_WRITE (1 << 1) |
| 4735 | __u32 flags; |
| 4736 | __u32 nmsrs; /* number of msrs in bitmap */ |
| 4737 | __u32 base; /* MSR index the bitmap starts at */ |
| 4738 | __u8 *bitmap; /* a 1 bit allows the operations in flags, 0 denies */ |
| 4739 | }; |
| 4740 | |
| 4741 | #define KVM_MSR_FILTER_MAX_RANGES 16 |
| 4742 | struct kvm_msr_filter { |
| 4743 | #define KVM_MSR_FILTER_DEFAULT_ALLOW (0 << 0) |
| 4744 | #define KVM_MSR_FILTER_DEFAULT_DENY (1 << 0) |
| 4745 | __u32 flags; |
| 4746 | struct kvm_msr_filter_range ranges[KVM_MSR_FILTER_MAX_RANGES]; |
| 4747 | }; |
| 4748 | |
Sean Christopherson | 9389b9d | 2020-10-05 12:55:32 -0700 | [diff] [blame] | 4749 | flags values for ``struct kvm_msr_filter_range``: |
Alexander Graf | 1a155254 | 2020-09-25 16:34:21 +0200 | [diff] [blame] | 4750 | |
Sean Christopherson | 9389b9d | 2020-10-05 12:55:32 -0700 | [diff] [blame] | 4751 | ``KVM_MSR_FILTER_READ`` |
Alexander Graf | 1a155254 | 2020-09-25 16:34:21 +0200 | [diff] [blame] | 4752 | |
| 4753 | Filter read accesses to MSRs using the given bitmap. A 0 in the bitmap |
| 4754 | indicates that a read should immediately fail, while a 1 indicates that |
| 4755 | a read for a particular MSR should be handled regardless of the default |
| 4756 | filter action. |
| 4757 | |
Sean Christopherson | 9389b9d | 2020-10-05 12:55:32 -0700 | [diff] [blame] | 4758 | ``KVM_MSR_FILTER_WRITE`` |
Alexander Graf | 1a155254 | 2020-09-25 16:34:21 +0200 | [diff] [blame] | 4759 | |
| 4760 | Filter write accesses to MSRs using the given bitmap. A 0 in the bitmap |
| 4761 | indicates that a write should immediately fail, while a 1 indicates that |
| 4762 | a write for a particular MSR should be handled regardless of the default |
| 4763 | filter action. |
| 4764 | |
Sean Christopherson | 9389b9d | 2020-10-05 12:55:32 -0700 | [diff] [blame] | 4765 | ``KVM_MSR_FILTER_READ | KVM_MSR_FILTER_WRITE`` |
Alexander Graf | 1a155254 | 2020-09-25 16:34:21 +0200 | [diff] [blame] | 4766 | |
| 4767 | Filter both read and write accesses to MSRs using the given bitmap. A 0 |
| 4768 | in the bitmap indicates that both reads and writes should immediately fail, |
| 4769 | while a 1 indicates that reads and writes for a particular MSR are not |
| 4770 | filtered by this range. |
| 4771 | |
Sean Christopherson | 9389b9d | 2020-10-05 12:55:32 -0700 | [diff] [blame] | 4772 | flags values for ``struct kvm_msr_filter``: |
Alexander Graf | 1a155254 | 2020-09-25 16:34:21 +0200 | [diff] [blame] | 4773 | |
Sean Christopherson | 9389b9d | 2020-10-05 12:55:32 -0700 | [diff] [blame] | 4774 | ``KVM_MSR_FILTER_DEFAULT_ALLOW`` |
Alexander Graf | 1a155254 | 2020-09-25 16:34:21 +0200 | [diff] [blame] | 4775 | |
| 4776 | If no filter range matches an MSR index that is getting accessed, KVM will |
| 4777 | fall back to allowing access to the MSR. |
| 4778 | |
Sean Christopherson | 9389b9d | 2020-10-05 12:55:32 -0700 | [diff] [blame] | 4779 | ``KVM_MSR_FILTER_DEFAULT_DENY`` |
Alexander Graf | 1a155254 | 2020-09-25 16:34:21 +0200 | [diff] [blame] | 4780 | |
| 4781 | If no filter range matches an MSR index that is getting accessed, KVM will |
| 4782 | fall back to rejecting access to the MSR. In this mode, all MSRs that should |
| 4783 | be processed by KVM need to explicitly be marked as allowed in the bitmaps. |
| 4784 | |
| 4785 | This ioctl allows user space to define up to 16 bitmaps of MSR ranges to |
| 4786 | specify whether a certain MSR access should be explicitly filtered for or not. |
| 4787 | |
| 4788 | If this ioctl has never been invoked, MSR accesses are not guarded and the |
Sean Christopherson | 9389b9d | 2020-10-05 12:55:32 -0700 | [diff] [blame] | 4789 | default KVM in-kernel emulation behavior is fully preserved. |
Alexander Graf | 1a155254 | 2020-09-25 16:34:21 +0200 | [diff] [blame] | 4790 | |
Paolo Bonzini | 043248b | 2020-10-20 10:57:01 -0400 | [diff] [blame] | 4791 | Calling this ioctl with an empty set of ranges (all nmsrs == 0) disables MSR |
| 4792 | filtering. In that mode, ``KVM_MSR_FILTER_DEFAULT_DENY`` is invalid and causes |
| 4793 | an error. |
| 4794 | |
Alexander Graf | 1a155254 | 2020-09-25 16:34:21 +0200 | [diff] [blame] | 4795 | As soon as the filtering is in place, every MSR access is processed through |
Sean Christopherson | 9389b9d | 2020-10-05 12:55:32 -0700 | [diff] [blame] | 4796 | the filtering except for accesses to the x2APIC MSRs (from 0x800 to 0x8ff); |
| 4797 | x2APIC MSRs are always allowed, independent of the ``default_allow`` setting, |
| 4798 | and their behavior depends on the ``X2APIC_ENABLE`` bit of the APIC base |
| 4799 | register. |
| 4800 | |
Paolo Bonzini | 043248b | 2020-10-20 10:57:01 -0400 | [diff] [blame] | 4801 | If a bit is within one of the defined ranges, read and write accesses are |
| 4802 | guarded by the bitmap's value for the MSR index if the kind of access |
| 4803 | is included in the ``struct kvm_msr_filter_range`` flags. If no range |
| 4804 | cover this particular access, the behavior is determined by the flags |
| 4805 | field in the kvm_msr_filter struct: ``KVM_MSR_FILTER_DEFAULT_ALLOW`` |
| 4806 | and ``KVM_MSR_FILTER_DEFAULT_DENY``. |
Alexander Graf | 1a155254 | 2020-09-25 16:34:21 +0200 | [diff] [blame] | 4807 | |
| 4808 | Each bitmap range specifies a range of MSRs to potentially allow access on. |
| 4809 | The range goes from MSR index [base .. base+nmsrs]. The flags field |
| 4810 | indicates whether reads, writes or both reads and writes are filtered |
| 4811 | by setting a 1 bit in the bitmap for the corresponding MSR index. |
| 4812 | |
| 4813 | If an MSR access is not permitted through the filtering, it generates a |
| 4814 | #GP inside the guest. When combined with KVM_CAP_X86_USER_SPACE_MSR, that |
| 4815 | allows user space to deflect and potentially handle various MSR accesses |
| 4816 | into user space. |
| 4817 | |
Sean Christopherson | 771dfb3 | 2021-03-16 11:44:33 -0700 | [diff] [blame] | 4818 | Note, invoking this ioctl with a vCPU is running is inherently racy. However, |
| 4819 | KVM does guarantee that vCPUs will see either the previous filter or the new |
| 4820 | filter, e.g. MSRs with identical settings in both the old and new filter will |
| 4821 | have deterministic behavior. |
Alexander Graf | 1a155254 | 2020-09-25 16:34:21 +0200 | [diff] [blame] | 4822 | |
Janosch Frank | 04ed89d | 2019-11-08 05:05:26 -0500 | [diff] [blame] | 4823 | |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 4824 | 5. The kvm_run structure |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4825 | ======================== |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 4826 | |
| 4827 | Application code obtains a pointer to the kvm_run structure by |
| 4828 | mmap()ing a vcpu fd. From that point, application code can control |
| 4829 | execution by changing fields in kvm_run prior to calling the KVM_RUN |
| 4830 | ioctl, and obtain information about the reason KVM_RUN returned by |
| 4831 | looking up structure members. |
| 4832 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4833 | :: |
| 4834 | |
| 4835 | struct kvm_run { |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 4836 | /* in */ |
| 4837 | __u8 request_interrupt_window; |
| 4838 | |
| 4839 | Request that KVM_RUN return when it becomes possible to inject external |
| 4840 | interrupts into the guest. Useful in conjunction with KVM_INTERRUPT. |
| 4841 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4842 | :: |
| 4843 | |
Paolo Bonzini | 460df4c | 2017-02-08 11:50:15 +0100 | [diff] [blame] | 4844 | __u8 immediate_exit; |
| 4845 | |
| 4846 | This field is polled once when KVM_RUN starts; if non-zero, KVM_RUN |
| 4847 | exits immediately, returning -EINTR. In the common scenario where a |
| 4848 | signal is used to "kick" a VCPU out of KVM_RUN, this field can be used |
| 4849 | to avoid usage of KVM_SET_SIGNAL_MASK, which has worse scalability. |
| 4850 | Rather than blocking the signal outside KVM_RUN, userspace can set up |
| 4851 | a signal handler that sets run->immediate_exit to a non-zero value. |
| 4852 | |
| 4853 | This field is ignored if KVM_CAP_IMMEDIATE_EXIT is not available. |
| 4854 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4855 | :: |
| 4856 | |
Paolo Bonzini | 460df4c | 2017-02-08 11:50:15 +0100 | [diff] [blame] | 4857 | __u8 padding1[6]; |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 4858 | |
| 4859 | /* out */ |
| 4860 | __u32 exit_reason; |
| 4861 | |
| 4862 | When KVM_RUN has returned successfully (return value 0), this informs |
| 4863 | application code why KVM_RUN has returned. Allowable values for this |
| 4864 | field are detailed below. |
| 4865 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4866 | :: |
| 4867 | |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 4868 | __u8 ready_for_interrupt_injection; |
| 4869 | |
| 4870 | If request_interrupt_window has been specified, this field indicates |
| 4871 | an interrupt can be injected now with KVM_INTERRUPT. |
| 4872 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4873 | :: |
| 4874 | |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 4875 | __u8 if_flag; |
| 4876 | |
| 4877 | The value of the current interrupt flag. Only valid if in-kernel |
| 4878 | local APIC is not used. |
| 4879 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4880 | :: |
| 4881 | |
Paolo Bonzini | f077825 | 2015-04-01 15:06:40 +0200 | [diff] [blame] | 4882 | __u16 flags; |
| 4883 | |
| 4884 | More architecture-specific flags detailing state of the VCPU that may |
| 4885 | affect the device's behavior. The only currently defined flag is |
| 4886 | KVM_RUN_X86_SMM, which is valid on x86 machines and is set if the |
| 4887 | VCPU is in system management mode. |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 4888 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4889 | :: |
| 4890 | |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 4891 | /* in (pre_kvm_run), out (post_kvm_run) */ |
| 4892 | __u64 cr8; |
| 4893 | |
| 4894 | The value of the cr8 register. Only valid if in-kernel local APIC is |
| 4895 | not used. Both input and output. |
| 4896 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4897 | :: |
| 4898 | |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 4899 | __u64 apic_base; |
| 4900 | |
| 4901 | The value of the APIC BASE msr. Only valid if in-kernel local |
| 4902 | APIC is not used. Both input and output. |
| 4903 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4904 | :: |
| 4905 | |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 4906 | union { |
| 4907 | /* KVM_EXIT_UNKNOWN */ |
| 4908 | struct { |
| 4909 | __u64 hardware_exit_reason; |
| 4910 | } hw; |
| 4911 | |
| 4912 | If exit_reason is KVM_EXIT_UNKNOWN, the vcpu has exited due to unknown |
| 4913 | reasons. Further architecture-specific information is available in |
| 4914 | hardware_exit_reason. |
| 4915 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4916 | :: |
| 4917 | |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 4918 | /* KVM_EXIT_FAIL_ENTRY */ |
| 4919 | struct { |
| 4920 | __u64 hardware_entry_failure_reason; |
Jim Mattson | 1aa561b | 2020-06-03 16:56:21 -0700 | [diff] [blame] | 4921 | __u32 cpu; /* if KVM_LAST_CPU */ |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 4922 | } fail_entry; |
| 4923 | |
| 4924 | If exit_reason is KVM_EXIT_FAIL_ENTRY, the vcpu could not be run due |
| 4925 | to unknown reasons. Further architecture-specific information is |
| 4926 | available in hardware_entry_failure_reason. |
| 4927 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4928 | :: |
| 4929 | |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 4930 | /* KVM_EXIT_EXCEPTION */ |
| 4931 | struct { |
| 4932 | __u32 exception; |
| 4933 | __u32 error_code; |
| 4934 | } ex; |
| 4935 | |
| 4936 | Unused. |
| 4937 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4938 | :: |
| 4939 | |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 4940 | /* KVM_EXIT_IO */ |
| 4941 | struct { |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4942 | #define KVM_EXIT_IO_IN 0 |
| 4943 | #define KVM_EXIT_IO_OUT 1 |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 4944 | __u8 direction; |
| 4945 | __u8 size; /* bytes */ |
| 4946 | __u16 port; |
| 4947 | __u32 count; |
| 4948 | __u64 data_offset; /* relative to kvm_run start */ |
| 4949 | } io; |
| 4950 | |
Wu Fengguang | 2044892d | 2009-12-24 09:04:16 +0800 | [diff] [blame] | 4951 | If exit_reason is KVM_EXIT_IO, then the vcpu has |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 4952 | executed a port I/O instruction which could not be satisfied by kvm. |
| 4953 | data_offset describes where the data is located (KVM_EXIT_IO_OUT) or |
| 4954 | where kvm expects application code to place the data for the next |
Wu Fengguang | 2044892d | 2009-12-24 09:04:16 +0800 | [diff] [blame] | 4955 | KVM_RUN invocation (KVM_EXIT_IO_IN). Data format is a packed array. |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 4956 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4957 | :: |
| 4958 | |
Alex Bennée | 8ab30c1 | 2015-07-07 17:29:53 +0100 | [diff] [blame] | 4959 | /* KVM_EXIT_DEBUG */ |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 4960 | struct { |
| 4961 | struct kvm_debug_exit_arch arch; |
| 4962 | } debug; |
| 4963 | |
Alex Bennée | 8ab30c1 | 2015-07-07 17:29:53 +0100 | [diff] [blame] | 4964 | If the exit_reason is KVM_EXIT_DEBUG, then a vcpu is processing a debug event |
| 4965 | for which architecture specific information is returned. |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 4966 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4967 | :: |
| 4968 | |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 4969 | /* KVM_EXIT_MMIO */ |
| 4970 | struct { |
| 4971 | __u64 phys_addr; |
| 4972 | __u8 data[8]; |
| 4973 | __u32 len; |
| 4974 | __u8 is_write; |
| 4975 | } mmio; |
| 4976 | |
Wu Fengguang | 2044892d | 2009-12-24 09:04:16 +0800 | [diff] [blame] | 4977 | If exit_reason is KVM_EXIT_MMIO, then the vcpu has |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 4978 | executed a memory-mapped I/O instruction which could not be satisfied |
| 4979 | by kvm. The 'data' member contains the written data if 'is_write' is |
| 4980 | true, and should be filled by application code otherwise. |
| 4981 | |
Christoffer Dall | 6acdb16 | 2014-01-28 08:28:42 -0800 | [diff] [blame] | 4982 | The 'data' member contains, in its first 'len' bytes, the value as it would |
| 4983 | appear if the VCPU performed a load or store of the appropriate width directly |
| 4984 | to the byte array. |
| 4985 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4986 | .. note:: |
| 4987 | |
Alexander Graf | 1ae0995 | 2020-09-25 16:34:16 +0200 | [diff] [blame] | 4988 | For KVM_EXIT_IO, KVM_EXIT_MMIO, KVM_EXIT_OSI, KVM_EXIT_PAPR, |
| 4989 | KVM_EXIT_EPR, KVM_EXIT_X86_RDMSR and KVM_EXIT_X86_WRMSR the corresponding |
| 4990 | operations are complete (and guest state is consistent) only after userspace |
| 4991 | has re-entered the kernel with KVM_RUN. The kernel side will first finish |
| 4992 | incomplete operations and then check for pending signals. Userspace |
| 4993 | can re-enter the guest with an unmasked signal pending to complete |
| 4994 | pending operations. |
Marcelo Tosatti | 6796134 | 2010-02-13 16:10:26 -0200 | [diff] [blame] | 4995 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 4996 | :: |
| 4997 | |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 4998 | /* KVM_EXIT_HYPERCALL */ |
| 4999 | struct { |
| 5000 | __u64 nr; |
| 5001 | __u64 args[6]; |
| 5002 | __u64 ret; |
| 5003 | __u32 longmode; |
| 5004 | __u32 pad; |
| 5005 | } hypercall; |
| 5006 | |
Avi Kivity | 647dc49 | 2010-04-01 14:39:21 +0300 | [diff] [blame] | 5007 | Unused. This was once used for 'hypercall to userspace'. To implement |
| 5008 | such functionality, use KVM_EXIT_IO (x86) or KVM_EXIT_MMIO (all except s390). |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5009 | |
| 5010 | .. note:: KVM_EXIT_IO is significantly faster than KVM_EXIT_MMIO. |
| 5011 | |
| 5012 | :: |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 5013 | |
| 5014 | /* KVM_EXIT_TPR_ACCESS */ |
| 5015 | struct { |
| 5016 | __u64 rip; |
| 5017 | __u32 is_write; |
| 5018 | __u32 pad; |
| 5019 | } tpr_access; |
| 5020 | |
| 5021 | To be documented (KVM_TPR_ACCESS_REPORTING). |
| 5022 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5023 | :: |
| 5024 | |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 5025 | /* KVM_EXIT_S390_SIEIC */ |
| 5026 | struct { |
| 5027 | __u8 icptcode; |
| 5028 | __u64 mask; /* psw upper half */ |
| 5029 | __u64 addr; /* psw lower half */ |
| 5030 | __u16 ipa; |
| 5031 | __u32 ipb; |
| 5032 | } s390_sieic; |
| 5033 | |
| 5034 | s390 specific. |
| 5035 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5036 | :: |
| 5037 | |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 5038 | /* KVM_EXIT_S390_RESET */ |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5039 | #define KVM_S390_RESET_POR 1 |
| 5040 | #define KVM_S390_RESET_CLEAR 2 |
| 5041 | #define KVM_S390_RESET_SUBSYSTEM 4 |
| 5042 | #define KVM_S390_RESET_CPU_INIT 8 |
| 5043 | #define KVM_S390_RESET_IPL 16 |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 5044 | __u64 s390_reset_flags; |
| 5045 | |
| 5046 | s390 specific. |
| 5047 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5048 | :: |
| 5049 | |
Carsten Otte | e168bf8 | 2012-01-04 10:25:22 +0100 | [diff] [blame] | 5050 | /* KVM_EXIT_S390_UCONTROL */ |
| 5051 | struct { |
| 5052 | __u64 trans_exc_code; |
| 5053 | __u32 pgm_code; |
| 5054 | } s390_ucontrol; |
| 5055 | |
| 5056 | s390 specific. A page fault has occurred for a user controlled virtual |
| 5057 | machine (KVM_VM_S390_UNCONTROL) on it's host page table that cannot be |
| 5058 | resolved by the kernel. |
| 5059 | The program code and the translation exception code that were placed |
| 5060 | in the cpu's lowcore are presented here as defined by the z Architecture |
| 5061 | Principles of Operation Book in the Chapter for Dynamic Address Translation |
| 5062 | (DAT) |
| 5063 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5064 | :: |
| 5065 | |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 5066 | /* KVM_EXIT_DCR */ |
| 5067 | struct { |
| 5068 | __u32 dcrn; |
| 5069 | __u32 data; |
| 5070 | __u8 is_write; |
| 5071 | } dcr; |
| 5072 | |
Alexander Graf | ce91ddc | 2014-07-28 19:29:13 +0200 | [diff] [blame] | 5073 | Deprecated - was used for 440 KVM. |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 5074 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5075 | :: |
| 5076 | |
Alexander Graf | ad0a048 | 2010-03-24 21:48:30 +0100 | [diff] [blame] | 5077 | /* KVM_EXIT_OSI */ |
| 5078 | struct { |
| 5079 | __u64 gprs[32]; |
| 5080 | } osi; |
| 5081 | |
| 5082 | MOL uses a special hypercall interface it calls 'OSI'. To enable it, we catch |
| 5083 | hypercalls and exit with this exit struct that contains all the guest gprs. |
| 5084 | |
| 5085 | If exit_reason is KVM_EXIT_OSI, then the vcpu has triggered such a hypercall. |
| 5086 | Userspace can now handle the hypercall and when it's done modify the gprs as |
| 5087 | necessary. Upon guest entry all guest GPRs will then be replaced by the values |
| 5088 | in this struct. |
| 5089 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5090 | :: |
| 5091 | |
Paul Mackerras | de56a94 | 2011-06-29 00:21:34 +0000 | [diff] [blame] | 5092 | /* KVM_EXIT_PAPR_HCALL */ |
| 5093 | struct { |
| 5094 | __u64 nr; |
| 5095 | __u64 ret; |
| 5096 | __u64 args[9]; |
| 5097 | } papr_hcall; |
| 5098 | |
| 5099 | This is used on 64-bit PowerPC when emulating a pSeries partition, |
| 5100 | e.g. with the 'pseries' machine type in qemu. It occurs when the |
| 5101 | guest does a hypercall using the 'sc 1' instruction. The 'nr' field |
| 5102 | contains the hypercall number (from the guest R3), and 'args' contains |
| 5103 | the arguments (from the guest R4 - R12). Userspace should put the |
| 5104 | return code in 'ret' and any extra returned values in args[]. |
| 5105 | The possible hypercalls are defined in the Power Architecture Platform |
| 5106 | Requirements (PAPR) document available from www.power.org (free |
| 5107 | developer registration required to access it). |
| 5108 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5109 | :: |
| 5110 | |
Cornelia Huck | fa6b7fe | 2012-12-20 15:32:12 +0100 | [diff] [blame] | 5111 | /* KVM_EXIT_S390_TSCH */ |
| 5112 | struct { |
| 5113 | __u16 subchannel_id; |
| 5114 | __u16 subchannel_nr; |
| 5115 | __u32 io_int_parm; |
| 5116 | __u32 io_int_word; |
| 5117 | __u32 ipb; |
| 5118 | __u8 dequeued; |
| 5119 | } s390_tsch; |
| 5120 | |
| 5121 | s390 specific. This exit occurs when KVM_CAP_S390_CSS_SUPPORT has been enabled |
| 5122 | and TEST SUBCHANNEL was intercepted. If dequeued is set, a pending I/O |
| 5123 | interrupt for the target subchannel has been dequeued and subchannel_id, |
| 5124 | subchannel_nr, io_int_parm and io_int_word contain the parameters for that |
| 5125 | interrupt. ipb is needed for instruction parameter decoding. |
| 5126 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5127 | :: |
| 5128 | |
Alexander Graf | 1c81063 | 2013-01-04 18:12:48 +0100 | [diff] [blame] | 5129 | /* KVM_EXIT_EPR */ |
| 5130 | struct { |
| 5131 | __u32 epr; |
| 5132 | } epr; |
| 5133 | |
| 5134 | On FSL BookE PowerPC chips, the interrupt controller has a fast patch |
| 5135 | interrupt acknowledge path to the core. When the core successfully |
| 5136 | delivers an interrupt, it automatically populates the EPR register with |
| 5137 | the interrupt vector number and acknowledges the interrupt inside |
| 5138 | the interrupt controller. |
| 5139 | |
| 5140 | In case the interrupt controller lives in user space, we need to do |
| 5141 | the interrupt acknowledge cycle through it to fetch the next to be |
| 5142 | delivered interrupt vector using this exit. |
| 5143 | |
| 5144 | It gets triggered whenever both KVM_CAP_PPC_EPR are enabled and an |
| 5145 | external interrupt has just been delivered into the guest. User space |
| 5146 | should put the acknowledged interrupt vector into the 'epr' field. |
| 5147 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5148 | :: |
| 5149 | |
Anup Patel | 8ad6b63 | 2014-04-29 11:24:19 +0530 | [diff] [blame] | 5150 | /* KVM_EXIT_SYSTEM_EVENT */ |
| 5151 | struct { |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5152 | #define KVM_SYSTEM_EVENT_SHUTDOWN 1 |
| 5153 | #define KVM_SYSTEM_EVENT_RESET 2 |
| 5154 | #define KVM_SYSTEM_EVENT_CRASH 3 |
Anup Patel | 8ad6b63 | 2014-04-29 11:24:19 +0530 | [diff] [blame] | 5155 | __u32 type; |
| 5156 | __u64 flags; |
| 5157 | } system_event; |
| 5158 | |
| 5159 | If exit_reason is KVM_EXIT_SYSTEM_EVENT then the vcpu has triggered |
| 5160 | a system-level event using some architecture specific mechanism (hypercall |
| 5161 | or some special instruction). In case of ARM/ARM64, this is triggered using |
| 5162 | HVC instruction based PSCI call from the vcpu. The 'type' field describes |
| 5163 | the system-level event type. The 'flags' field describes architecture |
| 5164 | specific flags for the system-level event. |
| 5165 | |
Christoffer Dall | cf5d3188 | 2014-10-16 17:00:18 +0200 | [diff] [blame] | 5166 | Valid values for 'type' are: |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5167 | |
| 5168 | - KVM_SYSTEM_EVENT_SHUTDOWN -- the guest has requested a shutdown of the |
Christoffer Dall | cf5d3188 | 2014-10-16 17:00:18 +0200 | [diff] [blame] | 5169 | VM. Userspace is not obliged to honour this, and if it does honour |
| 5170 | this does not need to destroy the VM synchronously (ie it may call |
| 5171 | KVM_RUN again before shutdown finally occurs). |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5172 | - KVM_SYSTEM_EVENT_RESET -- the guest has requested a reset of the VM. |
Christoffer Dall | cf5d3188 | 2014-10-16 17:00:18 +0200 | [diff] [blame] | 5173 | As with SHUTDOWN, userspace can choose to ignore the request, or |
| 5174 | to schedule the reset to occur in the future and may call KVM_RUN again. |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5175 | - KVM_SYSTEM_EVENT_CRASH -- the guest crash occurred and the guest |
Andrey Smetanin | 2ce7918 | 2015-07-03 15:01:41 +0300 | [diff] [blame] | 5176 | has requested a crash condition maintenance. Userspace can choose |
| 5177 | to ignore the request, or to gather VM memory core dump and/or |
| 5178 | reset/shutdown of the VM. |
Christoffer Dall | cf5d3188 | 2014-10-16 17:00:18 +0200 | [diff] [blame] | 5179 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5180 | :: |
| 5181 | |
Steve Rutherford | 7543a63 | 2015-07-29 23:21:41 -0700 | [diff] [blame] | 5182 | /* KVM_EXIT_IOAPIC_EOI */ |
| 5183 | struct { |
| 5184 | __u8 vector; |
| 5185 | } eoi; |
| 5186 | |
| 5187 | Indicates that the VCPU's in-kernel local APIC received an EOI for a |
| 5188 | level-triggered IOAPIC interrupt. This exit only triggers when the |
| 5189 | IOAPIC is implemented in userspace (i.e. KVM_CAP_SPLIT_IRQCHIP is enabled); |
| 5190 | the userspace IOAPIC should process the EOI and retrigger the interrupt if |
| 5191 | it is still asserted. Vector is the LAPIC interrupt vector for which the |
| 5192 | EOI was received. |
| 5193 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5194 | :: |
| 5195 | |
Andrey Smetanin | db397571 | 2015-11-10 15:36:35 +0300 | [diff] [blame] | 5196 | struct kvm_hyperv_exit { |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5197 | #define KVM_EXIT_HYPERV_SYNIC 1 |
| 5198 | #define KVM_EXIT_HYPERV_HCALL 2 |
Jon Doron | f97f5a5 | 2020-05-29 16:45:40 +0300 | [diff] [blame] | 5199 | #define KVM_EXIT_HYPERV_SYNDBG 3 |
Andrey Smetanin | db397571 | 2015-11-10 15:36:35 +0300 | [diff] [blame] | 5200 | __u32 type; |
Jon Doron | f7d31e6 | 2020-04-24 14:37:40 +0300 | [diff] [blame] | 5201 | __u32 pad1; |
Andrey Smetanin | db397571 | 2015-11-10 15:36:35 +0300 | [diff] [blame] | 5202 | union { |
| 5203 | struct { |
| 5204 | __u32 msr; |
Jon Doron | f7d31e6 | 2020-04-24 14:37:40 +0300 | [diff] [blame] | 5205 | __u32 pad2; |
Andrey Smetanin | db397571 | 2015-11-10 15:36:35 +0300 | [diff] [blame] | 5206 | __u64 control; |
| 5207 | __u64 evt_page; |
| 5208 | __u64 msg_page; |
| 5209 | } synic; |
Andrey Smetanin | 83326e4 | 2016-02-11 16:45:01 +0300 | [diff] [blame] | 5210 | struct { |
| 5211 | __u64 input; |
| 5212 | __u64 result; |
| 5213 | __u64 params[2]; |
| 5214 | } hcall; |
Jon Doron | f97f5a5 | 2020-05-29 16:45:40 +0300 | [diff] [blame] | 5215 | struct { |
| 5216 | __u32 msr; |
| 5217 | __u32 pad2; |
| 5218 | __u64 control; |
| 5219 | __u64 status; |
| 5220 | __u64 send_page; |
| 5221 | __u64 recv_page; |
| 5222 | __u64 pending_page; |
| 5223 | } syndbg; |
Andrey Smetanin | db397571 | 2015-11-10 15:36:35 +0300 | [diff] [blame] | 5224 | } u; |
| 5225 | }; |
| 5226 | /* KVM_EXIT_HYPERV */ |
| 5227 | struct kvm_hyperv_exit hyperv; |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5228 | |
Andrey Smetanin | db397571 | 2015-11-10 15:36:35 +0300 | [diff] [blame] | 5229 | Indicates that the VCPU exits into userspace to process some tasks |
| 5230 | related to Hyper-V emulation. |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5231 | |
Andrey Smetanin | db397571 | 2015-11-10 15:36:35 +0300 | [diff] [blame] | 5232 | Valid values for 'type' are: |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5233 | |
| 5234 | - KVM_EXIT_HYPERV_SYNIC -- synchronously notify user-space about |
| 5235 | |
Andrey Smetanin | db397571 | 2015-11-10 15:36:35 +0300 | [diff] [blame] | 5236 | Hyper-V SynIC state change. Notification is used to remap SynIC |
| 5237 | event/message pages and to enable/disable SynIC messages/events processing |
| 5238 | in userspace. |
| 5239 | |
Jon Doron | f97f5a5 | 2020-05-29 16:45:40 +0300 | [diff] [blame] | 5240 | - KVM_EXIT_HYPERV_SYNDBG -- synchronously notify user-space about |
| 5241 | |
| 5242 | Hyper-V Synthetic debugger state change. Notification is used to either update |
| 5243 | the pending_page location or to send a control command (send the buffer located |
| 5244 | in send_page or recv a buffer to recv_page). |
| 5245 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5246 | :: |
| 5247 | |
Christoffer Dall | c726200 | 2019-10-11 13:07:05 +0200 | [diff] [blame] | 5248 | /* KVM_EXIT_ARM_NISV */ |
| 5249 | struct { |
| 5250 | __u64 esr_iss; |
| 5251 | __u64 fault_ipa; |
| 5252 | } arm_nisv; |
| 5253 | |
| 5254 | Used on arm and arm64 systems. If a guest accesses memory not in a memslot, |
| 5255 | KVM will typically return to userspace and ask it to do MMIO emulation on its |
| 5256 | behalf. However, for certain classes of instructions, no instruction decode |
| 5257 | (direction, length of memory access) is provided, and fetching and decoding |
| 5258 | the instruction from the VM is overly complicated to live in the kernel. |
| 5259 | |
| 5260 | Historically, when this situation occurred, KVM would print a warning and kill |
| 5261 | the VM. KVM assumed that if the guest accessed non-memslot memory, it was |
| 5262 | trying to do I/O, which just couldn't be emulated, and the warning message was |
| 5263 | phrased accordingly. However, what happened more often was that a guest bug |
| 5264 | caused access outside the guest memory areas which should lead to a more |
| 5265 | meaningful warning message and an external abort in the guest, if the access |
| 5266 | did not fall within an I/O window. |
| 5267 | |
| 5268 | Userspace implementations can query for KVM_CAP_ARM_NISV_TO_USER, and enable |
| 5269 | this capability at VM creation. Once this is done, these types of errors will |
| 5270 | instead return to userspace with KVM_EXIT_ARM_NISV, with the valid bits from |
| 5271 | the HSR (arm) and ESR_EL2 (arm64) in the esr_iss field, and the faulting IPA |
| 5272 | in the fault_ipa field. Userspace can either fix up the access if it's |
| 5273 | actually an I/O access by decoding the instruction from guest memory (if it's |
| 5274 | very brave) and continue executing the guest, or it can decide to suspend, |
| 5275 | dump, or restart the guest. |
| 5276 | |
| 5277 | Note that KVM does not skip the faulting instruction as it does for |
| 5278 | KVM_EXIT_MMIO, but userspace has to emulate any change to the processing state |
| 5279 | if it decides to decode and emulate the instruction. |
| 5280 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5281 | :: |
| 5282 | |
Alexander Graf | 1ae0995 | 2020-09-25 16:34:16 +0200 | [diff] [blame] | 5283 | /* KVM_EXIT_X86_RDMSR / KVM_EXIT_X86_WRMSR */ |
| 5284 | struct { |
| 5285 | __u8 error; /* user -> kernel */ |
| 5286 | __u8 pad[7]; |
| 5287 | __u32 reason; /* kernel -> user */ |
| 5288 | __u32 index; /* kernel -> user */ |
| 5289 | __u64 data; /* kernel <-> user */ |
| 5290 | } msr; |
| 5291 | |
| 5292 | Used on x86 systems. When the VM capability KVM_CAP_X86_USER_SPACE_MSR is |
| 5293 | enabled, MSR accesses to registers that would invoke a #GP by KVM kernel code |
| 5294 | will instead trigger a KVM_EXIT_X86_RDMSR exit for reads and KVM_EXIT_X86_WRMSR |
| 5295 | exit for writes. |
| 5296 | |
| 5297 | The "reason" field specifies why the MSR trap occurred. User space will only |
| 5298 | receive MSR exit traps when a particular reason was requested during through |
| 5299 | ENABLE_CAP. Currently valid exit reasons are: |
| 5300 | |
| 5301 | KVM_MSR_EXIT_REASON_UNKNOWN - access to MSR that is unknown to KVM |
| 5302 | KVM_MSR_EXIT_REASON_INVAL - access to invalid MSRs or reserved bits |
Alexander Graf | 1a155254 | 2020-09-25 16:34:21 +0200 | [diff] [blame] | 5303 | KVM_MSR_EXIT_REASON_FILTER - access blocked by KVM_X86_SET_MSR_FILTER |
Alexander Graf | 1ae0995 | 2020-09-25 16:34:16 +0200 | [diff] [blame] | 5304 | |
| 5305 | For KVM_EXIT_X86_RDMSR, the "index" field tells user space which MSR the guest |
| 5306 | wants to read. To respond to this request with a successful read, user space |
| 5307 | writes the respective data into the "data" field and must continue guest |
| 5308 | execution to ensure the read data is transferred into guest register state. |
| 5309 | |
| 5310 | If the RDMSR request was unsuccessful, user space indicates that with a "1" in |
| 5311 | the "error" field. This will inject a #GP into the guest when the VCPU is |
| 5312 | executed again. |
| 5313 | |
| 5314 | For KVM_EXIT_X86_WRMSR, the "index" field tells user space which MSR the guest |
| 5315 | wants to write. Once finished processing the event, user space must continue |
| 5316 | vCPU execution. If the MSR write was unsuccessful, user space also sets the |
| 5317 | "error" field to "1". |
| 5318 | |
| 5319 | :: |
| 5320 | |
Avi Kivity | 9c1b96e | 2009-06-09 12:37:58 +0300 | [diff] [blame] | 5321 | /* Fix the size of the union. */ |
| 5322 | char padding[256]; |
| 5323 | }; |
Christian Borntraeger | b9e5dc8 | 2012-01-11 11:20:30 +0100 | [diff] [blame] | 5324 | |
| 5325 | /* |
| 5326 | * shared registers between kvm and userspace. |
| 5327 | * kvm_valid_regs specifies the register classes set by the host |
| 5328 | * kvm_dirty_regs specified the register classes dirtied by userspace |
| 5329 | * struct kvm_sync_regs is architecture specific, as well as the |
| 5330 | * bits for kvm_valid_regs and kvm_dirty_regs |
| 5331 | */ |
| 5332 | __u64 kvm_valid_regs; |
| 5333 | __u64 kvm_dirty_regs; |
| 5334 | union { |
| 5335 | struct kvm_sync_regs regs; |
Ken Hofsass | 7b7e395 | 2018-01-31 16:03:35 -0800 | [diff] [blame] | 5336 | char padding[SYNC_REGS_SIZE_BYTES]; |
Christian Borntraeger | b9e5dc8 | 2012-01-11 11:20:30 +0100 | [diff] [blame] | 5337 | } s; |
| 5338 | |
| 5339 | If KVM_CAP_SYNC_REGS is defined, these fields allow userspace to access |
| 5340 | certain guest registers without having to call SET/GET_*REGS. Thus we can |
| 5341 | avoid some system call overhead if userspace has to handle the exit. |
| 5342 | Userspace can query the validity of the structure by checking |
| 5343 | kvm_valid_regs for specific bits. These bits are architecture specific |
| 5344 | and usually define the validity of a groups of registers. (e.g. one bit |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5345 | for general purpose registers) |
Christian Borntraeger | b9e5dc8 | 2012-01-11 11:20:30 +0100 | [diff] [blame] | 5346 | |
David Hildenbrand | d8482c0 | 2014-07-29 08:19:26 +0200 | [diff] [blame] | 5347 | Please note that the kernel is allowed to use the kvm_run structure as the |
| 5348 | primary storage for certain register types. Therefore, the kernel may use the |
| 5349 | values in kvm_run even if the corresponding bit in kvm_dirty_regs is not set. |
| 5350 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5351 | :: |
| 5352 | |
| 5353 | }; |
Alexander Graf | 821246a | 2011-08-31 10:58:55 +0200 | [diff] [blame] | 5354 | |
Jan Kiszka | 414fa98 | 2012-04-24 16:40:15 +0200 | [diff] [blame] | 5355 | |
Borislav Petkov | 9c15bb1 | 2013-09-22 16:44:50 +0200 | [diff] [blame] | 5356 | |
Paul Mackerras | 699a0ea | 2014-06-02 11:02:59 +1000 | [diff] [blame] | 5357 | 6. Capabilities that can be enabled on vCPUs |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5358 | ============================================ |
Alexander Graf | 821246a | 2011-08-31 10:58:55 +0200 | [diff] [blame] | 5359 | |
Cornelia Huck | 0907c85 | 2014-06-27 09:29:26 +0200 | [diff] [blame] | 5360 | There are certain capabilities that change the behavior of the virtual CPU or |
| 5361 | the virtual machine when enabled. To enable them, please see section 4.37. |
| 5362 | Below you can find a list of capabilities and what their effect on the vCPU or |
| 5363 | the virtual machine is when enabling them. |
Alexander Graf | 821246a | 2011-08-31 10:58:55 +0200 | [diff] [blame] | 5364 | |
| 5365 | The following information is provided along with the description: |
| 5366 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5367 | Architectures: |
| 5368 | which instruction set architectures provide this ioctl. |
Alexander Graf | 821246a | 2011-08-31 10:58:55 +0200 | [diff] [blame] | 5369 | x86 includes both i386 and x86_64. |
| 5370 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5371 | Target: |
| 5372 | whether this is a per-vcpu or per-vm capability. |
Cornelia Huck | 0907c85 | 2014-06-27 09:29:26 +0200 | [diff] [blame] | 5373 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5374 | Parameters: |
| 5375 | what parameters are accepted by the capability. |
Alexander Graf | 821246a | 2011-08-31 10:58:55 +0200 | [diff] [blame] | 5376 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5377 | Returns: |
| 5378 | the return value. General error numbers (EBADF, ENOMEM, EINVAL) |
Alexander Graf | 821246a | 2011-08-31 10:58:55 +0200 | [diff] [blame] | 5379 | are not detailed, but errors with specific meanings are. |
| 5380 | |
Jan Kiszka | 414fa98 | 2012-04-24 16:40:15 +0200 | [diff] [blame] | 5381 | |
Alexander Graf | 821246a | 2011-08-31 10:58:55 +0200 | [diff] [blame] | 5382 | 6.1 KVM_CAP_PPC_OSI |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5383 | ------------------- |
Alexander Graf | 821246a | 2011-08-31 10:58:55 +0200 | [diff] [blame] | 5384 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5385 | :Architectures: ppc |
| 5386 | :Target: vcpu |
| 5387 | :Parameters: none |
| 5388 | :Returns: 0 on success; -1 on error |
Alexander Graf | 821246a | 2011-08-31 10:58:55 +0200 | [diff] [blame] | 5389 | |
| 5390 | This capability enables interception of OSI hypercalls that otherwise would |
| 5391 | be treated as normal system calls to be injected into the guest. OSI hypercalls |
| 5392 | were invented by Mac-on-Linux to have a standardized communication mechanism |
| 5393 | between the guest and the host. |
| 5394 | |
| 5395 | When this capability is enabled, KVM_EXIT_OSI can occur. |
| 5396 | |
Jan Kiszka | 414fa98 | 2012-04-24 16:40:15 +0200 | [diff] [blame] | 5397 | |
Alexander Graf | 821246a | 2011-08-31 10:58:55 +0200 | [diff] [blame] | 5398 | 6.2 KVM_CAP_PPC_PAPR |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5399 | -------------------- |
Alexander Graf | 821246a | 2011-08-31 10:58:55 +0200 | [diff] [blame] | 5400 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5401 | :Architectures: ppc |
| 5402 | :Target: vcpu |
| 5403 | :Parameters: none |
| 5404 | :Returns: 0 on success; -1 on error |
Alexander Graf | 821246a | 2011-08-31 10:58:55 +0200 | [diff] [blame] | 5405 | |
| 5406 | This capability enables interception of PAPR hypercalls. PAPR hypercalls are |
| 5407 | done using the hypercall instruction "sc 1". |
| 5408 | |
| 5409 | It also sets the guest privilege level to "supervisor" mode. Usually the guest |
| 5410 | runs in "hypervisor" privilege mode with a few missing features. |
| 5411 | |
| 5412 | In addition to the above, it changes the semantics of SDR1. In this mode, the |
| 5413 | HTAB address part of SDR1 contains an HVA instead of a GPA, as PAPR keeps the |
| 5414 | HTAB invisible to the guest. |
| 5415 | |
| 5416 | When this capability is enabled, KVM_EXIT_PAPR_HCALL can occur. |
Scott Wood | dc83b8b | 2011-08-18 15:25:21 -0500 | [diff] [blame] | 5417 | |
Jan Kiszka | 414fa98 | 2012-04-24 16:40:15 +0200 | [diff] [blame] | 5418 | |
Scott Wood | dc83b8b | 2011-08-18 15:25:21 -0500 | [diff] [blame] | 5419 | 6.3 KVM_CAP_SW_TLB |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5420 | ------------------ |
Scott Wood | dc83b8b | 2011-08-18 15:25:21 -0500 | [diff] [blame] | 5421 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5422 | :Architectures: ppc |
| 5423 | :Target: vcpu |
| 5424 | :Parameters: args[0] is the address of a struct kvm_config_tlb |
| 5425 | :Returns: 0 on success; -1 on error |
Scott Wood | dc83b8b | 2011-08-18 15:25:21 -0500 | [diff] [blame] | 5426 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5427 | :: |
| 5428 | |
| 5429 | struct kvm_config_tlb { |
Scott Wood | dc83b8b | 2011-08-18 15:25:21 -0500 | [diff] [blame] | 5430 | __u64 params; |
| 5431 | __u64 array; |
| 5432 | __u32 mmu_type; |
| 5433 | __u32 array_len; |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5434 | }; |
Scott Wood | dc83b8b | 2011-08-18 15:25:21 -0500 | [diff] [blame] | 5435 | |
| 5436 | Configures the virtual CPU's TLB array, establishing a shared memory area |
| 5437 | between userspace and KVM. The "params" and "array" fields are userspace |
| 5438 | addresses of mmu-type-specific data structures. The "array_len" field is an |
| 5439 | safety mechanism, and should be set to the size in bytes of the memory that |
| 5440 | userspace has reserved for the array. It must be at least the size dictated |
| 5441 | by "mmu_type" and "params". |
| 5442 | |
| 5443 | While KVM_RUN is active, the shared region is under control of KVM. Its |
| 5444 | contents are undefined, and any modification by userspace results in |
| 5445 | boundedly undefined behavior. |
| 5446 | |
| 5447 | On return from KVM_RUN, the shared region will reflect the current state of |
| 5448 | the guest's TLB. If userspace makes any changes, it must call KVM_DIRTY_TLB |
| 5449 | to tell KVM which entries have been changed, prior to calling KVM_RUN again |
| 5450 | on this vcpu. |
| 5451 | |
| 5452 | For mmu types KVM_MMU_FSL_BOOKE_NOHV and KVM_MMU_FSL_BOOKE_HV: |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5453 | |
Scott Wood | dc83b8b | 2011-08-18 15:25:21 -0500 | [diff] [blame] | 5454 | - The "params" field is of type "struct kvm_book3e_206_tlb_params". |
| 5455 | - The "array" field points to an array of type "struct |
| 5456 | kvm_book3e_206_tlb_entry". |
| 5457 | - The array consists of all entries in the first TLB, followed by all |
| 5458 | entries in the second TLB. |
| 5459 | - Within a TLB, entries are ordered first by increasing set number. Within a |
| 5460 | set, entries are ordered by way (increasing ESEL). |
| 5461 | - The hash for determining set number in TLB0 is: (MAS2 >> 12) & (num_sets - 1) |
| 5462 | where "num_sets" is the tlb_sizes[] value divided by the tlb_ways[] value. |
| 5463 | - The tsize field of mas1 shall be set to 4K on TLB0, even though the |
| 5464 | hardware ignores this value for TLB0. |
Cornelia Huck | fa6b7fe | 2012-12-20 15:32:12 +0100 | [diff] [blame] | 5465 | |
| 5466 | 6.4 KVM_CAP_S390_CSS_SUPPORT |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5467 | ---------------------------- |
Cornelia Huck | fa6b7fe | 2012-12-20 15:32:12 +0100 | [diff] [blame] | 5468 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5469 | :Architectures: s390 |
| 5470 | :Target: vcpu |
| 5471 | :Parameters: none |
| 5472 | :Returns: 0 on success; -1 on error |
Cornelia Huck | fa6b7fe | 2012-12-20 15:32:12 +0100 | [diff] [blame] | 5473 | |
| 5474 | This capability enables support for handling of channel I/O instructions. |
| 5475 | |
| 5476 | TEST PENDING INTERRUPTION and the interrupt portion of TEST SUBCHANNEL are |
| 5477 | handled in-kernel, while the other I/O instructions are passed to userspace. |
| 5478 | |
| 5479 | When this capability is enabled, KVM_EXIT_S390_TSCH will occur on TEST |
| 5480 | SUBCHANNEL intercepts. |
Alexander Graf | 1c81063 | 2013-01-04 18:12:48 +0100 | [diff] [blame] | 5481 | |
Cornelia Huck | 0907c85 | 2014-06-27 09:29:26 +0200 | [diff] [blame] | 5482 | Note that even though this capability is enabled per-vcpu, the complete |
| 5483 | virtual machine is affected. |
| 5484 | |
Alexander Graf | 1c81063 | 2013-01-04 18:12:48 +0100 | [diff] [blame] | 5485 | 6.5 KVM_CAP_PPC_EPR |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5486 | ------------------- |
Alexander Graf | 1c81063 | 2013-01-04 18:12:48 +0100 | [diff] [blame] | 5487 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5488 | :Architectures: ppc |
| 5489 | :Target: vcpu |
| 5490 | :Parameters: args[0] defines whether the proxy facility is active |
| 5491 | :Returns: 0 on success; -1 on error |
Alexander Graf | 1c81063 | 2013-01-04 18:12:48 +0100 | [diff] [blame] | 5492 | |
| 5493 | This capability enables or disables the delivery of interrupts through the |
| 5494 | external proxy facility. |
| 5495 | |
| 5496 | When enabled (args[0] != 0), every time the guest gets an external interrupt |
| 5497 | delivered, it automatically exits into user space with a KVM_EXIT_EPR exit |
| 5498 | to receive the topmost interrupt vector. |
| 5499 | |
| 5500 | When disabled (args[0] == 0), behavior is as if this facility is unsupported. |
| 5501 | |
| 5502 | When this capability is enabled, KVM_EXIT_EPR can occur. |
Scott Wood | eb1e4f4 | 2013-04-12 14:08:47 +0000 | [diff] [blame] | 5503 | |
| 5504 | 6.6 KVM_CAP_IRQ_MPIC |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5505 | -------------------- |
Scott Wood | eb1e4f4 | 2013-04-12 14:08:47 +0000 | [diff] [blame] | 5506 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5507 | :Architectures: ppc |
| 5508 | :Parameters: args[0] is the MPIC device fd; |
| 5509 | args[1] is the MPIC CPU number for this vcpu |
Scott Wood | eb1e4f4 | 2013-04-12 14:08:47 +0000 | [diff] [blame] | 5510 | |
| 5511 | This capability connects the vcpu to an in-kernel MPIC device. |
Paul Mackerras | 5975a2e | 2013-04-27 00:28:37 +0000 | [diff] [blame] | 5512 | |
| 5513 | 6.7 KVM_CAP_IRQ_XICS |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5514 | -------------------- |
Paul Mackerras | 5975a2e | 2013-04-27 00:28:37 +0000 | [diff] [blame] | 5515 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5516 | :Architectures: ppc |
| 5517 | :Target: vcpu |
| 5518 | :Parameters: args[0] is the XICS device fd; |
| 5519 | args[1] is the XICS CPU number (server ID) for this vcpu |
Paul Mackerras | 5975a2e | 2013-04-27 00:28:37 +0000 | [diff] [blame] | 5520 | |
| 5521 | This capability connects the vcpu to an in-kernel XICS device. |
Cornelia Huck | 8a366a4 | 2014-06-27 11:06:25 +0200 | [diff] [blame] | 5522 | |
| 5523 | 6.8 KVM_CAP_S390_IRQCHIP |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5524 | ------------------------ |
Cornelia Huck | 8a366a4 | 2014-06-27 11:06:25 +0200 | [diff] [blame] | 5525 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5526 | :Architectures: s390 |
| 5527 | :Target: vm |
| 5528 | :Parameters: none |
Cornelia Huck | 8a366a4 | 2014-06-27 11:06:25 +0200 | [diff] [blame] | 5529 | |
| 5530 | This capability enables the in-kernel irqchip for s390. Please refer to |
| 5531 | "4.24 KVM_CREATE_IRQCHIP" for details. |
Paul Mackerras | 699a0ea | 2014-06-02 11:02:59 +1000 | [diff] [blame] | 5532 | |
James Hogan | 5fafd874 | 2014-12-08 23:07:56 +0000 | [diff] [blame] | 5533 | 6.9 KVM_CAP_MIPS_FPU |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5534 | -------------------- |
James Hogan | 5fafd874 | 2014-12-08 23:07:56 +0000 | [diff] [blame] | 5535 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5536 | :Architectures: mips |
| 5537 | :Target: vcpu |
| 5538 | :Parameters: args[0] is reserved for future use (should be 0). |
James Hogan | 5fafd874 | 2014-12-08 23:07:56 +0000 | [diff] [blame] | 5539 | |
| 5540 | This capability allows the use of the host Floating Point Unit by the guest. It |
| 5541 | allows the Config1.FP bit to be set to enable the FPU in the guest. Once this is |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5542 | done the ``KVM_REG_MIPS_FPR_*`` and ``KVM_REG_MIPS_FCR_*`` registers can be |
| 5543 | accessed (depending on the current guest FPU register mode), and the Status.FR, |
James Hogan | 5fafd874 | 2014-12-08 23:07:56 +0000 | [diff] [blame] | 5544 | Config5.FRE bits are accessible via the KVM API and also from the guest, |
| 5545 | depending on them being supported by the FPU. |
| 5546 | |
James Hogan | d952bd0 | 2014-12-08 23:07:56 +0000 | [diff] [blame] | 5547 | 6.10 KVM_CAP_MIPS_MSA |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5548 | --------------------- |
James Hogan | d952bd0 | 2014-12-08 23:07:56 +0000 | [diff] [blame] | 5549 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5550 | :Architectures: mips |
| 5551 | :Target: vcpu |
| 5552 | :Parameters: args[0] is reserved for future use (should be 0). |
James Hogan | d952bd0 | 2014-12-08 23:07:56 +0000 | [diff] [blame] | 5553 | |
| 5554 | This capability allows the use of the MIPS SIMD Architecture (MSA) by the guest. |
| 5555 | It allows the Config3.MSAP bit to be set to enable the use of MSA by the guest. |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5556 | Once this is done the ``KVM_REG_MIPS_VEC_*`` and ``KVM_REG_MIPS_MSA_*`` |
| 5557 | registers can be accessed, and the Config5.MSAEn bit is accessible via the |
| 5558 | KVM API and also from the guest. |
James Hogan | d952bd0 | 2014-12-08 23:07:56 +0000 | [diff] [blame] | 5559 | |
Ken Hofsass | 01643c5 | 2018-01-31 16:03:36 -0800 | [diff] [blame] | 5560 | 6.74 KVM_CAP_SYNC_REGS |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5561 | ---------------------- |
| 5562 | |
| 5563 | :Architectures: s390, x86 |
| 5564 | :Target: s390: always enabled, x86: vcpu |
| 5565 | :Parameters: none |
| 5566 | :Returns: x86: KVM_CHECK_EXTENSION returns a bit-array indicating which register |
| 5567 | sets are supported |
| 5568 | (bitfields defined in arch/x86/include/uapi/asm/kvm.h). |
Ken Hofsass | 01643c5 | 2018-01-31 16:03:36 -0800 | [diff] [blame] | 5569 | |
| 5570 | As described above in the kvm_sync_regs struct info in section 5 (kvm_run): |
| 5571 | KVM_CAP_SYNC_REGS "allow[s] userspace to access certain guest registers |
| 5572 | without having to call SET/GET_*REGS". This reduces overhead by eliminating |
| 5573 | repeated ioctl calls for setting and/or getting register values. This is |
| 5574 | particularly important when userspace is making synchronous guest state |
| 5575 | modifications, e.g. when emulating and/or intercepting instructions in |
| 5576 | userspace. |
| 5577 | |
| 5578 | For s390 specifics, please refer to the source code. |
| 5579 | |
| 5580 | For x86: |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5581 | |
Ken Hofsass | 01643c5 | 2018-01-31 16:03:36 -0800 | [diff] [blame] | 5582 | - the register sets to be copied out to kvm_run are selectable |
| 5583 | by userspace (rather that all sets being copied out for every exit). |
| 5584 | - vcpu_events are available in addition to regs and sregs. |
| 5585 | |
| 5586 | For x86, the 'kvm_valid_regs' field of struct kvm_run is overloaded to |
| 5587 | function as an input bit-array field set by userspace to indicate the |
| 5588 | specific register sets to be copied out on the next exit. |
| 5589 | |
| 5590 | To indicate when userspace has modified values that should be copied into |
| 5591 | the vCPU, the all architecture bitarray field, 'kvm_dirty_regs' must be set. |
| 5592 | This is done using the same bitflags as for the 'kvm_valid_regs' field. |
| 5593 | If the dirty bit is not set, then the register set values will not be copied |
| 5594 | into the vCPU even if they've been modified. |
| 5595 | |
| 5596 | Unused bitfields in the bitarrays must be set to zero. |
| 5597 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5598 | :: |
| 5599 | |
| 5600 | struct kvm_sync_regs { |
Ken Hofsass | 01643c5 | 2018-01-31 16:03:36 -0800 | [diff] [blame] | 5601 | struct kvm_regs regs; |
| 5602 | struct kvm_sregs sregs; |
| 5603 | struct kvm_vcpu_events events; |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5604 | }; |
Ken Hofsass | 01643c5 | 2018-01-31 16:03:36 -0800 | [diff] [blame] | 5605 | |
Cédric Le Goater | eacc56b | 2019-04-18 12:39:28 +0200 | [diff] [blame] | 5606 | 6.75 KVM_CAP_PPC_IRQ_XIVE |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5607 | ------------------------- |
Cédric Le Goater | eacc56b | 2019-04-18 12:39:28 +0200 | [diff] [blame] | 5608 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5609 | :Architectures: ppc |
| 5610 | :Target: vcpu |
| 5611 | :Parameters: args[0] is the XIVE device fd; |
| 5612 | args[1] is the XIVE CPU number (server ID) for this vcpu |
Cédric Le Goater | eacc56b | 2019-04-18 12:39:28 +0200 | [diff] [blame] | 5613 | |
| 5614 | This capability connects the vcpu to an in-kernel XIVE device. |
| 5615 | |
Paul Mackerras | 699a0ea | 2014-06-02 11:02:59 +1000 | [diff] [blame] | 5616 | 7. Capabilities that can be enabled on VMs |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5617 | ========================================== |
Paul Mackerras | 699a0ea | 2014-06-02 11:02:59 +1000 | [diff] [blame] | 5618 | |
| 5619 | There are certain capabilities that change the behavior of the virtual |
| 5620 | machine when enabled. To enable them, please see section 4.37. Below |
| 5621 | you can find a list of capabilities and what their effect on the VM |
| 5622 | is when enabling them. |
| 5623 | |
| 5624 | The following information is provided along with the description: |
| 5625 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5626 | Architectures: |
| 5627 | which instruction set architectures provide this ioctl. |
Paul Mackerras | 699a0ea | 2014-06-02 11:02:59 +1000 | [diff] [blame] | 5628 | x86 includes both i386 and x86_64. |
| 5629 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5630 | Parameters: |
| 5631 | what parameters are accepted by the capability. |
Paul Mackerras | 699a0ea | 2014-06-02 11:02:59 +1000 | [diff] [blame] | 5632 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5633 | Returns: |
| 5634 | the return value. General error numbers (EBADF, ENOMEM, EINVAL) |
Paul Mackerras | 699a0ea | 2014-06-02 11:02:59 +1000 | [diff] [blame] | 5635 | are not detailed, but errors with specific meanings are. |
| 5636 | |
| 5637 | |
| 5638 | 7.1 KVM_CAP_PPC_ENABLE_HCALL |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5639 | ---------------------------- |
Paul Mackerras | 699a0ea | 2014-06-02 11:02:59 +1000 | [diff] [blame] | 5640 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5641 | :Architectures: ppc |
| 5642 | :Parameters: args[0] is the sPAPR hcall number; |
| 5643 | args[1] is 0 to disable, 1 to enable in-kernel handling |
Paul Mackerras | 699a0ea | 2014-06-02 11:02:59 +1000 | [diff] [blame] | 5644 | |
| 5645 | This capability controls whether individual sPAPR hypercalls (hcalls) |
| 5646 | get handled by the kernel or not. Enabling or disabling in-kernel |
| 5647 | handling of an hcall is effective across the VM. On creation, an |
| 5648 | initial set of hcalls are enabled for in-kernel handling, which |
| 5649 | consists of those hcalls for which in-kernel handlers were implemented |
| 5650 | before this capability was implemented. If disabled, the kernel will |
| 5651 | not to attempt to handle the hcall, but will always exit to userspace |
| 5652 | to handle it. Note that it may not make sense to enable some and |
| 5653 | disable others of a group of related hcalls, but KVM does not prevent |
| 5654 | userspace from doing that. |
Paul Mackerras | ae2113a | 2014-06-02 11:03:00 +1000 | [diff] [blame] | 5655 | |
| 5656 | If the hcall number specified is not one that has an in-kernel |
| 5657 | implementation, the KVM_ENABLE_CAP ioctl will fail with an EINVAL |
| 5658 | error. |
David Hildenbrand | 2444b35 | 2014-10-09 14:10:13 +0200 | [diff] [blame] | 5659 | |
| 5660 | 7.2 KVM_CAP_S390_USER_SIGP |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5661 | -------------------------- |
David Hildenbrand | 2444b35 | 2014-10-09 14:10:13 +0200 | [diff] [blame] | 5662 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5663 | :Architectures: s390 |
| 5664 | :Parameters: none |
David Hildenbrand | 2444b35 | 2014-10-09 14:10:13 +0200 | [diff] [blame] | 5665 | |
| 5666 | This capability controls which SIGP orders will be handled completely in user |
| 5667 | space. With this capability enabled, all fast orders will be handled completely |
| 5668 | in the kernel: |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5669 | |
David Hildenbrand | 2444b35 | 2014-10-09 14:10:13 +0200 | [diff] [blame] | 5670 | - SENSE |
| 5671 | - SENSE RUNNING |
| 5672 | - EXTERNAL CALL |
| 5673 | - EMERGENCY SIGNAL |
| 5674 | - CONDITIONAL EMERGENCY SIGNAL |
| 5675 | |
| 5676 | All other orders will be handled completely in user space. |
| 5677 | |
| 5678 | Only privileged operation exceptions will be checked for in the kernel (or even |
| 5679 | in the hardware prior to interception). If this capability is not enabled, the |
| 5680 | old way of handling SIGP orders is used (partially in kernel and user space). |
Eric Farman | 68c5575 | 2014-06-09 10:57:26 -0400 | [diff] [blame] | 5681 | |
| 5682 | 7.3 KVM_CAP_S390_VECTOR_REGISTERS |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5683 | --------------------------------- |
Eric Farman | 68c5575 | 2014-06-09 10:57:26 -0400 | [diff] [blame] | 5684 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5685 | :Architectures: s390 |
| 5686 | :Parameters: none |
| 5687 | :Returns: 0 on success, negative value on error |
Eric Farman | 68c5575 | 2014-06-09 10:57:26 -0400 | [diff] [blame] | 5688 | |
| 5689 | Allows use of the vector registers introduced with z13 processor, and |
| 5690 | provides for the synchronization between host and user space. Will |
| 5691 | return -EINVAL if the machine does not support vectors. |
Ekaterina Tumanova | e44fc8c | 2015-01-30 16:55:56 +0100 | [diff] [blame] | 5692 | |
| 5693 | 7.4 KVM_CAP_S390_USER_STSI |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5694 | -------------------------- |
Ekaterina Tumanova | e44fc8c | 2015-01-30 16:55:56 +0100 | [diff] [blame] | 5695 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5696 | :Architectures: s390 |
| 5697 | :Parameters: none |
Ekaterina Tumanova | e44fc8c | 2015-01-30 16:55:56 +0100 | [diff] [blame] | 5698 | |
| 5699 | This capability allows post-handlers for the STSI instruction. After |
| 5700 | initial handling in the kernel, KVM exits to user space with |
| 5701 | KVM_EXIT_S390_STSI to allow user space to insert further data. |
| 5702 | |
| 5703 | Before exiting to userspace, kvm handlers should fill in s390_stsi field of |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5704 | vcpu->run:: |
| 5705 | |
| 5706 | struct { |
Ekaterina Tumanova | e44fc8c | 2015-01-30 16:55:56 +0100 | [diff] [blame] | 5707 | __u64 addr; |
| 5708 | __u8 ar; |
| 5709 | __u8 reserved; |
| 5710 | __u8 fc; |
| 5711 | __u8 sel1; |
| 5712 | __u16 sel2; |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5713 | } s390_stsi; |
Ekaterina Tumanova | e44fc8c | 2015-01-30 16:55:56 +0100 | [diff] [blame] | 5714 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5715 | @addr - guest address of STSI SYSIB |
| 5716 | @fc - function code |
| 5717 | @sel1 - selector 1 |
| 5718 | @sel2 - selector 2 |
| 5719 | @ar - access register number |
Ekaterina Tumanova | e44fc8c | 2015-01-30 16:55:56 +0100 | [diff] [blame] | 5720 | |
| 5721 | KVM handlers should exit to userspace with rc = -EREMOTE. |
Michael Ellerman | e928e9c | 2015-03-20 20:39:41 +1100 | [diff] [blame] | 5722 | |
Steve Rutherford | 49df639 | 2015-07-29 23:21:40 -0700 | [diff] [blame] | 5723 | 7.5 KVM_CAP_SPLIT_IRQCHIP |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5724 | ------------------------- |
Steve Rutherford | 49df639 | 2015-07-29 23:21:40 -0700 | [diff] [blame] | 5725 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5726 | :Architectures: x86 |
| 5727 | :Parameters: args[0] - number of routes reserved for userspace IOAPICs |
| 5728 | :Returns: 0 on success, -1 on error |
Steve Rutherford | 49df639 | 2015-07-29 23:21:40 -0700 | [diff] [blame] | 5729 | |
| 5730 | Create a local apic for each processor in the kernel. This can be used |
| 5731 | instead of KVM_CREATE_IRQCHIP if the userspace VMM wishes to emulate the |
| 5732 | IOAPIC and PIC (and also the PIT, even though this has to be enabled |
| 5733 | separately). |
| 5734 | |
Steve Rutherford | b053b2a | 2015-07-29 23:32:35 -0700 | [diff] [blame] | 5735 | This capability also enables in kernel routing of interrupt requests; |
| 5736 | when KVM_CAP_SPLIT_IRQCHIP only routes of KVM_IRQ_ROUTING_MSI type are |
| 5737 | used in the IRQ routing table. The first args[0] MSI routes are reserved |
| 5738 | for the IOAPIC pins. Whenever the LAPIC receives an EOI for these routes, |
| 5739 | a KVM_EXIT_IOAPIC_EOI vmexit will be reported to userspace. |
Steve Rutherford | 49df639 | 2015-07-29 23:21:40 -0700 | [diff] [blame] | 5740 | |
| 5741 | Fails if VCPU has already been created, or if the irqchip is already in the |
| 5742 | kernel (i.e. KVM_CREATE_IRQCHIP has already been called). |
| 5743 | |
David Hildenbrand | 051c87f | 2016-04-19 13:13:40 +0200 | [diff] [blame] | 5744 | 7.6 KVM_CAP_S390_RI |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5745 | ------------------- |
David Hildenbrand | 051c87f | 2016-04-19 13:13:40 +0200 | [diff] [blame] | 5746 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5747 | :Architectures: s390 |
| 5748 | :Parameters: none |
David Hildenbrand | 051c87f | 2016-04-19 13:13:40 +0200 | [diff] [blame] | 5749 | |
| 5750 | Allows use of runtime-instrumentation introduced with zEC12 processor. |
| 5751 | Will return -EINVAL if the machine does not support runtime-instrumentation. |
| 5752 | Will return -EBUSY if a VCPU has already been created. |
Michael Ellerman | e928e9c | 2015-03-20 20:39:41 +1100 | [diff] [blame] | 5753 | |
Radim Krčmář | 37131313 | 2016-07-12 22:09:27 +0200 | [diff] [blame] | 5754 | 7.7 KVM_CAP_X2APIC_API |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5755 | ---------------------- |
Radim Krčmář | 37131313 | 2016-07-12 22:09:27 +0200 | [diff] [blame] | 5756 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5757 | :Architectures: x86 |
| 5758 | :Parameters: args[0] - features that should be enabled |
| 5759 | :Returns: 0 on success, -EINVAL when args[0] contains invalid features |
Radim Krčmář | 37131313 | 2016-07-12 22:09:27 +0200 | [diff] [blame] | 5760 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5761 | Valid feature flags in args[0] are:: |
Radim Krčmář | 37131313 | 2016-07-12 22:09:27 +0200 | [diff] [blame] | 5762 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5763 | #define KVM_X2APIC_API_USE_32BIT_IDS (1ULL << 0) |
| 5764 | #define KVM_X2APIC_API_DISABLE_BROADCAST_QUIRK (1ULL << 1) |
Radim Krčmář | 37131313 | 2016-07-12 22:09:27 +0200 | [diff] [blame] | 5765 | |
| 5766 | Enabling KVM_X2APIC_API_USE_32BIT_IDS changes the behavior of |
| 5767 | KVM_SET_GSI_ROUTING, KVM_SIGNAL_MSI, KVM_SET_LAPIC, and KVM_GET_LAPIC, |
| 5768 | allowing the use of 32-bit APIC IDs. See KVM_CAP_X2APIC_API in their |
| 5769 | respective sections. |
| 5770 | |
Radim Krčmář | c519265 | 2016-07-12 22:09:28 +0200 | [diff] [blame] | 5771 | KVM_X2APIC_API_DISABLE_BROADCAST_QUIRK must be enabled for x2APIC to work |
| 5772 | in logical mode or with more than 255 VCPUs. Otherwise, KVM treats 0xff |
| 5773 | as a broadcast even in x2APIC mode in order to support physical x2APIC |
| 5774 | without interrupt remapping. This is undesirable in logical mode, |
| 5775 | where 0xff represents CPUs 0-7 in cluster 0. |
Radim Krčmář | 37131313 | 2016-07-12 22:09:27 +0200 | [diff] [blame] | 5776 | |
David Hildenbrand | 6502a34 | 2016-06-21 14:19:51 +0200 | [diff] [blame] | 5777 | 7.8 KVM_CAP_S390_USER_INSTR0 |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5778 | ---------------------------- |
David Hildenbrand | 6502a34 | 2016-06-21 14:19:51 +0200 | [diff] [blame] | 5779 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5780 | :Architectures: s390 |
| 5781 | :Parameters: none |
David Hildenbrand | 6502a34 | 2016-06-21 14:19:51 +0200 | [diff] [blame] | 5782 | |
| 5783 | With this capability enabled, all illegal instructions 0x0000 (2 bytes) will |
| 5784 | be intercepted and forwarded to user space. User space can use this |
| 5785 | mechanism e.g. to realize 2-byte software breakpoints. The kernel will |
| 5786 | not inject an operating exception for these instructions, user space has |
| 5787 | to take care of that. |
| 5788 | |
| 5789 | This capability can be enabled dynamically even if VCPUs were already |
| 5790 | created and are running. |
Radim Krčmář | 37131313 | 2016-07-12 22:09:27 +0200 | [diff] [blame] | 5791 | |
Fan Zhang | 4e0b1ab | 2016-11-29 07:17:55 +0100 | [diff] [blame] | 5792 | 7.9 KVM_CAP_S390_GS |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5793 | ------------------- |
Fan Zhang | 4e0b1ab | 2016-11-29 07:17:55 +0100 | [diff] [blame] | 5794 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5795 | :Architectures: s390 |
| 5796 | :Parameters: none |
| 5797 | :Returns: 0 on success; -EINVAL if the machine does not support |
| 5798 | guarded storage; -EBUSY if a VCPU has already been created. |
Fan Zhang | 4e0b1ab | 2016-11-29 07:17:55 +0100 | [diff] [blame] | 5799 | |
| 5800 | Allows use of guarded storage for the KVM guest. |
| 5801 | |
Yi Min Zhao | 47a4693 | 2017-03-10 09:29:38 +0100 | [diff] [blame] | 5802 | 7.10 KVM_CAP_S390_AIS |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5803 | --------------------- |
Yi Min Zhao | 47a4693 | 2017-03-10 09:29:38 +0100 | [diff] [blame] | 5804 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5805 | :Architectures: s390 |
| 5806 | :Parameters: none |
Yi Min Zhao | 47a4693 | 2017-03-10 09:29:38 +0100 | [diff] [blame] | 5807 | |
| 5808 | Allow use of adapter-interruption suppression. |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5809 | :Returns: 0 on success; -EBUSY if a VCPU has already been created. |
Yi Min Zhao | 47a4693 | 2017-03-10 09:29:38 +0100 | [diff] [blame] | 5810 | |
Paul Mackerras | 3c31352 | 2017-02-06 13:24:41 +1100 | [diff] [blame] | 5811 | 7.11 KVM_CAP_PPC_SMT |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5812 | -------------------- |
Paul Mackerras | 3c31352 | 2017-02-06 13:24:41 +1100 | [diff] [blame] | 5813 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5814 | :Architectures: ppc |
| 5815 | :Parameters: vsmt_mode, flags |
Paul Mackerras | 3c31352 | 2017-02-06 13:24:41 +1100 | [diff] [blame] | 5816 | |
| 5817 | Enabling this capability on a VM provides userspace with a way to set |
| 5818 | the desired virtual SMT mode (i.e. the number of virtual CPUs per |
| 5819 | virtual core). The virtual SMT mode, vsmt_mode, must be a power of 2 |
| 5820 | between 1 and 8. On POWER8, vsmt_mode must also be no greater than |
| 5821 | the number of threads per subcore for the host. Currently flags must |
| 5822 | be 0. A successful call to enable this capability will result in |
| 5823 | vsmt_mode being returned when the KVM_CAP_PPC_SMT capability is |
| 5824 | subsequently queried for the VM. This capability is only supported by |
| 5825 | HV KVM, and can only be set before any VCPUs have been created. |
Paul Mackerras | 2ed4f9d | 2017-06-21 16:01:27 +1000 | [diff] [blame] | 5826 | The KVM_CAP_PPC_SMT_POSSIBLE capability indicates which virtual SMT |
| 5827 | modes are available. |
Paul Mackerras | 3c31352 | 2017-02-06 13:24:41 +1100 | [diff] [blame] | 5828 | |
Aravinda Prasad | 134764e | 2017-05-11 16:32:48 +0530 | [diff] [blame] | 5829 | 7.12 KVM_CAP_PPC_FWNMI |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5830 | ---------------------- |
Aravinda Prasad | 134764e | 2017-05-11 16:32:48 +0530 | [diff] [blame] | 5831 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5832 | :Architectures: ppc |
| 5833 | :Parameters: none |
Aravinda Prasad | 134764e | 2017-05-11 16:32:48 +0530 | [diff] [blame] | 5834 | |
| 5835 | With this capability a machine check exception in the guest address |
| 5836 | space will cause KVM to exit the guest with NMI exit reason. This |
| 5837 | enables QEMU to build error log and branch to guest kernel registered |
| 5838 | machine check handling routine. Without this capability KVM will |
| 5839 | branch to guests' 0x200 interrupt vector. |
| 5840 | |
Wanpeng Li | 4d5422c | 2018-03-12 04:53:02 -0700 | [diff] [blame] | 5841 | 7.13 KVM_CAP_X86_DISABLE_EXITS |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5842 | ------------------------------ |
Wanpeng Li | 4d5422c | 2018-03-12 04:53:02 -0700 | [diff] [blame] | 5843 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5844 | :Architectures: x86 |
| 5845 | :Parameters: args[0] defines which exits are disabled |
| 5846 | :Returns: 0 on success, -EINVAL when args[0] contains invalid exits |
Wanpeng Li | 4d5422c | 2018-03-12 04:53:02 -0700 | [diff] [blame] | 5847 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5848 | Valid bits in args[0] are:: |
Wanpeng Li | 4d5422c | 2018-03-12 04:53:02 -0700 | [diff] [blame] | 5849 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5850 | #define KVM_X86_DISABLE_EXITS_MWAIT (1 << 0) |
| 5851 | #define KVM_X86_DISABLE_EXITS_HLT (1 << 1) |
| 5852 | #define KVM_X86_DISABLE_EXITS_PAUSE (1 << 2) |
| 5853 | #define KVM_X86_DISABLE_EXITS_CSTATE (1 << 3) |
Wanpeng Li | 4d5422c | 2018-03-12 04:53:02 -0700 | [diff] [blame] | 5854 | |
| 5855 | Enabling this capability on a VM provides userspace with a way to no |
| 5856 | longer intercept some instructions for improved latency in some |
| 5857 | workloads, and is suggested when vCPUs are associated to dedicated |
| 5858 | physical CPUs. More bits can be added in the future; userspace can |
| 5859 | just pass the KVM_CHECK_EXTENSION result to KVM_ENABLE_CAP to disable |
| 5860 | all such vmexits. |
| 5861 | |
Wanpeng Li | caa057a | 2018-03-12 04:53:03 -0700 | [diff] [blame] | 5862 | Do not enable KVM_FEATURE_PV_UNHALT if you disable HLT exits. |
Wanpeng Li | 4d5422c | 2018-03-12 04:53:02 -0700 | [diff] [blame] | 5863 | |
Janosch Frank | a449938 | 2018-07-13 11:28:31 +0100 | [diff] [blame] | 5864 | 7.14 KVM_CAP_S390_HPAGE_1M |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5865 | -------------------------- |
Janosch Frank | a449938 | 2018-07-13 11:28:31 +0100 | [diff] [blame] | 5866 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5867 | :Architectures: s390 |
| 5868 | :Parameters: none |
| 5869 | :Returns: 0 on success, -EINVAL if hpage module parameter was not set |
| 5870 | or cmma is enabled, or the VM has the KVM_VM_S390_UCONTROL |
| 5871 | flag set |
Janosch Frank | a449938 | 2018-07-13 11:28:31 +0100 | [diff] [blame] | 5872 | |
| 5873 | With this capability the KVM support for memory backing with 1m pages |
| 5874 | through hugetlbfs can be enabled for a VM. After the capability is |
| 5875 | enabled, cmma can't be enabled anymore and pfmfi and the storage key |
| 5876 | interpretation are disabled. If cmma has already been enabled or the |
| 5877 | hpage module parameter is not set to 1, -EINVAL is returned. |
| 5878 | |
| 5879 | While it is generally possible to create a huge page backed VM without |
| 5880 | this capability, the VM will not be able to run. |
| 5881 | |
Jim Mattson | c4f5519 | 2018-10-16 14:29:24 -0700 | [diff] [blame] | 5882 | 7.15 KVM_CAP_MSR_PLATFORM_INFO |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5883 | ------------------------------ |
Drew Schmitt | 6fbbde9 | 2018-08-20 10:32:15 -0700 | [diff] [blame] | 5884 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5885 | :Architectures: x86 |
| 5886 | :Parameters: args[0] whether feature should be enabled or not |
Drew Schmitt | 6fbbde9 | 2018-08-20 10:32:15 -0700 | [diff] [blame] | 5887 | |
| 5888 | With this capability, a guest may read the MSR_PLATFORM_INFO MSR. Otherwise, |
| 5889 | a #GP would be raised when the guest tries to access. Currently, this |
| 5890 | capability does not enable write permissions of this MSR for the guest. |
| 5891 | |
Paul Mackerras | aa069a9 | 2018-09-21 20:02:01 +1000 | [diff] [blame] | 5892 | 7.16 KVM_CAP_PPC_NESTED_HV |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5893 | -------------------------- |
Paul Mackerras | aa069a9 | 2018-09-21 20:02:01 +1000 | [diff] [blame] | 5894 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5895 | :Architectures: ppc |
| 5896 | :Parameters: none |
| 5897 | :Returns: 0 on success, -EINVAL when the implementation doesn't support |
| 5898 | nested-HV virtualization. |
Paul Mackerras | aa069a9 | 2018-09-21 20:02:01 +1000 | [diff] [blame] | 5899 | |
| 5900 | HV-KVM on POWER9 and later systems allows for "nested-HV" |
| 5901 | virtualization, which provides a way for a guest VM to run guests that |
| 5902 | can run using the CPU's supervisor mode (privileged non-hypervisor |
| 5903 | state). Enabling this capability on a VM depends on the CPU having |
| 5904 | the necessary functionality and on the facility being enabled with a |
| 5905 | kvm-hv module parameter. |
| 5906 | |
Jim Mattson | c4f5519 | 2018-10-16 14:29:24 -0700 | [diff] [blame] | 5907 | 7.17 KVM_CAP_EXCEPTION_PAYLOAD |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5908 | ------------------------------ |
Jim Mattson | c4f5519 | 2018-10-16 14:29:24 -0700 | [diff] [blame] | 5909 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5910 | :Architectures: x86 |
| 5911 | :Parameters: args[0] whether feature should be enabled or not |
Jim Mattson | c4f5519 | 2018-10-16 14:29:24 -0700 | [diff] [blame] | 5912 | |
| 5913 | With this capability enabled, CR2 will not be modified prior to the |
| 5914 | emulated VM-exit when L1 intercepts a #PF exception that occurs in |
| 5915 | L2. Similarly, for kvm-intel only, DR6 will not be modified prior to |
| 5916 | the emulated VM-exit when L1 intercepts a #DB exception that occurs in |
| 5917 | L2. As a result, when KVM_GET_VCPU_EVENTS reports a pending #PF (or |
| 5918 | #DB) exception for L2, exception.has_payload will be set and the |
| 5919 | faulting address (or the new DR6 bits*) will be reported in the |
| 5920 | exception_payload field. Similarly, when userspace injects a #PF (or |
| 5921 | #DB) into L2 using KVM_SET_VCPU_EVENTS, it is expected to set |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5922 | exception.has_payload and to put the faulting address - or the new DR6 |
| 5923 | bits\ [#]_ - in the exception_payload field. |
Jim Mattson | c4f5519 | 2018-10-16 14:29:24 -0700 | [diff] [blame] | 5924 | |
| 5925 | This capability also enables exception.pending in struct |
| 5926 | kvm_vcpu_events, which allows userspace to distinguish between pending |
| 5927 | and injected exceptions. |
| 5928 | |
| 5929 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5930 | .. [#] For the new DR6 bits, note that bit 16 is set iff the #DB exception |
| 5931 | will clear DR6.RTM. |
Jim Mattson | c4f5519 | 2018-10-16 14:29:24 -0700 | [diff] [blame] | 5932 | |
Peter Xu | d7547c5 | 2019-05-08 17:15:47 +0800 | [diff] [blame] | 5933 | 7.18 KVM_CAP_MANUAL_DIRTY_LOG_PROTECT2 |
Paolo Bonzini | 2a31b9d | 2018-10-23 02:36:47 +0200 | [diff] [blame] | 5934 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 5935 | :Architectures: x86, arm, arm64, mips |
| 5936 | :Parameters: args[0] whether feature should be enabled or not |
Paolo Bonzini | 2a31b9d | 2018-10-23 02:36:47 +0200 | [diff] [blame] | 5937 | |
Jay Zhou | 3c9bd40 | 2020-02-27 09:32:27 +0800 | [diff] [blame] | 5938 | Valid flags are:: |
| 5939 | |
| 5940 | #define KVM_DIRTY_LOG_MANUAL_PROTECT_ENABLE (1 << 0) |
| 5941 | #define KVM_DIRTY_LOG_INITIALLY_SET (1 << 1) |
| 5942 | |
| 5943 | With KVM_DIRTY_LOG_MANUAL_PROTECT_ENABLE is set, KVM_GET_DIRTY_LOG will not |
| 5944 | automatically clear and write-protect all pages that are returned as dirty. |
Paolo Bonzini | 2a31b9d | 2018-10-23 02:36:47 +0200 | [diff] [blame] | 5945 | Rather, userspace will have to do this operation separately using |
| 5946 | KVM_CLEAR_DIRTY_LOG. |
| 5947 | |
| 5948 | At the cost of a slightly more complicated operation, this provides better |
| 5949 | scalability and responsiveness for two reasons. First, |
| 5950 | KVM_CLEAR_DIRTY_LOG ioctl can operate on a 64-page granularity rather |
| 5951 | than requiring to sync a full memslot; this ensures that KVM does not |
| 5952 | take spinlocks for an extended period of time. Second, in some cases a |
| 5953 | large amount of time can pass between a call to KVM_GET_DIRTY_LOG and |
| 5954 | userspace actually using the data in the page. Pages can be modified |
Jay Zhou | 3c9bd40 | 2020-02-27 09:32:27 +0800 | [diff] [blame] | 5955 | during this time, which is inefficient for both the guest and userspace: |
Paolo Bonzini | 2a31b9d | 2018-10-23 02:36:47 +0200 | [diff] [blame] | 5956 | the guest will incur a higher penalty due to write protection faults, |
| 5957 | while userspace can see false reports of dirty pages. Manual reprotection |
| 5958 | helps reducing this time, improving guest performance and reducing the |
| 5959 | number of dirty log false positives. |
| 5960 | |
Jay Zhou | 3c9bd40 | 2020-02-27 09:32:27 +0800 | [diff] [blame] | 5961 | With KVM_DIRTY_LOG_INITIALLY_SET set, all the bits of the dirty bitmap |
| 5962 | will be initialized to 1 when created. This also improves performance because |
| 5963 | dirty logging can be enabled gradually in small chunks on the first call |
| 5964 | to KVM_CLEAR_DIRTY_LOG. KVM_DIRTY_LOG_INITIALLY_SET depends on |
| 5965 | KVM_DIRTY_LOG_MANUAL_PROTECT_ENABLE (it is also only available on |
Keqian Zhu | c862626 | 2020-04-13 20:20:23 +0800 | [diff] [blame] | 5966 | x86 and arm64 for now). |
Jay Zhou | 3c9bd40 | 2020-02-27 09:32:27 +0800 | [diff] [blame] | 5967 | |
Peter Xu | d7547c5 | 2019-05-08 17:15:47 +0800 | [diff] [blame] | 5968 | KVM_CAP_MANUAL_DIRTY_LOG_PROTECT2 was previously available under the name |
| 5969 | KVM_CAP_MANUAL_DIRTY_LOG_PROTECT, but the implementation had bugs that make |
| 5970 | it hard or impossible to use it correctly. The availability of |
| 5971 | KVM_CAP_MANUAL_DIRTY_LOG_PROTECT2 signals that those bugs are fixed. |
| 5972 | Userspace should not try to use KVM_CAP_MANUAL_DIRTY_LOG_PROTECT. |
Paolo Bonzini | 2a31b9d | 2018-10-23 02:36:47 +0200 | [diff] [blame] | 5973 | |
Paul Mackerras | 9a5788c | 2020-03-19 15:29:55 +1100 | [diff] [blame] | 5974 | 7.19 KVM_CAP_PPC_SECURE_GUEST |
| 5975 | ------------------------------ |
| 5976 | |
| 5977 | :Architectures: ppc |
| 5978 | |
| 5979 | This capability indicates that KVM is running on a host that has |
| 5980 | ultravisor firmware and thus can support a secure guest. On such a |
| 5981 | system, a guest can ask the ultravisor to make it a secure guest, |
| 5982 | one whose memory is inaccessible to the host except for pages which |
| 5983 | are explicitly requested to be shared with the host. The ultravisor |
| 5984 | notifies KVM when a guest requests to become a secure guest, and KVM |
| 5985 | has the opportunity to veto the transition. |
| 5986 | |
| 5987 | If present, this capability can be enabled for a VM, meaning that KVM |
| 5988 | will allow the transition to secure guest mode. Otherwise KVM will |
| 5989 | veto the transition. |
| 5990 | |
David Matlack | acd0578 | 2020-04-17 15:14:46 -0700 | [diff] [blame] | 5991 | 7.20 KVM_CAP_HALT_POLL |
| 5992 | ---------------------- |
| 5993 | |
| 5994 | :Architectures: all |
| 5995 | :Target: VM |
| 5996 | :Parameters: args[0] is the maximum poll time in nanoseconds |
| 5997 | :Returns: 0 on success; -1 on error |
| 5998 | |
| 5999 | This capability overrides the kvm module parameter halt_poll_ns for the |
| 6000 | target VM. |
| 6001 | |
| 6002 | VCPU polling allows a VCPU to poll for wakeup events instead of immediately |
| 6003 | scheduling during guest halts. The maximum time a VCPU can spend polling is |
| 6004 | controlled by the kvm module parameter halt_poll_ns. This capability allows |
| 6005 | the maximum halt time to specified on a per-VM basis, effectively overriding |
| 6006 | the module parameter for the target VM. |
| 6007 | |
Alexander Graf | 1ae0995 | 2020-09-25 16:34:16 +0200 | [diff] [blame] | 6008 | 7.21 KVM_CAP_X86_USER_SPACE_MSR |
| 6009 | ------------------------------- |
| 6010 | |
| 6011 | :Architectures: x86 |
| 6012 | :Target: VM |
| 6013 | :Parameters: args[0] contains the mask of KVM_MSR_EXIT_REASON_* events to report |
| 6014 | :Returns: 0 on success; -1 on error |
| 6015 | |
| 6016 | This capability enables trapping of #GP invoking RDMSR and WRMSR instructions |
| 6017 | into user space. |
| 6018 | |
| 6019 | When a guest requests to read or write an MSR, KVM may not implement all MSRs |
| 6020 | that are relevant to a respective system. It also does not differentiate by |
| 6021 | CPU type. |
| 6022 | |
| 6023 | To allow more fine grained control over MSR handling, user space may enable |
| 6024 | this capability. With it enabled, MSR accesses that match the mask specified in |
| 6025 | args[0] and trigger a #GP event inside the guest by KVM will instead trigger |
| 6026 | KVM_EXIT_X86_RDMSR and KVM_EXIT_X86_WRMSR exit notifications which user space |
| 6027 | can then handle to implement model specific MSR handling and/or user notifications |
| 6028 | to inform a user that an MSR was not handled. |
| 6029 | |
Michael Ellerman | e928e9c | 2015-03-20 20:39:41 +1100 | [diff] [blame] | 6030 | 8. Other capabilities. |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 6031 | ====================== |
Michael Ellerman | e928e9c | 2015-03-20 20:39:41 +1100 | [diff] [blame] | 6032 | |
| 6033 | This section lists capabilities that give information about other |
| 6034 | features of the KVM implementation. |
| 6035 | |
| 6036 | 8.1 KVM_CAP_PPC_HWRNG |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 6037 | --------------------- |
Michael Ellerman | e928e9c | 2015-03-20 20:39:41 +1100 | [diff] [blame] | 6038 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 6039 | :Architectures: ppc |
Michael Ellerman | e928e9c | 2015-03-20 20:39:41 +1100 | [diff] [blame] | 6040 | |
| 6041 | This capability, if KVM_CHECK_EXTENSION indicates that it is |
Randy Dunlap | 3747c5d | 2020-07-03 14:29:06 -0700 | [diff] [blame] | 6042 | available, means that the kernel has an implementation of the |
Michael Ellerman | e928e9c | 2015-03-20 20:39:41 +1100 | [diff] [blame] | 6043 | H_RANDOM hypercall backed by a hardware random-number generator. |
| 6044 | If present, the kernel H_RANDOM handler can be enabled for guest use |
| 6045 | with the KVM_CAP_PPC_ENABLE_HCALL capability. |
Andrey Smetanin | 5c919412 | 2015-11-10 15:36:34 +0300 | [diff] [blame] | 6046 | |
| 6047 | 8.2 KVM_CAP_HYPERV_SYNIC |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 6048 | ------------------------ |
Andrey Smetanin | 5c919412 | 2015-11-10 15:36:34 +0300 | [diff] [blame] | 6049 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 6050 | :Architectures: x86 |
| 6051 | |
Andrey Smetanin | 5c919412 | 2015-11-10 15:36:34 +0300 | [diff] [blame] | 6052 | This capability, if KVM_CHECK_EXTENSION indicates that it is |
Randy Dunlap | 3747c5d | 2020-07-03 14:29:06 -0700 | [diff] [blame] | 6053 | available, means that the kernel has an implementation of the |
Andrey Smetanin | 5c919412 | 2015-11-10 15:36:34 +0300 | [diff] [blame] | 6054 | Hyper-V Synthetic interrupt controller(SynIC). Hyper-V SynIC is |
| 6055 | used to support Windows Hyper-V based guest paravirt drivers(VMBus). |
| 6056 | |
| 6057 | In order to use SynIC, it has to be activated by setting this |
| 6058 | capability via KVM_ENABLE_CAP ioctl on the vcpu fd. Note that this |
| 6059 | will disable the use of APIC hardware virtualization even if supported |
| 6060 | by the CPU, as it's incompatible with SynIC auto-EOI behavior. |
Paul Mackerras | c927013 | 2017-01-30 21:21:41 +1100 | [diff] [blame] | 6061 | |
| 6062 | 8.3 KVM_CAP_PPC_RADIX_MMU |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 6063 | ------------------------- |
Paul Mackerras | c927013 | 2017-01-30 21:21:41 +1100 | [diff] [blame] | 6064 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 6065 | :Architectures: ppc |
Paul Mackerras | c927013 | 2017-01-30 21:21:41 +1100 | [diff] [blame] | 6066 | |
| 6067 | This capability, if KVM_CHECK_EXTENSION indicates that it is |
Randy Dunlap | 3747c5d | 2020-07-03 14:29:06 -0700 | [diff] [blame] | 6068 | available, means that the kernel can support guests using the |
Paul Mackerras | c927013 | 2017-01-30 21:21:41 +1100 | [diff] [blame] | 6069 | radix MMU defined in Power ISA V3.00 (as implemented in the POWER9 |
| 6070 | processor). |
| 6071 | |
| 6072 | 8.4 KVM_CAP_PPC_HASH_MMU_V3 |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 6073 | --------------------------- |
Paul Mackerras | c927013 | 2017-01-30 21:21:41 +1100 | [diff] [blame] | 6074 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 6075 | :Architectures: ppc |
Paul Mackerras | c927013 | 2017-01-30 21:21:41 +1100 | [diff] [blame] | 6076 | |
| 6077 | This capability, if KVM_CHECK_EXTENSION indicates that it is |
Randy Dunlap | 3747c5d | 2020-07-03 14:29:06 -0700 | [diff] [blame] | 6078 | available, means that the kernel can support guests using the |
Paul Mackerras | c927013 | 2017-01-30 21:21:41 +1100 | [diff] [blame] | 6079 | hashed page table MMU defined in Power ISA V3.00 (as implemented in |
| 6080 | the POWER9 processor), including in-memory segment tables. |
James Hogan | a8a3c42 | 2017-03-14 10:15:19 +0000 | [diff] [blame] | 6081 | |
| 6082 | 8.5 KVM_CAP_MIPS_VZ |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 6083 | ------------------- |
James Hogan | a8a3c42 | 2017-03-14 10:15:19 +0000 | [diff] [blame] | 6084 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 6085 | :Architectures: mips |
James Hogan | a8a3c42 | 2017-03-14 10:15:19 +0000 | [diff] [blame] | 6086 | |
| 6087 | This capability, if KVM_CHECK_EXTENSION on the main kvm handle indicates that |
| 6088 | it is available, means that full hardware assisted virtualization capabilities |
| 6089 | of the hardware are available for use through KVM. An appropriate |
| 6090 | KVM_VM_MIPS_* type must be passed to KVM_CREATE_VM to create a VM which |
| 6091 | utilises it. |
| 6092 | |
| 6093 | If KVM_CHECK_EXTENSION on a kvm VM handle indicates that this capability is |
| 6094 | available, it means that the VM is using full hardware assisted virtualization |
| 6095 | capabilities of the hardware. This is useful to check after creating a VM with |
| 6096 | KVM_VM_MIPS_DEFAULT. |
| 6097 | |
| 6098 | The value returned by KVM_CHECK_EXTENSION should be compared against known |
| 6099 | values (see below). All other values are reserved. This is to allow for the |
| 6100 | possibility of other hardware assisted virtualization implementations which |
| 6101 | may be incompatible with the MIPS VZ ASE. |
| 6102 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 6103 | == ========================================================================== |
| 6104 | 0 The trap & emulate implementation is in use to run guest code in user |
James Hogan | a8a3c42 | 2017-03-14 10:15:19 +0000 | [diff] [blame] | 6105 | mode. Guest virtual memory segments are rearranged to fit the guest in the |
| 6106 | user mode address space. |
| 6107 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 6108 | 1 The MIPS VZ ASE is in use, providing full hardware assisted |
James Hogan | a8a3c42 | 2017-03-14 10:15:19 +0000 | [diff] [blame] | 6109 | virtualization, including standard guest virtual memory segments. |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 6110 | == ========================================================================== |
James Hogan | a8a3c42 | 2017-03-14 10:15:19 +0000 | [diff] [blame] | 6111 | |
| 6112 | 8.6 KVM_CAP_MIPS_TE |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 6113 | ------------------- |
James Hogan | a8a3c42 | 2017-03-14 10:15:19 +0000 | [diff] [blame] | 6114 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 6115 | :Architectures: mips |
James Hogan | a8a3c42 | 2017-03-14 10:15:19 +0000 | [diff] [blame] | 6116 | |
| 6117 | This capability, if KVM_CHECK_EXTENSION on the main kvm handle indicates that |
| 6118 | it is available, means that the trap & emulate implementation is available to |
| 6119 | run guest code in user mode, even if KVM_CAP_MIPS_VZ indicates that hardware |
| 6120 | assisted virtualisation is also available. KVM_VM_MIPS_TE (0) must be passed |
| 6121 | to KVM_CREATE_VM to create a VM which utilises it. |
| 6122 | |
| 6123 | If KVM_CHECK_EXTENSION on a kvm VM handle indicates that this capability is |
| 6124 | available, it means that the VM is using trap & emulate. |
James Hogan | 578fd61 | 2017-03-14 10:15:20 +0000 | [diff] [blame] | 6125 | |
| 6126 | 8.7 KVM_CAP_MIPS_64BIT |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 6127 | ---------------------- |
James Hogan | 578fd61 | 2017-03-14 10:15:20 +0000 | [diff] [blame] | 6128 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 6129 | :Architectures: mips |
James Hogan | 578fd61 | 2017-03-14 10:15:20 +0000 | [diff] [blame] | 6130 | |
| 6131 | This capability indicates the supported architecture type of the guest, i.e. the |
| 6132 | supported register and address width. |
| 6133 | |
| 6134 | The values returned when this capability is checked by KVM_CHECK_EXTENSION on a |
| 6135 | kvm VM handle correspond roughly to the CP0_Config.AT register field, and should |
| 6136 | be checked specifically against known values (see below). All other values are |
| 6137 | reserved. |
| 6138 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 6139 | == ======================================================================== |
| 6140 | 0 MIPS32 or microMIPS32. |
James Hogan | 578fd61 | 2017-03-14 10:15:20 +0000 | [diff] [blame] | 6141 | Both registers and addresses are 32-bits wide. |
| 6142 | It will only be possible to run 32-bit guest code. |
| 6143 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 6144 | 1 MIPS64 or microMIPS64 with access only to 32-bit compatibility segments. |
James Hogan | 578fd61 | 2017-03-14 10:15:20 +0000 | [diff] [blame] | 6145 | Registers are 64-bits wide, but addresses are 32-bits wide. |
| 6146 | 64-bit guest code may run but cannot access MIPS64 memory segments. |
| 6147 | It will also be possible to run 32-bit guest code. |
| 6148 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 6149 | 2 MIPS64 or microMIPS64 with access to all address segments. |
James Hogan | 578fd61 | 2017-03-14 10:15:20 +0000 | [diff] [blame] | 6150 | Both registers and addresses are 64-bits wide. |
| 6151 | It will be possible to run 64-bit or 32-bit guest code. |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 6152 | == ======================================================================== |
Michael S. Tsirkin | 668fffa | 2017-04-21 12:27:17 +0200 | [diff] [blame] | 6153 | |
Paolo Bonzini | c24a7be | 2017-04-27 17:33:14 +0200 | [diff] [blame] | 6154 | 8.9 KVM_CAP_ARM_USER_IRQ |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 6155 | ------------------------ |
Alexander Graf | 3fe17e6 | 2016-09-27 21:08:05 +0200 | [diff] [blame] | 6156 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 6157 | :Architectures: arm, arm64 |
| 6158 | |
Alexander Graf | 3fe17e6 | 2016-09-27 21:08:05 +0200 | [diff] [blame] | 6159 | This capability, if KVM_CHECK_EXTENSION indicates that it is available, means |
| 6160 | that if userspace creates a VM without an in-kernel interrupt controller, it |
| 6161 | will be notified of changes to the output level of in-kernel emulated devices, |
| 6162 | which can generate virtual interrupts, presented to the VM. |
| 6163 | For such VMs, on every return to userspace, the kernel |
| 6164 | updates the vcpu's run->s.regs.device_irq_level field to represent the actual |
| 6165 | output level of the device. |
| 6166 | |
| 6167 | Whenever kvm detects a change in the device output level, kvm guarantees at |
| 6168 | least one return to userspace before running the VM. This exit could either |
| 6169 | be a KVM_EXIT_INTR or any other exit event, like KVM_EXIT_MMIO. This way, |
| 6170 | userspace can always sample the device output level and re-compute the state of |
| 6171 | the userspace interrupt controller. Userspace should always check the state |
| 6172 | of run->s.regs.device_irq_level on every kvm exit. |
| 6173 | The value in run->s.regs.device_irq_level can represent both level and edge |
| 6174 | triggered interrupt signals, depending on the device. Edge triggered interrupt |
| 6175 | signals will exit to userspace with the bit in run->s.regs.device_irq_level |
| 6176 | set exactly once per edge signal. |
| 6177 | |
| 6178 | The field run->s.regs.device_irq_level is available independent of |
| 6179 | run->kvm_valid_regs or run->kvm_dirty_regs bits. |
| 6180 | |
| 6181 | If KVM_CAP_ARM_USER_IRQ is supported, the KVM_CHECK_EXTENSION ioctl returns a |
| 6182 | number larger than 0 indicating the version of this capability is implemented |
Randy Dunlap | 3747c5d | 2020-07-03 14:29:06 -0700 | [diff] [blame] | 6183 | and thereby which bits in run->s.regs.device_irq_level can signal values. |
Alexander Graf | 3fe17e6 | 2016-09-27 21:08:05 +0200 | [diff] [blame] | 6184 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 6185 | Currently the following bits are defined for the device_irq_level bitmap:: |
Alexander Graf | 3fe17e6 | 2016-09-27 21:08:05 +0200 | [diff] [blame] | 6186 | |
| 6187 | KVM_CAP_ARM_USER_IRQ >= 1: |
| 6188 | |
| 6189 | KVM_ARM_DEV_EL1_VTIMER - EL1 virtual timer |
| 6190 | KVM_ARM_DEV_EL1_PTIMER - EL1 physical timer |
| 6191 | KVM_ARM_DEV_PMU - ARM PMU overflow interrupt signal |
| 6192 | |
| 6193 | Future versions of kvm may implement additional events. These will get |
| 6194 | indicated by returning a higher number from KVM_CHECK_EXTENSION and will be |
| 6195 | listed above. |
Paul Mackerras | 2ed4f9d | 2017-06-21 16:01:27 +1000 | [diff] [blame] | 6196 | |
| 6197 | 8.10 KVM_CAP_PPC_SMT_POSSIBLE |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 6198 | ----------------------------- |
Paul Mackerras | 2ed4f9d | 2017-06-21 16:01:27 +1000 | [diff] [blame] | 6199 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 6200 | :Architectures: ppc |
Paul Mackerras | 2ed4f9d | 2017-06-21 16:01:27 +1000 | [diff] [blame] | 6201 | |
| 6202 | Querying this capability returns a bitmap indicating the possible |
| 6203 | virtual SMT modes that can be set using KVM_CAP_PPC_SMT. If bit N |
| 6204 | (counting from the right) is set, then a virtual SMT mode of 2^N is |
| 6205 | available. |
Roman Kagan | efc479e | 2017-06-22 16:51:01 +0300 | [diff] [blame] | 6206 | |
| 6207 | 8.11 KVM_CAP_HYPERV_SYNIC2 |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 6208 | -------------------------- |
Roman Kagan | efc479e | 2017-06-22 16:51:01 +0300 | [diff] [blame] | 6209 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 6210 | :Architectures: x86 |
Roman Kagan | efc479e | 2017-06-22 16:51:01 +0300 | [diff] [blame] | 6211 | |
| 6212 | This capability enables a newer version of Hyper-V Synthetic interrupt |
| 6213 | controller (SynIC). The only difference with KVM_CAP_HYPERV_SYNIC is that KVM |
| 6214 | doesn't clear SynIC message and event flags pages when they are enabled by |
| 6215 | writing to the respective MSRs. |
Roman Kagan | d3457c8 | 2017-07-14 17:13:20 +0300 | [diff] [blame] | 6216 | |
| 6217 | 8.12 KVM_CAP_HYPERV_VP_INDEX |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 6218 | ---------------------------- |
Roman Kagan | d3457c8 | 2017-07-14 17:13:20 +0300 | [diff] [blame] | 6219 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 6220 | :Architectures: x86 |
Roman Kagan | d3457c8 | 2017-07-14 17:13:20 +0300 | [diff] [blame] | 6221 | |
| 6222 | This capability indicates that userspace can load HV_X64_MSR_VP_INDEX msr. Its |
| 6223 | value is used to denote the target vcpu for a SynIC interrupt. For |
| 6224 | compatibilty, KVM initializes this msr to KVM's internal vcpu index. When this |
| 6225 | capability is absent, userspace can still query this msr's value. |
Christian Borntraeger | da9a144 | 2017-11-09 10:00:45 +0100 | [diff] [blame] | 6226 | |
| 6227 | 8.13 KVM_CAP_S390_AIS_MIGRATION |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 6228 | ------------------------------- |
Christian Borntraeger | da9a144 | 2017-11-09 10:00:45 +0100 | [diff] [blame] | 6229 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 6230 | :Architectures: s390 |
| 6231 | :Parameters: none |
Christian Borntraeger | da9a144 | 2017-11-09 10:00:45 +0100 | [diff] [blame] | 6232 | |
| 6233 | This capability indicates if the flic device will be able to get/set the |
| 6234 | AIS states for migration via the KVM_DEV_FLIC_AISM_ALL attribute and allows |
| 6235 | to discover this without having to create a flic device. |
Christian Borntraeger | 5c2b4d5 | 2018-02-22 13:40:04 +0000 | [diff] [blame] | 6236 | |
| 6237 | 8.14 KVM_CAP_S390_PSW |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 6238 | --------------------- |
Christian Borntraeger | 5c2b4d5 | 2018-02-22 13:40:04 +0000 | [diff] [blame] | 6239 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 6240 | :Architectures: s390 |
Christian Borntraeger | 5c2b4d5 | 2018-02-22 13:40:04 +0000 | [diff] [blame] | 6241 | |
| 6242 | This capability indicates that the PSW is exposed via the kvm_run structure. |
| 6243 | |
| 6244 | 8.15 KVM_CAP_S390_GMAP |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 6245 | ---------------------- |
Christian Borntraeger | 5c2b4d5 | 2018-02-22 13:40:04 +0000 | [diff] [blame] | 6246 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 6247 | :Architectures: s390 |
Christian Borntraeger | 5c2b4d5 | 2018-02-22 13:40:04 +0000 | [diff] [blame] | 6248 | |
| 6249 | This capability indicates that the user space memory used as guest mapping can |
| 6250 | be anywhere in the user memory address space, as long as the memory slots are |
| 6251 | aligned and sized to a segment (1MB) boundary. |
| 6252 | |
| 6253 | 8.16 KVM_CAP_S390_COW |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 6254 | --------------------- |
Christian Borntraeger | 5c2b4d5 | 2018-02-22 13:40:04 +0000 | [diff] [blame] | 6255 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 6256 | :Architectures: s390 |
Christian Borntraeger | 5c2b4d5 | 2018-02-22 13:40:04 +0000 | [diff] [blame] | 6257 | |
| 6258 | This capability indicates that the user space memory used as guest mapping can |
| 6259 | use copy-on-write semantics as well as dirty pages tracking via read-only page |
| 6260 | tables. |
| 6261 | |
| 6262 | 8.17 KVM_CAP_S390_BPB |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 6263 | --------------------- |
Christian Borntraeger | 5c2b4d5 | 2018-02-22 13:40:04 +0000 | [diff] [blame] | 6264 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 6265 | :Architectures: s390 |
Christian Borntraeger | 5c2b4d5 | 2018-02-22 13:40:04 +0000 | [diff] [blame] | 6266 | |
| 6267 | This capability indicates that kvm will implement the interfaces to handle |
| 6268 | reset, migration and nested KVM for branch prediction blocking. The stfle |
| 6269 | facility 82 should not be provided to the guest without this capability. |
Vitaly Kuznetsov | c1aea91 | 2018-05-16 17:21:31 +0200 | [diff] [blame] | 6270 | |
Vitaly Kuznetsov | 2ddc649 | 2018-06-22 16:56:14 +0200 | [diff] [blame] | 6271 | 8.18 KVM_CAP_HYPERV_TLBFLUSH |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 6272 | ---------------------------- |
Vitaly Kuznetsov | c1aea91 | 2018-05-16 17:21:31 +0200 | [diff] [blame] | 6273 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 6274 | :Architectures: x86 |
Vitaly Kuznetsov | c1aea91 | 2018-05-16 17:21:31 +0200 | [diff] [blame] | 6275 | |
| 6276 | This capability indicates that KVM supports paravirtualized Hyper-V TLB Flush |
| 6277 | hypercalls: |
| 6278 | HvFlushVirtualAddressSpace, HvFlushVirtualAddressSpaceEx, |
| 6279 | HvFlushVirtualAddressList, HvFlushVirtualAddressListEx. |
Dongjiu Geng | be26b3a | 2018-07-19 16:24:23 +0100 | [diff] [blame] | 6280 | |
Dongjiu Geng | 688e058 | 2018-08-20 17:39:25 -0400 | [diff] [blame] | 6281 | 8.19 KVM_CAP_ARM_INJECT_SERROR_ESR |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 6282 | ---------------------------------- |
Dongjiu Geng | be26b3a | 2018-07-19 16:24:23 +0100 | [diff] [blame] | 6283 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 6284 | :Architectures: arm, arm64 |
Dongjiu Geng | be26b3a | 2018-07-19 16:24:23 +0100 | [diff] [blame] | 6285 | |
| 6286 | This capability indicates that userspace can specify (via the |
| 6287 | KVM_SET_VCPU_EVENTS ioctl) the syndrome value reported to the guest when it |
| 6288 | takes a virtual SError interrupt exception. |
| 6289 | If KVM advertises this capability, userspace can only specify the ISS field for |
| 6290 | the ESR syndrome. Other parts of the ESR, such as the EC are generated by the |
| 6291 | CPU when the exception is taken. If this virtual SError is taken to EL1 using |
| 6292 | AArch64, this value will be reported in the ISS field of ESR_ELx. |
| 6293 | |
| 6294 | See KVM_CAP_VCPU_EVENTS for more details. |
Vitaly Kuznetsov | 214ff83 | 2018-09-26 19:02:59 +0200 | [diff] [blame] | 6295 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 6296 | 8.20 KVM_CAP_HYPERV_SEND_IPI |
| 6297 | ---------------------------- |
| 6298 | |
| 6299 | :Architectures: x86 |
Vitaly Kuznetsov | 214ff83 | 2018-09-26 19:02:59 +0200 | [diff] [blame] | 6300 | |
| 6301 | This capability indicates that KVM supports paravirtualized Hyper-V IPI send |
| 6302 | hypercalls: |
| 6303 | HvCallSendSyntheticClusterIpi, HvCallSendSyntheticClusterIpiEx. |
Tianyu Lan | 344c6c8 | 2019-08-22 22:30:20 +0800 | [diff] [blame] | 6304 | |
Mauro Carvalho Chehab | 106ee47 | 2020-02-10 07:02:55 +0100 | [diff] [blame] | 6305 | 8.21 KVM_CAP_HYPERV_DIRECT_TLBFLUSH |
| 6306 | ----------------------------------- |
| 6307 | |
Andrew Jones | 739c7af | 2020-08-04 19:06:03 +0200 | [diff] [blame] | 6308 | :Architectures: x86 |
Tianyu Lan | 344c6c8 | 2019-08-22 22:30:20 +0800 | [diff] [blame] | 6309 | |
| 6310 | This capability indicates that KVM running on top of Hyper-V hypervisor |
| 6311 | enables Direct TLB flush for its guests meaning that TLB flush |
| 6312 | hypercalls are handled by Level 0 hypervisor (Hyper-V) bypassing KVM. |
| 6313 | Due to the different ABI for hypercall parameters between Hyper-V and |
| 6314 | KVM, enabling this capability effectively disables all hypercall |
| 6315 | handling by KVM (as some KVM hypercall may be mistakenly treated as TLB |
| 6316 | flush hypercalls by Hyper-V) so userspace should disable KVM identification |
| 6317 | in CPUID and only exposes Hyper-V identification. In this case, guest |
| 6318 | thinks it's running on Hyper-V and only use Hyper-V hypercalls. |
Janosch Frank | 7de3f14 | 2020-01-31 05:02:02 -0500 | [diff] [blame] | 6319 | |
| 6320 | 8.22 KVM_CAP_S390_VCPU_RESETS |
Andrew Jones | 739c7af | 2020-08-04 19:06:03 +0200 | [diff] [blame] | 6321 | ----------------------------- |
Janosch Frank | 7de3f14 | 2020-01-31 05:02:02 -0500 | [diff] [blame] | 6322 | |
Andrew Jones | 739c7af | 2020-08-04 19:06:03 +0200 | [diff] [blame] | 6323 | :Architectures: s390 |
Janosch Frank | 7de3f14 | 2020-01-31 05:02:02 -0500 | [diff] [blame] | 6324 | |
| 6325 | This capability indicates that the KVM_S390_NORMAL_RESET and |
| 6326 | KVM_S390_CLEAR_RESET ioctls are available. |
Janosch Frank | 04ed89d | 2019-11-08 05:05:26 -0500 | [diff] [blame] | 6327 | |
| 6328 | 8.23 KVM_CAP_S390_PROTECTED |
Andrew Jones | 739c7af | 2020-08-04 19:06:03 +0200 | [diff] [blame] | 6329 | --------------------------- |
Janosch Frank | 04ed89d | 2019-11-08 05:05:26 -0500 | [diff] [blame] | 6330 | |
Andrew Jones | 739c7af | 2020-08-04 19:06:03 +0200 | [diff] [blame] | 6331 | :Architectures: s390 |
Janosch Frank | 04ed89d | 2019-11-08 05:05:26 -0500 | [diff] [blame] | 6332 | |
| 6333 | This capability indicates that the Ultravisor has been initialized and |
| 6334 | KVM can therefore start protected VMs. |
| 6335 | This capability governs the KVM_S390_PV_COMMAND ioctl and the |
| 6336 | KVM_MP_STATE_LOAD MP_STATE. KVM_SET_MP_STATE can fail for protected |
| 6337 | guests when the state change is invalid. |
Andrew Jones | 004a012 | 2020-08-04 19:06:04 +0200 | [diff] [blame] | 6338 | |
| 6339 | 8.24 KVM_CAP_STEAL_TIME |
| 6340 | ----------------------- |
| 6341 | |
| 6342 | :Architectures: arm64, x86 |
| 6343 | |
| 6344 | This capability indicates that KVM supports steal time accounting. |
| 6345 | When steal time accounting is supported it may be enabled with |
| 6346 | architecture-specific interfaces. This capability and the architecture- |
| 6347 | specific interfaces must be consistent, i.e. if one says the feature |
| 6348 | is supported, than the other should as well and vice versa. For arm64 |
| 6349 | see Documentation/virt/kvm/devices/vcpu.rst "KVM_ARM_VCPU_PVTIME_CTRL". |
| 6350 | For x86 see Documentation/virt/kvm/msr.rst "MSR_KVM_STEAL_TIME". |
Collin Walling | f20d4e9 | 2020-06-25 11:07:23 -0400 | [diff] [blame] | 6351 | |
| 6352 | 8.25 KVM_CAP_S390_DIAG318 |
| 6353 | ------------------------- |
| 6354 | |
| 6355 | :Architectures: s390 |
| 6356 | |
| 6357 | This capability enables a guest to set information about its control program |
| 6358 | (i.e. guest kernel type and version). The information is helpful during |
| 6359 | system/firmware service events, providing additional data about the guest |
| 6360 | environments running on the machine. |
| 6361 | |
| 6362 | The information is associated with the DIAGNOSE 0x318 instruction, which sets |
| 6363 | an 8-byte value consisting of a one-byte Control Program Name Code (CPNC) and |
| 6364 | a 7-byte Control Program Version Code (CPVC). The CPNC determines what |
| 6365 | environment the control program is running in (e.g. Linux, z/VM...), and the |
| 6366 | CPVC is used for information specific to OS (e.g. Linux version, Linux |
| 6367 | distribution...) |
| 6368 | |
| 6369 | If this capability is available, then the CPNC and CPVC can be synchronized |
| 6370 | between KVM and userspace via the sync regs mechanism (KVM_SYNC_DIAG318). |
Alexander Graf | 1ae0995 | 2020-09-25 16:34:16 +0200 | [diff] [blame] | 6371 | |
| 6372 | 8.26 KVM_CAP_X86_USER_SPACE_MSR |
| 6373 | ------------------------------- |
| 6374 | |
| 6375 | :Architectures: x86 |
| 6376 | |
| 6377 | This capability indicates that KVM supports deflection of MSR reads and |
| 6378 | writes to user space. It can be enabled on a VM level. If enabled, MSR |
| 6379 | accesses that would usually trigger a #GP by KVM into the guest will |
| 6380 | instead get bounced to user space through the KVM_EXIT_X86_RDMSR and |
| 6381 | KVM_EXIT_X86_WRMSR exit notifications. |
Alexander Graf | 1a155254 | 2020-09-25 16:34:21 +0200 | [diff] [blame] | 6382 | |
Peter Xu | 3d20267 | 2020-09-30 21:20:31 -0400 | [diff] [blame] | 6383 | 8.27 KVM_X86_SET_MSR_FILTER |
Alexander Graf | 1a155254 | 2020-09-25 16:34:21 +0200 | [diff] [blame] | 6384 | --------------------------- |
| 6385 | |
| 6386 | :Architectures: x86 |
| 6387 | |
| 6388 | This capability indicates that KVM supports that accesses to user defined MSRs |
| 6389 | may be rejected. With this capability exposed, KVM exports new VM ioctl |
| 6390 | KVM_X86_SET_MSR_FILTER which user space can call to specify bitmaps of MSR |
| 6391 | ranges that KVM should reject access to. |
| 6392 | |
| 6393 | In combination with KVM_CAP_X86_USER_SPACE_MSR, this allows user space to |
| 6394 | trap and emulate MSRs that are outside of the scope of KVM as well as |
| 6395 | limit the attack surface on KVM's MSR emulation code. |
Oliver Upton | 66570e9 | 2020-08-18 15:24:28 +0000 | [diff] [blame] | 6396 | |
Peter Xu | 177158e | 2020-10-23 14:33:46 -0400 | [diff] [blame] | 6397 | 8.28 KVM_CAP_ENFORCE_PV_CPUID |
Oliver Upton | 66570e9 | 2020-08-18 15:24:28 +0000 | [diff] [blame] | 6398 | ----------------------------- |
| 6399 | |
| 6400 | Architectures: x86 |
| 6401 | |
| 6402 | When enabled, KVM will disable paravirtual features provided to the |
| 6403 | guest according to the bits in the KVM_CPUID_FEATURES CPUID leaf |
| 6404 | (0x40000001). Otherwise, a guest may use the paravirtual features |
| 6405 | regardless of what has actually been exposed through the CPUID leaf. |