blob: 26fc37355dcbba5af69fc8f69fe454707a68bf72 [file] [log] [blame]
Avi Kivity9c1b96e2009-06-09 12:37:58 +03001The Definitive KVM (Kernel-based Virtual Machine) API Documentation
2===================================================================
3
41. General description
Jan Kiszka414fa982012-04-24 16:40:15 +02005----------------------
Avi Kivity9c1b96e2009-06-09 12:37:58 +03006
7The kvm API is a set of ioctls that are issued to control various aspects
8of a virtual machine. The ioctls belong to three classes
9
10 - System ioctls: These query and set global attributes which affect the
11 whole kvm subsystem. In addition a system ioctl is used to create
12 virtual machines
13
14 - VM ioctls: These query and set attributes that affect an entire virtual
15 machine, for example memory layout. In addition a VM ioctl is used to
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
Jan Kiszka414fa982012-04-24 16:40:15 +020027
Wu Fengguang2044892d2009-12-24 09:04:16 +0800282. File descriptors
Jan Kiszka414fa982012-04-24 16:40:15 +020029-------------------
Avi Kivity9c1b96e2009-06-09 12:37:58 +030030
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
Wu Fengguang2044892d2009-12-24 09:04:16 +080034handle will create a VM file descriptor which can be used to issue VM
Avi Kivity9c1b96e2009-06-09 12:37:58 +030035ioctls. 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
Jan Kiszka414fa982012-04-24 16:40:15 +020047
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300483. Extensions
Jan Kiszka414fa982012-04-24 16:40:15 +020049-------------
Avi Kivity9c1b96e2009-06-09 12:37:58 +030050
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
Masanari Iidac9f3f2d2013-07-18 01:29:12 +090056The extension mechanism is not based on the Linux version number.
Avi Kivity9c1b96e2009-06-09 12:37:58 +030057Instead, 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
Jan Kiszka414fa982012-04-24 16:40:15 +020061
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300624. API description
Jan Kiszka414fa982012-04-24 16:40:15 +020063------------------
Avi Kivity9c1b96e2009-06-09 12:37:58 +030064
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
Jan Kiszka414fa982012-04-24 16:40:15 +020085
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300864.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
Jan Kiszka414fa982012-04-24 16:40:15 +0200101
Avi Kivity9c1b96e2009-06-09 12:37:58 +03001024.2 KVM_CREATE_VM
103
104Capability: basic
105Architectures: all
106Type: system ioctl
Carsten Ottee08b9632012-01-04 10:25:20 +0100107Parameters: machine type identifier (KVM_VM_*)
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300108Returns: 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.
Carsten Ottee08b9632012-01-04 10:25:20 +0100115You 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).
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300120
Jan Kiszka414fa982012-04-24 16:40:15 +0200121
Avi Kivity9c1b96e2009-06-09 12:37:58 +03001224.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
Avi Kivity2e2602c2010-07-07 14:09:39 +0300144Note: 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
Jan Kiszka414fa982012-04-24 16:40:15 +0200148
Avi Kivity9c1b96e2009-06-09 12:37:58 +03001494.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
Jan Kiszka414fa982012-04-24 16:40:15 +0200163
Avi Kivity9c1b96e2009-06-09 12:37:58 +03001644.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
Jan Kiszka414fa982012-04-24 16:40:15 +0200176
Avi Kivity9c1b96e2009-06-09 12:37:58 +03001774.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
Avi Kivityb74a07b2010-06-21 11:48:05 +0300185This ioctl is obsolete and has been removed.
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300186
Jan Kiszka414fa982012-04-24 16:40:15 +0200187
Paul Bolle68ba6972011-02-15 00:05:59 +01001884.7 KVM_CREATE_VCPU
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300189
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
Sasha Levin8c3ba332011-07-18 17:17:15 +0300197in 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
Pekka Enberg76d25402011-05-09 22:48:54 +0300204If the KVM_CAP_NR_VCPUS does not exist, you should assume that max_vcpus is 4
205cpus max.
Sasha Levin8c3ba332011-07-18 17:17:15 +0300206If 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.
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300208
Paul Mackerras371fefd2011-06-29 00:23:08 +0000209On 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
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
Carsten Otte5b1c1492012-01-04 10:25:23 +0100222For 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
Jan Kiszka414fa982012-04-24 16:40:15 +0200227
Paul Bolle68ba6972011-02-15 00:05:59 +01002284.8 KVM_GET_DIRTY_LOG (vm ioctl)
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300229
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
Jan Kiszka414fa982012-04-24 16:40:15 +0200251
Paul Bolle68ba6972011-02-15 00:05:59 +01002524.9 KVM_SET_MEMORY_ALIAS
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300253
254Capability: basic
255Architectures: x86
256Type: vm ioctl
257Parameters: struct kvm_memory_alias (in)
258Returns: 0 (success), -1 (error)
259
Avi Kivitya1f4d3952010-06-21 11:44:20 +0300260This ioctl is obsolete and has been removed.
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300261
Jan Kiszka414fa982012-04-24 16:40:15 +0200262
Paul Bolle68ba6972011-02-15 00:05:59 +01002634.10 KVM_RUN
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300264
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
Jan Kiszka414fa982012-04-24 16:40:15 +0200279
Paul Bolle68ba6972011-02-15 00:05:59 +01002804.11 KVM_GET_REGS
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300281
282Capability: basic
Marc Zyngier379e04c2013-04-02 17:46:31 +0100283Architectures: all except ARM, arm64
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300284Type: 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
Jan Kiszka414fa982012-04-24 16:40:15 +0200300
Paul Bolle68ba6972011-02-15 00:05:59 +01003014.12 KVM_SET_REGS
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300302
303Capability: basic
Marc Zyngier379e04c2013-04-02 17:46:31 +0100304Architectures: all except ARM, arm64
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300305Type: 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
Jan Kiszka414fa982012-04-24 16:40:15 +0200313
Paul Bolle68ba6972011-02-15 00:05:59 +01003144.13 KVM_GET_SREGS
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300315
316Capability: basic
Scott Wood5ce941e2011-04-27 17:24:21 -0500317Architectures: x86, ppc
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300318Type: 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
Mihai Caraman68e2ffe2012-12-11 03:38:23 +0000335/* ppc -- see arch/powerpc/include/uapi/asm/kvm.h */
Scott Wood5ce941e2011-04-27 17:24:21 -0500336
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300337interrupt_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
Jan Kiszka414fa982012-04-24 16:40:15 +0200341
Paul Bolle68ba6972011-02-15 00:05:59 +01003424.14 KVM_SET_SREGS
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300343
344Capability: basic
Scott Wood5ce941e2011-04-27 17:24:21 -0500345Architectures: x86, ppc
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300346Type: 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
Jan Kiszka414fa982012-04-24 16:40:15 +0200353
Paul Bolle68ba6972011-02-15 00:05:59 +01003544.15 KVM_TRANSLATE
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300355
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
Jan Kiszka414fa982012-04-24 16:40:15 +0200377
Paul Bolle68ba6972011-02-15 00:05:59 +01003784.16 KVM_INTERRUPT
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300379
380Capability: basic
Alexander Graf6f7a2bd2010-08-31 02:03:32 +0200381Architectures: x86, ppc
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300382Type: 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
Alexander Graf6f7a2bd2010-08-31 02:03:32 +0200387useful if in-kernel local APIC or equivalent is not used.
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300388
389/* for KVM_INTERRUPT */
390struct kvm_interrupt {
391 /* in */
392 __u32 irq;
393};
394
Alexander Graf6f7a2bd2010-08-31 02:03:32 +0200395X86:
396
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300397Note 'irq' is an interrupt vector, not an interrupt pin or line.
398
Alexander Graf6f7a2bd2010-08-31 02:03:32 +0200399PPC:
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
Jan Kiszka414fa982012-04-24 16:40:15 +0200426
Paul Bolle68ba6972011-02-15 00:05:59 +01004274.17 KVM_DEBUG_GUEST
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300428
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
Jan Kiszka414fa982012-04-24 16:40:15 +0200437
Paul Bolle68ba6972011-02-15 00:05:59 +01004384.18 KVM_GET_MSRS
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300439
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
Jan Kiszka414fa982012-04-24 16:40:15 +0200466
Paul Bolle68ba6972011-02-15 00:05:59 +01004674.19 KVM_SET_MSRS
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300468
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
Jan Kiszka414fa982012-04-24 16:40:15 +0200482
Paul Bolle68ba6972011-02-15 00:05:59 +01004834.20 KVM_SET_CPUID
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300484
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
Jan Kiszka414fa982012-04-24 16:40:15 +0200511
Paul Bolle68ba6972011-02-15 00:05:59 +01005124.21 KVM_SET_SIGNAL_MASK
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300513
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
Jan Kiszka414fa982012-04-24 16:40:15 +0200534
Paul Bolle68ba6972011-02-15 00:05:59 +01005354.22 KVM_GET_FPU
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300536
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
Jan Kiszka414fa982012-04-24 16:40:15 +0200560
Paul Bolle68ba6972011-02-15 00:05:59 +01005614.23 KVM_SET_FPU
Avi Kivity9c1b96e2009-06-09 12:37:58 +0300562
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
Jan Kiszka414fa982012-04-24 16:40:15 +0200586
Paul Bolle68ba6972011-02-15 00:05:59 +01005874.24 KVM_CREATE_IRQCHIP
Avi Kivity5dadbfd2009-08-23 17:08:04 +0300588
589Capability: KVM_CAP_IRQCHIP
Marc Zyngier379e04c2013-04-02 17:46:31 +0100590Architectures: x86, ia64, ARM, arm64
Avi Kivity5dadbfd2009-08-23 17:08:04 +0300591Type: 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
Marc Zyngier379e04c2013-04-02 17:46:31 +0100598only go to the IOAPIC. On ia64, a IOSAPIC is created. On ARM/arm64, a GIC is
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500599created.
Avi Kivity5dadbfd2009-08-23 17:08:04 +0300600
Jan Kiszka414fa982012-04-24 16:40:15 +0200601
Paul Bolle68ba6972011-02-15 00:05:59 +01006024.25 KVM_IRQ_LINE
Avi Kivity5dadbfd2009-08-23 17:08:04 +0300603
604Capability: KVM_CAP_IRQCHIP
Marc Zyngier379e04c2013-04-02 17:46:31 +0100605Architectures: x86, ia64, arm, arm64
Avi Kivity5dadbfd2009-08-23 17:08:04 +0300606Type: vm ioctl
607Parameters: struct kvm_irq_level
608Returns: 0 on success, -1 on error
609
610Sets the level of a GSI input to the interrupt controller model in the kernel.
Christoffer Dall86ce8532013-01-20 18:28:08 -0500611On some architectures it is required that an interrupt controller model has
612been previously created with KVM_CREATE_IRQCHIP. Note that edge-triggered
613interrupts require the level to be set to 1 and then back to 0.
614
Marc Zyngier379e04c2013-04-02 17:46:31 +0100615ARM/arm64 can signal an interrupt either at the CPU level, or at the
616in-kernel irqchip (GIC), and for in-kernel irqchip can tell the GIC to
617use PPIs designated for specific cpus. The irq field is interpreted
618like this:
Christoffer Dall86ce8532013-01-20 18:28:08 -0500619
620  bits: | 31 ... 24 | 23 ... 16 | 15 ... 0 |
621 field: | irq_type | vcpu_index | irq_id |
622
623The irq_type field has the following values:
624- irq_type[0]: out-of-kernel GIC: irq_id 0 is IRQ, irq_id 1 is FIQ
625- irq_type[1]: in-kernel GIC: SPI, irq_id between 32 and 1019 (incl.)
626 (the vcpu_index field is ignored)
627- irq_type[2]: in-kernel GIC: PPI, irq_id between 16 and 31 (incl.)
628
629(The irq_id field thus corresponds nicely to the IRQ ID in the ARM GIC specs)
630
631In both cases, level is used to raise/lower the line.
Avi Kivity5dadbfd2009-08-23 17:08:04 +0300632
633struct kvm_irq_level {
634 union {
635 __u32 irq; /* GSI */
636 __s32 status; /* not used for KVM_IRQ_LEVEL */
637 };
638 __u32 level; /* 0 or 1 */
639};
640
Jan Kiszka414fa982012-04-24 16:40:15 +0200641
Paul Bolle68ba6972011-02-15 00:05:59 +01006424.26 KVM_GET_IRQCHIP
Avi Kivity5dadbfd2009-08-23 17:08:04 +0300643
644Capability: KVM_CAP_IRQCHIP
645Architectures: x86, ia64
646Type: vm ioctl
647Parameters: struct kvm_irqchip (in/out)
648Returns: 0 on success, -1 on error
649
650Reads the state of a kernel interrupt controller created with
651KVM_CREATE_IRQCHIP into a buffer provided by the caller.
652
653struct kvm_irqchip {
654 __u32 chip_id; /* 0 = PIC1, 1 = PIC2, 2 = IOAPIC */
655 __u32 pad;
656 union {
657 char dummy[512]; /* reserving space */
658 struct kvm_pic_state pic;
659 struct kvm_ioapic_state ioapic;
660 } chip;
661};
662
Jan Kiszka414fa982012-04-24 16:40:15 +0200663
Paul Bolle68ba6972011-02-15 00:05:59 +01006644.27 KVM_SET_IRQCHIP
Avi Kivity5dadbfd2009-08-23 17:08:04 +0300665
666Capability: KVM_CAP_IRQCHIP
667Architectures: x86, ia64
668Type: vm ioctl
669Parameters: struct kvm_irqchip (in)
670Returns: 0 on success, -1 on error
671
672Sets the state of a kernel interrupt controller created with
673KVM_CREATE_IRQCHIP from a buffer provided by the caller.
674
675struct kvm_irqchip {
676 __u32 chip_id; /* 0 = PIC1, 1 = PIC2, 2 = IOAPIC */
677 __u32 pad;
678 union {
679 char dummy[512]; /* reserving space */
680 struct kvm_pic_state pic;
681 struct kvm_ioapic_state ioapic;
682 } chip;
683};
684
Jan Kiszka414fa982012-04-24 16:40:15 +0200685
Paul Bolle68ba6972011-02-15 00:05:59 +01006864.28 KVM_XEN_HVM_CONFIG
Ed Swierkffde22a2009-10-15 15:21:43 -0700687
688Capability: KVM_CAP_XEN_HVM
689Architectures: x86
690Type: vm ioctl
691Parameters: struct kvm_xen_hvm_config (in)
692Returns: 0 on success, -1 on error
693
694Sets the MSR that the Xen HVM guest uses to initialize its hypercall
695page, and provides the starting address and size of the hypercall
696blobs in userspace. When the guest writes the MSR, kvm copies one
697page of a blob (32- or 64-bit, depending on the vcpu mode) to guest
698memory.
699
700struct kvm_xen_hvm_config {
701 __u32 flags;
702 __u32 msr;
703 __u64 blob_addr_32;
704 __u64 blob_addr_64;
705 __u8 blob_size_32;
706 __u8 blob_size_64;
707 __u8 pad2[30];
708};
709
Jan Kiszka414fa982012-04-24 16:40:15 +0200710
Paul Bolle68ba6972011-02-15 00:05:59 +01007114.29 KVM_GET_CLOCK
Glauber Costaafbcf7a2009-10-16 15:28:36 -0400712
713Capability: KVM_CAP_ADJUST_CLOCK
714Architectures: x86
715Type: vm ioctl
716Parameters: struct kvm_clock_data (out)
717Returns: 0 on success, -1 on error
718
719Gets the current timestamp of kvmclock as seen by the current guest. In
720conjunction with KVM_SET_CLOCK, it is used to ensure monotonicity on scenarios
721such as migration.
722
723struct kvm_clock_data {
724 __u64 clock; /* kvmclock current value */
725 __u32 flags;
726 __u32 pad[9];
727};
728
Jan Kiszka414fa982012-04-24 16:40:15 +0200729
Paul Bolle68ba6972011-02-15 00:05:59 +01007304.30 KVM_SET_CLOCK
Glauber Costaafbcf7a2009-10-16 15:28:36 -0400731
732Capability: KVM_CAP_ADJUST_CLOCK
733Architectures: x86
734Type: vm ioctl
735Parameters: struct kvm_clock_data (in)
736Returns: 0 on success, -1 on error
737
Wu Fengguang2044892d2009-12-24 09:04:16 +0800738Sets the current timestamp of kvmclock to the value specified in its parameter.
Glauber Costaafbcf7a2009-10-16 15:28:36 -0400739In conjunction with KVM_GET_CLOCK, it is used to ensure monotonicity on scenarios
740such as migration.
741
742struct kvm_clock_data {
743 __u64 clock; /* kvmclock current value */
744 __u32 flags;
745 __u32 pad[9];
746};
747
Jan Kiszka414fa982012-04-24 16:40:15 +0200748
Paul Bolle68ba6972011-02-15 00:05:59 +01007494.31 KVM_GET_VCPU_EVENTS
Jan Kiszka3cfc3092009-11-12 01:04:25 +0100750
751Capability: KVM_CAP_VCPU_EVENTS
Jan Kiszka48005f62010-02-19 19:38:07 +0100752Extended by: KVM_CAP_INTR_SHADOW
Jan Kiszka3cfc3092009-11-12 01:04:25 +0100753Architectures: x86
754Type: vm ioctl
755Parameters: struct kvm_vcpu_event (out)
756Returns: 0 on success, -1 on error
757
758Gets currently pending exceptions, interrupts, and NMIs as well as related
759states of the vcpu.
760
761struct kvm_vcpu_events {
762 struct {
763 __u8 injected;
764 __u8 nr;
765 __u8 has_error_code;
766 __u8 pad;
767 __u32 error_code;
768 } exception;
769 struct {
770 __u8 injected;
771 __u8 nr;
772 __u8 soft;
Jan Kiszka48005f62010-02-19 19:38:07 +0100773 __u8 shadow;
Jan Kiszka3cfc3092009-11-12 01:04:25 +0100774 } interrupt;
775 struct {
776 __u8 injected;
777 __u8 pending;
778 __u8 masked;
779 __u8 pad;
780 } nmi;
781 __u32 sipi_vector;
Jan Kiszkadab4b912009-12-06 18:24:15 +0100782 __u32 flags;
Jan Kiszka3cfc3092009-11-12 01:04:25 +0100783};
784
Jan Kiszka48005f62010-02-19 19:38:07 +0100785KVM_VCPUEVENT_VALID_SHADOW may be set in the flags field to signal that
786interrupt.shadow contains a valid state. Otherwise, this field is undefined.
787
Jan Kiszka414fa982012-04-24 16:40:15 +0200788
Paul Bolle68ba6972011-02-15 00:05:59 +01007894.32 KVM_SET_VCPU_EVENTS
Jan Kiszka3cfc3092009-11-12 01:04:25 +0100790
791Capability: KVM_CAP_VCPU_EVENTS
Jan Kiszka48005f62010-02-19 19:38:07 +0100792Extended by: KVM_CAP_INTR_SHADOW
Jan Kiszka3cfc3092009-11-12 01:04:25 +0100793Architectures: x86
794Type: vm ioctl
795Parameters: struct kvm_vcpu_event (in)
796Returns: 0 on success, -1 on error
797
798Set pending exceptions, interrupts, and NMIs as well as related states of the
799vcpu.
800
801See KVM_GET_VCPU_EVENTS for the data structure.
802
Jan Kiszkadab4b912009-12-06 18:24:15 +0100803Fields that may be modified asynchronously by running VCPUs can be excluded
804from the update. These fields are nmi.pending and sipi_vector. Keep the
805corresponding bits in the flags field cleared to suppress overwriting the
806current in-kernel state. The bits are:
807
808KVM_VCPUEVENT_VALID_NMI_PENDING - transfer nmi.pending to the kernel
809KVM_VCPUEVENT_VALID_SIPI_VECTOR - transfer sipi_vector
810
Jan Kiszka48005f62010-02-19 19:38:07 +0100811If KVM_CAP_INTR_SHADOW is available, KVM_VCPUEVENT_VALID_SHADOW can be set in
812the flags field to signal that interrupt.shadow contains a valid state and
813shall be written into the VCPU.
814
Jan Kiszka414fa982012-04-24 16:40:15 +0200815
Paul Bolle68ba6972011-02-15 00:05:59 +01008164.33 KVM_GET_DEBUGREGS
Jan Kiszkaa1efbe72010-02-15 10:45:43 +0100817
818Capability: KVM_CAP_DEBUGREGS
819Architectures: x86
820Type: vm ioctl
821Parameters: struct kvm_debugregs (out)
822Returns: 0 on success, -1 on error
823
824Reads debug registers from the vcpu.
825
826struct kvm_debugregs {
827 __u64 db[4];
828 __u64 dr6;
829 __u64 dr7;
830 __u64 flags;
831 __u64 reserved[9];
832};
833
Jan Kiszka414fa982012-04-24 16:40:15 +0200834
Paul Bolle68ba6972011-02-15 00:05:59 +01008354.34 KVM_SET_DEBUGREGS
Jan Kiszkaa1efbe72010-02-15 10:45:43 +0100836
837Capability: KVM_CAP_DEBUGREGS
838Architectures: x86
839Type: vm ioctl
840Parameters: struct kvm_debugregs (in)
841Returns: 0 on success, -1 on error
842
843Writes debug registers into the vcpu.
844
845See KVM_GET_DEBUGREGS for the data structure. The flags field is unused
846yet and must be cleared on entry.
847
Jan Kiszka414fa982012-04-24 16:40:15 +0200848
Paul Bolle68ba6972011-02-15 00:05:59 +01008494.35 KVM_SET_USER_MEMORY_REGION
Avi Kivity0f2d8f42010-03-25 12:16:48 +0200850
851Capability: KVM_CAP_USER_MEM
852Architectures: all
853Type: vm ioctl
854Parameters: struct kvm_userspace_memory_region (in)
855Returns: 0 on success, -1 on error
856
857struct kvm_userspace_memory_region {
858 __u32 slot;
859 __u32 flags;
860 __u64 guest_phys_addr;
861 __u64 memory_size; /* bytes */
862 __u64 userspace_addr; /* start of the userspace allocated memory */
863};
864
865/* for kvm_memory_region::flags */
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +0800866#define KVM_MEM_LOG_DIRTY_PAGES (1UL << 0)
867#define KVM_MEM_READONLY (1UL << 1)
Avi Kivity0f2d8f42010-03-25 12:16:48 +0200868
869This ioctl allows the user to create or modify a guest physical memory
870slot. When changing an existing slot, it may be moved in the guest
871physical memory space, or its flags may be modified. It may not be
872resized. Slots may not overlap in guest physical address space.
873
874Memory for the region is taken starting at the address denoted by the
875field userspace_addr, which must point at user addressable memory for
876the entire memory slot size. Any object may back this memory, including
877anonymous memory, ordinary files, and hugetlbfs.
878
879It is recommended that the lower 21 bits of guest_phys_addr and userspace_addr
880be identical. This allows large pages in the guest to be backed by large
881pages in the host.
882
Takuya Yoshikawa75d61fb2013-01-30 19:40:41 +0900883The flags field supports two flags: KVM_MEM_LOG_DIRTY_PAGES and
884KVM_MEM_READONLY. The former can be set to instruct KVM to keep track of
885writes to memory within the slot. See KVM_GET_DIRTY_LOG ioctl to know how to
886use it. The latter can be set, if KVM_CAP_READONLY_MEM capability allows it,
887to make a new slot read-only. In this case, writes to this memory will be
888posted to userspace as KVM_EXIT_MMIO exits.
Avi Kivity0f2d8f42010-03-25 12:16:48 +0200889
Jan Kiszka7efd8fa2012-09-07 13:17:47 +0200890When the KVM_CAP_SYNC_MMU capability is available, changes in the backing of
891the memory region are automatically reflected into the guest. For example, an
892mmap() that affects the region will be made visible immediately. Another
893example is madvise(MADV_DROP).
Avi Kivity0f2d8f42010-03-25 12:16:48 +0200894
895It is recommended to use this API instead of the KVM_SET_MEMORY_REGION ioctl.
896The KVM_SET_MEMORY_REGION does not allow fine grained control over memory
897allocation and is deprecated.
Jan Kiszka3cfc3092009-11-12 01:04:25 +0100898
Jan Kiszka414fa982012-04-24 16:40:15 +0200899
Paul Bolle68ba6972011-02-15 00:05:59 +01009004.36 KVM_SET_TSS_ADDR
Avi Kivity8a5416d2010-03-25 12:27:30 +0200901
902Capability: KVM_CAP_SET_TSS_ADDR
903Architectures: x86
904Type: vm ioctl
905Parameters: unsigned long tss_address (in)
906Returns: 0 on success, -1 on error
907
908This ioctl defines the physical address of a three-page region in the guest
909physical address space. The region must be within the first 4GB of the
910guest physical address space and must not conflict with any memory slot
911or any mmio address. The guest may malfunction if it accesses this memory
912region.
913
914This ioctl is required on Intel-based hosts. This is needed on Intel hardware
915because of a quirk in the virtualization implementation (see the internals
916documentation when it pops into existence).
917
Jan Kiszka414fa982012-04-24 16:40:15 +0200918
Paul Bolle68ba6972011-02-15 00:05:59 +01009194.37 KVM_ENABLE_CAP
Alexander Graf71fbfd52010-03-24 21:48:29 +0100920
921Capability: KVM_CAP_ENABLE_CAP
Cornelia Huckd6712df2012-12-20 15:32:11 +0100922Architectures: ppc, s390
Alexander Graf71fbfd52010-03-24 21:48:29 +0100923Type: vcpu ioctl
924Parameters: struct kvm_enable_cap (in)
925Returns: 0 on success; -1 on error
926
927+Not all extensions are enabled by default. Using this ioctl the application
928can enable an extension, making it available to the guest.
929
930On systems that do not support this ioctl, it always fails. On systems that
931do support it, it only works for extensions that are supported for enablement.
932
933To check if a capability can be enabled, the KVM_CHECK_EXTENSION ioctl should
934be used.
935
936struct kvm_enable_cap {
937 /* in */
938 __u32 cap;
939
940The capability that is supposed to get enabled.
941
942 __u32 flags;
943
944A bitfield indicating future enhancements. Has to be 0 for now.
945
946 __u64 args[4];
947
948Arguments for enabling a feature. If a feature needs initial values to
949function properly, this is the place to put them.
950
951 __u8 pad[64];
952};
953
Jan Kiszka414fa982012-04-24 16:40:15 +0200954
Paul Bolle68ba6972011-02-15 00:05:59 +01009554.38 KVM_GET_MP_STATE
Avi Kivityb843f062010-04-25 15:51:46 +0300956
957Capability: KVM_CAP_MP_STATE
958Architectures: x86, ia64
959Type: vcpu ioctl
960Parameters: struct kvm_mp_state (out)
961Returns: 0 on success; -1 on error
962
963struct kvm_mp_state {
964 __u32 mp_state;
965};
966
967Returns the vcpu's current "multiprocessing state" (though also valid on
968uniprocessor guests).
969
970Possible values are:
971
972 - KVM_MP_STATE_RUNNABLE: the vcpu is currently running
973 - KVM_MP_STATE_UNINITIALIZED: the vcpu is an application processor (AP)
974 which has not yet received an INIT signal
975 - KVM_MP_STATE_INIT_RECEIVED: the vcpu has received an INIT signal, and is
976 now ready for a SIPI
977 - KVM_MP_STATE_HALTED: the vcpu has executed a HLT instruction and
978 is waiting for an interrupt
979 - KVM_MP_STATE_SIPI_RECEIVED: the vcpu has just received a SIPI (vector
Uwe Kleine-Königb5950762010-11-01 15:38:34 -0400980 accessible via KVM_GET_VCPU_EVENTS)
Avi Kivityb843f062010-04-25 15:51:46 +0300981
982This ioctl is only useful after KVM_CREATE_IRQCHIP. Without an in-kernel
983irqchip, the multiprocessing state must be maintained by userspace.
984
Jan Kiszka414fa982012-04-24 16:40:15 +0200985
Paul Bolle68ba6972011-02-15 00:05:59 +01009864.39 KVM_SET_MP_STATE
Avi Kivityb843f062010-04-25 15:51:46 +0300987
988Capability: KVM_CAP_MP_STATE
989Architectures: x86, ia64
990Type: vcpu ioctl
991Parameters: struct kvm_mp_state (in)
992Returns: 0 on success; -1 on error
993
994Sets the vcpu's current "multiprocessing state"; see KVM_GET_MP_STATE for
995arguments.
996
997This ioctl is only useful after KVM_CREATE_IRQCHIP. Without an in-kernel
998irqchip, the multiprocessing state must be maintained by userspace.
999
Jan Kiszka414fa982012-04-24 16:40:15 +02001000
Paul Bolle68ba6972011-02-15 00:05:59 +010010014.40 KVM_SET_IDENTITY_MAP_ADDR
Avi Kivity47dbb842010-04-29 12:08:56 +03001002
1003Capability: KVM_CAP_SET_IDENTITY_MAP_ADDR
1004Architectures: x86
1005Type: vm ioctl
1006Parameters: unsigned long identity (in)
1007Returns: 0 on success, -1 on error
1008
1009This ioctl defines the physical address of a one-page region in the guest
1010physical address space. The region must be within the first 4GB of the
1011guest physical address space and must not conflict with any memory slot
1012or any mmio address. The guest may malfunction if it accesses this memory
1013region.
1014
1015This ioctl is required on Intel-based hosts. This is needed on Intel hardware
1016because of a quirk in the virtualization implementation (see the internals
1017documentation when it pops into existence).
1018
Jan Kiszka414fa982012-04-24 16:40:15 +02001019
Paul Bolle68ba6972011-02-15 00:05:59 +010010204.41 KVM_SET_BOOT_CPU_ID
Avi Kivity57bc24c2010-04-29 12:12:57 +03001021
1022Capability: KVM_CAP_SET_BOOT_CPU_ID
1023Architectures: x86, ia64
1024Type: vm ioctl
1025Parameters: unsigned long vcpu_id
1026Returns: 0 on success, -1 on error
1027
1028Define which vcpu is the Bootstrap Processor (BSP). Values are the same
1029as the vcpu id in KVM_CREATE_VCPU. If this ioctl is not called, the default
1030is vcpu 0.
1031
Jan Kiszka414fa982012-04-24 16:40:15 +02001032
Paul Bolle68ba6972011-02-15 00:05:59 +010010334.42 KVM_GET_XSAVE
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001034
1035Capability: KVM_CAP_XSAVE
1036Architectures: x86
1037Type: vcpu ioctl
1038Parameters: struct kvm_xsave (out)
1039Returns: 0 on success, -1 on error
1040
1041struct kvm_xsave {
1042 __u32 region[1024];
1043};
1044
1045This ioctl would copy current vcpu's xsave struct to the userspace.
1046
Jan Kiszka414fa982012-04-24 16:40:15 +02001047
Paul Bolle68ba6972011-02-15 00:05:59 +010010484.43 KVM_SET_XSAVE
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001049
1050Capability: KVM_CAP_XSAVE
1051Architectures: x86
1052Type: vcpu ioctl
1053Parameters: struct kvm_xsave (in)
1054Returns: 0 on success, -1 on error
1055
1056struct kvm_xsave {
1057 __u32 region[1024];
1058};
1059
1060This ioctl would copy userspace's xsave struct to the kernel.
1061
Jan Kiszka414fa982012-04-24 16:40:15 +02001062
Paul Bolle68ba6972011-02-15 00:05:59 +010010634.44 KVM_GET_XCRS
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001064
1065Capability: KVM_CAP_XCRS
1066Architectures: x86
1067Type: vcpu ioctl
1068Parameters: struct kvm_xcrs (out)
1069Returns: 0 on success, -1 on error
1070
1071struct kvm_xcr {
1072 __u32 xcr;
1073 __u32 reserved;
1074 __u64 value;
1075};
1076
1077struct kvm_xcrs {
1078 __u32 nr_xcrs;
1079 __u32 flags;
1080 struct kvm_xcr xcrs[KVM_MAX_XCRS];
1081 __u64 padding[16];
1082};
1083
1084This ioctl would copy current vcpu's xcrs to the userspace.
1085
Jan Kiszka414fa982012-04-24 16:40:15 +02001086
Paul Bolle68ba6972011-02-15 00:05:59 +010010874.45 KVM_SET_XCRS
Sheng Yang2d5b5a62010-06-13 17:29:39 +08001088
1089Capability: KVM_CAP_XCRS
1090Architectures: x86
1091Type: vcpu ioctl
1092Parameters: struct kvm_xcrs (in)
1093Returns: 0 on success, -1 on error
1094
1095struct kvm_xcr {
1096 __u32 xcr;
1097 __u32 reserved;
1098 __u64 value;
1099};
1100
1101struct kvm_xcrs {
1102 __u32 nr_xcrs;
1103 __u32 flags;
1104 struct kvm_xcr xcrs[KVM_MAX_XCRS];
1105 __u64 padding[16];
1106};
1107
1108This ioctl would set vcpu's xcr to the value userspace specified.
1109
Jan Kiszka414fa982012-04-24 16:40:15 +02001110
Paul Bolle68ba6972011-02-15 00:05:59 +010011114.46 KVM_GET_SUPPORTED_CPUID
Avi Kivityd1535132010-07-14 09:45:21 +03001112
1113Capability: KVM_CAP_EXT_CPUID
1114Architectures: x86
1115Type: system ioctl
1116Parameters: struct kvm_cpuid2 (in/out)
1117Returns: 0 on success, -1 on error
1118
1119struct kvm_cpuid2 {
1120 __u32 nent;
1121 __u32 padding;
1122 struct kvm_cpuid_entry2 entries[0];
1123};
1124
1125#define KVM_CPUID_FLAG_SIGNIFCANT_INDEX 1
1126#define KVM_CPUID_FLAG_STATEFUL_FUNC 2
1127#define KVM_CPUID_FLAG_STATE_READ_NEXT 4
1128
1129struct kvm_cpuid_entry2 {
1130 __u32 function;
1131 __u32 index;
1132 __u32 flags;
1133 __u32 eax;
1134 __u32 ebx;
1135 __u32 ecx;
1136 __u32 edx;
1137 __u32 padding[3];
1138};
1139
1140This ioctl returns x86 cpuid features which are supported by both the hardware
1141and kvm. Userspace can use the information returned by this ioctl to
1142construct cpuid information (for KVM_SET_CPUID2) that is consistent with
1143hardware, kernel, and userspace capabilities, and with user requirements (for
1144example, the user may wish to constrain cpuid to emulate older hardware,
1145or for feature consistency across a cluster).
1146
1147Userspace invokes KVM_GET_SUPPORTED_CPUID by passing a kvm_cpuid2 structure
1148with the 'nent' field indicating the number of entries in the variable-size
1149array 'entries'. If the number of entries is too low to describe the cpu
1150capabilities, an error (E2BIG) is returned. If the number is too high,
1151the 'nent' field is adjusted and an error (ENOMEM) is returned. If the
1152number is just right, the 'nent' field is adjusted to the number of valid
1153entries in the 'entries' array, which is then filled.
1154
1155The entries returned are the host cpuid as returned by the cpuid instruction,
Avi Kivityc39cbd22010-09-12 16:39:11 +02001156with unknown or unsupported features masked out. Some features (for example,
1157x2apic), may not be present in the host cpu, but are exposed by kvm if it can
1158emulate them efficiently. The fields in each entry are defined as follows:
Avi Kivityd1535132010-07-14 09:45:21 +03001159
1160 function: the eax value used to obtain the entry
1161 index: the ecx value used to obtain the entry (for entries that are
1162 affected by ecx)
1163 flags: an OR of zero or more of the following:
1164 KVM_CPUID_FLAG_SIGNIFCANT_INDEX:
1165 if the index field is valid
1166 KVM_CPUID_FLAG_STATEFUL_FUNC:
1167 if cpuid for this function returns different values for successive
1168 invocations; there will be several entries with the same function,
1169 all with this flag set
1170 KVM_CPUID_FLAG_STATE_READ_NEXT:
1171 for KVM_CPUID_FLAG_STATEFUL_FUNC entries, set if this entry is
1172 the first entry to be read by a cpu
1173 eax, ebx, ecx, edx: the values returned by the cpuid instruction for
1174 this function/index combination
1175
Jan Kiszka4d25a0662011-12-21 12:28:29 +01001176The TSC deadline timer feature (CPUID leaf 1, ecx[24]) is always returned
1177as false, since the feature depends on KVM_CREATE_IRQCHIP for local APIC
1178support. Instead it is reported via
1179
1180 ioctl(KVM_CHECK_EXTENSION, KVM_CAP_TSC_DEADLINE_TIMER)
1181
1182if that returns true and you use KVM_CREATE_IRQCHIP, or if you emulate the
1183feature in userspace, then you can enable the feature for KVM_SET_CPUID2.
1184
Jan Kiszka414fa982012-04-24 16:40:15 +02001185
Paul Bolle68ba6972011-02-15 00:05:59 +010011864.47 KVM_PPC_GET_PVINFO
Alexander Graf15711e92010-07-29 14:48:08 +02001187
1188Capability: KVM_CAP_PPC_GET_PVINFO
1189Architectures: ppc
1190Type: vm ioctl
1191Parameters: struct kvm_ppc_pvinfo (out)
1192Returns: 0 on success, !0 on error
1193
1194struct kvm_ppc_pvinfo {
1195 __u32 flags;
1196 __u32 hcall[4];
1197 __u8 pad[108];
1198};
1199
1200This ioctl fetches PV specific information that need to be passed to the guest
1201using the device tree or other means from vm context.
1202
Liu Yu-B132019202e072012-07-03 05:48:52 +00001203The hcall array defines 4 instructions that make up a hypercall.
Alexander Graf15711e92010-07-29 14:48:08 +02001204
1205If any additional field gets added to this structure later on, a bit for that
1206additional piece of information will be set in the flags bitmap.
1207
Liu Yu-B132019202e072012-07-03 05:48:52 +00001208The flags bitmap is defined as:
1209
1210 /* the host supports the ePAPR idle hcall
1211 #define KVM_PPC_PVINFO_FLAGS_EV_IDLE (1<<0)
Jan Kiszka414fa982012-04-24 16:40:15 +02001212
Paul Bolle68ba6972011-02-15 00:05:59 +010012134.48 KVM_ASSIGN_PCI_DEVICE
Jan Kiszka49f48172010-11-16 22:30:07 +01001214
1215Capability: KVM_CAP_DEVICE_ASSIGNMENT
1216Architectures: x86 ia64
1217Type: vm ioctl
1218Parameters: struct kvm_assigned_pci_dev (in)
1219Returns: 0 on success, -1 on error
1220
1221Assigns a host PCI device to the VM.
1222
1223struct kvm_assigned_pci_dev {
1224 __u32 assigned_dev_id;
1225 __u32 busnr;
1226 __u32 devfn;
1227 __u32 flags;
1228 __u32 segnr;
1229 union {
1230 __u32 reserved[11];
1231 };
1232};
1233
1234The PCI device is specified by the triple segnr, busnr, and devfn.
1235Identification in succeeding service requests is done via assigned_dev_id. The
1236following flags are specified:
1237
1238/* Depends on KVM_CAP_IOMMU */
1239#define KVM_DEV_ASSIGN_ENABLE_IOMMU (1 << 0)
Jan Kiszka07700a92012-02-28 14:19:54 +01001240/* The following two depend on KVM_CAP_PCI_2_3 */
1241#define KVM_DEV_ASSIGN_PCI_2_3 (1 << 1)
1242#define KVM_DEV_ASSIGN_MASK_INTX (1 << 2)
1243
1244If KVM_DEV_ASSIGN_PCI_2_3 is set, the kernel will manage legacy INTx interrupts
1245via the PCI-2.3-compliant device-level mask, thus enable IRQ sharing with other
1246assigned devices or host devices. KVM_DEV_ASSIGN_MASK_INTX specifies the
1247guest's view on the INTx mask, see KVM_ASSIGN_SET_INTX_MASK for details.
Jan Kiszka49f48172010-11-16 22:30:07 +01001248
Alex Williamson42387372011-12-20 21:59:03 -07001249The KVM_DEV_ASSIGN_ENABLE_IOMMU flag is a mandatory option to ensure
1250isolation of the device. Usages not specifying this flag are deprecated.
1251
Alex Williamson3d27e232011-12-20 21:59:09 -07001252Only PCI header type 0 devices with PCI BAR resources are supported by
1253device assignment. The user requesting this ioctl must have read/write
1254access to the PCI sysfs resource files associated with the device.
1255
Jan Kiszka414fa982012-04-24 16:40:15 +02001256
Paul Bolle68ba6972011-02-15 00:05:59 +010012574.49 KVM_DEASSIGN_PCI_DEVICE
Jan Kiszka49f48172010-11-16 22:30:07 +01001258
1259Capability: KVM_CAP_DEVICE_DEASSIGNMENT
1260Architectures: x86 ia64
1261Type: vm ioctl
1262Parameters: struct kvm_assigned_pci_dev (in)
1263Returns: 0 on success, -1 on error
1264
1265Ends PCI device assignment, releasing all associated resources.
1266
1267See KVM_CAP_DEVICE_ASSIGNMENT for the data structure. Only assigned_dev_id is
1268used in kvm_assigned_pci_dev to identify the device.
1269
Jan Kiszka414fa982012-04-24 16:40:15 +02001270
Paul Bolle68ba6972011-02-15 00:05:59 +010012714.50 KVM_ASSIGN_DEV_IRQ
Jan Kiszka49f48172010-11-16 22:30:07 +01001272
1273Capability: KVM_CAP_ASSIGN_DEV_IRQ
1274Architectures: x86 ia64
1275Type: vm ioctl
1276Parameters: struct kvm_assigned_irq (in)
1277Returns: 0 on success, -1 on error
1278
1279Assigns an IRQ to a passed-through device.
1280
1281struct kvm_assigned_irq {
1282 __u32 assigned_dev_id;
Jan Kiszka91e3d712011-06-03 08:51:05 +02001283 __u32 host_irq; /* ignored (legacy field) */
Jan Kiszka49f48172010-11-16 22:30:07 +01001284 __u32 guest_irq;
1285 __u32 flags;
1286 union {
Jan Kiszka49f48172010-11-16 22:30:07 +01001287 __u32 reserved[12];
1288 };
1289};
1290
1291The following flags are defined:
1292
1293#define KVM_DEV_IRQ_HOST_INTX (1 << 0)
1294#define KVM_DEV_IRQ_HOST_MSI (1 << 1)
1295#define KVM_DEV_IRQ_HOST_MSIX (1 << 2)
1296
1297#define KVM_DEV_IRQ_GUEST_INTX (1 << 8)
1298#define KVM_DEV_IRQ_GUEST_MSI (1 << 9)
1299#define KVM_DEV_IRQ_GUEST_MSIX (1 << 10)
1300
1301It is not valid to specify multiple types per host or guest IRQ. However, the
1302IRQ type of host and guest can differ or can even be null.
1303
Jan Kiszka414fa982012-04-24 16:40:15 +02001304
Paul Bolle68ba6972011-02-15 00:05:59 +010013054.51 KVM_DEASSIGN_DEV_IRQ
Jan Kiszka49f48172010-11-16 22:30:07 +01001306
1307Capability: KVM_CAP_ASSIGN_DEV_IRQ
1308Architectures: x86 ia64
1309Type: vm ioctl
1310Parameters: struct kvm_assigned_irq (in)
1311Returns: 0 on success, -1 on error
1312
1313Ends an IRQ assignment to a passed-through device.
1314
1315See KVM_ASSIGN_DEV_IRQ for the data structure. The target device is specified
1316by assigned_dev_id, flags must correspond to the IRQ type specified on
1317KVM_ASSIGN_DEV_IRQ. Partial deassignment of host or guest IRQ is allowed.
1318
Jan Kiszka414fa982012-04-24 16:40:15 +02001319
Paul Bolle68ba6972011-02-15 00:05:59 +010013204.52 KVM_SET_GSI_ROUTING
Jan Kiszka49f48172010-11-16 22:30:07 +01001321
1322Capability: KVM_CAP_IRQ_ROUTING
1323Architectures: x86 ia64
1324Type: vm ioctl
1325Parameters: struct kvm_irq_routing (in)
1326Returns: 0 on success, -1 on error
1327
1328Sets the GSI routing table entries, overwriting any previously set entries.
1329
1330struct kvm_irq_routing {
1331 __u32 nr;
1332 __u32 flags;
1333 struct kvm_irq_routing_entry entries[0];
1334};
1335
1336No flags are specified so far, the corresponding field must be set to zero.
1337
1338struct kvm_irq_routing_entry {
1339 __u32 gsi;
1340 __u32 type;
1341 __u32 flags;
1342 __u32 pad;
1343 union {
1344 struct kvm_irq_routing_irqchip irqchip;
1345 struct kvm_irq_routing_msi msi;
1346 __u32 pad[8];
1347 } u;
1348};
1349
1350/* gsi routing entry types */
1351#define KVM_IRQ_ROUTING_IRQCHIP 1
1352#define KVM_IRQ_ROUTING_MSI 2
1353
1354No flags are specified so far, the corresponding field must be set to zero.
1355
1356struct kvm_irq_routing_irqchip {
1357 __u32 irqchip;
1358 __u32 pin;
1359};
1360
1361struct kvm_irq_routing_msi {
1362 __u32 address_lo;
1363 __u32 address_hi;
1364 __u32 data;
1365 __u32 pad;
1366};
1367
Jan Kiszka414fa982012-04-24 16:40:15 +02001368
Paul Bolle68ba6972011-02-15 00:05:59 +010013694.53 KVM_ASSIGN_SET_MSIX_NR
Jan Kiszka49f48172010-11-16 22:30:07 +01001370
1371Capability: KVM_CAP_DEVICE_MSIX
1372Architectures: x86 ia64
1373Type: vm ioctl
1374Parameters: struct kvm_assigned_msix_nr (in)
1375Returns: 0 on success, -1 on error
1376
Jan Kiszka58f09642011-06-11 12:24:24 +02001377Set the number of MSI-X interrupts for an assigned device. The number is
1378reset again by terminating the MSI-X assignment of the device via
1379KVM_DEASSIGN_DEV_IRQ. Calling this service more than once at any earlier
1380point will fail.
Jan Kiszka49f48172010-11-16 22:30:07 +01001381
1382struct kvm_assigned_msix_nr {
1383 __u32 assigned_dev_id;
1384 __u16 entry_nr;
1385 __u16 padding;
1386};
1387
1388#define KVM_MAX_MSIX_PER_DEV 256
1389
Jan Kiszka414fa982012-04-24 16:40:15 +02001390
Paul Bolle68ba6972011-02-15 00:05:59 +010013914.54 KVM_ASSIGN_SET_MSIX_ENTRY
Jan Kiszka49f48172010-11-16 22:30:07 +01001392
1393Capability: KVM_CAP_DEVICE_MSIX
1394Architectures: x86 ia64
1395Type: vm ioctl
1396Parameters: struct kvm_assigned_msix_entry (in)
1397Returns: 0 on success, -1 on error
1398
1399Specifies the routing of an MSI-X assigned device interrupt to a GSI. Setting
1400the GSI vector to zero means disabling the interrupt.
1401
1402struct kvm_assigned_msix_entry {
1403 __u32 assigned_dev_id;
1404 __u32 gsi;
1405 __u16 entry; /* The index of entry in the MSI-X table */
1406 __u16 padding[3];
1407};
1408
Jan Kiszka414fa982012-04-24 16:40:15 +02001409
14104.55 KVM_SET_TSC_KHZ
Joerg Roedel92a1f122011-03-25 09:44:51 +01001411
1412Capability: KVM_CAP_TSC_CONTROL
1413Architectures: x86
1414Type: vcpu ioctl
1415Parameters: virtual tsc_khz
1416Returns: 0 on success, -1 on error
1417
1418Specifies the tsc frequency for the virtual machine. The unit of the
1419frequency is KHz.
1420
Jan Kiszka414fa982012-04-24 16:40:15 +02001421
14224.56 KVM_GET_TSC_KHZ
Joerg Roedel92a1f122011-03-25 09:44:51 +01001423
1424Capability: KVM_CAP_GET_TSC_KHZ
1425Architectures: x86
1426Type: vcpu ioctl
1427Parameters: none
1428Returns: virtual tsc-khz on success, negative value on error
1429
1430Returns the tsc frequency of the guest. The unit of the return value is
1431KHz. If the host has unstable tsc this ioctl returns -EIO instead as an
1432error.
1433
Jan Kiszka414fa982012-04-24 16:40:15 +02001434
14354.57 KVM_GET_LAPIC
Avi Kivitye7677932011-05-11 08:30:51 -04001436
1437Capability: KVM_CAP_IRQCHIP
1438Architectures: x86
1439Type: vcpu ioctl
1440Parameters: struct kvm_lapic_state (out)
1441Returns: 0 on success, -1 on error
1442
1443#define KVM_APIC_REG_SIZE 0x400
1444struct kvm_lapic_state {
1445 char regs[KVM_APIC_REG_SIZE];
1446};
1447
1448Reads the Local APIC registers and copies them into the input argument. The
1449data format and layout are the same as documented in the architecture manual.
1450
Jan Kiszka414fa982012-04-24 16:40:15 +02001451
14524.58 KVM_SET_LAPIC
Avi Kivitye7677932011-05-11 08:30:51 -04001453
1454Capability: KVM_CAP_IRQCHIP
1455Architectures: x86
1456Type: vcpu ioctl
1457Parameters: struct kvm_lapic_state (in)
1458Returns: 0 on success, -1 on error
1459
1460#define KVM_APIC_REG_SIZE 0x400
1461struct kvm_lapic_state {
1462 char regs[KVM_APIC_REG_SIZE];
1463};
1464
1465Copies the input argument into the the Local APIC registers. The data format
1466and layout are the same as documented in the architecture manual.
1467
Jan Kiszka414fa982012-04-24 16:40:15 +02001468
14694.59 KVM_IOEVENTFD
Sasha Levin55399a02011-05-28 14:12:30 +03001470
1471Capability: KVM_CAP_IOEVENTFD
1472Architectures: all
1473Type: vm ioctl
1474Parameters: struct kvm_ioeventfd (in)
1475Returns: 0 on success, !0 on error
1476
1477This ioctl attaches or detaches an ioeventfd to a legal pio/mmio address
1478within the guest. A guest write in the registered address will signal the
1479provided event instead of triggering an exit.
1480
1481struct kvm_ioeventfd {
1482 __u64 datamatch;
1483 __u64 addr; /* legal pio/mmio address */
1484 __u32 len; /* 1, 2, 4, or 8 bytes */
1485 __s32 fd;
1486 __u32 flags;
1487 __u8 pad[36];
1488};
1489
Cornelia Huck2b834512013-02-28 12:33:20 +01001490For the special case of virtio-ccw devices on s390, the ioevent is matched
1491to a subchannel/virtqueue tuple instead.
1492
Sasha Levin55399a02011-05-28 14:12:30 +03001493The following flags are defined:
1494
1495#define KVM_IOEVENTFD_FLAG_DATAMATCH (1 << kvm_ioeventfd_flag_nr_datamatch)
1496#define KVM_IOEVENTFD_FLAG_PIO (1 << kvm_ioeventfd_flag_nr_pio)
1497#define KVM_IOEVENTFD_FLAG_DEASSIGN (1 << kvm_ioeventfd_flag_nr_deassign)
Cornelia Huck2b834512013-02-28 12:33:20 +01001498#define KVM_IOEVENTFD_FLAG_VIRTIO_CCW_NOTIFY \
1499 (1 << kvm_ioeventfd_flag_nr_virtio_ccw_notify)
Sasha Levin55399a02011-05-28 14:12:30 +03001500
1501If datamatch flag is set, the event will be signaled only if the written value
1502to the registered address is equal to datamatch in struct kvm_ioeventfd.
1503
Cornelia Huck2b834512013-02-28 12:33:20 +01001504For virtio-ccw devices, addr contains the subchannel id and datamatch the
1505virtqueue index.
1506
Jan Kiszka414fa982012-04-24 16:40:15 +02001507
15084.60 KVM_DIRTY_TLB
Scott Wooddc83b8b2011-08-18 15:25:21 -05001509
1510Capability: KVM_CAP_SW_TLB
1511Architectures: ppc
1512Type: vcpu ioctl
1513Parameters: struct kvm_dirty_tlb (in)
1514Returns: 0 on success, -1 on error
1515
1516struct kvm_dirty_tlb {
1517 __u64 bitmap;
1518 __u32 num_dirty;
1519};
1520
1521This must be called whenever userspace has changed an entry in the shared
1522TLB, prior to calling KVM_RUN on the associated vcpu.
1523
1524The "bitmap" field is the userspace address of an array. This array
1525consists of a number of bits, equal to the total number of TLB entries as
1526determined by the last successful call to KVM_CONFIG_TLB, rounded up to the
1527nearest multiple of 64.
1528
1529Each bit corresponds to one TLB entry, ordered the same as in the shared TLB
1530array.
1531
1532The array is little-endian: the bit 0 is the least significant bit of the
1533first byte, bit 8 is the least significant bit of the second byte, etc.
1534This avoids any complications with differing word sizes.
1535
1536The "num_dirty" field is a performance hint for KVM to determine whether it
1537should skip processing the bitmap and just invalidate everything. It must
1538be set to the number of set bits in the bitmap.
1539
Jan Kiszka414fa982012-04-24 16:40:15 +02001540
15414.61 KVM_ASSIGN_SET_INTX_MASK
Jan Kiszka07700a92012-02-28 14:19:54 +01001542
1543Capability: KVM_CAP_PCI_2_3
1544Architectures: x86
1545Type: vm ioctl
1546Parameters: struct kvm_assigned_pci_dev (in)
1547Returns: 0 on success, -1 on error
1548
1549Allows userspace to mask PCI INTx interrupts from the assigned device. The
1550kernel will not deliver INTx interrupts to the guest between setting and
1551clearing of KVM_ASSIGN_SET_INTX_MASK via this interface. This enables use of
1552and emulation of PCI 2.3 INTx disable command register behavior.
1553
1554This may be used for both PCI 2.3 devices supporting INTx disable natively and
1555older devices lacking this support. Userspace is responsible for emulating the
1556read value of the INTx disable bit in the guest visible PCI command register.
1557When modifying the INTx disable state, userspace should precede updating the
1558physical device command register by calling this ioctl to inform the kernel of
1559the new intended INTx mask state.
1560
1561Note that the kernel uses the device INTx disable bit to internally manage the
1562device interrupt state for PCI 2.3 devices. Reads of this register may
1563therefore not match the expected value. Writes should always use the guest
1564intended INTx disable value rather than attempting to read-copy-update the
1565current physical device state. Races between user and kernel updates to the
1566INTx disable bit are handled lazily in the kernel. It's possible the device
1567may generate unintended interrupts, but they will not be injected into the
1568guest.
1569
1570See KVM_ASSIGN_DEV_IRQ for the data structure. The target device is specified
1571by assigned_dev_id. In the flags field, only KVM_DEV_ASSIGN_MASK_INTX is
1572evaluated.
1573
Jan Kiszka414fa982012-04-24 16:40:15 +02001574
David Gibson54738c02011-06-29 00:22:41 +000015754.62 KVM_CREATE_SPAPR_TCE
1576
1577Capability: KVM_CAP_SPAPR_TCE
1578Architectures: powerpc
1579Type: vm ioctl
1580Parameters: struct kvm_create_spapr_tce (in)
1581Returns: file descriptor for manipulating the created TCE table
1582
1583This creates a virtual TCE (translation control entry) table, which
1584is an IOMMU for PAPR-style virtual I/O. It is used to translate
1585logical addresses used in virtual I/O into guest physical addresses,
1586and provides a scatter/gather capability for PAPR virtual I/O.
1587
1588/* for KVM_CAP_SPAPR_TCE */
1589struct kvm_create_spapr_tce {
1590 __u64 liobn;
1591 __u32 window_size;
1592};
1593
1594The liobn field gives the logical IO bus number for which to create a
1595TCE table. The window_size field specifies the size of the DMA window
1596which this TCE table will translate - the table will contain one 64
1597bit TCE entry for every 4kiB of the DMA window.
1598
1599When the guest issues an H_PUT_TCE hcall on a liobn for which a TCE
1600table has been created using this ioctl(), the kernel will handle it
1601in real mode, updating the TCE table. H_PUT_TCE calls for other
1602liobns will cause a vm exit and must be handled by userspace.
1603
1604The return value is a file descriptor which can be passed to mmap(2)
1605to map the created TCE table into userspace. This lets userspace read
1606the entries written by kernel-handled H_PUT_TCE calls, and also lets
1607userspace update the TCE table directly which is useful in some
1608circumstances.
1609
Jan Kiszka414fa982012-04-24 16:40:15 +02001610
Paul Mackerrasaa04b4c2011-06-29 00:25:44 +000016114.63 KVM_ALLOCATE_RMA
1612
1613Capability: KVM_CAP_PPC_RMA
1614Architectures: powerpc
1615Type: vm ioctl
1616Parameters: struct kvm_allocate_rma (out)
1617Returns: file descriptor for mapping the allocated RMA
1618
1619This allocates a Real Mode Area (RMA) from the pool allocated at boot
1620time by the kernel. An RMA is a physically-contiguous, aligned region
1621of memory used on older POWER processors to provide the memory which
1622will be accessed by real-mode (MMU off) accesses in a KVM guest.
1623POWER processors support a set of sizes for the RMA that usually
1624includes 64MB, 128MB, 256MB and some larger powers of two.
1625
1626/* for KVM_ALLOCATE_RMA */
1627struct kvm_allocate_rma {
1628 __u64 rma_size;
1629};
1630
1631The return value is a file descriptor which can be passed to mmap(2)
1632to map the allocated RMA into userspace. The mapped area can then be
1633passed to the KVM_SET_USER_MEMORY_REGION ioctl to establish it as the
1634RMA for a virtual machine. The size of the RMA in bytes (which is
1635fixed at host kernel boot time) is returned in the rma_size field of
1636the argument structure.
1637
1638The KVM_CAP_PPC_RMA capability is 1 or 2 if the KVM_ALLOCATE_RMA ioctl
1639is supported; 2 if the processor requires all virtual machines to have
1640an RMA, or 1 if the processor can use an RMA but doesn't require it,
1641because it supports the Virtual RMA (VRMA) facility.
1642
Jan Kiszka414fa982012-04-24 16:40:15 +02001643
Avi Kivity3f745f12011-12-07 12:42:47 +020016444.64 KVM_NMI
1645
1646Capability: KVM_CAP_USER_NMI
1647Architectures: x86
1648Type: vcpu ioctl
1649Parameters: none
1650Returns: 0 on success, -1 on error
1651
1652Queues an NMI on the thread's vcpu. Note this is well defined only
1653when KVM_CREATE_IRQCHIP has not been called, since this is an interface
1654between the virtual cpu core and virtual local APIC. After KVM_CREATE_IRQCHIP
1655has been called, this interface is completely emulated within the kernel.
1656
1657To use this to emulate the LINT1 input with KVM_CREATE_IRQCHIP, use the
1658following algorithm:
1659
1660 - pause the vpcu
1661 - read the local APIC's state (KVM_GET_LAPIC)
1662 - check whether changing LINT1 will queue an NMI (see the LVT entry for LINT1)
1663 - if so, issue KVM_NMI
1664 - resume the vcpu
1665
1666Some guests configure the LINT1 NMI input to cause a panic, aiding in
1667debugging.
1668
Jan Kiszka414fa982012-04-24 16:40:15 +02001669
Alexander Grafe24ed812011-09-14 10:02:41 +020016704.65 KVM_S390_UCAS_MAP
Carsten Otte27e03932012-01-04 10:25:21 +01001671
1672Capability: KVM_CAP_S390_UCONTROL
1673Architectures: s390
1674Type: vcpu ioctl
1675Parameters: struct kvm_s390_ucas_mapping (in)
1676Returns: 0 in case of success
1677
1678The parameter is defined like this:
1679 struct kvm_s390_ucas_mapping {
1680 __u64 user_addr;
1681 __u64 vcpu_addr;
1682 __u64 length;
1683 };
1684
1685This ioctl maps the memory at "user_addr" with the length "length" to
1686the vcpu's address space starting at "vcpu_addr". All parameters need to
Anatol Pomozovf884ab12013-05-08 16:56:16 -07001687be aligned by 1 megabyte.
Carsten Otte27e03932012-01-04 10:25:21 +01001688
Jan Kiszka414fa982012-04-24 16:40:15 +02001689
Alexander Grafe24ed812011-09-14 10:02:41 +020016904.66 KVM_S390_UCAS_UNMAP
Carsten Otte27e03932012-01-04 10:25:21 +01001691
1692Capability: KVM_CAP_S390_UCONTROL
1693Architectures: s390
1694Type: vcpu ioctl
1695Parameters: struct kvm_s390_ucas_mapping (in)
1696Returns: 0 in case of success
1697
1698The parameter is defined like this:
1699 struct kvm_s390_ucas_mapping {
1700 __u64 user_addr;
1701 __u64 vcpu_addr;
1702 __u64 length;
1703 };
1704
1705This ioctl unmaps the memory in the vcpu's address space starting at
1706"vcpu_addr" with the length "length". The field "user_addr" is ignored.
Anatol Pomozovf884ab12013-05-08 16:56:16 -07001707All parameters need to be aligned by 1 megabyte.
Carsten Otte27e03932012-01-04 10:25:21 +01001708
Jan Kiszka414fa982012-04-24 16:40:15 +02001709
Alexander Grafe24ed812011-09-14 10:02:41 +020017104.67 KVM_S390_VCPU_FAULT
Carsten Otteccc79102012-01-04 10:25:26 +01001711
1712Capability: KVM_CAP_S390_UCONTROL
1713Architectures: s390
1714Type: vcpu ioctl
1715Parameters: vcpu absolute address (in)
1716Returns: 0 in case of success
1717
1718This call creates a page table entry on the virtual cpu's address space
1719(for user controlled virtual machines) or the virtual machine's address
1720space (for regular virtual machines). This only works for minor faults,
1721thus it's recommended to access subject memory page via the user page
1722table upfront. This is useful to handle validity intercepts for user
1723controlled virtual machines to fault in the virtual cpu's lowcore pages
1724prior to calling the KVM_RUN ioctl.
1725
Jan Kiszka414fa982012-04-24 16:40:15 +02001726
Alexander Grafe24ed812011-09-14 10:02:41 +020017274.68 KVM_SET_ONE_REG
1728
1729Capability: KVM_CAP_ONE_REG
1730Architectures: all
1731Type: vcpu ioctl
1732Parameters: struct kvm_one_reg (in)
1733Returns: 0 on success, negative value on failure
1734
1735struct kvm_one_reg {
1736 __u64 id;
1737 __u64 addr;
1738};
1739
1740Using this ioctl, a single vcpu register can be set to a specific value
1741defined by user space with the passed in struct kvm_one_reg, where id
1742refers to the register identifier as described below and addr is a pointer
1743to a variable with the respective size. There can be architecture agnostic
1744and architecture specific registers. Each have their own range of operation
1745and their own constants and width. To keep track of the implemented
1746registers, find a list below:
1747
1748 Arch | Register | Width (bits)
1749 | |
Alexander Graf1022fc32011-09-14 21:45:23 +02001750 PPC | KVM_REG_PPC_HIOR | 64
Bharat Bhushan2e232702012-08-15 17:37:13 +00001751 PPC | KVM_REG_PPC_IAC1 | 64
1752 PPC | KVM_REG_PPC_IAC2 | 64
1753 PPC | KVM_REG_PPC_IAC3 | 64
1754 PPC | KVM_REG_PPC_IAC4 | 64
1755 PPC | KVM_REG_PPC_DAC1 | 64
1756 PPC | KVM_REG_PPC_DAC2 | 64
Paul Mackerrasa136a8b2012-09-25 20:31:56 +00001757 PPC | KVM_REG_PPC_DABR | 64
1758 PPC | KVM_REG_PPC_DSCR | 64
1759 PPC | KVM_REG_PPC_PURR | 64
1760 PPC | KVM_REG_PPC_SPURR | 64
1761 PPC | KVM_REG_PPC_DAR | 64
1762 PPC | KVM_REG_PPC_DSISR | 32
1763 PPC | KVM_REG_PPC_AMR | 64
1764 PPC | KVM_REG_PPC_UAMOR | 64
1765 PPC | KVM_REG_PPC_MMCR0 | 64
1766 PPC | KVM_REG_PPC_MMCR1 | 64
1767 PPC | KVM_REG_PPC_MMCRA | 64
1768 PPC | KVM_REG_PPC_PMC1 | 32
1769 PPC | KVM_REG_PPC_PMC2 | 32
1770 PPC | KVM_REG_PPC_PMC3 | 32
1771 PPC | KVM_REG_PPC_PMC4 | 32
1772 PPC | KVM_REG_PPC_PMC5 | 32
1773 PPC | KVM_REG_PPC_PMC6 | 32
1774 PPC | KVM_REG_PPC_PMC7 | 32
1775 PPC | KVM_REG_PPC_PMC8 | 32
Paul Mackerrasa8bd19e2012-09-25 20:32:30 +00001776 PPC | KVM_REG_PPC_FPR0 | 64
1777 ...
1778 PPC | KVM_REG_PPC_FPR31 | 64
1779 PPC | KVM_REG_PPC_VR0 | 128
1780 ...
1781 PPC | KVM_REG_PPC_VR31 | 128
1782 PPC | KVM_REG_PPC_VSR0 | 128
1783 ...
1784 PPC | KVM_REG_PPC_VSR31 | 128
1785 PPC | KVM_REG_PPC_FPSCR | 64
1786 PPC | KVM_REG_PPC_VSCR | 32
Paul Mackerras55b665b2012-09-25 20:33:06 +00001787 PPC | KVM_REG_PPC_VPA_ADDR | 64
1788 PPC | KVM_REG_PPC_VPA_SLB | 128
1789 PPC | KVM_REG_PPC_VPA_DTL | 128
Mihai Caraman352df1d2012-10-11 06:13:29 +00001790 PPC | KVM_REG_PPC_EPCR | 32
Alexander Graf324b3e62013-01-04 18:28:51 +01001791 PPC | KVM_REG_PPC_EPR | 32
Bharat Bhushan78accda2013-02-24 18:57:12 +00001792 PPC | KVM_REG_PPC_TCR | 32
1793 PPC | KVM_REG_PPC_TSR | 32
1794 PPC | KVM_REG_PPC_OR_TSR | 32
1795 PPC | KVM_REG_PPC_CLEAR_TSR | 32
Mihai Caramana85d2aa2013-04-11 00:03:08 +00001796 PPC | KVM_REG_PPC_MAS0 | 32
1797 PPC | KVM_REG_PPC_MAS1 | 32
1798 PPC | KVM_REG_PPC_MAS2 | 64
1799 PPC | KVM_REG_PPC_MAS7_3 | 64
1800 PPC | KVM_REG_PPC_MAS4 | 32
1801 PPC | KVM_REG_PPC_MAS6 | 32
1802 PPC | KVM_REG_PPC_MMUCFG | 32
1803 PPC | KVM_REG_PPC_TLB0CFG | 32
1804 PPC | KVM_REG_PPC_TLB1CFG | 32
1805 PPC | KVM_REG_PPC_TLB2CFG | 32
1806 PPC | KVM_REG_PPC_TLB3CFG | 32
Mihai Caraman307d9002013-04-11 00:03:10 +00001807 PPC | KVM_REG_PPC_TLB0PS | 32
1808 PPC | KVM_REG_PPC_TLB1PS | 32
1809 PPC | KVM_REG_PPC_TLB2PS | 32
1810 PPC | KVM_REG_PPC_TLB3PS | 32
Mihai Caraman9a6061d2013-04-11 00:03:11 +00001811 PPC | KVM_REG_PPC_EPTCFG | 32
Paul Mackerras8b786452013-04-17 20:32:26 +00001812 PPC | KVM_REG_PPC_ICP_STATE | 64
Paul Mackerras93b0f4d2013-09-06 13:17:46 +10001813 PPC | KVM_REG_PPC_TB_OFFSET | 64
Michael Neuling3b783472013-09-03 11:13:12 +10001814 PPC | KVM_REG_PPC_SPMC1 | 32
1815 PPC | KVM_REG_PPC_SPMC2 | 32
1816 PPC | KVM_REG_PPC_IAMR | 64
1817 PPC | KVM_REG_PPC_TFHAR | 64
1818 PPC | KVM_REG_PPC_TFIAR | 64
1819 PPC | KVM_REG_PPC_TEXASR | 64
1820 PPC | KVM_REG_PPC_FSCR | 64
1821 PPC | KVM_REG_PPC_PSPB | 32
1822 PPC | KVM_REG_PPC_EBBHR | 64
1823 PPC | KVM_REG_PPC_EBBRR | 64
1824 PPC | KVM_REG_PPC_BESCR | 64
1825 PPC | KVM_REG_PPC_TAR | 64
1826 PPC | KVM_REG_PPC_DPDES | 64
1827 PPC | KVM_REG_PPC_DAWR | 64
1828 PPC | KVM_REG_PPC_DAWRX | 64
1829 PPC | KVM_REG_PPC_CIABR | 64
1830 PPC | KVM_REG_PPC_IC | 64
1831 PPC | KVM_REG_PPC_VTB | 64
1832 PPC | KVM_REG_PPC_CSIGR | 64
1833 PPC | KVM_REG_PPC_TACR | 64
1834 PPC | KVM_REG_PPC_TCSCR | 64
1835 PPC | KVM_REG_PPC_PID | 64
1836 PPC | KVM_REG_PPC_ACOP | 64
Paul Mackerrasc0867fd2013-09-06 13:18:32 +10001837 PPC | KVM_REG_PPC_VRSAVE | 32
Michael Neuling3b783472013-09-03 11:13:12 +10001838 PPC | KVM_REG_PPC_TM_GPR0 | 64
1839 ...
1840 PPC | KVM_REG_PPC_TM_GPR31 | 64
1841 PPC | KVM_REG_PPC_TM_VSR0 | 128
1842 ...
1843 PPC | KVM_REG_PPC_TM_VSR63 | 128
1844 PPC | KVM_REG_PPC_TM_CR | 64
1845 PPC | KVM_REG_PPC_TM_LR | 64
1846 PPC | KVM_REG_PPC_TM_CTR | 64
1847 PPC | KVM_REG_PPC_TM_FPSCR | 64
1848 PPC | KVM_REG_PPC_TM_AMR | 64
1849 PPC | KVM_REG_PPC_TM_PPR | 64
1850 PPC | KVM_REG_PPC_TM_VRSAVE | 64
1851 PPC | KVM_REG_PPC_TM_VSCR | 32
1852 PPC | KVM_REG_PPC_TM_DSCR | 64
1853 PPC | KVM_REG_PPC_TM_TAR | 64
Jan Kiszka414fa982012-04-24 16:40:15 +02001854
Christoffer Dall749cf76c2013-01-20 18:28:06 -05001855ARM registers are mapped using the lower 32 bits. The upper 16 of that
1856is the register group type, or coprocessor number:
1857
1858ARM core registers have the following id bit patterns:
Christoffer Dallaa404dd2013-04-22 18:57:46 -07001859 0x4020 0000 0010 <index into the kvm_regs struct:16>
Christoffer Dall749cf76c2013-01-20 18:28:06 -05001860
Christoffer Dall11382452013-01-20 18:28:10 -05001861ARM 32-bit CP15 registers have the following id bit patterns:
Christoffer Dallaa404dd2013-04-22 18:57:46 -07001862 0x4020 0000 000F <zero:1> <crn:4> <crm:4> <opc1:4> <opc2:3>
Christoffer Dall11382452013-01-20 18:28:10 -05001863
1864ARM 64-bit CP15 registers have the following id bit patterns:
Christoffer Dallaa404dd2013-04-22 18:57:46 -07001865 0x4030 0000 000F <zero:1> <zero:4> <crm:4> <opc1:4> <zero:3>
Christoffer Dall749cf76c2013-01-20 18:28:06 -05001866
Christoffer Dallc27581e2013-01-20 18:28:10 -05001867ARM CCSIDR registers are demultiplexed by CSSELR value:
Christoffer Dallaa404dd2013-04-22 18:57:46 -07001868 0x4020 0000 0011 00 <csselr:8>
Christoffer Dall749cf76c2013-01-20 18:28:06 -05001869
Rusty Russell4fe21e42013-01-20 18:28:11 -05001870ARM 32-bit VFP control registers have the following id bit patterns:
Christoffer Dallaa404dd2013-04-22 18:57:46 -07001871 0x4020 0000 0012 1 <regno:12>
Rusty Russell4fe21e42013-01-20 18:28:11 -05001872
1873ARM 64-bit FP registers have the following id bit patterns:
Christoffer Dallaa404dd2013-04-22 18:57:46 -07001874 0x4030 0000 0012 0 <regno:12>
Rusty Russell4fe21e42013-01-20 18:28:11 -05001875
Marc Zyngier379e04c2013-04-02 17:46:31 +01001876
1877arm64 registers are mapped using the lower 32 bits. The upper 16 of
1878that is the register group type, or coprocessor number:
1879
1880arm64 core/FP-SIMD registers have the following id bit patterns. Note
1881that the size of the access is variable, as the kvm_regs structure
1882contains elements ranging from 32 to 128 bits. The index is a 32bit
1883value in the kvm_regs structure seen as a 32bit array.
1884 0x60x0 0000 0010 <index into the kvm_regs struct:16>
1885
1886arm64 CCSIDR registers are demultiplexed by CSSELR value:
1887 0x6020 0000 0011 00 <csselr:8>
1888
1889arm64 system registers have the following id bit patterns:
1890 0x6030 0000 0013 <op0:2> <op1:3> <crn:4> <crm:4> <op2:3>
1891
Alexander Grafe24ed812011-09-14 10:02:41 +020018924.69 KVM_GET_ONE_REG
1893
1894Capability: KVM_CAP_ONE_REG
1895Architectures: all
1896Type: vcpu ioctl
1897Parameters: struct kvm_one_reg (in and out)
1898Returns: 0 on success, negative value on failure
1899
1900This ioctl allows to receive the value of a single register implemented
1901in a vcpu. The register to read is indicated by the "id" field of the
1902kvm_one_reg struct passed in. On success, the register value can be found
1903at the memory location pointed to by "addr".
1904
1905The list of registers accessible using this interface is identical to the
Bharat Bhushan2e232702012-08-15 17:37:13 +00001906list in 4.68.
Alexander Grafe24ed812011-09-14 10:02:41 +02001907
Jan Kiszka414fa982012-04-24 16:40:15 +02001908
Eric B Munson1c0b28c2012-03-10 14:37:27 -050019094.70 KVM_KVMCLOCK_CTRL
1910
1911Capability: KVM_CAP_KVMCLOCK_CTRL
1912Architectures: Any that implement pvclocks (currently x86 only)
1913Type: vcpu ioctl
1914Parameters: None
1915Returns: 0 on success, -1 on error
1916
1917This signals to the host kernel that the specified guest is being paused by
1918userspace. The host will set a flag in the pvclock structure that is checked
1919from the soft lockup watchdog. The flag is part of the pvclock structure that
1920is shared between guest and host, specifically the second bit of the flags
1921field of the pvclock_vcpu_time_info structure. It will be set exclusively by
1922the host and read/cleared exclusively by the guest. The guest operation of
1923checking and clearing the flag must an atomic operation so
1924load-link/store-conditional, or equivalent must be used. There are two cases
1925where the guest will clear the flag: when the soft lockup watchdog timer resets
1926itself or when a soft lockup is detected. This ioctl can be called any time
1927after pausing the vcpu, but before it is resumed.
1928
Jan Kiszka414fa982012-04-24 16:40:15 +02001929
Jan Kiszka07975ad2012-03-29 21:14:12 +020019304.71 KVM_SIGNAL_MSI
1931
1932Capability: KVM_CAP_SIGNAL_MSI
1933Architectures: x86
1934Type: vm ioctl
1935Parameters: struct kvm_msi (in)
1936Returns: >0 on delivery, 0 if guest blocked the MSI, and -1 on error
1937
1938Directly inject a MSI message. Only valid with in-kernel irqchip that handles
1939MSI messages.
1940
1941struct kvm_msi {
1942 __u32 address_lo;
1943 __u32 address_hi;
1944 __u32 data;
1945 __u32 flags;
1946 __u8 pad[16];
1947};
1948
1949No flags are defined so far. The corresponding field must be 0.
1950
Jan Kiszka414fa982012-04-24 16:40:15 +02001951
Jan Kiszka0589ff62012-04-24 16:40:16 +020019524.71 KVM_CREATE_PIT2
1953
1954Capability: KVM_CAP_PIT2
1955Architectures: x86
1956Type: vm ioctl
1957Parameters: struct kvm_pit_config (in)
1958Returns: 0 on success, -1 on error
1959
1960Creates an in-kernel device model for the i8254 PIT. This call is only valid
1961after enabling in-kernel irqchip support via KVM_CREATE_IRQCHIP. The following
1962parameters have to be passed:
1963
1964struct kvm_pit_config {
1965 __u32 flags;
1966 __u32 pad[15];
1967};
1968
1969Valid flags are:
1970
1971#define KVM_PIT_SPEAKER_DUMMY 1 /* emulate speaker port stub */
1972
Jan Kiszkab6ddf052012-04-24 16:40:17 +02001973PIT timer interrupts may use a per-VM kernel thread for injection. If it
1974exists, this thread will have a name of the following pattern:
1975
1976kvm-pit/<owner-process-pid>
1977
1978When running a guest with elevated priorities, the scheduling parameters of
1979this thread may have to be adjusted accordingly.
1980
Jan Kiszka0589ff62012-04-24 16:40:16 +02001981This IOCTL replaces the obsolete KVM_CREATE_PIT.
1982
1983
19844.72 KVM_GET_PIT2
1985
1986Capability: KVM_CAP_PIT_STATE2
1987Architectures: x86
1988Type: vm ioctl
1989Parameters: struct kvm_pit_state2 (out)
1990Returns: 0 on success, -1 on error
1991
1992Retrieves the state of the in-kernel PIT model. Only valid after
1993KVM_CREATE_PIT2. The state is returned in the following structure:
1994
1995struct kvm_pit_state2 {
1996 struct kvm_pit_channel_state channels[3];
1997 __u32 flags;
1998 __u32 reserved[9];
1999};
2000
2001Valid flags are:
2002
2003/* disable PIT in HPET legacy mode */
2004#define KVM_PIT_FLAGS_HPET_LEGACY 0x00000001
2005
2006This IOCTL replaces the obsolete KVM_GET_PIT.
2007
2008
20094.73 KVM_SET_PIT2
2010
2011Capability: KVM_CAP_PIT_STATE2
2012Architectures: x86
2013Type: vm ioctl
2014Parameters: struct kvm_pit_state2 (in)
2015Returns: 0 on success, -1 on error
2016
2017Sets the state of the in-kernel PIT model. Only valid after KVM_CREATE_PIT2.
2018See KVM_GET_PIT2 for details on struct kvm_pit_state2.
2019
2020This IOCTL replaces the obsolete KVM_SET_PIT.
2021
2022
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +000020234.74 KVM_PPC_GET_SMMU_INFO
2024
2025Capability: KVM_CAP_PPC_GET_SMMU_INFO
2026Architectures: powerpc
2027Type: vm ioctl
2028Parameters: None
2029Returns: 0 on success, -1 on error
2030
2031This populates and returns a structure describing the features of
2032the "Server" class MMU emulation supported by KVM.
Stefan Hubercc22c352013-06-05 12:24:37 +02002033This can in turn be used by userspace to generate the appropriate
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +00002034device-tree properties for the guest operating system.
2035
2036The structure contains some global informations, followed by an
2037array of supported segment page sizes:
2038
2039 struct kvm_ppc_smmu_info {
2040 __u64 flags;
2041 __u32 slb_size;
2042 __u32 pad;
2043 struct kvm_ppc_one_seg_page_size sps[KVM_PPC_PAGE_SIZES_MAX_SZ];
2044 };
2045
2046The supported flags are:
2047
2048 - KVM_PPC_PAGE_SIZES_REAL:
2049 When that flag is set, guest page sizes must "fit" the backing
2050 store page sizes. When not set, any page size in the list can
2051 be used regardless of how they are backed by userspace.
2052
2053 - KVM_PPC_1T_SEGMENTS
2054 The emulated MMU supports 1T segments in addition to the
2055 standard 256M ones.
2056
2057The "slb_size" field indicates how many SLB entries are supported
2058
2059The "sps" array contains 8 entries indicating the supported base
2060page sizes for a segment in increasing order. Each entry is defined
2061as follow:
2062
2063 struct kvm_ppc_one_seg_page_size {
2064 __u32 page_shift; /* Base page shift of segment (or 0) */
2065 __u32 slb_enc; /* SLB encoding for BookS */
2066 struct kvm_ppc_one_page_size enc[KVM_PPC_PAGE_SIZES_MAX_SZ];
2067 };
2068
2069An entry with a "page_shift" of 0 is unused. Because the array is
2070organized in increasing order, a lookup can stop when encoutering
2071such an entry.
2072
2073The "slb_enc" field provides the encoding to use in the SLB for the
2074page size. The bits are in positions such as the value can directly
2075be OR'ed into the "vsid" argument of the slbmte instruction.
2076
2077The "enc" array is a list which for each of those segment base page
2078size provides the list of supported actual page sizes (which can be
2079only larger or equal to the base page size), along with the
Anatol Pomozovf884ab12013-05-08 16:56:16 -07002080corresponding encoding in the hash PTE. Similarly, the array is
Benjamin Herrenschmidt5b747162012-04-26 19:43:42 +000020818 entries sorted by increasing sizes and an entry with a "0" shift
2082is an empty entry and a terminator:
2083
2084 struct kvm_ppc_one_page_size {
2085 __u32 page_shift; /* Page shift (or 0) */
2086 __u32 pte_enc; /* Encoding in the HPTE (>>12) */
2087 };
2088
2089The "pte_enc" field provides a value that can OR'ed into the hash
2090PTE's RPN field (ie, it needs to be shifted left by 12 to OR it
2091into the hash PTE second double word).
2092
Alex Williamsonf36992e2012-06-29 09:56:16 -060020934.75 KVM_IRQFD
2094
2095Capability: KVM_CAP_IRQFD
2096Architectures: x86
2097Type: vm ioctl
2098Parameters: struct kvm_irqfd (in)
2099Returns: 0 on success, -1 on error
2100
2101Allows setting an eventfd to directly trigger a guest interrupt.
2102kvm_irqfd.fd specifies the file descriptor to use as the eventfd and
2103kvm_irqfd.gsi specifies the irqchip pin toggled by this event. When
2104an event is tiggered on the eventfd, an interrupt is injected into
2105the guest using the specified gsi pin. The irqfd is removed using
2106the KVM_IRQFD_FLAG_DEASSIGN flag, specifying both kvm_irqfd.fd
2107and kvm_irqfd.gsi.
2108
Alex Williamson7a844282012-09-21 11:58:03 -06002109With KVM_CAP_IRQFD_RESAMPLE, KVM_IRQFD supports a de-assert and notify
2110mechanism allowing emulation of level-triggered, irqfd-based
2111interrupts. When KVM_IRQFD_FLAG_RESAMPLE is set the user must pass an
2112additional eventfd in the kvm_irqfd.resamplefd field. When operating
2113in resample mode, posting of an interrupt through kvm_irq.fd asserts
2114the specified gsi in the irqchip. When the irqchip is resampled, such
2115as from an EOI, the gsi is de-asserted and the user is notifed via
2116kvm_irqfd.resamplefd. It is the user's responsibility to re-queue
2117the interrupt if the device making use of it still requires service.
2118Note that closing the resamplefd is not sufficient to disable the
2119irqfd. The KVM_IRQFD_FLAG_RESAMPLE is only necessary on assignment
2120and need not be specified with KVM_IRQFD_FLAG_DEASSIGN.
2121
Linus Torvalds5fecc9d2012-07-24 12:01:20 -070021224.76 KVM_PPC_ALLOCATE_HTAB
Paul Mackerras32fad282012-05-04 02:32:53 +00002123
2124Capability: KVM_CAP_PPC_ALLOC_HTAB
2125Architectures: powerpc
2126Type: vm ioctl
2127Parameters: Pointer to u32 containing hash table order (in/out)
2128Returns: 0 on success, -1 on error
2129
2130This requests the host kernel to allocate an MMU hash table for a
2131guest using the PAPR paravirtualization interface. This only does
2132anything if the kernel is configured to use the Book 3S HV style of
2133virtualization. Otherwise the capability doesn't exist and the ioctl
2134returns an ENOTTY error. The rest of this description assumes Book 3S
2135HV.
2136
2137There must be no vcpus running when this ioctl is called; if there
2138are, it will do nothing and return an EBUSY error.
2139
2140The parameter is a pointer to a 32-bit unsigned integer variable
2141containing the order (log base 2) of the desired size of the hash
2142table, which must be between 18 and 46. On successful return from the
2143ioctl, it will have been updated with the order of the hash table that
2144was allocated.
2145
2146If no hash table has been allocated when any vcpu is asked to run
2147(with the KVM_RUN ioctl), the host kernel will allocate a
2148default-sized hash table (16 MB).
2149
2150If this ioctl is called when a hash table has already been allocated,
2151the kernel will clear out the existing hash table (zero all HPTEs) and
2152return the hash table order in the parameter. (If the guest is using
2153the virtualized real-mode area (VRMA) facility, the kernel will
2154re-create the VMRA HPTEs on the next KVM_RUN of any vcpu.)
2155
Cornelia Huck416ad652012-10-02 16:25:37 +020021564.77 KVM_S390_INTERRUPT
2157
2158Capability: basic
2159Architectures: s390
2160Type: vm ioctl, vcpu ioctl
2161Parameters: struct kvm_s390_interrupt (in)
2162Returns: 0 on success, -1 on error
2163
2164Allows to inject an interrupt to the guest. Interrupts can be floating
2165(vm ioctl) or per cpu (vcpu ioctl), depending on the interrupt type.
2166
2167Interrupt parameters are passed via kvm_s390_interrupt:
2168
2169struct kvm_s390_interrupt {
2170 __u32 type;
2171 __u32 parm;
2172 __u64 parm64;
2173};
2174
2175type can be one of the following:
2176
2177KVM_S390_SIGP_STOP (vcpu) - sigp restart
2178KVM_S390_PROGRAM_INT (vcpu) - program check; code in parm
2179KVM_S390_SIGP_SET_PREFIX (vcpu) - sigp set prefix; prefix address in parm
2180KVM_S390_RESTART (vcpu) - restart
2181KVM_S390_INT_VIRTIO (vm) - virtio external interrupt; external interrupt
2182 parameters in parm and parm64
2183KVM_S390_INT_SERVICE (vm) - sclp external interrupt; sclp parameter in parm
2184KVM_S390_INT_EMERGENCY (vcpu) - sigp emergency; source cpu in parm
2185KVM_S390_INT_EXTERNAL_CALL (vcpu) - sigp external call; source cpu in parm
Cornelia Huckd8346b72012-12-20 15:32:08 +01002186KVM_S390_INT_IO(ai,cssid,ssid,schid) (vm) - compound value to indicate an
2187 I/O interrupt (ai - adapter interrupt; cssid,ssid,schid - subchannel);
2188 I/O interruption parameters in parm (subchannel) and parm64 (intparm,
2189 interruption subclass)
Cornelia Huck48a3e952012-12-20 15:32:09 +01002190KVM_S390_MCHK (vm, vcpu) - machine check interrupt; cr 14 bits in parm,
2191 machine check interrupt code in parm64 (note that
2192 machine checks needing further payload are not
2193 supported by this ioctl)
Cornelia Huck416ad652012-10-02 16:25:37 +02002194
2195Note that the vcpu ioctl is asynchronous to vcpu execution.
2196
Paul Mackerrasa2932922012-11-19 22:57:20 +000021974.78 KVM_PPC_GET_HTAB_FD
2198
2199Capability: KVM_CAP_PPC_HTAB_FD
2200Architectures: powerpc
2201Type: vm ioctl
2202Parameters: Pointer to struct kvm_get_htab_fd (in)
2203Returns: file descriptor number (>= 0) on success, -1 on error
2204
2205This returns a file descriptor that can be used either to read out the
2206entries in the guest's hashed page table (HPT), or to write entries to
2207initialize the HPT. The returned fd can only be written to if the
2208KVM_GET_HTAB_WRITE bit is set in the flags field of the argument, and
2209can only be read if that bit is clear. The argument struct looks like
2210this:
2211
2212/* For KVM_PPC_GET_HTAB_FD */
2213struct kvm_get_htab_fd {
2214 __u64 flags;
2215 __u64 start_index;
2216 __u64 reserved[2];
2217};
2218
2219/* Values for kvm_get_htab_fd.flags */
2220#define KVM_GET_HTAB_BOLTED_ONLY ((__u64)0x1)
2221#define KVM_GET_HTAB_WRITE ((__u64)0x2)
2222
2223The `start_index' field gives the index in the HPT of the entry at
2224which to start reading. It is ignored when writing.
2225
2226Reads on the fd will initially supply information about all
2227"interesting" HPT entries. Interesting entries are those with the
2228bolted bit set, if the KVM_GET_HTAB_BOLTED_ONLY bit is set, otherwise
2229all entries. When the end of the HPT is reached, the read() will
2230return. If read() is called again on the fd, it will start again from
2231the beginning of the HPT, but will only return HPT entries that have
2232changed since they were last read.
2233
2234Data read or written is structured as a header (8 bytes) followed by a
2235series of valid HPT entries (16 bytes) each. The header indicates how
2236many valid HPT entries there are and how many invalid entries follow
2237the valid entries. The invalid entries are not represented explicitly
2238in the stream. The header format is:
2239
2240struct kvm_get_htab_header {
2241 __u32 index;
2242 __u16 n_valid;
2243 __u16 n_invalid;
2244};
2245
2246Writes to the fd create HPT entries starting at the index given in the
2247header; first `n_valid' valid entries with contents from the data
2248written, then `n_invalid' invalid entries, invalidating any previously
2249valid entries found.
2250
Scott Wood852b6d52013-04-12 14:08:42 +000022514.79 KVM_CREATE_DEVICE
2252
2253Capability: KVM_CAP_DEVICE_CTRL
2254Type: vm ioctl
2255Parameters: struct kvm_create_device (in/out)
2256Returns: 0 on success, -1 on error
2257Errors:
2258 ENODEV: The device type is unknown or unsupported
2259 EEXIST: Device already created, and this type of device may not
2260 be instantiated multiple times
2261
2262 Other error conditions may be defined by individual device types or
2263 have their standard meanings.
2264
2265Creates an emulated device in the kernel. The file descriptor returned
2266in fd can be used with KVM_SET/GET/HAS_DEVICE_ATTR.
2267
2268If the KVM_CREATE_DEVICE_TEST flag is set, only test whether the
2269device type is supported (not necessarily whether it can be created
2270in the current vm).
2271
2272Individual devices should not define flags. Attributes should be used
2273for specifying any behavior that is not implied by the device type
2274number.
2275
2276struct kvm_create_device {
2277 __u32 type; /* in: KVM_DEV_TYPE_xxx */
2278 __u32 fd; /* out: device handle */
2279 __u32 flags; /* in: KVM_CREATE_DEVICE_xxx */
2280};
2281
22824.80 KVM_SET_DEVICE_ATTR/KVM_GET_DEVICE_ATTR
2283
2284Capability: KVM_CAP_DEVICE_CTRL
2285Type: device ioctl
2286Parameters: struct kvm_device_attr
2287Returns: 0 on success, -1 on error
2288Errors:
2289 ENXIO: The group or attribute is unknown/unsupported for this device
2290 EPERM: The attribute cannot (currently) be accessed this way
2291 (e.g. read-only attribute, or attribute that only makes
2292 sense when the device is in a different state)
2293
2294 Other error conditions may be defined by individual device types.
2295
2296Gets/sets a specified piece of device configuration and/or state. The
2297semantics are device-specific. See individual device documentation in
2298the "devices" directory. As with ONE_REG, the size of the data
2299transferred is defined by the particular attribute.
2300
2301struct kvm_device_attr {
2302 __u32 flags; /* no flags currently defined */
2303 __u32 group; /* device-defined */
2304 __u64 attr; /* group-defined */
2305 __u64 addr; /* userspace address of attr data */
2306};
2307
23084.81 KVM_HAS_DEVICE_ATTR
2309
2310Capability: KVM_CAP_DEVICE_CTRL
2311Type: device ioctl
2312Parameters: struct kvm_device_attr
2313Returns: 0 on success, -1 on error
2314Errors:
2315 ENXIO: The group or attribute is unknown/unsupported for this device
2316
2317Tests whether a device supports a particular attribute. A successful
2318return indicates the attribute is implemented. It does not necessarily
2319indicate that the attribute can be read or written in the device's
2320current state. "addr" is ignored.
Alex Williamsonf36992e2012-06-29 09:56:16 -06002321
Alexey Kardashevskiyd8968f12013-06-19 11:42:07 +100023224.82 KVM_ARM_VCPU_INIT
Christoffer Dall749cf76c2013-01-20 18:28:06 -05002323
2324Capability: basic
Marc Zyngier379e04c2013-04-02 17:46:31 +01002325Architectures: arm, arm64
Christoffer Dall749cf76c2013-01-20 18:28:06 -05002326Type: vcpu ioctl
2327Parameters: struct struct kvm_vcpu_init (in)
2328Returns: 0 on success; -1 on error
2329Errors:
2330  EINVAL:    the target is unknown, or the combination of features is invalid.
2331  ENOENT:    a features bit specified is unknown.
2332
2333This tells KVM what type of CPU to present to the guest, and what
2334optional features it should have.  This will cause a reset of the cpu
2335registers to their initial values.  If this is not called, KVM_RUN will
2336return ENOEXEC for that vcpu.
2337
2338Note that because some registers reflect machine topology, all vcpus
2339should be created before this ioctl is invoked.
2340
Marc Zyngieraa024c22013-01-20 18:28:13 -05002341Possible features:
2342 - KVM_ARM_VCPU_POWER_OFF: Starts the CPU in a power-off state.
2343 Depends on KVM_CAP_ARM_PSCI.
Marc Zyngier379e04c2013-04-02 17:46:31 +01002344 - KVM_ARM_VCPU_EL1_32BIT: Starts the CPU in a 32bit mode.
2345 Depends on KVM_CAP_ARM_EL1_32BIT (arm64 only).
Marc Zyngieraa024c22013-01-20 18:28:13 -05002346
Christoffer Dall749cf76c2013-01-20 18:28:06 -05002347
Anup Patel740edfc2013-09-30 14:20:08 +053023484.83 KVM_ARM_PREFERRED_TARGET
2349
2350Capability: basic
2351Architectures: arm, arm64
2352Type: vm ioctl
2353Parameters: struct struct kvm_vcpu_init (out)
2354Returns: 0 on success; -1 on error
2355Errors:
Christoffer Dalla7265fb2013-10-15 17:43:00 -07002356 ENODEV: no preferred target available for the host
Anup Patel740edfc2013-09-30 14:20:08 +05302357
2358This queries KVM for preferred CPU target type which can be emulated
2359by KVM on underlying host.
2360
2361The ioctl returns struct kvm_vcpu_init instance containing information
2362about preferred CPU target type and recommended features for it. The
2363kvm_vcpu_init->features bitmap returned will have feature bits set if
2364the preferred target recommends setting these features, but this is
2365not mandatory.
2366
2367The information returned by this ioctl can be used to prepare an instance
2368of struct kvm_vcpu_init for KVM_ARM_VCPU_INIT ioctl which will result in
2369in VCPU matching underlying host.
2370
2371
23724.84 KVM_GET_REG_LIST
Christoffer Dall749cf76c2013-01-20 18:28:06 -05002373
2374Capability: basic
Marc Zyngier379e04c2013-04-02 17:46:31 +01002375Architectures: arm, arm64
Christoffer Dall749cf76c2013-01-20 18:28:06 -05002376Type: vcpu ioctl
2377Parameters: struct kvm_reg_list (in/out)
2378Returns: 0 on success; -1 on error
2379Errors:
2380  E2BIG:     the reg index list is too big to fit in the array specified by
2381             the user (the number required will be written into n).
2382
2383struct kvm_reg_list {
2384 __u64 n; /* number of registers in reg[] */
2385 __u64 reg[0];
2386};
2387
2388This ioctl returns the guest registers that are supported for the
2389KVM_GET_ONE_REG/KVM_SET_ONE_REG calls.
2390
Anup Patel740edfc2013-09-30 14:20:08 +053023914.85 KVM_ARM_SET_DEVICE_ADDR
Christoffer Dall3401d5462013-01-23 13:18:04 -05002392
2393Capability: KVM_CAP_ARM_SET_DEVICE_ADDR
Marc Zyngier379e04c2013-04-02 17:46:31 +01002394Architectures: arm, arm64
Christoffer Dall3401d5462013-01-23 13:18:04 -05002395Type: vm ioctl
2396Parameters: struct kvm_arm_device_address (in)
2397Returns: 0 on success, -1 on error
2398Errors:
2399 ENODEV: The device id is unknown
2400 ENXIO: Device not supported on current system
2401 EEXIST: Address already set
2402 E2BIG: Address outside guest physical address space
Christoffer Dall330690c2013-01-21 19:36:13 -05002403 EBUSY: Address overlaps with other device range
Christoffer Dall3401d5462013-01-23 13:18:04 -05002404
2405struct kvm_arm_device_addr {
2406 __u64 id;
2407 __u64 addr;
2408};
2409
2410Specify a device address in the guest's physical address space where guests
2411can access emulated or directly exposed devices, which the host kernel needs
2412to know about. The id field is an architecture specific identifier for a
2413specific device.
2414
Marc Zyngier379e04c2013-04-02 17:46:31 +01002415ARM/arm64 divides the id field into two parts, a device id and an
2416address type id specific to the individual device.
Christoffer Dall3401d5462013-01-23 13:18:04 -05002417
2418  bits: | 63 ... 32 | 31 ... 16 | 15 ... 0 |
2419 field: | 0x00000000 | device id | addr type id |
2420
Marc Zyngier379e04c2013-04-02 17:46:31 +01002421ARM/arm64 currently only require this when using the in-kernel GIC
2422support for the hardware VGIC features, using KVM_ARM_DEVICE_VGIC_V2
2423as the device id. When setting the base address for the guest's
2424mapping of the VGIC virtual CPU and distributor interface, the ioctl
2425must be called after calling KVM_CREATE_IRQCHIP, but before calling
2426KVM_RUN on any of the VCPUs. Calling this ioctl twice for any of the
2427base addresses will return -EEXIST.
Christoffer Dall3401d5462013-01-23 13:18:04 -05002428
Anup Patel740edfc2013-09-30 14:20:08 +053024294.86 KVM_PPC_RTAS_DEFINE_TOKEN
Michael Ellerman8e591cb2013-04-17 20:30:00 +00002430
2431Capability: KVM_CAP_PPC_RTAS
2432Architectures: ppc
2433Type: vm ioctl
2434Parameters: struct kvm_rtas_token_args
2435Returns: 0 on success, -1 on error
2436
2437Defines a token value for a RTAS (Run Time Abstraction Services)
2438service in order to allow it to be handled in the kernel. The
2439argument struct gives the name of the service, which must be the name
2440of a service that has a kernel-side implementation. If the token
2441value is non-zero, it will be associated with that service, and
2442subsequent RTAS calls by the guest specifying that token will be
2443handled by the kernel. If the token value is 0, then any token
2444associated with the service will be forgotten, and subsequent RTAS
2445calls by the guest for that service will be passed to userspace to be
2446handled.
2447
Christoffer Dall3401d5462013-01-23 13:18:04 -05002448
Avi Kivity9c1b96e2009-06-09 12:37:58 +030024495. The kvm_run structure
Jan Kiszka414fa982012-04-24 16:40:15 +02002450------------------------
Avi Kivity9c1b96e2009-06-09 12:37:58 +03002451
2452Application code obtains a pointer to the kvm_run structure by
2453mmap()ing a vcpu fd. From that point, application code can control
2454execution by changing fields in kvm_run prior to calling the KVM_RUN
2455ioctl, and obtain information about the reason KVM_RUN returned by
2456looking up structure members.
2457
2458struct kvm_run {
2459 /* in */
2460 __u8 request_interrupt_window;
2461
2462Request that KVM_RUN return when it becomes possible to inject external
2463interrupts into the guest. Useful in conjunction with KVM_INTERRUPT.
2464
2465 __u8 padding1[7];
2466
2467 /* out */
2468 __u32 exit_reason;
2469
2470When KVM_RUN has returned successfully (return value 0), this informs
2471application code why KVM_RUN has returned. Allowable values for this
2472field are detailed below.
2473
2474 __u8 ready_for_interrupt_injection;
2475
2476If request_interrupt_window has been specified, this field indicates
2477an interrupt can be injected now with KVM_INTERRUPT.
2478
2479 __u8 if_flag;
2480
2481The value of the current interrupt flag. Only valid if in-kernel
2482local APIC is not used.
2483
2484 __u8 padding2[2];
2485
2486 /* in (pre_kvm_run), out (post_kvm_run) */
2487 __u64 cr8;
2488
2489The value of the cr8 register. Only valid if in-kernel local APIC is
2490not used. Both input and output.
2491
2492 __u64 apic_base;
2493
2494The value of the APIC BASE msr. Only valid if in-kernel local
2495APIC is not used. Both input and output.
2496
2497 union {
2498 /* KVM_EXIT_UNKNOWN */
2499 struct {
2500 __u64 hardware_exit_reason;
2501 } hw;
2502
2503If exit_reason is KVM_EXIT_UNKNOWN, the vcpu has exited due to unknown
2504reasons. Further architecture-specific information is available in
2505hardware_exit_reason.
2506
2507 /* KVM_EXIT_FAIL_ENTRY */
2508 struct {
2509 __u64 hardware_entry_failure_reason;
2510 } fail_entry;
2511
2512If exit_reason is KVM_EXIT_FAIL_ENTRY, the vcpu could not be run due
2513to unknown reasons. Further architecture-specific information is
2514available in hardware_entry_failure_reason.
2515
2516 /* KVM_EXIT_EXCEPTION */
2517 struct {
2518 __u32 exception;
2519 __u32 error_code;
2520 } ex;
2521
2522Unused.
2523
2524 /* KVM_EXIT_IO */
2525 struct {
2526#define KVM_EXIT_IO_IN 0
2527#define KVM_EXIT_IO_OUT 1
2528 __u8 direction;
2529 __u8 size; /* bytes */
2530 __u16 port;
2531 __u32 count;
2532 __u64 data_offset; /* relative to kvm_run start */
2533 } io;
2534
Wu Fengguang2044892d2009-12-24 09:04:16 +08002535If exit_reason is KVM_EXIT_IO, then the vcpu has
Avi Kivity9c1b96e2009-06-09 12:37:58 +03002536executed a port I/O instruction which could not be satisfied by kvm.
2537data_offset describes where the data is located (KVM_EXIT_IO_OUT) or
2538where kvm expects application code to place the data for the next
Wu Fengguang2044892d2009-12-24 09:04:16 +08002539KVM_RUN invocation (KVM_EXIT_IO_IN). Data format is a packed array.
Avi Kivity9c1b96e2009-06-09 12:37:58 +03002540
2541 struct {
2542 struct kvm_debug_exit_arch arch;
2543 } debug;
2544
2545Unused.
2546
2547 /* KVM_EXIT_MMIO */
2548 struct {
2549 __u64 phys_addr;
2550 __u8 data[8];
2551 __u32 len;
2552 __u8 is_write;
2553 } mmio;
2554
Wu Fengguang2044892d2009-12-24 09:04:16 +08002555If exit_reason is KVM_EXIT_MMIO, then the vcpu has
Avi Kivity9c1b96e2009-06-09 12:37:58 +03002556executed a memory-mapped I/O instruction which could not be satisfied
2557by kvm. The 'data' member contains the written data if 'is_write' is
2558true, and should be filled by application code otherwise.
2559
Alexander Graf1c810632013-01-04 18:12:48 +01002560NOTE: For KVM_EXIT_IO, KVM_EXIT_MMIO, KVM_EXIT_OSI, KVM_EXIT_DCR,
2561 KVM_EXIT_PAPR and KVM_EXIT_EPR the corresponding
Alexander Grafad0a0482010-03-24 21:48:30 +01002562operations are complete (and guest state is consistent) only after userspace
2563has re-entered the kernel with KVM_RUN. The kernel side will first finish
Marcelo Tosatti67961342010-02-13 16:10:26 -02002564incomplete operations and then check for pending signals. Userspace
2565can re-enter the guest with an unmasked signal pending to complete
2566pending operations.
2567
Avi Kivity9c1b96e2009-06-09 12:37:58 +03002568 /* KVM_EXIT_HYPERCALL */
2569 struct {
2570 __u64 nr;
2571 __u64 args[6];
2572 __u64 ret;
2573 __u32 longmode;
2574 __u32 pad;
2575 } hypercall;
2576
Avi Kivity647dc492010-04-01 14:39:21 +03002577Unused. This was once used for 'hypercall to userspace'. To implement
2578such functionality, use KVM_EXIT_IO (x86) or KVM_EXIT_MMIO (all except s390).
2579Note KVM_EXIT_IO is significantly faster than KVM_EXIT_MMIO.
Avi Kivity9c1b96e2009-06-09 12:37:58 +03002580
2581 /* KVM_EXIT_TPR_ACCESS */
2582 struct {
2583 __u64 rip;
2584 __u32 is_write;
2585 __u32 pad;
2586 } tpr_access;
2587
2588To be documented (KVM_TPR_ACCESS_REPORTING).
2589
2590 /* KVM_EXIT_S390_SIEIC */
2591 struct {
2592 __u8 icptcode;
2593 __u64 mask; /* psw upper half */
2594 __u64 addr; /* psw lower half */
2595 __u16 ipa;
2596 __u32 ipb;
2597 } s390_sieic;
2598
2599s390 specific.
2600
2601 /* KVM_EXIT_S390_RESET */
2602#define KVM_S390_RESET_POR 1
2603#define KVM_S390_RESET_CLEAR 2
2604#define KVM_S390_RESET_SUBSYSTEM 4
2605#define KVM_S390_RESET_CPU_INIT 8
2606#define KVM_S390_RESET_IPL 16
2607 __u64 s390_reset_flags;
2608
2609s390 specific.
2610
Carsten Ottee168bf82012-01-04 10:25:22 +01002611 /* KVM_EXIT_S390_UCONTROL */
2612 struct {
2613 __u64 trans_exc_code;
2614 __u32 pgm_code;
2615 } s390_ucontrol;
2616
2617s390 specific. A page fault has occurred for a user controlled virtual
2618machine (KVM_VM_S390_UNCONTROL) on it's host page table that cannot be
2619resolved by the kernel.
2620The program code and the translation exception code that were placed
2621in the cpu's lowcore are presented here as defined by the z Architecture
2622Principles of Operation Book in the Chapter for Dynamic Address Translation
2623(DAT)
2624
Avi Kivity9c1b96e2009-06-09 12:37:58 +03002625 /* KVM_EXIT_DCR */
2626 struct {
2627 __u32 dcrn;
2628 __u32 data;
2629 __u8 is_write;
2630 } dcr;
2631
2632powerpc specific.
2633
Alexander Grafad0a0482010-03-24 21:48:30 +01002634 /* KVM_EXIT_OSI */
2635 struct {
2636 __u64 gprs[32];
2637 } osi;
2638
2639MOL uses a special hypercall interface it calls 'OSI'. To enable it, we catch
2640hypercalls and exit with this exit struct that contains all the guest gprs.
2641
2642If exit_reason is KVM_EXIT_OSI, then the vcpu has triggered such a hypercall.
2643Userspace can now handle the hypercall and when it's done modify the gprs as
2644necessary. Upon guest entry all guest GPRs will then be replaced by the values
2645in this struct.
2646
Paul Mackerrasde56a942011-06-29 00:21:34 +00002647 /* KVM_EXIT_PAPR_HCALL */
2648 struct {
2649 __u64 nr;
2650 __u64 ret;
2651 __u64 args[9];
2652 } papr_hcall;
2653
2654This is used on 64-bit PowerPC when emulating a pSeries partition,
2655e.g. with the 'pseries' machine type in qemu. It occurs when the
2656guest does a hypercall using the 'sc 1' instruction. The 'nr' field
2657contains the hypercall number (from the guest R3), and 'args' contains
2658the arguments (from the guest R4 - R12). Userspace should put the
2659return code in 'ret' and any extra returned values in args[].
2660The possible hypercalls are defined in the Power Architecture Platform
2661Requirements (PAPR) document available from www.power.org (free
2662developer registration required to access it).
2663
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +01002664 /* KVM_EXIT_S390_TSCH */
2665 struct {
2666 __u16 subchannel_id;
2667 __u16 subchannel_nr;
2668 __u32 io_int_parm;
2669 __u32 io_int_word;
2670 __u32 ipb;
2671 __u8 dequeued;
2672 } s390_tsch;
2673
2674s390 specific. This exit occurs when KVM_CAP_S390_CSS_SUPPORT has been enabled
2675and TEST SUBCHANNEL was intercepted. If dequeued is set, a pending I/O
2676interrupt for the target subchannel has been dequeued and subchannel_id,
2677subchannel_nr, io_int_parm and io_int_word contain the parameters for that
2678interrupt. ipb is needed for instruction parameter decoding.
2679
Alexander Graf1c810632013-01-04 18:12:48 +01002680 /* KVM_EXIT_EPR */
2681 struct {
2682 __u32 epr;
2683 } epr;
2684
2685On FSL BookE PowerPC chips, the interrupt controller has a fast patch
2686interrupt acknowledge path to the core. When the core successfully
2687delivers an interrupt, it automatically populates the EPR register with
2688the interrupt vector number and acknowledges the interrupt inside
2689the interrupt controller.
2690
2691In case the interrupt controller lives in user space, we need to do
2692the interrupt acknowledge cycle through it to fetch the next to be
2693delivered interrupt vector using this exit.
2694
2695It gets triggered whenever both KVM_CAP_PPC_EPR are enabled and an
2696external interrupt has just been delivered into the guest. User space
2697should put the acknowledged interrupt vector into the 'epr' field.
2698
Avi Kivity9c1b96e2009-06-09 12:37:58 +03002699 /* Fix the size of the union. */
2700 char padding[256];
2701 };
Christian Borntraegerb9e5dc82012-01-11 11:20:30 +01002702
2703 /*
2704 * shared registers between kvm and userspace.
2705 * kvm_valid_regs specifies the register classes set by the host
2706 * kvm_dirty_regs specified the register classes dirtied by userspace
2707 * struct kvm_sync_regs is architecture specific, as well as the
2708 * bits for kvm_valid_regs and kvm_dirty_regs
2709 */
2710 __u64 kvm_valid_regs;
2711 __u64 kvm_dirty_regs;
2712 union {
2713 struct kvm_sync_regs regs;
2714 char padding[1024];
2715 } s;
2716
2717If KVM_CAP_SYNC_REGS is defined, these fields allow userspace to access
2718certain guest registers without having to call SET/GET_*REGS. Thus we can
2719avoid some system call overhead if userspace has to handle the exit.
2720Userspace can query the validity of the structure by checking
2721kvm_valid_regs for specific bits. These bits are architecture specific
2722and usually define the validity of a groups of registers. (e.g. one bit
2723 for general purpose registers)
2724
Avi Kivity9c1b96e2009-06-09 12:37:58 +03002725};
Alexander Graf821246a2011-08-31 10:58:55 +02002726
Jan Kiszka414fa982012-04-24 16:40:15 +02002727
Alexander Graf821246a2011-08-31 10:58:55 +020027286. Capabilities that can be enabled
Jan Kiszka414fa982012-04-24 16:40:15 +02002729-----------------------------------
Alexander Graf821246a2011-08-31 10:58:55 +02002730
2731There are certain capabilities that change the behavior of the virtual CPU when
2732enabled. To enable them, please see section 4.37. Below you can find a list of
2733capabilities and what their effect on the vCPU is when enabling them.
2734
2735The following information is provided along with the description:
2736
2737 Architectures: which instruction set architectures provide this ioctl.
2738 x86 includes both i386 and x86_64.
2739
2740 Parameters: what parameters are accepted by the capability.
2741
2742 Returns: the return value. General error numbers (EBADF, ENOMEM, EINVAL)
2743 are not detailed, but errors with specific meanings are.
2744
Jan Kiszka414fa982012-04-24 16:40:15 +02002745
Alexander Graf821246a2011-08-31 10:58:55 +020027466.1 KVM_CAP_PPC_OSI
2747
2748Architectures: ppc
2749Parameters: none
2750Returns: 0 on success; -1 on error
2751
2752This capability enables interception of OSI hypercalls that otherwise would
2753be treated as normal system calls to be injected into the guest. OSI hypercalls
2754were invented by Mac-on-Linux to have a standardized communication mechanism
2755between the guest and the host.
2756
2757When this capability is enabled, KVM_EXIT_OSI can occur.
2758
Jan Kiszka414fa982012-04-24 16:40:15 +02002759
Alexander Graf821246a2011-08-31 10:58:55 +020027606.2 KVM_CAP_PPC_PAPR
2761
2762Architectures: ppc
2763Parameters: none
2764Returns: 0 on success; -1 on error
2765
2766This capability enables interception of PAPR hypercalls. PAPR hypercalls are
2767done using the hypercall instruction "sc 1".
2768
2769It also sets the guest privilege level to "supervisor" mode. Usually the guest
2770runs in "hypervisor" privilege mode with a few missing features.
2771
2772In addition to the above, it changes the semantics of SDR1. In this mode, the
2773HTAB address part of SDR1 contains an HVA instead of a GPA, as PAPR keeps the
2774HTAB invisible to the guest.
2775
2776When this capability is enabled, KVM_EXIT_PAPR_HCALL can occur.
Scott Wooddc83b8b2011-08-18 15:25:21 -05002777
Jan Kiszka414fa982012-04-24 16:40:15 +02002778
Scott Wooddc83b8b2011-08-18 15:25:21 -050027796.3 KVM_CAP_SW_TLB
2780
2781Architectures: ppc
2782Parameters: args[0] is the address of a struct kvm_config_tlb
2783Returns: 0 on success; -1 on error
2784
2785struct kvm_config_tlb {
2786 __u64 params;
2787 __u64 array;
2788 __u32 mmu_type;
2789 __u32 array_len;
2790};
2791
2792Configures the virtual CPU's TLB array, establishing a shared memory area
2793between userspace and KVM. The "params" and "array" fields are userspace
2794addresses of mmu-type-specific data structures. The "array_len" field is an
2795safety mechanism, and should be set to the size in bytes of the memory that
2796userspace has reserved for the array. It must be at least the size dictated
2797by "mmu_type" and "params".
2798
2799While KVM_RUN is active, the shared region is under control of KVM. Its
2800contents are undefined, and any modification by userspace results in
2801boundedly undefined behavior.
2802
2803On return from KVM_RUN, the shared region will reflect the current state of
2804the guest's TLB. If userspace makes any changes, it must call KVM_DIRTY_TLB
2805to tell KVM which entries have been changed, prior to calling KVM_RUN again
2806on this vcpu.
2807
2808For mmu types KVM_MMU_FSL_BOOKE_NOHV and KVM_MMU_FSL_BOOKE_HV:
2809 - The "params" field is of type "struct kvm_book3e_206_tlb_params".
2810 - The "array" field points to an array of type "struct
2811 kvm_book3e_206_tlb_entry".
2812 - The array consists of all entries in the first TLB, followed by all
2813 entries in the second TLB.
2814 - Within a TLB, entries are ordered first by increasing set number. Within a
2815 set, entries are ordered by way (increasing ESEL).
2816 - The hash for determining set number in TLB0 is: (MAS2 >> 12) & (num_sets - 1)
2817 where "num_sets" is the tlb_sizes[] value divided by the tlb_ways[] value.
2818 - The tsize field of mas1 shall be set to 4K on TLB0, even though the
2819 hardware ignores this value for TLB0.
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +01002820
28216.4 KVM_CAP_S390_CSS_SUPPORT
2822
2823Architectures: s390
2824Parameters: none
2825Returns: 0 on success; -1 on error
2826
2827This capability enables support for handling of channel I/O instructions.
2828
2829TEST PENDING INTERRUPTION and the interrupt portion of TEST SUBCHANNEL are
2830handled in-kernel, while the other I/O instructions are passed to userspace.
2831
2832When this capability is enabled, KVM_EXIT_S390_TSCH will occur on TEST
2833SUBCHANNEL intercepts.
Alexander Graf1c810632013-01-04 18:12:48 +01002834
28356.5 KVM_CAP_PPC_EPR
2836
2837Architectures: ppc
2838Parameters: args[0] defines whether the proxy facility is active
2839Returns: 0 on success; -1 on error
2840
2841This capability enables or disables the delivery of interrupts through the
2842external proxy facility.
2843
2844When enabled (args[0] != 0), every time the guest gets an external interrupt
2845delivered, it automatically exits into user space with a KVM_EXIT_EPR exit
2846to receive the topmost interrupt vector.
2847
2848When disabled (args[0] == 0), behavior is as if this facility is unsupported.
2849
2850When this capability is enabled, KVM_EXIT_EPR can occur.
Scott Woodeb1e4f42013-04-12 14:08:47 +00002851
28526.6 KVM_CAP_IRQ_MPIC
2853
2854Architectures: ppc
2855Parameters: args[0] is the MPIC device fd
2856 args[1] is the MPIC CPU number for this vcpu
2857
2858This capability connects the vcpu to an in-kernel MPIC device.
Paul Mackerras5975a2e2013-04-27 00:28:37 +00002859
28606.7 KVM_CAP_IRQ_XICS
2861
2862Architectures: ppc
2863Parameters: args[0] is the XICS device fd
2864 args[1] is the XICS CPU number (server ID) for this vcpu
2865
2866This capability connects the vcpu to an in-kernel XICS device.