]> git.ipfire.org Git - thirdparty/kernel/stable.git/blame - Documentation/virtual/kvm/api.txt
kvm: introduce manual dirty log reprotect
[thirdparty/kernel/stable.git] / Documentation / virtual / kvm / api.txt
CommitLineData
9c1b96e3
AK
1The Definitive KVM (Kernel-based Virtual Machine) API Documentation
2===================================================================
3
41. General description
414fa985 5----------------------
9c1b96e3
AK
6
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
16 create virtual cpus (vcpus).
17
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
414fa985 27
2044892d 282. File descriptors
414fa985 29-------------------
9c1b96e3
AK
30
31The kvm API is centered around file descriptors. An initial
32open("/dev/kvm") obtains a handle to the kvm subsystem; this handle
33can be used to issue system ioctls. A KVM_CREATE_VM ioctl on this
2044892d 34handle will create a VM file descriptor which can be used to issue VM
9c1b96e3
AK
35ioctls. A KVM_CREATE_VCPU ioctl on a VM fd will create a virtual cpu
36and return a file descriptor pointing to it. Finally, ioctls on a vcpu
37fd can be used to control the vcpu, including the important task of
38actually running guest code.
39
40In general file descriptors can be migrated among processes by means
41of fork() and the SCM_RIGHTS facility of unix domain socket. These
42kinds of tricks are explicitly not supported by kvm. While they will
43not cause harm to the host, their actual behavior is not guaranteed by
44the API. The only supported use is one virtual machine per process,
45and one vcpu per thread.
46
414fa985 47
9c1b96e3 483. Extensions
414fa985 49-------------
9c1b96e3
AK
50
51As of Linux 2.6.22, the KVM ABI has been stabilized: no backward
52incompatible change are allowed. However, there is an extension
53facility that allows backward-compatible extensions to the API to be
54queried and used.
55
c9f3f2d8 56The extension mechanism is not based on the Linux version number.
9c1b96e3
AK
57Instead, kvm defines extension identifiers and a facility to query
58whether a particular extension identifier is available. If it is, a
59set of ioctls is available for application use.
60
414fa985 61
9c1b96e3 624. API description
414fa985 63------------------
9c1b96e3
AK
64
65This section describes ioctls that can be used to control kvm guests.
66For each ioctl, the following information is provided along with a
67description:
68
69 Capability: which KVM extension provides this ioctl. Can be 'basic',
70 which means that is will be provided by any kernel that supports
7f05db6a 71 API version 12 (see section 4.1), a KVM_CAP_xyz constant, which
9c1b96e3 72 means availability needs to be checked with KVM_CHECK_EXTENSION
7f05db6a
MT
73 (see section 4.4), or 'none' which means that while not all kernels
74 support this ioctl, there's no capability bit to check its
75 availability: for kernels that don't support the ioctl,
76 the ioctl returns -ENOTTY.
9c1b96e3
AK
77
78 Architectures: which instruction set architectures provide this ioctl.
79 x86 includes both i386 and x86_64.
80
81 Type: system, vm, or vcpu.
82
83 Parameters: what parameters are accepted by the ioctl.
84
85 Returns: the return value. General error numbers (EBADF, ENOMEM, EINVAL)
86 are not detailed, but errors with specific meanings are.
87
414fa985 88
9c1b96e3
AK
894.1 KVM_GET_API_VERSION
90
91Capability: basic
92Architectures: all
93Type: system ioctl
94Parameters: none
95Returns: the constant KVM_API_VERSION (=12)
96
97This identifies the API version as the stable kvm API. It is not
98expected that this number will change. However, Linux 2.6.20 and
992.6.21 report earlier versions; these are not documented and not
100supported. Applications should refuse to run if KVM_GET_API_VERSION
101returns a value other than 12. If this check passes, all ioctls
102described as 'basic' will be available.
103
414fa985 104
9c1b96e3
AK
1054.2 KVM_CREATE_VM
106
107Capability: basic
108Architectures: all
109Type: system ioctl
e08b9637 110Parameters: machine type identifier (KVM_VM_*)
9c1b96e3
AK
111Returns: a VM fd that can be used to control the new virtual machine.
112
bcb85c88 113The new VM has no virtual cpus and no memory.
a8a3c426 114You probably want to use 0 as machine type.
e08b9637
CO
115
116In order to create user controlled virtual machines on S390, check
117KVM_CAP_S390_UCONTROL and use the flag KVM_VM_S390_UCONTROL as
118privileged user (CAP_SYS_ADMIN).
9c1b96e3 119
a8a3c426
JH
120To use hardware assisted virtualization on MIPS (VZ ASE) rather than
121the default trap & emulate implementation (which changes the virtual
122memory layout to fit in user mode), check KVM_CAP_MIPS_VZ and use the
123flag KVM_VM_MIPS_VZ.
124
414fa985 125
233a7cb2
SP
126On arm64, the physical address size for a VM (IPA Size limit) is limited
127to 40bits by default. The limit can be configured if the host supports the
128extension KVM_CAP_ARM_VM_IPA_SIZE. When supported, use
129KVM_VM_TYPE_ARM_IPA_SIZE(IPA_Bits) to set the size in the machine type
130identifier, where IPA_Bits is the maximum width of any physical
131address used by the VM. The IPA_Bits is encoded in bits[7-0] of the
132machine type identifier.
133
134e.g, to configure a guest to use 48bit physical address size :
135
136 vm_fd = ioctl(dev_fd, KVM_CREATE_VM, KVM_VM_TYPE_ARM_IPA_SIZE(48));
137
138The requested size (IPA_Bits) must be :
139 0 - Implies default size, 40bits (for backward compatibility)
140
141 or
142
143 N - Implies N bits, where N is a positive integer such that,
144 32 <= N <= Host_IPA_Limit
145
146Host_IPA_Limit is the maximum possible value for IPA_Bits on the host and
147is dependent on the CPU capability and the kernel configuration. The limit can
148be retrieved using KVM_CAP_ARM_VM_IPA_SIZE of the KVM_CHECK_EXTENSION
149ioctl() at run-time.
150
151Please note that configuring the IPA size does not affect the capability
152exposed by the guest CPUs in ID_AA64MMFR0_EL1[PARange]. It only affects
153size of the address translated by the stage2 level (guest physical to
154host physical address translations).
155
156
801e459a 1574.3 KVM_GET_MSR_INDEX_LIST, KVM_GET_MSR_FEATURE_INDEX_LIST
9c1b96e3 158
801e459a 159Capability: basic, KVM_CAP_GET_MSR_FEATURES for KVM_GET_MSR_FEATURE_INDEX_LIST
9c1b96e3 160Architectures: x86
801e459a 161Type: system ioctl
9c1b96e3
AK
162Parameters: struct kvm_msr_list (in/out)
163Returns: 0 on success; -1 on error
164Errors:
801e459a 165 EFAULT: the msr index list cannot be read from or written to
9c1b96e3
AK
166 E2BIG: the msr index list is to be to fit in the array specified by
167 the user.
168
169struct kvm_msr_list {
170 __u32 nmsrs; /* number of msrs in entries */
171 __u32 indices[0];
172};
173
801e459a
TL
174The user fills in the size of the indices array in nmsrs, and in return
175kvm adjusts nmsrs to reflect the actual number of msrs and fills in the
176indices array with their numbers.
177
178KVM_GET_MSR_INDEX_LIST returns the guest msrs that are supported. The list
179varies by kvm version and host processor, but does not change otherwise.
9c1b96e3 180
2e2602ca
AK
181Note: if kvm indicates supports MCE (KVM_CAP_MCE), then the MCE bank MSRs are
182not returned in the MSR list, as different vcpus can have a different number
183of banks, as set via the KVM_X86_SETUP_MCE ioctl.
184
801e459a
TL
185KVM_GET_MSR_FEATURE_INDEX_LIST returns the list of MSRs that can be passed
186to the KVM_GET_MSRS system ioctl. This lets userspace probe host capabilities
187and processor features that are exposed via MSRs (e.g., VMX capabilities).
188This list also varies by kvm version and host processor, but does not change
189otherwise.
190
414fa985 191
9c1b96e3
AK
1924.4 KVM_CHECK_EXTENSION
193
92b591a4 194Capability: basic, KVM_CAP_CHECK_EXTENSION_VM for vm ioctl
9c1b96e3 195Architectures: all
92b591a4 196Type: system ioctl, vm ioctl
9c1b96e3
AK
197Parameters: extension identifier (KVM_CAP_*)
198Returns: 0 if unsupported; 1 (or some other positive integer) if supported
199
200The API allows the application to query about extensions to the core
201kvm API. Userspace passes an extension identifier (an integer) and
202receives an integer that describes the extension availability.
203Generally 0 means no and 1 means yes, but some extensions may report
204additional information in the integer return value.
205
92b591a4
AG
206Based on their initialization different VMs may have different capabilities.
207It is thus encouraged to use the vm ioctl to query for capabilities (available
208with KVM_CAP_CHECK_EXTENSION_VM on the vm fd)
414fa985 209
9c1b96e3
AK
2104.5 KVM_GET_VCPU_MMAP_SIZE
211
212Capability: basic
213Architectures: all
214Type: system ioctl
215Parameters: none
216Returns: size of vcpu mmap area, in bytes
217
218The KVM_RUN ioctl (cf.) communicates with userspace via a shared
219memory region. This ioctl returns the size of that region. See the
220KVM_RUN documentation for details.
221
414fa985 222
9c1b96e3
AK
2234.6 KVM_SET_MEMORY_REGION
224
225Capability: basic
226Architectures: all
227Type: vm ioctl
228Parameters: struct kvm_memory_region (in)
229Returns: 0 on success, -1 on error
230
b74a07be 231This ioctl is obsolete and has been removed.
9c1b96e3 232
414fa985 233
68ba6974 2344.7 KVM_CREATE_VCPU
9c1b96e3
AK
235
236Capability: basic
237Architectures: all
238Type: vm ioctl
239Parameters: vcpu id (apic id on x86)
240Returns: vcpu fd on success, -1 on error
241
0b1b1dfd
GK
242This API adds a vcpu to a virtual machine. No more than max_vcpus may be added.
243The vcpu id is an integer in the range [0, max_vcpu_id).
8c3ba334
SL
244
245The recommended max_vcpus value can be retrieved using the KVM_CAP_NR_VCPUS of
246the KVM_CHECK_EXTENSION ioctl() at run-time.
247The maximum possible value for max_vcpus can be retrieved using the
248KVM_CAP_MAX_VCPUS of the KVM_CHECK_EXTENSION ioctl() at run-time.
249
76d25402
PE
250If the KVM_CAP_NR_VCPUS does not exist, you should assume that max_vcpus is 4
251cpus max.
8c3ba334
SL
252If the KVM_CAP_MAX_VCPUS does not exist, you should assume that max_vcpus is
253same as the value returned from KVM_CAP_NR_VCPUS.
9c1b96e3 254
0b1b1dfd
GK
255The maximum possible value for max_vcpu_id can be retrieved using the
256KVM_CAP_MAX_VCPU_ID of the KVM_CHECK_EXTENSION ioctl() at run-time.
257
258If the KVM_CAP_MAX_VCPU_ID does not exist, you should assume that max_vcpu_id
259is the same as the value returned from KVM_CAP_MAX_VCPUS.
260
371fefd6
PM
261On powerpc using book3s_hv mode, the vcpus are mapped onto virtual
262threads in one or more virtual CPU cores. (This is because the
263hardware requires all the hardware threads in a CPU core to be in the
264same partition.) The KVM_CAP_PPC_SMT capability indicates the number
36442687
AK
265of vcpus per virtual core (vcore). The vcore id is obtained by
266dividing the vcpu id by the number of vcpus per vcore. The vcpus in a
267given vcore will always be in the same physical core as each other
268(though that might be a different physical core from time to time).
269Userspace can control the threading (SMT) mode of the guest by its
270allocation of vcpu ids. For example, if userspace wants
271single-threaded guest vcpus, it should make all vcpu ids be a multiple
272of the number of vcpus per vcore.
273
5b1c1493
CO
274For virtual cpus that have been created with S390 user controlled virtual
275machines, the resulting vcpu fd can be memory mapped at page offset
276KVM_S390_SIE_PAGE_OFFSET in order to obtain a memory map of the virtual
277cpu's hardware control block.
278
414fa985 279
68ba6974 2804.8 KVM_GET_DIRTY_LOG (vm ioctl)
9c1b96e3
AK
281
282Capability: basic
283Architectures: x86
284Type: vm ioctl
285Parameters: struct kvm_dirty_log (in/out)
286Returns: 0 on success, -1 on error
287
288/* for KVM_GET_DIRTY_LOG */
289struct kvm_dirty_log {
290 __u32 slot;
291 __u32 padding;
292 union {
293 void __user *dirty_bitmap; /* one bit per page */
294 __u64 padding;
295 };
296};
297
298Given a memory slot, return a bitmap containing any pages dirtied
299since the last call to this ioctl. Bit 0 is the first page in the
300memory slot. Ensure the entire structure is cleared to avoid padding
301issues.
302
f481b069
PB
303If KVM_CAP_MULTI_ADDRESS_SPACE is available, bits 16-31 specifies
304the address space for which you want to return the dirty bitmap.
305They must be less than the value that KVM_CHECK_EXTENSION returns for
306the KVM_CAP_MULTI_ADDRESS_SPACE capability.
307
2a31b9db
PB
308The bits in the dirty bitmap are cleared before the ioctl returns, unless
309KVM_CAP_MANUAL_DIRTY_LOG_PROTECT is enabled. For more information,
310see the description of the capability.
414fa985 311
68ba6974 3124.9 KVM_SET_MEMORY_ALIAS
9c1b96e3
AK
313
314Capability: basic
315Architectures: x86
316Type: vm ioctl
317Parameters: struct kvm_memory_alias (in)
318Returns: 0 (success), -1 (error)
319
a1f4d395 320This ioctl is obsolete and has been removed.
9c1b96e3 321
414fa985 322
68ba6974 3234.10 KVM_RUN
9c1b96e3
AK
324
325Capability: basic
326Architectures: all
327Type: vcpu ioctl
328Parameters: none
329Returns: 0 on success, -1 on error
330Errors:
331 EINTR: an unmasked signal is pending
332
333This ioctl is used to run a guest virtual cpu. While there are no
334explicit parameters, there is an implicit parameter block that can be
335obtained by mmap()ing the vcpu fd at offset 0, with the size given by
336KVM_GET_VCPU_MMAP_SIZE. The parameter block is formatted as a 'struct
337kvm_run' (see below).
338
414fa985 339
68ba6974 3404.11 KVM_GET_REGS
9c1b96e3
AK
341
342Capability: basic
379e04c7 343Architectures: all except ARM, arm64
9c1b96e3
AK
344Type: vcpu ioctl
345Parameters: struct kvm_regs (out)
346Returns: 0 on success, -1 on error
347
348Reads the general purpose registers from the vcpu.
349
350/* x86 */
351struct kvm_regs {
352 /* out (KVM_GET_REGS) / in (KVM_SET_REGS) */
353 __u64 rax, rbx, rcx, rdx;
354 __u64 rsi, rdi, rsp, rbp;
355 __u64 r8, r9, r10, r11;
356 __u64 r12, r13, r14, r15;
357 __u64 rip, rflags;
358};
359
c2d2c21b
JH
360/* mips */
361struct kvm_regs {
362 /* out (KVM_GET_REGS) / in (KVM_SET_REGS) */
363 __u64 gpr[32];
364 __u64 hi;
365 __u64 lo;
366 __u64 pc;
367};
368
414fa985 369
68ba6974 3704.12 KVM_SET_REGS
9c1b96e3
AK
371
372Capability: basic
379e04c7 373Architectures: all except ARM, arm64
9c1b96e3
AK
374Type: vcpu ioctl
375Parameters: struct kvm_regs (in)
376Returns: 0 on success, -1 on error
377
378Writes the general purpose registers into the vcpu.
379
380See KVM_GET_REGS for the data structure.
381
414fa985 382
68ba6974 3834.13 KVM_GET_SREGS
9c1b96e3
AK
384
385Capability: basic
5ce941ee 386Architectures: x86, ppc
9c1b96e3
AK
387Type: vcpu ioctl
388Parameters: struct kvm_sregs (out)
389Returns: 0 on success, -1 on error
390
391Reads special registers from the vcpu.
392
393/* x86 */
394struct kvm_sregs {
395 struct kvm_segment cs, ds, es, fs, gs, ss;
396 struct kvm_segment tr, ldt;
397 struct kvm_dtable gdt, idt;
398 __u64 cr0, cr2, cr3, cr4, cr8;
399 __u64 efer;
400 __u64 apic_base;
401 __u64 interrupt_bitmap[(KVM_NR_INTERRUPTS + 63) / 64];
402};
403
68e2ffed 404/* ppc -- see arch/powerpc/include/uapi/asm/kvm.h */
5ce941ee 405
9c1b96e3
AK
406interrupt_bitmap is a bitmap of pending external interrupts. At most
407one bit may be set. This interrupt has been acknowledged by the APIC
408but not yet injected into the cpu core.
409
414fa985 410
68ba6974 4114.14 KVM_SET_SREGS
9c1b96e3
AK
412
413Capability: basic
5ce941ee 414Architectures: x86, ppc
9c1b96e3
AK
415Type: vcpu ioctl
416Parameters: struct kvm_sregs (in)
417Returns: 0 on success, -1 on error
418
419Writes special registers into the vcpu. See KVM_GET_SREGS for the
420data structures.
421
414fa985 422
68ba6974 4234.15 KVM_TRANSLATE
9c1b96e3
AK
424
425Capability: basic
426Architectures: x86
427Type: vcpu ioctl
428Parameters: struct kvm_translation (in/out)
429Returns: 0 on success, -1 on error
430
431Translates a virtual address according to the vcpu's current address
432translation mode.
433
434struct kvm_translation {
435 /* in */
436 __u64 linear_address;
437
438 /* out */
439 __u64 physical_address;
440 __u8 valid;
441 __u8 writeable;
442 __u8 usermode;
443 __u8 pad[5];
444};
445
414fa985 446
68ba6974 4474.16 KVM_INTERRUPT
9c1b96e3
AK
448
449Capability: basic
c2d2c21b 450Architectures: x86, ppc, mips
9c1b96e3
AK
451Type: vcpu ioctl
452Parameters: struct kvm_interrupt (in)
1c1a9ce9 453Returns: 0 on success, negative on failure.
9c1b96e3 454
1c1a9ce9 455Queues a hardware interrupt vector to be injected.
9c1b96e3
AK
456
457/* for KVM_INTERRUPT */
458struct kvm_interrupt {
459 /* in */
460 __u32 irq;
461};
462
6f7a2bd4
AG
463X86:
464
1c1a9ce9
SR
465Returns: 0 on success,
466 -EEXIST if an interrupt is already enqueued
467 -EINVAL the the irq number is invalid
468 -ENXIO if the PIC is in the kernel
469 -EFAULT if the pointer is invalid
470
471Note 'irq' is an interrupt vector, not an interrupt pin or line. This
472ioctl is useful if the in-kernel PIC is not used.
9c1b96e3 473
6f7a2bd4
AG
474PPC:
475
476Queues an external interrupt to be injected. This ioctl is overleaded
477with 3 different irq values:
478
479a) KVM_INTERRUPT_SET
480
481 This injects an edge type external interrupt into the guest once it's ready
482 to receive interrupts. When injected, the interrupt is done.
483
484b) KVM_INTERRUPT_UNSET
485
486 This unsets any pending interrupt.
487
488 Only available with KVM_CAP_PPC_UNSET_IRQ.
489
490c) KVM_INTERRUPT_SET_LEVEL
491
492 This injects a level type external interrupt into the guest context. The
493 interrupt stays pending until a specific ioctl with KVM_INTERRUPT_UNSET
494 is triggered.
495
496 Only available with KVM_CAP_PPC_IRQ_LEVEL.
497
498Note that any value for 'irq' other than the ones stated above is invalid
499and incurs unexpected behavior.
500
c2d2c21b
JH
501MIPS:
502
503Queues an external interrupt to be injected into the virtual CPU. A negative
504interrupt number dequeues the interrupt.
505
414fa985 506
68ba6974 5074.17 KVM_DEBUG_GUEST
9c1b96e3
AK
508
509Capability: basic
510Architectures: none
511Type: vcpu ioctl
512Parameters: none)
513Returns: -1 on error
514
515Support for this has been removed. Use KVM_SET_GUEST_DEBUG instead.
516
414fa985 517
68ba6974 5184.18 KVM_GET_MSRS
9c1b96e3 519
801e459a 520Capability: basic (vcpu), KVM_CAP_GET_MSR_FEATURES (system)
9c1b96e3 521Architectures: x86
801e459a 522Type: system ioctl, vcpu ioctl
9c1b96e3 523Parameters: struct kvm_msrs (in/out)
801e459a
TL
524Returns: number of msrs successfully returned;
525 -1 on error
526
527When used as a system ioctl:
528Reads the values of MSR-based features that are available for the VM. This
529is similar to KVM_GET_SUPPORTED_CPUID, but it returns MSR indices and values.
530The list of msr-based features can be obtained using KVM_GET_MSR_FEATURE_INDEX_LIST
531in a system ioctl.
9c1b96e3 532
801e459a 533When used as a vcpu ioctl:
9c1b96e3 534Reads model-specific registers from the vcpu. Supported msr indices can
801e459a 535be obtained using KVM_GET_MSR_INDEX_LIST in a system ioctl.
9c1b96e3
AK
536
537struct kvm_msrs {
538 __u32 nmsrs; /* number of msrs in entries */
539 __u32 pad;
540
541 struct kvm_msr_entry entries[0];
542};
543
544struct kvm_msr_entry {
545 __u32 index;
546 __u32 reserved;
547 __u64 data;
548};
549
550Application code should set the 'nmsrs' member (which indicates the
551size of the entries array) and the 'index' member of each array entry.
552kvm will fill in the 'data' member.
553
414fa985 554
68ba6974 5554.19 KVM_SET_MSRS
9c1b96e3
AK
556
557Capability: basic
558Architectures: x86
559Type: vcpu ioctl
560Parameters: struct kvm_msrs (in)
561Returns: 0 on success, -1 on error
562
563Writes model-specific registers to the vcpu. See KVM_GET_MSRS for the
564data structures.
565
566Application code should set the 'nmsrs' member (which indicates the
567size of the entries array), and the 'index' and 'data' members of each
568array entry.
569
414fa985 570
68ba6974 5714.20 KVM_SET_CPUID
9c1b96e3
AK
572
573Capability: basic
574Architectures: x86
575Type: vcpu ioctl
576Parameters: struct kvm_cpuid (in)
577Returns: 0 on success, -1 on error
578
579Defines the vcpu responses to the cpuid instruction. Applications
580should use the KVM_SET_CPUID2 ioctl if available.
581
582
583struct kvm_cpuid_entry {
584 __u32 function;
585 __u32 eax;
586 __u32 ebx;
587 __u32 ecx;
588 __u32 edx;
589 __u32 padding;
590};
591
592/* for KVM_SET_CPUID */
593struct kvm_cpuid {
594 __u32 nent;
595 __u32 padding;
596 struct kvm_cpuid_entry entries[0];
597};
598
414fa985 599
68ba6974 6004.21 KVM_SET_SIGNAL_MASK
9c1b96e3
AK
601
602Capability: basic
572e0929 603Architectures: all
9c1b96e3
AK
604Type: vcpu ioctl
605Parameters: struct kvm_signal_mask (in)
606Returns: 0 on success, -1 on error
607
608Defines which signals are blocked during execution of KVM_RUN. This
609signal mask temporarily overrides the threads signal mask. Any
610unblocked signal received (except SIGKILL and SIGSTOP, which retain
611their traditional behaviour) will cause KVM_RUN to return with -EINTR.
612
613Note the signal will only be delivered if not blocked by the original
614signal mask.
615
616/* for KVM_SET_SIGNAL_MASK */
617struct kvm_signal_mask {
618 __u32 len;
619 __u8 sigset[0];
620};
621
414fa985 622
68ba6974 6234.22 KVM_GET_FPU
9c1b96e3
AK
624
625Capability: basic
626Architectures: x86
627Type: vcpu ioctl
628Parameters: struct kvm_fpu (out)
629Returns: 0 on success, -1 on error
630
631Reads the floating point state from the vcpu.
632
633/* for KVM_GET_FPU and KVM_SET_FPU */
634struct kvm_fpu {
635 __u8 fpr[8][16];
636 __u16 fcw;
637 __u16 fsw;
638 __u8 ftwx; /* in fxsave format */
639 __u8 pad1;
640 __u16 last_opcode;
641 __u64 last_ip;
642 __u64 last_dp;
643 __u8 xmm[16][16];
644 __u32 mxcsr;
645 __u32 pad2;
646};
647
414fa985 648
68ba6974 6494.23 KVM_SET_FPU
9c1b96e3
AK
650
651Capability: basic
652Architectures: x86
653Type: vcpu ioctl
654Parameters: struct kvm_fpu (in)
655Returns: 0 on success, -1 on error
656
657Writes the floating point state to the vcpu.
658
659/* for KVM_GET_FPU and KVM_SET_FPU */
660struct kvm_fpu {
661 __u8 fpr[8][16];
662 __u16 fcw;
663 __u16 fsw;
664 __u8 ftwx; /* in fxsave format */
665 __u8 pad1;
666 __u16 last_opcode;
667 __u64 last_ip;
668 __u64 last_dp;
669 __u8 xmm[16][16];
670 __u32 mxcsr;
671 __u32 pad2;
672};
673
414fa985 674
68ba6974 6754.24 KVM_CREATE_IRQCHIP
5dadbfd6 676
84223598 677Capability: KVM_CAP_IRQCHIP, KVM_CAP_S390_IRQCHIP (s390)
c32a4272 678Architectures: x86, ARM, arm64, s390
5dadbfd6
AK
679Type: vm ioctl
680Parameters: none
681Returns: 0 on success, -1 on error
682
ac3d3735
AP
683Creates an interrupt controller model in the kernel.
684On x86, creates a virtual ioapic, a virtual PIC (two PICs, nested), and sets up
685future vcpus to have a local APIC. IRQ routing for GSIs 0-15 is set to both
686PIC and IOAPIC; GSI 16-23 only go to the IOAPIC.
687On ARM/arm64, a GICv2 is created. Any other GIC versions require the usage of
688KVM_CREATE_DEVICE, which also supports creating a GICv2. Using
689KVM_CREATE_DEVICE is preferred over KVM_CREATE_IRQCHIP for GICv2.
690On s390, a dummy irq routing table is created.
84223598
CH
691
692Note that on s390 the KVM_CAP_S390_IRQCHIP vm capability needs to be enabled
693before KVM_CREATE_IRQCHIP can be used.
5dadbfd6 694
414fa985 695
68ba6974 6964.25 KVM_IRQ_LINE
5dadbfd6
AK
697
698Capability: KVM_CAP_IRQCHIP
c32a4272 699Architectures: x86, arm, arm64
5dadbfd6
AK
700Type: vm ioctl
701Parameters: struct kvm_irq_level
702Returns: 0 on success, -1 on error
703
704Sets the level of a GSI input to the interrupt controller model in the kernel.
86ce8535
CD
705On some architectures it is required that an interrupt controller model has
706been previously created with KVM_CREATE_IRQCHIP. Note that edge-triggered
707interrupts require the level to be set to 1 and then back to 0.
708
100943c5
GS
709On real hardware, interrupt pins can be active-low or active-high. This
710does not matter for the level field of struct kvm_irq_level: 1 always
711means active (asserted), 0 means inactive (deasserted).
712
713x86 allows the operating system to program the interrupt polarity
714(active-low/active-high) for level-triggered interrupts, and KVM used
715to consider the polarity. However, due to bitrot in the handling of
716active-low interrupts, the above convention is now valid on x86 too.
717This is signaled by KVM_CAP_X86_IOAPIC_POLARITY_IGNORED. Userspace
718should not present interrupts to the guest as active-low unless this
719capability is present (or unless it is not using the in-kernel irqchip,
720of course).
721
722
379e04c7
MZ
723ARM/arm64 can signal an interrupt either at the CPU level, or at the
724in-kernel irqchip (GIC), and for in-kernel irqchip can tell the GIC to
725use PPIs designated for specific cpus. The irq field is interpreted
726like this:
86ce8535
CD
727
728  bits: | 31 ... 24 | 23 ... 16 | 15 ... 0 |
729 field: | irq_type | vcpu_index | irq_id |
730
731The irq_type field has the following values:
732- irq_type[0]: out-of-kernel GIC: irq_id 0 is IRQ, irq_id 1 is FIQ
733- irq_type[1]: in-kernel GIC: SPI, irq_id between 32 and 1019 (incl.)
734 (the vcpu_index field is ignored)
735- irq_type[2]: in-kernel GIC: PPI, irq_id between 16 and 31 (incl.)
736
737(The irq_id field thus corresponds nicely to the IRQ ID in the ARM GIC specs)
738
100943c5 739In both cases, level is used to assert/deassert the line.
5dadbfd6
AK
740
741struct kvm_irq_level {
742 union {
743 __u32 irq; /* GSI */
744 __s32 status; /* not used for KVM_IRQ_LEVEL */
745 };
746 __u32 level; /* 0 or 1 */
747};
748
414fa985 749
68ba6974 7504.26 KVM_GET_IRQCHIP
5dadbfd6
AK
751
752Capability: KVM_CAP_IRQCHIP
c32a4272 753Architectures: x86
5dadbfd6
AK
754Type: vm ioctl
755Parameters: struct kvm_irqchip (in/out)
756Returns: 0 on success, -1 on error
757
758Reads the state of a kernel interrupt controller created with
759KVM_CREATE_IRQCHIP into a buffer provided by the caller.
760
761struct kvm_irqchip {
762 __u32 chip_id; /* 0 = PIC1, 1 = PIC2, 2 = IOAPIC */
763 __u32 pad;
764 union {
765 char dummy[512]; /* reserving space */
766 struct kvm_pic_state pic;
767 struct kvm_ioapic_state ioapic;
768 } chip;
769};
770
414fa985 771
68ba6974 7724.27 KVM_SET_IRQCHIP
5dadbfd6
AK
773
774Capability: KVM_CAP_IRQCHIP
c32a4272 775Architectures: x86
5dadbfd6
AK
776Type: vm ioctl
777Parameters: struct kvm_irqchip (in)
778Returns: 0 on success, -1 on error
779
780Sets the state of a kernel interrupt controller created with
781KVM_CREATE_IRQCHIP from a buffer provided by the caller.
782
783struct kvm_irqchip {
784 __u32 chip_id; /* 0 = PIC1, 1 = PIC2, 2 = IOAPIC */
785 __u32 pad;
786 union {
787 char dummy[512]; /* reserving space */
788 struct kvm_pic_state pic;
789 struct kvm_ioapic_state ioapic;
790 } chip;
791};
792
414fa985 793
68ba6974 7944.28 KVM_XEN_HVM_CONFIG
ffde22ac
ES
795
796Capability: KVM_CAP_XEN_HVM
797Architectures: x86
798Type: vm ioctl
799Parameters: struct kvm_xen_hvm_config (in)
800Returns: 0 on success, -1 on error
801
802Sets the MSR that the Xen HVM guest uses to initialize its hypercall
803page, and provides the starting address and size of the hypercall
804blobs in userspace. When the guest writes the MSR, kvm copies one
805page of a blob (32- or 64-bit, depending on the vcpu mode) to guest
806memory.
807
808struct kvm_xen_hvm_config {
809 __u32 flags;
810 __u32 msr;
811 __u64 blob_addr_32;
812 __u64 blob_addr_64;
813 __u8 blob_size_32;
814 __u8 blob_size_64;
815 __u8 pad2[30];
816};
817
414fa985 818
68ba6974 8194.29 KVM_GET_CLOCK
afbcf7ab
GC
820
821Capability: KVM_CAP_ADJUST_CLOCK
822Architectures: x86
823Type: vm ioctl
824Parameters: struct kvm_clock_data (out)
825Returns: 0 on success, -1 on error
826
827Gets the current timestamp of kvmclock as seen by the current guest. In
828conjunction with KVM_SET_CLOCK, it is used to ensure monotonicity on scenarios
829such as migration.
830
e3fd9a93
PB
831When KVM_CAP_ADJUST_CLOCK is passed to KVM_CHECK_EXTENSION, it returns the
832set of bits that KVM can return in struct kvm_clock_data's flag member.
833
834The only flag defined now is KVM_CLOCK_TSC_STABLE. If set, the returned
835value is the exact kvmclock value seen by all VCPUs at the instant
836when KVM_GET_CLOCK was called. If clear, the returned value is simply
837CLOCK_MONOTONIC plus a constant offset; the offset can be modified
838with KVM_SET_CLOCK. KVM will try to make all VCPUs follow this clock,
839but the exact value read by each VCPU could differ, because the host
840TSC is not stable.
841
afbcf7ab
GC
842struct kvm_clock_data {
843 __u64 clock; /* kvmclock current value */
844 __u32 flags;
845 __u32 pad[9];
846};
847
414fa985 848
68ba6974 8494.30 KVM_SET_CLOCK
afbcf7ab
GC
850
851Capability: KVM_CAP_ADJUST_CLOCK
852Architectures: x86
853Type: vm ioctl
854Parameters: struct kvm_clock_data (in)
855Returns: 0 on success, -1 on error
856
2044892d 857Sets the current timestamp of kvmclock to the value specified in its parameter.
afbcf7ab
GC
858In conjunction with KVM_GET_CLOCK, it is used to ensure monotonicity on scenarios
859such as migration.
860
861struct kvm_clock_data {
862 __u64 clock; /* kvmclock current value */
863 __u32 flags;
864 __u32 pad[9];
865};
866
414fa985 867
68ba6974 8684.31 KVM_GET_VCPU_EVENTS
3cfc3092
JK
869
870Capability: KVM_CAP_VCPU_EVENTS
48005f64 871Extended by: KVM_CAP_INTR_SHADOW
b0960b95 872Architectures: x86, arm, arm64
b7b27fac 873Type: vcpu ioctl
3cfc3092
JK
874Parameters: struct kvm_vcpu_event (out)
875Returns: 0 on success, -1 on error
876
b7b27fac
DG
877X86:
878
3cfc3092
JK
879Gets currently pending exceptions, interrupts, and NMIs as well as related
880states of the vcpu.
881
882struct kvm_vcpu_events {
883 struct {
884 __u8 injected;
885 __u8 nr;
886 __u8 has_error_code;
59073aaf 887 __u8 pending;
3cfc3092
JK
888 __u32 error_code;
889 } exception;
890 struct {
891 __u8 injected;
892 __u8 nr;
893 __u8 soft;
48005f64 894 __u8 shadow;
3cfc3092
JK
895 } interrupt;
896 struct {
897 __u8 injected;
898 __u8 pending;
899 __u8 masked;
900 __u8 pad;
901 } nmi;
902 __u32 sipi_vector;
dab4b911 903 __u32 flags;
f077825a
PB
904 struct {
905 __u8 smm;
906 __u8 pending;
907 __u8 smm_inside_nmi;
908 __u8 latched_init;
909 } smi;
59073aaf
JM
910 __u8 reserved[27];
911 __u8 exception_has_payload;
912 __u64 exception_payload;
3cfc3092
JK
913};
914
59073aaf 915The following bits are defined in the flags field:
f077825a 916
59073aaf 917- KVM_VCPUEVENT_VALID_SHADOW may be set to signal that
f077825a 918 interrupt.shadow contains a valid state.
48005f64 919
59073aaf
JM
920- KVM_VCPUEVENT_VALID_SMM may be set to signal that smi contains a
921 valid state.
922
923- KVM_VCPUEVENT_VALID_PAYLOAD may be set to signal that the
924 exception_has_payload, exception_payload, and exception.pending
925 fields contain a valid state. This bit will be set whenever
926 KVM_CAP_EXCEPTION_PAYLOAD is enabled.
414fa985 927
b0960b95 928ARM/ARM64:
b7b27fac
DG
929
930If the guest accesses a device that is being emulated by the host kernel in
931such a way that a real device would generate a physical SError, KVM may make
932a virtual SError pending for that VCPU. This system error interrupt remains
933pending until the guest takes the exception by unmasking PSTATE.A.
934
935Running the VCPU may cause it to take a pending SError, or make an access that
936causes an SError to become pending. The event's description is only valid while
937the VPCU is not running.
938
939This API provides a way to read and write the pending 'event' state that is not
940visible to the guest. To save, restore or migrate a VCPU the struct representing
941the state can be read then written using this GET/SET API, along with the other
942guest-visible registers. It is not possible to 'cancel' an SError that has been
943made pending.
944
945A device being emulated in user-space may also wish to generate an SError. To do
946this the events structure can be populated by user-space. The current state
947should be read first, to ensure no existing SError is pending. If an existing
948SError is pending, the architecture's 'Multiple SError interrupts' rules should
949be followed. (2.5.3 of DDI0587.a "ARM Reliability, Availability, and
950Serviceability (RAS) Specification").
951
be26b3a7
DG
952SError exceptions always have an ESR value. Some CPUs have the ability to
953specify what the virtual SError's ESR value should be. These systems will
688e0581 954advertise KVM_CAP_ARM_INJECT_SERROR_ESR. In this case exception.has_esr will
be26b3a7
DG
955always have a non-zero value when read, and the agent making an SError pending
956should specify the ISS field in the lower 24 bits of exception.serror_esr. If
688e0581 957the system supports KVM_CAP_ARM_INJECT_SERROR_ESR, but user-space sets the events
be26b3a7
DG
958with exception.has_esr as zero, KVM will choose an ESR.
959
960Specifying exception.has_esr on a system that does not support it will return
961-EINVAL. Setting anything other than the lower 24bits of exception.serror_esr
962will return -EINVAL.
963
b7b27fac
DG
964struct kvm_vcpu_events {
965 struct {
966 __u8 serror_pending;
967 __u8 serror_has_esr;
968 /* Align it to 8 bytes */
969 __u8 pad[6];
970 __u64 serror_esr;
971 } exception;
972 __u32 reserved[12];
973};
974
68ba6974 9754.32 KVM_SET_VCPU_EVENTS
3cfc3092
JK
976
977Capability: KVM_CAP_VCPU_EVENTS
48005f64 978Extended by: KVM_CAP_INTR_SHADOW
b0960b95 979Architectures: x86, arm, arm64
b7b27fac 980Type: vcpu ioctl
3cfc3092
JK
981Parameters: struct kvm_vcpu_event (in)
982Returns: 0 on success, -1 on error
983
b7b27fac
DG
984X86:
985
3cfc3092
JK
986Set pending exceptions, interrupts, and NMIs as well as related states of the
987vcpu.
988
989See KVM_GET_VCPU_EVENTS for the data structure.
990
dab4b911 991Fields that may be modified asynchronously by running VCPUs can be excluded
f077825a
PB
992from the update. These fields are nmi.pending, sipi_vector, smi.smm,
993smi.pending. Keep the corresponding bits in the flags field cleared to
994suppress overwriting the current in-kernel state. The bits are:
dab4b911
JK
995
996KVM_VCPUEVENT_VALID_NMI_PENDING - transfer nmi.pending to the kernel
997KVM_VCPUEVENT_VALID_SIPI_VECTOR - transfer sipi_vector
f077825a 998KVM_VCPUEVENT_VALID_SMM - transfer the smi sub-struct.
dab4b911 999
48005f64
JK
1000If KVM_CAP_INTR_SHADOW is available, KVM_VCPUEVENT_VALID_SHADOW can be set in
1001the flags field to signal that interrupt.shadow contains a valid state and
1002shall be written into the VCPU.
1003
f077825a
PB
1004KVM_VCPUEVENT_VALID_SMM can only be set if KVM_CAP_X86_SMM is available.
1005
59073aaf
JM
1006If KVM_CAP_EXCEPTION_PAYLOAD is enabled, KVM_VCPUEVENT_VALID_PAYLOAD
1007can be set in the flags field to signal that the
1008exception_has_payload, exception_payload, and exception.pending fields
1009contain a valid state and shall be written into the VCPU.
1010
b0960b95 1011ARM/ARM64:
b7b27fac
DG
1012
1013Set the pending SError exception state for this VCPU. It is not possible to
1014'cancel' an Serror that has been made pending.
1015
1016See KVM_GET_VCPU_EVENTS for the data structure.
1017
414fa985 1018
68ba6974 10194.33 KVM_GET_DEBUGREGS
a1efbe77
JK
1020
1021Capability: KVM_CAP_DEBUGREGS
1022Architectures: x86
1023Type: vm ioctl
1024Parameters: struct kvm_debugregs (out)
1025Returns: 0 on success, -1 on error
1026
1027Reads debug registers from the vcpu.
1028
1029struct kvm_debugregs {
1030 __u64 db[4];
1031 __u64 dr6;
1032 __u64 dr7;
1033 __u64 flags;
1034 __u64 reserved[9];
1035};
1036
414fa985 1037
68ba6974 10384.34 KVM_SET_DEBUGREGS
a1efbe77
JK
1039
1040Capability: KVM_CAP_DEBUGREGS
1041Architectures: x86
1042Type: vm ioctl
1043Parameters: struct kvm_debugregs (in)
1044Returns: 0 on success, -1 on error
1045
1046Writes debug registers into the vcpu.
1047
1048See KVM_GET_DEBUGREGS for the data structure. The flags field is unused
1049yet and must be cleared on entry.
1050
414fa985 1051
68ba6974 10524.35 KVM_SET_USER_MEMORY_REGION
0f2d8f4d
AK
1053
1054Capability: KVM_CAP_USER_MEM
1055Architectures: all
1056Type: vm ioctl
1057Parameters: struct kvm_userspace_memory_region (in)
1058Returns: 0 on success, -1 on error
1059
1060struct kvm_userspace_memory_region {
1061 __u32 slot;
1062 __u32 flags;
1063 __u64 guest_phys_addr;
1064 __u64 memory_size; /* bytes */
1065 __u64 userspace_addr; /* start of the userspace allocated memory */
1066};
1067
1068/* for kvm_memory_region::flags */
4d8b81ab
XG
1069#define KVM_MEM_LOG_DIRTY_PAGES (1UL << 0)
1070#define KVM_MEM_READONLY (1UL << 1)
0f2d8f4d
AK
1071
1072This ioctl allows the user to create or modify a guest physical memory
1073slot. When changing an existing slot, it may be moved in the guest
1074physical memory space, or its flags may be modified. It may not be
1075resized. Slots may not overlap in guest physical address space.
a677e704
LC
1076Bits 0-15 of "slot" specifies the slot id and this value should be
1077less than the maximum number of user memory slots supported per VM.
1078The maximum allowed slots can be queried using KVM_CAP_NR_MEMSLOTS,
1079if this capability is supported by the architecture.
0f2d8f4d 1080
f481b069
PB
1081If KVM_CAP_MULTI_ADDRESS_SPACE is available, bits 16-31 of "slot"
1082specifies the address space which is being modified. They must be
1083less than the value that KVM_CHECK_EXTENSION returns for the
1084KVM_CAP_MULTI_ADDRESS_SPACE capability. Slots in separate address spaces
1085are unrelated; the restriction on overlapping slots only applies within
1086each address space.
1087
0f2d8f4d
AK
1088Memory for the region is taken starting at the address denoted by the
1089field userspace_addr, which must point at user addressable memory for
1090the entire memory slot size. Any object may back this memory, including
1091anonymous memory, ordinary files, and hugetlbfs.
1092
1093It is recommended that the lower 21 bits of guest_phys_addr and userspace_addr
1094be identical. This allows large pages in the guest to be backed by large
1095pages in the host.
1096
75d61fbc
TY
1097The flags field supports two flags: KVM_MEM_LOG_DIRTY_PAGES and
1098KVM_MEM_READONLY. The former can be set to instruct KVM to keep track of
1099writes to memory within the slot. See KVM_GET_DIRTY_LOG ioctl to know how to
1100use it. The latter can be set, if KVM_CAP_READONLY_MEM capability allows it,
1101to make a new slot read-only. In this case, writes to this memory will be
1102posted to userspace as KVM_EXIT_MMIO exits.
7efd8fa1
JK
1103
1104When the KVM_CAP_SYNC_MMU capability is available, changes in the backing of
1105the memory region are automatically reflected into the guest. For example, an
1106mmap() that affects the region will be made visible immediately. Another
1107example is madvise(MADV_DROP).
0f2d8f4d
AK
1108
1109It is recommended to use this API instead of the KVM_SET_MEMORY_REGION ioctl.
1110The KVM_SET_MEMORY_REGION does not allow fine grained control over memory
1111allocation and is deprecated.
3cfc3092 1112
414fa985 1113
68ba6974 11144.36 KVM_SET_TSS_ADDR
8a5416db
AK
1115
1116Capability: KVM_CAP_SET_TSS_ADDR
1117Architectures: x86
1118Type: vm ioctl
1119Parameters: unsigned long tss_address (in)
1120Returns: 0 on success, -1 on error
1121
1122This ioctl defines the physical address of a three-page region in the guest
1123physical address space. The region must be within the first 4GB of the
1124guest physical address space and must not conflict with any memory slot
1125or any mmio address. The guest may malfunction if it accesses this memory
1126region.
1127
1128This ioctl is required on Intel-based hosts. This is needed on Intel hardware
1129because of a quirk in the virtualization implementation (see the internals
1130documentation when it pops into existence).
1131
414fa985 1132
68ba6974 11334.37 KVM_ENABLE_CAP
71fbfd5f 1134
e5d83c74
PB
1135Capability: KVM_CAP_ENABLE_CAP
1136Architectures: mips, ppc, s390
1137Type: vcpu ioctl
1138Parameters: struct kvm_enable_cap (in)
1139Returns: 0 on success; -1 on error
1140
1141Capability: KVM_CAP_ENABLE_CAP_VM
1142Architectures: all
1143Type: vcpu ioctl
71fbfd5f
AG
1144Parameters: struct kvm_enable_cap (in)
1145Returns: 0 on success; -1 on error
1146
1147+Not all extensions are enabled by default. Using this ioctl the application
1148can enable an extension, making it available to the guest.
1149
1150On systems that do not support this ioctl, it always fails. On systems that
1151do support it, it only works for extensions that are supported for enablement.
1152
1153To check if a capability can be enabled, the KVM_CHECK_EXTENSION ioctl should
1154be used.
1155
1156struct kvm_enable_cap {
1157 /* in */
1158 __u32 cap;
1159
1160The capability that is supposed to get enabled.
1161
1162 __u32 flags;
1163
1164A bitfield indicating future enhancements. Has to be 0 for now.
1165
1166 __u64 args[4];
1167
1168Arguments for enabling a feature. If a feature needs initial values to
1169function properly, this is the place to put them.
1170
1171 __u8 pad[64];
1172};
1173
d938dc55
CH
1174The vcpu ioctl should be used for vcpu-specific capabilities, the vm ioctl
1175for vm-wide capabilities.
414fa985 1176
68ba6974 11774.38 KVM_GET_MP_STATE
b843f065
AK
1178
1179Capability: KVM_CAP_MP_STATE
ecccf0cc 1180Architectures: x86, s390, arm, arm64
b843f065
AK
1181Type: vcpu ioctl
1182Parameters: struct kvm_mp_state (out)
1183Returns: 0 on success; -1 on error
1184
1185struct kvm_mp_state {
1186 __u32 mp_state;
1187};
1188
1189Returns the vcpu's current "multiprocessing state" (though also valid on
1190uniprocessor guests).
1191
1192Possible values are:
1193
ecccf0cc 1194 - KVM_MP_STATE_RUNNABLE: the vcpu is currently running [x86,arm/arm64]
b843f065 1195 - KVM_MP_STATE_UNINITIALIZED: the vcpu is an application processor (AP)
c32a4272 1196 which has not yet received an INIT signal [x86]
b843f065 1197 - KVM_MP_STATE_INIT_RECEIVED: the vcpu has received an INIT signal, and is
c32a4272 1198 now ready for a SIPI [x86]
b843f065 1199 - KVM_MP_STATE_HALTED: the vcpu has executed a HLT instruction and
c32a4272 1200 is waiting for an interrupt [x86]
b843f065 1201 - KVM_MP_STATE_SIPI_RECEIVED: the vcpu has just received a SIPI (vector
c32a4272 1202 accessible via KVM_GET_VCPU_EVENTS) [x86]
ecccf0cc 1203 - KVM_MP_STATE_STOPPED: the vcpu is stopped [s390,arm/arm64]
6352e4d2
DH
1204 - KVM_MP_STATE_CHECK_STOP: the vcpu is in a special error state [s390]
1205 - KVM_MP_STATE_OPERATING: the vcpu is operating (running or halted)
1206 [s390]
1207 - KVM_MP_STATE_LOAD: the vcpu is in a special load/startup state
1208 [s390]
b843f065 1209
c32a4272 1210On x86, this ioctl is only useful after KVM_CREATE_IRQCHIP. Without an
0b4820d6
DH
1211in-kernel irqchip, the multiprocessing state must be maintained by userspace on
1212these architectures.
b843f065 1213
ecccf0cc
AB
1214For arm/arm64:
1215
1216The only states that are valid are KVM_MP_STATE_STOPPED and
1217KVM_MP_STATE_RUNNABLE which reflect if the vcpu is paused or not.
414fa985 1218
68ba6974 12194.39 KVM_SET_MP_STATE
b843f065
AK
1220
1221Capability: KVM_CAP_MP_STATE
ecccf0cc 1222Architectures: x86, s390, arm, arm64
b843f065
AK
1223Type: vcpu ioctl
1224Parameters: struct kvm_mp_state (in)
1225Returns: 0 on success; -1 on error
1226
1227Sets the vcpu's current "multiprocessing state"; see KVM_GET_MP_STATE for
1228arguments.
1229
c32a4272 1230On x86, this ioctl is only useful after KVM_CREATE_IRQCHIP. Without an
0b4820d6
DH
1231in-kernel irqchip, the multiprocessing state must be maintained by userspace on
1232these architectures.
b843f065 1233
ecccf0cc
AB
1234For arm/arm64:
1235
1236The only states that are valid are KVM_MP_STATE_STOPPED and
1237KVM_MP_STATE_RUNNABLE which reflect if the vcpu should be paused or not.
414fa985 1238
68ba6974 12394.40 KVM_SET_IDENTITY_MAP_ADDR
47dbb84f
AK
1240
1241Capability: KVM_CAP_SET_IDENTITY_MAP_ADDR
1242Architectures: x86
1243Type: vm ioctl
1244Parameters: unsigned long identity (in)
1245Returns: 0 on success, -1 on error
1246
1247This ioctl defines the physical address of a one-page region in the guest
1248physical address space. The region must be within the first 4GB of the
1249guest physical address space and must not conflict with any memory slot
1250or any mmio address. The guest may malfunction if it accesses this memory
1251region.
1252
726b99c4
DH
1253Setting the address to 0 will result in resetting the address to its default
1254(0xfffbc000).
1255
47dbb84f
AK
1256This ioctl is required on Intel-based hosts. This is needed on Intel hardware
1257because of a quirk in the virtualization implementation (see the internals
1258documentation when it pops into existence).
1259
1af1ac91 1260Fails if any VCPU has already been created.
414fa985 1261
68ba6974 12624.41 KVM_SET_BOOT_CPU_ID
57bc24cf
AK
1263
1264Capability: KVM_CAP_SET_BOOT_CPU_ID
c32a4272 1265Architectures: x86
57bc24cf
AK
1266Type: vm ioctl
1267Parameters: unsigned long vcpu_id
1268Returns: 0 on success, -1 on error
1269
1270Define which vcpu is the Bootstrap Processor (BSP). Values are the same
1271as the vcpu id in KVM_CREATE_VCPU. If this ioctl is not called, the default
1272is vcpu 0.
1273
414fa985 1274
68ba6974 12754.42 KVM_GET_XSAVE
2d5b5a66
SY
1276
1277Capability: KVM_CAP_XSAVE
1278Architectures: x86
1279Type: vcpu ioctl
1280Parameters: struct kvm_xsave (out)
1281Returns: 0 on success, -1 on error
1282
1283struct kvm_xsave {
1284 __u32 region[1024];
1285};
1286
1287This ioctl would copy current vcpu's xsave struct to the userspace.
1288
414fa985 1289
68ba6974 12904.43 KVM_SET_XSAVE
2d5b5a66
SY
1291
1292Capability: KVM_CAP_XSAVE
1293Architectures: x86
1294Type: vcpu ioctl
1295Parameters: struct kvm_xsave (in)
1296Returns: 0 on success, -1 on error
1297
1298struct kvm_xsave {
1299 __u32 region[1024];
1300};
1301
1302This ioctl would copy userspace's xsave struct to the kernel.
1303
414fa985 1304
68ba6974 13054.44 KVM_GET_XCRS
2d5b5a66
SY
1306
1307Capability: KVM_CAP_XCRS
1308Architectures: x86
1309Type: vcpu ioctl
1310Parameters: struct kvm_xcrs (out)
1311Returns: 0 on success, -1 on error
1312
1313struct kvm_xcr {
1314 __u32 xcr;
1315 __u32 reserved;
1316 __u64 value;
1317};
1318
1319struct kvm_xcrs {
1320 __u32 nr_xcrs;
1321 __u32 flags;
1322 struct kvm_xcr xcrs[KVM_MAX_XCRS];
1323 __u64 padding[16];
1324};
1325
1326This ioctl would copy current vcpu's xcrs to the userspace.
1327
414fa985 1328
68ba6974 13294.45 KVM_SET_XCRS
2d5b5a66
SY
1330
1331Capability: KVM_CAP_XCRS
1332Architectures: x86
1333Type: vcpu ioctl
1334Parameters: struct kvm_xcrs (in)
1335Returns: 0 on success, -1 on error
1336
1337struct kvm_xcr {
1338 __u32 xcr;
1339 __u32 reserved;
1340 __u64 value;
1341};
1342
1343struct kvm_xcrs {
1344 __u32 nr_xcrs;
1345 __u32 flags;
1346 struct kvm_xcr xcrs[KVM_MAX_XCRS];
1347 __u64 padding[16];
1348};
1349
1350This ioctl would set vcpu's xcr to the value userspace specified.
1351
414fa985 1352
68ba6974 13534.46 KVM_GET_SUPPORTED_CPUID
d153513d
AK
1354
1355Capability: KVM_CAP_EXT_CPUID
1356Architectures: x86
1357Type: system ioctl
1358Parameters: struct kvm_cpuid2 (in/out)
1359Returns: 0 on success, -1 on error
1360
1361struct kvm_cpuid2 {
1362 __u32 nent;
1363 __u32 padding;
1364 struct kvm_cpuid_entry2 entries[0];
1365};
1366
9c15bb1d
BP
1367#define KVM_CPUID_FLAG_SIGNIFCANT_INDEX BIT(0)
1368#define KVM_CPUID_FLAG_STATEFUL_FUNC BIT(1)
1369#define KVM_CPUID_FLAG_STATE_READ_NEXT BIT(2)
d153513d
AK
1370
1371struct kvm_cpuid_entry2 {
1372 __u32 function;
1373 __u32 index;
1374 __u32 flags;
1375 __u32 eax;
1376 __u32 ebx;
1377 __u32 ecx;
1378 __u32 edx;
1379 __u32 padding[3];
1380};
1381
df9cb9cc
JM
1382This ioctl returns x86 cpuid features which are supported by both the
1383hardware and kvm in its default configuration. Userspace can use the
1384information returned by this ioctl to construct cpuid information (for
1385KVM_SET_CPUID2) that is consistent with hardware, kernel, and
1386userspace capabilities, and with user requirements (for example, the
1387user may wish to constrain cpuid to emulate older hardware, or for
1388feature consistency across a cluster).
1389
1390Note that certain capabilities, such as KVM_CAP_X86_DISABLE_EXITS, may
1391expose cpuid features (e.g. MONITOR) which are not supported by kvm in
1392its default configuration. If userspace enables such capabilities, it
1393is responsible for modifying the results of this ioctl appropriately.
d153513d
AK
1394
1395Userspace invokes KVM_GET_SUPPORTED_CPUID by passing a kvm_cpuid2 structure
1396with the 'nent' field indicating the number of entries in the variable-size
1397array 'entries'. If the number of entries is too low to describe the cpu
1398capabilities, an error (E2BIG) is returned. If the number is too high,
1399the 'nent' field is adjusted and an error (ENOMEM) is returned. If the
1400number is just right, the 'nent' field is adjusted to the number of valid
1401entries in the 'entries' array, which is then filled.
1402
1403The entries returned are the host cpuid as returned by the cpuid instruction,
c39cbd2a
AK
1404with unknown or unsupported features masked out. Some features (for example,
1405x2apic), may not be present in the host cpu, but are exposed by kvm if it can
1406emulate them efficiently. The fields in each entry are defined as follows:
d153513d
AK
1407
1408 function: the eax value used to obtain the entry
1409 index: the ecx value used to obtain the entry (for entries that are
1410 affected by ecx)
1411 flags: an OR of zero or more of the following:
1412 KVM_CPUID_FLAG_SIGNIFCANT_INDEX:
1413 if the index field is valid
1414 KVM_CPUID_FLAG_STATEFUL_FUNC:
1415 if cpuid for this function returns different values for successive
1416 invocations; there will be several entries with the same function,
1417 all with this flag set
1418 KVM_CPUID_FLAG_STATE_READ_NEXT:
1419 for KVM_CPUID_FLAG_STATEFUL_FUNC entries, set if this entry is
1420 the first entry to be read by a cpu
1421 eax, ebx, ecx, edx: the values returned by the cpuid instruction for
1422 this function/index combination
1423
4d25a066
JK
1424The TSC deadline timer feature (CPUID leaf 1, ecx[24]) is always returned
1425as false, since the feature depends on KVM_CREATE_IRQCHIP for local APIC
1426support. Instead it is reported via
1427
1428 ioctl(KVM_CHECK_EXTENSION, KVM_CAP_TSC_DEADLINE_TIMER)
1429
1430if that returns true and you use KVM_CREATE_IRQCHIP, or if you emulate the
1431feature in userspace, then you can enable the feature for KVM_SET_CPUID2.
1432
414fa985 1433
68ba6974 14344.47 KVM_PPC_GET_PVINFO
15711e9c
AG
1435
1436Capability: KVM_CAP_PPC_GET_PVINFO
1437Architectures: ppc
1438Type: vm ioctl
1439Parameters: struct kvm_ppc_pvinfo (out)
1440Returns: 0 on success, !0 on error
1441
1442struct kvm_ppc_pvinfo {
1443 __u32 flags;
1444 __u32 hcall[4];
1445 __u8 pad[108];
1446};
1447
1448This ioctl fetches PV specific information that need to be passed to the guest
1449using the device tree or other means from vm context.
1450
9202e076 1451The hcall array defines 4 instructions that make up a hypercall.
15711e9c
AG
1452
1453If any additional field gets added to this structure later on, a bit for that
1454additional piece of information will be set in the flags bitmap.
1455
9202e076
LYB
1456The flags bitmap is defined as:
1457
1458 /* the host supports the ePAPR idle hcall
1459 #define KVM_PPC_PVINFO_FLAGS_EV_IDLE (1<<0)
414fa985 1460
68ba6974 14614.52 KVM_SET_GSI_ROUTING
49f48172
JK
1462
1463Capability: KVM_CAP_IRQ_ROUTING
180ae7b1 1464Architectures: x86 s390 arm arm64
49f48172
JK
1465Type: vm ioctl
1466Parameters: struct kvm_irq_routing (in)
1467Returns: 0 on success, -1 on error
1468
1469Sets the GSI routing table entries, overwriting any previously set entries.
1470
180ae7b1
EA
1471On arm/arm64, GSI routing has the following limitation:
1472- GSI routing does not apply to KVM_IRQ_LINE but only to KVM_IRQFD.
1473
49f48172
JK
1474struct kvm_irq_routing {
1475 __u32 nr;
1476 __u32 flags;
1477 struct kvm_irq_routing_entry entries[0];
1478};
1479
1480No flags are specified so far, the corresponding field must be set to zero.
1481
1482struct kvm_irq_routing_entry {
1483 __u32 gsi;
1484 __u32 type;
1485 __u32 flags;
1486 __u32 pad;
1487 union {
1488 struct kvm_irq_routing_irqchip irqchip;
1489 struct kvm_irq_routing_msi msi;
84223598 1490 struct kvm_irq_routing_s390_adapter adapter;
5c919412 1491 struct kvm_irq_routing_hv_sint hv_sint;
49f48172
JK
1492 __u32 pad[8];
1493 } u;
1494};
1495
1496/* gsi routing entry types */
1497#define KVM_IRQ_ROUTING_IRQCHIP 1
1498#define KVM_IRQ_ROUTING_MSI 2
84223598 1499#define KVM_IRQ_ROUTING_S390_ADAPTER 3
5c919412 1500#define KVM_IRQ_ROUTING_HV_SINT 4
49f48172 1501
76a10b86 1502flags:
6f49b2f3
PB
1503- KVM_MSI_VALID_DEVID: used along with KVM_IRQ_ROUTING_MSI routing entry
1504 type, specifies that the devid field contains a valid value. The per-VM
1505 KVM_CAP_MSI_DEVID capability advertises the requirement to provide
1506 the device ID. If this capability is not available, userspace should
1507 never set the KVM_MSI_VALID_DEVID flag as the ioctl might fail.
76a10b86 1508- zero otherwise
49f48172
JK
1509
1510struct kvm_irq_routing_irqchip {
1511 __u32 irqchip;
1512 __u32 pin;
1513};
1514
1515struct kvm_irq_routing_msi {
1516 __u32 address_lo;
1517 __u32 address_hi;
1518 __u32 data;
76a10b86
EA
1519 union {
1520 __u32 pad;
1521 __u32 devid;
1522 };
49f48172
JK
1523};
1524
6f49b2f3
PB
1525If KVM_MSI_VALID_DEVID is set, devid contains a unique device identifier
1526for the device that wrote the MSI message. For PCI, this is usually a
1527BFD identifier in the lower 16 bits.
76a10b86 1528
37131313
RK
1529On x86, address_hi is ignored unless the KVM_X2APIC_API_USE_32BIT_IDS
1530feature of KVM_CAP_X2APIC_API capability is enabled. If it is enabled,
1531address_hi bits 31-8 provide bits 31-8 of the destination id. Bits 7-0 of
1532address_hi must be zero.
1533
84223598
CH
1534struct kvm_irq_routing_s390_adapter {
1535 __u64 ind_addr;
1536 __u64 summary_addr;
1537 __u64 ind_offset;
1538 __u32 summary_offset;
1539 __u32 adapter_id;
1540};
1541
5c919412
AS
1542struct kvm_irq_routing_hv_sint {
1543 __u32 vcpu;
1544 __u32 sint;
1545};
414fa985 1546
414fa985
JK
1547
15484.55 KVM_SET_TSC_KHZ
92a1f12d
JR
1549
1550Capability: KVM_CAP_TSC_CONTROL
1551Architectures: x86
1552Type: vcpu ioctl
1553Parameters: virtual tsc_khz
1554Returns: 0 on success, -1 on error
1555
1556Specifies the tsc frequency for the virtual machine. The unit of the
1557frequency is KHz.
1558
414fa985
JK
1559
15604.56 KVM_GET_TSC_KHZ
92a1f12d
JR
1561
1562Capability: KVM_CAP_GET_TSC_KHZ
1563Architectures: x86
1564Type: vcpu ioctl
1565Parameters: none
1566Returns: virtual tsc-khz on success, negative value on error
1567
1568Returns the tsc frequency of the guest. The unit of the return value is
1569KHz. If the host has unstable tsc this ioctl returns -EIO instead as an
1570error.
1571
414fa985
JK
1572
15734.57 KVM_GET_LAPIC
e7677933
AK
1574
1575Capability: KVM_CAP_IRQCHIP
1576Architectures: x86
1577Type: vcpu ioctl
1578Parameters: struct kvm_lapic_state (out)
1579Returns: 0 on success, -1 on error
1580
1581#define KVM_APIC_REG_SIZE 0x400
1582struct kvm_lapic_state {
1583 char regs[KVM_APIC_REG_SIZE];
1584};
1585
1586Reads the Local APIC registers and copies them into the input argument. The
1587data format and layout are the same as documented in the architecture manual.
1588
37131313
RK
1589If KVM_X2APIC_API_USE_32BIT_IDS feature of KVM_CAP_X2APIC_API is
1590enabled, then the format of APIC_ID register depends on the APIC mode
1591(reported by MSR_IA32_APICBASE) of its VCPU. x2APIC stores APIC ID in
1592the APIC_ID register (bytes 32-35). xAPIC only allows an 8-bit APIC ID
1593which is stored in bits 31-24 of the APIC register, or equivalently in
1594byte 35 of struct kvm_lapic_state's regs field. KVM_GET_LAPIC must then
1595be called after MSR_IA32_APICBASE has been set with KVM_SET_MSR.
1596
1597If KVM_X2APIC_API_USE_32BIT_IDS feature is disabled, struct kvm_lapic_state
1598always uses xAPIC format.
1599
414fa985
JK
1600
16014.58 KVM_SET_LAPIC
e7677933
AK
1602
1603Capability: KVM_CAP_IRQCHIP
1604Architectures: x86
1605Type: vcpu ioctl
1606Parameters: struct kvm_lapic_state (in)
1607Returns: 0 on success, -1 on error
1608
1609#define KVM_APIC_REG_SIZE 0x400
1610struct kvm_lapic_state {
1611 char regs[KVM_APIC_REG_SIZE];
1612};
1613
df5cbb27 1614Copies the input argument into the Local APIC registers. The data format
e7677933
AK
1615and layout are the same as documented in the architecture manual.
1616
37131313
RK
1617The format of the APIC ID register (bytes 32-35 of struct kvm_lapic_state's
1618regs field) depends on the state of the KVM_CAP_X2APIC_API capability.
1619See the note in KVM_GET_LAPIC.
1620
414fa985
JK
1621
16224.59 KVM_IOEVENTFD
55399a02
SL
1623
1624Capability: KVM_CAP_IOEVENTFD
1625Architectures: all
1626Type: vm ioctl
1627Parameters: struct kvm_ioeventfd (in)
1628Returns: 0 on success, !0 on error
1629
1630This ioctl attaches or detaches an ioeventfd to a legal pio/mmio address
1631within the guest. A guest write in the registered address will signal the
1632provided event instead of triggering an exit.
1633
1634struct kvm_ioeventfd {
1635 __u64 datamatch;
1636 __u64 addr; /* legal pio/mmio address */
e9ea5069 1637 __u32 len; /* 0, 1, 2, 4, or 8 bytes */
55399a02
SL
1638 __s32 fd;
1639 __u32 flags;
1640 __u8 pad[36];
1641};
1642
2b83451b
CH
1643For the special case of virtio-ccw devices on s390, the ioevent is matched
1644to a subchannel/virtqueue tuple instead.
1645
55399a02
SL
1646The following flags are defined:
1647
1648#define KVM_IOEVENTFD_FLAG_DATAMATCH (1 << kvm_ioeventfd_flag_nr_datamatch)
1649#define KVM_IOEVENTFD_FLAG_PIO (1 << kvm_ioeventfd_flag_nr_pio)
1650#define KVM_IOEVENTFD_FLAG_DEASSIGN (1 << kvm_ioeventfd_flag_nr_deassign)
2b83451b
CH
1651#define KVM_IOEVENTFD_FLAG_VIRTIO_CCW_NOTIFY \
1652 (1 << kvm_ioeventfd_flag_nr_virtio_ccw_notify)
55399a02
SL
1653
1654If datamatch flag is set, the event will be signaled only if the written value
1655to the registered address is equal to datamatch in struct kvm_ioeventfd.
1656
2b83451b
CH
1657For virtio-ccw devices, addr contains the subchannel id and datamatch the
1658virtqueue index.
1659
e9ea5069
JW
1660With KVM_CAP_IOEVENTFD_ANY_LENGTH, a zero length ioeventfd is allowed, and
1661the kernel will ignore the length of guest write and may get a faster vmexit.
1662The speedup may only apply to specific architectures, but the ioeventfd will
1663work anyway.
414fa985
JK
1664
16654.60 KVM_DIRTY_TLB
dc83b8bc
SW
1666
1667Capability: KVM_CAP_SW_TLB
1668Architectures: ppc
1669Type: vcpu ioctl
1670Parameters: struct kvm_dirty_tlb (in)
1671Returns: 0 on success, -1 on error
1672
1673struct kvm_dirty_tlb {
1674 __u64 bitmap;
1675 __u32 num_dirty;
1676};
1677
1678This must be called whenever userspace has changed an entry in the shared
1679TLB, prior to calling KVM_RUN on the associated vcpu.
1680
1681The "bitmap" field is the userspace address of an array. This array
1682consists of a number of bits, equal to the total number of TLB entries as
1683determined by the last successful call to KVM_CONFIG_TLB, rounded up to the
1684nearest multiple of 64.
1685
1686Each bit corresponds to one TLB entry, ordered the same as in the shared TLB
1687array.
1688
1689The array is little-endian: the bit 0 is the least significant bit of the
1690first byte, bit 8 is the least significant bit of the second byte, etc.
1691This avoids any complications with differing word sizes.
1692
1693The "num_dirty" field is a performance hint for KVM to determine whether it
1694should skip processing the bitmap and just invalidate everything. It must
1695be set to the number of set bits in the bitmap.
1696
414fa985 1697
54738c09
DG
16984.62 KVM_CREATE_SPAPR_TCE
1699
1700Capability: KVM_CAP_SPAPR_TCE
1701Architectures: powerpc
1702Type: vm ioctl
1703Parameters: struct kvm_create_spapr_tce (in)
1704Returns: file descriptor for manipulating the created TCE table
1705
1706This creates a virtual TCE (translation control entry) table, which
1707is an IOMMU for PAPR-style virtual I/O. It is used to translate
1708logical addresses used in virtual I/O into guest physical addresses,
1709and provides a scatter/gather capability for PAPR virtual I/O.
1710
1711/* for KVM_CAP_SPAPR_TCE */
1712struct kvm_create_spapr_tce {
1713 __u64 liobn;
1714 __u32 window_size;
1715};
1716
1717The liobn field gives the logical IO bus number for which to create a
1718TCE table. The window_size field specifies the size of the DMA window
1719which this TCE table will translate - the table will contain one 64
1720bit TCE entry for every 4kiB of the DMA window.
1721
1722When the guest issues an H_PUT_TCE hcall on a liobn for which a TCE
1723table has been created using this ioctl(), the kernel will handle it
1724in real mode, updating the TCE table. H_PUT_TCE calls for other
1725liobns will cause a vm exit and must be handled by userspace.
1726
1727The return value is a file descriptor which can be passed to mmap(2)
1728to map the created TCE table into userspace. This lets userspace read
1729the entries written by kernel-handled H_PUT_TCE calls, and also lets
1730userspace update the TCE table directly which is useful in some
1731circumstances.
1732
414fa985 1733
aa04b4cc
PM
17344.63 KVM_ALLOCATE_RMA
1735
1736Capability: KVM_CAP_PPC_RMA
1737Architectures: powerpc
1738Type: vm ioctl
1739Parameters: struct kvm_allocate_rma (out)
1740Returns: file descriptor for mapping the allocated RMA
1741
1742This allocates a Real Mode Area (RMA) from the pool allocated at boot
1743time by the kernel. An RMA is a physically-contiguous, aligned region
1744of memory used on older POWER processors to provide the memory which
1745will be accessed by real-mode (MMU off) accesses in a KVM guest.
1746POWER processors support a set of sizes for the RMA that usually
1747includes 64MB, 128MB, 256MB and some larger powers of two.
1748
1749/* for KVM_ALLOCATE_RMA */
1750struct kvm_allocate_rma {
1751 __u64 rma_size;
1752};
1753
1754The return value is a file descriptor which can be passed to mmap(2)
1755to map the allocated RMA into userspace. The mapped area can then be
1756passed to the KVM_SET_USER_MEMORY_REGION ioctl to establish it as the
1757RMA for a virtual machine. The size of the RMA in bytes (which is
1758fixed at host kernel boot time) is returned in the rma_size field of
1759the argument structure.
1760
1761The KVM_CAP_PPC_RMA capability is 1 or 2 if the KVM_ALLOCATE_RMA ioctl
1762is supported; 2 if the processor requires all virtual machines to have
1763an RMA, or 1 if the processor can use an RMA but doesn't require it,
1764because it supports the Virtual RMA (VRMA) facility.
1765
414fa985 1766
3f745f1e
AK
17674.64 KVM_NMI
1768
1769Capability: KVM_CAP_USER_NMI
1770Architectures: x86
1771Type: vcpu ioctl
1772Parameters: none
1773Returns: 0 on success, -1 on error
1774
1775Queues an NMI on the thread's vcpu. Note this is well defined only
1776when KVM_CREATE_IRQCHIP has not been called, since this is an interface
1777between the virtual cpu core and virtual local APIC. After KVM_CREATE_IRQCHIP
1778has been called, this interface is completely emulated within the kernel.
1779
1780To use this to emulate the LINT1 input with KVM_CREATE_IRQCHIP, use the
1781following algorithm:
1782
5d4f6f3d 1783 - pause the vcpu
3f745f1e
AK
1784 - read the local APIC's state (KVM_GET_LAPIC)
1785 - check whether changing LINT1 will queue an NMI (see the LVT entry for LINT1)
1786 - if so, issue KVM_NMI
1787 - resume the vcpu
1788
1789Some guests configure the LINT1 NMI input to cause a panic, aiding in
1790debugging.
1791
414fa985 1792
e24ed81f 17934.65 KVM_S390_UCAS_MAP
27e0393f
CO
1794
1795Capability: KVM_CAP_S390_UCONTROL
1796Architectures: s390
1797Type: vcpu ioctl
1798Parameters: struct kvm_s390_ucas_mapping (in)
1799Returns: 0 in case of success
1800
1801The parameter is defined like this:
1802 struct kvm_s390_ucas_mapping {
1803 __u64 user_addr;
1804 __u64 vcpu_addr;
1805 __u64 length;
1806 };
1807
1808This ioctl maps the memory at "user_addr" with the length "length" to
1809the vcpu's address space starting at "vcpu_addr". All parameters need to
f884ab15 1810be aligned by 1 megabyte.
27e0393f 1811
414fa985 1812
e24ed81f 18134.66 KVM_S390_UCAS_UNMAP
27e0393f
CO
1814
1815Capability: KVM_CAP_S390_UCONTROL
1816Architectures: s390
1817Type: vcpu ioctl
1818Parameters: struct kvm_s390_ucas_mapping (in)
1819Returns: 0 in case of success
1820
1821The parameter is defined like this:
1822 struct kvm_s390_ucas_mapping {
1823 __u64 user_addr;
1824 __u64 vcpu_addr;
1825 __u64 length;
1826 };
1827
1828This ioctl unmaps the memory in the vcpu's address space starting at
1829"vcpu_addr" with the length "length". The field "user_addr" is ignored.
f884ab15 1830All parameters need to be aligned by 1 megabyte.
27e0393f 1831
414fa985 1832
e24ed81f 18334.67 KVM_S390_VCPU_FAULT
ccc7910f
CO
1834
1835Capability: KVM_CAP_S390_UCONTROL
1836Architectures: s390
1837Type: vcpu ioctl
1838Parameters: vcpu absolute address (in)
1839Returns: 0 in case of success
1840
1841This call creates a page table entry on the virtual cpu's address space
1842(for user controlled virtual machines) or the virtual machine's address
1843space (for regular virtual machines). This only works for minor faults,
1844thus it's recommended to access subject memory page via the user page
1845table upfront. This is useful to handle validity intercepts for user
1846controlled virtual machines to fault in the virtual cpu's lowcore pages
1847prior to calling the KVM_RUN ioctl.
1848
414fa985 1849
e24ed81f
AG
18504.68 KVM_SET_ONE_REG
1851
1852Capability: KVM_CAP_ONE_REG
1853Architectures: all
1854Type: vcpu ioctl
1855Parameters: struct kvm_one_reg (in)
1856Returns: 0 on success, negative value on failure
1857
1858struct kvm_one_reg {
1859 __u64 id;
1860 __u64 addr;
1861};
1862
1863Using this ioctl, a single vcpu register can be set to a specific value
1864defined by user space with the passed in struct kvm_one_reg, where id
1865refers to the register identifier as described below and addr is a pointer
1866to a variable with the respective size. There can be architecture agnostic
1867and architecture specific registers. Each have their own range of operation
1868and their own constants and width. To keep track of the implemented
1869registers, find a list below:
1870
bf5590f3
JH
1871 Arch | Register | Width (bits)
1872 | |
1873 PPC | KVM_REG_PPC_HIOR | 64
1874 PPC | KVM_REG_PPC_IAC1 | 64
1875 PPC | KVM_REG_PPC_IAC2 | 64
1876 PPC | KVM_REG_PPC_IAC3 | 64
1877 PPC | KVM_REG_PPC_IAC4 | 64
1878 PPC | KVM_REG_PPC_DAC1 | 64
1879 PPC | KVM_REG_PPC_DAC2 | 64
1880 PPC | KVM_REG_PPC_DABR | 64
1881 PPC | KVM_REG_PPC_DSCR | 64
1882 PPC | KVM_REG_PPC_PURR | 64
1883 PPC | KVM_REG_PPC_SPURR | 64
1884 PPC | KVM_REG_PPC_DAR | 64
1885 PPC | KVM_REG_PPC_DSISR | 32
1886 PPC | KVM_REG_PPC_AMR | 64
1887 PPC | KVM_REG_PPC_UAMOR | 64
1888 PPC | KVM_REG_PPC_MMCR0 | 64
1889 PPC | KVM_REG_PPC_MMCR1 | 64
1890 PPC | KVM_REG_PPC_MMCRA | 64
1891 PPC | KVM_REG_PPC_MMCR2 | 64
1892 PPC | KVM_REG_PPC_MMCRS | 64
1893 PPC | KVM_REG_PPC_SIAR | 64
1894 PPC | KVM_REG_PPC_SDAR | 64
1895 PPC | KVM_REG_PPC_SIER | 64
1896 PPC | KVM_REG_PPC_PMC1 | 32
1897 PPC | KVM_REG_PPC_PMC2 | 32
1898 PPC | KVM_REG_PPC_PMC3 | 32
1899 PPC | KVM_REG_PPC_PMC4 | 32
1900 PPC | KVM_REG_PPC_PMC5 | 32
1901 PPC | KVM_REG_PPC_PMC6 | 32
1902 PPC | KVM_REG_PPC_PMC7 | 32
1903 PPC | KVM_REG_PPC_PMC8 | 32
1904 PPC | KVM_REG_PPC_FPR0 | 64
a8bd19ef 1905 ...
bf5590f3
JH
1906 PPC | KVM_REG_PPC_FPR31 | 64
1907 PPC | KVM_REG_PPC_VR0 | 128
a8bd19ef 1908 ...
bf5590f3
JH
1909 PPC | KVM_REG_PPC_VR31 | 128
1910 PPC | KVM_REG_PPC_VSR0 | 128
a8bd19ef 1911 ...
bf5590f3
JH
1912 PPC | KVM_REG_PPC_VSR31 | 128
1913 PPC | KVM_REG_PPC_FPSCR | 64
1914 PPC | KVM_REG_PPC_VSCR | 32
1915 PPC | KVM_REG_PPC_VPA_ADDR | 64
1916 PPC | KVM_REG_PPC_VPA_SLB | 128
1917 PPC | KVM_REG_PPC_VPA_DTL | 128
1918 PPC | KVM_REG_PPC_EPCR | 32
1919 PPC | KVM_REG_PPC_EPR | 32
1920 PPC | KVM_REG_PPC_TCR | 32
1921 PPC | KVM_REG_PPC_TSR | 32
1922 PPC | KVM_REG_PPC_OR_TSR | 32
1923 PPC | KVM_REG_PPC_CLEAR_TSR | 32
1924 PPC | KVM_REG_PPC_MAS0 | 32
1925 PPC | KVM_REG_PPC_MAS1 | 32
1926 PPC | KVM_REG_PPC_MAS2 | 64
1927 PPC | KVM_REG_PPC_MAS7_3 | 64
1928 PPC | KVM_REG_PPC_MAS4 | 32
1929 PPC | KVM_REG_PPC_MAS6 | 32
1930 PPC | KVM_REG_PPC_MMUCFG | 32
1931 PPC | KVM_REG_PPC_TLB0CFG | 32
1932 PPC | KVM_REG_PPC_TLB1CFG | 32
1933 PPC | KVM_REG_PPC_TLB2CFG | 32
1934 PPC | KVM_REG_PPC_TLB3CFG | 32
1935 PPC | KVM_REG_PPC_TLB0PS | 32
1936 PPC | KVM_REG_PPC_TLB1PS | 32
1937 PPC | KVM_REG_PPC_TLB2PS | 32
1938 PPC | KVM_REG_PPC_TLB3PS | 32
1939 PPC | KVM_REG_PPC_EPTCFG | 32
1940 PPC | KVM_REG_PPC_ICP_STATE | 64
1941 PPC | KVM_REG_PPC_TB_OFFSET | 64
1942 PPC | KVM_REG_PPC_SPMC1 | 32
1943 PPC | KVM_REG_PPC_SPMC2 | 32
1944 PPC | KVM_REG_PPC_IAMR | 64
1945 PPC | KVM_REG_PPC_TFHAR | 64
1946 PPC | KVM_REG_PPC_TFIAR | 64
1947 PPC | KVM_REG_PPC_TEXASR | 64
1948 PPC | KVM_REG_PPC_FSCR | 64
1949 PPC | KVM_REG_PPC_PSPB | 32
1950 PPC | KVM_REG_PPC_EBBHR | 64
1951 PPC | KVM_REG_PPC_EBBRR | 64
1952 PPC | KVM_REG_PPC_BESCR | 64
1953 PPC | KVM_REG_PPC_TAR | 64
1954 PPC | KVM_REG_PPC_DPDES | 64
1955 PPC | KVM_REG_PPC_DAWR | 64
1956 PPC | KVM_REG_PPC_DAWRX | 64
1957 PPC | KVM_REG_PPC_CIABR | 64
1958 PPC | KVM_REG_PPC_IC | 64
1959 PPC | KVM_REG_PPC_VTB | 64
1960 PPC | KVM_REG_PPC_CSIGR | 64
1961 PPC | KVM_REG_PPC_TACR | 64
1962 PPC | KVM_REG_PPC_TCSCR | 64
1963 PPC | KVM_REG_PPC_PID | 64
1964 PPC | KVM_REG_PPC_ACOP | 64
1965 PPC | KVM_REG_PPC_VRSAVE | 32
cc568ead
PB
1966 PPC | KVM_REG_PPC_LPCR | 32
1967 PPC | KVM_REG_PPC_LPCR_64 | 64
bf5590f3
JH
1968 PPC | KVM_REG_PPC_PPR | 64
1969 PPC | KVM_REG_PPC_ARCH_COMPAT | 32
1970 PPC | KVM_REG_PPC_DABRX | 32
1971 PPC | KVM_REG_PPC_WORT | 64
bc8a4e5c
BB
1972 PPC | KVM_REG_PPC_SPRG9 | 64
1973 PPC | KVM_REG_PPC_DBSR | 32
e9cf1e08
PM
1974 PPC | KVM_REG_PPC_TIDR | 64
1975 PPC | KVM_REG_PPC_PSSCR | 64
5855564c 1976 PPC | KVM_REG_PPC_DEC_EXPIRY | 64
30323418 1977 PPC | KVM_REG_PPC_PTCR | 64
bf5590f3 1978 PPC | KVM_REG_PPC_TM_GPR0 | 64
3b783474 1979 ...
bf5590f3
JH
1980 PPC | KVM_REG_PPC_TM_GPR31 | 64
1981 PPC | KVM_REG_PPC_TM_VSR0 | 128
3b783474 1982 ...
bf5590f3
JH
1983 PPC | KVM_REG_PPC_TM_VSR63 | 128
1984 PPC | KVM_REG_PPC_TM_CR | 64
1985 PPC | KVM_REG_PPC_TM_LR | 64
1986 PPC | KVM_REG_PPC_TM_CTR | 64
1987 PPC | KVM_REG_PPC_TM_FPSCR | 64
1988 PPC | KVM_REG_PPC_TM_AMR | 64
1989 PPC | KVM_REG_PPC_TM_PPR | 64
1990 PPC | KVM_REG_PPC_TM_VRSAVE | 64
1991 PPC | KVM_REG_PPC_TM_VSCR | 32
1992 PPC | KVM_REG_PPC_TM_DSCR | 64
1993 PPC | KVM_REG_PPC_TM_TAR | 64
0d808df0 1994 PPC | KVM_REG_PPC_TM_XER | 64
c2d2c21b
JH
1995 | |
1996 MIPS | KVM_REG_MIPS_R0 | 64
1997 ...
1998 MIPS | KVM_REG_MIPS_R31 | 64
1999 MIPS | KVM_REG_MIPS_HI | 64
2000 MIPS | KVM_REG_MIPS_LO | 64
2001 MIPS | KVM_REG_MIPS_PC | 64
2002 MIPS | KVM_REG_MIPS_CP0_INDEX | 32
013044cc
JH
2003 MIPS | KVM_REG_MIPS_CP0_ENTRYLO0 | 64
2004 MIPS | KVM_REG_MIPS_CP0_ENTRYLO1 | 64
c2d2c21b 2005 MIPS | KVM_REG_MIPS_CP0_CONTEXT | 64
dffe042f 2006 MIPS | KVM_REG_MIPS_CP0_CONTEXTCONFIG| 32
c2d2c21b 2007 MIPS | KVM_REG_MIPS_CP0_USERLOCAL | 64
dffe042f 2008 MIPS | KVM_REG_MIPS_CP0_XCONTEXTCONFIG| 64
c2d2c21b 2009 MIPS | KVM_REG_MIPS_CP0_PAGEMASK | 32
c992a4f6 2010 MIPS | KVM_REG_MIPS_CP0_PAGEGRAIN | 32
4b7de028
JH
2011 MIPS | KVM_REG_MIPS_CP0_SEGCTL0 | 64
2012 MIPS | KVM_REG_MIPS_CP0_SEGCTL1 | 64
2013 MIPS | KVM_REG_MIPS_CP0_SEGCTL2 | 64
5a2f352f
JH
2014 MIPS | KVM_REG_MIPS_CP0_PWBASE | 64
2015 MIPS | KVM_REG_MIPS_CP0_PWFIELD | 64
2016 MIPS | KVM_REG_MIPS_CP0_PWSIZE | 64
c2d2c21b 2017 MIPS | KVM_REG_MIPS_CP0_WIRED | 32
5a2f352f 2018 MIPS | KVM_REG_MIPS_CP0_PWCTL | 32
c2d2c21b
JH
2019 MIPS | KVM_REG_MIPS_CP0_HWRENA | 32
2020 MIPS | KVM_REG_MIPS_CP0_BADVADDR | 64
edc89260
JH
2021 MIPS | KVM_REG_MIPS_CP0_BADINSTR | 32
2022 MIPS | KVM_REG_MIPS_CP0_BADINSTRP | 32
c2d2c21b
JH
2023 MIPS | KVM_REG_MIPS_CP0_COUNT | 32
2024 MIPS | KVM_REG_MIPS_CP0_ENTRYHI | 64
2025 MIPS | KVM_REG_MIPS_CP0_COMPARE | 32
2026 MIPS | KVM_REG_MIPS_CP0_STATUS | 32
ad58d4d4 2027 MIPS | KVM_REG_MIPS_CP0_INTCTL | 32
c2d2c21b
JH
2028 MIPS | KVM_REG_MIPS_CP0_CAUSE | 32
2029 MIPS | KVM_REG_MIPS_CP0_EPC | 64
1068eaaf 2030 MIPS | KVM_REG_MIPS_CP0_PRID | 32
7801bbe1 2031 MIPS | KVM_REG_MIPS_CP0_EBASE | 64
c2d2c21b
JH
2032 MIPS | KVM_REG_MIPS_CP0_CONFIG | 32
2033 MIPS | KVM_REG_MIPS_CP0_CONFIG1 | 32
2034 MIPS | KVM_REG_MIPS_CP0_CONFIG2 | 32
2035 MIPS | KVM_REG_MIPS_CP0_CONFIG3 | 32
c771607a
JH
2036 MIPS | KVM_REG_MIPS_CP0_CONFIG4 | 32
2037 MIPS | KVM_REG_MIPS_CP0_CONFIG5 | 32
c2d2c21b 2038 MIPS | KVM_REG_MIPS_CP0_CONFIG7 | 32
c992a4f6 2039 MIPS | KVM_REG_MIPS_CP0_XCONTEXT | 64
c2d2c21b 2040 MIPS | KVM_REG_MIPS_CP0_ERROREPC | 64
05108709
JH
2041 MIPS | KVM_REG_MIPS_CP0_KSCRATCH1 | 64
2042 MIPS | KVM_REG_MIPS_CP0_KSCRATCH2 | 64
2043 MIPS | KVM_REG_MIPS_CP0_KSCRATCH3 | 64
2044 MIPS | KVM_REG_MIPS_CP0_KSCRATCH4 | 64
2045 MIPS | KVM_REG_MIPS_CP0_KSCRATCH5 | 64
2046 MIPS | KVM_REG_MIPS_CP0_KSCRATCH6 | 64
d42a008f 2047 MIPS | KVM_REG_MIPS_CP0_MAAR(0..63) | 64
c2d2c21b
JH
2048 MIPS | KVM_REG_MIPS_COUNT_CTL | 64
2049 MIPS | KVM_REG_MIPS_COUNT_RESUME | 64
2050 MIPS | KVM_REG_MIPS_COUNT_HZ | 64
379245cd
JH
2051 MIPS | KVM_REG_MIPS_FPR_32(0..31) | 32
2052 MIPS | KVM_REG_MIPS_FPR_64(0..31) | 64
ab86bd60 2053 MIPS | KVM_REG_MIPS_VEC_128(0..31) | 128
379245cd
JH
2054 MIPS | KVM_REG_MIPS_FCR_IR | 32
2055 MIPS | KVM_REG_MIPS_FCR_CSR | 32
ab86bd60
JH
2056 MIPS | KVM_REG_MIPS_MSA_IR | 32
2057 MIPS | KVM_REG_MIPS_MSA_CSR | 32
414fa985 2058
749cf76c
CD
2059ARM registers are mapped using the lower 32 bits. The upper 16 of that
2060is the register group type, or coprocessor number:
2061
2062ARM core registers have the following id bit patterns:
aa404ddf 2063 0x4020 0000 0010 <index into the kvm_regs struct:16>
749cf76c 2064
1138245c 2065ARM 32-bit CP15 registers have the following id bit patterns:
aa404ddf 2066 0x4020 0000 000F <zero:1> <crn:4> <crm:4> <opc1:4> <opc2:3>
1138245c
CD
2067
2068ARM 64-bit CP15 registers have the following id bit patterns:
aa404ddf 2069 0x4030 0000 000F <zero:1> <zero:4> <crm:4> <opc1:4> <zero:3>
749cf76c 2070
c27581ed 2071ARM CCSIDR registers are demultiplexed by CSSELR value:
aa404ddf 2072 0x4020 0000 0011 00 <csselr:8>
749cf76c 2073
4fe21e4c 2074ARM 32-bit VFP control registers have the following id bit patterns:
aa404ddf 2075 0x4020 0000 0012 1 <regno:12>
4fe21e4c
RR
2076
2077ARM 64-bit FP registers have the following id bit patterns:
aa404ddf 2078 0x4030 0000 0012 0 <regno:12>
4fe21e4c 2079
85bd0ba1
MZ
2080ARM firmware pseudo-registers have the following bit pattern:
2081 0x4030 0000 0014 <regno:16>
2082
379e04c7
MZ
2083
2084arm64 registers are mapped using the lower 32 bits. The upper 16 of
2085that is the register group type, or coprocessor number:
2086
2087arm64 core/FP-SIMD registers have the following id bit patterns. Note
2088that the size of the access is variable, as the kvm_regs structure
2089contains elements ranging from 32 to 128 bits. The index is a 32bit
2090value in the kvm_regs structure seen as a 32bit array.
2091 0x60x0 0000 0010 <index into the kvm_regs struct:16>
2092
2093arm64 CCSIDR registers are demultiplexed by CSSELR value:
2094 0x6020 0000 0011 00 <csselr:8>
2095
2096arm64 system registers have the following id bit patterns:
2097 0x6030 0000 0013 <op0:2> <op1:3> <crn:4> <crm:4> <op2:3>
2098
85bd0ba1
MZ
2099arm64 firmware pseudo-registers have the following bit pattern:
2100 0x6030 0000 0014 <regno:16>
2101
c2d2c21b
JH
2102
2103MIPS registers are mapped using the lower 32 bits. The upper 16 of that is
2104the register group type:
2105
2106MIPS core registers (see above) have the following id bit patterns:
2107 0x7030 0000 0000 <reg:16>
2108
2109MIPS CP0 registers (see KVM_REG_MIPS_CP0_* above) have the following id bit
2110patterns depending on whether they're 32-bit or 64-bit registers:
2111 0x7020 0000 0001 00 <reg:5> <sel:3> (32-bit)
2112 0x7030 0000 0001 00 <reg:5> <sel:3> (64-bit)
2113
013044cc
JH
2114Note: KVM_REG_MIPS_CP0_ENTRYLO0 and KVM_REG_MIPS_CP0_ENTRYLO1 are the MIPS64
2115versions of the EntryLo registers regardless of the word size of the host
2116hardware, host kernel, guest, and whether XPA is present in the guest, i.e.
2117with the RI and XI bits (if they exist) in bits 63 and 62 respectively, and
2118the PFNX field starting at bit 30.
2119
d42a008f
JH
2120MIPS MAARs (see KVM_REG_MIPS_CP0_MAAR(*) above) have the following id bit
2121patterns:
2122 0x7030 0000 0001 01 <reg:8>
2123
c2d2c21b
JH
2124MIPS KVM control registers (see above) have the following id bit patterns:
2125 0x7030 0000 0002 <reg:16>
2126
379245cd
JH
2127MIPS FPU registers (see KVM_REG_MIPS_FPR_{32,64}() above) have the following
2128id bit patterns depending on the size of the register being accessed. They are
2129always accessed according to the current guest FPU mode (Status.FR and
2130Config5.FRE), i.e. as the guest would see them, and they become unpredictable
ab86bd60
JH
2131if the guest FPU mode is changed. MIPS SIMD Architecture (MSA) vector
2132registers (see KVM_REG_MIPS_VEC_128() above) have similar patterns as they
2133overlap the FPU registers:
379245cd
JH
2134 0x7020 0000 0003 00 <0:3> <reg:5> (32-bit FPU registers)
2135 0x7030 0000 0003 00 <0:3> <reg:5> (64-bit FPU registers)
ab86bd60 2136 0x7040 0000 0003 00 <0:3> <reg:5> (128-bit MSA vector registers)
379245cd
JH
2137
2138MIPS FPU control registers (see KVM_REG_MIPS_FCR_{IR,CSR} above) have the
2139following id bit patterns:
2140 0x7020 0000 0003 01 <0:3> <reg:5>
2141
ab86bd60
JH
2142MIPS MSA control registers (see KVM_REG_MIPS_MSA_{IR,CSR} above) have the
2143following id bit patterns:
2144 0x7020 0000 0003 02 <0:3> <reg:5>
2145
c2d2c21b 2146
e24ed81f
AG
21474.69 KVM_GET_ONE_REG
2148
2149Capability: KVM_CAP_ONE_REG
2150Architectures: all
2151Type: vcpu ioctl
2152Parameters: struct kvm_one_reg (in and out)
2153Returns: 0 on success, negative value on failure
2154
2155This ioctl allows to receive the value of a single register implemented
2156in a vcpu. The register to read is indicated by the "id" field of the
2157kvm_one_reg struct passed in. On success, the register value can be found
2158at the memory location pointed to by "addr".
2159
2160The list of registers accessible using this interface is identical to the
2e232702 2161list in 4.68.
e24ed81f 2162
414fa985 2163
1c0b28c2
EM
21644.70 KVM_KVMCLOCK_CTRL
2165
2166Capability: KVM_CAP_KVMCLOCK_CTRL
2167Architectures: Any that implement pvclocks (currently x86 only)
2168Type: vcpu ioctl
2169Parameters: None
2170Returns: 0 on success, -1 on error
2171
2172This signals to the host kernel that the specified guest is being paused by
2173userspace. The host will set a flag in the pvclock structure that is checked
2174from the soft lockup watchdog. The flag is part of the pvclock structure that
2175is shared between guest and host, specifically the second bit of the flags
2176field of the pvclock_vcpu_time_info structure. It will be set exclusively by
2177the host and read/cleared exclusively by the guest. The guest operation of
2178checking and clearing the flag must an atomic operation so
2179load-link/store-conditional, or equivalent must be used. There are two cases
2180where the guest will clear the flag: when the soft lockup watchdog timer resets
2181itself or when a soft lockup is detected. This ioctl can be called any time
2182after pausing the vcpu, but before it is resumed.
2183
414fa985 2184
07975ad3
JK
21854.71 KVM_SIGNAL_MSI
2186
2187Capability: KVM_CAP_SIGNAL_MSI
2988509d 2188Architectures: x86 arm arm64
07975ad3
JK
2189Type: vm ioctl
2190Parameters: struct kvm_msi (in)
2191Returns: >0 on delivery, 0 if guest blocked the MSI, and -1 on error
2192
2193Directly inject a MSI message. Only valid with in-kernel irqchip that handles
2194MSI messages.
2195
2196struct kvm_msi {
2197 __u32 address_lo;
2198 __u32 address_hi;
2199 __u32 data;
2200 __u32 flags;
2b8ddd93
AP
2201 __u32 devid;
2202 __u8 pad[12];
07975ad3
JK
2203};
2204
6f49b2f3
PB
2205flags: KVM_MSI_VALID_DEVID: devid contains a valid value. The per-VM
2206 KVM_CAP_MSI_DEVID capability advertises the requirement to provide
2207 the device ID. If this capability is not available, userspace
2208 should never set the KVM_MSI_VALID_DEVID flag as the ioctl might fail.
2b8ddd93 2209
6f49b2f3
PB
2210If KVM_MSI_VALID_DEVID is set, devid contains a unique device identifier
2211for the device that wrote the MSI message. For PCI, this is usually a
2212BFD identifier in the lower 16 bits.
07975ad3 2213
055b6ae9
PB
2214On x86, address_hi is ignored unless the KVM_X2APIC_API_USE_32BIT_IDS
2215feature of KVM_CAP_X2APIC_API capability is enabled. If it is enabled,
2216address_hi bits 31-8 provide bits 31-8 of the destination id. Bits 7-0 of
2217address_hi must be zero.
37131313 2218
414fa985 2219
0589ff6c
JK
22204.71 KVM_CREATE_PIT2
2221
2222Capability: KVM_CAP_PIT2
2223Architectures: x86
2224Type: vm ioctl
2225Parameters: struct kvm_pit_config (in)
2226Returns: 0 on success, -1 on error
2227
2228Creates an in-kernel device model for the i8254 PIT. This call is only valid
2229after enabling in-kernel irqchip support via KVM_CREATE_IRQCHIP. The following
2230parameters have to be passed:
2231
2232struct kvm_pit_config {
2233 __u32 flags;
2234 __u32 pad[15];
2235};
2236
2237Valid flags are:
2238
2239#define KVM_PIT_SPEAKER_DUMMY 1 /* emulate speaker port stub */
2240
b6ddf05f
JK
2241PIT timer interrupts may use a per-VM kernel thread for injection. If it
2242exists, this thread will have a name of the following pattern:
2243
2244kvm-pit/<owner-process-pid>
2245
2246When running a guest with elevated priorities, the scheduling parameters of
2247this thread may have to be adjusted accordingly.
2248
0589ff6c
JK
2249This IOCTL replaces the obsolete KVM_CREATE_PIT.
2250
2251
22524.72 KVM_GET_PIT2
2253
2254Capability: KVM_CAP_PIT_STATE2
2255Architectures: x86
2256Type: vm ioctl
2257Parameters: struct kvm_pit_state2 (out)
2258Returns: 0 on success, -1 on error
2259
2260Retrieves the state of the in-kernel PIT model. Only valid after
2261KVM_CREATE_PIT2. The state is returned in the following structure:
2262
2263struct kvm_pit_state2 {
2264 struct kvm_pit_channel_state channels[3];
2265 __u32 flags;
2266 __u32 reserved[9];
2267};
2268
2269Valid flags are:
2270
2271/* disable PIT in HPET legacy mode */
2272#define KVM_PIT_FLAGS_HPET_LEGACY 0x00000001
2273
2274This IOCTL replaces the obsolete KVM_GET_PIT.
2275
2276
22774.73 KVM_SET_PIT2
2278
2279Capability: KVM_CAP_PIT_STATE2
2280Architectures: x86
2281Type: vm ioctl
2282Parameters: struct kvm_pit_state2 (in)
2283Returns: 0 on success, -1 on error
2284
2285Sets the state of the in-kernel PIT model. Only valid after KVM_CREATE_PIT2.
2286See KVM_GET_PIT2 for details on struct kvm_pit_state2.
2287
2288This IOCTL replaces the obsolete KVM_SET_PIT.
2289
2290
5b74716e
BH
22914.74 KVM_PPC_GET_SMMU_INFO
2292
2293Capability: KVM_CAP_PPC_GET_SMMU_INFO
2294Architectures: powerpc
2295Type: vm ioctl
2296Parameters: None
2297Returns: 0 on success, -1 on error
2298
2299This populates and returns a structure describing the features of
2300the "Server" class MMU emulation supported by KVM.
cc22c354 2301This can in turn be used by userspace to generate the appropriate
5b74716e
BH
2302device-tree properties for the guest operating system.
2303
c98be0c9 2304The structure contains some global information, followed by an
5b74716e
BH
2305array of supported segment page sizes:
2306
2307 struct kvm_ppc_smmu_info {
2308 __u64 flags;
2309 __u32 slb_size;
2310 __u32 pad;
2311 struct kvm_ppc_one_seg_page_size sps[KVM_PPC_PAGE_SIZES_MAX_SZ];
2312 };
2313
2314The supported flags are:
2315
2316 - KVM_PPC_PAGE_SIZES_REAL:
2317 When that flag is set, guest page sizes must "fit" the backing
2318 store page sizes. When not set, any page size in the list can
2319 be used regardless of how they are backed by userspace.
2320
2321 - KVM_PPC_1T_SEGMENTS
2322 The emulated MMU supports 1T segments in addition to the
2323 standard 256M ones.
2324
901f8c3f
PM
2325 - KVM_PPC_NO_HASH
2326 This flag indicates that HPT guests are not supported by KVM,
2327 thus all guests must use radix MMU mode.
2328
5b74716e
BH
2329The "slb_size" field indicates how many SLB entries are supported
2330
2331The "sps" array contains 8 entries indicating the supported base
2332page sizes for a segment in increasing order. Each entry is defined
2333as follow:
2334
2335 struct kvm_ppc_one_seg_page_size {
2336 __u32 page_shift; /* Base page shift of segment (or 0) */
2337 __u32 slb_enc; /* SLB encoding for BookS */
2338 struct kvm_ppc_one_page_size enc[KVM_PPC_PAGE_SIZES_MAX_SZ];
2339 };
2340
2341An entry with a "page_shift" of 0 is unused. Because the array is
2342organized in increasing order, a lookup can stop when encoutering
2343such an entry.
2344
2345The "slb_enc" field provides the encoding to use in the SLB for the
2346page size. The bits are in positions such as the value can directly
2347be OR'ed into the "vsid" argument of the slbmte instruction.
2348
2349The "enc" array is a list which for each of those segment base page
2350size provides the list of supported actual page sizes (which can be
2351only larger or equal to the base page size), along with the
f884ab15 2352corresponding encoding in the hash PTE. Similarly, the array is
5b74716e
BH
23538 entries sorted by increasing sizes and an entry with a "0" shift
2354is an empty entry and a terminator:
2355
2356 struct kvm_ppc_one_page_size {
2357 __u32 page_shift; /* Page shift (or 0) */
2358 __u32 pte_enc; /* Encoding in the HPTE (>>12) */
2359 };
2360
2361The "pte_enc" field provides a value that can OR'ed into the hash
2362PTE's RPN field (ie, it needs to be shifted left by 12 to OR it
2363into the hash PTE second double word).
2364
f36992e3
AW
23654.75 KVM_IRQFD
2366
2367Capability: KVM_CAP_IRQFD
174178fe 2368Architectures: x86 s390 arm arm64
f36992e3
AW
2369Type: vm ioctl
2370Parameters: struct kvm_irqfd (in)
2371Returns: 0 on success, -1 on error
2372
2373Allows setting an eventfd to directly trigger a guest interrupt.
2374kvm_irqfd.fd specifies the file descriptor to use as the eventfd and
2375kvm_irqfd.gsi specifies the irqchip pin toggled by this event. When
17180032 2376an event is triggered on the eventfd, an interrupt is injected into
f36992e3
AW
2377the guest using the specified gsi pin. The irqfd is removed using
2378the KVM_IRQFD_FLAG_DEASSIGN flag, specifying both kvm_irqfd.fd
2379and kvm_irqfd.gsi.
2380
7a84428a
AW
2381With KVM_CAP_IRQFD_RESAMPLE, KVM_IRQFD supports a de-assert and notify
2382mechanism allowing emulation of level-triggered, irqfd-based
2383interrupts. When KVM_IRQFD_FLAG_RESAMPLE is set the user must pass an
2384additional eventfd in the kvm_irqfd.resamplefd field. When operating
2385in resample mode, posting of an interrupt through kvm_irq.fd asserts
2386the specified gsi in the irqchip. When the irqchip is resampled, such
17180032 2387as from an EOI, the gsi is de-asserted and the user is notified via
7a84428a
AW
2388kvm_irqfd.resamplefd. It is the user's responsibility to re-queue
2389the interrupt if the device making use of it still requires service.
2390Note that closing the resamplefd is not sufficient to disable the
2391irqfd. The KVM_IRQFD_FLAG_RESAMPLE is only necessary on assignment
2392and need not be specified with KVM_IRQFD_FLAG_DEASSIGN.
2393
180ae7b1
EA
2394On arm/arm64, gsi routing being supported, the following can happen:
2395- in case no routing entry is associated to this gsi, injection fails
2396- in case the gsi is associated to an irqchip routing entry,
2397 irqchip.pin + 32 corresponds to the injected SPI ID.
995a0ee9
EA
2398- in case the gsi is associated to an MSI routing entry, the MSI
2399 message and device ID are translated into an LPI (support restricted
2400 to GICv3 ITS in-kernel emulation).
174178fe 2401
5fecc9d8 24024.76 KVM_PPC_ALLOCATE_HTAB
32fad281
PM
2403
2404Capability: KVM_CAP_PPC_ALLOC_HTAB
2405Architectures: powerpc
2406Type: vm ioctl
2407Parameters: Pointer to u32 containing hash table order (in/out)
2408Returns: 0 on success, -1 on error
2409
2410This requests the host kernel to allocate an MMU hash table for a
2411guest using the PAPR paravirtualization interface. This only does
2412anything if the kernel is configured to use the Book 3S HV style of
2413virtualization. Otherwise the capability doesn't exist and the ioctl
2414returns an ENOTTY error. The rest of this description assumes Book 3S
2415HV.
2416
2417There must be no vcpus running when this ioctl is called; if there
2418are, it will do nothing and return an EBUSY error.
2419
2420The parameter is a pointer to a 32-bit unsigned integer variable
2421containing the order (log base 2) of the desired size of the hash
2422table, which must be between 18 and 46. On successful return from the
f98a8bf9 2423ioctl, the value will not be changed by the kernel.
32fad281
PM
2424
2425If no hash table has been allocated when any vcpu is asked to run
2426(with the KVM_RUN ioctl), the host kernel will allocate a
2427default-sized hash table (16 MB).
2428
2429If this ioctl is called when a hash table has already been allocated,
f98a8bf9
DG
2430with a different order from the existing hash table, the existing hash
2431table will be freed and a new one allocated. If this is ioctl is
2432called when a hash table has already been allocated of the same order
2433as specified, the kernel will clear out the existing hash table (zero
2434all HPTEs). In either case, if the guest is using the virtualized
2435real-mode area (VRMA) facility, the kernel will re-create the VMRA
2436HPTEs on the next KVM_RUN of any vcpu.
32fad281 2437
416ad65f
CH
24384.77 KVM_S390_INTERRUPT
2439
2440Capability: basic
2441Architectures: s390
2442Type: vm ioctl, vcpu ioctl
2443Parameters: struct kvm_s390_interrupt (in)
2444Returns: 0 on success, -1 on error
2445
2446Allows to inject an interrupt to the guest. Interrupts can be floating
2447(vm ioctl) or per cpu (vcpu ioctl), depending on the interrupt type.
2448
2449Interrupt parameters are passed via kvm_s390_interrupt:
2450
2451struct kvm_s390_interrupt {
2452 __u32 type;
2453 __u32 parm;
2454 __u64 parm64;
2455};
2456
2457type can be one of the following:
2458
2822545f 2459KVM_S390_SIGP_STOP (vcpu) - sigp stop; optional flags in parm
416ad65f
CH
2460KVM_S390_PROGRAM_INT (vcpu) - program check; code in parm
2461KVM_S390_SIGP_SET_PREFIX (vcpu) - sigp set prefix; prefix address in parm
2462KVM_S390_RESTART (vcpu) - restart
e029ae5b
TH
2463KVM_S390_INT_CLOCK_COMP (vcpu) - clock comparator interrupt
2464KVM_S390_INT_CPU_TIMER (vcpu) - CPU timer interrupt
416ad65f
CH
2465KVM_S390_INT_VIRTIO (vm) - virtio external interrupt; external interrupt
2466 parameters in parm and parm64
2467KVM_S390_INT_SERVICE (vm) - sclp external interrupt; sclp parameter in parm
2468KVM_S390_INT_EMERGENCY (vcpu) - sigp emergency; source cpu in parm
2469KVM_S390_INT_EXTERNAL_CALL (vcpu) - sigp external call; source cpu in parm
d8346b7d
CH
2470KVM_S390_INT_IO(ai,cssid,ssid,schid) (vm) - compound value to indicate an
2471 I/O interrupt (ai - adapter interrupt; cssid,ssid,schid - subchannel);
2472 I/O interruption parameters in parm (subchannel) and parm64 (intparm,
2473 interruption subclass)
48a3e950
CH
2474KVM_S390_MCHK (vm, vcpu) - machine check interrupt; cr 14 bits in parm,
2475 machine check interrupt code in parm64 (note that
2476 machine checks needing further payload are not
2477 supported by this ioctl)
416ad65f
CH
2478
2479Note that the vcpu ioctl is asynchronous to vcpu execution.
2480
a2932923
PM
24814.78 KVM_PPC_GET_HTAB_FD
2482
2483Capability: KVM_CAP_PPC_HTAB_FD
2484Architectures: powerpc
2485Type: vm ioctl
2486Parameters: Pointer to struct kvm_get_htab_fd (in)
2487Returns: file descriptor number (>= 0) on success, -1 on error
2488
2489This returns a file descriptor that can be used either to read out the
2490entries in the guest's hashed page table (HPT), or to write entries to
2491initialize the HPT. The returned fd can only be written to if the
2492KVM_GET_HTAB_WRITE bit is set in the flags field of the argument, and
2493can only be read if that bit is clear. The argument struct looks like
2494this:
2495
2496/* For KVM_PPC_GET_HTAB_FD */
2497struct kvm_get_htab_fd {
2498 __u64 flags;
2499 __u64 start_index;
2500 __u64 reserved[2];
2501};
2502
2503/* Values for kvm_get_htab_fd.flags */
2504#define KVM_GET_HTAB_BOLTED_ONLY ((__u64)0x1)
2505#define KVM_GET_HTAB_WRITE ((__u64)0x2)
2506
2507The `start_index' field gives the index in the HPT of the entry at
2508which to start reading. It is ignored when writing.
2509
2510Reads on the fd will initially supply information about all
2511"interesting" HPT entries. Interesting entries are those with the
2512bolted bit set, if the KVM_GET_HTAB_BOLTED_ONLY bit is set, otherwise
2513all entries. When the end of the HPT is reached, the read() will
2514return. If read() is called again on the fd, it will start again from
2515the beginning of the HPT, but will only return HPT entries that have
2516changed since they were last read.
2517
2518Data read or written is structured as a header (8 bytes) followed by a
2519series of valid HPT entries (16 bytes) each. The header indicates how
2520many valid HPT entries there are and how many invalid entries follow
2521the valid entries. The invalid entries are not represented explicitly
2522in the stream. The header format is:
2523
2524struct kvm_get_htab_header {
2525 __u32 index;
2526 __u16 n_valid;
2527 __u16 n_invalid;
2528};
2529
2530Writes to the fd create HPT entries starting at the index given in the
2531header; first `n_valid' valid entries with contents from the data
2532written, then `n_invalid' invalid entries, invalidating any previously
2533valid entries found.
2534
852b6d57
SW
25354.79 KVM_CREATE_DEVICE
2536
2537Capability: KVM_CAP_DEVICE_CTRL
2538Type: vm ioctl
2539Parameters: struct kvm_create_device (in/out)
2540Returns: 0 on success, -1 on error
2541Errors:
2542 ENODEV: The device type is unknown or unsupported
2543 EEXIST: Device already created, and this type of device may not
2544 be instantiated multiple times
2545
2546 Other error conditions may be defined by individual device types or
2547 have their standard meanings.
2548
2549Creates an emulated device in the kernel. The file descriptor returned
2550in fd can be used with KVM_SET/GET/HAS_DEVICE_ATTR.
2551
2552If the KVM_CREATE_DEVICE_TEST flag is set, only test whether the
2553device type is supported (not necessarily whether it can be created
2554in the current vm).
2555
2556Individual devices should not define flags. Attributes should be used
2557for specifying any behavior that is not implied by the device type
2558number.
2559
2560struct kvm_create_device {
2561 __u32 type; /* in: KVM_DEV_TYPE_xxx */
2562 __u32 fd; /* out: device handle */
2563 __u32 flags; /* in: KVM_CREATE_DEVICE_xxx */
2564};
2565
25664.80 KVM_SET_DEVICE_ATTR/KVM_GET_DEVICE_ATTR
2567
f577f6c2
SZ
2568Capability: KVM_CAP_DEVICE_CTRL, KVM_CAP_VM_ATTRIBUTES for vm device,
2569 KVM_CAP_VCPU_ATTRIBUTES for vcpu device
2570Type: device ioctl, vm ioctl, vcpu ioctl
852b6d57
SW
2571Parameters: struct kvm_device_attr
2572Returns: 0 on success, -1 on error
2573Errors:
2574 ENXIO: The group or attribute is unknown/unsupported for this device
f9cbd9b0 2575 or hardware support is missing.
852b6d57
SW
2576 EPERM: The attribute cannot (currently) be accessed this way
2577 (e.g. read-only attribute, or attribute that only makes
2578 sense when the device is in a different state)
2579
2580 Other error conditions may be defined by individual device types.
2581
2582Gets/sets a specified piece of device configuration and/or state. The
2583semantics are device-specific. See individual device documentation in
2584the "devices" directory. As with ONE_REG, the size of the data
2585transferred is defined by the particular attribute.
2586
2587struct kvm_device_attr {
2588 __u32 flags; /* no flags currently defined */
2589 __u32 group; /* device-defined */
2590 __u64 attr; /* group-defined */
2591 __u64 addr; /* userspace address of attr data */
2592};
2593
25944.81 KVM_HAS_DEVICE_ATTR
2595
f577f6c2
SZ
2596Capability: KVM_CAP_DEVICE_CTRL, KVM_CAP_VM_ATTRIBUTES for vm device,
2597 KVM_CAP_VCPU_ATTRIBUTES for vcpu device
2598Type: device ioctl, vm ioctl, vcpu ioctl
852b6d57
SW
2599Parameters: struct kvm_device_attr
2600Returns: 0 on success, -1 on error
2601Errors:
2602 ENXIO: The group or attribute is unknown/unsupported for this device
f9cbd9b0 2603 or hardware support is missing.
852b6d57
SW
2604
2605Tests whether a device supports a particular attribute. A successful
2606return indicates the attribute is implemented. It does not necessarily
2607indicate that the attribute can be read or written in the device's
2608current state. "addr" is ignored.
f36992e3 2609
d8968f1f 26104.82 KVM_ARM_VCPU_INIT
749cf76c
CD
2611
2612Capability: basic
379e04c7 2613Architectures: arm, arm64
749cf76c 2614Type: vcpu ioctl
beb11fc7 2615Parameters: struct kvm_vcpu_init (in)
749cf76c
CD
2616Returns: 0 on success; -1 on error
2617Errors:
2618  EINVAL:    the target is unknown, or the combination of features is invalid.
2619  ENOENT:    a features bit specified is unknown.
2620
2621This tells KVM what type of CPU to present to the guest, and what
2622optional features it should have.  This will cause a reset of the cpu
2623registers to their initial values.  If this is not called, KVM_RUN will
2624return ENOEXEC for that vcpu.
2625
2626Note that because some registers reflect machine topology, all vcpus
2627should be created before this ioctl is invoked.
2628
f7fa034d
CD
2629Userspace can call this function multiple times for a given vcpu, including
2630after the vcpu has been run. This will reset the vcpu to its initial
2631state. All calls to this function after the initial call must use the same
2632target and same set of feature flags, otherwise EINVAL will be returned.
2633
aa024c2f
MZ
2634Possible features:
2635 - KVM_ARM_VCPU_POWER_OFF: Starts the CPU in a power-off state.
3ad8b3de
CD
2636 Depends on KVM_CAP_ARM_PSCI. If not set, the CPU will be powered on
2637 and execute guest code when KVM_RUN is called.
379e04c7
MZ
2638 - KVM_ARM_VCPU_EL1_32BIT: Starts the CPU in a 32bit mode.
2639 Depends on KVM_CAP_ARM_EL1_32BIT (arm64 only).
85bd0ba1
MZ
2640 - KVM_ARM_VCPU_PSCI_0_2: Emulate PSCI v0.2 (or a future revision
2641 backward compatible with v0.2) for the CPU.
50bb0c94 2642 Depends on KVM_CAP_ARM_PSCI_0_2.
808e7381
SZ
2643 - KVM_ARM_VCPU_PMU_V3: Emulate PMUv3 for the CPU.
2644 Depends on KVM_CAP_ARM_PMU_V3.
aa024c2f 2645
749cf76c 2646
740edfc0
AP
26474.83 KVM_ARM_PREFERRED_TARGET
2648
2649Capability: basic
2650Architectures: arm, arm64
2651Type: vm ioctl
2652Parameters: struct struct kvm_vcpu_init (out)
2653Returns: 0 on success; -1 on error
2654Errors:
a7265fb1 2655 ENODEV: no preferred target available for the host
740edfc0
AP
2656
2657This queries KVM for preferred CPU target type which can be emulated
2658by KVM on underlying host.
2659
2660The ioctl returns struct kvm_vcpu_init instance containing information
2661about preferred CPU target type and recommended features for it. The
2662kvm_vcpu_init->features bitmap returned will have feature bits set if
2663the preferred target recommends setting these features, but this is
2664not mandatory.
2665
2666The information returned by this ioctl can be used to prepare an instance
2667of struct kvm_vcpu_init for KVM_ARM_VCPU_INIT ioctl which will result in
2668in VCPU matching underlying host.
2669
2670
26714.84 KVM_GET_REG_LIST
749cf76c
CD
2672
2673Capability: basic
c2d2c21b 2674Architectures: arm, arm64, mips
749cf76c
CD
2675Type: vcpu ioctl
2676Parameters: struct kvm_reg_list (in/out)
2677Returns: 0 on success; -1 on error
2678Errors:
2679  E2BIG:     the reg index list is too big to fit in the array specified by
2680             the user (the number required will be written into n).
2681
2682struct kvm_reg_list {
2683 __u64 n; /* number of registers in reg[] */
2684 __u64 reg[0];
2685};
2686
2687This ioctl returns the guest registers that are supported for the
2688KVM_GET_ONE_REG/KVM_SET_ONE_REG calls.
2689
ce01e4e8
CD
2690
26914.85 KVM_ARM_SET_DEVICE_ADDR (deprecated)
3401d546
CD
2692
2693Capability: KVM_CAP_ARM_SET_DEVICE_ADDR
379e04c7 2694Architectures: arm, arm64
3401d546
CD
2695Type: vm ioctl
2696Parameters: struct kvm_arm_device_address (in)
2697Returns: 0 on success, -1 on error
2698Errors:
2699 ENODEV: The device id is unknown
2700 ENXIO: Device not supported on current system
2701 EEXIST: Address already set
2702 E2BIG: Address outside guest physical address space
330690cd 2703 EBUSY: Address overlaps with other device range
3401d546
CD
2704
2705struct kvm_arm_device_addr {
2706 __u64 id;
2707 __u64 addr;
2708};
2709
2710Specify a device address in the guest's physical address space where guests
2711can access emulated or directly exposed devices, which the host kernel needs
2712to know about. The id field is an architecture specific identifier for a
2713specific device.
2714
379e04c7
MZ
2715ARM/arm64 divides the id field into two parts, a device id and an
2716address type id specific to the individual device.
3401d546
CD
2717
2718  bits: | 63 ... 32 | 31 ... 16 | 15 ... 0 |
2719 field: | 0x00000000 | device id | addr type id |
2720
379e04c7
MZ
2721ARM/arm64 currently only require this when using the in-kernel GIC
2722support for the hardware VGIC features, using KVM_ARM_DEVICE_VGIC_V2
2723as the device id. When setting the base address for the guest's
2724mapping of the VGIC virtual CPU and distributor interface, the ioctl
2725must be called after calling KVM_CREATE_IRQCHIP, but before calling
2726KVM_RUN on any of the VCPUs. Calling this ioctl twice for any of the
2727base addresses will return -EEXIST.
3401d546 2728
ce01e4e8
CD
2729Note, this IOCTL is deprecated and the more flexible SET/GET_DEVICE_ATTR API
2730should be used instead.
2731
2732
740edfc0 27334.86 KVM_PPC_RTAS_DEFINE_TOKEN
8e591cb7
ME
2734
2735Capability: KVM_CAP_PPC_RTAS
2736Architectures: ppc
2737Type: vm ioctl
2738Parameters: struct kvm_rtas_token_args
2739Returns: 0 on success, -1 on error
2740
2741Defines a token value for a RTAS (Run Time Abstraction Services)
2742service in order to allow it to be handled in the kernel. The
2743argument struct gives the name of the service, which must be the name
2744of a service that has a kernel-side implementation. If the token
2745value is non-zero, it will be associated with that service, and
2746subsequent RTAS calls by the guest specifying that token will be
2747handled by the kernel. If the token value is 0, then any token
2748associated with the service will be forgotten, and subsequent RTAS
2749calls by the guest for that service will be passed to userspace to be
2750handled.
2751
4bd9d344
AB
27524.87 KVM_SET_GUEST_DEBUG
2753
2754Capability: KVM_CAP_SET_GUEST_DEBUG
0e6f07f2 2755Architectures: x86, s390, ppc, arm64
4bd9d344
AB
2756Type: vcpu ioctl
2757Parameters: struct kvm_guest_debug (in)
2758Returns: 0 on success; -1 on error
2759
2760struct kvm_guest_debug {
2761 __u32 control;
2762 __u32 pad;
2763 struct kvm_guest_debug_arch arch;
2764};
2765
2766Set up the processor specific debug registers and configure vcpu for
2767handling guest debug events. There are two parts to the structure, the
2768first a control bitfield indicates the type of debug events to handle
2769when running. Common control bits are:
2770
2771 - KVM_GUESTDBG_ENABLE: guest debugging is enabled
2772 - KVM_GUESTDBG_SINGLESTEP: the next run should single-step
2773
2774The top 16 bits of the control field are architecture specific control
2775flags which can include the following:
2776
4bd611ca 2777 - KVM_GUESTDBG_USE_SW_BP: using software breakpoints [x86, arm64]
834bf887 2778 - KVM_GUESTDBG_USE_HW_BP: using hardware breakpoints [x86, s390, arm64]
4bd9d344
AB
2779 - KVM_GUESTDBG_INJECT_DB: inject DB type exception [x86]
2780 - KVM_GUESTDBG_INJECT_BP: inject BP type exception [x86]
2781 - KVM_GUESTDBG_EXIT_PENDING: trigger an immediate guest exit [s390]
2782
2783For example KVM_GUESTDBG_USE_SW_BP indicates that software breakpoints
2784are enabled in memory so we need to ensure breakpoint exceptions are
2785correctly trapped and the KVM run loop exits at the breakpoint and not
2786running off into the normal guest vector. For KVM_GUESTDBG_USE_HW_BP
2787we need to ensure the guest vCPUs architecture specific registers are
2788updated to the correct (supplied) values.
2789
2790The second part of the structure is architecture specific and
2791typically contains a set of debug registers.
2792
834bf887
AB
2793For arm64 the number of debug registers is implementation defined and
2794can be determined by querying the KVM_CAP_GUEST_DEBUG_HW_BPS and
2795KVM_CAP_GUEST_DEBUG_HW_WPS capabilities which return a positive number
2796indicating the number of supported registers.
2797
4bd9d344
AB
2798When debug events exit the main run loop with the reason
2799KVM_EXIT_DEBUG with the kvm_debug_exit_arch part of the kvm_run
2800structure containing architecture specific debug information.
3401d546 2801
209cf19f
AB
28024.88 KVM_GET_EMULATED_CPUID
2803
2804Capability: KVM_CAP_EXT_EMUL_CPUID
2805Architectures: x86
2806Type: system ioctl
2807Parameters: struct kvm_cpuid2 (in/out)
2808Returns: 0 on success, -1 on error
2809
2810struct kvm_cpuid2 {
2811 __u32 nent;
2812 __u32 flags;
2813 struct kvm_cpuid_entry2 entries[0];
2814};
2815
2816The member 'flags' is used for passing flags from userspace.
2817
2818#define KVM_CPUID_FLAG_SIGNIFCANT_INDEX BIT(0)
2819#define KVM_CPUID_FLAG_STATEFUL_FUNC BIT(1)
2820#define KVM_CPUID_FLAG_STATE_READ_NEXT BIT(2)
2821
2822struct kvm_cpuid_entry2 {
2823 __u32 function;
2824 __u32 index;
2825 __u32 flags;
2826 __u32 eax;
2827 __u32 ebx;
2828 __u32 ecx;
2829 __u32 edx;
2830 __u32 padding[3];
2831};
2832
2833This ioctl returns x86 cpuid features which are emulated by
2834kvm.Userspace can use the information returned by this ioctl to query
2835which features are emulated by kvm instead of being present natively.
2836
2837Userspace invokes KVM_GET_EMULATED_CPUID by passing a kvm_cpuid2
2838structure with the 'nent' field indicating the number of entries in
2839the variable-size array 'entries'. If the number of entries is too low
2840to describe the cpu capabilities, an error (E2BIG) is returned. If the
2841number is too high, the 'nent' field is adjusted and an error (ENOMEM)
2842is returned. If the number is just right, the 'nent' field is adjusted
2843to the number of valid entries in the 'entries' array, which is then
2844filled.
2845
2846The entries returned are the set CPUID bits of the respective features
2847which kvm emulates, as returned by the CPUID instruction, with unknown
2848or unsupported feature bits cleared.
2849
2850Features like x2apic, for example, may not be present in the host cpu
2851but are exposed by kvm in KVM_GET_SUPPORTED_CPUID because they can be
2852emulated efficiently and thus not included here.
2853
2854The fields in each entry are defined as follows:
2855
2856 function: the eax value used to obtain the entry
2857 index: the ecx value used to obtain the entry (for entries that are
2858 affected by ecx)
2859 flags: an OR of zero or more of the following:
2860 KVM_CPUID_FLAG_SIGNIFCANT_INDEX:
2861 if the index field is valid
2862 KVM_CPUID_FLAG_STATEFUL_FUNC:
2863 if cpuid for this function returns different values for successive
2864 invocations; there will be several entries with the same function,
2865 all with this flag set
2866 KVM_CPUID_FLAG_STATE_READ_NEXT:
2867 for KVM_CPUID_FLAG_STATEFUL_FUNC entries, set if this entry is
2868 the first entry to be read by a cpu
2869 eax, ebx, ecx, edx: the values returned by the cpuid instruction for
2870 this function/index combination
2871
41408c28
TH
28724.89 KVM_S390_MEM_OP
2873
2874Capability: KVM_CAP_S390_MEM_OP
2875Architectures: s390
2876Type: vcpu ioctl
2877Parameters: struct kvm_s390_mem_op (in)
2878Returns: = 0 on success,
2879 < 0 on generic error (e.g. -EFAULT or -ENOMEM),
2880 > 0 if an exception occurred while walking the page tables
2881
5d4f6f3d 2882Read or write data from/to the logical (virtual) memory of a VCPU.
41408c28
TH
2883
2884Parameters are specified via the following structure:
2885
2886struct kvm_s390_mem_op {
2887 __u64 gaddr; /* the guest address */
2888 __u64 flags; /* flags */
2889 __u32 size; /* amount of bytes */
2890 __u32 op; /* type of operation */
2891 __u64 buf; /* buffer in userspace */
2892 __u8 ar; /* the access register number */
2893 __u8 reserved[31]; /* should be set to 0 */
2894};
2895
2896The type of operation is specified in the "op" field. It is either
2897KVM_S390_MEMOP_LOGICAL_READ for reading from logical memory space or
2898KVM_S390_MEMOP_LOGICAL_WRITE for writing to logical memory space. The
2899KVM_S390_MEMOP_F_CHECK_ONLY flag can be set in the "flags" field to check
2900whether the corresponding memory access would create an access exception
2901(without touching the data in the memory at the destination). In case an
2902access exception occurred while walking the MMU tables of the guest, the
2903ioctl returns a positive error number to indicate the type of exception.
2904This exception is also raised directly at the corresponding VCPU if the
2905flag KVM_S390_MEMOP_F_INJECT_EXCEPTION is set in the "flags" field.
2906
2907The start address of the memory region has to be specified in the "gaddr"
2908field, and the length of the region in the "size" field. "buf" is the buffer
2909supplied by the userspace application where the read data should be written
2910to for KVM_S390_MEMOP_LOGICAL_READ, or where the data that should be written
2911is stored for a KVM_S390_MEMOP_LOGICAL_WRITE. "buf" is unused and can be NULL
2912when KVM_S390_MEMOP_F_CHECK_ONLY is specified. "ar" designates the access
2913register number to be used.
2914
2915The "reserved" field is meant for future extensions. It is not used by
2916KVM with the currently defined set of flags.
2917
30ee2a98
JH
29184.90 KVM_S390_GET_SKEYS
2919
2920Capability: KVM_CAP_S390_SKEYS
2921Architectures: s390
2922Type: vm ioctl
2923Parameters: struct kvm_s390_skeys
2924Returns: 0 on success, KVM_S390_GET_KEYS_NONE if guest is not using storage
2925 keys, negative value on error
2926
2927This ioctl is used to get guest storage key values on the s390
2928architecture. The ioctl takes parameters via the kvm_s390_skeys struct.
2929
2930struct kvm_s390_skeys {
2931 __u64 start_gfn;
2932 __u64 count;
2933 __u64 skeydata_addr;
2934 __u32 flags;
2935 __u32 reserved[9];
2936};
2937
2938The start_gfn field is the number of the first guest frame whose storage keys
2939you want to get.
2940
2941The count field is the number of consecutive frames (starting from start_gfn)
2942whose storage keys to get. The count field must be at least 1 and the maximum
2943allowed value is defined as KVM_S390_SKEYS_ALLOC_MAX. Values outside this range
2944will cause the ioctl to return -EINVAL.
2945
2946The skeydata_addr field is the address to a buffer large enough to hold count
2947bytes. This buffer will be filled with storage key data by the ioctl.
2948
29494.91 KVM_S390_SET_SKEYS
2950
2951Capability: KVM_CAP_S390_SKEYS
2952Architectures: s390
2953Type: vm ioctl
2954Parameters: struct kvm_s390_skeys
2955Returns: 0 on success, negative value on error
2956
2957This ioctl is used to set guest storage key values on the s390
2958architecture. The ioctl takes parameters via the kvm_s390_skeys struct.
2959See section on KVM_S390_GET_SKEYS for struct definition.
2960
2961The start_gfn field is the number of the first guest frame whose storage keys
2962you want to set.
2963
2964The count field is the number of consecutive frames (starting from start_gfn)
2965whose storage keys to get. The count field must be at least 1 and the maximum
2966allowed value is defined as KVM_S390_SKEYS_ALLOC_MAX. Values outside this range
2967will cause the ioctl to return -EINVAL.
2968
2969The skeydata_addr field is the address to a buffer containing count bytes of
2970storage keys. Each byte in the buffer will be set as the storage key for a
2971single frame starting at start_gfn for count frames.
2972
2973Note: If any architecturally invalid key value is found in the given data then
2974the ioctl will return -EINVAL.
2975
47b43c52
JF
29764.92 KVM_S390_IRQ
2977
2978Capability: KVM_CAP_S390_INJECT_IRQ
2979Architectures: s390
2980Type: vcpu ioctl
2981Parameters: struct kvm_s390_irq (in)
2982Returns: 0 on success, -1 on error
2983Errors:
2984 EINVAL: interrupt type is invalid
2985 type is KVM_S390_SIGP_STOP and flag parameter is invalid value
2986 type is KVM_S390_INT_EXTERNAL_CALL and code is bigger
2987 than the maximum of VCPUs
2988 EBUSY: type is KVM_S390_SIGP_SET_PREFIX and vcpu is not stopped
2989 type is KVM_S390_SIGP_STOP and a stop irq is already pending
2990 type is KVM_S390_INT_EXTERNAL_CALL and an external call interrupt
2991 is already pending
2992
2993Allows to inject an interrupt to the guest.
2994
2995Using struct kvm_s390_irq as a parameter allows
2996to inject additional payload which is not
2997possible via KVM_S390_INTERRUPT.
2998
2999Interrupt parameters are passed via kvm_s390_irq:
3000
3001struct kvm_s390_irq {
3002 __u64 type;
3003 union {
3004 struct kvm_s390_io_info io;
3005 struct kvm_s390_ext_info ext;
3006 struct kvm_s390_pgm_info pgm;
3007 struct kvm_s390_emerg_info emerg;
3008 struct kvm_s390_extcall_info extcall;
3009 struct kvm_s390_prefix_info prefix;
3010 struct kvm_s390_stop_info stop;
3011 struct kvm_s390_mchk_info mchk;
3012 char reserved[64];
3013 } u;
3014};
3015
3016type can be one of the following:
3017
3018KVM_S390_SIGP_STOP - sigp stop; parameter in .stop
3019KVM_S390_PROGRAM_INT - program check; parameters in .pgm
3020KVM_S390_SIGP_SET_PREFIX - sigp set prefix; parameters in .prefix
3021KVM_S390_RESTART - restart; no parameters
3022KVM_S390_INT_CLOCK_COMP - clock comparator interrupt; no parameters
3023KVM_S390_INT_CPU_TIMER - CPU timer interrupt; no parameters
3024KVM_S390_INT_EMERGENCY - sigp emergency; parameters in .emerg
3025KVM_S390_INT_EXTERNAL_CALL - sigp external call; parameters in .extcall
3026KVM_S390_MCHK - machine check interrupt; parameters in .mchk
3027
3028
3029Note that the vcpu ioctl is asynchronous to vcpu execution.
3030
816c7667
JF
30314.94 KVM_S390_GET_IRQ_STATE
3032
3033Capability: KVM_CAP_S390_IRQ_STATE
3034Architectures: s390
3035Type: vcpu ioctl
3036Parameters: struct kvm_s390_irq_state (out)
3037Returns: >= number of bytes copied into buffer,
3038 -EINVAL if buffer size is 0,
3039 -ENOBUFS if buffer size is too small to fit all pending interrupts,
3040 -EFAULT if the buffer address was invalid
3041
3042This ioctl allows userspace to retrieve the complete state of all currently
3043pending interrupts in a single buffer. Use cases include migration
3044and introspection. The parameter structure contains the address of a
3045userspace buffer and its length:
3046
3047struct kvm_s390_irq_state {
3048 __u64 buf;
bb64da9a 3049 __u32 flags; /* will stay unused for compatibility reasons */
816c7667 3050 __u32 len;
bb64da9a 3051 __u32 reserved[4]; /* will stay unused for compatibility reasons */
816c7667
JF
3052};
3053
3054Userspace passes in the above struct and for each pending interrupt a
3055struct kvm_s390_irq is copied to the provided buffer.
3056
bb64da9a
CB
3057The structure contains a flags and a reserved field for future extensions. As
3058the kernel never checked for flags == 0 and QEMU never pre-zeroed flags and
3059reserved, these fields can not be used in the future without breaking
3060compatibility.
3061
816c7667
JF
3062If -ENOBUFS is returned the buffer provided was too small and userspace
3063may retry with a bigger buffer.
3064
30654.95 KVM_S390_SET_IRQ_STATE
3066
3067Capability: KVM_CAP_S390_IRQ_STATE
3068Architectures: s390
3069Type: vcpu ioctl
3070Parameters: struct kvm_s390_irq_state (in)
3071Returns: 0 on success,
3072 -EFAULT if the buffer address was invalid,
3073 -EINVAL for an invalid buffer length (see below),
3074 -EBUSY if there were already interrupts pending,
3075 errors occurring when actually injecting the
3076 interrupt. See KVM_S390_IRQ.
3077
3078This ioctl allows userspace to set the complete state of all cpu-local
3079interrupts currently pending for the vcpu. It is intended for restoring
3080interrupt state after a migration. The input parameter is a userspace buffer
3081containing a struct kvm_s390_irq_state:
3082
3083struct kvm_s390_irq_state {
3084 __u64 buf;
bb64da9a 3085 __u32 flags; /* will stay unused for compatibility reasons */
816c7667 3086 __u32 len;
bb64da9a 3087 __u32 reserved[4]; /* will stay unused for compatibility reasons */
816c7667
JF
3088};
3089
bb64da9a
CB
3090The restrictions for flags and reserved apply as well.
3091(see KVM_S390_GET_IRQ_STATE)
3092
816c7667
JF
3093The userspace memory referenced by buf contains a struct kvm_s390_irq
3094for each interrupt to be injected into the guest.
3095If one of the interrupts could not be injected for some reason the
3096ioctl aborts.
3097
3098len must be a multiple of sizeof(struct kvm_s390_irq). It must be > 0
3099and it must not exceed (max_vcpus + 32) * sizeof(struct kvm_s390_irq),
3100which is the maximum number of possibly pending cpu-local interrupts.
47b43c52 3101
ed8e5a24 31024.96 KVM_SMI
f077825a
PB
3103
3104Capability: KVM_CAP_X86_SMM
3105Architectures: x86
3106Type: vcpu ioctl
3107Parameters: none
3108Returns: 0 on success, -1 on error
3109
3110Queues an SMI on the thread's vcpu.
3111
d3695aa4
AK
31124.97 KVM_CAP_PPC_MULTITCE
3113
3114Capability: KVM_CAP_PPC_MULTITCE
3115Architectures: ppc
3116Type: vm
3117
3118This capability means the kernel is capable of handling hypercalls
3119H_PUT_TCE_INDIRECT and H_STUFF_TCE without passing those into the user
3120space. This significantly accelerates DMA operations for PPC KVM guests.
3121User space should expect that its handlers for these hypercalls
3122are not going to be called if user space previously registered LIOBN
3123in KVM (via KVM_CREATE_SPAPR_TCE or similar calls).
3124
3125In order to enable H_PUT_TCE_INDIRECT and H_STUFF_TCE use in the guest,
3126user space might have to advertise it for the guest. For example,
3127IBM pSeries (sPAPR) guest starts using them if "hcall-multi-tce" is
3128present in the "ibm,hypertas-functions" device-tree property.
3129
3130The hypercalls mentioned above may or may not be processed successfully
3131in the kernel based fast path. If they can not be handled by the kernel,
3132they will get passed on to user space. So user space still has to have
3133an implementation for these despite the in kernel acceleration.
3134
3135This capability is always enabled.
3136
58ded420
AK
31374.98 KVM_CREATE_SPAPR_TCE_64
3138
3139Capability: KVM_CAP_SPAPR_TCE_64
3140Architectures: powerpc
3141Type: vm ioctl
3142Parameters: struct kvm_create_spapr_tce_64 (in)
3143Returns: file descriptor for manipulating the created TCE table
3144
3145This is an extension for KVM_CAP_SPAPR_TCE which only supports 32bit
3146windows, described in 4.62 KVM_CREATE_SPAPR_TCE
3147
3148This capability uses extended struct in ioctl interface:
3149
3150/* for KVM_CAP_SPAPR_TCE_64 */
3151struct kvm_create_spapr_tce_64 {
3152 __u64 liobn;
3153 __u32 page_shift;
3154 __u32 flags;
3155 __u64 offset; /* in pages */
3156 __u64 size; /* in pages */
3157};
3158
3159The aim of extension is to support an additional bigger DMA window with
3160a variable page size.
3161KVM_CREATE_SPAPR_TCE_64 receives a 64bit window size, an IOMMU page shift and
3162a bus offset of the corresponding DMA window, @size and @offset are numbers
3163of IOMMU pages.
3164
3165@flags are not used at the moment.
3166
3167The rest of functionality is identical to KVM_CREATE_SPAPR_TCE.
3168
ccc4df4e 31694.99 KVM_REINJECT_CONTROL
107d44a2
RK
3170
3171Capability: KVM_CAP_REINJECT_CONTROL
3172Architectures: x86
3173Type: vm ioctl
3174Parameters: struct kvm_reinject_control (in)
3175Returns: 0 on success,
3176 -EFAULT if struct kvm_reinject_control cannot be read,
3177 -ENXIO if KVM_CREATE_PIT or KVM_CREATE_PIT2 didn't succeed earlier.
3178
3179i8254 (PIT) has two modes, reinject and !reinject. The default is reinject,
3180where KVM queues elapsed i8254 ticks and monitors completion of interrupt from
3181vector(s) that i8254 injects. Reinject mode dequeues a tick and injects its
3182interrupt whenever there isn't a pending interrupt from i8254.
3183!reinject mode injects an interrupt as soon as a tick arrives.
3184
3185struct kvm_reinject_control {
3186 __u8 pit_reinject;
3187 __u8 reserved[31];
3188};
3189
3190pit_reinject = 0 (!reinject mode) is recommended, unless running an old
3191operating system that uses the PIT for timing (e.g. Linux 2.4.x).
3192
ccc4df4e 31934.100 KVM_PPC_CONFIGURE_V3_MMU
c9270132
PM
3194
3195Capability: KVM_CAP_PPC_RADIX_MMU or KVM_CAP_PPC_HASH_MMU_V3
3196Architectures: ppc
3197Type: vm ioctl
3198Parameters: struct kvm_ppc_mmuv3_cfg (in)
3199Returns: 0 on success,
3200 -EFAULT if struct kvm_ppc_mmuv3_cfg cannot be read,
3201 -EINVAL if the configuration is invalid
3202
3203This ioctl controls whether the guest will use radix or HPT (hashed
3204page table) translation, and sets the pointer to the process table for
3205the guest.
3206
3207struct kvm_ppc_mmuv3_cfg {
3208 __u64 flags;
3209 __u64 process_table;
3210};
3211
3212There are two bits that can be set in flags; KVM_PPC_MMUV3_RADIX and
3213KVM_PPC_MMUV3_GTSE. KVM_PPC_MMUV3_RADIX, if set, configures the guest
3214to use radix tree translation, and if clear, to use HPT translation.
3215KVM_PPC_MMUV3_GTSE, if set and if KVM permits it, configures the guest
3216to be able to use the global TLB and SLB invalidation instructions;
3217if clear, the guest may not use these instructions.
3218
3219The process_table field specifies the address and size of the guest
3220process table, which is in the guest's space. This field is formatted
3221as the second doubleword of the partition table entry, as defined in
3222the Power ISA V3.00, Book III section 5.7.6.1.
3223
ccc4df4e 32244.101 KVM_PPC_GET_RMMU_INFO
c9270132
PM
3225
3226Capability: KVM_CAP_PPC_RADIX_MMU
3227Architectures: ppc
3228Type: vm ioctl
3229Parameters: struct kvm_ppc_rmmu_info (out)
3230Returns: 0 on success,
3231 -EFAULT if struct kvm_ppc_rmmu_info cannot be written,
3232 -EINVAL if no useful information can be returned
3233
3234This ioctl returns a structure containing two things: (a) a list
3235containing supported radix tree geometries, and (b) a list that maps
3236page sizes to put in the "AP" (actual page size) field for the tlbie
3237(TLB invalidate entry) instruction.
3238
3239struct kvm_ppc_rmmu_info {
3240 struct kvm_ppc_radix_geom {
3241 __u8 page_shift;
3242 __u8 level_bits[4];
3243 __u8 pad[3];
3244 } geometries[8];
3245 __u32 ap_encodings[8];
3246};
3247
3248The geometries[] field gives up to 8 supported geometries for the
3249radix page table, in terms of the log base 2 of the smallest page
3250size, and the number of bits indexed at each level of the tree, from
3251the PTE level up to the PGD level in that order. Any unused entries
3252will have 0 in the page_shift field.
3253
3254The ap_encodings gives the supported page sizes and their AP field
3255encodings, encoded with the AP value in the top 3 bits and the log
3256base 2 of the page size in the bottom 6 bits.
3257
ef1ead0c
DG
32584.102 KVM_PPC_RESIZE_HPT_PREPARE
3259
3260Capability: KVM_CAP_SPAPR_RESIZE_HPT
3261Architectures: powerpc
3262Type: vm ioctl
3263Parameters: struct kvm_ppc_resize_hpt (in)
3264Returns: 0 on successful completion,
3265 >0 if a new HPT is being prepared, the value is an estimated
3266 number of milliseconds until preparation is complete
3267 -EFAULT if struct kvm_reinject_control cannot be read,
3268 -EINVAL if the supplied shift or flags are invalid
3269 -ENOMEM if unable to allocate the new HPT
3270 -ENOSPC if there was a hash collision when moving existing
3271 HPT entries to the new HPT
3272 -EIO on other error conditions
3273
3274Used to implement the PAPR extension for runtime resizing of a guest's
3275Hashed Page Table (HPT). Specifically this starts, stops or monitors
3276the preparation of a new potential HPT for the guest, essentially
3277implementing the H_RESIZE_HPT_PREPARE hypercall.
3278
3279If called with shift > 0 when there is no pending HPT for the guest,
3280this begins preparation of a new pending HPT of size 2^(shift) bytes.
3281It then returns a positive integer with the estimated number of
3282milliseconds until preparation is complete.
3283
3284If called when there is a pending HPT whose size does not match that
3285requested in the parameters, discards the existing pending HPT and
3286creates a new one as above.
3287
3288If called when there is a pending HPT of the size requested, will:
3289 * If preparation of the pending HPT is already complete, return 0
3290 * If preparation of the pending HPT has failed, return an error
3291 code, then discard the pending HPT.
3292 * If preparation of the pending HPT is still in progress, return an
3293 estimated number of milliseconds until preparation is complete.
3294
3295If called with shift == 0, discards any currently pending HPT and
3296returns 0 (i.e. cancels any in-progress preparation).
3297
3298flags is reserved for future expansion, currently setting any bits in
3299flags will result in an -EINVAL.
3300
3301Normally this will be called repeatedly with the same parameters until
3302it returns <= 0. The first call will initiate preparation, subsequent
3303ones will monitor preparation until it completes or fails.
3304
3305struct kvm_ppc_resize_hpt {
3306 __u64 flags;
3307 __u32 shift;
3308 __u32 pad;
3309};
3310
33114.103 KVM_PPC_RESIZE_HPT_COMMIT
3312
3313Capability: KVM_CAP_SPAPR_RESIZE_HPT
3314Architectures: powerpc
3315Type: vm ioctl
3316Parameters: struct kvm_ppc_resize_hpt (in)
3317Returns: 0 on successful completion,
3318 -EFAULT if struct kvm_reinject_control cannot be read,
3319 -EINVAL if the supplied shift or flags are invalid
3320 -ENXIO is there is no pending HPT, or the pending HPT doesn't
3321 have the requested size
3322 -EBUSY if the pending HPT is not fully prepared
3323 -ENOSPC if there was a hash collision when moving existing
3324 HPT entries to the new HPT
3325 -EIO on other error conditions
3326
3327Used to implement the PAPR extension for runtime resizing of a guest's
3328Hashed Page Table (HPT). Specifically this requests that the guest be
3329transferred to working with the new HPT, essentially implementing the
3330H_RESIZE_HPT_COMMIT hypercall.
3331
3332This should only be called after KVM_PPC_RESIZE_HPT_PREPARE has
3333returned 0 with the same parameters. In other cases
3334KVM_PPC_RESIZE_HPT_COMMIT will return an error (usually -ENXIO or
3335-EBUSY, though others may be possible if the preparation was started,
3336but failed).
3337
3338This will have undefined effects on the guest if it has not already
3339placed itself in a quiescent state where no vcpu will make MMU enabled
3340memory accesses.
3341
3342On succsful completion, the pending HPT will become the guest's active
3343HPT and the previous HPT will be discarded.
3344
3345On failure, the guest will still be operating on its previous HPT.
3346
3347struct kvm_ppc_resize_hpt {
3348 __u64 flags;
3349 __u32 shift;
3350 __u32 pad;
3351};
3352
3aa53859
LC
33534.104 KVM_X86_GET_MCE_CAP_SUPPORTED
3354
3355Capability: KVM_CAP_MCE
3356Architectures: x86
3357Type: system ioctl
3358Parameters: u64 mce_cap (out)
3359Returns: 0 on success, -1 on error
3360
3361Returns supported MCE capabilities. The u64 mce_cap parameter
3362has the same format as the MSR_IA32_MCG_CAP register. Supported
3363capabilities will have the corresponding bits set.
3364
33654.105 KVM_X86_SETUP_MCE
3366
3367Capability: KVM_CAP_MCE
3368Architectures: x86
3369Type: vcpu ioctl
3370Parameters: u64 mcg_cap (in)
3371Returns: 0 on success,
3372 -EFAULT if u64 mcg_cap cannot be read,
3373 -EINVAL if the requested number of banks is invalid,
3374 -EINVAL if requested MCE capability is not supported.
3375
3376Initializes MCE support for use. The u64 mcg_cap parameter
3377has the same format as the MSR_IA32_MCG_CAP register and
3378specifies which capabilities should be enabled. The maximum
3379supported number of error-reporting banks can be retrieved when
3380checking for KVM_CAP_MCE. The supported capabilities can be
3381retrieved with KVM_X86_GET_MCE_CAP_SUPPORTED.
3382
33834.106 KVM_X86_SET_MCE
3384
3385Capability: KVM_CAP_MCE
3386Architectures: x86
3387Type: vcpu ioctl
3388Parameters: struct kvm_x86_mce (in)
3389Returns: 0 on success,
3390 -EFAULT if struct kvm_x86_mce cannot be read,
3391 -EINVAL if the bank number is invalid,
3392 -EINVAL if VAL bit is not set in status field.
3393
3394Inject a machine check error (MCE) into the guest. The input
3395parameter is:
3396
3397struct kvm_x86_mce {
3398 __u64 status;
3399 __u64 addr;
3400 __u64 misc;
3401 __u64 mcg_status;
3402 __u8 bank;
3403 __u8 pad1[7];
3404 __u64 pad2[3];
3405};
3406
3407If the MCE being reported is an uncorrected error, KVM will
3408inject it as an MCE exception into the guest. If the guest
3409MCG_STATUS register reports that an MCE is in progress, KVM
3410causes an KVM_EXIT_SHUTDOWN vmexit.
3411
3412Otherwise, if the MCE is a corrected error, KVM will just
3413store it in the corresponding bank (provided this bank is
3414not holding a previously reported uncorrected error).
3415
4036e387
CI
34164.107 KVM_S390_GET_CMMA_BITS
3417
3418Capability: KVM_CAP_S390_CMMA_MIGRATION
3419Architectures: s390
3420Type: vm ioctl
3421Parameters: struct kvm_s390_cmma_log (in, out)
3422Returns: 0 on success, a negative value on error
3423
3424This ioctl is used to get the values of the CMMA bits on the s390
3425architecture. It is meant to be used in two scenarios:
3426- During live migration to save the CMMA values. Live migration needs
3427 to be enabled via the KVM_REQ_START_MIGRATION VM property.
3428- To non-destructively peek at the CMMA values, with the flag
3429 KVM_S390_CMMA_PEEK set.
3430
3431The ioctl takes parameters via the kvm_s390_cmma_log struct. The desired
3432values are written to a buffer whose location is indicated via the "values"
3433member in the kvm_s390_cmma_log struct. The values in the input struct are
3434also updated as needed.
3435Each CMMA value takes up one byte.
3436
3437struct kvm_s390_cmma_log {
3438 __u64 start_gfn;
3439 __u32 count;
3440 __u32 flags;
3441 union {
3442 __u64 remaining;
3443 __u64 mask;
3444 };
3445 __u64 values;
3446};
3447
3448start_gfn is the number of the first guest frame whose CMMA values are
3449to be retrieved,
3450
3451count is the length of the buffer in bytes,
3452
3453values points to the buffer where the result will be written to.
3454
3455If count is greater than KVM_S390_SKEYS_MAX, then it is considered to be
3456KVM_S390_SKEYS_MAX. KVM_S390_SKEYS_MAX is re-used for consistency with
3457other ioctls.
3458
3459The result is written in the buffer pointed to by the field values, and
3460the values of the input parameter are updated as follows.
3461
3462Depending on the flags, different actions are performed. The only
3463supported flag so far is KVM_S390_CMMA_PEEK.
3464
3465The default behaviour if KVM_S390_CMMA_PEEK is not set is:
3466start_gfn will indicate the first page frame whose CMMA bits were dirty.
3467It is not necessarily the same as the one passed as input, as clean pages
3468are skipped.
3469
3470count will indicate the number of bytes actually written in the buffer.
3471It can (and very often will) be smaller than the input value, since the
3472buffer is only filled until 16 bytes of clean values are found (which
3473are then not copied in the buffer). Since a CMMA migration block needs
3474the base address and the length, for a total of 16 bytes, we will send
3475back some clean data if there is some dirty data afterwards, as long as
3476the size of the clean data does not exceed the size of the header. This
3477allows to minimize the amount of data to be saved or transferred over
3478the network at the expense of more roundtrips to userspace. The next
3479invocation of the ioctl will skip over all the clean values, saving
3480potentially more than just the 16 bytes we found.
3481
3482If KVM_S390_CMMA_PEEK is set:
3483the existing storage attributes are read even when not in migration
3484mode, and no other action is performed;
3485
3486the output start_gfn will be equal to the input start_gfn,
3487
3488the output count will be equal to the input count, except if the end of
3489memory has been reached.
3490
3491In both cases:
3492the field "remaining" will indicate the total number of dirty CMMA values
3493still remaining, or 0 if KVM_S390_CMMA_PEEK is set and migration mode is
3494not enabled.
3495
3496mask is unused.
3497
3498values points to the userspace buffer where the result will be stored.
3499
3500This ioctl can fail with -ENOMEM if not enough memory can be allocated to
3501complete the task, with -ENXIO if CMMA is not enabled, with -EINVAL if
3502KVM_S390_CMMA_PEEK is not set but migration mode was not enabled, with
3503-EFAULT if the userspace address is invalid or if no page table is
3504present for the addresses (e.g. when using hugepages).
3505
35064.108 KVM_S390_SET_CMMA_BITS
3507
3508Capability: KVM_CAP_S390_CMMA_MIGRATION
3509Architectures: s390
3510Type: vm ioctl
3511Parameters: struct kvm_s390_cmma_log (in)
3512Returns: 0 on success, a negative value on error
3513
3514This ioctl is used to set the values of the CMMA bits on the s390
3515architecture. It is meant to be used during live migration to restore
3516the CMMA values, but there are no restrictions on its use.
3517The ioctl takes parameters via the kvm_s390_cmma_values struct.
3518Each CMMA value takes up one byte.
3519
3520struct kvm_s390_cmma_log {
3521 __u64 start_gfn;
3522 __u32 count;
3523 __u32 flags;
3524 union {
3525 __u64 remaining;
3526 __u64 mask;
3527 };
3528 __u64 values;
3529};
3530
3531start_gfn indicates the starting guest frame number,
3532
3533count indicates how many values are to be considered in the buffer,
3534
3535flags is not used and must be 0.
3536
3537mask indicates which PGSTE bits are to be considered.
3538
3539remaining is not used.
3540
3541values points to the buffer in userspace where to store the values.
3542
3543This ioctl can fail with -ENOMEM if not enough memory can be allocated to
3544complete the task, with -ENXIO if CMMA is not enabled, with -EINVAL if
3545the count field is too large (e.g. more than KVM_S390_CMMA_SIZE_MAX) or
3546if the flags field was not 0, with -EFAULT if the userspace address is
3547invalid, if invalid pages are written to (e.g. after the end of memory)
3548or if no page table is present for the addresses (e.g. when using
3549hugepages).
3550
7bf14c28 35514.109 KVM_PPC_GET_CPU_CHAR
3214d01f
PM
3552
3553Capability: KVM_CAP_PPC_GET_CPU_CHAR
3554Architectures: powerpc
3555Type: vm ioctl
3556Parameters: struct kvm_ppc_cpu_char (out)
3557Returns: 0 on successful completion
3558 -EFAULT if struct kvm_ppc_cpu_char cannot be written
3559
3560This ioctl gives userspace information about certain characteristics
3561of the CPU relating to speculative execution of instructions and
3562possible information leakage resulting from speculative execution (see
3563CVE-2017-5715, CVE-2017-5753 and CVE-2017-5754). The information is
3564returned in struct kvm_ppc_cpu_char, which looks like this:
3565
3566struct kvm_ppc_cpu_char {
3567 __u64 character; /* characteristics of the CPU */
3568 __u64 behaviour; /* recommended software behaviour */
3569 __u64 character_mask; /* valid bits in character */
3570 __u64 behaviour_mask; /* valid bits in behaviour */
3571};
3572
3573For extensibility, the character_mask and behaviour_mask fields
3574indicate which bits of character and behaviour have been filled in by
3575the kernel. If the set of defined bits is extended in future then
3576userspace will be able to tell whether it is running on a kernel that
3577knows about the new bits.
3578
3579The character field describes attributes of the CPU which can help
3580with preventing inadvertent information disclosure - specifically,
3581whether there is an instruction to flash-invalidate the L1 data cache
3582(ori 30,30,0 or mtspr SPRN_TRIG2,rN), whether the L1 data cache is set
3583to a mode where entries can only be used by the thread that created
3584them, whether the bcctr[l] instruction prevents speculation, and
3585whether a speculation barrier instruction (ori 31,31,0) is provided.
3586
3587The behaviour field describes actions that software should take to
3588prevent inadvertent information disclosure, and thus describes which
3589vulnerabilities the hardware is subject to; specifically whether the
3590L1 data cache should be flushed when returning to user mode from the
3591kernel, and whether a speculation barrier should be placed between an
3592array bounds check and the array access.
3593
3594These fields use the same bit definitions as the new
3595H_GET_CPU_CHARACTERISTICS hypercall.
3596
7bf14c28 35974.110 KVM_MEMORY_ENCRYPT_OP
5acc5c06
BS
3598
3599Capability: basic
3600Architectures: x86
3601Type: system
3602Parameters: an opaque platform specific structure (in/out)
3603Returns: 0 on success; -1 on error
3604
3605If the platform supports creating encrypted VMs then this ioctl can be used
3606for issuing platform-specific memory encryption commands to manage those
3607encrypted VMs.
3608
3609Currently, this ioctl is used for issuing Secure Encrypted Virtualization
3610(SEV) commands on AMD Processors. The SEV commands are defined in
21e94aca 3611Documentation/virtual/kvm/amd-memory-encryption.rst.
5acc5c06 3612
7bf14c28 36134.111 KVM_MEMORY_ENCRYPT_REG_REGION
69eaedee
BS
3614
3615Capability: basic
3616Architectures: x86
3617Type: system
3618Parameters: struct kvm_enc_region (in)
3619Returns: 0 on success; -1 on error
3620
3621This ioctl can be used to register a guest memory region which may
3622contain encrypted data (e.g. guest RAM, SMRAM etc).
3623
3624It is used in the SEV-enabled guest. When encryption is enabled, a guest
3625memory region may contain encrypted data. The SEV memory encryption
3626engine uses a tweak such that two identical plaintext pages, each at
3627different locations will have differing ciphertexts. So swapping or
3628moving ciphertext of those pages will not result in plaintext being
3629swapped. So relocating (or migrating) physical backing pages for the SEV
3630guest will require some additional steps.
3631
3632Note: The current SEV key management spec does not provide commands to
3633swap or migrate (move) ciphertext pages. Hence, for now we pin the guest
3634memory region registered with the ioctl.
3635
7bf14c28 36364.112 KVM_MEMORY_ENCRYPT_UNREG_REGION
69eaedee
BS
3637
3638Capability: basic
3639Architectures: x86
3640Type: system
3641Parameters: struct kvm_enc_region (in)
3642Returns: 0 on success; -1 on error
3643
3644This ioctl can be used to unregister the guest memory region registered
3645with KVM_MEMORY_ENCRYPT_REG_REGION ioctl above.
3646
faeb7833
RK
36474.113 KVM_HYPERV_EVENTFD
3648
3649Capability: KVM_CAP_HYPERV_EVENTFD
3650Architectures: x86
3651Type: vm ioctl
3652Parameters: struct kvm_hyperv_eventfd (in)
3653
3654This ioctl (un)registers an eventfd to receive notifications from the guest on
3655the specified Hyper-V connection id through the SIGNAL_EVENT hypercall, without
3656causing a user exit. SIGNAL_EVENT hypercall with non-zero event flag number
3657(bits 24-31) still triggers a KVM_EXIT_HYPERV_HCALL user exit.
3658
3659struct kvm_hyperv_eventfd {
3660 __u32 conn_id;
3661 __s32 fd;
3662 __u32 flags;
3663 __u32 padding[3];
3664};
3665
3666The conn_id field should fit within 24 bits:
3667
3668#define KVM_HYPERV_CONN_ID_MASK 0x00ffffff
3669
3670The acceptable values for the flags field are:
3671
3672#define KVM_HYPERV_EVENTFD_DEASSIGN (1 << 0)
3673
3674Returns: 0 on success,
3675 -EINVAL if conn_id or flags is outside the allowed range
3676 -ENOENT on deassign if the conn_id isn't registered
3677 -EEXIST on assign if the conn_id is already registered
3678
8fcc4b59
JM
36794.114 KVM_GET_NESTED_STATE
3680
3681Capability: KVM_CAP_NESTED_STATE
3682Architectures: x86
3683Type: vcpu ioctl
3684Parameters: struct kvm_nested_state (in/out)
3685Returns: 0 on success, -1 on error
3686Errors:
3687 E2BIG: the total state size (including the fixed-size part of struct
3688 kvm_nested_state) exceeds the value of 'size' specified by
3689 the user; the size required will be written into size.
3690
3691struct kvm_nested_state {
3692 __u16 flags;
3693 __u16 format;
3694 __u32 size;
3695 union {
3696 struct kvm_vmx_nested_state vmx;
3697 struct kvm_svm_nested_state svm;
3698 __u8 pad[120];
3699 };
3700 __u8 data[0];
3701};
3702
3703#define KVM_STATE_NESTED_GUEST_MODE 0x00000001
3704#define KVM_STATE_NESTED_RUN_PENDING 0x00000002
3705
3706#define KVM_STATE_NESTED_SMM_GUEST_MODE 0x00000001
3707#define KVM_STATE_NESTED_SMM_VMXON 0x00000002
3708
3709struct kvm_vmx_nested_state {
3710 __u64 vmxon_pa;
3711 __u64 vmcs_pa;
3712
3713 struct {
3714 __u16 flags;
3715 } smm;
3716};
3717
3718This ioctl copies the vcpu's nested virtualization state from the kernel to
3719userspace.
3720
3721The maximum size of the state, including the fixed-size part of struct
3722kvm_nested_state, can be retrieved by passing KVM_CAP_NESTED_STATE to
3723the KVM_CHECK_EXTENSION ioctl().
3724
37254.115 KVM_SET_NESTED_STATE
3726
3727Capability: KVM_CAP_NESTED_STATE
3728Architectures: x86
3729Type: vcpu ioctl
3730Parameters: struct kvm_nested_state (in)
3731Returns: 0 on success, -1 on error
3732
3733This copies the vcpu's kvm_nested_state struct from userspace to the kernel. For
3734the definition of struct kvm_nested_state, see KVM_GET_NESTED_STATE.
7bf14c28 3735
9943450b
PH
37364.116 KVM_(UN)REGISTER_COALESCED_MMIO
3737
0804c849
PH
3738Capability: KVM_CAP_COALESCED_MMIO (for coalesced mmio)
3739 KVM_CAP_COALESCED_PIO (for coalesced pio)
9943450b
PH
3740Architectures: all
3741Type: vm ioctl
3742Parameters: struct kvm_coalesced_mmio_zone
3743Returns: 0 on success, < 0 on error
3744
0804c849 3745Coalesced I/O is a performance optimization that defers hardware
9943450b
PH
3746register write emulation so that userspace exits are avoided. It is
3747typically used to reduce the overhead of emulating frequently accessed
3748hardware registers.
3749
0804c849 3750When a hardware register is configured for coalesced I/O, write accesses
9943450b
PH
3751do not exit to userspace and their value is recorded in a ring buffer
3752that is shared between kernel and userspace.
3753
0804c849 3754Coalesced I/O is used if one or more write accesses to a hardware
9943450b
PH
3755register can be deferred until a read or a write to another hardware
3756register on the same device. This last access will cause a vmexit and
3757userspace will process accesses from the ring buffer before emulating
0804c849
PH
3758it. That will avoid exiting to userspace on repeated writes.
3759
3760Coalesced pio is based on coalesced mmio. There is little difference
3761between coalesced mmio and pio except that coalesced pio records accesses
3762to I/O ports.
9943450b 3763
2a31b9db
PB
37644.117 KVM_CLEAR_DIRTY_LOG (vm ioctl)
3765
3766Capability: KVM_CAP_MANUAL_DIRTY_LOG_PROTECT
3767Architectures: x86
3768Type: vm ioctl
3769Parameters: struct kvm_dirty_log (in)
3770Returns: 0 on success, -1 on error
3771
3772/* for KVM_CLEAR_DIRTY_LOG */
3773struct kvm_clear_dirty_log {
3774 __u32 slot;
3775 __u32 num_pages;
3776 __u64 first_page;
3777 union {
3778 void __user *dirty_bitmap; /* one bit per page */
3779 __u64 padding;
3780 };
3781};
3782
3783The ioctl clears the dirty status of pages in a memory slot, according to
3784the bitmap that is passed in struct kvm_clear_dirty_log's dirty_bitmap
3785field. Bit 0 of the bitmap corresponds to page "first_page" in the
3786memory slot, and num_pages is the size in bits of the input bitmap.
3787Both first_page and num_pages must be a multiple of 64. For each bit
3788that is set in the input bitmap, the corresponding page is marked "clean"
3789in KVM's dirty bitmap, and dirty tracking is re-enabled for that page
3790(for example via write-protection, or by clearing the dirty bit in
3791a page table entry).
3792
3793If KVM_CAP_MULTI_ADDRESS_SPACE is available, bits 16-31 specifies
3794the address space for which you want to return the dirty bitmap.
3795They must be less than the value that KVM_CHECK_EXTENSION returns for
3796the KVM_CAP_MULTI_ADDRESS_SPACE capability.
3797
3798This ioctl is mostly useful when KVM_CAP_MANUAL_DIRTY_LOG_PROTECT
3799is enabled; for more information, see the description of the capability.
3800However, it can always be used as long as KVM_CHECK_EXTENSION confirms
3801that KVM_CAP_MANUAL_DIRTY_LOG_PROTECT is present.
3802
3803
9c1b96e3 38045. The kvm_run structure
414fa985 3805------------------------
9c1b96e3
AK
3806
3807Application code obtains a pointer to the kvm_run structure by
3808mmap()ing a vcpu fd. From that point, application code can control
3809execution by changing fields in kvm_run prior to calling the KVM_RUN
3810ioctl, and obtain information about the reason KVM_RUN returned by
3811looking up structure members.
3812
3813struct kvm_run {
3814 /* in */
3815 __u8 request_interrupt_window;
3816
3817Request that KVM_RUN return when it becomes possible to inject external
3818interrupts into the guest. Useful in conjunction with KVM_INTERRUPT.
3819
460df4c1
PB
3820 __u8 immediate_exit;
3821
3822This field is polled once when KVM_RUN starts; if non-zero, KVM_RUN
3823exits immediately, returning -EINTR. In the common scenario where a
3824signal is used to "kick" a VCPU out of KVM_RUN, this field can be used
3825to avoid usage of KVM_SET_SIGNAL_MASK, which has worse scalability.
3826Rather than blocking the signal outside KVM_RUN, userspace can set up
3827a signal handler that sets run->immediate_exit to a non-zero value.
3828
3829This field is ignored if KVM_CAP_IMMEDIATE_EXIT is not available.
3830
3831 __u8 padding1[6];
9c1b96e3
AK
3832
3833 /* out */
3834 __u32 exit_reason;
3835
3836When KVM_RUN has returned successfully (return value 0), this informs
3837application code why KVM_RUN has returned. Allowable values for this
3838field are detailed below.
3839
3840 __u8 ready_for_interrupt_injection;
3841
3842If request_interrupt_window has been specified, this field indicates
3843an interrupt can be injected now with KVM_INTERRUPT.
3844
3845 __u8 if_flag;
3846
3847The value of the current interrupt flag. Only valid if in-kernel
3848local APIC is not used.
3849
f077825a
PB
3850 __u16 flags;
3851
3852More architecture-specific flags detailing state of the VCPU that may
3853affect the device's behavior. The only currently defined flag is
3854KVM_RUN_X86_SMM, which is valid on x86 machines and is set if the
3855VCPU is in system management mode.
9c1b96e3
AK
3856
3857 /* in (pre_kvm_run), out (post_kvm_run) */
3858 __u64 cr8;
3859
3860The value of the cr8 register. Only valid if in-kernel local APIC is
3861not used. Both input and output.
3862
3863 __u64 apic_base;
3864
3865The value of the APIC BASE msr. Only valid if in-kernel local
3866APIC is not used. Both input and output.
3867
3868 union {
3869 /* KVM_EXIT_UNKNOWN */
3870 struct {
3871 __u64 hardware_exit_reason;
3872 } hw;
3873
3874If exit_reason is KVM_EXIT_UNKNOWN, the vcpu has exited due to unknown
3875reasons. Further architecture-specific information is available in
3876hardware_exit_reason.
3877
3878 /* KVM_EXIT_FAIL_ENTRY */
3879 struct {
3880 __u64 hardware_entry_failure_reason;
3881 } fail_entry;
3882
3883If exit_reason is KVM_EXIT_FAIL_ENTRY, the vcpu could not be run due
3884to unknown reasons. Further architecture-specific information is
3885available in hardware_entry_failure_reason.
3886
3887 /* KVM_EXIT_EXCEPTION */
3888 struct {
3889 __u32 exception;
3890 __u32 error_code;
3891 } ex;
3892
3893Unused.
3894
3895 /* KVM_EXIT_IO */
3896 struct {
3897#define KVM_EXIT_IO_IN 0
3898#define KVM_EXIT_IO_OUT 1
3899 __u8 direction;
3900 __u8 size; /* bytes */
3901 __u16 port;
3902 __u32 count;
3903 __u64 data_offset; /* relative to kvm_run start */
3904 } io;
3905
2044892d 3906If exit_reason is KVM_EXIT_IO, then the vcpu has
9c1b96e3
AK
3907executed a port I/O instruction which could not be satisfied by kvm.
3908data_offset describes where the data is located (KVM_EXIT_IO_OUT) or
3909where kvm expects application code to place the data for the next
2044892d 3910KVM_RUN invocation (KVM_EXIT_IO_IN). Data format is a packed array.
9c1b96e3 3911
8ab30c15 3912 /* KVM_EXIT_DEBUG */
9c1b96e3
AK
3913 struct {
3914 struct kvm_debug_exit_arch arch;
3915 } debug;
3916
8ab30c15
AB
3917If the exit_reason is KVM_EXIT_DEBUG, then a vcpu is processing a debug event
3918for which architecture specific information is returned.
9c1b96e3
AK
3919
3920 /* KVM_EXIT_MMIO */
3921 struct {
3922 __u64 phys_addr;
3923 __u8 data[8];
3924 __u32 len;
3925 __u8 is_write;
3926 } mmio;
3927
2044892d 3928If exit_reason is KVM_EXIT_MMIO, then the vcpu has
9c1b96e3
AK
3929executed a memory-mapped I/O instruction which could not be satisfied
3930by kvm. The 'data' member contains the written data if 'is_write' is
3931true, and should be filled by application code otherwise.
3932
6acdb160
CD
3933The 'data' member contains, in its first 'len' bytes, the value as it would
3934appear if the VCPU performed a load or store of the appropriate width directly
3935to the byte array.
3936
cc568ead 3937NOTE: For KVM_EXIT_IO, KVM_EXIT_MMIO, KVM_EXIT_OSI, KVM_EXIT_PAPR and
ce91ddc4 3938 KVM_EXIT_EPR the corresponding
ad0a048b
AG
3939operations are complete (and guest state is consistent) only after userspace
3940has re-entered the kernel with KVM_RUN. The kernel side will first finish
67961344
MT
3941incomplete operations and then check for pending signals. Userspace
3942can re-enter the guest with an unmasked signal pending to complete
3943pending operations.
3944
9c1b96e3
AK
3945 /* KVM_EXIT_HYPERCALL */
3946 struct {
3947 __u64 nr;
3948 __u64 args[6];
3949 __u64 ret;
3950 __u32 longmode;
3951 __u32 pad;
3952 } hypercall;
3953
647dc49e
AK
3954Unused. This was once used for 'hypercall to userspace'. To implement
3955such functionality, use KVM_EXIT_IO (x86) or KVM_EXIT_MMIO (all except s390).
3956Note KVM_EXIT_IO is significantly faster than KVM_EXIT_MMIO.
9c1b96e3
AK
3957
3958 /* KVM_EXIT_TPR_ACCESS */
3959 struct {
3960 __u64 rip;
3961 __u32 is_write;
3962 __u32 pad;
3963 } tpr_access;
3964
3965To be documented (KVM_TPR_ACCESS_REPORTING).
3966
3967 /* KVM_EXIT_S390_SIEIC */
3968 struct {
3969 __u8 icptcode;
3970 __u64 mask; /* psw upper half */
3971 __u64 addr; /* psw lower half */
3972 __u16 ipa;
3973 __u32 ipb;
3974 } s390_sieic;
3975
3976s390 specific.
3977
3978 /* KVM_EXIT_S390_RESET */
3979#define KVM_S390_RESET_POR 1
3980#define KVM_S390_RESET_CLEAR 2
3981#define KVM_S390_RESET_SUBSYSTEM 4
3982#define KVM_S390_RESET_CPU_INIT 8
3983#define KVM_S390_RESET_IPL 16
3984 __u64 s390_reset_flags;
3985
3986s390 specific.
3987
e168bf8d
CO
3988 /* KVM_EXIT_S390_UCONTROL */
3989 struct {
3990 __u64 trans_exc_code;
3991 __u32 pgm_code;
3992 } s390_ucontrol;
3993
3994s390 specific. A page fault has occurred for a user controlled virtual
3995machine (KVM_VM_S390_UNCONTROL) on it's host page table that cannot be
3996resolved by the kernel.
3997The program code and the translation exception code that were placed
3998in the cpu's lowcore are presented here as defined by the z Architecture
3999Principles of Operation Book in the Chapter for Dynamic Address Translation
4000(DAT)
4001
9c1b96e3
AK
4002 /* KVM_EXIT_DCR */
4003 struct {
4004 __u32 dcrn;
4005 __u32 data;
4006 __u8 is_write;
4007 } dcr;
4008
ce91ddc4 4009Deprecated - was used for 440 KVM.
9c1b96e3 4010
ad0a048b
AG
4011 /* KVM_EXIT_OSI */
4012 struct {
4013 __u64 gprs[32];
4014 } osi;
4015
4016MOL uses a special hypercall interface it calls 'OSI'. To enable it, we catch
4017hypercalls and exit with this exit struct that contains all the guest gprs.
4018
4019If exit_reason is KVM_EXIT_OSI, then the vcpu has triggered such a hypercall.
4020Userspace can now handle the hypercall and when it's done modify the gprs as
4021necessary. Upon guest entry all guest GPRs will then be replaced by the values
4022in this struct.
4023
de56a948
PM
4024 /* KVM_EXIT_PAPR_HCALL */
4025 struct {
4026 __u64 nr;
4027 __u64 ret;
4028 __u64 args[9];
4029 } papr_hcall;
4030
4031This is used on 64-bit PowerPC when emulating a pSeries partition,
4032e.g. with the 'pseries' machine type in qemu. It occurs when the
4033guest does a hypercall using the 'sc 1' instruction. The 'nr' field
4034contains the hypercall number (from the guest R3), and 'args' contains
4035the arguments (from the guest R4 - R12). Userspace should put the
4036return code in 'ret' and any extra returned values in args[].
4037The possible hypercalls are defined in the Power Architecture Platform
4038Requirements (PAPR) document available from www.power.org (free
4039developer registration required to access it).
4040
fa6b7fe9
CH
4041 /* KVM_EXIT_S390_TSCH */
4042 struct {
4043 __u16 subchannel_id;
4044 __u16 subchannel_nr;
4045 __u32 io_int_parm;
4046 __u32 io_int_word;
4047 __u32 ipb;
4048 __u8 dequeued;
4049 } s390_tsch;
4050
4051s390 specific. This exit occurs when KVM_CAP_S390_CSS_SUPPORT has been enabled
4052and TEST SUBCHANNEL was intercepted. If dequeued is set, a pending I/O
4053interrupt for the target subchannel has been dequeued and subchannel_id,
4054subchannel_nr, io_int_parm and io_int_word contain the parameters for that
4055interrupt. ipb is needed for instruction parameter decoding.
4056
1c810636
AG
4057 /* KVM_EXIT_EPR */
4058 struct {
4059 __u32 epr;
4060 } epr;
4061
4062On FSL BookE PowerPC chips, the interrupt controller has a fast patch
4063interrupt acknowledge path to the core. When the core successfully
4064delivers an interrupt, it automatically populates the EPR register with
4065the interrupt vector number and acknowledges the interrupt inside
4066the interrupt controller.
4067
4068In case the interrupt controller lives in user space, we need to do
4069the interrupt acknowledge cycle through it to fetch the next to be
4070delivered interrupt vector using this exit.
4071
4072It gets triggered whenever both KVM_CAP_PPC_EPR are enabled and an
4073external interrupt has just been delivered into the guest. User space
4074should put the acknowledged interrupt vector into the 'epr' field.
4075
8ad6b634
AP
4076 /* KVM_EXIT_SYSTEM_EVENT */
4077 struct {
4078#define KVM_SYSTEM_EVENT_SHUTDOWN 1
4079#define KVM_SYSTEM_EVENT_RESET 2
2ce79189 4080#define KVM_SYSTEM_EVENT_CRASH 3
8ad6b634
AP
4081 __u32 type;
4082 __u64 flags;
4083 } system_event;
4084
4085If exit_reason is KVM_EXIT_SYSTEM_EVENT then the vcpu has triggered
4086a system-level event using some architecture specific mechanism (hypercall
4087or some special instruction). In case of ARM/ARM64, this is triggered using
4088HVC instruction based PSCI call from the vcpu. The 'type' field describes
4089the system-level event type. The 'flags' field describes architecture
4090specific flags for the system-level event.
4091
cf5d3188
CD
4092Valid values for 'type' are:
4093 KVM_SYSTEM_EVENT_SHUTDOWN -- the guest has requested a shutdown of the
4094 VM. Userspace is not obliged to honour this, and if it does honour
4095 this does not need to destroy the VM synchronously (ie it may call
4096 KVM_RUN again before shutdown finally occurs).
4097 KVM_SYSTEM_EVENT_RESET -- the guest has requested a reset of the VM.
4098 As with SHUTDOWN, userspace can choose to ignore the request, or
4099 to schedule the reset to occur in the future and may call KVM_RUN again.
2ce79189
AS
4100 KVM_SYSTEM_EVENT_CRASH -- the guest crash occurred and the guest
4101 has requested a crash condition maintenance. Userspace can choose
4102 to ignore the request, or to gather VM memory core dump and/or
4103 reset/shutdown of the VM.
cf5d3188 4104
7543a635
SR
4105 /* KVM_EXIT_IOAPIC_EOI */
4106 struct {
4107 __u8 vector;
4108 } eoi;
4109
4110Indicates that the VCPU's in-kernel local APIC received an EOI for a
4111level-triggered IOAPIC interrupt. This exit only triggers when the
4112IOAPIC is implemented in userspace (i.e. KVM_CAP_SPLIT_IRQCHIP is enabled);
4113the userspace IOAPIC should process the EOI and retrigger the interrupt if
4114it is still asserted. Vector is the LAPIC interrupt vector for which the
4115EOI was received.
4116
db397571
AS
4117 struct kvm_hyperv_exit {
4118#define KVM_EXIT_HYPERV_SYNIC 1
83326e43 4119#define KVM_EXIT_HYPERV_HCALL 2
db397571
AS
4120 __u32 type;
4121 union {
4122 struct {
4123 __u32 msr;
4124 __u64 control;
4125 __u64 evt_page;
4126 __u64 msg_page;
4127 } synic;
83326e43
AS
4128 struct {
4129 __u64 input;
4130 __u64 result;
4131 __u64 params[2];
4132 } hcall;
db397571
AS
4133 } u;
4134 };
4135 /* KVM_EXIT_HYPERV */
4136 struct kvm_hyperv_exit hyperv;
4137Indicates that the VCPU exits into userspace to process some tasks
4138related to Hyper-V emulation.
4139Valid values for 'type' are:
4140 KVM_EXIT_HYPERV_SYNIC -- synchronously notify user-space about
4141Hyper-V SynIC state change. Notification is used to remap SynIC
4142event/message pages and to enable/disable SynIC messages/events processing
4143in userspace.
4144
9c1b96e3
AK
4145 /* Fix the size of the union. */
4146 char padding[256];
4147 };
b9e5dc8d
CB
4148
4149 /*
4150 * shared registers between kvm and userspace.
4151 * kvm_valid_regs specifies the register classes set by the host
4152 * kvm_dirty_regs specified the register classes dirtied by userspace
4153 * struct kvm_sync_regs is architecture specific, as well as the
4154 * bits for kvm_valid_regs and kvm_dirty_regs
4155 */
4156 __u64 kvm_valid_regs;
4157 __u64 kvm_dirty_regs;
4158 union {
4159 struct kvm_sync_regs regs;
7b7e3952 4160 char padding[SYNC_REGS_SIZE_BYTES];
b9e5dc8d
CB
4161 } s;
4162
4163If KVM_CAP_SYNC_REGS is defined, these fields allow userspace to access
4164certain guest registers without having to call SET/GET_*REGS. Thus we can
4165avoid some system call overhead if userspace has to handle the exit.
4166Userspace can query the validity of the structure by checking
4167kvm_valid_regs for specific bits. These bits are architecture specific
4168and usually define the validity of a groups of registers. (e.g. one bit
4169 for general purpose registers)
4170
d8482c0d
DH
4171Please note that the kernel is allowed to use the kvm_run structure as the
4172primary storage for certain register types. Therefore, the kernel may use the
4173values in kvm_run even if the corresponding bit in kvm_dirty_regs is not set.
4174
9c1b96e3 4175};
821246a5 4176
414fa985 4177
9c15bb1d 4178
699a0ea0
PM
41796. Capabilities that can be enabled on vCPUs
4180--------------------------------------------
821246a5 4181
0907c855
CH
4182There are certain capabilities that change the behavior of the virtual CPU or
4183the virtual machine when enabled. To enable them, please see section 4.37.
4184Below you can find a list of capabilities and what their effect on the vCPU or
4185the virtual machine is when enabling them.
821246a5
AG
4186
4187The following information is provided along with the description:
4188
4189 Architectures: which instruction set architectures provide this ioctl.
4190 x86 includes both i386 and x86_64.
4191
0907c855
CH
4192 Target: whether this is a per-vcpu or per-vm capability.
4193
821246a5
AG
4194 Parameters: what parameters are accepted by the capability.
4195
4196 Returns: the return value. General error numbers (EBADF, ENOMEM, EINVAL)
4197 are not detailed, but errors with specific meanings are.
4198
414fa985 4199
821246a5
AG
42006.1 KVM_CAP_PPC_OSI
4201
4202Architectures: ppc
0907c855 4203Target: vcpu
821246a5
AG
4204Parameters: none
4205Returns: 0 on success; -1 on error
4206
4207This capability enables interception of OSI hypercalls that otherwise would
4208be treated as normal system calls to be injected into the guest. OSI hypercalls
4209were invented by Mac-on-Linux to have a standardized communication mechanism
4210between the guest and the host.
4211
4212When this capability is enabled, KVM_EXIT_OSI can occur.
4213
414fa985 4214
821246a5
AG
42156.2 KVM_CAP_PPC_PAPR
4216
4217Architectures: ppc
0907c855 4218Target: vcpu
821246a5
AG
4219Parameters: none
4220Returns: 0 on success; -1 on error
4221
4222This capability enables interception of PAPR hypercalls. PAPR hypercalls are
4223done using the hypercall instruction "sc 1".
4224
4225It also sets the guest privilege level to "supervisor" mode. Usually the guest
4226runs in "hypervisor" privilege mode with a few missing features.
4227
4228In addition to the above, it changes the semantics of SDR1. In this mode, the
4229HTAB address part of SDR1 contains an HVA instead of a GPA, as PAPR keeps the
4230HTAB invisible to the guest.
4231
4232When this capability is enabled, KVM_EXIT_PAPR_HCALL can occur.
dc83b8bc 4233
414fa985 4234
dc83b8bc
SW
42356.3 KVM_CAP_SW_TLB
4236
4237Architectures: ppc
0907c855 4238Target: vcpu
dc83b8bc
SW
4239Parameters: args[0] is the address of a struct kvm_config_tlb
4240Returns: 0 on success; -1 on error
4241
4242struct kvm_config_tlb {
4243 __u64 params;
4244 __u64 array;
4245 __u32 mmu_type;
4246 __u32 array_len;
4247};
4248
4249Configures the virtual CPU's TLB array, establishing a shared memory area
4250between userspace and KVM. The "params" and "array" fields are userspace
4251addresses of mmu-type-specific data structures. The "array_len" field is an
4252safety mechanism, and should be set to the size in bytes of the memory that
4253userspace has reserved for the array. It must be at least the size dictated
4254by "mmu_type" and "params".
4255
4256While KVM_RUN is active, the shared region is under control of KVM. Its
4257contents are undefined, and any modification by userspace results in
4258boundedly undefined behavior.
4259
4260On return from KVM_RUN, the shared region will reflect the current state of
4261the guest's TLB. If userspace makes any changes, it must call KVM_DIRTY_TLB
4262to tell KVM which entries have been changed, prior to calling KVM_RUN again
4263on this vcpu.
4264
4265For mmu types KVM_MMU_FSL_BOOKE_NOHV and KVM_MMU_FSL_BOOKE_HV:
4266 - The "params" field is of type "struct kvm_book3e_206_tlb_params".
4267 - The "array" field points to an array of type "struct
4268 kvm_book3e_206_tlb_entry".
4269 - The array consists of all entries in the first TLB, followed by all
4270 entries in the second TLB.
4271 - Within a TLB, entries are ordered first by increasing set number. Within a
4272 set, entries are ordered by way (increasing ESEL).
4273 - The hash for determining set number in TLB0 is: (MAS2 >> 12) & (num_sets - 1)
4274 where "num_sets" is the tlb_sizes[] value divided by the tlb_ways[] value.
4275 - The tsize field of mas1 shall be set to 4K on TLB0, even though the
4276 hardware ignores this value for TLB0.
fa6b7fe9
CH
4277
42786.4 KVM_CAP_S390_CSS_SUPPORT
4279
4280Architectures: s390
0907c855 4281Target: vcpu
fa6b7fe9
CH
4282Parameters: none
4283Returns: 0 on success; -1 on error
4284
4285This capability enables support for handling of channel I/O instructions.
4286
4287TEST PENDING INTERRUPTION and the interrupt portion of TEST SUBCHANNEL are
4288handled in-kernel, while the other I/O instructions are passed to userspace.
4289
4290When this capability is enabled, KVM_EXIT_S390_TSCH will occur on TEST
4291SUBCHANNEL intercepts.
1c810636 4292
0907c855
CH
4293Note that even though this capability is enabled per-vcpu, the complete
4294virtual machine is affected.
4295
1c810636
AG
42966.5 KVM_CAP_PPC_EPR
4297
4298Architectures: ppc
0907c855 4299Target: vcpu
1c810636
AG
4300Parameters: args[0] defines whether the proxy facility is active
4301Returns: 0 on success; -1 on error
4302
4303This capability enables or disables the delivery of interrupts through the
4304external proxy facility.
4305
4306When enabled (args[0] != 0), every time the guest gets an external interrupt
4307delivered, it automatically exits into user space with a KVM_EXIT_EPR exit
4308to receive the topmost interrupt vector.
4309
4310When disabled (args[0] == 0), behavior is as if this facility is unsupported.
4311
4312When this capability is enabled, KVM_EXIT_EPR can occur.
eb1e4f43
SW
4313
43146.6 KVM_CAP_IRQ_MPIC
4315
4316Architectures: ppc
4317Parameters: args[0] is the MPIC device fd
4318 args[1] is the MPIC CPU number for this vcpu
4319
4320This capability connects the vcpu to an in-kernel MPIC device.
5975a2e0
PM
4321
43226.7 KVM_CAP_IRQ_XICS
4323
4324Architectures: ppc
0907c855 4325Target: vcpu
5975a2e0
PM
4326Parameters: args[0] is the XICS device fd
4327 args[1] is the XICS CPU number (server ID) for this vcpu
4328
4329This capability connects the vcpu to an in-kernel XICS device.
8a366a4b
CH
4330
43316.8 KVM_CAP_S390_IRQCHIP
4332
4333Architectures: s390
4334Target: vm
4335Parameters: none
4336
4337This capability enables the in-kernel irqchip for s390. Please refer to
4338"4.24 KVM_CREATE_IRQCHIP" for details.
699a0ea0 4339
5fafd874
JH
43406.9 KVM_CAP_MIPS_FPU
4341
4342Architectures: mips
4343Target: vcpu
4344Parameters: args[0] is reserved for future use (should be 0).
4345
4346This capability allows the use of the host Floating Point Unit by the guest. It
4347allows the Config1.FP bit to be set to enable the FPU in the guest. Once this is
4348done the KVM_REG_MIPS_FPR_* and KVM_REG_MIPS_FCR_* registers can be accessed
4349(depending on the current guest FPU register mode), and the Status.FR,
4350Config5.FRE bits are accessible via the KVM API and also from the guest,
4351depending on them being supported by the FPU.
4352
d952bd07
JH
43536.10 KVM_CAP_MIPS_MSA
4354
4355Architectures: mips
4356Target: vcpu
4357Parameters: args[0] is reserved for future use (should be 0).
4358
4359This capability allows the use of the MIPS SIMD Architecture (MSA) by the guest.
4360It allows the Config3.MSAP bit to be set to enable the use of MSA by the guest.
4361Once this is done the KVM_REG_MIPS_VEC_* and KVM_REG_MIPS_MSA_* registers can be
4362accessed, and the Config5.MSAEn bit is accessible via the KVM API and also from
4363the guest.
4364
01643c51
KH
43656.74 KVM_CAP_SYNC_REGS
4366Architectures: s390, x86
4367Target: s390: always enabled, x86: vcpu
4368Parameters: none
4369Returns: x86: KVM_CHECK_EXTENSION returns a bit-array indicating which register
4370sets are supported (bitfields defined in arch/x86/include/uapi/asm/kvm.h).
4371
4372As described above in the kvm_sync_regs struct info in section 5 (kvm_run):
4373KVM_CAP_SYNC_REGS "allow[s] userspace to access certain guest registers
4374without having to call SET/GET_*REGS". This reduces overhead by eliminating
4375repeated ioctl calls for setting and/or getting register values. This is
4376particularly important when userspace is making synchronous guest state
4377modifications, e.g. when emulating and/or intercepting instructions in
4378userspace.
4379
4380For s390 specifics, please refer to the source code.
4381
4382For x86:
4383- the register sets to be copied out to kvm_run are selectable
4384 by userspace (rather that all sets being copied out for every exit).
4385- vcpu_events are available in addition to regs and sregs.
4386
4387For x86, the 'kvm_valid_regs' field of struct kvm_run is overloaded to
4388function as an input bit-array field set by userspace to indicate the
4389specific register sets to be copied out on the next exit.
4390
4391To indicate when userspace has modified values that should be copied into
4392the vCPU, the all architecture bitarray field, 'kvm_dirty_regs' must be set.
4393This is done using the same bitflags as for the 'kvm_valid_regs' field.
4394If the dirty bit is not set, then the register set values will not be copied
4395into the vCPU even if they've been modified.
4396
4397Unused bitfields in the bitarrays must be set to zero.
4398
4399struct kvm_sync_regs {
4400 struct kvm_regs regs;
4401 struct kvm_sregs sregs;
4402 struct kvm_vcpu_events events;
4403};
4404
699a0ea0
PM
44057. Capabilities that can be enabled on VMs
4406------------------------------------------
4407
4408There are certain capabilities that change the behavior of the virtual
4409machine when enabled. To enable them, please see section 4.37. Below
4410you can find a list of capabilities and what their effect on the VM
4411is when enabling them.
4412
4413The following information is provided along with the description:
4414
4415 Architectures: which instruction set architectures provide this ioctl.
4416 x86 includes both i386 and x86_64.
4417
4418 Parameters: what parameters are accepted by the capability.
4419
4420 Returns: the return value. General error numbers (EBADF, ENOMEM, EINVAL)
4421 are not detailed, but errors with specific meanings are.
4422
4423
44247.1 KVM_CAP_PPC_ENABLE_HCALL
4425
4426Architectures: ppc
4427Parameters: args[0] is the sPAPR hcall number
4428 args[1] is 0 to disable, 1 to enable in-kernel handling
4429
4430This capability controls whether individual sPAPR hypercalls (hcalls)
4431get handled by the kernel or not. Enabling or disabling in-kernel
4432handling of an hcall is effective across the VM. On creation, an
4433initial set of hcalls are enabled for in-kernel handling, which
4434consists of those hcalls for which in-kernel handlers were implemented
4435before this capability was implemented. If disabled, the kernel will
4436not to attempt to handle the hcall, but will always exit to userspace
4437to handle it. Note that it may not make sense to enable some and
4438disable others of a group of related hcalls, but KVM does not prevent
4439userspace from doing that.
ae2113a4
PM
4440
4441If the hcall number specified is not one that has an in-kernel
4442implementation, the KVM_ENABLE_CAP ioctl will fail with an EINVAL
4443error.
2444b352
DH
4444
44457.2 KVM_CAP_S390_USER_SIGP
4446
4447Architectures: s390
4448Parameters: none
4449
4450This capability controls which SIGP orders will be handled completely in user
4451space. With this capability enabled, all fast orders will be handled completely
4452in the kernel:
4453- SENSE
4454- SENSE RUNNING
4455- EXTERNAL CALL
4456- EMERGENCY SIGNAL
4457- CONDITIONAL EMERGENCY SIGNAL
4458
4459All other orders will be handled completely in user space.
4460
4461Only privileged operation exceptions will be checked for in the kernel (or even
4462in the hardware prior to interception). If this capability is not enabled, the
4463old way of handling SIGP orders is used (partially in kernel and user space).
68c55750
EF
4464
44657.3 KVM_CAP_S390_VECTOR_REGISTERS
4466
4467Architectures: s390
4468Parameters: none
4469Returns: 0 on success, negative value on error
4470
4471Allows use of the vector registers introduced with z13 processor, and
4472provides for the synchronization between host and user space. Will
4473return -EINVAL if the machine does not support vectors.
e44fc8c9
ET
4474
44757.4 KVM_CAP_S390_USER_STSI
4476
4477Architectures: s390
4478Parameters: none
4479
4480This capability allows post-handlers for the STSI instruction. After
4481initial handling in the kernel, KVM exits to user space with
4482KVM_EXIT_S390_STSI to allow user space to insert further data.
4483
4484Before exiting to userspace, kvm handlers should fill in s390_stsi field of
4485vcpu->run:
4486struct {
4487 __u64 addr;
4488 __u8 ar;
4489 __u8 reserved;
4490 __u8 fc;
4491 __u8 sel1;
4492 __u16 sel2;
4493} s390_stsi;
4494
4495@addr - guest address of STSI SYSIB
4496@fc - function code
4497@sel1 - selector 1
4498@sel2 - selector 2
4499@ar - access register number
4500
4501KVM handlers should exit to userspace with rc = -EREMOTE.
e928e9cb 4502
49df6397
SR
45037.5 KVM_CAP_SPLIT_IRQCHIP
4504
4505Architectures: x86
b053b2ae 4506Parameters: args[0] - number of routes reserved for userspace IOAPICs
49df6397
SR
4507Returns: 0 on success, -1 on error
4508
4509Create a local apic for each processor in the kernel. This can be used
4510instead of KVM_CREATE_IRQCHIP if the userspace VMM wishes to emulate the
4511IOAPIC and PIC (and also the PIT, even though this has to be enabled
4512separately).
4513
b053b2ae
SR
4514This capability also enables in kernel routing of interrupt requests;
4515when KVM_CAP_SPLIT_IRQCHIP only routes of KVM_IRQ_ROUTING_MSI type are
4516used in the IRQ routing table. The first args[0] MSI routes are reserved
4517for the IOAPIC pins. Whenever the LAPIC receives an EOI for these routes,
4518a KVM_EXIT_IOAPIC_EOI vmexit will be reported to userspace.
49df6397
SR
4519
4520Fails if VCPU has already been created, or if the irqchip is already in the
4521kernel (i.e. KVM_CREATE_IRQCHIP has already been called).
4522
051c87f7
DH
45237.6 KVM_CAP_S390_RI
4524
4525Architectures: s390
4526Parameters: none
4527
4528Allows use of runtime-instrumentation introduced with zEC12 processor.
4529Will return -EINVAL if the machine does not support runtime-instrumentation.
4530Will return -EBUSY if a VCPU has already been created.
e928e9cb 4531
37131313
RK
45327.7 KVM_CAP_X2APIC_API
4533
4534Architectures: x86
4535Parameters: args[0] - features that should be enabled
4536Returns: 0 on success, -EINVAL when args[0] contains invalid features
4537
4538Valid feature flags in args[0] are
4539
4540#define KVM_X2APIC_API_USE_32BIT_IDS (1ULL << 0)
c519265f 4541#define KVM_X2APIC_API_DISABLE_BROADCAST_QUIRK (1ULL << 1)
37131313
RK
4542
4543Enabling KVM_X2APIC_API_USE_32BIT_IDS changes the behavior of
4544KVM_SET_GSI_ROUTING, KVM_SIGNAL_MSI, KVM_SET_LAPIC, and KVM_GET_LAPIC,
4545allowing the use of 32-bit APIC IDs. See KVM_CAP_X2APIC_API in their
4546respective sections.
4547
c519265f
RK
4548KVM_X2APIC_API_DISABLE_BROADCAST_QUIRK must be enabled for x2APIC to work
4549in logical mode or with more than 255 VCPUs. Otherwise, KVM treats 0xff
4550as a broadcast even in x2APIC mode in order to support physical x2APIC
4551without interrupt remapping. This is undesirable in logical mode,
4552where 0xff represents CPUs 0-7 in cluster 0.
37131313 4553
6502a34c
DH
45547.8 KVM_CAP_S390_USER_INSTR0
4555
4556Architectures: s390
4557Parameters: none
4558
4559With this capability enabled, all illegal instructions 0x0000 (2 bytes) will
4560be intercepted and forwarded to user space. User space can use this
4561mechanism e.g. to realize 2-byte software breakpoints. The kernel will
4562not inject an operating exception for these instructions, user space has
4563to take care of that.
4564
4565This capability can be enabled dynamically even if VCPUs were already
4566created and are running.
37131313 4567
4e0b1ab7
FZ
45687.9 KVM_CAP_S390_GS
4569
4570Architectures: s390
4571Parameters: none
4572Returns: 0 on success; -EINVAL if the machine does not support
4573 guarded storage; -EBUSY if a VCPU has already been created.
4574
4575Allows use of guarded storage for the KVM guest.
4576
47a4693e
YMZ
45777.10 KVM_CAP_S390_AIS
4578
4579Architectures: s390
4580Parameters: none
4581
4582Allow use of adapter-interruption suppression.
4583Returns: 0 on success; -EBUSY if a VCPU has already been created.
4584
3c313524
PM
45857.11 KVM_CAP_PPC_SMT
4586
4587Architectures: ppc
4588Parameters: vsmt_mode, flags
4589
4590Enabling this capability on a VM provides userspace with a way to set
4591the desired virtual SMT mode (i.e. the number of virtual CPUs per
4592virtual core). The virtual SMT mode, vsmt_mode, must be a power of 2
4593between 1 and 8. On POWER8, vsmt_mode must also be no greater than
4594the number of threads per subcore for the host. Currently flags must
4595be 0. A successful call to enable this capability will result in
4596vsmt_mode being returned when the KVM_CAP_PPC_SMT capability is
4597subsequently queried for the VM. This capability is only supported by
4598HV KVM, and can only be set before any VCPUs have been created.
2ed4f9dd
PM
4599The KVM_CAP_PPC_SMT_POSSIBLE capability indicates which virtual SMT
4600modes are available.
3c313524 4601
134764ed
AP
46027.12 KVM_CAP_PPC_FWNMI
4603
4604Architectures: ppc
4605Parameters: none
4606
4607With this capability a machine check exception in the guest address
4608space will cause KVM to exit the guest with NMI exit reason. This
4609enables QEMU to build error log and branch to guest kernel registered
4610machine check handling routine. Without this capability KVM will
4611branch to guests' 0x200 interrupt vector.
4612
4d5422ce
WL
46137.13 KVM_CAP_X86_DISABLE_EXITS
4614
4615Architectures: x86
4616Parameters: args[0] defines which exits are disabled
4617Returns: 0 on success, -EINVAL when args[0] contains invalid exits
4618
4619Valid bits in args[0] are
4620
4621#define KVM_X86_DISABLE_EXITS_MWAIT (1 << 0)
caa057a2 4622#define KVM_X86_DISABLE_EXITS_HLT (1 << 1)
4d5422ce
WL
4623
4624Enabling this capability on a VM provides userspace with a way to no
4625longer intercept some instructions for improved latency in some
4626workloads, and is suggested when vCPUs are associated to dedicated
4627physical CPUs. More bits can be added in the future; userspace can
4628just pass the KVM_CHECK_EXTENSION result to KVM_ENABLE_CAP to disable
4629all such vmexits.
4630
caa057a2 4631Do not enable KVM_FEATURE_PV_UNHALT if you disable HLT exits.
4d5422ce 4632
a4499382
JF
46337.14 KVM_CAP_S390_HPAGE_1M
4634
4635Architectures: s390
4636Parameters: none
4637Returns: 0 on success, -EINVAL if hpage module parameter was not set
40ebdb8e
JF
4638 or cmma is enabled, or the VM has the KVM_VM_S390_UCONTROL
4639 flag set
a4499382
JF
4640
4641With this capability the KVM support for memory backing with 1m pages
4642through hugetlbfs can be enabled for a VM. After the capability is
4643enabled, cmma can't be enabled anymore and pfmfi and the storage key
4644interpretation are disabled. If cmma has already been enabled or the
4645hpage module parameter is not set to 1, -EINVAL is returned.
4646
4647While it is generally possible to create a huge page backed VM without
4648this capability, the VM will not be able to run.
4649
c4f55198 46507.15 KVM_CAP_MSR_PLATFORM_INFO
6fbbde9a
DS
4651
4652Architectures: x86
4653Parameters: args[0] whether feature should be enabled or not
4654
4655With this capability, a guest may read the MSR_PLATFORM_INFO MSR. Otherwise,
4656a #GP would be raised when the guest tries to access. Currently, this
4657capability does not enable write permissions of this MSR for the guest.
4658
aa069a99
PM
46597.16 KVM_CAP_PPC_NESTED_HV
4660
4661Architectures: ppc
4662Parameters: none
4663Returns: 0 on success, -EINVAL when the implementation doesn't support
4664 nested-HV virtualization.
4665
4666HV-KVM on POWER9 and later systems allows for "nested-HV"
4667virtualization, which provides a way for a guest VM to run guests that
4668can run using the CPU's supervisor mode (privileged non-hypervisor
4669state). Enabling this capability on a VM depends on the CPU having
4670the necessary functionality and on the facility being enabled with a
4671kvm-hv module parameter.
4672
c4f55198
JM
46737.17 KVM_CAP_EXCEPTION_PAYLOAD
4674
4675Architectures: x86
4676Parameters: args[0] whether feature should be enabled or not
4677
4678With this capability enabled, CR2 will not be modified prior to the
4679emulated VM-exit when L1 intercepts a #PF exception that occurs in
4680L2. Similarly, for kvm-intel only, DR6 will not be modified prior to
4681the emulated VM-exit when L1 intercepts a #DB exception that occurs in
4682L2. As a result, when KVM_GET_VCPU_EVENTS reports a pending #PF (or
4683#DB) exception for L2, exception.has_payload will be set and the
4684faulting address (or the new DR6 bits*) will be reported in the
4685exception_payload field. Similarly, when userspace injects a #PF (or
4686#DB) into L2 using KVM_SET_VCPU_EVENTS, it is expected to set
4687exception.has_payload and to put the faulting address (or the new DR6
4688bits*) in the exception_payload field.
4689
4690This capability also enables exception.pending in struct
4691kvm_vcpu_events, which allows userspace to distinguish between pending
4692and injected exceptions.
4693
4694
4695* For the new DR6 bits, note that bit 16 is set iff the #DB exception
4696 will clear DR6.RTM.
4697
2a31b9db
PB
46987.18 KVM_CAP_MANUAL_DIRTY_LOG_PROTECT
4699
4700Architectures: all
4701Parameters: args[0] whether feature should be enabled or not
4702
4703With this capability enabled, KVM_GET_DIRTY_LOG will not automatically
4704clear and write-protect all pages that are returned as dirty.
4705Rather, userspace will have to do this operation separately using
4706KVM_CLEAR_DIRTY_LOG.
4707
4708At the cost of a slightly more complicated operation, this provides better
4709scalability and responsiveness for two reasons. First,
4710KVM_CLEAR_DIRTY_LOG ioctl can operate on a 64-page granularity rather
4711than requiring to sync a full memslot; this ensures that KVM does not
4712take spinlocks for an extended period of time. Second, in some cases a
4713large amount of time can pass between a call to KVM_GET_DIRTY_LOG and
4714userspace actually using the data in the page. Pages can be modified
4715during this time, which is inefficint for both the guest and userspace:
4716the guest will incur a higher penalty due to write protection faults,
4717while userspace can see false reports of dirty pages. Manual reprotection
4718helps reducing this time, improving guest performance and reducing the
4719number of dirty log false positives.
4720
4721
e928e9cb
ME
47228. Other capabilities.
4723----------------------
4724
4725This section lists capabilities that give information about other
4726features of the KVM implementation.
4727
47288.1 KVM_CAP_PPC_HWRNG
4729
4730Architectures: ppc
4731
4732This capability, if KVM_CHECK_EXTENSION indicates that it is
4733available, means that that the kernel has an implementation of the
4734H_RANDOM hypercall backed by a hardware random-number generator.
4735If present, the kernel H_RANDOM handler can be enabled for guest use
4736with the KVM_CAP_PPC_ENABLE_HCALL capability.
5c919412
AS
4737
47388.2 KVM_CAP_HYPERV_SYNIC
4739
4740Architectures: x86
4741This capability, if KVM_CHECK_EXTENSION indicates that it is
4742available, means that that the kernel has an implementation of the
4743Hyper-V Synthetic interrupt controller(SynIC). Hyper-V SynIC is
4744used to support Windows Hyper-V based guest paravirt drivers(VMBus).
4745
4746In order to use SynIC, it has to be activated by setting this
4747capability via KVM_ENABLE_CAP ioctl on the vcpu fd. Note that this
4748will disable the use of APIC hardware virtualization even if supported
4749by the CPU, as it's incompatible with SynIC auto-EOI behavior.
c9270132
PM
4750
47518.3 KVM_CAP_PPC_RADIX_MMU
4752
4753Architectures: ppc
4754
4755This capability, if KVM_CHECK_EXTENSION indicates that it is
4756available, means that that the kernel can support guests using the
4757radix MMU defined in Power ISA V3.00 (as implemented in the POWER9
4758processor).
4759
47608.4 KVM_CAP_PPC_HASH_MMU_V3
4761
4762Architectures: ppc
4763
4764This capability, if KVM_CHECK_EXTENSION indicates that it is
4765available, means that that the kernel can support guests using the
4766hashed page table MMU defined in Power ISA V3.00 (as implemented in
4767the POWER9 processor), including in-memory segment tables.
a8a3c426
JH
4768
47698.5 KVM_CAP_MIPS_VZ
4770
4771Architectures: mips
4772
4773This capability, if KVM_CHECK_EXTENSION on the main kvm handle indicates that
4774it is available, means that full hardware assisted virtualization capabilities
4775of the hardware are available for use through KVM. An appropriate
4776KVM_VM_MIPS_* type must be passed to KVM_CREATE_VM to create a VM which
4777utilises it.
4778
4779If KVM_CHECK_EXTENSION on a kvm VM handle indicates that this capability is
4780available, it means that the VM is using full hardware assisted virtualization
4781capabilities of the hardware. This is useful to check after creating a VM with
4782KVM_VM_MIPS_DEFAULT.
4783
4784The value returned by KVM_CHECK_EXTENSION should be compared against known
4785values (see below). All other values are reserved. This is to allow for the
4786possibility of other hardware assisted virtualization implementations which
4787may be incompatible with the MIPS VZ ASE.
4788
4789 0: The trap & emulate implementation is in use to run guest code in user
4790 mode. Guest virtual memory segments are rearranged to fit the guest in the
4791 user mode address space.
4792
4793 1: The MIPS VZ ASE is in use, providing full hardware assisted
4794 virtualization, including standard guest virtual memory segments.
4795
47968.6 KVM_CAP_MIPS_TE
4797
4798Architectures: mips
4799
4800This capability, if KVM_CHECK_EXTENSION on the main kvm handle indicates that
4801it is available, means that the trap & emulate implementation is available to
4802run guest code in user mode, even if KVM_CAP_MIPS_VZ indicates that hardware
4803assisted virtualisation is also available. KVM_VM_MIPS_TE (0) must be passed
4804to KVM_CREATE_VM to create a VM which utilises it.
4805
4806If KVM_CHECK_EXTENSION on a kvm VM handle indicates that this capability is
4807available, it means that the VM is using trap & emulate.
578fd61d
JH
4808
48098.7 KVM_CAP_MIPS_64BIT
4810
4811Architectures: mips
4812
4813This capability indicates the supported architecture type of the guest, i.e. the
4814supported register and address width.
4815
4816The values returned when this capability is checked by KVM_CHECK_EXTENSION on a
4817kvm VM handle correspond roughly to the CP0_Config.AT register field, and should
4818be checked specifically against known values (see below). All other values are
4819reserved.
4820
4821 0: MIPS32 or microMIPS32.
4822 Both registers and addresses are 32-bits wide.
4823 It will only be possible to run 32-bit guest code.
4824
4825 1: MIPS64 or microMIPS64 with access only to 32-bit compatibility segments.
4826 Registers are 64-bits wide, but addresses are 32-bits wide.
4827 64-bit guest code may run but cannot access MIPS64 memory segments.
4828 It will also be possible to run 32-bit guest code.
4829
4830 2: MIPS64 or microMIPS64 with access to all address segments.
4831 Both registers and addresses are 64-bits wide.
4832 It will be possible to run 64-bit or 32-bit guest code.
668fffa3 4833
c24a7be2 48348.9 KVM_CAP_ARM_USER_IRQ
3fe17e68
AG
4835
4836Architectures: arm, arm64
4837This capability, if KVM_CHECK_EXTENSION indicates that it is available, means
4838that if userspace creates a VM without an in-kernel interrupt controller, it
4839will be notified of changes to the output level of in-kernel emulated devices,
4840which can generate virtual interrupts, presented to the VM.
4841For such VMs, on every return to userspace, the kernel
4842updates the vcpu's run->s.regs.device_irq_level field to represent the actual
4843output level of the device.
4844
4845Whenever kvm detects a change in the device output level, kvm guarantees at
4846least one return to userspace before running the VM. This exit could either
4847be a KVM_EXIT_INTR or any other exit event, like KVM_EXIT_MMIO. This way,
4848userspace can always sample the device output level and re-compute the state of
4849the userspace interrupt controller. Userspace should always check the state
4850of run->s.regs.device_irq_level on every kvm exit.
4851The value in run->s.regs.device_irq_level can represent both level and edge
4852triggered interrupt signals, depending on the device. Edge triggered interrupt
4853signals will exit to userspace with the bit in run->s.regs.device_irq_level
4854set exactly once per edge signal.
4855
4856The field run->s.regs.device_irq_level is available independent of
4857run->kvm_valid_regs or run->kvm_dirty_regs bits.
4858
4859If KVM_CAP_ARM_USER_IRQ is supported, the KVM_CHECK_EXTENSION ioctl returns a
4860number larger than 0 indicating the version of this capability is implemented
4861and thereby which bits in in run->s.regs.device_irq_level can signal values.
4862
4863Currently the following bits are defined for the device_irq_level bitmap:
4864
4865 KVM_CAP_ARM_USER_IRQ >= 1:
4866
4867 KVM_ARM_DEV_EL1_VTIMER - EL1 virtual timer
4868 KVM_ARM_DEV_EL1_PTIMER - EL1 physical timer
4869 KVM_ARM_DEV_PMU - ARM PMU overflow interrupt signal
4870
4871Future versions of kvm may implement additional events. These will get
4872indicated by returning a higher number from KVM_CHECK_EXTENSION and will be
4873listed above.
2ed4f9dd
PM
4874
48758.10 KVM_CAP_PPC_SMT_POSSIBLE
4876
4877Architectures: ppc
4878
4879Querying this capability returns a bitmap indicating the possible
4880virtual SMT modes that can be set using KVM_CAP_PPC_SMT. If bit N
4881(counting from the right) is set, then a virtual SMT mode of 2^N is
4882available.
efc479e6
RK
4883
48848.11 KVM_CAP_HYPERV_SYNIC2
4885
4886Architectures: x86
4887
4888This capability enables a newer version of Hyper-V Synthetic interrupt
4889controller (SynIC). The only difference with KVM_CAP_HYPERV_SYNIC is that KVM
4890doesn't clear SynIC message and event flags pages when they are enabled by
4891writing to the respective MSRs.
d3457c87
RK
4892
48938.12 KVM_CAP_HYPERV_VP_INDEX
4894
4895Architectures: x86
4896
4897This capability indicates that userspace can load HV_X64_MSR_VP_INDEX msr. Its
4898value is used to denote the target vcpu for a SynIC interrupt. For
4899compatibilty, KVM initializes this msr to KVM's internal vcpu index. When this
4900capability is absent, userspace can still query this msr's value.
da9a1446
CB
4901
49028.13 KVM_CAP_S390_AIS_MIGRATION
4903
4904Architectures: s390
4905Parameters: none
4906
4907This capability indicates if the flic device will be able to get/set the
4908AIS states for migration via the KVM_DEV_FLIC_AISM_ALL attribute and allows
4909to discover this without having to create a flic device.
5c2b4d5b
CB
4910
49118.14 KVM_CAP_S390_PSW
4912
4913Architectures: s390
4914
4915This capability indicates that the PSW is exposed via the kvm_run structure.
4916
49178.15 KVM_CAP_S390_GMAP
4918
4919Architectures: s390
4920
4921This capability indicates that the user space memory used as guest mapping can
4922be anywhere in the user memory address space, as long as the memory slots are
4923aligned and sized to a segment (1MB) boundary.
4924
49258.16 KVM_CAP_S390_COW
4926
4927Architectures: s390
4928
4929This capability indicates that the user space memory used as guest mapping can
4930use copy-on-write semantics as well as dirty pages tracking via read-only page
4931tables.
4932
49338.17 KVM_CAP_S390_BPB
4934
4935Architectures: s390
4936
4937This capability indicates that kvm will implement the interfaces to handle
4938reset, migration and nested KVM for branch prediction blocking. The stfle
4939facility 82 should not be provided to the guest without this capability.
c1aea919 4940
2ddc6498 49418.18 KVM_CAP_HYPERV_TLBFLUSH
c1aea919
VK
4942
4943Architectures: x86
4944
4945This capability indicates that KVM supports paravirtualized Hyper-V TLB Flush
4946hypercalls:
4947HvFlushVirtualAddressSpace, HvFlushVirtualAddressSpaceEx,
4948HvFlushVirtualAddressList, HvFlushVirtualAddressListEx.
be26b3a7 4949
688e0581 49508.19 KVM_CAP_ARM_INJECT_SERROR_ESR
be26b3a7
DG
4951
4952Architectures: arm, arm64
4953
4954This capability indicates that userspace can specify (via the
4955KVM_SET_VCPU_EVENTS ioctl) the syndrome value reported to the guest when it
4956takes a virtual SError interrupt exception.
4957If KVM advertises this capability, userspace can only specify the ISS field for
4958the ESR syndrome. Other parts of the ESR, such as the EC are generated by the
4959CPU when the exception is taken. If this virtual SError is taken to EL1 using
4960AArch64, this value will be reported in the ISS field of ESR_ELx.
4961
4962See KVM_CAP_VCPU_EVENTS for more details.
214ff83d
VK
49638.20 KVM_CAP_HYPERV_SEND_IPI
4964
4965Architectures: x86
4966
4967This capability indicates that KVM supports paravirtualized Hyper-V IPI send
4968hypercalls:
4969HvCallSendSyntheticClusterIpi, HvCallSendSyntheticClusterIpiEx.