ACPI: Be in TS_POLLING state during mwait based C-state entry
[linux/fpc-iii.git] / arch / s390 / include / asm / kvm.h
blob1e313567d1ee7025c48527ee29f5e1d3e7066e6f
1 #ifndef __LINUX_KVM_S390_H
2 #define __LINUX_KVM_S390_H
3 /*
4 * asm-s390/kvm.h - KVM s390 specific structures and definitions
6 * Copyright IBM Corp. 2008
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License (version 2 only)
10 * as published by the Free Software Foundation.
12 * Author(s): Carsten Otte <cotte@de.ibm.com>
13 * Christian Borntraeger <borntraeger@de.ibm.com>
15 #include <linux/types.h>
17 /* for KVM_GET_IRQCHIP and KVM_SET_IRQCHIP */
18 struct kvm_pic_state {
19 /* no PIC for s390 */
22 struct kvm_ioapic_state {
23 /* no IOAPIC for s390 */
26 #define __KVM_S390
28 /* for KVM_GET_REGS and KVM_SET_REGS */
29 struct kvm_regs {
30 /* general purpose regs for s390 */
31 __u64 gprs[16];
34 /* for KVM_GET_SREGS and KVM_SET_SREGS */
35 struct kvm_sregs {
36 __u32 acrs[16];
37 __u64 crs[16];
40 /* for KVM_GET_FPU and KVM_SET_FPU */
41 struct kvm_fpu {
42 __u32 fpc;
43 __u64 fprs[16];
46 struct kvm_debug_exit_arch {
49 /* for KVM_SET_GUEST_DEBUG */
50 struct kvm_guest_debug_arch {
53 #endif