blob: d1908e50b506a29169b71c3722248d80fd7c8d1d [file] [log] [blame]
Avi Kivity9c1b96e2009-06-09 12:37:58 +03001The Definitive KVM (Kernel-based Virtual Machine) API Documentation
2===================================================================
3
41. General description
Jan Kiszka414fa982012-04-24 16:40:15 +02005----------------------
Avi Kivity9c1b96e2009-06-09 12:37:58 +03006
7The kvm API is a set of ioctls that are issued to control various aspects
8of a virtual machine. The ioctls belong to three classes
9
10 - System ioctls: These query and set global attributes which affect the
11 whole kvm subsystem. In addition a system ioctl is used to create
12 virtual machines
13
14 - VM ioctls: These query and set attributes that affect an entire virtual
15 machine, for example memory layout. In addition a VM ioctl is used to
Sean Christophersonc217b3c2019-02-15 12:48:39 -080016 create virtual cpus (vcpus) and devices.
Avi Kivity9c1b96e2009-06-09 12:37:58 +030017
18 Only run VM ioctls from the same process (address space) that was used
19 to create the VM.
20
21 - vcpu ioctls: These query and set attributes that control the operation
22 of a single virtual cpu.
23
24 Only run vcpu ioctls from the same thread that was used to create the
25 vcpu.
26
Sean Christophersonc217b3c2019-02-15 12:48:39 -080027 - device ioctls: These query and set attributes that control the operation
28 of a single device.
29
30 device ioctls must be issued from the same process (address space) that
31 was used to create the VM.
Jan Kiszka414fa982012-04-24 16:40:15 +020032
Wu Fengguang2044892d2009-12-24 09:04:16 +0800332. File descriptors
Jan Kiszka414fa982012-04-24 16:40:15 +020034-------------------
Avi Kivity9c1b96e2009-06-09 12:37:58 +030035
36The kvm API is centered around file descriptors. An initial
37open("/dev/kvm") obtains a handle to the kvm subsystem; this handle
38can be used to issue system ioctls. A KVM_CREATE_VM ioctl on this
Wu Fengguang2044892d2009-12-24 09:04:16 +080039handle will create a VM file descriptor which can be used to issue VM
Sean Christophersonc217b3c2019-02-15 12:48:39 -080040ioctls. A KVM_CREATE_VCPU or KVM_CREATE_DEVICE ioctl on a VM fd will
41create a virtual cpu or device and return a file descriptor pointing to
42the new resource. Finally, ioctls on a vcpu or device fd can be used
43to control the vcpu or device. For vcpus, this includes the important
44task of actually running guest code.
Avi Kivity9c1b96e2009-06-09 12:37:58 +030045
46In general file descriptors can be migrated among processes by means
47of fork() and the SCM_RIGHTS facility of unix domain socket. These
48kinds of tricks are explicitly not supported by kvm. While they will
49not cause harm to the host, their actual behavior is not guaranteed by
50the API. The only supported use is one virtual machine per process,
51and one vcpu per thread.
52
Jan Kiszka414fa982012-04-24 16:40:15 +020053
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300543. Extensions
Jan Kiszka414fa982012-04-24 16:40:15 +020055-------------
Avi Kivity9c1b96e2009-06-09 12:37:58 +030056
57As of Linux 2.6.22, the KVM ABI has been stabilized: no backward
58incompatible change are allowed. However, there is an extension
59facility that allows backward-compatible extensions to the API to be
60queried and used.
61
Masanari Iidac9f3f2d2013-07-18 01:29:12 +090062The extension mechanism is not based on the Linux version number.
Avi Kivity9c1b96e2009-06-09 12:37:58 +030063Instead, kvm defines extension identifiers and a facility to query
64whether a particular extension identifier is available. If it is, a
65set of ioctls is available for application use.
66
Jan Kiszka414fa982012-04-24 16:40:15 +020067
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300684. API description
Jan Kiszka414fa982012-04-24 16:40:15 +020069------------------
Avi Kivity9c1b96e2009-06-09 12:37:58 +030070
71This section describes ioctls that can be used to control kvm guests.
72For each ioctl, the following information is provided along with a
73description:
74
75 Capability: which KVM extension provides this ioctl. Can be 'basic',
76 which means that is will be provided by any kernel that supports
Michael S. Tsirkin7f05db62014-10-12 11:34:00 +030077 API version 12 (see section 4.1), a KVM_CAP_xyz constant, which
Avi Kivity9c1b96e2009-06-09 12:37:58 +030078 means availability needs to be checked with KVM_CHECK_EXTENSION
Michael S. Tsirkin7f05db62014-10-12 11:34:00 +030079 (see section 4.4), or 'none' which means that while not all kernels
80 support this ioctl, there's no capability bit to check its
81 availability: for kernels that don't support the ioctl,
82 the ioctl returns -ENOTTY.
Avi Kivity9c1b96e2009-06-09 12:37:58 +030083
84 Architectures: which instruction set architectures provide this ioctl.
85 x86 includes both i386 and x86_64.
86
87 Type: system, vm, or vcpu.
88
89 Parameters: what parameters are accepted by the ioctl.
90
91 Returns: the return value. General error numbers (EBADF, ENOMEM, EINVAL)
92 are not detailed, but errors with specific meanings are.
93
Jan Kiszka414fa982012-04-24 16:40:15 +020094
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300954.1 KVM_GET_API_VERSION
96
97Capability: basic
98Architectures: all
99Type: system ioctl
100Parameters: none
101Returns: the constant KVM_API_VERSION (=12)
102
103This identifies the API version as the stable kvm API. It is not
104expected that this number will change. However, Linux 2.6.20 and
1052.6.21 report earlier versions; these are not documented and not
106supported. Applications should refuse to run if KVM_GET_API_VERSION
107returns a value other than 12. If this check passes, all ioctls
108described as 'basic' will be available.
109
Jan Kiszka414fa982012-04-24 16:40:15 +0200110
Avi Kivity9c1b96e2009-06-09 12:37:58 +03001114.2 KVM_CREATE_VM
112
113Capability: basic
114Architectures: all
115Type: system ioctl
Carsten Ottee08b9632012-01-04 10:25:20 +0100116Parameters: machine type identifier (KVM_VM_*)
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300117Returns: a VM fd that can be used to control the new virtual machine.
118
119The new VM has no virtual cpus and no memory. An mmap() of a VM fd
120will access the virtual machine's physical address space; offset zero
121corresponds to guest physical address zero. Use of mmap() on a VM fd
122is discouraged if userspace memory allocation (KVM_CAP_USER_MEMORY) is
123available.
Carsten Ottee08b9632012-01-04 10:25:20 +0100124You most certainly want to use 0 as machine type.
125
126In order to create user controlled virtual machines on S390, check
127KVM_CAP_S390_UCONTROL and use the flag KVM_VM_S390_UCONTROL as
128privileged user (CAP_SYS_ADMIN).
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300129
Jan Kiszka414fa982012-04-24 16:40:15 +0200130
Tom Lendacky62d88fc2018-02-21 13:39:51 -06001314.3 KVM_GET_MSR_INDEX_LIST, KVM_GET_MSR_FEATURE_INDEX_LIST
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300132
Tom Lendacky62d88fc2018-02-21 13:39:51 -0600133Capability: basic, KVM_CAP_GET_MSR_FEATURES for KVM_GET_MSR_FEATURE_INDEX_LIST
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300134Architectures: x86
Tom Lendacky62d88fc2018-02-21 13:39:51 -0600135Type: system ioctl
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300136Parameters: struct kvm_msr_list (in/out)
137Returns: 0 on success; -1 on error
138Errors:
Tom Lendacky62d88fc2018-02-21 13:39:51 -0600139 EFAULT: the msr index list cannot be read from or written to
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300140 E2BIG: the msr index list is to be to fit in the array specified by
141 the user.
142
143struct kvm_msr_list {
144 __u32 nmsrs; /* number of msrs in entries */
145 __u32 indices[0];
146};
147
Tom Lendacky62d88fc2018-02-21 13:39:51 -0600148The user fills in the size of the indices array in nmsrs, and in return
149kvm adjusts nmsrs to reflect the actual number of msrs and fills in the
150indices array with their numbers.
151
152KVM_GET_MSR_INDEX_LIST returns the guest msrs that are supported. The list
153varies by kvm version and host processor, but does not change otherwise.
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300154
Avi Kivity2e2602c2010-07-07 14:09:39 +0300155Note: if kvm indicates supports MCE (KVM_CAP_MCE), then the MCE bank MSRs are
156not returned in the MSR list, as different vcpus can have a different number
157of banks, as set via the KVM_X86_SETUP_MCE ioctl.
158
Tom Lendacky62d88fc2018-02-21 13:39:51 -0600159KVM_GET_MSR_FEATURE_INDEX_LIST returns the list of MSRs that can be passed
160to the KVM_GET_MSRS system ioctl. This lets userspace probe host capabilities
161and processor features that are exposed via MSRs (e.g., VMX capabilities).
162This list also varies by kvm version and host processor, but does not change
163otherwise.
164
Jan Kiszka414fa982012-04-24 16:40:15 +0200165
Avi Kivity9c1b96e2009-06-09 12:37:58 +03001664.4 KVM_CHECK_EXTENSION
167
Alexander Graf92b591a2014-07-14 18:33:08 +0200168Capability: basic, KVM_CAP_CHECK_EXTENSION_VM for vm ioctl
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300169Architectures: all
Alexander Graf92b591a2014-07-14 18:33:08 +0200170Type: system ioctl, vm ioctl
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300171Parameters: extension identifier (KVM_CAP_*)
172Returns: 0 if unsupported; 1 (or some other positive integer) if supported
173
174The API allows the application to query about extensions to the core
175kvm API. Userspace passes an extension identifier (an integer) and
176receives an integer that describes the extension availability.
177Generally 0 means no and 1 means yes, but some extensions may report
178additional information in the integer return value.
179
Alexander Graf92b591a2014-07-14 18:33:08 +0200180Based on their initialization different VMs may have different capabilities.
181It is thus encouraged to use the vm ioctl to query for capabilities (available
182with KVM_CAP_CHECK_EXTENSION_VM on the vm fd)
Jan Kiszka414fa982012-04-24 16:40:15 +0200183
Avi Kivity9c1b96e2009-06-09 12:37:58 +03001844.5 KVM_GET_VCPU_MMAP_SIZE
185
186Capability: basic
187Architectures: all
188Type: system ioctl
189Parameters: none
190Returns: size of vcpu mmap area, in bytes
191
192The KVM_RUN ioctl (cf.) communicates with userspace via a shared
193memory region. This ioctl returns the size of that region. See the
194KVM_RUN documentation for details.
195
Jan Kiszka414fa982012-04-24 16:40:15 +0200196
Avi Kivity9c1b96e2009-06-09 12:37:58 +03001974.6 KVM_SET_MEMORY_REGION
198
199Capability: basic
200Architectures: all
201Type: vm ioctl
202Parameters: struct kvm_memory_region (in)
203Returns: 0 on success, -1 on error
204
Avi Kivityb74a07b2010-06-21 11:48:05 +0300205This ioctl is obsolete and has been removed.
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300206
Jan Kiszka414fa982012-04-24 16:40:15 +0200207
Paul Bolle68ba6972011-02-15 00:05:59 +01002084.7 KVM_CREATE_VCPU
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300209
210Capability: basic
211Architectures: all
212Type: vm ioctl
213Parameters: vcpu id (apic id on x86)
214Returns: vcpu fd on success, -1 on error
215
Greg Kurz0b1b1df2016-05-09 18:13:37 +0200216This API adds a vcpu to a virtual machine. No more than max_vcpus may be added.
217The vcpu id is an integer in the range [0, max_vcpu_id).
Sasha Levin8c3ba332011-07-18 17:17:15 +0300218
219The recommended max_vcpus value can be retrieved using the KVM_CAP_NR_VCPUS of
220the KVM_CHECK_EXTENSION ioctl() at run-time.
221The maximum possible value for max_vcpus can be retrieved using the
222KVM_CAP_MAX_VCPUS of the KVM_CHECK_EXTENSION ioctl() at run-time.
223
Pekka Enberg76d25402011-05-09 22:48:54 +0300224If the KVM_CAP_NR_VCPUS does not exist, you should assume that max_vcpus is 4
225cpus max.
Sasha Levin8c3ba332011-07-18 17:17:15 +0300226If the KVM_CAP_MAX_VCPUS does not exist, you should assume that max_vcpus is
227same as the value returned from KVM_CAP_NR_VCPUS.
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300228
Greg Kurz0b1b1df2016-05-09 18:13:37 +0200229The maximum possible value for max_vcpu_id can be retrieved using the
230KVM_CAP_MAX_VCPU_ID of the KVM_CHECK_EXTENSION ioctl() at run-time.
231
232If the KVM_CAP_MAX_VCPU_ID does not exist, you should assume that max_vcpu_id
233is the same as the value returned from KVM_CAP_MAX_VCPUS.
234
Paul Mackerras371fefd2011-06-29 00:23:08 +0000235On powerpc using book3s_hv mode, the vcpus are mapped onto virtual
236threads in one or more virtual CPU cores. (This is because the
237hardware requires all the hardware threads in a CPU core to be in the
238same partition.) The KVM_CAP_PPC_SMT capability indicates the number
239of vcpus per virtual core (vcore). The vcore id is obtained by
240dividing the vcpu id by the number of vcpus per vcore. The vcpus in a
241given vcore will always be in the same physical core as each other
242(though that might be a different physical core from time to time).
243Userspace can control the threading (SMT) mode of the guest by its
244allocation of vcpu ids. For example, if userspace wants
245single-threaded guest vcpus, it should make all vcpu ids be a multiple
246of the number of vcpus per vcore.
247
Carsten Otte5b1c1492012-01-04 10:25:23 +0100248For virtual cpus that have been created with S390 user controlled virtual
249machines, the resulting vcpu fd can be memory mapped at page offset
250KVM_S390_SIE_PAGE_OFFSET in order to obtain a memory map of the virtual
251cpu's hardware control block.
252
Jan Kiszka414fa982012-04-24 16:40:15 +0200253
Paul Bolle68ba6972011-02-15 00:05:59 +01002544.8 KVM_GET_DIRTY_LOG (vm ioctl)
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300255
256Capability: basic
257Architectures: x86
258Type: vm ioctl
259Parameters: struct kvm_dirty_log (in/out)
260Returns: 0 on success, -1 on error
261
262/* for KVM_GET_DIRTY_LOG */
263struct kvm_dirty_log {
264 __u32 slot;
265 __u32 padding;
266 union {
267 void __user *dirty_bitmap; /* one bit per page */
268 __u64 padding;
269 };
270};
271
272Given a memory slot, return a bitmap containing any pages dirtied
273since the last call to this ioctl. Bit 0 is the first page in the
274memory slot. Ensure the entire structure is cleared to avoid padding
275issues.
276
Paolo Bonzinif481b062015-05-17 17:30:37 +0200277If KVM_CAP_MULTI_ADDRESS_SPACE is available, bits 16-31 specifies
278the address space for which you want to return the dirty bitmap.
279They must be less than the value that KVM_CHECK_EXTENSION returns for
280the KVM_CAP_MULTI_ADDRESS_SPACE capability.
281
Jan Kiszka414fa982012-04-24 16:40:15 +0200282
Paul Bolle68ba6972011-02-15 00:05:59 +01002834.9 KVM_SET_MEMORY_ALIAS
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300284
285Capability: basic
286Architectures: x86
287Type: vm ioctl
288Parameters: struct kvm_memory_alias (in)
289Returns: 0 (success), -1 (error)
290
Avi Kivitya1f4d3952010-06-21 11:44:20 +0300291This ioctl is obsolete and has been removed.
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300292
Jan Kiszka414fa982012-04-24 16:40:15 +0200293
Paul Bolle68ba6972011-02-15 00:05:59 +01002944.10 KVM_RUN
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300295
296Capability: basic
297Architectures: all
298Type: vcpu ioctl
299Parameters: none
300Returns: 0 on success, -1 on error
301Errors:
302 EINTR: an unmasked signal is pending
303
304This ioctl is used to run a guest virtual cpu. While there are no
305explicit parameters, there is an implicit parameter block that can be
306obtained by mmap()ing the vcpu fd at offset 0, with the size given by
307KVM_GET_VCPU_MMAP_SIZE. The parameter block is formatted as a 'struct
308kvm_run' (see below).
309
Jan Kiszka414fa982012-04-24 16:40:15 +0200310
Paul Bolle68ba6972011-02-15 00:05:59 +01003114.11 KVM_GET_REGS
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300312
313Capability: basic
Marc Zyngier379e04c2013-04-02 17:46:31 +0100314Architectures: all except ARM, arm64
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300315Type: vcpu ioctl
316Parameters: struct kvm_regs (out)
317Returns: 0 on success, -1 on error
318
319Reads the general purpose registers from the vcpu.
320
321/* x86 */
322struct kvm_regs {
323 /* out (KVM_GET_REGS) / in (KVM_SET_REGS) */
324 __u64 rax, rbx, rcx, rdx;
325 __u64 rsi, rdi, rsp, rbp;
326 __u64 r8, r9, r10, r11;
327 __u64 r12, r13, r14, r15;
328 __u64 rip, rflags;
329};
330
James Hoganc2d2c212014-07-04 15:11:35 +0100331/* mips */
332struct kvm_regs {
333 /* out (KVM_GET_REGS) / in (KVM_SET_REGS) */
334 __u64 gpr[32];
335 __u64 hi;
336 __u64 lo;
337 __u64 pc;
338};
339
Jan Kiszka414fa982012-04-24 16:40:15 +0200340
Paul Bolle68ba6972011-02-15 00:05:59 +01003414.12 KVM_SET_REGS
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300342
343Capability: basic
Marc Zyngier379e04c2013-04-02 17:46:31 +0100344Architectures: all except ARM, arm64
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300345Type: vcpu ioctl
346Parameters: struct kvm_regs (in)
347Returns: 0 on success, -1 on error
348
349Writes the general purpose registers into the vcpu.
350
351See KVM_GET_REGS for the data structure.
352
Jan Kiszka414fa982012-04-24 16:40:15 +0200353
Paul Bolle68ba6972011-02-15 00:05:59 +01003544.13 KVM_GET_SREGS
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300355
356Capability: basic
Scott Wood5ce941e2011-04-27 17:24:21 -0500357Architectures: x86, ppc
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300358Type: vcpu ioctl
359Parameters: struct kvm_sregs (out)
360Returns: 0 on success, -1 on error
361
362Reads special registers from the vcpu.
363
364/* x86 */
365struct kvm_sregs {
366 struct kvm_segment cs, ds, es, fs, gs, ss;
367 struct kvm_segment tr, ldt;
368 struct kvm_dtable gdt, idt;
369 __u64 cr0, cr2, cr3, cr4, cr8;
370 __u64 efer;
371 __u64 apic_base;
372 __u64 interrupt_bitmap[(KVM_NR_INTERRUPTS + 63) / 64];
373};
374
Mihai Caraman68e2ffe2012-12-11 03:38:23 +0000375/* ppc -- see arch/powerpc/include/uapi/asm/kvm.h */
Scott Wood5ce941e2011-04-27 17:24:21 -0500376
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300377interrupt_bitmap is a bitmap of pending external interrupts. At most
378one bit may be set. This interrupt has been acknowledged by the APIC
379but not yet injected into the cpu core.
380
Jan Kiszka414fa982012-04-24 16:40:15 +0200381
Paul Bolle68ba6972011-02-15 00:05:59 +01003824.14 KVM_SET_SREGS
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300383
384Capability: basic
Scott Wood5ce941e2011-04-27 17:24:21 -0500385Architectures: x86, ppc
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300386Type: vcpu ioctl
387Parameters: struct kvm_sregs (in)
388Returns: 0 on success, -1 on error
389
390Writes special registers into the vcpu. See KVM_GET_SREGS for the
391data structures.
392
Jan Kiszka414fa982012-04-24 16:40:15 +0200393
Paul Bolle68ba6972011-02-15 00:05:59 +01003944.15 KVM_TRANSLATE
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300395
396Capability: basic
397Architectures: x86
398Type: vcpu ioctl
399Parameters: struct kvm_translation (in/out)
400Returns: 0 on success, -1 on error
401
402Translates a virtual address according to the vcpu's current address
403translation mode.
404
405struct kvm_translation {
406 /* in */
407 __u64 linear_address;
408
409 /* out */
410 __u64 physical_address;
411 __u8 valid;
412 __u8 writeable;
413 __u8 usermode;
414 __u8 pad[5];
415};
416
Jan Kiszka414fa982012-04-24 16:40:15 +0200417
Paul Bolle68ba6972011-02-15 00:05:59 +01004184.16 KVM_INTERRUPT
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300419
420Capability: basic
James Hoganc2d2c212014-07-04 15:11:35 +0100421Architectures: x86, ppc, mips
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300422Type: vcpu ioctl
423Parameters: struct kvm_interrupt (in)
Steve Rutherford1c1a9ce2015-07-30 11:27:16 +0200424Returns: 0 on success, negative on failure.
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300425
Steve Rutherford1c1a9ce2015-07-30 11:27:16 +0200426Queues a hardware interrupt vector to be injected.
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300427
428/* for KVM_INTERRUPT */
429struct kvm_interrupt {
430 /* in */
431 __u32 irq;
432};
433
Alexander Graf6f7a2bd2010-08-31 02:03:32 +0200434X86:
435
Steve Rutherford1c1a9ce2015-07-30 11:27:16 +0200436Returns: 0 on success,
437 -EEXIST if an interrupt is already enqueued
438 -EINVAL the the irq number is invalid
439 -ENXIO if the PIC is in the kernel
440 -EFAULT if the pointer is invalid
441
442Note 'irq' is an interrupt vector, not an interrupt pin or line. This
443ioctl is useful if the in-kernel PIC is not used.
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300444
Alexander Graf6f7a2bd2010-08-31 02:03:32 +0200445PPC:
446
447Queues an external interrupt to be injected. This ioctl is overleaded
448with 3 different irq values:
449
450a) KVM_INTERRUPT_SET
451
452 This injects an edge type external interrupt into the guest once it's ready
453 to receive interrupts. When injected, the interrupt is done.
454
455b) KVM_INTERRUPT_UNSET
456
457 This unsets any pending interrupt.
458
459 Only available with KVM_CAP_PPC_UNSET_IRQ.
460
461c) KVM_INTERRUPT_SET_LEVEL
462
463 This injects a level type external interrupt into the guest context. The
464 interrupt stays pending until a specific ioctl with KVM_INTERRUPT_UNSET
465 is triggered.
466
467 Only available with KVM_CAP_PPC_IRQ_LEVEL.
468
469Note that any value for 'irq' other than the ones stated above is invalid
470and incurs unexpected behavior.
471
James Hoganc2d2c212014-07-04 15:11:35 +0100472MIPS:
473
474Queues an external interrupt to be injected into the virtual CPU. A negative
475interrupt number dequeues the interrupt.
476
Jan Kiszka414fa982012-04-24 16:40:15 +0200477
Paul Bolle68ba6972011-02-15 00:05:59 +01004784.17 KVM_DEBUG_GUEST
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300479
480Capability: basic
481Architectures: none
482Type: vcpu ioctl
483Parameters: none)
484Returns: -1 on error
485
486Support for this has been removed. Use KVM_SET_GUEST_DEBUG instead.
487
Jan Kiszka414fa982012-04-24 16:40:15 +0200488
Paul Bolle68ba6972011-02-15 00:05:59 +01004894.18 KVM_GET_MSRS
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300490
Tom Lendacky62d88fc2018-02-21 13:39:51 -0600491Capability: basic (vcpu), KVM_CAP_GET_MSR_FEATURES (system)
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300492Architectures: x86
Tom Lendacky62d88fc2018-02-21 13:39:51 -0600493Type: system ioctl, vcpu ioctl
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300494Parameters: struct kvm_msrs (in/out)
Tom Lendacky62d88fc2018-02-21 13:39:51 -0600495Returns: number of msrs successfully returned;
496 -1 on error
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300497
Tom Lendacky62d88fc2018-02-21 13:39:51 -0600498When used as a system ioctl:
499Reads the values of MSR-based features that are available for the VM. This
500is similar to KVM_GET_SUPPORTED_CPUID, but it returns MSR indices and values.
501The list of msr-based features can be obtained using KVM_GET_MSR_FEATURE_INDEX_LIST
502in a system ioctl.
503
504When used as a vcpu ioctl:
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300505Reads model-specific registers from the vcpu. Supported msr indices can
Tom Lendacky62d88fc2018-02-21 13:39:51 -0600506be obtained using KVM_GET_MSR_INDEX_LIST in a system ioctl.
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300507
508struct kvm_msrs {
509 __u32 nmsrs; /* number of msrs in entries */
510 __u32 pad;
511
512 struct kvm_msr_entry entries[0];
513};
514
515struct kvm_msr_entry {
516 __u32 index;
517 __u32 reserved;
518 __u64 data;
519};
520
521Application code should set the 'nmsrs' member (which indicates the
522size of the entries array) and the 'index' member of each array entry.
523kvm will fill in the 'data' member.
524
Jan Kiszka414fa982012-04-24 16:40:15 +0200525
Paul Bolle68ba6972011-02-15 00:05:59 +01005264.19 KVM_SET_MSRS
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300527
528Capability: basic
529Architectures: x86
530Type: vcpu ioctl
531Parameters: struct kvm_msrs (in)
532Returns: 0 on success, -1 on error
533
534Writes model-specific registers to the vcpu. See KVM_GET_MSRS for the
535data structures.
536
537Application code should set the 'nmsrs' member (which indicates the
538size of the entries array), and the 'index' and 'data' members of each
539array entry.
540
Jan Kiszka414fa982012-04-24 16:40:15 +0200541
Paul Bolle68ba6972011-02-15 00:05:59 +01005424.20 KVM_SET_CPUID
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300543
544Capability: basic
545Architectures: x86
546Type: vcpu ioctl
547Parameters: struct kvm_cpuid (in)
548Returns: 0 on success, -1 on error
549
550Defines the vcpu responses to the cpuid instruction. Applications
551should use the KVM_SET_CPUID2 ioctl if available.
552
553
554struct kvm_cpuid_entry {
555 __u32 function;
556 __u32 eax;
557 __u32 ebx;
558 __u32 ecx;
559 __u32 edx;
560 __u32 padding;
561};
562
563/* for KVM_SET_CPUID */
564struct kvm_cpuid {
565 __u32 nent;
566 __u32 padding;
567 struct kvm_cpuid_entry entries[0];
568};
569
Jan Kiszka414fa982012-04-24 16:40:15 +0200570
Paul Bolle68ba6972011-02-15 00:05:59 +01005714.21 KVM_SET_SIGNAL_MASK
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300572
573Capability: basic
James Hogan572e0922014-07-04 15:11:33 +0100574Architectures: all
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300575Type: vcpu ioctl
576Parameters: struct kvm_signal_mask (in)
577Returns: 0 on success, -1 on error
578
579Defines which signals are blocked during execution of KVM_RUN. This
580signal mask temporarily overrides the threads signal mask. Any
581unblocked signal received (except SIGKILL and SIGSTOP, which retain
582their traditional behaviour) will cause KVM_RUN to return with -EINTR.
583
584Note the signal will only be delivered if not blocked by the original
585signal mask.
586
587/* for KVM_SET_SIGNAL_MASK */
588struct kvm_signal_mask {
589 __u32 len;
590 __u8 sigset[0];
591};
592
Jan Kiszka414fa982012-04-24 16:40:15 +0200593
Paul Bolle68ba6972011-02-15 00:05:59 +01005944.22 KVM_GET_FPU
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300595
596Capability: basic
597Architectures: x86
598Type: vcpu ioctl
599Parameters: struct kvm_fpu (out)
600Returns: 0 on success, -1 on error
601
602Reads the floating point state from the vcpu.
603
604/* for KVM_GET_FPU and KVM_SET_FPU */
605struct kvm_fpu {
606 __u8 fpr[8][16];
607 __u16 fcw;
608 __u16 fsw;
609 __u8 ftwx; /* in fxsave format */
610 __u8 pad1;
611 __u16 last_opcode;
612 __u64 last_ip;
613 __u64 last_dp;
614 __u8 xmm[16][16];
615 __u32 mxcsr;
616 __u32 pad2;
617};
618
Jan Kiszka414fa982012-04-24 16:40:15 +0200619
Paul Bolle68ba6972011-02-15 00:05:59 +01006204.23 KVM_SET_FPU
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300621
622Capability: basic
623Architectures: x86
624Type: vcpu ioctl
625Parameters: struct kvm_fpu (in)
626Returns: 0 on success, -1 on error
627
628Writes the floating point state to the vcpu.
629
630/* for KVM_GET_FPU and KVM_SET_FPU */
631struct kvm_fpu {
632 __u8 fpr[8][16];
633 __u16 fcw;
634 __u16 fsw;
635 __u8 ftwx; /* in fxsave format */
636 __u8 pad1;
637 __u16 last_opcode;
638 __u64 last_ip;
639 __u64 last_dp;
640 __u8 xmm[16][16];
641 __u32 mxcsr;
642 __u32 pad2;
643};
644
Jan Kiszka414fa982012-04-24 16:40:15 +0200645
Paul Bolle68ba6972011-02-15 00:05:59 +01006464.24 KVM_CREATE_IRQCHIP
Avi Kivity5dadbfd2009-08-23 17:08:04 +0300647
Cornelia Huck84223592013-07-15 13:36:01 +0200648Capability: KVM_CAP_IRQCHIP, KVM_CAP_S390_IRQCHIP (s390)
Tiejun Chenc32a4272014-11-20 11:07:18 +0100649Architectures: x86, ARM, arm64, s390
Avi Kivity5dadbfd2009-08-23 17:08:04 +0300650Type: vm ioctl
651Parameters: none
652Returns: 0 on success, -1 on error
653
Andre Przywaraac3d3732014-06-03 10:26:30 +0200654Creates an interrupt controller model in the kernel.
655On x86, creates a virtual ioapic, a virtual PIC (two PICs, nested), and sets up
656future vcpus to have a local APIC. IRQ routing for GSIs 0-15 is set to both
657PIC and IOAPIC; GSI 16-23 only go to the IOAPIC.
658On ARM/arm64, a GICv2 is created. Any other GIC versions require the usage of
659KVM_CREATE_DEVICE, which also supports creating a GICv2. Using
660KVM_CREATE_DEVICE is preferred over KVM_CREATE_IRQCHIP for GICv2.
661On s390, a dummy irq routing table is created.
Cornelia Huck84223592013-07-15 13:36:01 +0200662
663Note that on s390 the KVM_CAP_S390_IRQCHIP vm capability needs to be enabled
664before KVM_CREATE_IRQCHIP can be used.
Avi Kivity5dadbfd2009-08-23 17:08:04 +0300665
Jan Kiszka414fa982012-04-24 16:40:15 +0200666
Paul Bolle68ba6972011-02-15 00:05:59 +01006674.25 KVM_IRQ_LINE
Avi Kivity5dadbfd2009-08-23 17:08:04 +0300668
669Capability: KVM_CAP_IRQCHIP
Tiejun Chenc32a4272014-11-20 11:07:18 +0100670Architectures: x86, arm, arm64
Avi Kivity5dadbfd2009-08-23 17:08:04 +0300671Type: vm ioctl
672Parameters: struct kvm_irq_level
673Returns: 0 on success, -1 on error
674
675Sets the level of a GSI input to the interrupt controller model in the kernel.
Christoffer Dall86ce85352013-01-20 18:28:08 -0500676On some architectures it is required that an interrupt controller model has
677been previously created with KVM_CREATE_IRQCHIP. Note that edge-triggered
678interrupts require the level to be set to 1 and then back to 0.
679
Gabriel L. Somlo100943c2014-02-27 23:06:17 -0500680On real hardware, interrupt pins can be active-low or active-high. This
681does not matter for the level field of struct kvm_irq_level: 1 always
682means active (asserted), 0 means inactive (deasserted).
683
684x86 allows the operating system to program the interrupt polarity
685(active-low/active-high) for level-triggered interrupts, and KVM used
686to consider the polarity. However, due to bitrot in the handling of
687active-low interrupts, the above convention is now valid on x86 too.
688This is signaled by KVM_CAP_X86_IOAPIC_POLARITY_IGNORED. Userspace
689should not present interrupts to the guest as active-low unless this
690capability is present (or unless it is not using the in-kernel irqchip,
691of course).
692
693
Marc Zyngier379e04c2013-04-02 17:46:31 +0100694ARM/arm64 can signal an interrupt either at the CPU level, or at the
695in-kernel irqchip (GIC), and for in-kernel irqchip can tell the GIC to
696use PPIs designated for specific cpus. The irq field is interpreted
697like this:
Christoffer Dall86ce85352013-01-20 18:28:08 -0500698
699  bits: | 31 ... 24 | 23 ... 16 | 15 ... 0 |
700 field: | irq_type | vcpu_index | irq_id |
701
702The irq_type field has the following values:
703- irq_type[0]: out-of-kernel GIC: irq_id 0 is IRQ, irq_id 1 is FIQ
704- irq_type[1]: in-kernel GIC: SPI, irq_id between 32 and 1019 (incl.)
705 (the vcpu_index field is ignored)
706- irq_type[2]: in-kernel GIC: PPI, irq_id between 16 and 31 (incl.)
707
708(The irq_id field thus corresponds nicely to the IRQ ID in the ARM GIC specs)
709
Gabriel L. Somlo100943c2014-02-27 23:06:17 -0500710In both cases, level is used to assert/deassert the line.
Avi Kivity5dadbfd2009-08-23 17:08:04 +0300711
712struct kvm_irq_level {
713 union {
714 __u32 irq; /* GSI */
715 __s32 status; /* not used for KVM_IRQ_LEVEL */
716 };
717 __u32 level; /* 0 or 1 */
718};
719
Jan Kiszka414fa982012-04-24 16:40:15 +0200720
Paul Bolle68ba6972011-02-15 00:05:59 +01007214.26 KVM_GET_IRQCHIP
Avi Kivity5dadbfd2009-08-23 17:08:04 +0300722
723Capability: KVM_CAP_IRQCHIP
Tiejun Chenc32a4272014-11-20 11:07:18 +0100724Architectures: x86
Avi Kivity5dadbfd2009-08-23 17:08:04 +0300725Type: vm ioctl
726Parameters: struct kvm_irqchip (in/out)
727Returns: 0 on success, -1 on error
728
729Reads the state of a kernel interrupt controller created with
730KVM_CREATE_IRQCHIP into a buffer provided by the caller.
731
732struct kvm_irqchip {
733 __u32 chip_id; /* 0 = PIC1, 1 = PIC2, 2 = IOAPIC */
734 __u32 pad;
735 union {
736 char dummy[512]; /* reserving space */
737 struct kvm_pic_state pic;
738 struct kvm_ioapic_state ioapic;
739 } chip;
740};
741
Jan Kiszka414fa982012-04-24 16:40:15 +0200742
Paul Bolle68ba6972011-02-15 00:05:59 +01007434.27 KVM_SET_IRQCHIP
Avi Kivity5dadbfd2009-08-23 17:08:04 +0300744
745Capability: KVM_CAP_IRQCHIP
Tiejun Chenc32a4272014-11-20 11:07:18 +0100746Architectures: x86
Avi Kivity5dadbfd2009-08-23 17:08:04 +0300747Type: vm ioctl
748Parameters: struct kvm_irqchip (in)
749Returns: 0 on success, -1 on error
750
751Sets the state of a kernel interrupt controller created with
752KVM_CREATE_IRQCHIP from a buffer provided by the caller.
753
754struct kvm_irqchip {
755 __u32 chip_id; /* 0 = PIC1, 1 = PIC2, 2 = IOAPIC */
756 __u32 pad;
757 union {
758 char dummy[512]; /* reserving space */
759 struct kvm_pic_state pic;
760 struct kvm_ioapic_state ioapic;
761 } chip;
762};
763
Jan Kiszka414fa982012-04-24 16:40:15 +0200764
Paul Bolle68ba6972011-02-15 00:05:59 +01007654.28 KVM_XEN_HVM_CONFIG
Ed Swierkffde22a2009-10-15 15:21:43 -0700766
767Capability: KVM_CAP_XEN_HVM
768Architectures: x86
769Type: vm ioctl
770Parameters: struct kvm_xen_hvm_config (in)
771Returns: 0 on success, -1 on error
772
773Sets the MSR that the Xen HVM guest uses to initialize its hypercall
774page, and provides the starting address and size of the hypercall
775blobs in userspace. When the guest writes the MSR, kvm copies one
776page of a blob (32- or 64-bit, depending on the vcpu mode) to guest
777memory.
778
779struct kvm_xen_hvm_config {
780 __u32 flags;
781 __u32 msr;
782 __u64 blob_addr_32;
783 __u64 blob_addr_64;
784 __u8 blob_size_32;
785 __u8 blob_size_64;
786 __u8 pad2[30];
787};
788
Jan Kiszka414fa982012-04-24 16:40:15 +0200789
Paul Bolle68ba6972011-02-15 00:05:59 +01007904.29 KVM_GET_CLOCK
Glauber Costaafbcf7a2009-10-16 15:28:36 -0400791
792Capability: KVM_CAP_ADJUST_CLOCK
793Architectures: x86
794Type: vm ioctl
795Parameters: struct kvm_clock_data (out)
796Returns: 0 on success, -1 on error
797
798Gets the current timestamp of kvmclock as seen by the current guest. In
799conjunction with KVM_SET_CLOCK, it is used to ensure monotonicity on scenarios
800such as migration.
801
Paolo Bonzinie3fd9a92016-11-09 17:48:15 +0100802When KVM_CAP_ADJUST_CLOCK is passed to KVM_CHECK_EXTENSION, it returns the
803set of bits that KVM can return in struct kvm_clock_data's flag member.
804
805The only flag defined now is KVM_CLOCK_TSC_STABLE. If set, the returned
806value is the exact kvmclock value seen by all VCPUs at the instant
807when KVM_GET_CLOCK was called. If clear, the returned value is simply
808CLOCK_MONOTONIC plus a constant offset; the offset can be modified
809with KVM_SET_CLOCK. KVM will try to make all VCPUs follow this clock,
810but the exact value read by each VCPU could differ, because the host
811TSC is not stable.
812
Glauber Costaafbcf7a2009-10-16 15:28:36 -0400813struct kvm_clock_data {
814 __u64 clock; /* kvmclock current value */
815 __u32 flags;
816 __u32 pad[9];
817};
818
Jan Kiszka414fa982012-04-24 16:40:15 +0200819
Paul Bolle68ba6972011-02-15 00:05:59 +01008204.30 KVM_SET_CLOCK
Glauber Costaafbcf7a2009-10-16 15:28:36 -0400821
822Capability: KVM_CAP_ADJUST_CLOCK
823Architectures: x86
824Type: vm ioctl
825Parameters: struct kvm_clock_data (in)
826Returns: 0 on success, -1 on error
827
Wu Fengguang2044892d2009-12-24 09:04:16 +0800828Sets the current timestamp of kvmclock to the value specified in its parameter.
Glauber Costaafbcf7a2009-10-16 15:28:36 -0400829In conjunction with KVM_GET_CLOCK, it is used to ensure monotonicity on scenarios
830such as migration.
831
832struct kvm_clock_data {
833 __u64 clock; /* kvmclock current value */
834 __u32 flags;
835 __u32 pad[9];
836};
837
Jan Kiszka414fa982012-04-24 16:40:15 +0200838
Paul Bolle68ba6972011-02-15 00:05:59 +01008394.31 KVM_GET_VCPU_EVENTS
Jan Kiszka3cfc3092009-11-12 01:04:25 +0100840
841Capability: KVM_CAP_VCPU_EVENTS
Jan Kiszka48005f62010-02-19 19:38:07 +0100842Extended by: KVM_CAP_INTR_SHADOW
Jan Kiszka3cfc3092009-11-12 01:04:25 +0100843Architectures: x86
844Type: vm ioctl
845Parameters: struct kvm_vcpu_event (out)
846Returns: 0 on success, -1 on error
847
848Gets currently pending exceptions, interrupts, and NMIs as well as related
849states of the vcpu.
850
851struct kvm_vcpu_events {
852 struct {
853 __u8 injected;
854 __u8 nr;
855 __u8 has_error_code;
856 __u8 pad;
857 __u32 error_code;
858 } exception;
859 struct {
860 __u8 injected;
861 __u8 nr;
862 __u8 soft;
Jan Kiszka48005f62010-02-19 19:38:07 +0100863 __u8 shadow;
Jan Kiszka3cfc3092009-11-12 01:04:25 +0100864 } interrupt;
865 struct {
866 __u8 injected;
867 __u8 pending;
868 __u8 masked;
869 __u8 pad;
870 } nmi;
871 __u32 sipi_vector;
Jan Kiszkadab4b912009-12-06 18:24:15 +0100872 __u32 flags;
Paolo Bonzinif0778252015-04-01 15:06:40 +0200873 struct {
874 __u8 smm;
875 __u8 pending;
876 __u8 smm_inside_nmi;
877 __u8 latched_init;
878 } smi;
Jan Kiszka3cfc3092009-11-12 01:04:25 +0100879};
880
Paolo Bonzinif0778252015-04-01 15:06:40 +0200881Only two fields are defined in the flags field:
Jan Kiszka48005f62010-02-19 19:38:07 +0100882
Paolo Bonzinif0778252015-04-01 15:06:40 +0200883- KVM_VCPUEVENT_VALID_SHADOW may be set in the flags field to signal that
884 interrupt.shadow contains a valid state.
885
886- KVM_VCPUEVENT_VALID_SMM may be set in the flags field to signal that
887 smi contains a valid state.
Jan Kiszka414fa982012-04-24 16:40:15 +0200888
Paul Bolle68ba6972011-02-15 00:05:59 +01008894.32 KVM_SET_VCPU_EVENTS
Jan Kiszka3cfc3092009-11-12 01:04:25 +0100890
891Capability: KVM_CAP_VCPU_EVENTS
Jan Kiszka48005f62010-02-19 19:38:07 +0100892Extended by: KVM_CAP_INTR_SHADOW
Jan Kiszka3cfc3092009-11-12 01:04:25 +0100893Architectures: x86
894Type: vm ioctl
895Parameters: struct kvm_vcpu_event (in)
896Returns: 0 on success, -1 on error
897
898Set pending exceptions, interrupts, and NMIs as well as related states of the
899vcpu.
900
901See KVM_GET_VCPU_EVENTS for the data structure.
902
Jan Kiszkadab4b912009-12-06 18:24:15 +0100903Fields that may be modified asynchronously by running VCPUs can be excluded
Paolo Bonzinif0778252015-04-01 15:06:40 +0200904from the update. These fields are nmi.pending, sipi_vector, smi.smm,
905smi.pending. Keep the corresponding bits in the flags field cleared to
906suppress overwriting the current in-kernel state. The bits are:
Jan Kiszkadab4b912009-12-06 18:24:15 +0100907
908KVM_VCPUEVENT_VALID_NMI_PENDING - transfer nmi.pending to the kernel
909KVM_VCPUEVENT_VALID_SIPI_VECTOR - transfer sipi_vector
Paolo Bonzinif0778252015-04-01 15:06:40 +0200910KVM_VCPUEVENT_VALID_SMM - transfer the smi sub-struct.
Jan Kiszkadab4b912009-12-06 18:24:15 +0100911
Jan Kiszka48005f62010-02-19 19:38:07 +0100912If KVM_CAP_INTR_SHADOW is available, KVM_VCPUEVENT_VALID_SHADOW can be set in
913the flags field to signal that interrupt.shadow contains a valid state and
914shall be written into the VCPU.
915
Paolo Bonzinif0778252015-04-01 15:06:40 +0200916KVM_VCPUEVENT_VALID_SMM can only be set if KVM_CAP_X86_SMM is available.
917
Jan Kiszka414fa982012-04-24 16:40:15 +0200918
Paul Bolle68ba6972011-02-15 00:05:59 +01009194.33 KVM_GET_DEBUGREGS
Jan Kiszkaa1efbe72010-02-15 10:45:43 +0100920
921Capability: KVM_CAP_DEBUGREGS
922Architectures: x86
923Type: vm ioctl
924Parameters: struct kvm_debugregs (out)
925Returns: 0 on success, -1 on error
926
927Reads debug registers from the vcpu.
928
929struct kvm_debugregs {
930 __u64 db[4];
931 __u64 dr6;
932 __u64 dr7;
933 __u64 flags;
934 __u64 reserved[9];
935};
936
Jan Kiszka414fa982012-04-24 16:40:15 +0200937
Paul Bolle68ba6972011-02-15 00:05:59 +01009384.34 KVM_SET_DEBUGREGS
Jan Kiszkaa1efbe72010-02-15 10:45:43 +0100939
940Capability: KVM_CAP_DEBUGREGS
941Architectures: x86
942Type: vm ioctl
943Parameters: struct kvm_debugregs (in)
944Returns: 0 on success, -1 on error
945
946Writes debug registers into the vcpu.
947
948See KVM_GET_DEBUGREGS for the data structure. The flags field is unused
949yet and must be cleared on entry.
950
Jan Kiszka414fa982012-04-24 16:40:15 +0200951
Paul Bolle68ba6972011-02-15 00:05:59 +01009524.35 KVM_SET_USER_MEMORY_REGION
Avi Kivity0f2d8f42010-03-25 12:16:48 +0200953
954Capability: KVM_CAP_USER_MEM
955Architectures: all
956Type: vm ioctl
957Parameters: struct kvm_userspace_memory_region (in)
958Returns: 0 on success, -1 on error
959
960struct kvm_userspace_memory_region {
961 __u32 slot;
962 __u32 flags;
963 __u64 guest_phys_addr;
964 __u64 memory_size; /* bytes */
965 __u64 userspace_addr; /* start of the userspace allocated memory */
966};
967
968/* for kvm_memory_region::flags */
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +0800969#define KVM_MEM_LOG_DIRTY_PAGES (1UL << 0)
970#define KVM_MEM_READONLY (1UL << 1)
Avi Kivity0f2d8f42010-03-25 12:16:48 +0200971
972This ioctl allows the user to create or modify a guest physical memory
973slot. When changing an existing slot, it may be moved in the guest
974physical memory space, or its flags may be modified. It may not be
975resized. Slots may not overlap in guest physical address space.
976
Paolo Bonzinif481b062015-05-17 17:30:37 +0200977If KVM_CAP_MULTI_ADDRESS_SPACE is available, bits 16-31 of "slot"
978specifies the address space which is being modified. They must be
979less than the value that KVM_CHECK_EXTENSION returns for the
980KVM_CAP_MULTI_ADDRESS_SPACE capability. Slots in separate address spaces
981are unrelated; the restriction on overlapping slots only applies within
982each address space.
983
Avi Kivity0f2d8f42010-03-25 12:16:48 +0200984Memory for the region is taken starting at the address denoted by the
985field userspace_addr, which must point at user addressable memory for
986the entire memory slot size. Any object may back this memory, including
987anonymous memory, ordinary files, and hugetlbfs.
988
989It is recommended that the lower 21 bits of guest_phys_addr and userspace_addr
990be identical. This allows large pages in the guest to be backed by large
991pages in the host.
992
Takuya Yoshikawa75d61fb2013-01-30 19:40:41 +0900993The flags field supports two flags: KVM_MEM_LOG_DIRTY_PAGES and
994KVM_MEM_READONLY. The former can be set to instruct KVM to keep track of
995writes to memory within the slot. See KVM_GET_DIRTY_LOG ioctl to know how to
996use it. The latter can be set, if KVM_CAP_READONLY_MEM capability allows it,
997to make a new slot read-only. In this case, writes to this memory will be
998posted to userspace as KVM_EXIT_MMIO exits.
Avi Kivity0f2d8f42010-03-25 12:16:48 +0200999
Jan Kiszka7efd8fa2012-09-07 13:17:47 +02001000When the KVM_CAP_SYNC_MMU capability is available, changes in the backing of
1001the memory region are automatically reflected into the guest. For example, an
1002mmap() that affects the region will be made visible immediately. Another
1003example is madvise(MADV_DROP).
Avi Kivity0f2d8f42010-03-25 12:16:48 +02001004
1005It is recommended to use this API instead of the KVM_SET_MEMORY_REGION ioctl.
1006The KVM_SET_MEMORY_REGION does not allow fine grained control over memory
1007allocation and is deprecated.
Jan Kiszka3cfc3092009-11-12 01:04:25 +01001008
Jan Kiszka414fa982012-04-24 16:40:15 +02001009
Paul Bolle68ba6972011-02-15 00:05:59 +010010104.36 KVM_SET_TSS_ADDR
Avi Kivity8a5416d2010-03-25 12:27:30 +02001011
1012Capability: KVM_CAP_SET_TSS_ADDR
1013Architectures: x86
1014Type: vm ioctl
1015Parameters: unsigned long tss_address (in)
1016Returns: 0 on success, -1 on error
1017
1018This ioctl defines the physical address of a three-page region in the guest
1019physical address space. The region must be within the first 4GB of the
1020guest physical address space and must not conflict with any memory slot
1021or any mmio address. The guest may malfunction if it accesses this memory
1022region.
1023
1024This ioctl is required on Intel-based hosts. This is needed on Intel hardware
1025because of a quirk in the virtualization implementation (see the internals
1026documentation when it pops into existence).
1027
Jan Kiszka414fa982012-04-24 16:40:15 +02001028
Paul Bolle68ba6972011-02-15 00:05:59 +010010294.37 KVM_ENABLE_CAP
Alexander Graf71fbfd52010-03-24 21:48:29 +01001030
Cornelia Huckd938dc52013-10-23 18:26:34 +02001031Capability: KVM_CAP_ENABLE_CAP, KVM_CAP_ENABLE_CAP_VM
Nadav Amit90de4a12015-04-13 01:53:41 +03001032Architectures: x86 (only KVM_CAP_ENABLE_CAP_VM),
1033 mips (only KVM_CAP_ENABLE_CAP), ppc, s390
Cornelia Huckd938dc52013-10-23 18:26:34 +02001034Type: vcpu ioctl, vm ioctl (with KVM_CAP_ENABLE_CAP_VM)
Alexander Graf71fbfd52010-03-24 21:48:29 +01001035Parameters: struct kvm_enable_cap (in)
1036Returns: 0 on success; -1 on error
1037
1038+Not all extensions are enabled by default. Using this ioctl the application
1039can enable an extension, making it available to the guest.
1040
1041On systems that do not support this ioctl, it always fails. On systems that
1042do support it, it only works for extensions that are supported for enablement.
1043
1044To check if a capability can be enabled, the KVM_CHECK_EXTENSION ioctl should
1045be used.
1046
1047struct kvm_enable_cap {
1048 /* in */
1049 __u32 cap;
1050
1051The capability that is supposed to get enabled.
1052
1053 __u32 flags;
1054
1055A bitfield indicating future enhancements. Has to be 0 for now.
1056
1057 __u64 args[4];
1058
1059Arguments for enabling a feature. If a feature needs initial values to
1060function properly, this is the place to put them.
1061
1062 __u8 pad[64];
1063};
1064
Cornelia Huckd938dc52013-10-23 18:26:34 +02001065The vcpu ioctl should be used for vcpu-specific capabilities, the vm ioctl
1066for vm-wide capabilities.
Jan Kiszka414fa982012-04-24 16:40:15 +02001067
Paul Bolle68ba6972011-02-15 00:05:59 +010010684.38 KVM_GET_MP_STATE
Avi Kivityb843f062010-04-25 15:51:46 +03001069
1070Capability: KVM_CAP_MP_STATE
Alex Bennéeecccf0c2015-03-13 17:02:52 +00001071Architectures: x86, s390, arm, arm64
Avi Kivityb843f062010-04-25 15:51:46 +03001072Type: vcpu ioctl
1073Parameters: struct kvm_mp_state (out)
1074Returns: 0 on success; -1 on error
1075
1076struct kvm_mp_state {
1077 __u32 mp_state;
1078};
1079
1080Returns the vcpu's current "multiprocessing state" (though also valid on
1081uniprocessor guests).
1082
1083Possible values are:
1084
Alex Bennéeecccf0c2015-03-13 17:02:52 +00001085 - KVM_MP_STATE_RUNNABLE: the vcpu is currently running [x86,arm/arm64]
Avi Kivityb843f062010-04-25 15:51:46 +03001086 - KVM_MP_STATE_UNINITIALIZED: the vcpu is an application processor (AP)
Tiejun Chenc32a4272014-11-20 11:07:18 +01001087 which has not yet received an INIT signal [x86]
Avi Kivityb843f062010-04-25 15:51:46 +03001088 - KVM_MP_STATE_INIT_RECEIVED: the vcpu has received an INIT signal, and is
Tiejun Chenc32a4272014-11-20 11:07:18 +01001089 now ready for a SIPI [x86]
Avi Kivityb843f062010-04-25 15:51:46 +03001090 - KVM_MP_STATE_HALTED: the vcpu has executed a HLT instruction and
Tiejun Chenc32a4272014-11-20 11:07:18 +01001091 is waiting for an interrupt [x86]
Avi Kivityb843f062010-04-25 15:51:46 +03001092 - KVM_MP_STATE_SIPI_RECEIVED: the vcpu has just received a SIPI (vector
Tiejun Chenc32a4272014-11-20 11:07:18 +01001093 accessible via KVM_GET_VCPU_EVENTS) [x86]
Alex Bennéeecccf0c2015-03-13 17:02:52 +00001094 - KVM_MP_STATE_STOPPED: the vcpu is stopped [s390,arm/arm64]
David Hildenbrand6352e4d2014-04-10 17:35:00 +02001095 - KVM_MP_STATE_CHECK_STOP: the vcpu is in a special error state [s390]
1096 - KVM_MP_STATE_OPERATING: the vcpu is operating (running or halted)
1097 [s390]
1098 - KVM_MP_STATE_LOAD: the vcpu is in a special load/startup state
1099 [s390]
Avi Kivityb843f062010-04-25 15:51:46 +03001100
Tiejun Chenc32a4272014-11-20 11:07:18 +01001101On x86, this ioctl is only useful after KVM_CREATE_IRQCHIP. Without an
David Hildenbrand0b4820d2014-05-12 16:05:13 +02001102in-kernel irqchip, the multiprocessing state must be maintained by userspace on
1103these architectures.
Avi Kivityb843f062010-04-25 15:51:46 +03001104
Alex Bennéeecccf0c2015-03-13 17:02:52 +00001105For arm/arm64:
1106
1107The only states that are valid are KVM_MP_STATE_STOPPED and
1108KVM_MP_STATE_RUNNABLE which reflect if the vcpu is paused or not.
Jan Kiszka414fa982012-04-24 16:40:15 +02001109
Paul Bolle68ba6972011-02-15 00:05:59 +010011104.39 KVM_SET_MP_STATE
Avi Kivityb843f062010-04-25 15:51:46 +03001111
1112Capability: KVM_CAP_MP_STATE
Alex Bennéeecccf0c2015-03-13 17:02:52 +00001113Architectures: x86, s390, arm, arm64
Avi Kivityb843f062010-04-25 15:51:46 +03001114Type: vcpu ioctl
1115Parameters: struct kvm_mp_state (in)
1116Returns: 0 on success; -1 on error
1117
1118Sets the vcpu's current "multiprocessing state"; see KVM_GET_MP_STATE for
1119arguments.
1120
Tiejun Chenc32a4272014-11-20 11:07:18 +01001121On x86, this ioctl is only useful after KVM_CREATE_IRQCHIP. Without an
David Hildenbrand0b4820d2014-05-12 16:05:13 +02001122in-kernel irqchip, the multiprocessing state must be maintained by userspace on
1123these architectures.
Avi Kivityb843f062010-04-25 15:51:46 +03001124
Alex Bennéeecccf0c2015-03-13 17:02:52 +00001125For arm/arm64:
1126
1127The only states that are valid are KVM_MP_STATE_STOPPED and
1128KVM_MP_STATE_RUNNABLE which reflect if the vcpu should be paused or not.
Jan Kiszka414fa982012-04-24 16:40:15 +02001129
Paul Bolle68ba6972011-02-15 00:05:59 +010011304.40 KVM_SET_IDENTITY_MAP_ADDR
Avi Kivity47dbb842010-04-29 12:08:56 +03001131
1132Capability: KVM_CAP_SET_IDENTITY_MAP_ADDR
1133Architectures: x86
1134Type: vm ioctl
1135Parameters: unsigned long identity (in)
1136Returns: 0 on success, -1 on error
1137
1138This ioctl defines the physical address of a one-page region in the guest
1139physical address space. The region must be within the first 4GB of the
1140guest physical address space and must not conflict with any memory slot
1141or any mmio address. The guest may malfunction if it accesses this memory
1142region.
1143
1144This ioctl is required on Intel-based hosts. This is needed on Intel hardware
1145because of a quirk in the virtualization implementation (see the internals
1146documentation when it pops into existence).
1147
Jan Kiszka414fa982012-04-24 16:40:15 +02001148
Paul Bolle68ba6972011-02-15 00:05:59 +010011494.41 KVM_SET_BOOT_CPU_ID
Avi Kivity57bc24c2010-04-29 12:12:57 +03001150
1151Capability: KVM_CAP_SET_BOOT_CPU_ID
Tiejun Chenc32a4272014-11-20 11:07:18 +01001152Architectures: x86
Avi Kivity57bc24c2010-04-29 12:12:57 +03001153Type: vm ioctl
1154Parameters: unsigned long vcpu_id
1155Returns: 0 on success, -1 on error
1156
1157Define which vcpu is the Bootstrap Processor (BSP). Values are the same
1158as the vcpu id in KVM_CREATE_VCPU. If this ioctl is not called, the default
1159is vcpu 0.
1160
Jan Kiszka414fa982012-04-24 16:40:15 +02001161
Paul Bolle68ba6972011-02-15 00:05:59 +010011624.42 KVM_GET_XSAVE
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001163
1164Capability: KVM_CAP_XSAVE
1165Architectures: x86
1166Type: vcpu ioctl
1167Parameters: struct kvm_xsave (out)
1168Returns: 0 on success, -1 on error
1169
1170struct kvm_xsave {
1171 __u32 region[1024];
1172};
1173
1174This ioctl would copy current vcpu's xsave struct to the userspace.
1175
Jan Kiszka414fa982012-04-24 16:40:15 +02001176
Paul Bolle68ba6972011-02-15 00:05:59 +010011774.43 KVM_SET_XSAVE
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001178
1179Capability: KVM_CAP_XSAVE
1180Architectures: x86
1181Type: vcpu ioctl
1182Parameters: struct kvm_xsave (in)
1183Returns: 0 on success, -1 on error
1184
1185struct kvm_xsave {
1186 __u32 region[1024];
1187};
1188
1189This ioctl would copy userspace's xsave struct to the kernel.
1190
Jan Kiszka414fa982012-04-24 16:40:15 +02001191
Paul Bolle68ba6972011-02-15 00:05:59 +010011924.44 KVM_GET_XCRS
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001193
1194Capability: KVM_CAP_XCRS
1195Architectures: x86
1196Type: vcpu ioctl
1197Parameters: struct kvm_xcrs (out)
1198Returns: 0 on success, -1 on error
1199
1200struct kvm_xcr {
1201 __u32 xcr;
1202 __u32 reserved;
1203 __u64 value;
1204};
1205
1206struct kvm_xcrs {
1207 __u32 nr_xcrs;
1208 __u32 flags;
1209 struct kvm_xcr xcrs[KVM_MAX_XCRS];
1210 __u64 padding[16];
1211};
1212
1213This ioctl would copy current vcpu's xcrs to the userspace.
1214
Jan Kiszka414fa982012-04-24 16:40:15 +02001215
Paul Bolle68ba6972011-02-15 00:05:59 +010012164.45 KVM_SET_XCRS
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001217
1218Capability: KVM_CAP_XCRS
1219Architectures: x86
1220Type: vcpu ioctl
1221Parameters: struct kvm_xcrs (in)
1222Returns: 0 on success, -1 on error
1223
1224struct kvm_xcr {
1225 __u32 xcr;
1226 __u32 reserved;
1227 __u64 value;
1228};
1229
1230struct kvm_xcrs {
1231 __u32 nr_xcrs;
1232 __u32 flags;
1233 struct kvm_xcr xcrs[KVM_MAX_XCRS];
1234 __u64 padding[16];
1235};
1236
1237This ioctl would set vcpu's xcr to the value userspace specified.
1238
Jan Kiszka414fa982012-04-24 16:40:15 +02001239
Paul Bolle68ba6972011-02-15 00:05:59 +010012404.46 KVM_GET_SUPPORTED_CPUID
Avi Kivityd1535132010-07-14 09:45:21 +03001241
1242Capability: KVM_CAP_EXT_CPUID
1243Architectures: x86
1244Type: system ioctl
1245Parameters: struct kvm_cpuid2 (in/out)
1246Returns: 0 on success, -1 on error
1247
1248struct kvm_cpuid2 {
1249 __u32 nent;
1250 __u32 padding;
1251 struct kvm_cpuid_entry2 entries[0];
1252};
1253
Borislav Petkov9c15bb12013-09-22 16:44:50 +02001254#define KVM_CPUID_FLAG_SIGNIFCANT_INDEX BIT(0)
1255#define KVM_CPUID_FLAG_STATEFUL_FUNC BIT(1)
1256#define KVM_CPUID_FLAG_STATE_READ_NEXT BIT(2)
Avi Kivityd1535132010-07-14 09:45:21 +03001257
1258struct kvm_cpuid_entry2 {
1259 __u32 function;
1260 __u32 index;
1261 __u32 flags;
1262 __u32 eax;
1263 __u32 ebx;
1264 __u32 ecx;
1265 __u32 edx;
1266 __u32 padding[3];
1267};
1268
1269This ioctl returns x86 cpuid features which are supported by both the hardware
1270and kvm. Userspace can use the information returned by this ioctl to
1271construct cpuid information (for KVM_SET_CPUID2) that is consistent with
1272hardware, kernel, and userspace capabilities, and with user requirements (for
1273example, the user may wish to constrain cpuid to emulate older hardware,
1274or for feature consistency across a cluster).
1275
1276Userspace invokes KVM_GET_SUPPORTED_CPUID by passing a kvm_cpuid2 structure
1277with the 'nent' field indicating the number of entries in the variable-size
1278array 'entries'. If the number of entries is too low to describe the cpu
1279capabilities, an error (E2BIG) is returned. If the number is too high,
1280the 'nent' field is adjusted and an error (ENOMEM) is returned. If the
1281number is just right, the 'nent' field is adjusted to the number of valid
1282entries in the 'entries' array, which is then filled.
1283
1284The entries returned are the host cpuid as returned by the cpuid instruction,
Avi Kivityc39cbd22010-09-12 16:39:11 +02001285with unknown or unsupported features masked out. Some features (for example,
1286x2apic), may not be present in the host cpu, but are exposed by kvm if it can
1287emulate them efficiently. The fields in each entry are defined as follows:
Avi Kivityd1535132010-07-14 09:45:21 +03001288
1289 function: the eax value used to obtain the entry
1290 index: the ecx value used to obtain the entry (for entries that are
1291 affected by ecx)
1292 flags: an OR of zero or more of the following:
1293 KVM_CPUID_FLAG_SIGNIFCANT_INDEX:
1294 if the index field is valid
1295 KVM_CPUID_FLAG_STATEFUL_FUNC:
1296 if cpuid for this function returns different values for successive
1297 invocations; there will be several entries with the same function,
1298 all with this flag set
1299 KVM_CPUID_FLAG_STATE_READ_NEXT:
1300 for KVM_CPUID_FLAG_STATEFUL_FUNC entries, set if this entry is
1301 the first entry to be read by a cpu
1302 eax, ebx, ecx, edx: the values returned by the cpuid instruction for
1303 this function/index combination
1304
Jan Kiszka4d25a0662011-12-21 12:28:29 +01001305The TSC deadline timer feature (CPUID leaf 1, ecx[24]) is always returned
1306as false, since the feature depends on KVM_CREATE_IRQCHIP for local APIC
1307support. Instead it is reported via
1308
1309 ioctl(KVM_CHECK_EXTENSION, KVM_CAP_TSC_DEADLINE_TIMER)
1310
1311if that returns true and you use KVM_CREATE_IRQCHIP, or if you emulate the
1312feature in userspace, then you can enable the feature for KVM_SET_CPUID2.
1313
Jan Kiszka414fa982012-04-24 16:40:15 +02001314
Paul Bolle68ba6972011-02-15 00:05:59 +010013154.47 KVM_PPC_GET_PVINFO
Alexander Graf15711e92010-07-29 14:48:08 +02001316
1317Capability: KVM_CAP_PPC_GET_PVINFO
1318Architectures: ppc
1319Type: vm ioctl
1320Parameters: struct kvm_ppc_pvinfo (out)
1321Returns: 0 on success, !0 on error
1322
1323struct kvm_ppc_pvinfo {
1324 __u32 flags;
1325 __u32 hcall[4];
1326 __u8 pad[108];
1327};
1328
1329This ioctl fetches PV specific information that need to be passed to the guest
1330using the device tree or other means from vm context.
1331
Liu Yu-B132019202e072012-07-03 05:48:52 +00001332The hcall array defines 4 instructions that make up a hypercall.
Alexander Graf15711e92010-07-29 14:48:08 +02001333
1334If any additional field gets added to this structure later on, a bit for that
1335additional piece of information will be set in the flags bitmap.
1336
Liu Yu-B132019202e072012-07-03 05:48:52 +00001337The flags bitmap is defined as:
1338
1339 /* the host supports the ePAPR idle hcall
1340 #define KVM_PPC_PVINFO_FLAGS_EV_IDLE (1<<0)
Jan Kiszka414fa982012-04-24 16:40:15 +02001341
Paolo Bonzinie80a4a92015-06-04 16:32:48 +020013424.48 KVM_ASSIGN_PCI_DEVICE (deprecated)
Jan Kiszka49f48172010-11-16 22:30:07 +01001343
Michael S. Tsirkin7f05db62014-10-12 11:34:00 +03001344Capability: none
Tiejun Chenc32a4272014-11-20 11:07:18 +01001345Architectures: x86
Jan Kiszka49f48172010-11-16 22:30:07 +01001346Type: vm ioctl
1347Parameters: struct kvm_assigned_pci_dev (in)
1348Returns: 0 on success, -1 on error
1349
1350Assigns a host PCI device to the VM.
1351
1352struct kvm_assigned_pci_dev {
1353 __u32 assigned_dev_id;
1354 __u32 busnr;
1355 __u32 devfn;
1356 __u32 flags;
1357 __u32 segnr;
1358 union {
1359 __u32 reserved[11];
1360 };
1361};
1362
1363The PCI device is specified by the triple segnr, busnr, and devfn.
1364Identification in succeeding service requests is done via assigned_dev_id. The
1365following flags are specified:
1366
1367/* Depends on KVM_CAP_IOMMU */
1368#define KVM_DEV_ASSIGN_ENABLE_IOMMU (1 << 0)
Jan Kiszka07700a92012-02-28 14:19:54 +01001369/* The following two depend on KVM_CAP_PCI_2_3 */
1370#define KVM_DEV_ASSIGN_PCI_2_3 (1 << 1)
1371#define KVM_DEV_ASSIGN_MASK_INTX (1 << 2)
1372
1373If KVM_DEV_ASSIGN_PCI_2_3 is set, the kernel will manage legacy INTx interrupts
1374via the PCI-2.3-compliant device-level mask, thus enable IRQ sharing with other
1375assigned devices or host devices. KVM_DEV_ASSIGN_MASK_INTX specifies the
1376guest's view on the INTx mask, see KVM_ASSIGN_SET_INTX_MASK for details.
Jan Kiszka49f48172010-11-16 22:30:07 +01001377
Alex Williamson42387372011-12-20 21:59:03 -07001378The KVM_DEV_ASSIGN_ENABLE_IOMMU flag is a mandatory option to ensure
1379isolation of the device. Usages not specifying this flag are deprecated.
1380
Alex Williamson3d27e232011-12-20 21:59:09 -07001381Only PCI header type 0 devices with PCI BAR resources are supported by
1382device assignment. The user requesting this ioctl must have read/write
1383access to the PCI sysfs resource files associated with the device.
1384
Michael S. Tsirkin7f05db62014-10-12 11:34:00 +03001385Errors:
1386 ENOTTY: kernel does not support this ioctl
1387
1388 Other error conditions may be defined by individual device types or
1389 have their standard meanings.
1390
Jan Kiszka414fa982012-04-24 16:40:15 +02001391
Paolo Bonzinie80a4a92015-06-04 16:32:48 +020013924.49 KVM_DEASSIGN_PCI_DEVICE (deprecated)
Jan Kiszka49f48172010-11-16 22:30:07 +01001393
Michael S. Tsirkin7f05db62014-10-12 11:34:00 +03001394Capability: none
Tiejun Chenc32a4272014-11-20 11:07:18 +01001395Architectures: x86
Jan Kiszka49f48172010-11-16 22:30:07 +01001396Type: vm ioctl
1397Parameters: struct kvm_assigned_pci_dev (in)
1398Returns: 0 on success, -1 on error
1399
1400Ends PCI device assignment, releasing all associated resources.
1401
Michael S. Tsirkin7f05db62014-10-12 11:34:00 +03001402See KVM_ASSIGN_PCI_DEVICE for the data structure. Only assigned_dev_id is
Jan Kiszka49f48172010-11-16 22:30:07 +01001403used in kvm_assigned_pci_dev to identify the device.
1404
Michael S. Tsirkin7f05db62014-10-12 11:34:00 +03001405Errors:
1406 ENOTTY: kernel does not support this ioctl
1407
1408 Other error conditions may be defined by individual device types or
1409 have their standard meanings.
Jan Kiszka414fa982012-04-24 16:40:15 +02001410
Paolo Bonzinie80a4a92015-06-04 16:32:48 +020014114.50 KVM_ASSIGN_DEV_IRQ (deprecated)
Jan Kiszka49f48172010-11-16 22:30:07 +01001412
1413Capability: KVM_CAP_ASSIGN_DEV_IRQ
Tiejun Chenc32a4272014-11-20 11:07:18 +01001414Architectures: x86
Jan Kiszka49f48172010-11-16 22:30:07 +01001415Type: vm ioctl
1416Parameters: struct kvm_assigned_irq (in)
1417Returns: 0 on success, -1 on error
1418
1419Assigns an IRQ to a passed-through device.
1420
1421struct kvm_assigned_irq {
1422 __u32 assigned_dev_id;
Jan Kiszka91e3d712011-06-03 08:51:05 +02001423 __u32 host_irq; /* ignored (legacy field) */
Jan Kiszka49f48172010-11-16 22:30:07 +01001424 __u32 guest_irq;
1425 __u32 flags;
1426 union {
Jan Kiszka49f48172010-11-16 22:30:07 +01001427 __u32 reserved[12];
1428 };
1429};
1430
1431The following flags are defined:
1432
1433#define KVM_DEV_IRQ_HOST_INTX (1 << 0)
1434#define KVM_DEV_IRQ_HOST_MSI (1 << 1)
1435#define KVM_DEV_IRQ_HOST_MSIX (1 << 2)
1436
1437#define KVM_DEV_IRQ_GUEST_INTX (1 << 8)
1438#define KVM_DEV_IRQ_GUEST_MSI (1 << 9)
1439#define KVM_DEV_IRQ_GUEST_MSIX (1 << 10)
1440
1441It is not valid to specify multiple types per host or guest IRQ. However, the
1442IRQ type of host and guest can differ or can even be null.
1443
Michael S. Tsirkin7f05db62014-10-12 11:34:00 +03001444Errors:
1445 ENOTTY: kernel does not support this ioctl
1446
1447 Other error conditions may be defined by individual device types or
1448 have their standard meanings.
1449
Jan Kiszka414fa982012-04-24 16:40:15 +02001450
Paolo Bonzinie80a4a92015-06-04 16:32:48 +020014514.51 KVM_DEASSIGN_DEV_IRQ (deprecated)
Jan Kiszka49f48172010-11-16 22:30:07 +01001452
1453Capability: KVM_CAP_ASSIGN_DEV_IRQ
Tiejun Chenc32a4272014-11-20 11:07:18 +01001454Architectures: x86
Jan Kiszka49f48172010-11-16 22:30:07 +01001455Type: vm ioctl
1456Parameters: struct kvm_assigned_irq (in)
1457Returns: 0 on success, -1 on error
1458
1459Ends an IRQ assignment to a passed-through device.
1460
1461See KVM_ASSIGN_DEV_IRQ for the data structure. The target device is specified
1462by assigned_dev_id, flags must correspond to the IRQ type specified on
1463KVM_ASSIGN_DEV_IRQ. Partial deassignment of host or guest IRQ is allowed.
1464
Jan Kiszka414fa982012-04-24 16:40:15 +02001465
Paul Bolle68ba6972011-02-15 00:05:59 +010014664.52 KVM_SET_GSI_ROUTING
Jan Kiszka49f48172010-11-16 22:30:07 +01001467
1468Capability: KVM_CAP_IRQ_ROUTING
Eric Auger180ae7b2016-07-22 16:20:41 +00001469Architectures: x86 s390 arm arm64
Jan Kiszka49f48172010-11-16 22:30:07 +01001470Type: vm ioctl
1471Parameters: struct kvm_irq_routing (in)
1472Returns: 0 on success, -1 on error
1473
1474Sets the GSI routing table entries, overwriting any previously set entries.
1475
Eric Auger180ae7b2016-07-22 16:20:41 +00001476On arm/arm64, GSI routing has the following limitation:
1477- GSI routing does not apply to KVM_IRQ_LINE but only to KVM_IRQFD.
1478
Jan Kiszka49f48172010-11-16 22:30:07 +01001479struct kvm_irq_routing {
1480 __u32 nr;
1481 __u32 flags;
1482 struct kvm_irq_routing_entry entries[0];
1483};
1484
1485No flags are specified so far, the corresponding field must be set to zero.
1486
1487struct kvm_irq_routing_entry {
1488 __u32 gsi;
1489 __u32 type;
1490 __u32 flags;
1491 __u32 pad;
1492 union {
1493 struct kvm_irq_routing_irqchip irqchip;
1494 struct kvm_irq_routing_msi msi;
Cornelia Huck84223592013-07-15 13:36:01 +02001495 struct kvm_irq_routing_s390_adapter adapter;
Andrey Smetanin5c9194122015-11-10 15:36:34 +03001496 struct kvm_irq_routing_hv_sint hv_sint;
Jan Kiszka49f48172010-11-16 22:30:07 +01001497 __u32 pad[8];
1498 } u;
1499};
1500
1501/* gsi routing entry types */
1502#define KVM_IRQ_ROUTING_IRQCHIP 1
1503#define KVM_IRQ_ROUTING_MSI 2
Cornelia Huck84223592013-07-15 13:36:01 +02001504#define KVM_IRQ_ROUTING_S390_ADAPTER 3
Andrey Smetanin5c9194122015-11-10 15:36:34 +03001505#define KVM_IRQ_ROUTING_HV_SINT 4
Jan Kiszka49f48172010-11-16 22:30:07 +01001506
Eric Auger76a10b82016-07-22 16:20:37 +00001507flags:
Paolo Bonzini6f49b2f2016-08-04 13:59:56 +02001508- KVM_MSI_VALID_DEVID: used along with KVM_IRQ_ROUTING_MSI routing entry
1509 type, specifies that the devid field contains a valid value. The per-VM
1510 KVM_CAP_MSI_DEVID capability advertises the requirement to provide
1511 the device ID. If this capability is not available, userspace should
1512 never set the KVM_MSI_VALID_DEVID flag as the ioctl might fail.
Eric Auger76a10b82016-07-22 16:20:37 +00001513- zero otherwise
Jan Kiszka49f48172010-11-16 22:30:07 +01001514
1515struct kvm_irq_routing_irqchip {
1516 __u32 irqchip;
1517 __u32 pin;
1518};
1519
1520struct kvm_irq_routing_msi {
1521 __u32 address_lo;
1522 __u32 address_hi;
1523 __u32 data;
Eric Auger76a10b82016-07-22 16:20:37 +00001524 union {
1525 __u32 pad;
1526 __u32 devid;
1527 };
Jan Kiszka49f48172010-11-16 22:30:07 +01001528};
1529
Paolo Bonzini6f49b2f2016-08-04 13:59:56 +02001530If KVM_MSI_VALID_DEVID is set, devid contains a unique device identifier
1531for the device that wrote the MSI message. For PCI, this is usually a
1532BFD identifier in the lower 16 bits.
Eric Auger76a10b82016-07-22 16:20:37 +00001533
Radim Krčmář371313132016-07-12 22:09:27 +02001534On x86, address_hi is ignored unless the KVM_X2APIC_API_USE_32BIT_IDS
1535feature of KVM_CAP_X2APIC_API capability is enabled. If it is enabled,
1536address_hi bits 31-8 provide bits 31-8 of the destination id. Bits 7-0 of
1537address_hi must be zero.
1538
Cornelia Huck84223592013-07-15 13:36:01 +02001539struct kvm_irq_routing_s390_adapter {
1540 __u64 ind_addr;
1541 __u64 summary_addr;
1542 __u64 ind_offset;
1543 __u32 summary_offset;
1544 __u32 adapter_id;
1545};
1546
Andrey Smetanin5c9194122015-11-10 15:36:34 +03001547struct kvm_irq_routing_hv_sint {
1548 __u32 vcpu;
1549 __u32 sint;
1550};
Jan Kiszka414fa982012-04-24 16:40:15 +02001551
Paolo Bonzinie80a4a92015-06-04 16:32:48 +020015524.53 KVM_ASSIGN_SET_MSIX_NR (deprecated)
Jan Kiszka49f48172010-11-16 22:30:07 +01001553
Michael S. Tsirkin7f05db62014-10-12 11:34:00 +03001554Capability: none
Tiejun Chenc32a4272014-11-20 11:07:18 +01001555Architectures: x86
Jan Kiszka49f48172010-11-16 22:30:07 +01001556Type: vm ioctl
1557Parameters: struct kvm_assigned_msix_nr (in)
1558Returns: 0 on success, -1 on error
1559
Jan Kiszka58f09642011-06-11 12:24:24 +02001560Set the number of MSI-X interrupts for an assigned device. The number is
1561reset again by terminating the MSI-X assignment of the device via
1562KVM_DEASSIGN_DEV_IRQ. Calling this service more than once at any earlier
1563point will fail.
Jan Kiszka49f48172010-11-16 22:30:07 +01001564
1565struct kvm_assigned_msix_nr {
1566 __u32 assigned_dev_id;
1567 __u16 entry_nr;
1568 __u16 padding;
1569};
1570
1571#define KVM_MAX_MSIX_PER_DEV 256
1572
Jan Kiszka414fa982012-04-24 16:40:15 +02001573
Paolo Bonzinie80a4a92015-06-04 16:32:48 +020015744.54 KVM_ASSIGN_SET_MSIX_ENTRY (deprecated)
Jan Kiszka49f48172010-11-16 22:30:07 +01001575
Michael S. Tsirkin7f05db62014-10-12 11:34:00 +03001576Capability: none
Tiejun Chenc32a4272014-11-20 11:07:18 +01001577Architectures: x86
Jan Kiszka49f48172010-11-16 22:30:07 +01001578Type: vm ioctl
1579Parameters: struct kvm_assigned_msix_entry (in)
1580Returns: 0 on success, -1 on error
1581
1582Specifies the routing of an MSI-X assigned device interrupt to a GSI. Setting
1583the GSI vector to zero means disabling the interrupt.
1584
1585struct kvm_assigned_msix_entry {
1586 __u32 assigned_dev_id;
1587 __u32 gsi;
1588 __u16 entry; /* The index of entry in the MSI-X table */
1589 __u16 padding[3];
1590};
1591
Michael S. Tsirkin7f05db62014-10-12 11:34:00 +03001592Errors:
1593 ENOTTY: kernel does not support this ioctl
1594
1595 Other error conditions may be defined by individual device types or
1596 have their standard meanings.
1597
Jan Kiszka414fa982012-04-24 16:40:15 +02001598
15994.55 KVM_SET_TSC_KHZ
Joerg Roedel92a1f122011-03-25 09:44:51 +01001600
1601Capability: KVM_CAP_TSC_CONTROL
1602Architectures: x86
1603Type: vcpu ioctl
1604Parameters: virtual tsc_khz
1605Returns: 0 on success, -1 on error
1606
1607Specifies the tsc frequency for the virtual machine. The unit of the
1608frequency is KHz.
1609
Jan Kiszka414fa982012-04-24 16:40:15 +02001610
16114.56 KVM_GET_TSC_KHZ
Joerg Roedel92a1f122011-03-25 09:44:51 +01001612
1613Capability: KVM_CAP_GET_TSC_KHZ
1614Architectures: x86
1615Type: vcpu ioctl
1616Parameters: none
1617Returns: virtual tsc-khz on success, negative value on error
1618
1619Returns the tsc frequency of the guest. The unit of the return value is
1620KHz. If the host has unstable tsc this ioctl returns -EIO instead as an
1621error.
1622
Jan Kiszka414fa982012-04-24 16:40:15 +02001623
16244.57 KVM_GET_LAPIC
Avi Kivitye7677932011-05-11 08:30:51 -04001625
1626Capability: KVM_CAP_IRQCHIP
1627Architectures: x86
1628Type: vcpu ioctl
1629Parameters: struct kvm_lapic_state (out)
1630Returns: 0 on success, -1 on error
1631
1632#define KVM_APIC_REG_SIZE 0x400
1633struct kvm_lapic_state {
1634 char regs[KVM_APIC_REG_SIZE];
1635};
1636
1637Reads the Local APIC registers and copies them into the input argument. The
1638data format and layout are the same as documented in the architecture manual.
1639
Radim Krčmář371313132016-07-12 22:09:27 +02001640If KVM_X2APIC_API_USE_32BIT_IDS feature of KVM_CAP_X2APIC_API is
1641enabled, then the format of APIC_ID register depends on the APIC mode
1642(reported by MSR_IA32_APICBASE) of its VCPU. x2APIC stores APIC ID in
1643the APIC_ID register (bytes 32-35). xAPIC only allows an 8-bit APIC ID
1644which is stored in bits 31-24 of the APIC register, or equivalently in
1645byte 35 of struct kvm_lapic_state's regs field. KVM_GET_LAPIC must then
1646be called after MSR_IA32_APICBASE has been set with KVM_SET_MSR.
1647
1648If KVM_X2APIC_API_USE_32BIT_IDS feature is disabled, struct kvm_lapic_state
1649always uses xAPIC format.
1650
Jan Kiszka414fa982012-04-24 16:40:15 +02001651
16524.58 KVM_SET_LAPIC
Avi Kivitye7677932011-05-11 08:30:51 -04001653
1654Capability: KVM_CAP_IRQCHIP
1655Architectures: x86
1656Type: vcpu ioctl
1657Parameters: struct kvm_lapic_state (in)
1658Returns: 0 on success, -1 on error
1659
1660#define KVM_APIC_REG_SIZE 0x400
1661struct kvm_lapic_state {
1662 char regs[KVM_APIC_REG_SIZE];
1663};
1664
Masanari Iidadf5cbb22014-03-21 10:04:30 +09001665Copies the input argument into the Local APIC registers. The data format
Avi Kivitye7677932011-05-11 08:30:51 -04001666and layout are the same as documented in the architecture manual.
1667
Radim Krčmář371313132016-07-12 22:09:27 +02001668The format of the APIC ID register (bytes 32-35 of struct kvm_lapic_state's
1669regs field) depends on the state of the KVM_CAP_X2APIC_API capability.
1670See the note in KVM_GET_LAPIC.
1671
Jan Kiszka414fa982012-04-24 16:40:15 +02001672
16734.59 KVM_IOEVENTFD
Sasha Levin55399a02011-05-28 14:12:30 +03001674
1675Capability: KVM_CAP_IOEVENTFD
1676Architectures: all
1677Type: vm ioctl
1678Parameters: struct kvm_ioeventfd (in)
1679Returns: 0 on success, !0 on error
1680
1681This ioctl attaches or detaches an ioeventfd to a legal pio/mmio address
1682within the guest. A guest write in the registered address will signal the
1683provided event instead of triggering an exit.
1684
1685struct kvm_ioeventfd {
1686 __u64 datamatch;
1687 __u64 addr; /* legal pio/mmio address */
Jason Wange9ea5062015-09-15 14:41:59 +08001688 __u32 len; /* 0, 1, 2, 4, or 8 bytes */
Sasha Levin55399a02011-05-28 14:12:30 +03001689 __s32 fd;
1690 __u32 flags;
1691 __u8 pad[36];
1692};
1693
Cornelia Huck2b834512013-02-28 12:33:20 +01001694For the special case of virtio-ccw devices on s390, the ioevent is matched
1695to a subchannel/virtqueue tuple instead.
1696
Sasha Levin55399a02011-05-28 14:12:30 +03001697The following flags are defined:
1698
1699#define KVM_IOEVENTFD_FLAG_DATAMATCH (1 << kvm_ioeventfd_flag_nr_datamatch)
1700#define KVM_IOEVENTFD_FLAG_PIO (1 << kvm_ioeventfd_flag_nr_pio)
1701#define KVM_IOEVENTFD_FLAG_DEASSIGN (1 << kvm_ioeventfd_flag_nr_deassign)
Cornelia Huck2b834512013-02-28 12:33:20 +01001702#define KVM_IOEVENTFD_FLAG_VIRTIO_CCW_NOTIFY \
1703 (1 << kvm_ioeventfd_flag_nr_virtio_ccw_notify)
Sasha Levin55399a02011-05-28 14:12:30 +03001704
1705If datamatch flag is set, the event will be signaled only if the written value
1706to the registered address is equal to datamatch in struct kvm_ioeventfd.
1707
Cornelia Huck2b834512013-02-28 12:33:20 +01001708For virtio-ccw devices, addr contains the subchannel id and datamatch the
1709virtqueue index.
1710
Jason Wange9ea5062015-09-15 14:41:59 +08001711With KVM_CAP_IOEVENTFD_ANY_LENGTH, a zero length ioeventfd is allowed, and
1712the kernel will ignore the length of guest write and may get a faster vmexit.
1713The speedup may only apply to specific architectures, but the ioeventfd will
1714work anyway.
Jan Kiszka414fa982012-04-24 16:40:15 +02001715
17164.60 KVM_DIRTY_TLB
Scott Wooddc83b8b2011-08-18 15:25:21 -05001717
1718Capability: KVM_CAP_SW_TLB
1719Architectures: ppc
1720Type: vcpu ioctl
1721Parameters: struct kvm_dirty_tlb (in)
1722Returns: 0 on success, -1 on error
1723
1724struct kvm_dirty_tlb {
1725 __u64 bitmap;
1726 __u32 num_dirty;
1727};
1728
1729This must be called whenever userspace has changed an entry in the shared
1730TLB, prior to calling KVM_RUN on the associated vcpu.
1731
1732The "bitmap" field is the userspace address of an array. This array
1733consists of a number of bits, equal to the total number of TLB entries as
1734determined by the last successful call to KVM_CONFIG_TLB, rounded up to the
1735nearest multiple of 64.
1736
1737Each bit corresponds to one TLB entry, ordered the same as in the shared TLB
1738array.
1739
1740The array is little-endian: the bit 0 is the least significant bit of the
1741first byte, bit 8 is the least significant bit of the second byte, etc.
1742This avoids any complications with differing word sizes.
1743
1744The "num_dirty" field is a performance hint for KVM to determine whether it
1745should skip processing the bitmap and just invalidate everything. It must
1746be set to the number of set bits in the bitmap.
1747
Jan Kiszka414fa982012-04-24 16:40:15 +02001748
Paolo Bonzinie80a4a92015-06-04 16:32:48 +020017494.61 KVM_ASSIGN_SET_INTX_MASK (deprecated)
Jan Kiszka07700a92012-02-28 14:19:54 +01001750
1751Capability: KVM_CAP_PCI_2_3
1752Architectures: x86
1753Type: vm ioctl
1754Parameters: struct kvm_assigned_pci_dev (in)
1755Returns: 0 on success, -1 on error
1756
1757Allows userspace to mask PCI INTx interrupts from the assigned device. The
1758kernel will not deliver INTx interrupts to the guest between setting and
1759clearing of KVM_ASSIGN_SET_INTX_MASK via this interface. This enables use of
1760and emulation of PCI 2.3 INTx disable command register behavior.
1761
1762This may be used for both PCI 2.3 devices supporting INTx disable natively and
1763older devices lacking this support. Userspace is responsible for emulating the
1764read value of the INTx disable bit in the guest visible PCI command register.
1765When modifying the INTx disable state, userspace should precede updating the
1766physical device command register by calling this ioctl to inform the kernel of
1767the new intended INTx mask state.
1768
1769Note that the kernel uses the device INTx disable bit to internally manage the
1770device interrupt state for PCI 2.3 devices. Reads of this register may
1771therefore not match the expected value. Writes should always use the guest
1772intended INTx disable value rather than attempting to read-copy-update the
1773current physical device state. Races between user and kernel updates to the
1774INTx disable bit are handled lazily in the kernel. It's possible the device
1775may generate unintended interrupts, but they will not be injected into the
1776guest.
1777
1778See KVM_ASSIGN_DEV_IRQ for the data structure. The target device is specified
1779by assigned_dev_id. In the flags field, only KVM_DEV_ASSIGN_MASK_INTX is
1780evaluated.
1781
Jan Kiszka414fa982012-04-24 16:40:15 +02001782
David Gibson54738c02011-06-29 00:22:41 +000017834.62 KVM_CREATE_SPAPR_TCE
1784
1785Capability: KVM_CAP_SPAPR_TCE
1786Architectures: powerpc
1787Type: vm ioctl
1788Parameters: struct kvm_create_spapr_tce (in)
1789Returns: file descriptor for manipulating the created TCE table
1790
1791This creates a virtual TCE (translation control entry) table, which
1792is an IOMMU for PAPR-style virtual I/O. It is used to translate
1793logical addresses used in virtual I/O into guest physical addresses,
1794and provides a scatter/gather capability for PAPR virtual I/O.
1795
1796/* for KVM_CAP_SPAPR_TCE */
1797struct kvm_create_spapr_tce {
1798 __u64 liobn;
1799 __u32 window_size;
1800};
1801
1802The liobn field gives the logical IO bus number for which to create a
1803TCE table. The window_size field specifies the size of the DMA window
1804which this TCE table will translate - the table will contain one 64
1805bit TCE entry for every 4kiB of the DMA window.
1806
1807When the guest issues an H_PUT_TCE hcall on a liobn for which a TCE
1808table has been created using this ioctl(), the kernel will handle it
1809in real mode, updating the TCE table. H_PUT_TCE calls for other
1810liobns will cause a vm exit and must be handled by userspace.
1811
1812The return value is a file descriptor which can be passed to mmap(2)
1813to map the created TCE table into userspace. This lets userspace read
1814the entries written by kernel-handled H_PUT_TCE calls, and also lets
1815userspace update the TCE table directly which is useful in some
1816circumstances.
1817
Jan Kiszka414fa982012-04-24 16:40:15 +02001818
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +000018194.63 KVM_ALLOCATE_RMA
1820
1821Capability: KVM_CAP_PPC_RMA
1822Architectures: powerpc
1823Type: vm ioctl
1824Parameters: struct kvm_allocate_rma (out)
1825Returns: file descriptor for mapping the allocated RMA
1826
1827This allocates a Real Mode Area (RMA) from the pool allocated at boot
1828time by the kernel. An RMA is a physically-contiguous, aligned region
1829of memory used on older POWER processors to provide the memory which
1830will be accessed by real-mode (MMU off) accesses in a KVM guest.
1831POWER processors support a set of sizes for the RMA that usually
1832includes 64MB, 128MB, 256MB and some larger powers of two.
1833
1834/* for KVM_ALLOCATE_RMA */
1835struct kvm_allocate_rma {
1836 __u64 rma_size;
1837};
1838
1839The return value is a file descriptor which can be passed to mmap(2)
1840to map the allocated RMA into userspace. The mapped area can then be
1841passed to the KVM_SET_USER_MEMORY_REGION ioctl to establish it as the
1842RMA for a virtual machine. The size of the RMA in bytes (which is
1843fixed at host kernel boot time) is returned in the rma_size field of
1844the argument structure.
1845
1846The KVM_CAP_PPC_RMA capability is 1 or 2 if the KVM_ALLOCATE_RMA ioctl
1847is supported; 2 if the processor requires all virtual machines to have
1848an RMA, or 1 if the processor can use an RMA but doesn't require it,
1849because it supports the Virtual RMA (VRMA) facility.
1850
Jan Kiszka414fa982012-04-24 16:40:15 +02001851
Avi Kivity3f745f12011-12-07 12:42:47 +020018524.64 KVM_NMI
1853
1854Capability: KVM_CAP_USER_NMI
1855Architectures: x86
1856Type: vcpu ioctl
1857Parameters: none
1858Returns: 0 on success, -1 on error
1859
1860Queues an NMI on the thread's vcpu. Note this is well defined only
1861when KVM_CREATE_IRQCHIP has not been called, since this is an interface
1862between the virtual cpu core and virtual local APIC. After KVM_CREATE_IRQCHIP
1863has been called, this interface is completely emulated within the kernel.
1864
1865To use this to emulate the LINT1 input with KVM_CREATE_IRQCHIP, use the
1866following algorithm:
1867
Masanari Iida5d4f6f32015-10-04 00:46:21 +09001868 - pause the vcpu
Avi Kivity3f745f12011-12-07 12:42:47 +02001869 - read the local APIC's state (KVM_GET_LAPIC)
1870 - check whether changing LINT1 will queue an NMI (see the LVT entry for LINT1)
1871 - if so, issue KVM_NMI
1872 - resume the vcpu
1873
1874Some guests configure the LINT1 NMI input to cause a panic, aiding in
1875debugging.
1876
Jan Kiszka414fa982012-04-24 16:40:15 +02001877
Alexander Grafe24ed812011-09-14 10:02:41 +020018784.65 KVM_S390_UCAS_MAP
Carsten Otte27e03932012-01-04 10:25:21 +01001879
1880Capability: KVM_CAP_S390_UCONTROL
1881Architectures: s390
1882Type: vcpu ioctl
1883Parameters: struct kvm_s390_ucas_mapping (in)
1884Returns: 0 in case of success
1885
1886The parameter is defined like this:
1887 struct kvm_s390_ucas_mapping {
1888 __u64 user_addr;
1889 __u64 vcpu_addr;
1890 __u64 length;
1891 };
1892
1893This ioctl maps the memory at "user_addr" with the length "length" to
1894the vcpu's address space starting at "vcpu_addr". All parameters need to
Anatol Pomozovf884ab12013-05-08 16:56:16 -07001895be aligned by 1 megabyte.
Carsten Otte27e03932012-01-04 10:25:21 +01001896
Jan Kiszka414fa982012-04-24 16:40:15 +02001897
Alexander Grafe24ed812011-09-14 10:02:41 +020018984.66 KVM_S390_UCAS_UNMAP
Carsten Otte27e03932012-01-04 10:25:21 +01001899
1900Capability: KVM_CAP_S390_UCONTROL
1901Architectures: s390
1902Type: vcpu ioctl
1903Parameters: struct kvm_s390_ucas_mapping (in)
1904Returns: 0 in case of success
1905
1906The parameter is defined like this:
1907 struct kvm_s390_ucas_mapping {
1908 __u64 user_addr;
1909 __u64 vcpu_addr;
1910 __u64 length;
1911 };
1912
1913This ioctl unmaps the memory in the vcpu's address space starting at
1914"vcpu_addr" with the length "length". The field "user_addr" is ignored.
Anatol Pomozovf884ab12013-05-08 16:56:16 -07001915All parameters need to be aligned by 1 megabyte.
Carsten Otte27e03932012-01-04 10:25:21 +01001916
Jan Kiszka414fa982012-04-24 16:40:15 +02001917
Alexander Grafe24ed812011-09-14 10:02:41 +020019184.67 KVM_S390_VCPU_FAULT
Carsten Otteccc79102012-01-04 10:25:26 +01001919
1920Capability: KVM_CAP_S390_UCONTROL
1921Architectures: s390
1922Type: vcpu ioctl
1923Parameters: vcpu absolute address (in)
1924Returns: 0 in case of success
1925
1926This call creates a page table entry on the virtual cpu's address space
1927(for user controlled virtual machines) or the virtual machine's address
1928space (for regular virtual machines). This only works for minor faults,
1929thus it's recommended to access subject memory page via the user page
1930table upfront. This is useful to handle validity intercepts for user
1931controlled virtual machines to fault in the virtual cpu's lowcore pages
1932prior to calling the KVM_RUN ioctl.
1933
Jan Kiszka414fa982012-04-24 16:40:15 +02001934
Alexander Grafe24ed812011-09-14 10:02:41 +020019354.68 KVM_SET_ONE_REG
1936
1937Capability: KVM_CAP_ONE_REG
1938Architectures: all
1939Type: vcpu ioctl
1940Parameters: struct kvm_one_reg (in)
1941Returns: 0 on success, negative value on failure
1942
1943struct kvm_one_reg {
1944 __u64 id;
1945 __u64 addr;
1946};
1947
1948Using this ioctl, a single vcpu register can be set to a specific value
1949defined by user space with the passed in struct kvm_one_reg, where id
1950refers to the register identifier as described below and addr is a pointer
1951to a variable with the respective size. There can be architecture agnostic
1952and architecture specific registers. Each have their own range of operation
1953and their own constants and width. To keep track of the implemented
1954registers, find a list below:
1955
James Hoganbf5590f2014-07-04 15:11:34 +01001956 Arch | Register | Width (bits)
1957 | |
1958 PPC | KVM_REG_PPC_HIOR | 64
1959 PPC | KVM_REG_PPC_IAC1 | 64
1960 PPC | KVM_REG_PPC_IAC2 | 64
1961 PPC | KVM_REG_PPC_IAC3 | 64
1962 PPC | KVM_REG_PPC_IAC4 | 64
1963 PPC | KVM_REG_PPC_DAC1 | 64
1964 PPC | KVM_REG_PPC_DAC2 | 64
1965 PPC | KVM_REG_PPC_DABR | 64
1966 PPC | KVM_REG_PPC_DSCR | 64
1967 PPC | KVM_REG_PPC_PURR | 64
1968 PPC | KVM_REG_PPC_SPURR | 64
1969 PPC | KVM_REG_PPC_DAR | 64
1970 PPC | KVM_REG_PPC_DSISR | 32
1971 PPC | KVM_REG_PPC_AMR | 64
1972 PPC | KVM_REG_PPC_UAMOR | 64
1973 PPC | KVM_REG_PPC_MMCR0 | 64
1974 PPC | KVM_REG_PPC_MMCR1 | 64
1975 PPC | KVM_REG_PPC_MMCRA | 64
1976 PPC | KVM_REG_PPC_MMCR2 | 64
1977 PPC | KVM_REG_PPC_MMCRS | 64
1978 PPC | KVM_REG_PPC_SIAR | 64
1979 PPC | KVM_REG_PPC_SDAR | 64
1980 PPC | KVM_REG_PPC_SIER | 64
1981 PPC | KVM_REG_PPC_PMC1 | 32
1982 PPC | KVM_REG_PPC_PMC2 | 32
1983 PPC | KVM_REG_PPC_PMC3 | 32
1984 PPC | KVM_REG_PPC_PMC4 | 32
1985 PPC | KVM_REG_PPC_PMC5 | 32
1986 PPC | KVM_REG_PPC_PMC6 | 32
1987 PPC | KVM_REG_PPC_PMC7 | 32
1988 PPC | KVM_REG_PPC_PMC8 | 32
1989 PPC | KVM_REG_PPC_FPR0 | 64
Paul Mackerrasa8bd19e2012-09-25 20:32:30 +00001990 ...
James Hoganbf5590f2014-07-04 15:11:34 +01001991 PPC | KVM_REG_PPC_FPR31 | 64
1992 PPC | KVM_REG_PPC_VR0 | 128
Paul Mackerrasa8bd19e2012-09-25 20:32:30 +00001993 ...
James Hoganbf5590f2014-07-04 15:11:34 +01001994 PPC | KVM_REG_PPC_VR31 | 128
1995 PPC | KVM_REG_PPC_VSR0 | 128
Paul Mackerrasa8bd19e2012-09-25 20:32:30 +00001996 ...
James Hoganbf5590f2014-07-04 15:11:34 +01001997 PPC | KVM_REG_PPC_VSR31 | 128
1998 PPC | KVM_REG_PPC_FPSCR | 64
1999 PPC | KVM_REG_PPC_VSCR | 32
2000 PPC | KVM_REG_PPC_VPA_ADDR | 64
2001 PPC | KVM_REG_PPC_VPA_SLB | 128
2002 PPC | KVM_REG_PPC_VPA_DTL | 128
2003 PPC | KVM_REG_PPC_EPCR | 32
2004 PPC | KVM_REG_PPC_EPR | 32
2005 PPC | KVM_REG_PPC_TCR | 32
2006 PPC | KVM_REG_PPC_TSR | 32
2007 PPC | KVM_REG_PPC_OR_TSR | 32
2008 PPC | KVM_REG_PPC_CLEAR_TSR | 32
2009 PPC | KVM_REG_PPC_MAS0 | 32
2010 PPC | KVM_REG_PPC_MAS1 | 32
2011 PPC | KVM_REG_PPC_MAS2 | 64
2012 PPC | KVM_REG_PPC_MAS7_3 | 64
2013 PPC | KVM_REG_PPC_MAS4 | 32
2014 PPC | KVM_REG_PPC_MAS6 | 32
2015 PPC | KVM_REG_PPC_MMUCFG | 32
2016 PPC | KVM_REG_PPC_TLB0CFG | 32
2017 PPC | KVM_REG_PPC_TLB1CFG | 32
2018 PPC | KVM_REG_PPC_TLB2CFG | 32
2019 PPC | KVM_REG_PPC_TLB3CFG | 32
2020 PPC | KVM_REG_PPC_TLB0PS | 32
2021 PPC | KVM_REG_PPC_TLB1PS | 32
2022 PPC | KVM_REG_PPC_TLB2PS | 32
2023 PPC | KVM_REG_PPC_TLB3PS | 32
2024 PPC | KVM_REG_PPC_EPTCFG | 32
2025 PPC | KVM_REG_PPC_ICP_STATE | 64
2026 PPC | KVM_REG_PPC_TB_OFFSET | 64
2027 PPC | KVM_REG_PPC_SPMC1 | 32
2028 PPC | KVM_REG_PPC_SPMC2 | 32
2029 PPC | KVM_REG_PPC_IAMR | 64
2030 PPC | KVM_REG_PPC_TFHAR | 64
2031 PPC | KVM_REG_PPC_TFIAR | 64
2032 PPC | KVM_REG_PPC_TEXASR | 64
2033 PPC | KVM_REG_PPC_FSCR | 64
2034 PPC | KVM_REG_PPC_PSPB | 32
2035 PPC | KVM_REG_PPC_EBBHR | 64
2036 PPC | KVM_REG_PPC_EBBRR | 64
2037 PPC | KVM_REG_PPC_BESCR | 64
2038 PPC | KVM_REG_PPC_TAR | 64
2039 PPC | KVM_REG_PPC_DPDES | 64
2040 PPC | KVM_REG_PPC_DAWR | 64
2041 PPC | KVM_REG_PPC_DAWRX | 64
2042 PPC | KVM_REG_PPC_CIABR | 64
2043 PPC | KVM_REG_PPC_IC | 64
2044 PPC | KVM_REG_PPC_VTB | 64
2045 PPC | KVM_REG_PPC_CSIGR | 64
2046 PPC | KVM_REG_PPC_TACR | 64
2047 PPC | KVM_REG_PPC_TCSCR | 64
2048 PPC | KVM_REG_PPC_PID | 64
2049 PPC | KVM_REG_PPC_ACOP | 64
2050 PPC | KVM_REG_PPC_VRSAVE | 32
Paolo Bonzinicc568ea2014-08-05 09:55:22 +02002051 PPC | KVM_REG_PPC_LPCR | 32
2052 PPC | KVM_REG_PPC_LPCR_64 | 64
James Hoganbf5590f2014-07-04 15:11:34 +01002053 PPC | KVM_REG_PPC_PPR | 64
2054 PPC | KVM_REG_PPC_ARCH_COMPAT | 32
2055 PPC | KVM_REG_PPC_DABRX | 32
2056 PPC | KVM_REG_PPC_WORT | 64
Bharat Bhushanbc8a4e52014-08-13 14:40:06 +05302057 PPC | KVM_REG_PPC_SPRG9 | 64
2058 PPC | KVM_REG_PPC_DBSR | 32
James Hoganbf5590f2014-07-04 15:11:34 +01002059 PPC | KVM_REG_PPC_TM_GPR0 | 64
Michael Neuling3b783472013-09-03 11:13:12 +10002060 ...
James Hoganbf5590f2014-07-04 15:11:34 +01002061 PPC | KVM_REG_PPC_TM_GPR31 | 64
2062 PPC | KVM_REG_PPC_TM_VSR0 | 128
Michael Neuling3b783472013-09-03 11:13:12 +10002063 ...
James Hoganbf5590f2014-07-04 15:11:34 +01002064 PPC | KVM_REG_PPC_TM_VSR63 | 128
2065 PPC | KVM_REG_PPC_TM_CR | 64
2066 PPC | KVM_REG_PPC_TM_LR | 64
2067 PPC | KVM_REG_PPC_TM_CTR | 64
2068 PPC | KVM_REG_PPC_TM_FPSCR | 64
2069 PPC | KVM_REG_PPC_TM_AMR | 64
2070 PPC | KVM_REG_PPC_TM_PPR | 64
2071 PPC | KVM_REG_PPC_TM_VRSAVE | 64
2072 PPC | KVM_REG_PPC_TM_VSCR | 32
2073 PPC | KVM_REG_PPC_TM_DSCR | 64
2074 PPC | KVM_REG_PPC_TM_TAR | 64
Paul Mackerras75b10532016-11-07 15:09:58 +11002075 PPC | KVM_REG_PPC_TM_XER | 64
James Hoganc2d2c212014-07-04 15:11:35 +01002076 | |
2077 MIPS | KVM_REG_MIPS_R0 | 64
2078 ...
2079 MIPS | KVM_REG_MIPS_R31 | 64
2080 MIPS | KVM_REG_MIPS_HI | 64
2081 MIPS | KVM_REG_MIPS_LO | 64
2082 MIPS | KVM_REG_MIPS_PC | 64
2083 MIPS | KVM_REG_MIPS_CP0_INDEX | 32
2084 MIPS | KVM_REG_MIPS_CP0_CONTEXT | 64
2085 MIPS | KVM_REG_MIPS_CP0_USERLOCAL | 64
2086 MIPS | KVM_REG_MIPS_CP0_PAGEMASK | 32
2087 MIPS | KVM_REG_MIPS_CP0_WIRED | 32
2088 MIPS | KVM_REG_MIPS_CP0_HWRENA | 32
2089 MIPS | KVM_REG_MIPS_CP0_BADVADDR | 64
2090 MIPS | KVM_REG_MIPS_CP0_COUNT | 32
2091 MIPS | KVM_REG_MIPS_CP0_ENTRYHI | 64
2092 MIPS | KVM_REG_MIPS_CP0_COMPARE | 32
2093 MIPS | KVM_REG_MIPS_CP0_STATUS | 32
2094 MIPS | KVM_REG_MIPS_CP0_CAUSE | 32
2095 MIPS | KVM_REG_MIPS_CP0_EPC | 64
James Hogan1068eaa2014-06-26 13:56:52 +01002096 MIPS | KVM_REG_MIPS_CP0_PRID | 32
James Hoganc2d2c212014-07-04 15:11:35 +01002097 MIPS | KVM_REG_MIPS_CP0_CONFIG | 32
2098 MIPS | KVM_REG_MIPS_CP0_CONFIG1 | 32
2099 MIPS | KVM_REG_MIPS_CP0_CONFIG2 | 32
2100 MIPS | KVM_REG_MIPS_CP0_CONFIG3 | 32
James Hoganc7716072014-06-26 15:11:29 +01002101 MIPS | KVM_REG_MIPS_CP0_CONFIG4 | 32
2102 MIPS | KVM_REG_MIPS_CP0_CONFIG5 | 32
James Hoganc2d2c212014-07-04 15:11:35 +01002103 MIPS | KVM_REG_MIPS_CP0_CONFIG7 | 32
2104 MIPS | KVM_REG_MIPS_CP0_ERROREPC | 64
James Hogan05108702016-06-15 19:29:56 +01002105 MIPS | KVM_REG_MIPS_CP0_KSCRATCH1 | 64
2106 MIPS | KVM_REG_MIPS_CP0_KSCRATCH2 | 64
2107 MIPS | KVM_REG_MIPS_CP0_KSCRATCH3 | 64
2108 MIPS | KVM_REG_MIPS_CP0_KSCRATCH4 | 64
2109 MIPS | KVM_REG_MIPS_CP0_KSCRATCH5 | 64
2110 MIPS | KVM_REG_MIPS_CP0_KSCRATCH6 | 64
James Hoganc2d2c212014-07-04 15:11:35 +01002111 MIPS | KVM_REG_MIPS_COUNT_CTL | 64
2112 MIPS | KVM_REG_MIPS_COUNT_RESUME | 64
2113 MIPS | KVM_REG_MIPS_COUNT_HZ | 64
James Hogan379245c2014-12-02 15:48:24 +00002114 MIPS | KVM_REG_MIPS_FPR_32(0..31) | 32
2115 MIPS | KVM_REG_MIPS_FPR_64(0..31) | 64
James Hoganab86bd62014-12-02 15:48:24 +00002116 MIPS | KVM_REG_MIPS_VEC_128(0..31) | 128
James Hogan379245c2014-12-02 15:48:24 +00002117 MIPS | KVM_REG_MIPS_FCR_IR | 32
2118 MIPS | KVM_REG_MIPS_FCR_CSR | 32
James Hoganab86bd62014-12-02 15:48:24 +00002119 MIPS | KVM_REG_MIPS_MSA_IR | 32
2120 MIPS | KVM_REG_MIPS_MSA_CSR | 32
Jan Kiszka414fa982012-04-24 16:40:15 +02002121
Christoffer Dall749cf76c2013-01-20 18:28:06 -05002122ARM registers are mapped using the lower 32 bits. The upper 16 of that
2123is the register group type, or coprocessor number:
2124
2125ARM core registers have the following id bit patterns:
Christoffer Dallaa404dd2013-04-22 18:57:46 -07002126 0x4020 0000 0010 <index into the kvm_regs struct:16>
Christoffer Dall749cf76c2013-01-20 18:28:06 -05002127
Christoffer Dall11382452013-01-20 18:28:10 -05002128ARM 32-bit CP15 registers have the following id bit patterns:
Christoffer Dallaa404dd2013-04-22 18:57:46 -07002129 0x4020 0000 000F <zero:1> <crn:4> <crm:4> <opc1:4> <opc2:3>
Christoffer Dall11382452013-01-20 18:28:10 -05002130
2131ARM 64-bit CP15 registers have the following id bit patterns:
Christoffer Dallaa404dd2013-04-22 18:57:46 -07002132 0x4030 0000 000F <zero:1> <zero:4> <crm:4> <opc1:4> <zero:3>
Christoffer Dall749cf76c2013-01-20 18:28:06 -05002133
Christoffer Dallc27581e2013-01-20 18:28:10 -05002134ARM CCSIDR registers are demultiplexed by CSSELR value:
Christoffer Dallaa404dd2013-04-22 18:57:46 -07002135 0x4020 0000 0011 00 <csselr:8>
Christoffer Dall749cf76c2013-01-20 18:28:06 -05002136
Rusty Russell4fe21e42013-01-20 18:28:11 -05002137ARM 32-bit VFP control registers have the following id bit patterns:
Christoffer Dallaa404dd2013-04-22 18:57:46 -07002138 0x4020 0000 0012 1 <regno:12>
Rusty Russell4fe21e42013-01-20 18:28:11 -05002139
2140ARM 64-bit FP registers have the following id bit patterns:
Christoffer Dallaa404dd2013-04-22 18:57:46 -07002141 0x4030 0000 0012 0 <regno:12>
Rusty Russell4fe21e42013-01-20 18:28:11 -05002142
Marc Zyngierb8beca42018-01-21 16:42:56 +00002143ARM firmware pseudo-registers have the following bit pattern:
2144 0x4030 0000 0014 <regno:16>
2145
Marc Zyngier379e04c2013-04-02 17:46:31 +01002146
2147arm64 registers are mapped using the lower 32 bits. The upper 16 of
2148that is the register group type, or coprocessor number:
2149
2150arm64 core/FP-SIMD registers have the following id bit patterns. Note
2151that the size of the access is variable, as the kvm_regs structure
2152contains elements ranging from 32 to 128 bits. The index is a 32bit
2153value in the kvm_regs structure seen as a 32bit array.
2154 0x60x0 0000 0010 <index into the kvm_regs struct:16>
2155
2156arm64 CCSIDR registers are demultiplexed by CSSELR value:
2157 0x6020 0000 0011 00 <csselr:8>
2158
2159arm64 system registers have the following id bit patterns:
2160 0x6030 0000 0013 <op0:2> <op1:3> <crn:4> <crm:4> <op2:3>
2161
Marc Zyngierb8beca42018-01-21 16:42:56 +00002162arm64 firmware pseudo-registers have the following bit pattern:
2163 0x6030 0000 0014 <regno:16>
2164
James Hoganc2d2c212014-07-04 15:11:35 +01002165
2166MIPS registers are mapped using the lower 32 bits. The upper 16 of that is
2167the register group type:
2168
2169MIPS core registers (see above) have the following id bit patterns:
2170 0x7030 0000 0000 <reg:16>
2171
2172MIPS CP0 registers (see KVM_REG_MIPS_CP0_* above) have the following id bit
2173patterns depending on whether they're 32-bit or 64-bit registers:
2174 0x7020 0000 0001 00 <reg:5> <sel:3> (32-bit)
2175 0x7030 0000 0001 00 <reg:5> <sel:3> (64-bit)
2176
2177MIPS KVM control registers (see above) have the following id bit patterns:
2178 0x7030 0000 0002 <reg:16>
2179
James Hogan379245c2014-12-02 15:48:24 +00002180MIPS FPU registers (see KVM_REG_MIPS_FPR_{32,64}() above) have the following
2181id bit patterns depending on the size of the register being accessed. They are
2182always accessed according to the current guest FPU mode (Status.FR and
2183Config5.FRE), i.e. as the guest would see them, and they become unpredictable
James Hoganab86bd62014-12-02 15:48:24 +00002184if the guest FPU mode is changed. MIPS SIMD Architecture (MSA) vector
2185registers (see KVM_REG_MIPS_VEC_128() above) have similar patterns as they
2186overlap the FPU registers:
James Hogan379245c2014-12-02 15:48:24 +00002187 0x7020 0000 0003 00 <0:3> <reg:5> (32-bit FPU registers)
2188 0x7030 0000 0003 00 <0:3> <reg:5> (64-bit FPU registers)
James Hoganab86bd62014-12-02 15:48:24 +00002189 0x7040 0000 0003 00 <0:3> <reg:5> (128-bit MSA vector registers)
James Hogan379245c2014-12-02 15:48:24 +00002190
2191MIPS FPU control registers (see KVM_REG_MIPS_FCR_{IR,CSR} above) have the
2192following id bit patterns:
2193 0x7020 0000 0003 01 <0:3> <reg:5>
2194
James Hoganab86bd62014-12-02 15:48:24 +00002195MIPS MSA control registers (see KVM_REG_MIPS_MSA_{IR,CSR} above) have the
2196following id bit patterns:
2197 0x7020 0000 0003 02 <0:3> <reg:5>
2198
James Hoganc2d2c212014-07-04 15:11:35 +01002199
Alexander Grafe24ed812011-09-14 10:02:41 +020022004.69 KVM_GET_ONE_REG
2201
2202Capability: KVM_CAP_ONE_REG
2203Architectures: all
2204Type: vcpu ioctl
2205Parameters: struct kvm_one_reg (in and out)
2206Returns: 0 on success, negative value on failure
2207
2208This ioctl allows to receive the value of a single register implemented
2209in a vcpu. The register to read is indicated by the "id" field of the
2210kvm_one_reg struct passed in. On success, the register value can be found
2211at the memory location pointed to by "addr".
2212
2213The list of registers accessible using this interface is identical to the
Bharat Bhushan2e232702012-08-15 17:37:13 +00002214list in 4.68.
Alexander Grafe24ed812011-09-14 10:02:41 +02002215
Jan Kiszka414fa982012-04-24 16:40:15 +02002216
Eric B Munson1c0b28c2012-03-10 14:37:27 -050022174.70 KVM_KVMCLOCK_CTRL
2218
2219Capability: KVM_CAP_KVMCLOCK_CTRL
2220Architectures: Any that implement pvclocks (currently x86 only)
2221Type: vcpu ioctl
2222Parameters: None
2223Returns: 0 on success, -1 on error
2224
2225This signals to the host kernel that the specified guest is being paused by
2226userspace. The host will set a flag in the pvclock structure that is checked
2227from the soft lockup watchdog. The flag is part of the pvclock structure that
2228is shared between guest and host, specifically the second bit of the flags
2229field of the pvclock_vcpu_time_info structure. It will be set exclusively by
2230the host and read/cleared exclusively by the guest. The guest operation of
2231checking and clearing the flag must an atomic operation so
2232load-link/store-conditional, or equivalent must be used. There are two cases
2233where the guest will clear the flag: when the soft lockup watchdog timer resets
2234itself or when a soft lockup is detected. This ioctl can be called any time
2235after pausing the vcpu, but before it is resumed.
2236
Jan Kiszka414fa982012-04-24 16:40:15 +02002237
Jan Kiszka07975ad2012-03-29 21:14:12 +020022384.71 KVM_SIGNAL_MSI
2239
2240Capability: KVM_CAP_SIGNAL_MSI
Andre Przywara0e4e82f2016-07-15 12:43:38 +01002241Architectures: x86 arm64
Jan Kiszka07975ad2012-03-29 21:14:12 +02002242Type: vm ioctl
2243Parameters: struct kvm_msi (in)
2244Returns: >0 on delivery, 0 if guest blocked the MSI, and -1 on error
2245
2246Directly inject a MSI message. Only valid with in-kernel irqchip that handles
2247MSI messages.
2248
2249struct kvm_msi {
2250 __u32 address_lo;
2251 __u32 address_hi;
2252 __u32 data;
2253 __u32 flags;
Andre Przywara2b8ddd92016-07-15 12:43:24 +01002254 __u32 devid;
2255 __u8 pad[12];
Jan Kiszka07975ad2012-03-29 21:14:12 +02002256};
2257
Paolo Bonzini6f49b2f2016-08-04 13:59:56 +02002258flags: KVM_MSI_VALID_DEVID: devid contains a valid value. The per-VM
2259 KVM_CAP_MSI_DEVID capability advertises the requirement to provide
2260 the device ID. If this capability is not available, userspace
2261 should never set the KVM_MSI_VALID_DEVID flag as the ioctl might fail.
Andre Przywara2b8ddd92016-07-15 12:43:24 +01002262
Paolo Bonzini6f49b2f2016-08-04 13:59:56 +02002263If KVM_MSI_VALID_DEVID is set, devid contains a unique device identifier
2264for the device that wrote the MSI message. For PCI, this is usually a
2265BFD identifier in the lower 16 bits.
Jan Kiszka07975ad2012-03-29 21:14:12 +02002266
Paolo Bonzini055b6ae2016-08-04 14:01:05 +02002267On x86, address_hi is ignored unless the KVM_X2APIC_API_USE_32BIT_IDS
2268feature of KVM_CAP_X2APIC_API capability is enabled. If it is enabled,
2269address_hi bits 31-8 provide bits 31-8 of the destination id. Bits 7-0 of
2270address_hi must be zero.
Radim Krčmář371313132016-07-12 22:09:27 +02002271
Jan Kiszka414fa982012-04-24 16:40:15 +02002272
Jan Kiszka0589ff62012-04-24 16:40:16 +020022734.71 KVM_CREATE_PIT2
2274
2275Capability: KVM_CAP_PIT2
2276Architectures: x86
2277Type: vm ioctl
2278Parameters: struct kvm_pit_config (in)
2279Returns: 0 on success, -1 on error
2280
2281Creates an in-kernel device model for the i8254 PIT. This call is only valid
2282after enabling in-kernel irqchip support via KVM_CREATE_IRQCHIP. The following
2283parameters have to be passed:
2284
2285struct kvm_pit_config {
2286 __u32 flags;
2287 __u32 pad[15];
2288};
2289
2290Valid flags are:
2291
2292#define KVM_PIT_SPEAKER_DUMMY 1 /* emulate speaker port stub */
2293
Jan Kiszkab6ddf052012-04-24 16:40:17 +02002294PIT timer interrupts may use a per-VM kernel thread for injection. If it
2295exists, this thread will have a name of the following pattern:
2296
2297kvm-pit/<owner-process-pid>
2298
2299When running a guest with elevated priorities, the scheduling parameters of
2300this thread may have to be adjusted accordingly.
2301
Jan Kiszka0589ff62012-04-24 16:40:16 +02002302This IOCTL replaces the obsolete KVM_CREATE_PIT.
2303
2304
23054.72 KVM_GET_PIT2
2306
2307Capability: KVM_CAP_PIT_STATE2
2308Architectures: x86
2309Type: vm ioctl
2310Parameters: struct kvm_pit_state2 (out)
2311Returns: 0 on success, -1 on error
2312
2313Retrieves the state of the in-kernel PIT model. Only valid after
2314KVM_CREATE_PIT2. The state is returned in the following structure:
2315
2316struct kvm_pit_state2 {
2317 struct kvm_pit_channel_state channels[3];
2318 __u32 flags;
2319 __u32 reserved[9];
2320};
2321
2322Valid flags are:
2323
2324/* disable PIT in HPET legacy mode */
2325#define KVM_PIT_FLAGS_HPET_LEGACY 0x00000001
2326
2327This IOCTL replaces the obsolete KVM_GET_PIT.
2328
2329
23304.73 KVM_SET_PIT2
2331
2332Capability: KVM_CAP_PIT_STATE2
2333Architectures: x86
2334Type: vm ioctl
2335Parameters: struct kvm_pit_state2 (in)
2336Returns: 0 on success, -1 on error
2337
2338Sets the state of the in-kernel PIT model. Only valid after KVM_CREATE_PIT2.
2339See KVM_GET_PIT2 for details on struct kvm_pit_state2.
2340
2341This IOCTL replaces the obsolete KVM_SET_PIT.
2342
2343
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +000023444.74 KVM_PPC_GET_SMMU_INFO
2345
2346Capability: KVM_CAP_PPC_GET_SMMU_INFO
2347Architectures: powerpc
2348Type: vm ioctl
2349Parameters: None
2350Returns: 0 on success, -1 on error
2351
2352This populates and returns a structure describing the features of
2353the "Server" class MMU emulation supported by KVM.
Stefan Hubercc22c352013-06-05 12:24:37 +02002354This can in turn be used by userspace to generate the appropriate
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00002355device-tree properties for the guest operating system.
2356
Carlos Garciac98be0c2014-04-04 22:31:00 -04002357The structure contains some global information, followed by an
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00002358array of supported segment page sizes:
2359
2360 struct kvm_ppc_smmu_info {
2361 __u64 flags;
2362 __u32 slb_size;
2363 __u32 pad;
2364 struct kvm_ppc_one_seg_page_size sps[KVM_PPC_PAGE_SIZES_MAX_SZ];
2365 };
2366
2367The supported flags are:
2368
2369 - KVM_PPC_PAGE_SIZES_REAL:
2370 When that flag is set, guest page sizes must "fit" the backing
2371 store page sizes. When not set, any page size in the list can
2372 be used regardless of how they are backed by userspace.
2373
2374 - KVM_PPC_1T_SEGMENTS
2375 The emulated MMU supports 1T segments in addition to the
2376 standard 256M ones.
2377
2378The "slb_size" field indicates how many SLB entries are supported
2379
2380The "sps" array contains 8 entries indicating the supported base
2381page sizes for a segment in increasing order. Each entry is defined
2382as follow:
2383
2384 struct kvm_ppc_one_seg_page_size {
2385 __u32 page_shift; /* Base page shift of segment (or 0) */
2386 __u32 slb_enc; /* SLB encoding for BookS */
2387 struct kvm_ppc_one_page_size enc[KVM_PPC_PAGE_SIZES_MAX_SZ];
2388 };
2389
2390An entry with a "page_shift" of 0 is unused. Because the array is
2391organized in increasing order, a lookup can stop when encoutering
2392such an entry.
2393
2394The "slb_enc" field provides the encoding to use in the SLB for the
2395page size. The bits are in positions such as the value can directly
2396be OR'ed into the "vsid" argument of the slbmte instruction.
2397
2398The "enc" array is a list which for each of those segment base page
2399size provides the list of supported actual page sizes (which can be
2400only larger or equal to the base page size), along with the
Anatol Pomozovf884ab12013-05-08 16:56:16 -07002401corresponding encoding in the hash PTE. Similarly, the array is
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +000024028 entries sorted by increasing sizes and an entry with a "0" shift
2403is an empty entry and a terminator:
2404
2405 struct kvm_ppc_one_page_size {
2406 __u32 page_shift; /* Page shift (or 0) */
2407 __u32 pte_enc; /* Encoding in the HPTE (>>12) */
2408 };
2409
2410The "pte_enc" field provides a value that can OR'ed into the hash
2411PTE's RPN field (ie, it needs to be shifted left by 12 to OR it
2412into the hash PTE second double word).
2413
Alex Williamsonf36992e2012-06-29 09:56:16 -060024144.75 KVM_IRQFD
2415
2416Capability: KVM_CAP_IRQFD
Eric Auger174178f2015-03-04 11:14:36 +01002417Architectures: x86 s390 arm arm64
Alex Williamsonf36992e2012-06-29 09:56:16 -06002418Type: vm ioctl
2419Parameters: struct kvm_irqfd (in)
2420Returns: 0 on success, -1 on error
2421
2422Allows setting an eventfd to directly trigger a guest interrupt.
2423kvm_irqfd.fd specifies the file descriptor to use as the eventfd and
2424kvm_irqfd.gsi specifies the irqchip pin toggled by this event. When
Masanari Iida17180032013-12-22 01:21:23 +09002425an event is triggered on the eventfd, an interrupt is injected into
Alex Williamsonf36992e2012-06-29 09:56:16 -06002426the guest using the specified gsi pin. The irqfd is removed using
2427the KVM_IRQFD_FLAG_DEASSIGN flag, specifying both kvm_irqfd.fd
2428and kvm_irqfd.gsi.
2429
Alex Williamson7a844282012-09-21 11:58:03 -06002430With KVM_CAP_IRQFD_RESAMPLE, KVM_IRQFD supports a de-assert and notify
2431mechanism allowing emulation of level-triggered, irqfd-based
2432interrupts. When KVM_IRQFD_FLAG_RESAMPLE is set the user must pass an
2433additional eventfd in the kvm_irqfd.resamplefd field. When operating
2434in resample mode, posting of an interrupt through kvm_irq.fd asserts
2435the specified gsi in the irqchip. When the irqchip is resampled, such
Masanari Iida17180032013-12-22 01:21:23 +09002436as from an EOI, the gsi is de-asserted and the user is notified via
Alex Williamson7a844282012-09-21 11:58:03 -06002437kvm_irqfd.resamplefd. It is the user's responsibility to re-queue
2438the interrupt if the device making use of it still requires service.
2439Note that closing the resamplefd is not sufficient to disable the
2440irqfd. The KVM_IRQFD_FLAG_RESAMPLE is only necessary on assignment
2441and need not be specified with KVM_IRQFD_FLAG_DEASSIGN.
2442
Eric Auger180ae7b2016-07-22 16:20:41 +00002443On arm/arm64, gsi routing being supported, the following can happen:
2444- in case no routing entry is associated to this gsi, injection fails
2445- in case the gsi is associated to an irqchip routing entry,
2446 irqchip.pin + 32 corresponds to the injected SPI ID.
Eric Auger995a0ee2016-07-22 16:20:42 +00002447- in case the gsi is associated to an MSI routing entry, the MSI
2448 message and device ID are translated into an LPI (support restricted
2449 to GICv3 ITS in-kernel emulation).
Eric Auger174178f2015-03-04 11:14:36 +01002450
Linus Torvalds5fecc9d2012-07-24 12:01:20 -070024514.76 KVM_PPC_ALLOCATE_HTAB
Paul Mackerras32fad282012-05-04 02:32:53 +00002452
2453Capability: KVM_CAP_PPC_ALLOC_HTAB
2454Architectures: powerpc
2455Type: vm ioctl
2456Parameters: Pointer to u32 containing hash table order (in/out)
2457Returns: 0 on success, -1 on error
2458
2459This requests the host kernel to allocate an MMU hash table for a
2460guest using the PAPR paravirtualization interface. This only does
2461anything if the kernel is configured to use the Book 3S HV style of
2462virtualization. Otherwise the capability doesn't exist and the ioctl
2463returns an ENOTTY error. The rest of this description assumes Book 3S
2464HV.
2465
2466There must be no vcpus running when this ioctl is called; if there
2467are, it will do nothing and return an EBUSY error.
2468
2469The parameter is a pointer to a 32-bit unsigned integer variable
2470containing the order (log base 2) of the desired size of the hash
2471table, which must be between 18 and 46. On successful return from the
2472ioctl, it will have been updated with the order of the hash table that
2473was allocated.
2474
2475If no hash table has been allocated when any vcpu is asked to run
2476(with the KVM_RUN ioctl), the host kernel will allocate a
2477default-sized hash table (16 MB).
2478
2479If this ioctl is called when a hash table has already been allocated,
2480the kernel will clear out the existing hash table (zero all HPTEs) and
2481return the hash table order in the parameter. (If the guest is using
2482the virtualized real-mode area (VRMA) facility, the kernel will
2483re-create the VMRA HPTEs on the next KVM_RUN of any vcpu.)
2484
Cornelia Huck416ad652012-10-02 16:25:37 +020024854.77 KVM_S390_INTERRUPT
2486
2487Capability: basic
2488Architectures: s390
2489Type: vm ioctl, vcpu ioctl
2490Parameters: struct kvm_s390_interrupt (in)
2491Returns: 0 on success, -1 on error
2492
2493Allows to inject an interrupt to the guest. Interrupts can be floating
2494(vm ioctl) or per cpu (vcpu ioctl), depending on the interrupt type.
2495
2496Interrupt parameters are passed via kvm_s390_interrupt:
2497
2498struct kvm_s390_interrupt {
2499 __u32 type;
2500 __u32 parm;
2501 __u64 parm64;
2502};
2503
2504type can be one of the following:
2505
David Hildenbrand28225452014-10-15 16:48:16 +02002506KVM_S390_SIGP_STOP (vcpu) - sigp stop; optional flags in parm
Cornelia Huck416ad652012-10-02 16:25:37 +02002507KVM_S390_PROGRAM_INT (vcpu) - program check; code in parm
2508KVM_S390_SIGP_SET_PREFIX (vcpu) - sigp set prefix; prefix address in parm
2509KVM_S390_RESTART (vcpu) - restart
Thomas Huthe029ae52014-03-26 16:11:54 +01002510KVM_S390_INT_CLOCK_COMP (vcpu) - clock comparator interrupt
2511KVM_S390_INT_CPU_TIMER (vcpu) - CPU timer interrupt
Cornelia Huck416ad652012-10-02 16:25:37 +02002512KVM_S390_INT_VIRTIO (vm) - virtio external interrupt; external interrupt
2513 parameters in parm and parm64
2514KVM_S390_INT_SERVICE (vm) - sclp external interrupt; sclp parameter in parm
2515KVM_S390_INT_EMERGENCY (vcpu) - sigp emergency; source cpu in parm
2516KVM_S390_INT_EXTERNAL_CALL (vcpu) - sigp external call; source cpu in parm
Cornelia Huckd8346b72012-12-20 15:32:08 +01002517KVM_S390_INT_IO(ai,cssid,ssid,schid) (vm) - compound value to indicate an
2518 I/O interrupt (ai - adapter interrupt; cssid,ssid,schid - subchannel);
2519 I/O interruption parameters in parm (subchannel) and parm64 (intparm,
2520 interruption subclass)
Cornelia Huck48a3e952012-12-20 15:32:09 +01002521KVM_S390_MCHK (vm, vcpu) - machine check interrupt; cr 14 bits in parm,
2522 machine check interrupt code in parm64 (note that
2523 machine checks needing further payload are not
2524 supported by this ioctl)
Cornelia Huck416ad652012-10-02 16:25:37 +02002525
2526Note that the vcpu ioctl is asynchronous to vcpu execution.
2527
Paul Mackerrasa2932922012-11-19 22:57:20 +000025284.78 KVM_PPC_GET_HTAB_FD
2529
2530Capability: KVM_CAP_PPC_HTAB_FD
2531Architectures: powerpc
2532Type: vm ioctl
2533Parameters: Pointer to struct kvm_get_htab_fd (in)
2534Returns: file descriptor number (>= 0) on success, -1 on error
2535
2536This returns a file descriptor that can be used either to read out the
2537entries in the guest's hashed page table (HPT), or to write entries to
2538initialize the HPT. The returned fd can only be written to if the
2539KVM_GET_HTAB_WRITE bit is set in the flags field of the argument, and
2540can only be read if that bit is clear. The argument struct looks like
2541this:
2542
2543/* For KVM_PPC_GET_HTAB_FD */
2544struct kvm_get_htab_fd {
2545 __u64 flags;
2546 __u64 start_index;
2547 __u64 reserved[2];
2548};
2549
2550/* Values for kvm_get_htab_fd.flags */
2551#define KVM_GET_HTAB_BOLTED_ONLY ((__u64)0x1)
2552#define KVM_GET_HTAB_WRITE ((__u64)0x2)
2553
2554The `start_index' field gives the index in the HPT of the entry at
2555which to start reading. It is ignored when writing.
2556
2557Reads on the fd will initially supply information about all
2558"interesting" HPT entries. Interesting entries are those with the
2559bolted bit set, if the KVM_GET_HTAB_BOLTED_ONLY bit is set, otherwise
2560all entries. When the end of the HPT is reached, the read() will
2561return. If read() is called again on the fd, it will start again from
2562the beginning of the HPT, but will only return HPT entries that have
2563changed since they were last read.
2564
2565Data read or written is structured as a header (8 bytes) followed by a
2566series of valid HPT entries (16 bytes) each. The header indicates how
2567many valid HPT entries there are and how many invalid entries follow
2568the valid entries. The invalid entries are not represented explicitly
2569in the stream. The header format is:
2570
2571struct kvm_get_htab_header {
2572 __u32 index;
2573 __u16 n_valid;
2574 __u16 n_invalid;
2575};
2576
2577Writes to the fd create HPT entries starting at the index given in the
2578header; first `n_valid' valid entries with contents from the data
2579written, then `n_invalid' invalid entries, invalidating any previously
2580valid entries found.
2581
Scott Wood852b6d52013-04-12 14:08:42 +000025824.79 KVM_CREATE_DEVICE
2583
2584Capability: KVM_CAP_DEVICE_CTRL
2585Type: vm ioctl
2586Parameters: struct kvm_create_device (in/out)
2587Returns: 0 on success, -1 on error
2588Errors:
2589 ENODEV: The device type is unknown or unsupported
2590 EEXIST: Device already created, and this type of device may not
2591 be instantiated multiple times
2592
2593 Other error conditions may be defined by individual device types or
2594 have their standard meanings.
2595
2596Creates an emulated device in the kernel. The file descriptor returned
2597in fd can be used with KVM_SET/GET/HAS_DEVICE_ATTR.
2598
2599If the KVM_CREATE_DEVICE_TEST flag is set, only test whether the
2600device type is supported (not necessarily whether it can be created
2601in the current vm).
2602
2603Individual devices should not define flags. Attributes should be used
2604for specifying any behavior that is not implied by the device type
2605number.
2606
2607struct kvm_create_device {
2608 __u32 type; /* in: KVM_DEV_TYPE_xxx */
2609 __u32 fd; /* out: device handle */
2610 __u32 flags; /* in: KVM_CREATE_DEVICE_xxx */
2611};
2612
26134.80 KVM_SET_DEVICE_ATTR/KVM_GET_DEVICE_ATTR
2614
Shannon Zhaof577f6c2016-01-11 20:56:17 +08002615Capability: KVM_CAP_DEVICE_CTRL, KVM_CAP_VM_ATTRIBUTES for vm device,
2616 KVM_CAP_VCPU_ATTRIBUTES for vcpu device
2617Type: device ioctl, vm ioctl, vcpu ioctl
Scott Wood852b6d52013-04-12 14:08:42 +00002618Parameters: struct kvm_device_attr
2619Returns: 0 on success, -1 on error
2620Errors:
2621 ENXIO: The group or attribute is unknown/unsupported for this device
David Hildenbrandf9cbd9b2016-03-03 09:48:47 +01002622 or hardware support is missing.
Scott Wood852b6d52013-04-12 14:08:42 +00002623 EPERM: The attribute cannot (currently) be accessed this way
2624 (e.g. read-only attribute, or attribute that only makes
2625 sense when the device is in a different state)
2626
2627 Other error conditions may be defined by individual device types.
2628
2629Gets/sets a specified piece of device configuration and/or state. The
2630semantics are device-specific. See individual device documentation in
2631the "devices" directory. As with ONE_REG, the size of the data
2632transferred is defined by the particular attribute.
2633
2634struct kvm_device_attr {
2635 __u32 flags; /* no flags currently defined */
2636 __u32 group; /* device-defined */
2637 __u64 attr; /* group-defined */
2638 __u64 addr; /* userspace address of attr data */
2639};
2640
26414.81 KVM_HAS_DEVICE_ATTR
2642
Shannon Zhaof577f6c2016-01-11 20:56:17 +08002643Capability: KVM_CAP_DEVICE_CTRL, KVM_CAP_VM_ATTRIBUTES for vm device,
2644 KVM_CAP_VCPU_ATTRIBUTES for vcpu device
2645Type: device ioctl, vm ioctl, vcpu ioctl
Scott Wood852b6d52013-04-12 14:08:42 +00002646Parameters: struct kvm_device_attr
2647Returns: 0 on success, -1 on error
2648Errors:
2649 ENXIO: The group or attribute is unknown/unsupported for this device
David Hildenbrandf9cbd9b2016-03-03 09:48:47 +01002650 or hardware support is missing.
Scott Wood852b6d52013-04-12 14:08:42 +00002651
2652Tests whether a device supports a particular attribute. A successful
2653return indicates the attribute is implemented. It does not necessarily
2654indicate that the attribute can be read or written in the device's
2655current state. "addr" is ignored.
Alex Williamsonf36992e2012-06-29 09:56:16 -06002656
Alexey Kardashevskiyd8968f12013-06-19 11:42:07 +100026574.82 KVM_ARM_VCPU_INIT
Christoffer Dall749cf76c2013-01-20 18:28:06 -05002658
2659Capability: basic
Marc Zyngier379e04c2013-04-02 17:46:31 +01002660Architectures: arm, arm64
Christoffer Dall749cf76c2013-01-20 18:28:06 -05002661Type: vcpu ioctl
Anup Patelbeb11fc2013-12-12 21:42:24 +05302662Parameters: struct kvm_vcpu_init (in)
Christoffer Dall749cf76c2013-01-20 18:28:06 -05002663Returns: 0 on success; -1 on error
2664Errors:
2665  EINVAL:    the target is unknown, or the combination of features is invalid.
2666  ENOENT:    a features bit specified is unknown.
2667
2668This tells KVM what type of CPU to present to the guest, and what
2669optional features it should have.  This will cause a reset of the cpu
2670registers to their initial values.  If this is not called, KVM_RUN will
2671return ENOEXEC for that vcpu.
2672
2673Note that because some registers reflect machine topology, all vcpus
2674should be created before this ioctl is invoked.
2675
Christoffer Dallf7fa034d2014-10-16 16:40:53 +02002676Userspace can call this function multiple times for a given vcpu, including
2677after the vcpu has been run. This will reset the vcpu to its initial
2678state. All calls to this function after the initial call must use the same
2679target and same set of feature flags, otherwise EINVAL will be returned.
2680
Marc Zyngieraa024c2f2013-01-20 18:28:13 -05002681Possible features:
2682 - KVM_ARM_VCPU_POWER_OFF: Starts the CPU in a power-off state.
Christoffer Dall3ad8b3d2014-10-16 16:14:43 +02002683 Depends on KVM_CAP_ARM_PSCI. If not set, the CPU will be powered on
2684 and execute guest code when KVM_RUN is called.
Marc Zyngier379e04c2013-04-02 17:46:31 +01002685 - KVM_ARM_VCPU_EL1_32BIT: Starts the CPU in a 32bit mode.
2686 Depends on KVM_CAP_ARM_EL1_32BIT (arm64 only).
Marc Zyngierb8beca42018-01-21 16:42:56 +00002687 - KVM_ARM_VCPU_PSCI_0_2: Emulate PSCI v0.2 (or a future revision
2688 backward compatible with v0.2) for the CPU.
Anup Patel50bb0c92014-04-29 11:24:17 +05302689 Depends on KVM_CAP_ARM_PSCI_0_2.
Shannon Zhao808e7382016-01-11 22:46:15 +08002690 - KVM_ARM_VCPU_PMU_V3: Emulate PMUv3 for the CPU.
2691 Depends on KVM_CAP_ARM_PMU_V3.
Marc Zyngieraa024c2f2013-01-20 18:28:13 -05002692
Christoffer Dall749cf76c2013-01-20 18:28:06 -05002693
Anup Patel740edfc2013-09-30 14:20:08 +053026944.83 KVM_ARM_PREFERRED_TARGET
2695
2696Capability: basic
2697Architectures: arm, arm64
2698Type: vm ioctl
2699Parameters: struct struct kvm_vcpu_init (out)
2700Returns: 0 on success; -1 on error
2701Errors:
Christoffer Dalla7265fb2013-10-15 17:43:00 -07002702 ENODEV: no preferred target available for the host
Anup Patel740edfc2013-09-30 14:20:08 +05302703
2704This queries KVM for preferred CPU target type which can be emulated
2705by KVM on underlying host.
2706
2707The ioctl returns struct kvm_vcpu_init instance containing information
2708about preferred CPU target type and recommended features for it. The
2709kvm_vcpu_init->features bitmap returned will have feature bits set if
2710the preferred target recommends setting these features, but this is
2711not mandatory.
2712
2713The information returned by this ioctl can be used to prepare an instance
2714of struct kvm_vcpu_init for KVM_ARM_VCPU_INIT ioctl which will result in
2715in VCPU matching underlying host.
2716
2717
27184.84 KVM_GET_REG_LIST
Christoffer Dall749cf76c2013-01-20 18:28:06 -05002719
2720Capability: basic
James Hoganc2d2c212014-07-04 15:11:35 +01002721Architectures: arm, arm64, mips
Christoffer Dall749cf76c2013-01-20 18:28:06 -05002722Type: vcpu ioctl
2723Parameters: struct kvm_reg_list (in/out)
2724Returns: 0 on success; -1 on error
2725Errors:
2726  E2BIG:     the reg index list is too big to fit in the array specified by
2727             the user (the number required will be written into n).
2728
2729struct kvm_reg_list {
2730 __u64 n; /* number of registers in reg[] */
2731 __u64 reg[0];
2732};
2733
2734This ioctl returns the guest registers that are supported for the
2735KVM_GET_ONE_REG/KVM_SET_ONE_REG calls.
2736
Christoffer Dallce01e4e2013-09-23 14:55:56 -07002737
27384.85 KVM_ARM_SET_DEVICE_ADDR (deprecated)
Christoffer Dall3401d5462013-01-23 13:18:04 -05002739
2740Capability: KVM_CAP_ARM_SET_DEVICE_ADDR
Marc Zyngier379e04c2013-04-02 17:46:31 +01002741Architectures: arm, arm64
Christoffer Dall3401d5462013-01-23 13:18:04 -05002742Type: vm ioctl
2743Parameters: struct kvm_arm_device_address (in)
2744Returns: 0 on success, -1 on error
2745Errors:
2746 ENODEV: The device id is unknown
2747 ENXIO: Device not supported on current system
2748 EEXIST: Address already set
2749 E2BIG: Address outside guest physical address space
Christoffer Dall330690c2013-01-21 19:36:13 -05002750 EBUSY: Address overlaps with other device range
Christoffer Dall3401d5462013-01-23 13:18:04 -05002751
2752struct kvm_arm_device_addr {
2753 __u64 id;
2754 __u64 addr;
2755};
2756
2757Specify a device address in the guest's physical address space where guests
2758can access emulated or directly exposed devices, which the host kernel needs
2759to know about. The id field is an architecture specific identifier for a
2760specific device.
2761
Marc Zyngier379e04c2013-04-02 17:46:31 +01002762ARM/arm64 divides the id field into two parts, a device id and an
2763address type id specific to the individual device.
Christoffer Dall3401d5462013-01-23 13:18:04 -05002764
2765  bits: | 63 ... 32 | 31 ... 16 | 15 ... 0 |
2766 field: | 0x00000000 | device id | addr type id |
2767
Marc Zyngier379e04c2013-04-02 17:46:31 +01002768ARM/arm64 currently only require this when using the in-kernel GIC
2769support for the hardware VGIC features, using KVM_ARM_DEVICE_VGIC_V2
2770as the device id. When setting the base address for the guest's
2771mapping of the VGIC virtual CPU and distributor interface, the ioctl
2772must be called after calling KVM_CREATE_IRQCHIP, but before calling
2773KVM_RUN on any of the VCPUs. Calling this ioctl twice for any of the
2774base addresses will return -EEXIST.
Christoffer Dall3401d5462013-01-23 13:18:04 -05002775
Christoffer Dallce01e4e2013-09-23 14:55:56 -07002776Note, this IOCTL is deprecated and the more flexible SET/GET_DEVICE_ATTR API
2777should be used instead.
2778
2779
Anup Patel740edfc2013-09-30 14:20:08 +053027804.86 KVM_PPC_RTAS_DEFINE_TOKEN
Michael Ellerman8e591cb2013-04-17 20:30:00 +00002781
2782Capability: KVM_CAP_PPC_RTAS
2783Architectures: ppc
2784Type: vm ioctl
2785Parameters: struct kvm_rtas_token_args
2786Returns: 0 on success, -1 on error
2787
2788Defines a token value for a RTAS (Run Time Abstraction Services)
2789service in order to allow it to be handled in the kernel. The
2790argument struct gives the name of the service, which must be the name
2791of a service that has a kernel-side implementation. If the token
2792value is non-zero, it will be associated with that service, and
2793subsequent RTAS calls by the guest specifying that token will be
2794handled by the kernel. If the token value is 0, then any token
2795associated with the service will be forgotten, and subsequent RTAS
2796calls by the guest for that service will be passed to userspace to be
2797handled.
2798
Alex Bennée4bd9d342014-09-09 17:27:18 +010027994.87 KVM_SET_GUEST_DEBUG
2800
2801Capability: KVM_CAP_SET_GUEST_DEBUG
Alex Bennée0e6f07f2015-07-07 17:29:55 +01002802Architectures: x86, s390, ppc, arm64
Alex Bennée4bd9d342014-09-09 17:27:18 +01002803Type: vcpu ioctl
2804Parameters: struct kvm_guest_debug (in)
2805Returns: 0 on success; -1 on error
2806
2807struct kvm_guest_debug {
2808 __u32 control;
2809 __u32 pad;
2810 struct kvm_guest_debug_arch arch;
2811};
2812
2813Set up the processor specific debug registers and configure vcpu for
2814handling guest debug events. There are two parts to the structure, the
2815first a control bitfield indicates the type of debug events to handle
2816when running. Common control bits are:
2817
2818 - KVM_GUESTDBG_ENABLE: guest debugging is enabled
2819 - KVM_GUESTDBG_SINGLESTEP: the next run should single-step
2820
2821The top 16 bits of the control field are architecture specific control
2822flags which can include the following:
2823
Alex Bennée4bd611c2015-07-07 17:29:57 +01002824 - KVM_GUESTDBG_USE_SW_BP: using software breakpoints [x86, arm64]
Alex Bennée834bf882015-07-07 17:30:02 +01002825 - KVM_GUESTDBG_USE_HW_BP: using hardware breakpoints [x86, s390, arm64]
Alex Bennée4bd9d342014-09-09 17:27:18 +01002826 - KVM_GUESTDBG_INJECT_DB: inject DB type exception [x86]
2827 - KVM_GUESTDBG_INJECT_BP: inject BP type exception [x86]
2828 - KVM_GUESTDBG_EXIT_PENDING: trigger an immediate guest exit [s390]
2829
2830For example KVM_GUESTDBG_USE_SW_BP indicates that software breakpoints
2831are enabled in memory so we need to ensure breakpoint exceptions are
2832correctly trapped and the KVM run loop exits at the breakpoint and not
2833running off into the normal guest vector. For KVM_GUESTDBG_USE_HW_BP
2834we need to ensure the guest vCPUs architecture specific registers are
2835updated to the correct (supplied) values.
2836
2837The second part of the structure is architecture specific and
2838typically contains a set of debug registers.
2839
Alex Bennée834bf882015-07-07 17:30:02 +01002840For arm64 the number of debug registers is implementation defined and
2841can be determined by querying the KVM_CAP_GUEST_DEBUG_HW_BPS and
2842KVM_CAP_GUEST_DEBUG_HW_WPS capabilities which return a positive number
2843indicating the number of supported registers.
2844
Alex Bennée4bd9d342014-09-09 17:27:18 +01002845When debug events exit the main run loop with the reason
2846KVM_EXIT_DEBUG with the kvm_debug_exit_arch part of the kvm_run
2847structure containing architecture specific debug information.
Christoffer Dall3401d5462013-01-23 13:18:04 -05002848
Alex Bennée209cf192014-09-09 17:27:19 +010028494.88 KVM_GET_EMULATED_CPUID
2850
2851Capability: KVM_CAP_EXT_EMUL_CPUID
2852Architectures: x86
2853Type: system ioctl
2854Parameters: struct kvm_cpuid2 (in/out)
2855Returns: 0 on success, -1 on error
2856
2857struct kvm_cpuid2 {
2858 __u32 nent;
2859 __u32 flags;
2860 struct kvm_cpuid_entry2 entries[0];
2861};
2862
2863The member 'flags' is used for passing flags from userspace.
2864
2865#define KVM_CPUID_FLAG_SIGNIFCANT_INDEX BIT(0)
2866#define KVM_CPUID_FLAG_STATEFUL_FUNC BIT(1)
2867#define KVM_CPUID_FLAG_STATE_READ_NEXT BIT(2)
2868
2869struct kvm_cpuid_entry2 {
2870 __u32 function;
2871 __u32 index;
2872 __u32 flags;
2873 __u32 eax;
2874 __u32 ebx;
2875 __u32 ecx;
2876 __u32 edx;
2877 __u32 padding[3];
2878};
2879
2880This ioctl returns x86 cpuid features which are emulated by
2881kvm.Userspace can use the information returned by this ioctl to query
2882which features are emulated by kvm instead of being present natively.
2883
2884Userspace invokes KVM_GET_EMULATED_CPUID by passing a kvm_cpuid2
2885structure with the 'nent' field indicating the number of entries in
2886the variable-size array 'entries'. If the number of entries is too low
2887to describe the cpu capabilities, an error (E2BIG) is returned. If the
2888number is too high, the 'nent' field is adjusted and an error (ENOMEM)
2889is returned. If the number is just right, the 'nent' field is adjusted
2890to the number of valid entries in the 'entries' array, which is then
2891filled.
2892
2893The entries returned are the set CPUID bits of the respective features
2894which kvm emulates, as returned by the CPUID instruction, with unknown
2895or unsupported feature bits cleared.
2896
2897Features like x2apic, for example, may not be present in the host cpu
2898but are exposed by kvm in KVM_GET_SUPPORTED_CPUID because they can be
2899emulated efficiently and thus not included here.
2900
2901The fields in each entry are defined as follows:
2902
2903 function: the eax value used to obtain the entry
2904 index: the ecx value used to obtain the entry (for entries that are
2905 affected by ecx)
2906 flags: an OR of zero or more of the following:
2907 KVM_CPUID_FLAG_SIGNIFCANT_INDEX:
2908 if the index field is valid
2909 KVM_CPUID_FLAG_STATEFUL_FUNC:
2910 if cpuid for this function returns different values for successive
2911 invocations; there will be several entries with the same function,
2912 all with this flag set
2913 KVM_CPUID_FLAG_STATE_READ_NEXT:
2914 for KVM_CPUID_FLAG_STATEFUL_FUNC entries, set if this entry is
2915 the first entry to be read by a cpu
2916 eax, ebx, ecx, edx: the values returned by the cpuid instruction for
2917 this function/index combination
2918
Thomas Huth41408c22015-02-06 15:01:21 +010029194.89 KVM_S390_MEM_OP
2920
2921Capability: KVM_CAP_S390_MEM_OP
2922Architectures: s390
2923Type: vcpu ioctl
2924Parameters: struct kvm_s390_mem_op (in)
2925Returns: = 0 on success,
2926 < 0 on generic error (e.g. -EFAULT or -ENOMEM),
2927 > 0 if an exception occurred while walking the page tables
2928
Masanari Iida5d4f6f32015-10-04 00:46:21 +09002929Read or write data from/to the logical (virtual) memory of a VCPU.
Thomas Huth41408c22015-02-06 15:01:21 +01002930
2931Parameters are specified via the following structure:
2932
2933struct kvm_s390_mem_op {
2934 __u64 gaddr; /* the guest address */
2935 __u64 flags; /* flags */
2936 __u32 size; /* amount of bytes */
2937 __u32 op; /* type of operation */
2938 __u64 buf; /* buffer in userspace */
2939 __u8 ar; /* the access register number */
2940 __u8 reserved[31]; /* should be set to 0 */
2941};
2942
2943The type of operation is specified in the "op" field. It is either
2944KVM_S390_MEMOP_LOGICAL_READ for reading from logical memory space or
2945KVM_S390_MEMOP_LOGICAL_WRITE for writing to logical memory space. The
2946KVM_S390_MEMOP_F_CHECK_ONLY flag can be set in the "flags" field to check
2947whether the corresponding memory access would create an access exception
2948(without touching the data in the memory at the destination). In case an
2949access exception occurred while walking the MMU tables of the guest, the
2950ioctl returns a positive error number to indicate the type of exception.
2951This exception is also raised directly at the corresponding VCPU if the
2952flag KVM_S390_MEMOP_F_INJECT_EXCEPTION is set in the "flags" field.
2953
2954The start address of the memory region has to be specified in the "gaddr"
2955field, and the length of the region in the "size" field. "buf" is the buffer
2956supplied by the userspace application where the read data should be written
2957to for KVM_S390_MEMOP_LOGICAL_READ, or where the data that should be written
2958is stored for a KVM_S390_MEMOP_LOGICAL_WRITE. "buf" is unused and can be NULL
2959when KVM_S390_MEMOP_F_CHECK_ONLY is specified. "ar" designates the access
2960register number to be used.
2961
2962The "reserved" field is meant for future extensions. It is not used by
2963KVM with the currently defined set of flags.
2964
Jason J. Herne30ee2a92014-09-23 09:23:01 -040029654.90 KVM_S390_GET_SKEYS
2966
2967Capability: KVM_CAP_S390_SKEYS
2968Architectures: s390
2969Type: vm ioctl
2970Parameters: struct kvm_s390_skeys
2971Returns: 0 on success, KVM_S390_GET_KEYS_NONE if guest is not using storage
2972 keys, negative value on error
2973
2974This ioctl is used to get guest storage key values on the s390
2975architecture. The ioctl takes parameters via the kvm_s390_skeys struct.
2976
2977struct kvm_s390_skeys {
2978 __u64 start_gfn;
2979 __u64 count;
2980 __u64 skeydata_addr;
2981 __u32 flags;
2982 __u32 reserved[9];
2983};
2984
2985The start_gfn field is the number of the first guest frame whose storage keys
2986you want to get.
2987
2988The count field is the number of consecutive frames (starting from start_gfn)
2989whose storage keys to get. The count field must be at least 1 and the maximum
2990allowed value is defined as KVM_S390_SKEYS_ALLOC_MAX. Values outside this range
2991will cause the ioctl to return -EINVAL.
2992
2993The skeydata_addr field is the address to a buffer large enough to hold count
2994bytes. This buffer will be filled with storage key data by the ioctl.
2995
29964.91 KVM_S390_SET_SKEYS
2997
2998Capability: KVM_CAP_S390_SKEYS
2999Architectures: s390
3000Type: vm ioctl
3001Parameters: struct kvm_s390_skeys
3002Returns: 0 on success, negative value on error
3003
3004This ioctl is used to set guest storage key values on the s390
3005architecture. The ioctl takes parameters via the kvm_s390_skeys struct.
3006See section on KVM_S390_GET_SKEYS for struct definition.
3007
3008The start_gfn field is the number of the first guest frame whose storage keys
3009you want to set.
3010
3011The count field is the number of consecutive frames (starting from start_gfn)
3012whose storage keys to get. The count field must be at least 1 and the maximum
3013allowed value is defined as KVM_S390_SKEYS_ALLOC_MAX. Values outside this range
3014will cause the ioctl to return -EINVAL.
3015
3016The skeydata_addr field is the address to a buffer containing count bytes of
3017storage keys. Each byte in the buffer will be set as the storage key for a
3018single frame starting at start_gfn for count frames.
3019
3020Note: If any architecturally invalid key value is found in the given data then
3021the ioctl will return -EINVAL.
3022
Jens Freimann47b43c52014-11-11 20:57:06 +010030234.92 KVM_S390_IRQ
3024
3025Capability: KVM_CAP_S390_INJECT_IRQ
3026Architectures: s390
3027Type: vcpu ioctl
3028Parameters: struct kvm_s390_irq (in)
3029Returns: 0 on success, -1 on error
3030Errors:
3031 EINVAL: interrupt type is invalid
3032 type is KVM_S390_SIGP_STOP and flag parameter is invalid value
3033 type is KVM_S390_INT_EXTERNAL_CALL and code is bigger
3034 than the maximum of VCPUs
3035 EBUSY: type is KVM_S390_SIGP_SET_PREFIX and vcpu is not stopped
3036 type is KVM_S390_SIGP_STOP and a stop irq is already pending
3037 type is KVM_S390_INT_EXTERNAL_CALL and an external call interrupt
3038 is already pending
3039
3040Allows to inject an interrupt to the guest.
3041
3042Using struct kvm_s390_irq as a parameter allows
3043to inject additional payload which is not
3044possible via KVM_S390_INTERRUPT.
3045
3046Interrupt parameters are passed via kvm_s390_irq:
3047
3048struct kvm_s390_irq {
3049 __u64 type;
3050 union {
3051 struct kvm_s390_io_info io;
3052 struct kvm_s390_ext_info ext;
3053 struct kvm_s390_pgm_info pgm;
3054 struct kvm_s390_emerg_info emerg;
3055 struct kvm_s390_extcall_info extcall;
3056 struct kvm_s390_prefix_info prefix;
3057 struct kvm_s390_stop_info stop;
3058 struct kvm_s390_mchk_info mchk;
3059 char reserved[64];
3060 } u;
3061};
3062
3063type can be one of the following:
3064
3065KVM_S390_SIGP_STOP - sigp stop; parameter in .stop
3066KVM_S390_PROGRAM_INT - program check; parameters in .pgm
3067KVM_S390_SIGP_SET_PREFIX - sigp set prefix; parameters in .prefix
3068KVM_S390_RESTART - restart; no parameters
3069KVM_S390_INT_CLOCK_COMP - clock comparator interrupt; no parameters
3070KVM_S390_INT_CPU_TIMER - CPU timer interrupt; no parameters
3071KVM_S390_INT_EMERGENCY - sigp emergency; parameters in .emerg
3072KVM_S390_INT_EXTERNAL_CALL - sigp external call; parameters in .extcall
3073KVM_S390_MCHK - machine check interrupt; parameters in .mchk
3074
3075
3076Note that the vcpu ioctl is asynchronous to vcpu execution.
3077
Jens Freimann816c7662014-11-24 17:13:46 +010030784.94 KVM_S390_GET_IRQ_STATE
3079
3080Capability: KVM_CAP_S390_IRQ_STATE
3081Architectures: s390
3082Type: vcpu ioctl
3083Parameters: struct kvm_s390_irq_state (out)
3084Returns: >= number of bytes copied into buffer,
3085 -EINVAL if buffer size is 0,
3086 -ENOBUFS if buffer size is too small to fit all pending interrupts,
3087 -EFAULT if the buffer address was invalid
3088
3089This ioctl allows userspace to retrieve the complete state of all currently
3090pending interrupts in a single buffer. Use cases include migration
3091and introspection. The parameter structure contains the address of a
3092userspace buffer and its length:
3093
3094struct kvm_s390_irq_state {
3095 __u64 buf;
3096 __u32 flags;
3097 __u32 len;
3098 __u32 reserved[4];
3099};
3100
3101Userspace passes in the above struct and for each pending interrupt a
3102struct kvm_s390_irq is copied to the provided buffer.
3103
3104If -ENOBUFS is returned the buffer provided was too small and userspace
3105may retry with a bigger buffer.
3106
31074.95 KVM_S390_SET_IRQ_STATE
3108
3109Capability: KVM_CAP_S390_IRQ_STATE
3110Architectures: s390
3111Type: vcpu ioctl
3112Parameters: struct kvm_s390_irq_state (in)
3113Returns: 0 on success,
3114 -EFAULT if the buffer address was invalid,
3115 -EINVAL for an invalid buffer length (see below),
3116 -EBUSY if there were already interrupts pending,
3117 errors occurring when actually injecting the
3118 interrupt. See KVM_S390_IRQ.
3119
3120This ioctl allows userspace to set the complete state of all cpu-local
3121interrupts currently pending for the vcpu. It is intended for restoring
3122interrupt state after a migration. The input parameter is a userspace buffer
3123containing a struct kvm_s390_irq_state:
3124
3125struct kvm_s390_irq_state {
3126 __u64 buf;
3127 __u32 len;
3128 __u32 pad;
3129};
3130
3131The userspace memory referenced by buf contains a struct kvm_s390_irq
3132for each interrupt to be injected into the guest.
3133If one of the interrupts could not be injected for some reason the
3134ioctl aborts.
3135
3136len must be a multiple of sizeof(struct kvm_s390_irq). It must be > 0
3137and it must not exceed (max_vcpus + 32) * sizeof(struct kvm_s390_irq),
3138which is the maximum number of possibly pending cpu-local interrupts.
Jens Freimann47b43c52014-11-11 20:57:06 +01003139
Alexey Kardashevskiyed8e5a22016-01-19 16:12:28 +110031404.96 KVM_SMI
Paolo Bonzinif0778252015-04-01 15:06:40 +02003141
3142Capability: KVM_CAP_X86_SMM
3143Architectures: x86
3144Type: vcpu ioctl
3145Parameters: none
3146Returns: 0 on success, -1 on error
3147
3148Queues an SMI on the thread's vcpu.
3149
Alexey Kardashevskiyd3695aa2016-02-15 12:55:09 +110031504.97 KVM_CAP_PPC_MULTITCE
3151
3152Capability: KVM_CAP_PPC_MULTITCE
3153Architectures: ppc
3154Type: vm
3155
3156This capability means the kernel is capable of handling hypercalls
3157H_PUT_TCE_INDIRECT and H_STUFF_TCE without passing those into the user
3158space. This significantly accelerates DMA operations for PPC KVM guests.
3159User space should expect that its handlers for these hypercalls
3160are not going to be called if user space previously registered LIOBN
3161in KVM (via KVM_CREATE_SPAPR_TCE or similar calls).
3162
3163In order to enable H_PUT_TCE_INDIRECT and H_STUFF_TCE use in the guest,
3164user space might have to advertise it for the guest. For example,
3165IBM pSeries (sPAPR) guest starts using them if "hcall-multi-tce" is
3166present in the "ibm,hypertas-functions" device-tree property.
3167
3168The hypercalls mentioned above may or may not be processed successfully
3169in the kernel based fast path. If they can not be handled by the kernel,
3170they will get passed on to user space. So user space still has to have
3171an implementation for these despite the in kernel acceleration.
3172
3173This capability is always enabled.
3174
Alexey Kardashevskiy58ded422016-03-01 17:54:40 +110031754.98 KVM_CREATE_SPAPR_TCE_64
3176
3177Capability: KVM_CAP_SPAPR_TCE_64
3178Architectures: powerpc
3179Type: vm ioctl
3180Parameters: struct kvm_create_spapr_tce_64 (in)
3181Returns: file descriptor for manipulating the created TCE table
3182
3183This is an extension for KVM_CAP_SPAPR_TCE which only supports 32bit
3184windows, described in 4.62 KVM_CREATE_SPAPR_TCE
3185
3186This capability uses extended struct in ioctl interface:
3187
3188/* for KVM_CAP_SPAPR_TCE_64 */
3189struct kvm_create_spapr_tce_64 {
3190 __u64 liobn;
3191 __u32 page_shift;
3192 __u32 flags;
3193 __u64 offset; /* in pages */
3194 __u64 size; /* in pages */
3195};
3196
3197The aim of extension is to support an additional bigger DMA window with
3198a variable page size.
3199KVM_CREATE_SPAPR_TCE_64 receives a 64bit window size, an IOMMU page shift and
3200a bus offset of the corresponding DMA window, @size and @offset are numbers
3201of IOMMU pages.
3202
3203@flags are not used at the moment.
3204
3205The rest of functionality is identical to KVM_CREATE_SPAPR_TCE.
3206
Radim Krčmář107d44a22016-03-02 22:56:53 +010032074.98 KVM_REINJECT_CONTROL
3208
3209Capability: KVM_CAP_REINJECT_CONTROL
3210Architectures: x86
3211Type: vm ioctl
3212Parameters: struct kvm_reinject_control (in)
3213Returns: 0 on success,
3214 -EFAULT if struct kvm_reinject_control cannot be read,
3215 -ENXIO if KVM_CREATE_PIT or KVM_CREATE_PIT2 didn't succeed earlier.
3216
3217i8254 (PIT) has two modes, reinject and !reinject. The default is reinject,
3218where KVM queues elapsed i8254 ticks and monitors completion of interrupt from
3219vector(s) that i8254 injects. Reinject mode dequeues a tick and injects its
3220interrupt whenever there isn't a pending interrupt from i8254.
3221!reinject mode injects an interrupt as soon as a tick arrives.
3222
3223struct kvm_reinject_control {
3224 __u8 pit_reinject;
3225 __u8 reserved[31];
3226};
3227
3228pit_reinject = 0 (!reinject mode) is recommended, unless running an old
3229operating system that uses the PIT for timing (e.g. Linux 2.4.x).
3230
Avi Kivity9c1b96e2009-06-09 12:37:58 +030032315. The kvm_run structure
Jan Kiszka414fa982012-04-24 16:40:15 +02003232------------------------
Avi Kivity9c1b96e2009-06-09 12:37:58 +03003233
3234Application code obtains a pointer to the kvm_run structure by
3235mmap()ing a vcpu fd. From that point, application code can control
3236execution by changing fields in kvm_run prior to calling the KVM_RUN
3237ioctl, and obtain information about the reason KVM_RUN returned by
3238looking up structure members.
3239
3240struct kvm_run {
3241 /* in */
3242 __u8 request_interrupt_window;
3243
3244Request that KVM_RUN return when it becomes possible to inject external
3245interrupts into the guest. Useful in conjunction with KVM_INTERRUPT.
3246
3247 __u8 padding1[7];
3248
3249 /* out */
3250 __u32 exit_reason;
3251
3252When KVM_RUN has returned successfully (return value 0), this informs
3253application code why KVM_RUN has returned. Allowable values for this
3254field are detailed below.
3255
3256 __u8 ready_for_interrupt_injection;
3257
3258If request_interrupt_window has been specified, this field indicates
3259an interrupt can be injected now with KVM_INTERRUPT.
3260
3261 __u8 if_flag;
3262
3263The value of the current interrupt flag. Only valid if in-kernel
3264local APIC is not used.
3265
Paolo Bonzinif0778252015-04-01 15:06:40 +02003266 __u16 flags;
3267
3268More architecture-specific flags detailing state of the VCPU that may
3269affect the device's behavior. The only currently defined flag is
3270KVM_RUN_X86_SMM, which is valid on x86 machines and is set if the
3271VCPU is in system management mode.
Avi Kivity9c1b96e2009-06-09 12:37:58 +03003272
3273 /* in (pre_kvm_run), out (post_kvm_run) */
3274 __u64 cr8;
3275
3276The value of the cr8 register. Only valid if in-kernel local APIC is
3277not used. Both input and output.
3278
3279 __u64 apic_base;
3280
3281The value of the APIC BASE msr. Only valid if in-kernel local
3282APIC is not used. Both input and output.
3283
3284 union {
3285 /* KVM_EXIT_UNKNOWN */
3286 struct {
3287 __u64 hardware_exit_reason;
3288 } hw;
3289
3290If exit_reason is KVM_EXIT_UNKNOWN, the vcpu has exited due to unknown
3291reasons. Further architecture-specific information is available in
3292hardware_exit_reason.
3293
3294 /* KVM_EXIT_FAIL_ENTRY */
3295 struct {
3296 __u64 hardware_entry_failure_reason;
3297 } fail_entry;
3298
3299If exit_reason is KVM_EXIT_FAIL_ENTRY, the vcpu could not be run due
3300to unknown reasons. Further architecture-specific information is
3301available in hardware_entry_failure_reason.
3302
3303 /* KVM_EXIT_EXCEPTION */
3304 struct {
3305 __u32 exception;
3306 __u32 error_code;
3307 } ex;
3308
3309Unused.
3310
3311 /* KVM_EXIT_IO */
3312 struct {
3313#define KVM_EXIT_IO_IN 0
3314#define KVM_EXIT_IO_OUT 1
3315 __u8 direction;
3316 __u8 size; /* bytes */
3317 __u16 port;
3318 __u32 count;
3319 __u64 data_offset; /* relative to kvm_run start */
3320 } io;
3321
Wu Fengguang2044892d2009-12-24 09:04:16 +08003322If exit_reason is KVM_EXIT_IO, then the vcpu has
Avi Kivity9c1b96e2009-06-09 12:37:58 +03003323executed a port I/O instruction which could not be satisfied by kvm.
3324data_offset describes where the data is located (KVM_EXIT_IO_OUT) or
3325where kvm expects application code to place the data for the next
Wu Fengguang2044892d2009-12-24 09:04:16 +08003326KVM_RUN invocation (KVM_EXIT_IO_IN). Data format is a packed array.
Avi Kivity9c1b96e2009-06-09 12:37:58 +03003327
Alex Bennée8ab30c12015-07-07 17:29:53 +01003328 /* KVM_EXIT_DEBUG */
Avi Kivity9c1b96e2009-06-09 12:37:58 +03003329 struct {
3330 struct kvm_debug_exit_arch arch;
3331 } debug;
3332
Alex Bennée8ab30c12015-07-07 17:29:53 +01003333If the exit_reason is KVM_EXIT_DEBUG, then a vcpu is processing a debug event
3334for which architecture specific information is returned.
Avi Kivity9c1b96e2009-06-09 12:37:58 +03003335
3336 /* KVM_EXIT_MMIO */
3337 struct {
3338 __u64 phys_addr;
3339 __u8 data[8];
3340 __u32 len;
3341 __u8 is_write;
3342 } mmio;
3343
Wu Fengguang2044892d2009-12-24 09:04:16 +08003344If exit_reason is KVM_EXIT_MMIO, then the vcpu has
Avi Kivity9c1b96e2009-06-09 12:37:58 +03003345executed a memory-mapped I/O instruction which could not be satisfied
3346by kvm. The 'data' member contains the written data if 'is_write' is
3347true, and should be filled by application code otherwise.
3348
Christoffer Dall6acdb162014-01-28 08:28:42 -08003349The 'data' member contains, in its first 'len' bytes, the value as it would
3350appear if the VCPU performed a load or store of the appropriate width directly
3351to the byte array.
3352
Paolo Bonzinicc568ea2014-08-05 09:55:22 +02003353NOTE: For KVM_EXIT_IO, KVM_EXIT_MMIO, KVM_EXIT_OSI, KVM_EXIT_PAPR and
Alexander Grafce91ddc2014-07-28 19:29:13 +02003354 KVM_EXIT_EPR the corresponding
Alexander Grafad0a0482010-03-24 21:48:30 +01003355operations are complete (and guest state is consistent) only after userspace
3356has re-entered the kernel with KVM_RUN. The kernel side will first finish
Marcelo Tosatti67961342010-02-13 16:10:26 -02003357incomplete operations and then check for pending signals. Userspace
3358can re-enter the guest with an unmasked signal pending to complete
3359pending operations.
3360
Avi Kivity9c1b96e2009-06-09 12:37:58 +03003361 /* KVM_EXIT_HYPERCALL */
3362 struct {
3363 __u64 nr;
3364 __u64 args[6];
3365 __u64 ret;
3366 __u32 longmode;
3367 __u32 pad;
3368 } hypercall;
3369
Avi Kivity647dc492010-04-01 14:39:21 +03003370Unused. This was once used for 'hypercall to userspace'. To implement
3371such functionality, use KVM_EXIT_IO (x86) or KVM_EXIT_MMIO (all except s390).
3372Note KVM_EXIT_IO is significantly faster than KVM_EXIT_MMIO.
Avi Kivity9c1b96e2009-06-09 12:37:58 +03003373
3374 /* KVM_EXIT_TPR_ACCESS */
3375 struct {
3376 __u64 rip;
3377 __u32 is_write;
3378 __u32 pad;
3379 } tpr_access;
3380
3381To be documented (KVM_TPR_ACCESS_REPORTING).
3382
3383 /* KVM_EXIT_S390_SIEIC */
3384 struct {
3385 __u8 icptcode;
3386 __u64 mask; /* psw upper half */
3387 __u64 addr; /* psw lower half */
3388 __u16 ipa;
3389 __u32 ipb;
3390 } s390_sieic;
3391
3392s390 specific.
3393
3394 /* KVM_EXIT_S390_RESET */
3395#define KVM_S390_RESET_POR 1
3396#define KVM_S390_RESET_CLEAR 2
3397#define KVM_S390_RESET_SUBSYSTEM 4
3398#define KVM_S390_RESET_CPU_INIT 8
3399#define KVM_S390_RESET_IPL 16
3400 __u64 s390_reset_flags;
3401
3402s390 specific.
3403
Carsten Ottee168bf82012-01-04 10:25:22 +01003404 /* KVM_EXIT_S390_UCONTROL */
3405 struct {
3406 __u64 trans_exc_code;
3407 __u32 pgm_code;
3408 } s390_ucontrol;
3409
3410s390 specific. A page fault has occurred for a user controlled virtual
3411machine (KVM_VM_S390_UNCONTROL) on it's host page table that cannot be
3412resolved by the kernel.
3413The program code and the translation exception code that were placed
3414in the cpu's lowcore are presented here as defined by the z Architecture
3415Principles of Operation Book in the Chapter for Dynamic Address Translation
3416(DAT)
3417
Avi Kivity9c1b96e2009-06-09 12:37:58 +03003418 /* KVM_EXIT_DCR */
3419 struct {
3420 __u32 dcrn;
3421 __u32 data;
3422 __u8 is_write;
3423 } dcr;
3424
Alexander Grafce91ddc2014-07-28 19:29:13 +02003425Deprecated - was used for 440 KVM.
Avi Kivity9c1b96e2009-06-09 12:37:58 +03003426
Alexander Grafad0a0482010-03-24 21:48:30 +01003427 /* KVM_EXIT_OSI */
3428 struct {
3429 __u64 gprs[32];
3430 } osi;
3431
3432MOL uses a special hypercall interface it calls 'OSI'. To enable it, we catch
3433hypercalls and exit with this exit struct that contains all the guest gprs.
3434
3435If exit_reason is KVM_EXIT_OSI, then the vcpu has triggered such a hypercall.
3436Userspace can now handle the hypercall and when it's done modify the gprs as
3437necessary. Upon guest entry all guest GPRs will then be replaced by the values
3438in this struct.
3439
Paul Mackerrasde56a942011-06-29 00:21:34 +00003440 /* KVM_EXIT_PAPR_HCALL */
3441 struct {
3442 __u64 nr;
3443 __u64 ret;
3444 __u64 args[9];
3445 } papr_hcall;
3446
3447This is used on 64-bit PowerPC when emulating a pSeries partition,
3448e.g. with the 'pseries' machine type in qemu. It occurs when the
3449guest does a hypercall using the 'sc 1' instruction. The 'nr' field
3450contains the hypercall number (from the guest R3), and 'args' contains
3451the arguments (from the guest R4 - R12). Userspace should put the
3452return code in 'ret' and any extra returned values in args[].
3453The possible hypercalls are defined in the Power Architecture Platform
3454Requirements (PAPR) document available from www.power.org (free
3455developer registration required to access it).
3456
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +01003457 /* KVM_EXIT_S390_TSCH */
3458 struct {
3459 __u16 subchannel_id;
3460 __u16 subchannel_nr;
3461 __u32 io_int_parm;
3462 __u32 io_int_word;
3463 __u32 ipb;
3464 __u8 dequeued;
3465 } s390_tsch;
3466
3467s390 specific. This exit occurs when KVM_CAP_S390_CSS_SUPPORT has been enabled
3468and TEST SUBCHANNEL was intercepted. If dequeued is set, a pending I/O
3469interrupt for the target subchannel has been dequeued and subchannel_id,
3470subchannel_nr, io_int_parm and io_int_word contain the parameters for that
3471interrupt. ipb is needed for instruction parameter decoding.
3472
Alexander Graf1c810632013-01-04 18:12:48 +01003473 /* KVM_EXIT_EPR */
3474 struct {
3475 __u32 epr;
3476 } epr;
3477
3478On FSL BookE PowerPC chips, the interrupt controller has a fast patch
3479interrupt acknowledge path to the core. When the core successfully
3480delivers an interrupt, it automatically populates the EPR register with
3481the interrupt vector number and acknowledges the interrupt inside
3482the interrupt controller.
3483
3484In case the interrupt controller lives in user space, we need to do
3485the interrupt acknowledge cycle through it to fetch the next to be
3486delivered interrupt vector using this exit.
3487
3488It gets triggered whenever both KVM_CAP_PPC_EPR are enabled and an
3489external interrupt has just been delivered into the guest. User space
3490should put the acknowledged interrupt vector into the 'epr' field.
3491
Anup Patel8ad6b632014-04-29 11:24:19 +05303492 /* KVM_EXIT_SYSTEM_EVENT */
3493 struct {
3494#define KVM_SYSTEM_EVENT_SHUTDOWN 1
3495#define KVM_SYSTEM_EVENT_RESET 2
Andrey Smetanin2ce79182015-07-03 15:01:41 +03003496#define KVM_SYSTEM_EVENT_CRASH 3
Anup Patel8ad6b632014-04-29 11:24:19 +05303497 __u32 type;
3498 __u64 flags;
3499 } system_event;
3500
3501If exit_reason is KVM_EXIT_SYSTEM_EVENT then the vcpu has triggered
3502a system-level event using some architecture specific mechanism (hypercall
3503or some special instruction). In case of ARM/ARM64, this is triggered using
3504HVC instruction based PSCI call from the vcpu. The 'type' field describes
3505the system-level event type. The 'flags' field describes architecture
3506specific flags for the system-level event.
3507
Christoffer Dallcf5d31882014-10-16 17:00:18 +02003508Valid values for 'type' are:
3509 KVM_SYSTEM_EVENT_SHUTDOWN -- the guest has requested a shutdown of the
3510 VM. Userspace is not obliged to honour this, and if it does honour
3511 this does not need to destroy the VM synchronously (ie it may call
3512 KVM_RUN again before shutdown finally occurs).
3513 KVM_SYSTEM_EVENT_RESET -- the guest has requested a reset of the VM.
3514 As with SHUTDOWN, userspace can choose to ignore the request, or
3515 to schedule the reset to occur in the future and may call KVM_RUN again.
Andrey Smetanin2ce79182015-07-03 15:01:41 +03003516 KVM_SYSTEM_EVENT_CRASH -- the guest crash occurred and the guest
3517 has requested a crash condition maintenance. Userspace can choose
3518 to ignore the request, or to gather VM memory core dump and/or
3519 reset/shutdown of the VM.
Christoffer Dallcf5d31882014-10-16 17:00:18 +02003520
Steve Rutherford7543a632015-07-29 23:21:41 -07003521 /* KVM_EXIT_IOAPIC_EOI */
3522 struct {
3523 __u8 vector;
3524 } eoi;
3525
3526Indicates that the VCPU's in-kernel local APIC received an EOI for a
3527level-triggered IOAPIC interrupt. This exit only triggers when the
3528IOAPIC is implemented in userspace (i.e. KVM_CAP_SPLIT_IRQCHIP is enabled);
3529the userspace IOAPIC should process the EOI and retrigger the interrupt if
3530it is still asserted. Vector is the LAPIC interrupt vector for which the
3531EOI was received.
3532
Andrey Smetanindb3975712015-11-10 15:36:35 +03003533 struct kvm_hyperv_exit {
3534#define KVM_EXIT_HYPERV_SYNIC 1
Andrey Smetanin83326e42016-02-11 16:45:01 +03003535#define KVM_EXIT_HYPERV_HCALL 2
Andrey Smetanindb3975712015-11-10 15:36:35 +03003536 __u32 type;
3537 union {
3538 struct {
3539 __u32 msr;
3540 __u64 control;
3541 __u64 evt_page;
3542 __u64 msg_page;
3543 } synic;
Andrey Smetanin83326e42016-02-11 16:45:01 +03003544 struct {
3545 __u64 input;
3546 __u64 result;
3547 __u64 params[2];
3548 } hcall;
Andrey Smetanindb3975712015-11-10 15:36:35 +03003549 } u;
3550 };
3551 /* KVM_EXIT_HYPERV */
3552 struct kvm_hyperv_exit hyperv;
3553Indicates that the VCPU exits into userspace to process some tasks
3554related to Hyper-V emulation.
3555Valid values for 'type' are:
3556 KVM_EXIT_HYPERV_SYNIC -- synchronously notify user-space about
3557Hyper-V SynIC state change. Notification is used to remap SynIC
3558event/message pages and to enable/disable SynIC messages/events processing
3559in userspace.
3560
Avi Kivity9c1b96e2009-06-09 12:37:58 +03003561 /* Fix the size of the union. */
3562 char padding[256];
3563 };
Christian Borntraegerb9e5dc82012-01-11 11:20:30 +01003564
3565 /*
3566 * shared registers between kvm and userspace.
3567 * kvm_valid_regs specifies the register classes set by the host
3568 * kvm_dirty_regs specified the register classes dirtied by userspace
3569 * struct kvm_sync_regs is architecture specific, as well as the
3570 * bits for kvm_valid_regs and kvm_dirty_regs
3571 */
3572 __u64 kvm_valid_regs;
3573 __u64 kvm_dirty_regs;
3574 union {
3575 struct kvm_sync_regs regs;
3576 char padding[1024];
3577 } s;
3578
3579If KVM_CAP_SYNC_REGS is defined, these fields allow userspace to access
3580certain guest registers without having to call SET/GET_*REGS. Thus we can
3581avoid some system call overhead if userspace has to handle the exit.
3582Userspace can query the validity of the structure by checking
3583kvm_valid_regs for specific bits. These bits are architecture specific
3584and usually define the validity of a groups of registers. (e.g. one bit
3585 for general purpose registers)
3586
David Hildenbrandd8482c02014-07-29 08:19:26 +02003587Please note that the kernel is allowed to use the kvm_run structure as the
3588primary storage for certain register types. Therefore, the kernel may use the
3589values in kvm_run even if the corresponding bit in kvm_dirty_regs is not set.
3590
Avi Kivity9c1b96e2009-06-09 12:37:58 +03003591};
Alexander Graf821246a2011-08-31 10:58:55 +02003592
Jan Kiszka414fa982012-04-24 16:40:15 +02003593
Borislav Petkov9c15bb12013-09-22 16:44:50 +02003594
Paul Mackerras699a0ea2014-06-02 11:02:59 +100035956. Capabilities that can be enabled on vCPUs
3596--------------------------------------------
Alexander Graf821246a2011-08-31 10:58:55 +02003597
Cornelia Huck0907c852014-06-27 09:29:26 +02003598There are certain capabilities that change the behavior of the virtual CPU or
3599the virtual machine when enabled. To enable them, please see section 4.37.
3600Below you can find a list of capabilities and what their effect on the vCPU or
3601the virtual machine is when enabling them.
Alexander Graf821246a2011-08-31 10:58:55 +02003602
3603The following information is provided along with the description:
3604
3605 Architectures: which instruction set architectures provide this ioctl.
3606 x86 includes both i386 and x86_64.
3607
Cornelia Huck0907c852014-06-27 09:29:26 +02003608 Target: whether this is a per-vcpu or per-vm capability.
3609
Alexander Graf821246a2011-08-31 10:58:55 +02003610 Parameters: what parameters are accepted by the capability.
3611
3612 Returns: the return value. General error numbers (EBADF, ENOMEM, EINVAL)
3613 are not detailed, but errors with specific meanings are.
3614
Jan Kiszka414fa982012-04-24 16:40:15 +02003615
Alexander Graf821246a2011-08-31 10:58:55 +020036166.1 KVM_CAP_PPC_OSI
3617
3618Architectures: ppc
Cornelia Huck0907c852014-06-27 09:29:26 +02003619Target: vcpu
Alexander Graf821246a2011-08-31 10:58:55 +02003620Parameters: none
3621Returns: 0 on success; -1 on error
3622
3623This capability enables interception of OSI hypercalls that otherwise would
3624be treated as normal system calls to be injected into the guest. OSI hypercalls
3625were invented by Mac-on-Linux to have a standardized communication mechanism
3626between the guest and the host.
3627
3628When this capability is enabled, KVM_EXIT_OSI can occur.
3629
Jan Kiszka414fa982012-04-24 16:40:15 +02003630
Alexander Graf821246a2011-08-31 10:58:55 +020036316.2 KVM_CAP_PPC_PAPR
3632
3633Architectures: ppc
Cornelia Huck0907c852014-06-27 09:29:26 +02003634Target: vcpu
Alexander Graf821246a2011-08-31 10:58:55 +02003635Parameters: none
3636Returns: 0 on success; -1 on error
3637
3638This capability enables interception of PAPR hypercalls. PAPR hypercalls are
3639done using the hypercall instruction "sc 1".
3640
3641It also sets the guest privilege level to "supervisor" mode. Usually the guest
3642runs in "hypervisor" privilege mode with a few missing features.
3643
3644In addition to the above, it changes the semantics of SDR1. In this mode, the
3645HTAB address part of SDR1 contains an HVA instead of a GPA, as PAPR keeps the
3646HTAB invisible to the guest.
3647
3648When this capability is enabled, KVM_EXIT_PAPR_HCALL can occur.
Scott Wooddc83b8b2011-08-18 15:25:21 -05003649
Jan Kiszka414fa982012-04-24 16:40:15 +02003650
Scott Wooddc83b8b2011-08-18 15:25:21 -050036516.3 KVM_CAP_SW_TLB
3652
3653Architectures: ppc
Cornelia Huck0907c852014-06-27 09:29:26 +02003654Target: vcpu
Scott Wooddc83b8b2011-08-18 15:25:21 -05003655Parameters: args[0] is the address of a struct kvm_config_tlb
3656Returns: 0 on success; -1 on error
3657
3658struct kvm_config_tlb {
3659 __u64 params;
3660 __u64 array;
3661 __u32 mmu_type;
3662 __u32 array_len;
3663};
3664
3665Configures the virtual CPU's TLB array, establishing a shared memory area
3666between userspace and KVM. The "params" and "array" fields are userspace
3667addresses of mmu-type-specific data structures. The "array_len" field is an
3668safety mechanism, and should be set to the size in bytes of the memory that
3669userspace has reserved for the array. It must be at least the size dictated
3670by "mmu_type" and "params".
3671
3672While KVM_RUN is active, the shared region is under control of KVM. Its
3673contents are undefined, and any modification by userspace results in
3674boundedly undefined behavior.
3675
3676On return from KVM_RUN, the shared region will reflect the current state of
3677the guest's TLB. If userspace makes any changes, it must call KVM_DIRTY_TLB
3678to tell KVM which entries have been changed, prior to calling KVM_RUN again
3679on this vcpu.
3680
3681For mmu types KVM_MMU_FSL_BOOKE_NOHV and KVM_MMU_FSL_BOOKE_HV:
3682 - The "params" field is of type "struct kvm_book3e_206_tlb_params".
3683 - The "array" field points to an array of type "struct
3684 kvm_book3e_206_tlb_entry".
3685 - The array consists of all entries in the first TLB, followed by all
3686 entries in the second TLB.
3687 - Within a TLB, entries are ordered first by increasing set number. Within a
3688 set, entries are ordered by way (increasing ESEL).
3689 - The hash for determining set number in TLB0 is: (MAS2 >> 12) & (num_sets - 1)
3690 where "num_sets" is the tlb_sizes[] value divided by the tlb_ways[] value.
3691 - The tsize field of mas1 shall be set to 4K on TLB0, even though the
3692 hardware ignores this value for TLB0.
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +01003693
36946.4 KVM_CAP_S390_CSS_SUPPORT
3695
3696Architectures: s390
Cornelia Huck0907c852014-06-27 09:29:26 +02003697Target: vcpu
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +01003698Parameters: none
3699Returns: 0 on success; -1 on error
3700
3701This capability enables support for handling of channel I/O instructions.
3702
3703TEST PENDING INTERRUPTION and the interrupt portion of TEST SUBCHANNEL are
3704handled in-kernel, while the other I/O instructions are passed to userspace.
3705
3706When this capability is enabled, KVM_EXIT_S390_TSCH will occur on TEST
3707SUBCHANNEL intercepts.
Alexander Graf1c810632013-01-04 18:12:48 +01003708
Cornelia Huck0907c852014-06-27 09:29:26 +02003709Note that even though this capability is enabled per-vcpu, the complete
3710virtual machine is affected.
3711
Alexander Graf1c810632013-01-04 18:12:48 +010037126.5 KVM_CAP_PPC_EPR
3713
3714Architectures: ppc
Cornelia Huck0907c852014-06-27 09:29:26 +02003715Target: vcpu
Alexander Graf1c810632013-01-04 18:12:48 +01003716Parameters: args[0] defines whether the proxy facility is active
3717Returns: 0 on success; -1 on error
3718
3719This capability enables or disables the delivery of interrupts through the
3720external proxy facility.
3721
3722When enabled (args[0] != 0), every time the guest gets an external interrupt
3723delivered, it automatically exits into user space with a KVM_EXIT_EPR exit
3724to receive the topmost interrupt vector.
3725
3726When disabled (args[0] == 0), behavior is as if this facility is unsupported.
3727
3728When this capability is enabled, KVM_EXIT_EPR can occur.
Scott Woodeb1e4f42013-04-12 14:08:47 +00003729
37306.6 KVM_CAP_IRQ_MPIC
3731
3732Architectures: ppc
3733Parameters: args[0] is the MPIC device fd
3734 args[1] is the MPIC CPU number for this vcpu
3735
3736This capability connects the vcpu to an in-kernel MPIC device.
Paul Mackerras5975a2e2013-04-27 00:28:37 +00003737
37386.7 KVM_CAP_IRQ_XICS
3739
3740Architectures: ppc
Cornelia Huck0907c852014-06-27 09:29:26 +02003741Target: vcpu
Paul Mackerras5975a2e2013-04-27 00:28:37 +00003742Parameters: args[0] is the XICS device fd
3743 args[1] is the XICS CPU number (server ID) for this vcpu
3744
3745This capability connects the vcpu to an in-kernel XICS device.
Cornelia Huck8a366a42014-06-27 11:06:25 +02003746
37476.8 KVM_CAP_S390_IRQCHIP
3748
3749Architectures: s390
3750Target: vm
3751Parameters: none
3752
3753This capability enables the in-kernel irqchip for s390. Please refer to
3754"4.24 KVM_CREATE_IRQCHIP" for details.
Paul Mackerras699a0ea2014-06-02 11:02:59 +10003755
James Hogan5fafd8742014-12-08 23:07:56 +000037566.9 KVM_CAP_MIPS_FPU
3757
3758Architectures: mips
3759Target: vcpu
3760Parameters: args[0] is reserved for future use (should be 0).
3761
3762This capability allows the use of the host Floating Point Unit by the guest. It
3763allows the Config1.FP bit to be set to enable the FPU in the guest. Once this is
3764done the KVM_REG_MIPS_FPR_* and KVM_REG_MIPS_FCR_* registers can be accessed
3765(depending on the current guest FPU register mode), and the Status.FR,
3766Config5.FRE bits are accessible via the KVM API and also from the guest,
3767depending on them being supported by the FPU.
3768
James Hogand952bd02014-12-08 23:07:56 +000037696.10 KVM_CAP_MIPS_MSA
3770
3771Architectures: mips
3772Target: vcpu
3773Parameters: args[0] is reserved for future use (should be 0).
3774
3775This capability allows the use of the MIPS SIMD Architecture (MSA) by the guest.
3776It allows the Config3.MSAP bit to be set to enable the use of MSA by the guest.
3777Once this is done the KVM_REG_MIPS_VEC_* and KVM_REG_MIPS_MSA_* registers can be
3778accessed, and the Config5.MSAEn bit is accessible via the KVM API and also from
3779the guest.
3780
Paul Mackerras699a0ea2014-06-02 11:02:59 +100037817. Capabilities that can be enabled on VMs
3782------------------------------------------
3783
3784There are certain capabilities that change the behavior of the virtual
3785machine when enabled. To enable them, please see section 4.37. Below
3786you can find a list of capabilities and what their effect on the VM
3787is when enabling them.
3788
3789The following information is provided along with the description:
3790
3791 Architectures: which instruction set architectures provide this ioctl.
3792 x86 includes both i386 and x86_64.
3793
3794 Parameters: what parameters are accepted by the capability.
3795
3796 Returns: the return value. General error numbers (EBADF, ENOMEM, EINVAL)
3797 are not detailed, but errors with specific meanings are.
3798
3799
38007.1 KVM_CAP_PPC_ENABLE_HCALL
3801
3802Architectures: ppc
3803Parameters: args[0] is the sPAPR hcall number
3804 args[1] is 0 to disable, 1 to enable in-kernel handling
3805
3806This capability controls whether individual sPAPR hypercalls (hcalls)
3807get handled by the kernel or not. Enabling or disabling in-kernel
3808handling of an hcall is effective across the VM. On creation, an
3809initial set of hcalls are enabled for in-kernel handling, which
3810consists of those hcalls for which in-kernel handlers were implemented
3811before this capability was implemented. If disabled, the kernel will
3812not to attempt to handle the hcall, but will always exit to userspace
3813to handle it. Note that it may not make sense to enable some and
3814disable others of a group of related hcalls, but KVM does not prevent
3815userspace from doing that.
Paul Mackerrasae2113a2014-06-02 11:03:00 +10003816
3817If the hcall number specified is not one that has an in-kernel
3818implementation, the KVM_ENABLE_CAP ioctl will fail with an EINVAL
3819error.
David Hildenbrand2444b352014-10-09 14:10:13 +02003820
38217.2 KVM_CAP_S390_USER_SIGP
3822
3823Architectures: s390
3824Parameters: none
3825
3826This capability controls which SIGP orders will be handled completely in user
3827space. With this capability enabled, all fast orders will be handled completely
3828in the kernel:
3829- SENSE
3830- SENSE RUNNING
3831- EXTERNAL CALL
3832- EMERGENCY SIGNAL
3833- CONDITIONAL EMERGENCY SIGNAL
3834
3835All other orders will be handled completely in user space.
3836
3837Only privileged operation exceptions will be checked for in the kernel (or even
3838in the hardware prior to interception). If this capability is not enabled, the
3839old way of handling SIGP orders is used (partially in kernel and user space).
Eric Farman68c55752014-06-09 10:57:26 -04003840
38417.3 KVM_CAP_S390_VECTOR_REGISTERS
3842
3843Architectures: s390
3844Parameters: none
3845Returns: 0 on success, negative value on error
3846
3847Allows use of the vector registers introduced with z13 processor, and
3848provides for the synchronization between host and user space. Will
3849return -EINVAL if the machine does not support vectors.
Ekaterina Tumanovae44fc8c2015-01-30 16:55:56 +01003850
38517.4 KVM_CAP_S390_USER_STSI
3852
3853Architectures: s390
3854Parameters: none
3855
3856This capability allows post-handlers for the STSI instruction. After
3857initial handling in the kernel, KVM exits to user space with
3858KVM_EXIT_S390_STSI to allow user space to insert further data.
3859
3860Before exiting to userspace, kvm handlers should fill in s390_stsi field of
3861vcpu->run:
3862struct {
3863 __u64 addr;
3864 __u8 ar;
3865 __u8 reserved;
3866 __u8 fc;
3867 __u8 sel1;
3868 __u16 sel2;
3869} s390_stsi;
3870
3871@addr - guest address of STSI SYSIB
3872@fc - function code
3873@sel1 - selector 1
3874@sel2 - selector 2
3875@ar - access register number
3876
3877KVM handlers should exit to userspace with rc = -EREMOTE.
Michael Ellermane928e9c2015-03-20 20:39:41 +11003878
Steve Rutherford49df6392015-07-29 23:21:40 -070038797.5 KVM_CAP_SPLIT_IRQCHIP
3880
3881Architectures: x86
Steve Rutherfordb053b2a2015-07-29 23:32:35 -07003882Parameters: args[0] - number of routes reserved for userspace IOAPICs
Steve Rutherford49df6392015-07-29 23:21:40 -07003883Returns: 0 on success, -1 on error
3884
3885Create a local apic for each processor in the kernel. This can be used
3886instead of KVM_CREATE_IRQCHIP if the userspace VMM wishes to emulate the
3887IOAPIC and PIC (and also the PIT, even though this has to be enabled
3888separately).
3889
Steve Rutherfordb053b2a2015-07-29 23:32:35 -07003890This capability also enables in kernel routing of interrupt requests;
3891when KVM_CAP_SPLIT_IRQCHIP only routes of KVM_IRQ_ROUTING_MSI type are
3892used in the IRQ routing table. The first args[0] MSI routes are reserved
3893for the IOAPIC pins. Whenever the LAPIC receives an EOI for these routes,
3894a KVM_EXIT_IOAPIC_EOI vmexit will be reported to userspace.
Steve Rutherford49df6392015-07-29 23:21:40 -07003895
3896Fails if VCPU has already been created, or if the irqchip is already in the
3897kernel (i.e. KVM_CREATE_IRQCHIP has already been called).
3898
David Hildenbrand051c87f2016-04-19 13:13:40 +020038997.6 KVM_CAP_S390_RI
3900
3901Architectures: s390
3902Parameters: none
3903
3904Allows use of runtime-instrumentation introduced with zEC12 processor.
3905Will return -EINVAL if the machine does not support runtime-instrumentation.
3906Will return -EBUSY if a VCPU has already been created.
Michael Ellermane928e9c2015-03-20 20:39:41 +11003907
Radim Krčmář371313132016-07-12 22:09:27 +020039087.7 KVM_CAP_X2APIC_API
3909
3910Architectures: x86
3911Parameters: args[0] - features that should be enabled
3912Returns: 0 on success, -EINVAL when args[0] contains invalid features
3913
3914Valid feature flags in args[0] are
3915
3916#define KVM_X2APIC_API_USE_32BIT_IDS (1ULL << 0)
Radim Krčmářc5192652016-07-12 22:09:28 +02003917#define KVM_X2APIC_API_DISABLE_BROADCAST_QUIRK (1ULL << 1)
Radim Krčmář371313132016-07-12 22:09:27 +02003918
3919Enabling KVM_X2APIC_API_USE_32BIT_IDS changes the behavior of
3920KVM_SET_GSI_ROUTING, KVM_SIGNAL_MSI, KVM_SET_LAPIC, and KVM_GET_LAPIC,
3921allowing the use of 32-bit APIC IDs. See KVM_CAP_X2APIC_API in their
3922respective sections.
3923
Radim Krčmářc5192652016-07-12 22:09:28 +02003924KVM_X2APIC_API_DISABLE_BROADCAST_QUIRK must be enabled for x2APIC to work
3925in logical mode or with more than 255 VCPUs. Otherwise, KVM treats 0xff
3926as a broadcast even in x2APIC mode in order to support physical x2APIC
3927without interrupt remapping. This is undesirable in logical mode,
3928where 0xff represents CPUs 0-7 in cluster 0.
Radim Krčmář371313132016-07-12 22:09:27 +02003929
David Hildenbrand6502a342016-06-21 14:19:51 +020039307.8 KVM_CAP_S390_USER_INSTR0
3931
3932Architectures: s390
3933Parameters: none
3934
3935With this capability enabled, all illegal instructions 0x0000 (2 bytes) will
3936be intercepted and forwarded to user space. User space can use this
3937mechanism e.g. to realize 2-byte software breakpoints. The kernel will
3938not inject an operating exception for these instructions, user space has
3939to take care of that.
3940
3941This capability can be enabled dynamically even if VCPUs were already
3942created and are running.
Radim Krčmář371313132016-07-12 22:09:27 +02003943
Michael Ellermane928e9c2015-03-20 20:39:41 +110039448. Other capabilities.
3945----------------------
3946
3947This section lists capabilities that give information about other
3948features of the KVM implementation.
3949
39508.1 KVM_CAP_PPC_HWRNG
3951
3952Architectures: ppc
3953
3954This capability, if KVM_CHECK_EXTENSION indicates that it is
3955available, means that that the kernel has an implementation of the
3956H_RANDOM hypercall backed by a hardware random-number generator.
3957If present, the kernel H_RANDOM handler can be enabled for guest use
3958with the KVM_CAP_PPC_ENABLE_HCALL capability.
Andrey Smetanin5c9194122015-11-10 15:36:34 +03003959
39608.2 KVM_CAP_HYPERV_SYNIC
3961
3962Architectures: x86
3963This capability, if KVM_CHECK_EXTENSION indicates that it is
3964available, means that that the kernel has an implementation of the
3965Hyper-V Synthetic interrupt controller(SynIC). Hyper-V SynIC is
3966used to support Windows Hyper-V based guest paravirt drivers(VMBus).
3967
3968In order to use SynIC, it has to be activated by setting this
3969capability via KVM_ENABLE_CAP ioctl on the vcpu fd. Note that this
3970will disable the use of APIC hardware virtualization even if supported
3971by the CPU, as it's incompatible with SynIC auto-EOI behavior.