blob: 38d5f98552bb7cb8fad0d0f19636688568d43b89 [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/*
Heiko Carstensa53c8fa2012-07-20 11:15:04 +02004 * KVM s390 specific structures and definitions
Heiko Carstensb0c632d2008-03-25 18:47:20 +01005 *
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
Jens Freimannc05c4182013-10-07 16:13:45 +020019/* Device control API: s390-specific devices */
20#define KVM_DEV_FLIC_GET_ALL_IRQS 1
21#define KVM_DEV_FLIC_ENQUEUE 2
22#define KVM_DEV_FLIC_CLEAR_IRQS 3
23/*
24 * We can have up to 4*64k pending subchannels + 8 adapter interrupts,
25 * as well as up to ASYNC_PF_PER_VCPU*KVM_MAX_VCPUS pfault done interrupts.
26 * There are also sclp and machine checks. This gives us
27 * sizeof(kvm_s390_irq)*(4*65536+8+64*64+1+1) = 72 * 266250 = 19170000
28 * Lets round up to 8192 pages.
29 */
30
31#define KVM_S390_FLIC_MAX_BUFFER 0x2000000
32
Heiko Carstensb0c632d2008-03-25 18:47:20 +010033/* for KVM_GET_REGS and KVM_SET_REGS */
34struct kvm_regs {
35 /* general purpose regs for s390 */
36 __u64 gprs[16];
37};
38
39/* for KVM_GET_SREGS and KVM_SET_SREGS */
40struct kvm_sregs {
41 __u32 acrs[16];
42 __u64 crs[16];
43};
44
45/* for KVM_GET_FPU and KVM_SET_FPU */
46struct kvm_fpu {
47 __u32 fpc;
48 __u64 fprs[16];
49};
Christian Borntraegerdd135eb2008-04-02 13:04:40 -070050
Jan Kiszkad0bfb942008-12-15 13:52:10 +010051struct kvm_debug_exit_arch {
52};
53
54/* for KVM_SET_GUEST_DEBUG */
55struct kvm_guest_debug_arch {
56};
57
Christian Borntraeger60b413c2012-01-11 11:20:31 +010058#define KVM_SYNC_PREFIX (1UL << 0)
Christian Borntraeger5a32c1a2012-01-11 11:20:32 +010059#define KVM_SYNC_GPRS (1UL << 1)
Christian Borntraeger59674c12012-01-11 11:20:33 +010060#define KVM_SYNC_ACRS (1UL << 2)
Christian Borntraeger9eed07352012-02-06 10:59:07 +010061#define KVM_SYNC_CRS (1UL << 3)
Christian Borntraegerb9e5dc82012-01-11 11:20:30 +010062/* definition of registers in kvm_run */
63struct kvm_sync_regs {
Christian Borntraeger60b413c2012-01-11 11:20:31 +010064 __u64 prefix; /* prefix register */
Christian Borntraeger5a32c1a2012-01-11 11:20:32 +010065 __u64 gprs[16]; /* general purpose registers */
Christian Borntraeger59674c12012-01-11 11:20:33 +010066 __u32 acrs[16]; /* access registers */
Christian Borntraeger9eed07352012-02-06 10:59:07 +010067 __u64 crs[16]; /* control registers */
Christian Borntraegerb9e5dc82012-01-11 11:20:30 +010068};
Carsten Otte29b7c712012-05-15 14:15:27 +020069
70#define KVM_REG_S390_TODPR (KVM_REG_S390 | KVM_REG_SIZE_U32 | 0x1)
71#define KVM_REG_S390_EPOCHDIFF (KVM_REG_S390 | KVM_REG_SIZE_U64 | 0x2)
Jason J. herne46a6dd12012-05-15 14:15:28 +020072#define KVM_REG_S390_CPU_TIMER (KVM_REG_S390 | KVM_REG_SIZE_U64 | 0x3)
73#define KVM_REG_S390_CLOCK_COMP (KVM_REG_S390 | KVM_REG_SIZE_U64 | 0x4)
Christian Borntraegerdd135eb2008-04-02 13:04:40 -070074#endif