blob: 96076676e22481b72b9cb20914a9857f0b12e325 [file] [log] [blame]
Christian Borntraegerdd135eb2008-04-02 13:04:40 -07001#ifndef __LINUX_KVM_S390_H
2#define __LINUX_KVM_S390_H
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003/*
4 * asm-s390/kvm.h - KVM s390 specific structures and definitions
5 *
6 * Copyright IBM Corp. 2008
7 *
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.
11 *
12 * Author(s): Carsten Otte <cotte@de.ibm.com>
13 * Christian Borntraeger <borntraeger@de.ibm.com>
14 */
Heiko Carstens0680ba02009-01-09 12:14:52 +010015#include <linux/types.h>
Heiko Carstensb0c632d2008-03-25 18:47:20 +010016
Carsten Otted7b0b5e2009-11-19 14:21:16 +010017#define __KVM_S390
18
Heiko Carstensb0c632d2008-03-25 18:47:20 +010019/* for KVM_GET_REGS and KVM_SET_REGS */
20struct kvm_regs {
21 /* general purpose regs for s390 */
22 __u64 gprs[16];
23};
24
25/* for KVM_GET_SREGS and KVM_SET_SREGS */
26struct kvm_sregs {
27 __u32 acrs[16];
28 __u64 crs[16];
29};
30
31/* for KVM_GET_FPU and KVM_SET_FPU */
32struct kvm_fpu {
33 __u32 fpc;
34 __u64 fprs[16];
35};
Christian Borntraegerdd135eb2008-04-02 13:04:40 -070036
Jan Kiszkad0bfb942008-12-15 13:52:10 +010037struct kvm_debug_exit_arch {
38};
39
40/* for KVM_SET_GUEST_DEBUG */
41struct kvm_guest_debug_arch {
42};
43
Christian Borntraeger60b413c2012-01-11 11:20:31 +010044#define KVM_SYNC_PREFIX (1UL << 0)
Christian Borntraeger5a32c1a2012-01-11 11:20:32 +010045#define KVM_SYNC_GPRS (1UL << 1)
Christian Borntraeger59674c12012-01-11 11:20:33 +010046#define KVM_SYNC_ACRS (1UL << 2)
Christian Borntraeger9eed07352012-02-06 10:59:07 +010047#define KVM_SYNC_CRS (1UL << 3)
Christian Borntraegerb9e5dc82012-01-11 11:20:30 +010048/* definition of registers in kvm_run */
49struct kvm_sync_regs {
Christian Borntraeger60b413c2012-01-11 11:20:31 +010050 __u64 prefix; /* prefix register */
Christian Borntraeger5a32c1a2012-01-11 11:20:32 +010051 __u64 gprs[16]; /* general purpose registers */
Christian Borntraeger59674c12012-01-11 11:20:33 +010052 __u32 acrs[16]; /* access registers */
Christian Borntraeger9eed07352012-02-06 10:59:07 +010053 __u64 crs[16]; /* control registers */
Christian Borntraegerb9e5dc82012-01-11 11:20:30 +010054};
Christian Borntraegerdd135eb2008-04-02 13:04:40 -070055#endif