]> git.ipfire.org Git - thirdparty/kernel/stable.git/blame - Documentation/virtual/kvm/api.txt
KVM: document target of capability enablement
[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
71 API version 12 (see section 4.1), or a KVM_CAP_xyz constant, which
72 means availability needs to be checked with KVM_CHECK_EXTENSION
73 (see section 4.4).
74
75 Architectures: which instruction set architectures provide this ioctl.
76 x86 includes both i386 and x86_64.
77
78 Type: system, vm, or vcpu.
79
80 Parameters: what parameters are accepted by the ioctl.
81
82 Returns: the return value. General error numbers (EBADF, ENOMEM, EINVAL)
83 are not detailed, but errors with specific meanings are.
84
414fa985 85
9c1b96e3
AK
864.1 KVM_GET_API_VERSION
87
88Capability: basic
89Architectures: all
90Type: system ioctl
91Parameters: none
92Returns: the constant KVM_API_VERSION (=12)
93
94This identifies the API version as the stable kvm API. It is not
95expected that this number will change. However, Linux 2.6.20 and
962.6.21 report earlier versions; these are not documented and not
97supported. Applications should refuse to run if KVM_GET_API_VERSION
98returns a value other than 12. If this check passes, all ioctls
99described as 'basic' will be available.
100
414fa985 101
9c1b96e3
AK
1024.2 KVM_CREATE_VM
103
104Capability: basic
105Architectures: all
106Type: system ioctl
e08b9637 107Parameters: machine type identifier (KVM_VM_*)
9c1b96e3
AK
108Returns: a VM fd that can be used to control the new virtual machine.
109
110The new VM has no virtual cpus and no memory. An mmap() of a VM fd
111will access the virtual machine's physical address space; offset zero
112corresponds to guest physical address zero. Use of mmap() on a VM fd
113is discouraged if userspace memory allocation (KVM_CAP_USER_MEMORY) is
114available.
e08b9637
CO
115You most certainly want to use 0 as machine type.
116
117In order to create user controlled virtual machines on S390, check
118KVM_CAP_S390_UCONTROL and use the flag KVM_VM_S390_UCONTROL as
119privileged user (CAP_SYS_ADMIN).
9c1b96e3 120
414fa985 121
9c1b96e3
AK
1224.3 KVM_GET_MSR_INDEX_LIST
123
124Capability: basic
125Architectures: x86
126Type: system
127Parameters: struct kvm_msr_list (in/out)
128Returns: 0 on success; -1 on error
129Errors:
130 E2BIG: the msr index list is to be to fit in the array specified by
131 the user.
132
133struct kvm_msr_list {
134 __u32 nmsrs; /* number of msrs in entries */
135 __u32 indices[0];
136};
137
138This ioctl returns the guest msrs that are supported. The list varies
139by kvm version and host processor, but does not change otherwise. The
140user fills in the size of the indices array in nmsrs, and in return
141kvm adjusts nmsrs to reflect the actual number of msrs and fills in
142the indices array with their numbers.
143
2e2602ca
AK
144Note: if kvm indicates supports MCE (KVM_CAP_MCE), then the MCE bank MSRs are
145not returned in the MSR list, as different vcpus can have a different number
146of banks, as set via the KVM_X86_SETUP_MCE ioctl.
147
414fa985 148
9c1b96e3
AK
1494.4 KVM_CHECK_EXTENSION
150
151Capability: basic
152Architectures: all
153Type: system ioctl
154Parameters: extension identifier (KVM_CAP_*)
155Returns: 0 if unsupported; 1 (or some other positive integer) if supported
156
157The API allows the application to query about extensions to the core
158kvm API. Userspace passes an extension identifier (an integer) and
159receives an integer that describes the extension availability.
160Generally 0 means no and 1 means yes, but some extensions may report
161additional information in the integer return value.
162
414fa985 163
9c1b96e3
AK
1644.5 KVM_GET_VCPU_MMAP_SIZE
165
166Capability: basic
167Architectures: all
168Type: system ioctl
169Parameters: none
170Returns: size of vcpu mmap area, in bytes
171
172The KVM_RUN ioctl (cf.) communicates with userspace via a shared
173memory region. This ioctl returns the size of that region. See the
174KVM_RUN documentation for details.
175
414fa985 176
9c1b96e3
AK
1774.6 KVM_SET_MEMORY_REGION
178
179Capability: basic
180Architectures: all
181Type: vm ioctl
182Parameters: struct kvm_memory_region (in)
183Returns: 0 on success, -1 on error
184
b74a07be 185This ioctl is obsolete and has been removed.
9c1b96e3 186
414fa985 187
68ba6974 1884.7 KVM_CREATE_VCPU
9c1b96e3
AK
189
190Capability: basic
191Architectures: all
192Type: vm ioctl
193Parameters: vcpu id (apic id on x86)
194Returns: vcpu fd on success, -1 on error
195
196This API adds a vcpu to a virtual machine. The vcpu id is a small integer
8c3ba334
SL
197in the range [0, max_vcpus).
198
199The recommended max_vcpus value can be retrieved using the KVM_CAP_NR_VCPUS of
200the KVM_CHECK_EXTENSION ioctl() at run-time.
201The maximum possible value for max_vcpus can be retrieved using the
202KVM_CAP_MAX_VCPUS of the KVM_CHECK_EXTENSION ioctl() at run-time.
203
76d25402
PE
204If the KVM_CAP_NR_VCPUS does not exist, you should assume that max_vcpus is 4
205cpus max.
8c3ba334
SL
206If the KVM_CAP_MAX_VCPUS does not exist, you should assume that max_vcpus is
207same as the value returned from KVM_CAP_NR_VCPUS.
9c1b96e3 208
371fefd6
PM
209On powerpc using book3s_hv mode, the vcpus are mapped onto virtual
210threads in one or more virtual CPU cores. (This is because the
211hardware requires all the hardware threads in a CPU core to be in the
212same partition.) The KVM_CAP_PPC_SMT capability indicates the number
36442687
AK
213of vcpus per virtual core (vcore). The vcore id is obtained by
214dividing the vcpu id by the number of vcpus per vcore. The vcpus in a
215given vcore will always be in the same physical core as each other
216(though that might be a different physical core from time to time).
217Userspace can control the threading (SMT) mode of the guest by its
218allocation of vcpu ids. For example, if userspace wants
219single-threaded guest vcpus, it should make all vcpu ids be a multiple
220of the number of vcpus per vcore.
221
5b1c1493
CO
222For virtual cpus that have been created with S390 user controlled virtual
223machines, the resulting vcpu fd can be memory mapped at page offset
224KVM_S390_SIE_PAGE_OFFSET in order to obtain a memory map of the virtual
225cpu's hardware control block.
226
414fa985 227
68ba6974 2284.8 KVM_GET_DIRTY_LOG (vm ioctl)
9c1b96e3
AK
229
230Capability: basic
231Architectures: x86
232Type: vm ioctl
233Parameters: struct kvm_dirty_log (in/out)
234Returns: 0 on success, -1 on error
235
236/* for KVM_GET_DIRTY_LOG */
237struct kvm_dirty_log {
238 __u32 slot;
239 __u32 padding;
240 union {
241 void __user *dirty_bitmap; /* one bit per page */
242 __u64 padding;
243 };
244};
245
246Given a memory slot, return a bitmap containing any pages dirtied
247since the last call to this ioctl. Bit 0 is the first page in the
248memory slot. Ensure the entire structure is cleared to avoid padding
249issues.
250
414fa985 251
68ba6974 2524.9 KVM_SET_MEMORY_ALIAS
9c1b96e3
AK
253
254Capability: basic
255Architectures: x86
256Type: vm ioctl
257Parameters: struct kvm_memory_alias (in)
258Returns: 0 (success), -1 (error)
259
a1f4d395 260This ioctl is obsolete and has been removed.
9c1b96e3 261
414fa985 262
68ba6974 2634.10 KVM_RUN
9c1b96e3
AK
264
265Capability: basic
266Architectures: all
267Type: vcpu ioctl
268Parameters: none
269Returns: 0 on success, -1 on error
270Errors:
271 EINTR: an unmasked signal is pending
272
273This ioctl is used to run a guest virtual cpu. While there are no
274explicit parameters, there is an implicit parameter block that can be
275obtained by mmap()ing the vcpu fd at offset 0, with the size given by
276KVM_GET_VCPU_MMAP_SIZE. The parameter block is formatted as a 'struct
277kvm_run' (see below).
278
414fa985 279
68ba6974 2804.11 KVM_GET_REGS
9c1b96e3
AK
281
282Capability: basic
379e04c7 283Architectures: all except ARM, arm64
9c1b96e3
AK
284Type: vcpu ioctl
285Parameters: struct kvm_regs (out)
286Returns: 0 on success, -1 on error
287
288Reads the general purpose registers from the vcpu.
289
290/* x86 */
291struct kvm_regs {
292 /* out (KVM_GET_REGS) / in (KVM_SET_REGS) */
293 __u64 rax, rbx, rcx, rdx;
294 __u64 rsi, rdi, rsp, rbp;
295 __u64 r8, r9, r10, r11;
296 __u64 r12, r13, r14, r15;
297 __u64 rip, rflags;
298};
299
414fa985 300
68ba6974 3014.12 KVM_SET_REGS
9c1b96e3
AK
302
303Capability: basic
379e04c7 304Architectures: all except ARM, arm64
9c1b96e3
AK
305Type: vcpu ioctl
306Parameters: struct kvm_regs (in)
307Returns: 0 on success, -1 on error
308
309Writes the general purpose registers into the vcpu.
310
311See KVM_GET_REGS for the data structure.
312
414fa985 313
68ba6974 3144.13 KVM_GET_SREGS
9c1b96e3
AK
315
316Capability: basic
5ce941ee 317Architectures: x86, ppc
9c1b96e3
AK
318Type: vcpu ioctl
319Parameters: struct kvm_sregs (out)
320Returns: 0 on success, -1 on error
321
322Reads special registers from the vcpu.
323
324/* x86 */
325struct kvm_sregs {
326 struct kvm_segment cs, ds, es, fs, gs, ss;
327 struct kvm_segment tr, ldt;
328 struct kvm_dtable gdt, idt;
329 __u64 cr0, cr2, cr3, cr4, cr8;
330 __u64 efer;
331 __u64 apic_base;
332 __u64 interrupt_bitmap[(KVM_NR_INTERRUPTS + 63) / 64];
333};
334
68e2ffed 335/* ppc -- see arch/powerpc/include/uapi/asm/kvm.h */
5ce941ee 336
9c1b96e3
AK
337interrupt_bitmap is a bitmap of pending external interrupts. At most
338one bit may be set. This interrupt has been acknowledged by the APIC
339but not yet injected into the cpu core.
340
414fa985 341
68ba6974 3424.14 KVM_SET_SREGS
9c1b96e3
AK
343
344Capability: basic
5ce941ee 345Architectures: x86, ppc
9c1b96e3
AK
346Type: vcpu ioctl
347Parameters: struct kvm_sregs (in)
348Returns: 0 on success, -1 on error
349
350Writes special registers into the vcpu. See KVM_GET_SREGS for the
351data structures.
352
414fa985 353
68ba6974 3544.15 KVM_TRANSLATE
9c1b96e3
AK
355
356Capability: basic
357Architectures: x86
358Type: vcpu ioctl
359Parameters: struct kvm_translation (in/out)
360Returns: 0 on success, -1 on error
361
362Translates a virtual address according to the vcpu's current address
363translation mode.
364
365struct kvm_translation {
366 /* in */
367 __u64 linear_address;
368
369 /* out */
370 __u64 physical_address;
371 __u8 valid;
372 __u8 writeable;
373 __u8 usermode;
374 __u8 pad[5];
375};
376
414fa985 377
68ba6974 3784.16 KVM_INTERRUPT
9c1b96e3
AK
379
380Capability: basic
6f7a2bd4 381Architectures: x86, ppc
9c1b96e3
AK
382Type: vcpu ioctl
383Parameters: struct kvm_interrupt (in)
384Returns: 0 on success, -1 on error
385
386Queues a hardware interrupt vector to be injected. This is only
6f7a2bd4 387useful if in-kernel local APIC or equivalent is not used.
9c1b96e3
AK
388
389/* for KVM_INTERRUPT */
390struct kvm_interrupt {
391 /* in */
392 __u32 irq;
393};
394
6f7a2bd4
AG
395X86:
396
9c1b96e3
AK
397Note 'irq' is an interrupt vector, not an interrupt pin or line.
398
6f7a2bd4
AG
399PPC:
400
401Queues an external interrupt to be injected. This ioctl is overleaded
402with 3 different irq values:
403
404a) KVM_INTERRUPT_SET
405
406 This injects an edge type external interrupt into the guest once it's ready
407 to receive interrupts. When injected, the interrupt is done.
408
409b) KVM_INTERRUPT_UNSET
410
411 This unsets any pending interrupt.
412
413 Only available with KVM_CAP_PPC_UNSET_IRQ.
414
415c) KVM_INTERRUPT_SET_LEVEL
416
417 This injects a level type external interrupt into the guest context. The
418 interrupt stays pending until a specific ioctl with KVM_INTERRUPT_UNSET
419 is triggered.
420
421 Only available with KVM_CAP_PPC_IRQ_LEVEL.
422
423Note that any value for 'irq' other than the ones stated above is invalid
424and incurs unexpected behavior.
425
414fa985 426
68ba6974 4274.17 KVM_DEBUG_GUEST
9c1b96e3
AK
428
429Capability: basic
430Architectures: none
431Type: vcpu ioctl
432Parameters: none)
433Returns: -1 on error
434
435Support for this has been removed. Use KVM_SET_GUEST_DEBUG instead.
436
414fa985 437
68ba6974 4384.18 KVM_GET_MSRS
9c1b96e3
AK
439
440Capability: basic
441Architectures: x86
442Type: vcpu ioctl
443Parameters: struct kvm_msrs (in/out)
444Returns: 0 on success, -1 on error
445
446Reads model-specific registers from the vcpu. Supported msr indices can
447be obtained using KVM_GET_MSR_INDEX_LIST.
448
449struct kvm_msrs {
450 __u32 nmsrs; /* number of msrs in entries */
451 __u32 pad;
452
453 struct kvm_msr_entry entries[0];
454};
455
456struct kvm_msr_entry {
457 __u32 index;
458 __u32 reserved;
459 __u64 data;
460};
461
462Application code should set the 'nmsrs' member (which indicates the
463size of the entries array) and the 'index' member of each array entry.
464kvm will fill in the 'data' member.
465
414fa985 466
68ba6974 4674.19 KVM_SET_MSRS
9c1b96e3
AK
468
469Capability: basic
470Architectures: x86
471Type: vcpu ioctl
472Parameters: struct kvm_msrs (in)
473Returns: 0 on success, -1 on error
474
475Writes model-specific registers to the vcpu. See KVM_GET_MSRS for the
476data structures.
477
478Application code should set the 'nmsrs' member (which indicates the
479size of the entries array), and the 'index' and 'data' members of each
480array entry.
481
414fa985 482
68ba6974 4834.20 KVM_SET_CPUID
9c1b96e3
AK
484
485Capability: basic
486Architectures: x86
487Type: vcpu ioctl
488Parameters: struct kvm_cpuid (in)
489Returns: 0 on success, -1 on error
490
491Defines the vcpu responses to the cpuid instruction. Applications
492should use the KVM_SET_CPUID2 ioctl if available.
493
494
495struct kvm_cpuid_entry {
496 __u32 function;
497 __u32 eax;
498 __u32 ebx;
499 __u32 ecx;
500 __u32 edx;
501 __u32 padding;
502};
503
504/* for KVM_SET_CPUID */
505struct kvm_cpuid {
506 __u32 nent;
507 __u32 padding;
508 struct kvm_cpuid_entry entries[0];
509};
510
414fa985 511
68ba6974 5124.21 KVM_SET_SIGNAL_MASK
9c1b96e3
AK
513
514Capability: basic
515Architectures: x86
516Type: vcpu ioctl
517Parameters: struct kvm_signal_mask (in)
518Returns: 0 on success, -1 on error
519
520Defines which signals are blocked during execution of KVM_RUN. This
521signal mask temporarily overrides the threads signal mask. Any
522unblocked signal received (except SIGKILL and SIGSTOP, which retain
523their traditional behaviour) will cause KVM_RUN to return with -EINTR.
524
525Note the signal will only be delivered if not blocked by the original
526signal mask.
527
528/* for KVM_SET_SIGNAL_MASK */
529struct kvm_signal_mask {
530 __u32 len;
531 __u8 sigset[0];
532};
533
414fa985 534
68ba6974 5354.22 KVM_GET_FPU
9c1b96e3
AK
536
537Capability: basic
538Architectures: x86
539Type: vcpu ioctl
540Parameters: struct kvm_fpu (out)
541Returns: 0 on success, -1 on error
542
543Reads the floating point state from the vcpu.
544
545/* for KVM_GET_FPU and KVM_SET_FPU */
546struct kvm_fpu {
547 __u8 fpr[8][16];
548 __u16 fcw;
549 __u16 fsw;
550 __u8 ftwx; /* in fxsave format */
551 __u8 pad1;
552 __u16 last_opcode;
553 __u64 last_ip;
554 __u64 last_dp;
555 __u8 xmm[16][16];
556 __u32 mxcsr;
557 __u32 pad2;
558};
559
414fa985 560
68ba6974 5614.23 KVM_SET_FPU
9c1b96e3
AK
562
563Capability: basic
564Architectures: x86
565Type: vcpu ioctl
566Parameters: struct kvm_fpu (in)
567Returns: 0 on success, -1 on error
568
569Writes the floating point state to the vcpu.
570
571/* for KVM_GET_FPU and KVM_SET_FPU */
572struct kvm_fpu {
573 __u8 fpr[8][16];
574 __u16 fcw;
575 __u16 fsw;
576 __u8 ftwx; /* in fxsave format */
577 __u8 pad1;
578 __u16 last_opcode;
579 __u64 last_ip;
580 __u64 last_dp;
581 __u8 xmm[16][16];
582 __u32 mxcsr;
583 __u32 pad2;
584};
585
414fa985 586
68ba6974 5874.24 KVM_CREATE_IRQCHIP
5dadbfd6 588
84223598
CH
589Capability: KVM_CAP_IRQCHIP, KVM_CAP_S390_IRQCHIP (s390)
590Architectures: x86, ia64, ARM, arm64, s390
5dadbfd6
AK
591Type: vm ioctl
592Parameters: none
593Returns: 0 on success, -1 on error
594
595Creates an interrupt controller model in the kernel. On x86, creates a virtual
596ioapic, a virtual PIC (two PICs, nested), and sets up future vcpus to have a
597local APIC. IRQ routing for GSIs 0-15 is set to both PIC and IOAPIC; GSI 16-23
379e04c7 598only go to the IOAPIC. On ia64, a IOSAPIC is created. On ARM/arm64, a GIC is
84223598
CH
599created. On s390, a dummy irq routing table is created.
600
601Note that on s390 the KVM_CAP_S390_IRQCHIP vm capability needs to be enabled
602before KVM_CREATE_IRQCHIP can be used.
5dadbfd6 603
414fa985 604
68ba6974 6054.25 KVM_IRQ_LINE
5dadbfd6
AK
606
607Capability: KVM_CAP_IRQCHIP
379e04c7 608Architectures: x86, ia64, arm, arm64
5dadbfd6
AK
609Type: vm ioctl
610Parameters: struct kvm_irq_level
611Returns: 0 on success, -1 on error
612
613Sets the level of a GSI input to the interrupt controller model in the kernel.
86ce8535
CD
614On some architectures it is required that an interrupt controller model has
615been previously created with KVM_CREATE_IRQCHIP. Note that edge-triggered
616interrupts require the level to be set to 1 and then back to 0.
617
100943c5
GS
618On real hardware, interrupt pins can be active-low or active-high. This
619does not matter for the level field of struct kvm_irq_level: 1 always
620means active (asserted), 0 means inactive (deasserted).
621
622x86 allows the operating system to program the interrupt polarity
623(active-low/active-high) for level-triggered interrupts, and KVM used
624to consider the polarity. However, due to bitrot in the handling of
625active-low interrupts, the above convention is now valid on x86 too.
626This is signaled by KVM_CAP_X86_IOAPIC_POLARITY_IGNORED. Userspace
627should not present interrupts to the guest as active-low unless this
628capability is present (or unless it is not using the in-kernel irqchip,
629of course).
630
631
379e04c7
MZ
632ARM/arm64 can signal an interrupt either at the CPU level, or at the
633in-kernel irqchip (GIC), and for in-kernel irqchip can tell the GIC to
634use PPIs designated for specific cpus. The irq field is interpreted
635like this:
86ce8535
CD
636
637  bits: | 31 ... 24 | 23 ... 16 | 15 ... 0 |
638 field: | irq_type | vcpu_index | irq_id |
639
640The irq_type field has the following values:
641- irq_type[0]: out-of-kernel GIC: irq_id 0 is IRQ, irq_id 1 is FIQ
642- irq_type[1]: in-kernel GIC: SPI, irq_id between 32 and 1019 (incl.)
643 (the vcpu_index field is ignored)
644- irq_type[2]: in-kernel GIC: PPI, irq_id between 16 and 31 (incl.)
645
646(The irq_id field thus corresponds nicely to the IRQ ID in the ARM GIC specs)
647
100943c5 648In both cases, level is used to assert/deassert the line.
5dadbfd6
AK
649
650struct kvm_irq_level {
651 union {
652 __u32 irq; /* GSI */
653 __s32 status; /* not used for KVM_IRQ_LEVEL */
654 };
655 __u32 level; /* 0 or 1 */
656};
657
414fa985 658
68ba6974 6594.26 KVM_GET_IRQCHIP
5dadbfd6
AK
660
661Capability: KVM_CAP_IRQCHIP
662Architectures: x86, ia64
663Type: vm ioctl
664Parameters: struct kvm_irqchip (in/out)
665Returns: 0 on success, -1 on error
666
667Reads the state of a kernel interrupt controller created with
668KVM_CREATE_IRQCHIP into a buffer provided by the caller.
669
670struct kvm_irqchip {
671 __u32 chip_id; /* 0 = PIC1, 1 = PIC2, 2 = IOAPIC */
672 __u32 pad;
673 union {
674 char dummy[512]; /* reserving space */
675 struct kvm_pic_state pic;
676 struct kvm_ioapic_state ioapic;
677 } chip;
678};
679
414fa985 680
68ba6974 6814.27 KVM_SET_IRQCHIP
5dadbfd6
AK
682
683Capability: KVM_CAP_IRQCHIP
684Architectures: x86, ia64
685Type: vm ioctl
686Parameters: struct kvm_irqchip (in)
687Returns: 0 on success, -1 on error
688
689Sets the state of a kernel interrupt controller created with
690KVM_CREATE_IRQCHIP from a buffer provided by the caller.
691
692struct kvm_irqchip {
693 __u32 chip_id; /* 0 = PIC1, 1 = PIC2, 2 = IOAPIC */
694 __u32 pad;
695 union {
696 char dummy[512]; /* reserving space */
697 struct kvm_pic_state pic;
698 struct kvm_ioapic_state ioapic;
699 } chip;
700};
701
414fa985 702
68ba6974 7034.28 KVM_XEN_HVM_CONFIG
ffde22ac
ES
704
705Capability: KVM_CAP_XEN_HVM
706Architectures: x86
707Type: vm ioctl
708Parameters: struct kvm_xen_hvm_config (in)
709Returns: 0 on success, -1 on error
710
711Sets the MSR that the Xen HVM guest uses to initialize its hypercall
712page, and provides the starting address and size of the hypercall
713blobs in userspace. When the guest writes the MSR, kvm copies one
714page of a blob (32- or 64-bit, depending on the vcpu mode) to guest
715memory.
716
717struct kvm_xen_hvm_config {
718 __u32 flags;
719 __u32 msr;
720 __u64 blob_addr_32;
721 __u64 blob_addr_64;
722 __u8 blob_size_32;
723 __u8 blob_size_64;
724 __u8 pad2[30];
725};
726
414fa985 727
68ba6974 7284.29 KVM_GET_CLOCK
afbcf7ab
GC
729
730Capability: KVM_CAP_ADJUST_CLOCK
731Architectures: x86
732Type: vm ioctl
733Parameters: struct kvm_clock_data (out)
734Returns: 0 on success, -1 on error
735
736Gets the current timestamp of kvmclock as seen by the current guest. In
737conjunction with KVM_SET_CLOCK, it is used to ensure monotonicity on scenarios
738such as migration.
739
740struct kvm_clock_data {
741 __u64 clock; /* kvmclock current value */
742 __u32 flags;
743 __u32 pad[9];
744};
745
414fa985 746
68ba6974 7474.30 KVM_SET_CLOCK
afbcf7ab
GC
748
749Capability: KVM_CAP_ADJUST_CLOCK
750Architectures: x86
751Type: vm ioctl
752Parameters: struct kvm_clock_data (in)
753Returns: 0 on success, -1 on error
754
2044892d 755Sets the current timestamp of kvmclock to the value specified in its parameter.
afbcf7ab
GC
756In conjunction with KVM_GET_CLOCK, it is used to ensure monotonicity on scenarios
757such as migration.
758
759struct kvm_clock_data {
760 __u64 clock; /* kvmclock current value */
761 __u32 flags;
762 __u32 pad[9];
763};
764
414fa985 765
68ba6974 7664.31 KVM_GET_VCPU_EVENTS
3cfc3092
JK
767
768Capability: KVM_CAP_VCPU_EVENTS
48005f64 769Extended by: KVM_CAP_INTR_SHADOW
3cfc3092
JK
770Architectures: x86
771Type: vm ioctl
772Parameters: struct kvm_vcpu_event (out)
773Returns: 0 on success, -1 on error
774
775Gets currently pending exceptions, interrupts, and NMIs as well as related
776states of the vcpu.
777
778struct kvm_vcpu_events {
779 struct {
780 __u8 injected;
781 __u8 nr;
782 __u8 has_error_code;
783 __u8 pad;
784 __u32 error_code;
785 } exception;
786 struct {
787 __u8 injected;
788 __u8 nr;
789 __u8 soft;
48005f64 790 __u8 shadow;
3cfc3092
JK
791 } interrupt;
792 struct {
793 __u8 injected;
794 __u8 pending;
795 __u8 masked;
796 __u8 pad;
797 } nmi;
798 __u32 sipi_vector;
dab4b911 799 __u32 flags;
3cfc3092
JK
800};
801
48005f64
JK
802KVM_VCPUEVENT_VALID_SHADOW may be set in the flags field to signal that
803interrupt.shadow contains a valid state. Otherwise, this field is undefined.
804
414fa985 805
68ba6974 8064.32 KVM_SET_VCPU_EVENTS
3cfc3092
JK
807
808Capability: KVM_CAP_VCPU_EVENTS
48005f64 809Extended by: KVM_CAP_INTR_SHADOW
3cfc3092
JK
810Architectures: x86
811Type: vm ioctl
812Parameters: struct kvm_vcpu_event (in)
813Returns: 0 on success, -1 on error
814
815Set pending exceptions, interrupts, and NMIs as well as related states of the
816vcpu.
817
818See KVM_GET_VCPU_EVENTS for the data structure.
819
dab4b911
JK
820Fields that may be modified asynchronously by running VCPUs can be excluded
821from the update. These fields are nmi.pending and sipi_vector. Keep the
822corresponding bits in the flags field cleared to suppress overwriting the
823current in-kernel state. The bits are:
824
825KVM_VCPUEVENT_VALID_NMI_PENDING - transfer nmi.pending to the kernel
826KVM_VCPUEVENT_VALID_SIPI_VECTOR - transfer sipi_vector
827
48005f64
JK
828If KVM_CAP_INTR_SHADOW is available, KVM_VCPUEVENT_VALID_SHADOW can be set in
829the flags field to signal that interrupt.shadow contains a valid state and
830shall be written into the VCPU.
831
414fa985 832
68ba6974 8334.33 KVM_GET_DEBUGREGS
a1efbe77
JK
834
835Capability: KVM_CAP_DEBUGREGS
836Architectures: x86
837Type: vm ioctl
838Parameters: struct kvm_debugregs (out)
839Returns: 0 on success, -1 on error
840
841Reads debug registers from the vcpu.
842
843struct kvm_debugregs {
844 __u64 db[4];
845 __u64 dr6;
846 __u64 dr7;
847 __u64 flags;
848 __u64 reserved[9];
849};
850
414fa985 851
68ba6974 8524.34 KVM_SET_DEBUGREGS
a1efbe77
JK
853
854Capability: KVM_CAP_DEBUGREGS
855Architectures: x86
856Type: vm ioctl
857Parameters: struct kvm_debugregs (in)
858Returns: 0 on success, -1 on error
859
860Writes debug registers into the vcpu.
861
862See KVM_GET_DEBUGREGS for the data structure. The flags field is unused
863yet and must be cleared on entry.
864
414fa985 865
68ba6974 8664.35 KVM_SET_USER_MEMORY_REGION
0f2d8f4d
AK
867
868Capability: KVM_CAP_USER_MEM
869Architectures: all
870Type: vm ioctl
871Parameters: struct kvm_userspace_memory_region (in)
872Returns: 0 on success, -1 on error
873
874struct kvm_userspace_memory_region {
875 __u32 slot;
876 __u32 flags;
877 __u64 guest_phys_addr;
878 __u64 memory_size; /* bytes */
879 __u64 userspace_addr; /* start of the userspace allocated memory */
880};
881
882/* for kvm_memory_region::flags */
4d8b81ab
XG
883#define KVM_MEM_LOG_DIRTY_PAGES (1UL << 0)
884#define KVM_MEM_READONLY (1UL << 1)
0f2d8f4d
AK
885
886This ioctl allows the user to create or modify a guest physical memory
887slot. When changing an existing slot, it may be moved in the guest
888physical memory space, or its flags may be modified. It may not be
889resized. Slots may not overlap in guest physical address space.
890
891Memory for the region is taken starting at the address denoted by the
892field userspace_addr, which must point at user addressable memory for
893the entire memory slot size. Any object may back this memory, including
894anonymous memory, ordinary files, and hugetlbfs.
895
896It is recommended that the lower 21 bits of guest_phys_addr and userspace_addr
897be identical. This allows large pages in the guest to be backed by large
898pages in the host.
899
75d61fbc
TY
900The flags field supports two flags: KVM_MEM_LOG_DIRTY_PAGES and
901KVM_MEM_READONLY. The former can be set to instruct KVM to keep track of
902writes to memory within the slot. See KVM_GET_DIRTY_LOG ioctl to know how to
903use it. The latter can be set, if KVM_CAP_READONLY_MEM capability allows it,
904to make a new slot read-only. In this case, writes to this memory will be
905posted to userspace as KVM_EXIT_MMIO exits.
7efd8fa1
JK
906
907When the KVM_CAP_SYNC_MMU capability is available, changes in the backing of
908the memory region are automatically reflected into the guest. For example, an
909mmap() that affects the region will be made visible immediately. Another
910example is madvise(MADV_DROP).
0f2d8f4d
AK
911
912It is recommended to use this API instead of the KVM_SET_MEMORY_REGION ioctl.
913The KVM_SET_MEMORY_REGION does not allow fine grained control over memory
914allocation and is deprecated.
3cfc3092 915
414fa985 916
68ba6974 9174.36 KVM_SET_TSS_ADDR
8a5416db
AK
918
919Capability: KVM_CAP_SET_TSS_ADDR
920Architectures: x86
921Type: vm ioctl
922Parameters: unsigned long tss_address (in)
923Returns: 0 on success, -1 on error
924
925This ioctl defines the physical address of a three-page region in the guest
926physical address space. The region must be within the first 4GB of the
927guest physical address space and must not conflict with any memory slot
928or any mmio address. The guest may malfunction if it accesses this memory
929region.
930
931This ioctl is required on Intel-based hosts. This is needed on Intel hardware
932because of a quirk in the virtualization implementation (see the internals
933documentation when it pops into existence).
934
414fa985 935
68ba6974 9364.37 KVM_ENABLE_CAP
71fbfd5f 937
d938dc55 938Capability: KVM_CAP_ENABLE_CAP, KVM_CAP_ENABLE_CAP_VM
d6712df9 939Architectures: ppc, s390
d938dc55 940Type: vcpu ioctl, vm ioctl (with KVM_CAP_ENABLE_CAP_VM)
71fbfd5f
AG
941Parameters: struct kvm_enable_cap (in)
942Returns: 0 on success; -1 on error
943
944+Not all extensions are enabled by default. Using this ioctl the application
945can enable an extension, making it available to the guest.
946
947On systems that do not support this ioctl, it always fails. On systems that
948do support it, it only works for extensions that are supported for enablement.
949
950To check if a capability can be enabled, the KVM_CHECK_EXTENSION ioctl should
951be used.
952
953struct kvm_enable_cap {
954 /* in */
955 __u32 cap;
956
957The capability that is supposed to get enabled.
958
959 __u32 flags;
960
961A bitfield indicating future enhancements. Has to be 0 for now.
962
963 __u64 args[4];
964
965Arguments for enabling a feature. If a feature needs initial values to
966function properly, this is the place to put them.
967
968 __u8 pad[64];
969};
970
d938dc55
CH
971The vcpu ioctl should be used for vcpu-specific capabilities, the vm ioctl
972for vm-wide capabilities.
414fa985 973
68ba6974 9744.38 KVM_GET_MP_STATE
b843f065
AK
975
976Capability: KVM_CAP_MP_STATE
6352e4d2 977Architectures: x86, ia64, s390
b843f065
AK
978Type: vcpu ioctl
979Parameters: struct kvm_mp_state (out)
980Returns: 0 on success; -1 on error
981
982struct kvm_mp_state {
983 __u32 mp_state;
984};
985
986Returns the vcpu's current "multiprocessing state" (though also valid on
987uniprocessor guests).
988
989Possible values are:
990
0b4820d6 991 - KVM_MP_STATE_RUNNABLE: the vcpu is currently running [x86, ia64]
b843f065 992 - KVM_MP_STATE_UNINITIALIZED: the vcpu is an application processor (AP)
0b4820d6
DH
993 which has not yet received an INIT signal [x86,
994 ia64]
b843f065 995 - KVM_MP_STATE_INIT_RECEIVED: the vcpu has received an INIT signal, and is
0b4820d6 996 now ready for a SIPI [x86, ia64]
b843f065 997 - KVM_MP_STATE_HALTED: the vcpu has executed a HLT instruction and
0b4820d6 998 is waiting for an interrupt [x86, ia64]
b843f065 999 - KVM_MP_STATE_SIPI_RECEIVED: the vcpu has just received a SIPI (vector
0b4820d6 1000 accessible via KVM_GET_VCPU_EVENTS) [x86, ia64]
6352e4d2
DH
1001 - KVM_MP_STATE_STOPPED: the vcpu is stopped [s390]
1002 - KVM_MP_STATE_CHECK_STOP: the vcpu is in a special error state [s390]
1003 - KVM_MP_STATE_OPERATING: the vcpu is operating (running or halted)
1004 [s390]
1005 - KVM_MP_STATE_LOAD: the vcpu is in a special load/startup state
1006 [s390]
b843f065 1007
0b4820d6
DH
1008On x86 and ia64, this ioctl is only useful after KVM_CREATE_IRQCHIP. Without an
1009in-kernel irqchip, the multiprocessing state must be maintained by userspace on
1010these architectures.
b843f065 1011
414fa985 1012
68ba6974 10134.39 KVM_SET_MP_STATE
b843f065
AK
1014
1015Capability: KVM_CAP_MP_STATE
6352e4d2 1016Architectures: x86, ia64, s390
b843f065
AK
1017Type: vcpu ioctl
1018Parameters: struct kvm_mp_state (in)
1019Returns: 0 on success; -1 on error
1020
1021Sets the vcpu's current "multiprocessing state"; see KVM_GET_MP_STATE for
1022arguments.
1023
0b4820d6
DH
1024On x86 and ia64, this ioctl is only useful after KVM_CREATE_IRQCHIP. Without an
1025in-kernel irqchip, the multiprocessing state must be maintained by userspace on
1026these architectures.
b843f065 1027
414fa985 1028
68ba6974 10294.40 KVM_SET_IDENTITY_MAP_ADDR
47dbb84f
AK
1030
1031Capability: KVM_CAP_SET_IDENTITY_MAP_ADDR
1032Architectures: x86
1033Type: vm ioctl
1034Parameters: unsigned long identity (in)
1035Returns: 0 on success, -1 on error
1036
1037This ioctl defines the physical address of a one-page region in the guest
1038physical address space. The region must be within the first 4GB of the
1039guest physical address space and must not conflict with any memory slot
1040or any mmio address. The guest may malfunction if it accesses this memory
1041region.
1042
1043This ioctl is required on Intel-based hosts. This is needed on Intel hardware
1044because of a quirk in the virtualization implementation (see the internals
1045documentation when it pops into existence).
1046
414fa985 1047
68ba6974 10484.41 KVM_SET_BOOT_CPU_ID
57bc24cf
AK
1049
1050Capability: KVM_CAP_SET_BOOT_CPU_ID
1051Architectures: x86, ia64
1052Type: vm ioctl
1053Parameters: unsigned long vcpu_id
1054Returns: 0 on success, -1 on error
1055
1056Define which vcpu is the Bootstrap Processor (BSP). Values are the same
1057as the vcpu id in KVM_CREATE_VCPU. If this ioctl is not called, the default
1058is vcpu 0.
1059
414fa985 1060
68ba6974 10614.42 KVM_GET_XSAVE
2d5b5a66
SY
1062
1063Capability: KVM_CAP_XSAVE
1064Architectures: x86
1065Type: vcpu ioctl
1066Parameters: struct kvm_xsave (out)
1067Returns: 0 on success, -1 on error
1068
1069struct kvm_xsave {
1070 __u32 region[1024];
1071};
1072
1073This ioctl would copy current vcpu's xsave struct to the userspace.
1074
414fa985 1075
68ba6974 10764.43 KVM_SET_XSAVE
2d5b5a66
SY
1077
1078Capability: KVM_CAP_XSAVE
1079Architectures: x86
1080Type: vcpu ioctl
1081Parameters: struct kvm_xsave (in)
1082Returns: 0 on success, -1 on error
1083
1084struct kvm_xsave {
1085 __u32 region[1024];
1086};
1087
1088This ioctl would copy userspace's xsave struct to the kernel.
1089
414fa985 1090
68ba6974 10914.44 KVM_GET_XCRS
2d5b5a66
SY
1092
1093Capability: KVM_CAP_XCRS
1094Architectures: x86
1095Type: vcpu ioctl
1096Parameters: struct kvm_xcrs (out)
1097Returns: 0 on success, -1 on error
1098
1099struct kvm_xcr {
1100 __u32 xcr;
1101 __u32 reserved;
1102 __u64 value;
1103};
1104
1105struct kvm_xcrs {
1106 __u32 nr_xcrs;
1107 __u32 flags;
1108 struct kvm_xcr xcrs[KVM_MAX_XCRS];
1109 __u64 padding[16];
1110};
1111
1112This ioctl would copy current vcpu's xcrs to the userspace.
1113
414fa985 1114
68ba6974 11154.45 KVM_SET_XCRS
2d5b5a66
SY
1116
1117Capability: KVM_CAP_XCRS
1118Architectures: x86
1119Type: vcpu ioctl
1120Parameters: struct kvm_xcrs (in)
1121Returns: 0 on success, -1 on error
1122
1123struct kvm_xcr {
1124 __u32 xcr;
1125 __u32 reserved;
1126 __u64 value;
1127};
1128
1129struct kvm_xcrs {
1130 __u32 nr_xcrs;
1131 __u32 flags;
1132 struct kvm_xcr xcrs[KVM_MAX_XCRS];
1133 __u64 padding[16];
1134};
1135
1136This ioctl would set vcpu's xcr to the value userspace specified.
1137
414fa985 1138
68ba6974 11394.46 KVM_GET_SUPPORTED_CPUID
d153513d
AK
1140
1141Capability: KVM_CAP_EXT_CPUID
1142Architectures: x86
1143Type: system ioctl
1144Parameters: struct kvm_cpuid2 (in/out)
1145Returns: 0 on success, -1 on error
1146
1147struct kvm_cpuid2 {
1148 __u32 nent;
1149 __u32 padding;
1150 struct kvm_cpuid_entry2 entries[0];
1151};
1152
9c15bb1d
BP
1153#define KVM_CPUID_FLAG_SIGNIFCANT_INDEX BIT(0)
1154#define KVM_CPUID_FLAG_STATEFUL_FUNC BIT(1)
1155#define KVM_CPUID_FLAG_STATE_READ_NEXT BIT(2)
d153513d
AK
1156
1157struct kvm_cpuid_entry2 {
1158 __u32 function;
1159 __u32 index;
1160 __u32 flags;
1161 __u32 eax;
1162 __u32 ebx;
1163 __u32 ecx;
1164 __u32 edx;
1165 __u32 padding[3];
1166};
1167
1168This ioctl returns x86 cpuid features which are supported by both the hardware
1169and kvm. Userspace can use the information returned by this ioctl to
1170construct cpuid information (for KVM_SET_CPUID2) that is consistent with
1171hardware, kernel, and userspace capabilities, and with user requirements (for
1172example, the user may wish to constrain cpuid to emulate older hardware,
1173or for feature consistency across a cluster).
1174
1175Userspace invokes KVM_GET_SUPPORTED_CPUID by passing a kvm_cpuid2 structure
1176with the 'nent' field indicating the number of entries in the variable-size
1177array 'entries'. If the number of entries is too low to describe the cpu
1178capabilities, an error (E2BIG) is returned. If the number is too high,
1179the 'nent' field is adjusted and an error (ENOMEM) is returned. If the
1180number is just right, the 'nent' field is adjusted to the number of valid
1181entries in the 'entries' array, which is then filled.
1182
1183The entries returned are the host cpuid as returned by the cpuid instruction,
c39cbd2a
AK
1184with unknown or unsupported features masked out. Some features (for example,
1185x2apic), may not be present in the host cpu, but are exposed by kvm if it can
1186emulate them efficiently. The fields in each entry are defined as follows:
d153513d
AK
1187
1188 function: the eax value used to obtain the entry
1189 index: the ecx value used to obtain the entry (for entries that are
1190 affected by ecx)
1191 flags: an OR of zero or more of the following:
1192 KVM_CPUID_FLAG_SIGNIFCANT_INDEX:
1193 if the index field is valid
1194 KVM_CPUID_FLAG_STATEFUL_FUNC:
1195 if cpuid for this function returns different values for successive
1196 invocations; there will be several entries with the same function,
1197 all with this flag set
1198 KVM_CPUID_FLAG_STATE_READ_NEXT:
1199 for KVM_CPUID_FLAG_STATEFUL_FUNC entries, set if this entry is
1200 the first entry to be read by a cpu
1201 eax, ebx, ecx, edx: the values returned by the cpuid instruction for
1202 this function/index combination
1203
4d25a066
JK
1204The TSC deadline timer feature (CPUID leaf 1, ecx[24]) is always returned
1205as false, since the feature depends on KVM_CREATE_IRQCHIP for local APIC
1206support. Instead it is reported via
1207
1208 ioctl(KVM_CHECK_EXTENSION, KVM_CAP_TSC_DEADLINE_TIMER)
1209
1210if that returns true and you use KVM_CREATE_IRQCHIP, or if you emulate the
1211feature in userspace, then you can enable the feature for KVM_SET_CPUID2.
1212
414fa985 1213
68ba6974 12144.47 KVM_PPC_GET_PVINFO
15711e9c
AG
1215
1216Capability: KVM_CAP_PPC_GET_PVINFO
1217Architectures: ppc
1218Type: vm ioctl
1219Parameters: struct kvm_ppc_pvinfo (out)
1220Returns: 0 on success, !0 on error
1221
1222struct kvm_ppc_pvinfo {
1223 __u32 flags;
1224 __u32 hcall[4];
1225 __u8 pad[108];
1226};
1227
1228This ioctl fetches PV specific information that need to be passed to the guest
1229using the device tree or other means from vm context.
1230
9202e076 1231The hcall array defines 4 instructions that make up a hypercall.
15711e9c
AG
1232
1233If any additional field gets added to this structure later on, a bit for that
1234additional piece of information will be set in the flags bitmap.
1235
9202e076
LYB
1236The flags bitmap is defined as:
1237
1238 /* the host supports the ePAPR idle hcall
1239 #define KVM_PPC_PVINFO_FLAGS_EV_IDLE (1<<0)
414fa985 1240
68ba6974 12414.48 KVM_ASSIGN_PCI_DEVICE
49f48172
JK
1242
1243Capability: KVM_CAP_DEVICE_ASSIGNMENT
1244Architectures: x86 ia64
1245Type: vm ioctl
1246Parameters: struct kvm_assigned_pci_dev (in)
1247Returns: 0 on success, -1 on error
1248
1249Assigns a host PCI device to the VM.
1250
1251struct kvm_assigned_pci_dev {
1252 __u32 assigned_dev_id;
1253 __u32 busnr;
1254 __u32 devfn;
1255 __u32 flags;
1256 __u32 segnr;
1257 union {
1258 __u32 reserved[11];
1259 };
1260};
1261
1262The PCI device is specified by the triple segnr, busnr, and devfn.
1263Identification in succeeding service requests is done via assigned_dev_id. The
1264following flags are specified:
1265
1266/* Depends on KVM_CAP_IOMMU */
1267#define KVM_DEV_ASSIGN_ENABLE_IOMMU (1 << 0)
07700a94
JK
1268/* The following two depend on KVM_CAP_PCI_2_3 */
1269#define KVM_DEV_ASSIGN_PCI_2_3 (1 << 1)
1270#define KVM_DEV_ASSIGN_MASK_INTX (1 << 2)
1271
1272If KVM_DEV_ASSIGN_PCI_2_3 is set, the kernel will manage legacy INTx interrupts
1273via the PCI-2.3-compliant device-level mask, thus enable IRQ sharing with other
1274assigned devices or host devices. KVM_DEV_ASSIGN_MASK_INTX specifies the
1275guest's view on the INTx mask, see KVM_ASSIGN_SET_INTX_MASK for details.
49f48172 1276
42387373
AW
1277The KVM_DEV_ASSIGN_ENABLE_IOMMU flag is a mandatory option to ensure
1278isolation of the device. Usages not specifying this flag are deprecated.
1279
3d27e23b
AW
1280Only PCI header type 0 devices with PCI BAR resources are supported by
1281device assignment. The user requesting this ioctl must have read/write
1282access to the PCI sysfs resource files associated with the device.
1283
414fa985 1284
68ba6974 12854.49 KVM_DEASSIGN_PCI_DEVICE
49f48172
JK
1286
1287Capability: KVM_CAP_DEVICE_DEASSIGNMENT
1288Architectures: x86 ia64
1289Type: vm ioctl
1290Parameters: struct kvm_assigned_pci_dev (in)
1291Returns: 0 on success, -1 on error
1292
1293Ends PCI device assignment, releasing all associated resources.
1294
1295See KVM_CAP_DEVICE_ASSIGNMENT for the data structure. Only assigned_dev_id is
1296used in kvm_assigned_pci_dev to identify the device.
1297
414fa985 1298
68ba6974 12994.50 KVM_ASSIGN_DEV_IRQ
49f48172
JK
1300
1301Capability: KVM_CAP_ASSIGN_DEV_IRQ
1302Architectures: x86 ia64
1303Type: vm ioctl
1304Parameters: struct kvm_assigned_irq (in)
1305Returns: 0 on success, -1 on error
1306
1307Assigns an IRQ to a passed-through device.
1308
1309struct kvm_assigned_irq {
1310 __u32 assigned_dev_id;
91e3d71d 1311 __u32 host_irq; /* ignored (legacy field) */
49f48172
JK
1312 __u32 guest_irq;
1313 __u32 flags;
1314 union {
49f48172
JK
1315 __u32 reserved[12];
1316 };
1317};
1318
1319The following flags are defined:
1320
1321#define KVM_DEV_IRQ_HOST_INTX (1 << 0)
1322#define KVM_DEV_IRQ_HOST_MSI (1 << 1)
1323#define KVM_DEV_IRQ_HOST_MSIX (1 << 2)
1324
1325#define KVM_DEV_IRQ_GUEST_INTX (1 << 8)
1326#define KVM_DEV_IRQ_GUEST_MSI (1 << 9)
1327#define KVM_DEV_IRQ_GUEST_MSIX (1 << 10)
1328
1329It is not valid to specify multiple types per host or guest IRQ. However, the
1330IRQ type of host and guest can differ or can even be null.
1331
414fa985 1332
68ba6974 13334.51 KVM_DEASSIGN_DEV_IRQ
49f48172
JK
1334
1335Capability: KVM_CAP_ASSIGN_DEV_IRQ
1336Architectures: x86 ia64
1337Type: vm ioctl
1338Parameters: struct kvm_assigned_irq (in)
1339Returns: 0 on success, -1 on error
1340
1341Ends an IRQ assignment to a passed-through device.
1342
1343See KVM_ASSIGN_DEV_IRQ for the data structure. The target device is specified
1344by assigned_dev_id, flags must correspond to the IRQ type specified on
1345KVM_ASSIGN_DEV_IRQ. Partial deassignment of host or guest IRQ is allowed.
1346
414fa985 1347
68ba6974 13484.52 KVM_SET_GSI_ROUTING
49f48172
JK
1349
1350Capability: KVM_CAP_IRQ_ROUTING
84223598 1351Architectures: x86 ia64 s390
49f48172
JK
1352Type: vm ioctl
1353Parameters: struct kvm_irq_routing (in)
1354Returns: 0 on success, -1 on error
1355
1356Sets the GSI routing table entries, overwriting any previously set entries.
1357
1358struct kvm_irq_routing {
1359 __u32 nr;
1360 __u32 flags;
1361 struct kvm_irq_routing_entry entries[0];
1362};
1363
1364No flags are specified so far, the corresponding field must be set to zero.
1365
1366struct kvm_irq_routing_entry {
1367 __u32 gsi;
1368 __u32 type;
1369 __u32 flags;
1370 __u32 pad;
1371 union {
1372 struct kvm_irq_routing_irqchip irqchip;
1373 struct kvm_irq_routing_msi msi;
84223598 1374 struct kvm_irq_routing_s390_adapter adapter;
49f48172
JK
1375 __u32 pad[8];
1376 } u;
1377};
1378
1379/* gsi routing entry types */
1380#define KVM_IRQ_ROUTING_IRQCHIP 1
1381#define KVM_IRQ_ROUTING_MSI 2
84223598 1382#define KVM_IRQ_ROUTING_S390_ADAPTER 3
49f48172
JK
1383
1384No flags are specified so far, the corresponding field must be set to zero.
1385
1386struct kvm_irq_routing_irqchip {
1387 __u32 irqchip;
1388 __u32 pin;
1389};
1390
1391struct kvm_irq_routing_msi {
1392 __u32 address_lo;
1393 __u32 address_hi;
1394 __u32 data;
1395 __u32 pad;
1396};
1397
84223598
CH
1398struct kvm_irq_routing_s390_adapter {
1399 __u64 ind_addr;
1400 __u64 summary_addr;
1401 __u64 ind_offset;
1402 __u32 summary_offset;
1403 __u32 adapter_id;
1404};
1405
414fa985 1406
68ba6974 14074.53 KVM_ASSIGN_SET_MSIX_NR
49f48172
JK
1408
1409Capability: KVM_CAP_DEVICE_MSIX
1410Architectures: x86 ia64
1411Type: vm ioctl
1412Parameters: struct kvm_assigned_msix_nr (in)
1413Returns: 0 on success, -1 on error
1414
58f0964e
JK
1415Set the number of MSI-X interrupts for an assigned device. The number is
1416reset again by terminating the MSI-X assignment of the device via
1417KVM_DEASSIGN_DEV_IRQ. Calling this service more than once at any earlier
1418point will fail.
49f48172
JK
1419
1420struct kvm_assigned_msix_nr {
1421 __u32 assigned_dev_id;
1422 __u16 entry_nr;
1423 __u16 padding;
1424};
1425
1426#define KVM_MAX_MSIX_PER_DEV 256
1427
414fa985 1428
68ba6974 14294.54 KVM_ASSIGN_SET_MSIX_ENTRY
49f48172
JK
1430
1431Capability: KVM_CAP_DEVICE_MSIX
1432Architectures: x86 ia64
1433Type: vm ioctl
1434Parameters: struct kvm_assigned_msix_entry (in)
1435Returns: 0 on success, -1 on error
1436
1437Specifies the routing of an MSI-X assigned device interrupt to a GSI. Setting
1438the GSI vector to zero means disabling the interrupt.
1439
1440struct kvm_assigned_msix_entry {
1441 __u32 assigned_dev_id;
1442 __u32 gsi;
1443 __u16 entry; /* The index of entry in the MSI-X table */
1444 __u16 padding[3];
1445};
1446
414fa985
JK
1447
14484.55 KVM_SET_TSC_KHZ
92a1f12d
JR
1449
1450Capability: KVM_CAP_TSC_CONTROL
1451Architectures: x86
1452Type: vcpu ioctl
1453Parameters: virtual tsc_khz
1454Returns: 0 on success, -1 on error
1455
1456Specifies the tsc frequency for the virtual machine. The unit of the
1457frequency is KHz.
1458
414fa985
JK
1459
14604.56 KVM_GET_TSC_KHZ
92a1f12d
JR
1461
1462Capability: KVM_CAP_GET_TSC_KHZ
1463Architectures: x86
1464Type: vcpu ioctl
1465Parameters: none
1466Returns: virtual tsc-khz on success, negative value on error
1467
1468Returns the tsc frequency of the guest. The unit of the return value is
1469KHz. If the host has unstable tsc this ioctl returns -EIO instead as an
1470error.
1471
414fa985
JK
1472
14734.57 KVM_GET_LAPIC
e7677933
AK
1474
1475Capability: KVM_CAP_IRQCHIP
1476Architectures: x86
1477Type: vcpu ioctl
1478Parameters: struct kvm_lapic_state (out)
1479Returns: 0 on success, -1 on error
1480
1481#define KVM_APIC_REG_SIZE 0x400
1482struct kvm_lapic_state {
1483 char regs[KVM_APIC_REG_SIZE];
1484};
1485
1486Reads the Local APIC registers and copies them into the input argument. The
1487data format and layout are the same as documented in the architecture manual.
1488
414fa985
JK
1489
14904.58 KVM_SET_LAPIC
e7677933
AK
1491
1492Capability: KVM_CAP_IRQCHIP
1493Architectures: x86
1494Type: vcpu ioctl
1495Parameters: struct kvm_lapic_state (in)
1496Returns: 0 on success, -1 on error
1497
1498#define KVM_APIC_REG_SIZE 0x400
1499struct kvm_lapic_state {
1500 char regs[KVM_APIC_REG_SIZE];
1501};
1502
df5cbb27 1503Copies the input argument into the Local APIC registers. The data format
e7677933
AK
1504and layout are the same as documented in the architecture manual.
1505
414fa985
JK
1506
15074.59 KVM_IOEVENTFD
55399a02
SL
1508
1509Capability: KVM_CAP_IOEVENTFD
1510Architectures: all
1511Type: vm ioctl
1512Parameters: struct kvm_ioeventfd (in)
1513Returns: 0 on success, !0 on error
1514
1515This ioctl attaches or detaches an ioeventfd to a legal pio/mmio address
1516within the guest. A guest write in the registered address will signal the
1517provided event instead of triggering an exit.
1518
1519struct kvm_ioeventfd {
1520 __u64 datamatch;
1521 __u64 addr; /* legal pio/mmio address */
1522 __u32 len; /* 1, 2, 4, or 8 bytes */
1523 __s32 fd;
1524 __u32 flags;
1525 __u8 pad[36];
1526};
1527
2b83451b
CH
1528For the special case of virtio-ccw devices on s390, the ioevent is matched
1529to a subchannel/virtqueue tuple instead.
1530
55399a02
SL
1531The following flags are defined:
1532
1533#define KVM_IOEVENTFD_FLAG_DATAMATCH (1 << kvm_ioeventfd_flag_nr_datamatch)
1534#define KVM_IOEVENTFD_FLAG_PIO (1 << kvm_ioeventfd_flag_nr_pio)
1535#define KVM_IOEVENTFD_FLAG_DEASSIGN (1 << kvm_ioeventfd_flag_nr_deassign)
2b83451b
CH
1536#define KVM_IOEVENTFD_FLAG_VIRTIO_CCW_NOTIFY \
1537 (1 << kvm_ioeventfd_flag_nr_virtio_ccw_notify)
55399a02
SL
1538
1539If datamatch flag is set, the event will be signaled only if the written value
1540to the registered address is equal to datamatch in struct kvm_ioeventfd.
1541
2b83451b
CH
1542For virtio-ccw devices, addr contains the subchannel id and datamatch the
1543virtqueue index.
1544
414fa985
JK
1545
15464.60 KVM_DIRTY_TLB
dc83b8bc
SW
1547
1548Capability: KVM_CAP_SW_TLB
1549Architectures: ppc
1550Type: vcpu ioctl
1551Parameters: struct kvm_dirty_tlb (in)
1552Returns: 0 on success, -1 on error
1553
1554struct kvm_dirty_tlb {
1555 __u64 bitmap;
1556 __u32 num_dirty;
1557};
1558
1559This must be called whenever userspace has changed an entry in the shared
1560TLB, prior to calling KVM_RUN on the associated vcpu.
1561
1562The "bitmap" field is the userspace address of an array. This array
1563consists of a number of bits, equal to the total number of TLB entries as
1564determined by the last successful call to KVM_CONFIG_TLB, rounded up to the
1565nearest multiple of 64.
1566
1567Each bit corresponds to one TLB entry, ordered the same as in the shared TLB
1568array.
1569
1570The array is little-endian: the bit 0 is the least significant bit of the
1571first byte, bit 8 is the least significant bit of the second byte, etc.
1572This avoids any complications with differing word sizes.
1573
1574The "num_dirty" field is a performance hint for KVM to determine whether it
1575should skip processing the bitmap and just invalidate everything. It must
1576be set to the number of set bits in the bitmap.
1577
414fa985
JK
1578
15794.61 KVM_ASSIGN_SET_INTX_MASK
07700a94
JK
1580
1581Capability: KVM_CAP_PCI_2_3
1582Architectures: x86
1583Type: vm ioctl
1584Parameters: struct kvm_assigned_pci_dev (in)
1585Returns: 0 on success, -1 on error
1586
1587Allows userspace to mask PCI INTx interrupts from the assigned device. The
1588kernel will not deliver INTx interrupts to the guest between setting and
1589clearing of KVM_ASSIGN_SET_INTX_MASK via this interface. This enables use of
1590and emulation of PCI 2.3 INTx disable command register behavior.
1591
1592This may be used for both PCI 2.3 devices supporting INTx disable natively and
1593older devices lacking this support. Userspace is responsible for emulating the
1594read value of the INTx disable bit in the guest visible PCI command register.
1595When modifying the INTx disable state, userspace should precede updating the
1596physical device command register by calling this ioctl to inform the kernel of
1597the new intended INTx mask state.
1598
1599Note that the kernel uses the device INTx disable bit to internally manage the
1600device interrupt state for PCI 2.3 devices. Reads of this register may
1601therefore not match the expected value. Writes should always use the guest
1602intended INTx disable value rather than attempting to read-copy-update the
1603current physical device state. Races between user and kernel updates to the
1604INTx disable bit are handled lazily in the kernel. It's possible the device
1605may generate unintended interrupts, but they will not be injected into the
1606guest.
1607
1608See KVM_ASSIGN_DEV_IRQ for the data structure. The target device is specified
1609by assigned_dev_id. In the flags field, only KVM_DEV_ASSIGN_MASK_INTX is
1610evaluated.
1611
414fa985 1612
54738c09
DG
16134.62 KVM_CREATE_SPAPR_TCE
1614
1615Capability: KVM_CAP_SPAPR_TCE
1616Architectures: powerpc
1617Type: vm ioctl
1618Parameters: struct kvm_create_spapr_tce (in)
1619Returns: file descriptor for manipulating the created TCE table
1620
1621This creates a virtual TCE (translation control entry) table, which
1622is an IOMMU for PAPR-style virtual I/O. It is used to translate
1623logical addresses used in virtual I/O into guest physical addresses,
1624and provides a scatter/gather capability for PAPR virtual I/O.
1625
1626/* for KVM_CAP_SPAPR_TCE */
1627struct kvm_create_spapr_tce {
1628 __u64 liobn;
1629 __u32 window_size;
1630};
1631
1632The liobn field gives the logical IO bus number for which to create a
1633TCE table. The window_size field specifies the size of the DMA window
1634which this TCE table will translate - the table will contain one 64
1635bit TCE entry for every 4kiB of the DMA window.
1636
1637When the guest issues an H_PUT_TCE hcall on a liobn for which a TCE
1638table has been created using this ioctl(), the kernel will handle it
1639in real mode, updating the TCE table. H_PUT_TCE calls for other
1640liobns will cause a vm exit and must be handled by userspace.
1641
1642The return value is a file descriptor which can be passed to mmap(2)
1643to map the created TCE table into userspace. This lets userspace read
1644the entries written by kernel-handled H_PUT_TCE calls, and also lets
1645userspace update the TCE table directly which is useful in some
1646circumstances.
1647
414fa985 1648
aa04b4cc
PM
16494.63 KVM_ALLOCATE_RMA
1650
1651Capability: KVM_CAP_PPC_RMA
1652Architectures: powerpc
1653Type: vm ioctl
1654Parameters: struct kvm_allocate_rma (out)
1655Returns: file descriptor for mapping the allocated RMA
1656
1657This allocates a Real Mode Area (RMA) from the pool allocated at boot
1658time by the kernel. An RMA is a physically-contiguous, aligned region
1659of memory used on older POWER processors to provide the memory which
1660will be accessed by real-mode (MMU off) accesses in a KVM guest.
1661POWER processors support a set of sizes for the RMA that usually
1662includes 64MB, 128MB, 256MB and some larger powers of two.
1663
1664/* for KVM_ALLOCATE_RMA */
1665struct kvm_allocate_rma {
1666 __u64 rma_size;
1667};
1668
1669The return value is a file descriptor which can be passed to mmap(2)
1670to map the allocated RMA into userspace. The mapped area can then be
1671passed to the KVM_SET_USER_MEMORY_REGION ioctl to establish it as the
1672RMA for a virtual machine. The size of the RMA in bytes (which is
1673fixed at host kernel boot time) is returned in the rma_size field of
1674the argument structure.
1675
1676The KVM_CAP_PPC_RMA capability is 1 or 2 if the KVM_ALLOCATE_RMA ioctl
1677is supported; 2 if the processor requires all virtual machines to have
1678an RMA, or 1 if the processor can use an RMA but doesn't require it,
1679because it supports the Virtual RMA (VRMA) facility.
1680
414fa985 1681
3f745f1e
AK
16824.64 KVM_NMI
1683
1684Capability: KVM_CAP_USER_NMI
1685Architectures: x86
1686Type: vcpu ioctl
1687Parameters: none
1688Returns: 0 on success, -1 on error
1689
1690Queues an NMI on the thread's vcpu. Note this is well defined only
1691when KVM_CREATE_IRQCHIP has not been called, since this is an interface
1692between the virtual cpu core and virtual local APIC. After KVM_CREATE_IRQCHIP
1693has been called, this interface is completely emulated within the kernel.
1694
1695To use this to emulate the LINT1 input with KVM_CREATE_IRQCHIP, use the
1696following algorithm:
1697
1698 - pause the vpcu
1699 - read the local APIC's state (KVM_GET_LAPIC)
1700 - check whether changing LINT1 will queue an NMI (see the LVT entry for LINT1)
1701 - if so, issue KVM_NMI
1702 - resume the vcpu
1703
1704Some guests configure the LINT1 NMI input to cause a panic, aiding in
1705debugging.
1706
414fa985 1707
e24ed81f 17084.65 KVM_S390_UCAS_MAP
27e0393f
CO
1709
1710Capability: KVM_CAP_S390_UCONTROL
1711Architectures: s390
1712Type: vcpu ioctl
1713Parameters: struct kvm_s390_ucas_mapping (in)
1714Returns: 0 in case of success
1715
1716The parameter is defined like this:
1717 struct kvm_s390_ucas_mapping {
1718 __u64 user_addr;
1719 __u64 vcpu_addr;
1720 __u64 length;
1721 };
1722
1723This ioctl maps the memory at "user_addr" with the length "length" to
1724the vcpu's address space starting at "vcpu_addr". All parameters need to
f884ab15 1725be aligned by 1 megabyte.
27e0393f 1726
414fa985 1727
e24ed81f 17284.66 KVM_S390_UCAS_UNMAP
27e0393f
CO
1729
1730Capability: KVM_CAP_S390_UCONTROL
1731Architectures: s390
1732Type: vcpu ioctl
1733Parameters: struct kvm_s390_ucas_mapping (in)
1734Returns: 0 in case of success
1735
1736The parameter is defined like this:
1737 struct kvm_s390_ucas_mapping {
1738 __u64 user_addr;
1739 __u64 vcpu_addr;
1740 __u64 length;
1741 };
1742
1743This ioctl unmaps the memory in the vcpu's address space starting at
1744"vcpu_addr" with the length "length". The field "user_addr" is ignored.
f884ab15 1745All parameters need to be aligned by 1 megabyte.
27e0393f 1746
414fa985 1747
e24ed81f 17484.67 KVM_S390_VCPU_FAULT
ccc7910f
CO
1749
1750Capability: KVM_CAP_S390_UCONTROL
1751Architectures: s390
1752Type: vcpu ioctl
1753Parameters: vcpu absolute address (in)
1754Returns: 0 in case of success
1755
1756This call creates a page table entry on the virtual cpu's address space
1757(for user controlled virtual machines) or the virtual machine's address
1758space (for regular virtual machines). This only works for minor faults,
1759thus it's recommended to access subject memory page via the user page
1760table upfront. This is useful to handle validity intercepts for user
1761controlled virtual machines to fault in the virtual cpu's lowcore pages
1762prior to calling the KVM_RUN ioctl.
1763
414fa985 1764
e24ed81f
AG
17654.68 KVM_SET_ONE_REG
1766
1767Capability: KVM_CAP_ONE_REG
1768Architectures: all
1769Type: vcpu ioctl
1770Parameters: struct kvm_one_reg (in)
1771Returns: 0 on success, negative value on failure
1772
1773struct kvm_one_reg {
1774 __u64 id;
1775 __u64 addr;
1776};
1777
1778Using this ioctl, a single vcpu register can be set to a specific value
1779defined by user space with the passed in struct kvm_one_reg, where id
1780refers to the register identifier as described below and addr is a pointer
1781to a variable with the respective size. There can be architecture agnostic
1782and architecture specific registers. Each have their own range of operation
1783and their own constants and width. To keep track of the implemented
1784registers, find a list below:
1785
1786 Arch | Register | Width (bits)
1787 | |
1022fc3d 1788 PPC | KVM_REG_PPC_HIOR | 64
2e232702
BB
1789 PPC | KVM_REG_PPC_IAC1 | 64
1790 PPC | KVM_REG_PPC_IAC2 | 64
1791 PPC | KVM_REG_PPC_IAC3 | 64
1792 PPC | KVM_REG_PPC_IAC4 | 64
1793 PPC | KVM_REG_PPC_DAC1 | 64
1794 PPC | KVM_REG_PPC_DAC2 | 64
a136a8bd
PM
1795 PPC | KVM_REG_PPC_DABR | 64
1796 PPC | KVM_REG_PPC_DSCR | 64
1797 PPC | KVM_REG_PPC_PURR | 64
1798 PPC | KVM_REG_PPC_SPURR | 64
1799 PPC | KVM_REG_PPC_DAR | 64
1800 PPC | KVM_REG_PPC_DSISR | 32
1801 PPC | KVM_REG_PPC_AMR | 64
1802 PPC | KVM_REG_PPC_UAMOR | 64
1803 PPC | KVM_REG_PPC_MMCR0 | 64
1804 PPC | KVM_REG_PPC_MMCR1 | 64
1805 PPC | KVM_REG_PPC_MMCRA | 64
2f9c6943
PM
1806 PPC | KVM_REG_PPC_MMCR2 | 64
1807 PPC | KVM_REG_PPC_MMCRS | 64
1808 PPC | KVM_REG_PPC_SIAR | 64
1809 PPC | KVM_REG_PPC_SDAR | 64
1810 PPC | KVM_REG_PPC_SIER | 64
a136a8bd
PM
1811 PPC | KVM_REG_PPC_PMC1 | 32
1812 PPC | KVM_REG_PPC_PMC2 | 32
1813 PPC | KVM_REG_PPC_PMC3 | 32
1814 PPC | KVM_REG_PPC_PMC4 | 32
1815 PPC | KVM_REG_PPC_PMC5 | 32
1816 PPC | KVM_REG_PPC_PMC6 | 32
1817 PPC | KVM_REG_PPC_PMC7 | 32
1818 PPC | KVM_REG_PPC_PMC8 | 32
a8bd19ef
PM
1819 PPC | KVM_REG_PPC_FPR0 | 64
1820 ...
1821 PPC | KVM_REG_PPC_FPR31 | 64
1822 PPC | KVM_REG_PPC_VR0 | 128
1823 ...
1824 PPC | KVM_REG_PPC_VR31 | 128
1825 PPC | KVM_REG_PPC_VSR0 | 128
1826 ...
1827 PPC | KVM_REG_PPC_VSR31 | 128
1828 PPC | KVM_REG_PPC_FPSCR | 64
1829 PPC | KVM_REG_PPC_VSCR | 32
55b665b0
PM
1830 PPC | KVM_REG_PPC_VPA_ADDR | 64
1831 PPC | KVM_REG_PPC_VPA_SLB | 128
1832 PPC | KVM_REG_PPC_VPA_DTL | 128
352df1de 1833 PPC | KVM_REG_PPC_EPCR | 32
324b3e63 1834 PPC | KVM_REG_PPC_EPR | 32
78accda4
BB
1835 PPC | KVM_REG_PPC_TCR | 32
1836 PPC | KVM_REG_PPC_TSR | 32
1837 PPC | KVM_REG_PPC_OR_TSR | 32
1838 PPC | KVM_REG_PPC_CLEAR_TSR | 32
a85d2aa2
MC
1839 PPC | KVM_REG_PPC_MAS0 | 32
1840 PPC | KVM_REG_PPC_MAS1 | 32
1841 PPC | KVM_REG_PPC_MAS2 | 64
1842 PPC | KVM_REG_PPC_MAS7_3 | 64
1843 PPC | KVM_REG_PPC_MAS4 | 32
1844 PPC | KVM_REG_PPC_MAS6 | 32
1845 PPC | KVM_REG_PPC_MMUCFG | 32
1846 PPC | KVM_REG_PPC_TLB0CFG | 32
1847 PPC | KVM_REG_PPC_TLB1CFG | 32
1848 PPC | KVM_REG_PPC_TLB2CFG | 32
1849 PPC | KVM_REG_PPC_TLB3CFG | 32
307d9008
MC
1850 PPC | KVM_REG_PPC_TLB0PS | 32
1851 PPC | KVM_REG_PPC_TLB1PS | 32
1852 PPC | KVM_REG_PPC_TLB2PS | 32
1853 PPC | KVM_REG_PPC_TLB3PS | 32
9a6061d7 1854 PPC | KVM_REG_PPC_EPTCFG | 32
8b78645c 1855 PPC | KVM_REG_PPC_ICP_STATE | 64
93b0f4dc 1856 PPC | KVM_REG_PPC_TB_OFFSET | 64
3b783474
MN
1857 PPC | KVM_REG_PPC_SPMC1 | 32
1858 PPC | KVM_REG_PPC_SPMC2 | 32
1859 PPC | KVM_REG_PPC_IAMR | 64
1860 PPC | KVM_REG_PPC_TFHAR | 64
1861 PPC | KVM_REG_PPC_TFIAR | 64
1862 PPC | KVM_REG_PPC_TEXASR | 64
1863 PPC | KVM_REG_PPC_FSCR | 64
1864 PPC | KVM_REG_PPC_PSPB | 32
1865 PPC | KVM_REG_PPC_EBBHR | 64
1866 PPC | KVM_REG_PPC_EBBRR | 64
1867 PPC | KVM_REG_PPC_BESCR | 64
1868 PPC | KVM_REG_PPC_TAR | 64
1869 PPC | KVM_REG_PPC_DPDES | 64
1870 PPC | KVM_REG_PPC_DAWR | 64
1871 PPC | KVM_REG_PPC_DAWRX | 64
1872 PPC | KVM_REG_PPC_CIABR | 64
1873 PPC | KVM_REG_PPC_IC | 64
1874 PPC | KVM_REG_PPC_VTB | 64
1875 PPC | KVM_REG_PPC_CSIGR | 64
1876 PPC | KVM_REG_PPC_TACR | 64
1877 PPC | KVM_REG_PPC_TCSCR | 64
1878 PPC | KVM_REG_PPC_PID | 64
1879 PPC | KVM_REG_PPC_ACOP | 64
c0867fd5 1880 PPC | KVM_REG_PPC_VRSAVE | 32
a0144e2a 1881 PPC | KVM_REG_PPC_LPCR | 64
4b8473c9 1882 PPC | KVM_REG_PPC_PPR | 64
388cc6e1 1883 PPC | KVM_REG_PPC_ARCH_COMPAT 32
8563bf52 1884 PPC | KVM_REG_PPC_DABRX | 32
e1d8a96d 1885 PPC | KVM_REG_PPC_WORT | 64
3b783474
MN
1886 PPC | KVM_REG_PPC_TM_GPR0 | 64
1887 ...
1888 PPC | KVM_REG_PPC_TM_GPR31 | 64
1889 PPC | KVM_REG_PPC_TM_VSR0 | 128
1890 ...
1891 PPC | KVM_REG_PPC_TM_VSR63 | 128
1892 PPC | KVM_REG_PPC_TM_CR | 64
1893 PPC | KVM_REG_PPC_TM_LR | 64
1894 PPC | KVM_REG_PPC_TM_CTR | 64
1895 PPC | KVM_REG_PPC_TM_FPSCR | 64
1896 PPC | KVM_REG_PPC_TM_AMR | 64
1897 PPC | KVM_REG_PPC_TM_PPR | 64
1898 PPC | KVM_REG_PPC_TM_VRSAVE | 64
1899 PPC | KVM_REG_PPC_TM_VSCR | 32
1900 PPC | KVM_REG_PPC_TM_DSCR | 64
1901 PPC | KVM_REG_PPC_TM_TAR | 64
414fa985 1902
749cf76c
CD
1903ARM registers are mapped using the lower 32 bits. The upper 16 of that
1904is the register group type, or coprocessor number:
1905
1906ARM core registers have the following id bit patterns:
aa404ddf 1907 0x4020 0000 0010 <index into the kvm_regs struct:16>
749cf76c 1908
1138245c 1909ARM 32-bit CP15 registers have the following id bit patterns:
aa404ddf 1910 0x4020 0000 000F <zero:1> <crn:4> <crm:4> <opc1:4> <opc2:3>
1138245c
CD
1911
1912ARM 64-bit CP15 registers have the following id bit patterns:
aa404ddf 1913 0x4030 0000 000F <zero:1> <zero:4> <crm:4> <opc1:4> <zero:3>
749cf76c 1914
c27581ed 1915ARM CCSIDR registers are demultiplexed by CSSELR value:
aa404ddf 1916 0x4020 0000 0011 00 <csselr:8>
749cf76c 1917
4fe21e4c 1918ARM 32-bit VFP control registers have the following id bit patterns:
aa404ddf 1919 0x4020 0000 0012 1 <regno:12>
4fe21e4c
RR
1920
1921ARM 64-bit FP registers have the following id bit patterns:
aa404ddf 1922 0x4030 0000 0012 0 <regno:12>
4fe21e4c 1923
379e04c7
MZ
1924
1925arm64 registers are mapped using the lower 32 bits. The upper 16 of
1926that is the register group type, or coprocessor number:
1927
1928arm64 core/FP-SIMD registers have the following id bit patterns. Note
1929that the size of the access is variable, as the kvm_regs structure
1930contains elements ranging from 32 to 128 bits. The index is a 32bit
1931value in the kvm_regs structure seen as a 32bit array.
1932 0x60x0 0000 0010 <index into the kvm_regs struct:16>
1933
1934arm64 CCSIDR registers are demultiplexed by CSSELR value:
1935 0x6020 0000 0011 00 <csselr:8>
1936
1937arm64 system registers have the following id bit patterns:
1938 0x6030 0000 0013 <op0:2> <op1:3> <crn:4> <crm:4> <op2:3>
1939
e24ed81f
AG
19404.69 KVM_GET_ONE_REG
1941
1942Capability: KVM_CAP_ONE_REG
1943Architectures: all
1944Type: vcpu ioctl
1945Parameters: struct kvm_one_reg (in and out)
1946Returns: 0 on success, negative value on failure
1947
1948This ioctl allows to receive the value of a single register implemented
1949in a vcpu. The register to read is indicated by the "id" field of the
1950kvm_one_reg struct passed in. On success, the register value can be found
1951at the memory location pointed to by "addr".
1952
1953The list of registers accessible using this interface is identical to the
2e232702 1954list in 4.68.
e24ed81f 1955
414fa985 1956
1c0b28c2
EM
19574.70 KVM_KVMCLOCK_CTRL
1958
1959Capability: KVM_CAP_KVMCLOCK_CTRL
1960Architectures: Any that implement pvclocks (currently x86 only)
1961Type: vcpu ioctl
1962Parameters: None
1963Returns: 0 on success, -1 on error
1964
1965This signals to the host kernel that the specified guest is being paused by
1966userspace. The host will set a flag in the pvclock structure that is checked
1967from the soft lockup watchdog. The flag is part of the pvclock structure that
1968is shared between guest and host, specifically the second bit of the flags
1969field of the pvclock_vcpu_time_info structure. It will be set exclusively by
1970the host and read/cleared exclusively by the guest. The guest operation of
1971checking and clearing the flag must an atomic operation so
1972load-link/store-conditional, or equivalent must be used. There are two cases
1973where the guest will clear the flag: when the soft lockup watchdog timer resets
1974itself or when a soft lockup is detected. This ioctl can be called any time
1975after pausing the vcpu, but before it is resumed.
1976
414fa985 1977
07975ad3
JK
19784.71 KVM_SIGNAL_MSI
1979
1980Capability: KVM_CAP_SIGNAL_MSI
1981Architectures: x86
1982Type: vm ioctl
1983Parameters: struct kvm_msi (in)
1984Returns: >0 on delivery, 0 if guest blocked the MSI, and -1 on error
1985
1986Directly inject a MSI message. Only valid with in-kernel irqchip that handles
1987MSI messages.
1988
1989struct kvm_msi {
1990 __u32 address_lo;
1991 __u32 address_hi;
1992 __u32 data;
1993 __u32 flags;
1994 __u8 pad[16];
1995};
1996
1997No flags are defined so far. The corresponding field must be 0.
1998
414fa985 1999
0589ff6c
JK
20004.71 KVM_CREATE_PIT2
2001
2002Capability: KVM_CAP_PIT2
2003Architectures: x86
2004Type: vm ioctl
2005Parameters: struct kvm_pit_config (in)
2006Returns: 0 on success, -1 on error
2007
2008Creates an in-kernel device model for the i8254 PIT. This call is only valid
2009after enabling in-kernel irqchip support via KVM_CREATE_IRQCHIP. The following
2010parameters have to be passed:
2011
2012struct kvm_pit_config {
2013 __u32 flags;
2014 __u32 pad[15];
2015};
2016
2017Valid flags are:
2018
2019#define KVM_PIT_SPEAKER_DUMMY 1 /* emulate speaker port stub */
2020
b6ddf05f
JK
2021PIT timer interrupts may use a per-VM kernel thread for injection. If it
2022exists, this thread will have a name of the following pattern:
2023
2024kvm-pit/<owner-process-pid>
2025
2026When running a guest with elevated priorities, the scheduling parameters of
2027this thread may have to be adjusted accordingly.
2028
0589ff6c
JK
2029This IOCTL replaces the obsolete KVM_CREATE_PIT.
2030
2031
20324.72 KVM_GET_PIT2
2033
2034Capability: KVM_CAP_PIT_STATE2
2035Architectures: x86
2036Type: vm ioctl
2037Parameters: struct kvm_pit_state2 (out)
2038Returns: 0 on success, -1 on error
2039
2040Retrieves the state of the in-kernel PIT model. Only valid after
2041KVM_CREATE_PIT2. The state is returned in the following structure:
2042
2043struct kvm_pit_state2 {
2044 struct kvm_pit_channel_state channels[3];
2045 __u32 flags;
2046 __u32 reserved[9];
2047};
2048
2049Valid flags are:
2050
2051/* disable PIT in HPET legacy mode */
2052#define KVM_PIT_FLAGS_HPET_LEGACY 0x00000001
2053
2054This IOCTL replaces the obsolete KVM_GET_PIT.
2055
2056
20574.73 KVM_SET_PIT2
2058
2059Capability: KVM_CAP_PIT_STATE2
2060Architectures: x86
2061Type: vm ioctl
2062Parameters: struct kvm_pit_state2 (in)
2063Returns: 0 on success, -1 on error
2064
2065Sets the state of the in-kernel PIT model. Only valid after KVM_CREATE_PIT2.
2066See KVM_GET_PIT2 for details on struct kvm_pit_state2.
2067
2068This IOCTL replaces the obsolete KVM_SET_PIT.
2069
2070
5b74716e
BH
20714.74 KVM_PPC_GET_SMMU_INFO
2072
2073Capability: KVM_CAP_PPC_GET_SMMU_INFO
2074Architectures: powerpc
2075Type: vm ioctl
2076Parameters: None
2077Returns: 0 on success, -1 on error
2078
2079This populates and returns a structure describing the features of
2080the "Server" class MMU emulation supported by KVM.
cc22c354 2081This can in turn be used by userspace to generate the appropriate
5b74716e
BH
2082device-tree properties for the guest operating system.
2083
c98be0c9 2084The structure contains some global information, followed by an
5b74716e
BH
2085array of supported segment page sizes:
2086
2087 struct kvm_ppc_smmu_info {
2088 __u64 flags;
2089 __u32 slb_size;
2090 __u32 pad;
2091 struct kvm_ppc_one_seg_page_size sps[KVM_PPC_PAGE_SIZES_MAX_SZ];
2092 };
2093
2094The supported flags are:
2095
2096 - KVM_PPC_PAGE_SIZES_REAL:
2097 When that flag is set, guest page sizes must "fit" the backing
2098 store page sizes. When not set, any page size in the list can
2099 be used regardless of how they are backed by userspace.
2100
2101 - KVM_PPC_1T_SEGMENTS
2102 The emulated MMU supports 1T segments in addition to the
2103 standard 256M ones.
2104
2105The "slb_size" field indicates how many SLB entries are supported
2106
2107The "sps" array contains 8 entries indicating the supported base
2108page sizes for a segment in increasing order. Each entry is defined
2109as follow:
2110
2111 struct kvm_ppc_one_seg_page_size {
2112 __u32 page_shift; /* Base page shift of segment (or 0) */
2113 __u32 slb_enc; /* SLB encoding for BookS */
2114 struct kvm_ppc_one_page_size enc[KVM_PPC_PAGE_SIZES_MAX_SZ];
2115 };
2116
2117An entry with a "page_shift" of 0 is unused. Because the array is
2118organized in increasing order, a lookup can stop when encoutering
2119such an entry.
2120
2121The "slb_enc" field provides the encoding to use in the SLB for the
2122page size. The bits are in positions such as the value can directly
2123be OR'ed into the "vsid" argument of the slbmte instruction.
2124
2125The "enc" array is a list which for each of those segment base page
2126size provides the list of supported actual page sizes (which can be
2127only larger or equal to the base page size), along with the
f884ab15 2128corresponding encoding in the hash PTE. Similarly, the array is
5b74716e
BH
21298 entries sorted by increasing sizes and an entry with a "0" shift
2130is an empty entry and a terminator:
2131
2132 struct kvm_ppc_one_page_size {
2133 __u32 page_shift; /* Page shift (or 0) */
2134 __u32 pte_enc; /* Encoding in the HPTE (>>12) */
2135 };
2136
2137The "pte_enc" field provides a value that can OR'ed into the hash
2138PTE's RPN field (ie, it needs to be shifted left by 12 to OR it
2139into the hash PTE second double word).
2140
f36992e3
AW
21414.75 KVM_IRQFD
2142
2143Capability: KVM_CAP_IRQFD
ebc32262 2144Architectures: x86 s390
f36992e3
AW
2145Type: vm ioctl
2146Parameters: struct kvm_irqfd (in)
2147Returns: 0 on success, -1 on error
2148
2149Allows setting an eventfd to directly trigger a guest interrupt.
2150kvm_irqfd.fd specifies the file descriptor to use as the eventfd and
2151kvm_irqfd.gsi specifies the irqchip pin toggled by this event. When
17180032 2152an event is triggered on the eventfd, an interrupt is injected into
f36992e3
AW
2153the guest using the specified gsi pin. The irqfd is removed using
2154the KVM_IRQFD_FLAG_DEASSIGN flag, specifying both kvm_irqfd.fd
2155and kvm_irqfd.gsi.
2156
7a84428a
AW
2157With KVM_CAP_IRQFD_RESAMPLE, KVM_IRQFD supports a de-assert and notify
2158mechanism allowing emulation of level-triggered, irqfd-based
2159interrupts. When KVM_IRQFD_FLAG_RESAMPLE is set the user must pass an
2160additional eventfd in the kvm_irqfd.resamplefd field. When operating
2161in resample mode, posting of an interrupt through kvm_irq.fd asserts
2162the specified gsi in the irqchip. When the irqchip is resampled, such
17180032 2163as from an EOI, the gsi is de-asserted and the user is notified via
7a84428a
AW
2164kvm_irqfd.resamplefd. It is the user's responsibility to re-queue
2165the interrupt if the device making use of it still requires service.
2166Note that closing the resamplefd is not sufficient to disable the
2167irqfd. The KVM_IRQFD_FLAG_RESAMPLE is only necessary on assignment
2168and need not be specified with KVM_IRQFD_FLAG_DEASSIGN.
2169
5fecc9d8 21704.76 KVM_PPC_ALLOCATE_HTAB
32fad281
PM
2171
2172Capability: KVM_CAP_PPC_ALLOC_HTAB
2173Architectures: powerpc
2174Type: vm ioctl
2175Parameters: Pointer to u32 containing hash table order (in/out)
2176Returns: 0 on success, -1 on error
2177
2178This requests the host kernel to allocate an MMU hash table for a
2179guest using the PAPR paravirtualization interface. This only does
2180anything if the kernel is configured to use the Book 3S HV style of
2181virtualization. Otherwise the capability doesn't exist and the ioctl
2182returns an ENOTTY error. The rest of this description assumes Book 3S
2183HV.
2184
2185There must be no vcpus running when this ioctl is called; if there
2186are, it will do nothing and return an EBUSY error.
2187
2188The parameter is a pointer to a 32-bit unsigned integer variable
2189containing the order (log base 2) of the desired size of the hash
2190table, which must be between 18 and 46. On successful return from the
2191ioctl, it will have been updated with the order of the hash table that
2192was allocated.
2193
2194If no hash table has been allocated when any vcpu is asked to run
2195(with the KVM_RUN ioctl), the host kernel will allocate a
2196default-sized hash table (16 MB).
2197
2198If this ioctl is called when a hash table has already been allocated,
2199the kernel will clear out the existing hash table (zero all HPTEs) and
2200return the hash table order in the parameter. (If the guest is using
2201the virtualized real-mode area (VRMA) facility, the kernel will
2202re-create the VMRA HPTEs on the next KVM_RUN of any vcpu.)
2203
416ad65f
CH
22044.77 KVM_S390_INTERRUPT
2205
2206Capability: basic
2207Architectures: s390
2208Type: vm ioctl, vcpu ioctl
2209Parameters: struct kvm_s390_interrupt (in)
2210Returns: 0 on success, -1 on error
2211
2212Allows to inject an interrupt to the guest. Interrupts can be floating
2213(vm ioctl) or per cpu (vcpu ioctl), depending on the interrupt type.
2214
2215Interrupt parameters are passed via kvm_s390_interrupt:
2216
2217struct kvm_s390_interrupt {
2218 __u32 type;
2219 __u32 parm;
2220 __u64 parm64;
2221};
2222
2223type can be one of the following:
2224
2225KVM_S390_SIGP_STOP (vcpu) - sigp restart
2226KVM_S390_PROGRAM_INT (vcpu) - program check; code in parm
2227KVM_S390_SIGP_SET_PREFIX (vcpu) - sigp set prefix; prefix address in parm
2228KVM_S390_RESTART (vcpu) - restart
e029ae5b
TH
2229KVM_S390_INT_CLOCK_COMP (vcpu) - clock comparator interrupt
2230KVM_S390_INT_CPU_TIMER (vcpu) - CPU timer interrupt
416ad65f
CH
2231KVM_S390_INT_VIRTIO (vm) - virtio external interrupt; external interrupt
2232 parameters in parm and parm64
2233KVM_S390_INT_SERVICE (vm) - sclp external interrupt; sclp parameter in parm
2234KVM_S390_INT_EMERGENCY (vcpu) - sigp emergency; source cpu in parm
2235KVM_S390_INT_EXTERNAL_CALL (vcpu) - sigp external call; source cpu in parm
d8346b7d
CH
2236KVM_S390_INT_IO(ai,cssid,ssid,schid) (vm) - compound value to indicate an
2237 I/O interrupt (ai - adapter interrupt; cssid,ssid,schid - subchannel);
2238 I/O interruption parameters in parm (subchannel) and parm64 (intparm,
2239 interruption subclass)
48a3e950
CH
2240KVM_S390_MCHK (vm, vcpu) - machine check interrupt; cr 14 bits in parm,
2241 machine check interrupt code in parm64 (note that
2242 machine checks needing further payload are not
2243 supported by this ioctl)
416ad65f
CH
2244
2245Note that the vcpu ioctl is asynchronous to vcpu execution.
2246
a2932923
PM
22474.78 KVM_PPC_GET_HTAB_FD
2248
2249Capability: KVM_CAP_PPC_HTAB_FD
2250Architectures: powerpc
2251Type: vm ioctl
2252Parameters: Pointer to struct kvm_get_htab_fd (in)
2253Returns: file descriptor number (>= 0) on success, -1 on error
2254
2255This returns a file descriptor that can be used either to read out the
2256entries in the guest's hashed page table (HPT), or to write entries to
2257initialize the HPT. The returned fd can only be written to if the
2258KVM_GET_HTAB_WRITE bit is set in the flags field of the argument, and
2259can only be read if that bit is clear. The argument struct looks like
2260this:
2261
2262/* For KVM_PPC_GET_HTAB_FD */
2263struct kvm_get_htab_fd {
2264 __u64 flags;
2265 __u64 start_index;
2266 __u64 reserved[2];
2267};
2268
2269/* Values for kvm_get_htab_fd.flags */
2270#define KVM_GET_HTAB_BOLTED_ONLY ((__u64)0x1)
2271#define KVM_GET_HTAB_WRITE ((__u64)0x2)
2272
2273The `start_index' field gives the index in the HPT of the entry at
2274which to start reading. It is ignored when writing.
2275
2276Reads on the fd will initially supply information about all
2277"interesting" HPT entries. Interesting entries are those with the
2278bolted bit set, if the KVM_GET_HTAB_BOLTED_ONLY bit is set, otherwise
2279all entries. When the end of the HPT is reached, the read() will
2280return. If read() is called again on the fd, it will start again from
2281the beginning of the HPT, but will only return HPT entries that have
2282changed since they were last read.
2283
2284Data read or written is structured as a header (8 bytes) followed by a
2285series of valid HPT entries (16 bytes) each. The header indicates how
2286many valid HPT entries there are and how many invalid entries follow
2287the valid entries. The invalid entries are not represented explicitly
2288in the stream. The header format is:
2289
2290struct kvm_get_htab_header {
2291 __u32 index;
2292 __u16 n_valid;
2293 __u16 n_invalid;
2294};
2295
2296Writes to the fd create HPT entries starting at the index given in the
2297header; first `n_valid' valid entries with contents from the data
2298written, then `n_invalid' invalid entries, invalidating any previously
2299valid entries found.
2300
852b6d57
SW
23014.79 KVM_CREATE_DEVICE
2302
2303Capability: KVM_CAP_DEVICE_CTRL
2304Type: vm ioctl
2305Parameters: struct kvm_create_device (in/out)
2306Returns: 0 on success, -1 on error
2307Errors:
2308 ENODEV: The device type is unknown or unsupported
2309 EEXIST: Device already created, and this type of device may not
2310 be instantiated multiple times
2311
2312 Other error conditions may be defined by individual device types or
2313 have their standard meanings.
2314
2315Creates an emulated device in the kernel. The file descriptor returned
2316in fd can be used with KVM_SET/GET/HAS_DEVICE_ATTR.
2317
2318If the KVM_CREATE_DEVICE_TEST flag is set, only test whether the
2319device type is supported (not necessarily whether it can be created
2320in the current vm).
2321
2322Individual devices should not define flags. Attributes should be used
2323for specifying any behavior that is not implied by the device type
2324number.
2325
2326struct kvm_create_device {
2327 __u32 type; /* in: KVM_DEV_TYPE_xxx */
2328 __u32 fd; /* out: device handle */
2329 __u32 flags; /* in: KVM_CREATE_DEVICE_xxx */
2330};
2331
23324.80 KVM_SET_DEVICE_ATTR/KVM_GET_DEVICE_ATTR
2333
f2061656
DD
2334Capability: KVM_CAP_DEVICE_CTRL, KVM_CAP_VM_ATTRIBUTES for vm device
2335Type: device ioctl, vm ioctl
852b6d57
SW
2336Parameters: struct kvm_device_attr
2337Returns: 0 on success, -1 on error
2338Errors:
2339 ENXIO: The group or attribute is unknown/unsupported for this device
2340 EPERM: The attribute cannot (currently) be accessed this way
2341 (e.g. read-only attribute, or attribute that only makes
2342 sense when the device is in a different state)
2343
2344 Other error conditions may be defined by individual device types.
2345
2346Gets/sets a specified piece of device configuration and/or state. The
2347semantics are device-specific. See individual device documentation in
2348the "devices" directory. As with ONE_REG, the size of the data
2349transferred is defined by the particular attribute.
2350
2351struct kvm_device_attr {
2352 __u32 flags; /* no flags currently defined */
2353 __u32 group; /* device-defined */
2354 __u64 attr; /* group-defined */
2355 __u64 addr; /* userspace address of attr data */
2356};
2357
23584.81 KVM_HAS_DEVICE_ATTR
2359
f2061656
DD
2360Capability: KVM_CAP_DEVICE_CTRL, KVM_CAP_VM_ATTRIBUTES for vm device
2361Type: device ioctl, vm ioctl
852b6d57
SW
2362Parameters: struct kvm_device_attr
2363Returns: 0 on success, -1 on error
2364Errors:
2365 ENXIO: The group or attribute is unknown/unsupported for this device
2366
2367Tests whether a device supports a particular attribute. A successful
2368return indicates the attribute is implemented. It does not necessarily
2369indicate that the attribute can be read or written in the device's
2370current state. "addr" is ignored.
f36992e3 2371
d8968f1f 23724.82 KVM_ARM_VCPU_INIT
749cf76c
CD
2373
2374Capability: basic
379e04c7 2375Architectures: arm, arm64
749cf76c 2376Type: vcpu ioctl
beb11fc7 2377Parameters: struct kvm_vcpu_init (in)
749cf76c
CD
2378Returns: 0 on success; -1 on error
2379Errors:
2380  EINVAL:    the target is unknown, or the combination of features is invalid.
2381  ENOENT:    a features bit specified is unknown.
2382
2383This tells KVM what type of CPU to present to the guest, and what
2384optional features it should have.  This will cause a reset of the cpu
2385registers to their initial values.  If this is not called, KVM_RUN will
2386return ENOEXEC for that vcpu.
2387
2388Note that because some registers reflect machine topology, all vcpus
2389should be created before this ioctl is invoked.
2390
aa024c2f
MZ
2391Possible features:
2392 - KVM_ARM_VCPU_POWER_OFF: Starts the CPU in a power-off state.
2393 Depends on KVM_CAP_ARM_PSCI.
379e04c7
MZ
2394 - KVM_ARM_VCPU_EL1_32BIT: Starts the CPU in a 32bit mode.
2395 Depends on KVM_CAP_ARM_EL1_32BIT (arm64 only).
50bb0c94
AP
2396 - KVM_ARM_VCPU_PSCI_0_2: Emulate PSCI v0.2 for the CPU.
2397 Depends on KVM_CAP_ARM_PSCI_0_2.
aa024c2f 2398
749cf76c 2399
740edfc0
AP
24004.83 KVM_ARM_PREFERRED_TARGET
2401
2402Capability: basic
2403Architectures: arm, arm64
2404Type: vm ioctl
2405Parameters: struct struct kvm_vcpu_init (out)
2406Returns: 0 on success; -1 on error
2407Errors:
a7265fb1 2408 ENODEV: no preferred target available for the host
740edfc0
AP
2409
2410This queries KVM for preferred CPU target type which can be emulated
2411by KVM on underlying host.
2412
2413The ioctl returns struct kvm_vcpu_init instance containing information
2414about preferred CPU target type and recommended features for it. The
2415kvm_vcpu_init->features bitmap returned will have feature bits set if
2416the preferred target recommends setting these features, but this is
2417not mandatory.
2418
2419The information returned by this ioctl can be used to prepare an instance
2420of struct kvm_vcpu_init for KVM_ARM_VCPU_INIT ioctl which will result in
2421in VCPU matching underlying host.
2422
2423
24244.84 KVM_GET_REG_LIST
749cf76c
CD
2425
2426Capability: basic
379e04c7 2427Architectures: arm, arm64
749cf76c
CD
2428Type: vcpu ioctl
2429Parameters: struct kvm_reg_list (in/out)
2430Returns: 0 on success; -1 on error
2431Errors:
2432  E2BIG:     the reg index list is too big to fit in the array specified by
2433             the user (the number required will be written into n).
2434
2435struct kvm_reg_list {
2436 __u64 n; /* number of registers in reg[] */
2437 __u64 reg[0];
2438};
2439
2440This ioctl returns the guest registers that are supported for the
2441KVM_GET_ONE_REG/KVM_SET_ONE_REG calls.
2442
ce01e4e8
CD
2443
24444.85 KVM_ARM_SET_DEVICE_ADDR (deprecated)
3401d546
CD
2445
2446Capability: KVM_CAP_ARM_SET_DEVICE_ADDR
379e04c7 2447Architectures: arm, arm64
3401d546
CD
2448Type: vm ioctl
2449Parameters: struct kvm_arm_device_address (in)
2450Returns: 0 on success, -1 on error
2451Errors:
2452 ENODEV: The device id is unknown
2453 ENXIO: Device not supported on current system
2454 EEXIST: Address already set
2455 E2BIG: Address outside guest physical address space
330690cd 2456 EBUSY: Address overlaps with other device range
3401d546
CD
2457
2458struct kvm_arm_device_addr {
2459 __u64 id;
2460 __u64 addr;
2461};
2462
2463Specify a device address in the guest's physical address space where guests
2464can access emulated or directly exposed devices, which the host kernel needs
2465to know about. The id field is an architecture specific identifier for a
2466specific device.
2467
379e04c7
MZ
2468ARM/arm64 divides the id field into two parts, a device id and an
2469address type id specific to the individual device.
3401d546
CD
2470
2471  bits: | 63 ... 32 | 31 ... 16 | 15 ... 0 |
2472 field: | 0x00000000 | device id | addr type id |
2473
379e04c7
MZ
2474ARM/arm64 currently only require this when using the in-kernel GIC
2475support for the hardware VGIC features, using KVM_ARM_DEVICE_VGIC_V2
2476as the device id. When setting the base address for the guest's
2477mapping of the VGIC virtual CPU and distributor interface, the ioctl
2478must be called after calling KVM_CREATE_IRQCHIP, but before calling
2479KVM_RUN on any of the VCPUs. Calling this ioctl twice for any of the
2480base addresses will return -EEXIST.
3401d546 2481
ce01e4e8
CD
2482Note, this IOCTL is deprecated and the more flexible SET/GET_DEVICE_ATTR API
2483should be used instead.
2484
2485
740edfc0 24864.86 KVM_PPC_RTAS_DEFINE_TOKEN
8e591cb7
ME
2487
2488Capability: KVM_CAP_PPC_RTAS
2489Architectures: ppc
2490Type: vm ioctl
2491Parameters: struct kvm_rtas_token_args
2492Returns: 0 on success, -1 on error
2493
2494Defines a token value for a RTAS (Run Time Abstraction Services)
2495service in order to allow it to be handled in the kernel. The
2496argument struct gives the name of the service, which must be the name
2497of a service that has a kernel-side implementation. If the token
2498value is non-zero, it will be associated with that service, and
2499subsequent RTAS calls by the guest specifying that token will be
2500handled by the kernel. If the token value is 0, then any token
2501associated with the service will be forgotten, and subsequent RTAS
2502calls by the guest for that service will be passed to userspace to be
2503handled.
2504
3401d546 2505
9c1b96e3 25065. The kvm_run structure
414fa985 2507------------------------
9c1b96e3
AK
2508
2509Application code obtains a pointer to the kvm_run structure by
2510mmap()ing a vcpu fd. From that point, application code can control
2511execution by changing fields in kvm_run prior to calling the KVM_RUN
2512ioctl, and obtain information about the reason KVM_RUN returned by
2513looking up structure members.
2514
2515struct kvm_run {
2516 /* in */
2517 __u8 request_interrupt_window;
2518
2519Request that KVM_RUN return when it becomes possible to inject external
2520interrupts into the guest. Useful in conjunction with KVM_INTERRUPT.
2521
2522 __u8 padding1[7];
2523
2524 /* out */
2525 __u32 exit_reason;
2526
2527When KVM_RUN has returned successfully (return value 0), this informs
2528application code why KVM_RUN has returned. Allowable values for this
2529field are detailed below.
2530
2531 __u8 ready_for_interrupt_injection;
2532
2533If request_interrupt_window has been specified, this field indicates
2534an interrupt can be injected now with KVM_INTERRUPT.
2535
2536 __u8 if_flag;
2537
2538The value of the current interrupt flag. Only valid if in-kernel
2539local APIC is not used.
2540
2541 __u8 padding2[2];
2542
2543 /* in (pre_kvm_run), out (post_kvm_run) */
2544 __u64 cr8;
2545
2546The value of the cr8 register. Only valid if in-kernel local APIC is
2547not used. Both input and output.
2548
2549 __u64 apic_base;
2550
2551The value of the APIC BASE msr. Only valid if in-kernel local
2552APIC is not used. Both input and output.
2553
2554 union {
2555 /* KVM_EXIT_UNKNOWN */
2556 struct {
2557 __u64 hardware_exit_reason;
2558 } hw;
2559
2560If exit_reason is KVM_EXIT_UNKNOWN, the vcpu has exited due to unknown
2561reasons. Further architecture-specific information is available in
2562hardware_exit_reason.
2563
2564 /* KVM_EXIT_FAIL_ENTRY */
2565 struct {
2566 __u64 hardware_entry_failure_reason;
2567 } fail_entry;
2568
2569If exit_reason is KVM_EXIT_FAIL_ENTRY, the vcpu could not be run due
2570to unknown reasons. Further architecture-specific information is
2571available in hardware_entry_failure_reason.
2572
2573 /* KVM_EXIT_EXCEPTION */
2574 struct {
2575 __u32 exception;
2576 __u32 error_code;
2577 } ex;
2578
2579Unused.
2580
2581 /* KVM_EXIT_IO */
2582 struct {
2583#define KVM_EXIT_IO_IN 0
2584#define KVM_EXIT_IO_OUT 1
2585 __u8 direction;
2586 __u8 size; /* bytes */
2587 __u16 port;
2588 __u32 count;
2589 __u64 data_offset; /* relative to kvm_run start */
2590 } io;
2591
2044892d 2592If exit_reason is KVM_EXIT_IO, then the vcpu has
9c1b96e3
AK
2593executed a port I/O instruction which could not be satisfied by kvm.
2594data_offset describes where the data is located (KVM_EXIT_IO_OUT) or
2595where kvm expects application code to place the data for the next
2044892d 2596KVM_RUN invocation (KVM_EXIT_IO_IN). Data format is a packed array.
9c1b96e3
AK
2597
2598 struct {
2599 struct kvm_debug_exit_arch arch;
2600 } debug;
2601
2602Unused.
2603
2604 /* KVM_EXIT_MMIO */
2605 struct {
2606 __u64 phys_addr;
2607 __u8 data[8];
2608 __u32 len;
2609 __u8 is_write;
2610 } mmio;
2611
2044892d 2612If exit_reason is KVM_EXIT_MMIO, then the vcpu has
9c1b96e3
AK
2613executed a memory-mapped I/O instruction which could not be satisfied
2614by kvm. The 'data' member contains the written data if 'is_write' is
2615true, and should be filled by application code otherwise.
2616
6acdb160
CD
2617The 'data' member contains, in its first 'len' bytes, the value as it would
2618appear if the VCPU performed a load or store of the appropriate width directly
2619to the byte array.
2620
1c810636
AG
2621NOTE: For KVM_EXIT_IO, KVM_EXIT_MMIO, KVM_EXIT_OSI, KVM_EXIT_DCR,
2622 KVM_EXIT_PAPR and KVM_EXIT_EPR the corresponding
ad0a048b
AG
2623operations are complete (and guest state is consistent) only after userspace
2624has re-entered the kernel with KVM_RUN. The kernel side will first finish
67961344
MT
2625incomplete operations and then check for pending signals. Userspace
2626can re-enter the guest with an unmasked signal pending to complete
2627pending operations.
2628
9c1b96e3
AK
2629 /* KVM_EXIT_HYPERCALL */
2630 struct {
2631 __u64 nr;
2632 __u64 args[6];
2633 __u64 ret;
2634 __u32 longmode;
2635 __u32 pad;
2636 } hypercall;
2637
647dc49e
AK
2638Unused. This was once used for 'hypercall to userspace'. To implement
2639such functionality, use KVM_EXIT_IO (x86) or KVM_EXIT_MMIO (all except s390).
2640Note KVM_EXIT_IO is significantly faster than KVM_EXIT_MMIO.
9c1b96e3
AK
2641
2642 /* KVM_EXIT_TPR_ACCESS */
2643 struct {
2644 __u64 rip;
2645 __u32 is_write;
2646 __u32 pad;
2647 } tpr_access;
2648
2649To be documented (KVM_TPR_ACCESS_REPORTING).
2650
2651 /* KVM_EXIT_S390_SIEIC */
2652 struct {
2653 __u8 icptcode;
2654 __u64 mask; /* psw upper half */
2655 __u64 addr; /* psw lower half */
2656 __u16 ipa;
2657 __u32 ipb;
2658 } s390_sieic;
2659
2660s390 specific.
2661
2662 /* KVM_EXIT_S390_RESET */
2663#define KVM_S390_RESET_POR 1
2664#define KVM_S390_RESET_CLEAR 2
2665#define KVM_S390_RESET_SUBSYSTEM 4
2666#define KVM_S390_RESET_CPU_INIT 8
2667#define KVM_S390_RESET_IPL 16
2668 __u64 s390_reset_flags;
2669
2670s390 specific.
2671
e168bf8d
CO
2672 /* KVM_EXIT_S390_UCONTROL */
2673 struct {
2674 __u64 trans_exc_code;
2675 __u32 pgm_code;
2676 } s390_ucontrol;
2677
2678s390 specific. A page fault has occurred for a user controlled virtual
2679machine (KVM_VM_S390_UNCONTROL) on it's host page table that cannot be
2680resolved by the kernel.
2681The program code and the translation exception code that were placed
2682in the cpu's lowcore are presented here as defined by the z Architecture
2683Principles of Operation Book in the Chapter for Dynamic Address Translation
2684(DAT)
2685
9c1b96e3
AK
2686 /* KVM_EXIT_DCR */
2687 struct {
2688 __u32 dcrn;
2689 __u32 data;
2690 __u8 is_write;
2691 } dcr;
2692
2693powerpc specific.
2694
ad0a048b
AG
2695 /* KVM_EXIT_OSI */
2696 struct {
2697 __u64 gprs[32];
2698 } osi;
2699
2700MOL uses a special hypercall interface it calls 'OSI'. To enable it, we catch
2701hypercalls and exit with this exit struct that contains all the guest gprs.
2702
2703If exit_reason is KVM_EXIT_OSI, then the vcpu has triggered such a hypercall.
2704Userspace can now handle the hypercall and when it's done modify the gprs as
2705necessary. Upon guest entry all guest GPRs will then be replaced by the values
2706in this struct.
2707
de56a948
PM
2708 /* KVM_EXIT_PAPR_HCALL */
2709 struct {
2710 __u64 nr;
2711 __u64 ret;
2712 __u64 args[9];
2713 } papr_hcall;
2714
2715This is used on 64-bit PowerPC when emulating a pSeries partition,
2716e.g. with the 'pseries' machine type in qemu. It occurs when the
2717guest does a hypercall using the 'sc 1' instruction. The 'nr' field
2718contains the hypercall number (from the guest R3), and 'args' contains
2719the arguments (from the guest R4 - R12). Userspace should put the
2720return code in 'ret' and any extra returned values in args[].
2721The possible hypercalls are defined in the Power Architecture Platform
2722Requirements (PAPR) document available from www.power.org (free
2723developer registration required to access it).
2724
fa6b7fe9
CH
2725 /* KVM_EXIT_S390_TSCH */
2726 struct {
2727 __u16 subchannel_id;
2728 __u16 subchannel_nr;
2729 __u32 io_int_parm;
2730 __u32 io_int_word;
2731 __u32 ipb;
2732 __u8 dequeued;
2733 } s390_tsch;
2734
2735s390 specific. This exit occurs when KVM_CAP_S390_CSS_SUPPORT has been enabled
2736and TEST SUBCHANNEL was intercepted. If dequeued is set, a pending I/O
2737interrupt for the target subchannel has been dequeued and subchannel_id,
2738subchannel_nr, io_int_parm and io_int_word contain the parameters for that
2739interrupt. ipb is needed for instruction parameter decoding.
2740
1c810636
AG
2741 /* KVM_EXIT_EPR */
2742 struct {
2743 __u32 epr;
2744 } epr;
2745
2746On FSL BookE PowerPC chips, the interrupt controller has a fast patch
2747interrupt acknowledge path to the core. When the core successfully
2748delivers an interrupt, it automatically populates the EPR register with
2749the interrupt vector number and acknowledges the interrupt inside
2750the interrupt controller.
2751
2752In case the interrupt controller lives in user space, we need to do
2753the interrupt acknowledge cycle through it to fetch the next to be
2754delivered interrupt vector using this exit.
2755
2756It gets triggered whenever both KVM_CAP_PPC_EPR are enabled and an
2757external interrupt has just been delivered into the guest. User space
2758should put the acknowledged interrupt vector into the 'epr' field.
2759
8ad6b634
AP
2760 /* KVM_EXIT_SYSTEM_EVENT */
2761 struct {
2762#define KVM_SYSTEM_EVENT_SHUTDOWN 1
2763#define KVM_SYSTEM_EVENT_RESET 2
2764 __u32 type;
2765 __u64 flags;
2766 } system_event;
2767
2768If exit_reason is KVM_EXIT_SYSTEM_EVENT then the vcpu has triggered
2769a system-level event using some architecture specific mechanism (hypercall
2770or some special instruction). In case of ARM/ARM64, this is triggered using
2771HVC instruction based PSCI call from the vcpu. The 'type' field describes
2772the system-level event type. The 'flags' field describes architecture
2773specific flags for the system-level event.
2774
9c1b96e3
AK
2775 /* Fix the size of the union. */
2776 char padding[256];
2777 };
b9e5dc8d
CB
2778
2779 /*
2780 * shared registers between kvm and userspace.
2781 * kvm_valid_regs specifies the register classes set by the host
2782 * kvm_dirty_regs specified the register classes dirtied by userspace
2783 * struct kvm_sync_regs is architecture specific, as well as the
2784 * bits for kvm_valid_regs and kvm_dirty_regs
2785 */
2786 __u64 kvm_valid_regs;
2787 __u64 kvm_dirty_regs;
2788 union {
2789 struct kvm_sync_regs regs;
2790 char padding[1024];
2791 } s;
2792
2793If KVM_CAP_SYNC_REGS is defined, these fields allow userspace to access
2794certain guest registers without having to call SET/GET_*REGS. Thus we can
2795avoid some system call overhead if userspace has to handle the exit.
2796Userspace can query the validity of the structure by checking
2797kvm_valid_regs for specific bits. These bits are architecture specific
2798and usually define the validity of a groups of registers. (e.g. one bit
2799 for general purpose registers)
2800
9c1b96e3 2801};
821246a5 2802
414fa985 2803
9c15bb1d
BP
28044.81 KVM_GET_EMULATED_CPUID
2805
2806Capability: KVM_CAP_EXT_EMUL_CPUID
2807Architectures: x86
2808Type: system ioctl
2809Parameters: struct kvm_cpuid2 (in/out)
2810Returns: 0 on success, -1 on error
2811
2812struct kvm_cpuid2 {
2813 __u32 nent;
2814 __u32 flags;
2815 struct kvm_cpuid_entry2 entries[0];
2816};
2817
2818The member 'flags' is used for passing flags from userspace.
2819
2820#define KVM_CPUID_FLAG_SIGNIFCANT_INDEX BIT(0)
2821#define KVM_CPUID_FLAG_STATEFUL_FUNC BIT(1)
2822#define KVM_CPUID_FLAG_STATE_READ_NEXT BIT(2)
2823
2824struct kvm_cpuid_entry2 {
2825 __u32 function;
2826 __u32 index;
2827 __u32 flags;
2828 __u32 eax;
2829 __u32 ebx;
2830 __u32 ecx;
2831 __u32 edx;
2832 __u32 padding[3];
2833};
2834
2835This ioctl returns x86 cpuid features which are emulated by
2836kvm.Userspace can use the information returned by this ioctl to query
2837which features are emulated by kvm instead of being present natively.
2838
2839Userspace invokes KVM_GET_EMULATED_CPUID by passing a kvm_cpuid2
2840structure with the 'nent' field indicating the number of entries in
2841the variable-size array 'entries'. If the number of entries is too low
2842to describe the cpu capabilities, an error (E2BIG) is returned. If the
2843number is too high, the 'nent' field is adjusted and an error (ENOMEM)
2844is returned. If the number is just right, the 'nent' field is adjusted
2845to the number of valid entries in the 'entries' array, which is then
2846filled.
2847
2848The entries returned are the set CPUID bits of the respective features
2849which kvm emulates, as returned by the CPUID instruction, with unknown
2850or unsupported feature bits cleared.
2851
2852Features like x2apic, for example, may not be present in the host cpu
2853but are exposed by kvm in KVM_GET_SUPPORTED_CPUID because they can be
2854emulated efficiently and thus not included here.
2855
2856The fields in each entry are defined as follows:
2857
2858 function: the eax value used to obtain the entry
2859 index: the ecx value used to obtain the entry (for entries that are
2860 affected by ecx)
2861 flags: an OR of zero or more of the following:
2862 KVM_CPUID_FLAG_SIGNIFCANT_INDEX:
2863 if the index field is valid
2864 KVM_CPUID_FLAG_STATEFUL_FUNC:
2865 if cpuid for this function returns different values for successive
2866 invocations; there will be several entries with the same function,
2867 all with this flag set
2868 KVM_CPUID_FLAG_STATE_READ_NEXT:
2869 for KVM_CPUID_FLAG_STATEFUL_FUNC entries, set if this entry is
2870 the first entry to be read by a cpu
2871 eax, ebx, ecx, edx: the values returned by the cpuid instruction for
2872 this function/index combination
2873
2874
821246a5 28756. Capabilities that can be enabled
414fa985 2876-----------------------------------
821246a5 2877
0907c855
CH
2878There are certain capabilities that change the behavior of the virtual CPU or
2879the virtual machine when enabled. To enable them, please see section 4.37.
2880Below you can find a list of capabilities and what their effect on the vCPU or
2881the virtual machine is when enabling them.
821246a5
AG
2882
2883The following information is provided along with the description:
2884
2885 Architectures: which instruction set architectures provide this ioctl.
2886 x86 includes both i386 and x86_64.
2887
0907c855
CH
2888 Target: whether this is a per-vcpu or per-vm capability.
2889
821246a5
AG
2890 Parameters: what parameters are accepted by the capability.
2891
2892 Returns: the return value. General error numbers (EBADF, ENOMEM, EINVAL)
2893 are not detailed, but errors with specific meanings are.
2894
414fa985 2895
821246a5
AG
28966.1 KVM_CAP_PPC_OSI
2897
2898Architectures: ppc
0907c855 2899Target: vcpu
821246a5
AG
2900Parameters: none
2901Returns: 0 on success; -1 on error
2902
2903This capability enables interception of OSI hypercalls that otherwise would
2904be treated as normal system calls to be injected into the guest. OSI hypercalls
2905were invented by Mac-on-Linux to have a standardized communication mechanism
2906between the guest and the host.
2907
2908When this capability is enabled, KVM_EXIT_OSI can occur.
2909
414fa985 2910
821246a5
AG
29116.2 KVM_CAP_PPC_PAPR
2912
2913Architectures: ppc
0907c855 2914Target: vcpu
821246a5
AG
2915Parameters: none
2916Returns: 0 on success; -1 on error
2917
2918This capability enables interception of PAPR hypercalls. PAPR hypercalls are
2919done using the hypercall instruction "sc 1".
2920
2921It also sets the guest privilege level to "supervisor" mode. Usually the guest
2922runs in "hypervisor" privilege mode with a few missing features.
2923
2924In addition to the above, it changes the semantics of SDR1. In this mode, the
2925HTAB address part of SDR1 contains an HVA instead of a GPA, as PAPR keeps the
2926HTAB invisible to the guest.
2927
2928When this capability is enabled, KVM_EXIT_PAPR_HCALL can occur.
dc83b8bc 2929
414fa985 2930
dc83b8bc
SW
29316.3 KVM_CAP_SW_TLB
2932
2933Architectures: ppc
0907c855 2934Target: vcpu
dc83b8bc
SW
2935Parameters: args[0] is the address of a struct kvm_config_tlb
2936Returns: 0 on success; -1 on error
2937
2938struct kvm_config_tlb {
2939 __u64 params;
2940 __u64 array;
2941 __u32 mmu_type;
2942 __u32 array_len;
2943};
2944
2945Configures the virtual CPU's TLB array, establishing a shared memory area
2946between userspace and KVM. The "params" and "array" fields are userspace
2947addresses of mmu-type-specific data structures. The "array_len" field is an
2948safety mechanism, and should be set to the size in bytes of the memory that
2949userspace has reserved for the array. It must be at least the size dictated
2950by "mmu_type" and "params".
2951
2952While KVM_RUN is active, the shared region is under control of KVM. Its
2953contents are undefined, and any modification by userspace results in
2954boundedly undefined behavior.
2955
2956On return from KVM_RUN, the shared region will reflect the current state of
2957the guest's TLB. If userspace makes any changes, it must call KVM_DIRTY_TLB
2958to tell KVM which entries have been changed, prior to calling KVM_RUN again
2959on this vcpu.
2960
2961For mmu types KVM_MMU_FSL_BOOKE_NOHV and KVM_MMU_FSL_BOOKE_HV:
2962 - The "params" field is of type "struct kvm_book3e_206_tlb_params".
2963 - The "array" field points to an array of type "struct
2964 kvm_book3e_206_tlb_entry".
2965 - The array consists of all entries in the first TLB, followed by all
2966 entries in the second TLB.
2967 - Within a TLB, entries are ordered first by increasing set number. Within a
2968 set, entries are ordered by way (increasing ESEL).
2969 - The hash for determining set number in TLB0 is: (MAS2 >> 12) & (num_sets - 1)
2970 where "num_sets" is the tlb_sizes[] value divided by the tlb_ways[] value.
2971 - The tsize field of mas1 shall be set to 4K on TLB0, even though the
2972 hardware ignores this value for TLB0.
fa6b7fe9
CH
2973
29746.4 KVM_CAP_S390_CSS_SUPPORT
2975
2976Architectures: s390
0907c855 2977Target: vcpu
fa6b7fe9
CH
2978Parameters: none
2979Returns: 0 on success; -1 on error
2980
2981This capability enables support for handling of channel I/O instructions.
2982
2983TEST PENDING INTERRUPTION and the interrupt portion of TEST SUBCHANNEL are
2984handled in-kernel, while the other I/O instructions are passed to userspace.
2985
2986When this capability is enabled, KVM_EXIT_S390_TSCH will occur on TEST
2987SUBCHANNEL intercepts.
1c810636 2988
0907c855
CH
2989Note that even though this capability is enabled per-vcpu, the complete
2990virtual machine is affected.
2991
1c810636
AG
29926.5 KVM_CAP_PPC_EPR
2993
2994Architectures: ppc
0907c855 2995Target: vcpu
1c810636
AG
2996Parameters: args[0] defines whether the proxy facility is active
2997Returns: 0 on success; -1 on error
2998
2999This capability enables or disables the delivery of interrupts through the
3000external proxy facility.
3001
3002When enabled (args[0] != 0), every time the guest gets an external interrupt
3003delivered, it automatically exits into user space with a KVM_EXIT_EPR exit
3004to receive the topmost interrupt vector.
3005
3006When disabled (args[0] == 0), behavior is as if this facility is unsupported.
3007
3008When this capability is enabled, KVM_EXIT_EPR can occur.
eb1e4f43
SW
3009
30106.6 KVM_CAP_IRQ_MPIC
3011
3012Architectures: ppc
3013Parameters: args[0] is the MPIC device fd
3014 args[1] is the MPIC CPU number for this vcpu
3015
3016This capability connects the vcpu to an in-kernel MPIC device.
5975a2e0
PM
3017
30186.7 KVM_CAP_IRQ_XICS
3019
3020Architectures: ppc
0907c855 3021Target: vcpu
5975a2e0
PM
3022Parameters: args[0] is the XICS device fd
3023 args[1] is the XICS CPU number (server ID) for this vcpu
3024
3025This capability connects the vcpu to an in-kernel XICS device.