added 2.6.29.6 aldebaran kernel
[nao-ulib.git] / kernel / 2.6.29.6-aldebaran-rt / arch / s390 / include / asm / kvm.h
blobe1f54654e3ae5f9abdbc6b01668a49a7d4b6af26
1 #ifndef __LINUX_KVM_S390_H
2 #define __LINUX_KVM_S390_H
4 /*
5 * asm-s390/kvm.h - KVM s390 specific structures and definitions
7 * Copyright IBM Corp. 2008
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License (version 2 only)
11 * as published by the Free Software Foundation.
13 * Author(s): Carsten Otte <cotte@de.ibm.com>
14 * Christian Borntraeger <borntraeger@de.ibm.com>
16 #include <linux/types.h>
18 /* for KVM_GET_IRQCHIP and KVM_SET_IRQCHIP */
19 struct kvm_pic_state {
20 /* no PIC for s390 */
23 struct kvm_ioapic_state {
24 /* no IOAPIC for s390 */
27 /* for KVM_GET_REGS and KVM_SET_REGS */
28 struct kvm_regs {
29 /* general purpose regs for s390 */
30 __u64 gprs[16];
33 /* for KVM_GET_SREGS and KVM_SET_SREGS */
34 struct kvm_sregs {
35 __u32 acrs[16];
36 __u64 crs[16];
39 /* for KVM_GET_FPU and KVM_SET_FPU */
40 struct kvm_fpu {
41 __u32 fpc;
42 __u64 fprs[16];
45 #endif