blob: 161a9e12bfb865d61b5262d79b3028925127ad4d [file] [log] [blame]
Greg Kroah-Hartman0b732142017-11-24 15:00:38 +01001/* SPDX-License-Identifier: GPL-2.0 */
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002/*
Heiko Carstensa53c8fa2012-07-20 11:15:04 +02003 * definition for kernel virtual machines on s390
Heiko Carstensb0c632d2008-03-25 18:47:20 +01004 *
Christian Borntraegera37cb072018-01-23 13:28:40 +01005 * Copyright IBM Corp. 2008, 2018
Heiko Carstensb0c632d2008-03-25 18:47:20 +01006 *
Heiko Carstensb0c632d2008-03-25 18:47:20 +01007 * Author(s): Carsten Otte <cotte@de.ibm.com>
8 */
9
10
11#ifndef ASM_KVM_HOST_H
12#define ASM_KVM_HOST_H
Paolo Bonzini65647302014-08-29 14:01:17 +020013
14#include <linux/types.h>
Christian Borntraegerca872302009-05-12 17:21:49 +020015#include <linux/hrtimer.h>
16#include <linux/interrupt.h>
Paolo Bonzini65647302014-08-29 14:01:17 +020017#include <linux/kvm_types.h>
Heiko Carstensb0c632d2008-03-25 18:47:20 +010018#include <linux/kvm_host.h>
Jens Freimann81aa8efe2013-10-07 16:13:44 +020019#include <linux/kvm.h>
David Hildenbrand9c23a132016-02-17 21:53:33 +010020#include <linux/seqlock.h>
Pierre Morele5282de2019-05-21 17:34:34 +020021#include <linux/module.h>
Heiko Carstensb0c632d2008-03-25 18:47:20 +010022#include <asm/debug.h>
Heiko Carstense86a6ed2009-09-11 10:29:04 +020023#include <asm/cpu.h>
Hendrik Bruecknerb0753902015-10-06 12:25:59 +020024#include <asm/fpu/api.h>
Cornelia Huck841b91c2013-07-15 13:36:01 +020025#include <asm/isc.h>
Fan Zhang4e0b1ab2016-11-29 07:17:55 +010026#include <asm/guarded_storage.h>
Heiko Carstensb0c632d2008-03-25 18:47:20 +010027
Eugene (jno) Dvurechenskibc784cc2015-04-23 16:09:06 +020028#define KVM_S390_BSCA_CPU_SLOTS 64
29#define KVM_S390_ESCA_CPU_SLOTS 248
David Hildenbranda6940672016-08-08 22:39:32 +020030#define KVM_MAX_VCPUS 255
Heiko Carstensb0c632d2008-03-25 18:47:20 +010031
Cornelia Huck84223592013-07-15 13:36:01 +020032/*
Christian Borntraeger77491122020-06-17 10:36:20 +020033 * These seem to be used for allocating ->chip in the routing table, which we
34 * don't use. 1 is as small as we can get to reduce the needed memory. If we
35 * need to look at ->chip later on, we'll need to revisit this.
Cornelia Huck84223592013-07-15 13:36:01 +020036 */
37#define KVM_NR_IRQCHIPS 1
Christian Borntraeger77491122020-06-17 10:36:20 +020038#define KVM_IRQCHIP_NUM_PINS 1
Christian Borntraeger6e9b6222019-05-15 09:59:08 +020039#define KVM_HALT_POLL_NS_DEFAULT 50000
Cornelia Huck84223592013-07-15 13:36:01 +020040
Paolo Bonzini2860c4b2016-01-07 15:05:10 +010041/* s390-specific vcpu->requests bit members */
Andrew Jones23871492017-06-04 14:43:51 +020042#define KVM_REQ_ENABLE_IBS KVM_ARCH_REQ(0)
43#define KVM_REQ_DISABLE_IBS KVM_ARCH_REQ(1)
44#define KVM_REQ_ICPT_OPEREXC KVM_ARCH_REQ(2)
Paolo Bonzini04a7ea02017-06-30 12:38:26 +020045#define KVM_REQ_START_MIGRATION KVM_ARCH_REQ(3)
46#define KVM_REQ_STOP_MIGRATION KVM_ARCH_REQ(4)
David Hildenbrand3194cdb2018-09-25 19:16:17 -040047#define KVM_REQ_VSIE_RESTART KVM_ARCH_REQ(5)
Paolo Bonzini2860c4b2016-01-07 15:05:10 +010048
David Hildenbrandea5f4962014-10-14 15:29:30 +020049#define SIGP_CTRL_C 0x80
50#define SIGP_CTRL_SCN_MASK 0x3f
David Hildenbrand49539192014-02-21 08:59:59 +010051
Eugene (jno) Dvurechenskibc784cc2015-04-23 16:09:06 +020052union bsca_sigp_ctrl {
53 __u8 value;
54 struct {
55 __u8 c : 1;
56 __u8 r : 1;
57 __u8 scn : 6;
58 };
Martin Schwidefsky1cae0252017-06-21 16:49:15 +020059};
Eugene (jno) Dvurechenskibc784cc2015-04-23 16:09:06 +020060
61union esca_sigp_ctrl {
62 __u16 value;
63 struct {
64 __u8 c : 1;
65 __u8 reserved: 7;
66 __u8 scn;
67 };
Martin Schwidefsky1cae0252017-06-21 16:49:15 +020068};
Eugene (jno) Dvurechenskibc784cc2015-04-23 16:09:06 +020069
70struct esca_entry {
71 union esca_sigp_ctrl sigp_ctrl;
72 __u16 reserved1[3];
73 __u64 sda;
74 __u64 reserved2[6];
Martin Schwidefsky1cae0252017-06-21 16:49:15 +020075};
Eugene (jno) Dvurechenskibc784cc2015-04-23 16:09:06 +020076
77struct bsca_entry {
David Hildenbrandea5f4962014-10-14 15:29:30 +020078 __u8 reserved0;
Eugene (jno) Dvurechenskibc784cc2015-04-23 16:09:06 +020079 union bsca_sigp_ctrl sigp_ctrl;
David Hildenbrandea5f4962014-10-14 15:29:30 +020080 __u16 reserved[3];
Heiko Carstensb0c632d2008-03-25 18:47:20 +010081 __u64 sda;
82 __u64 reserved2[2];
Martin Schwidefsky1cae0252017-06-21 16:49:15 +020083};
Heiko Carstensb0c632d2008-03-25 18:47:20 +010084
Heiko Carstens8a2422342014-01-10 14:33:28 +010085union ipte_control {
86 unsigned long val;
87 struct {
88 unsigned long k : 1;
89 unsigned long kh : 31;
90 unsigned long kg : 32;
91 };
92};
Heiko Carstensb0c632d2008-03-25 18:47:20 +010093
Eugene (jno) Dvurechenskibc784cc2015-04-23 16:09:06 +020094struct bsca_block {
Heiko Carstens8a2422342014-01-10 14:33:28 +010095 union ipte_control ipte_control;
Heiko Carstensb0c632d2008-03-25 18:47:20 +010096 __u64 reserved[5];
97 __u64 mcn;
98 __u64 reserved2;
Eugene (jno) Dvurechenskibc784cc2015-04-23 16:09:06 +020099 struct bsca_entry cpu[KVM_S390_BSCA_CPU_SLOTS];
Martin Schwidefsky1cae0252017-06-21 16:49:15 +0200100};
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100101
Eugene (jno) Dvurechenskibc784cc2015-04-23 16:09:06 +0200102struct esca_block {
103 union ipte_control ipte_control;
104 __u64 reserved1[7];
105 __u64 mcn[4];
106 __u64 reserved2[20];
107 struct esca_entry cpu[KVM_S390_ESCA_CPU_SLOTS];
Martin Schwidefsky1cae0252017-06-21 16:49:15 +0200108};
Eugene (jno) Dvurechenskibc784cc2015-04-23 16:09:06 +0200109
QingFeng Haoda72ca42017-06-07 11:41:19 +0200110/*
111 * This struct is used to store some machine check info from lowcore
112 * for machine checks that happen while the guest is running.
113 * This info in host's lowcore might be overwritten by a second machine
114 * check from host when host is in the machine check's high-level handling.
115 * The size is 24 bytes.
116 */
117struct mcck_volatile_info {
118 __u64 mcic;
119 __u64 failing_storage_address;
120 __u32 ext_damage_code;
121 __u32 reserved;
122};
123
Janosch Frankcca00eb2020-01-31 05:02:01 -0500124#define CR0_INITIAL_MASK (CR0_UNUSED_56 | CR0_INTERRUPT_KEY_SUBMASK | \
125 CR0_MEASUREMENT_ALERT_SUBMASK)
126#define CR14_INITIAL_MASK (CR14_UNUSED_32 | CR14_UNUSED_33 | \
127 CR14_EXTERNAL_DAMAGE_SUBMASK)
128
Janosch Frank19e12272019-04-02 09:21:06 +0200129#define SIDAD_SIZE_MASK 0xff
130#define sida_origin(sie_block) \
131 ((sie_block)->sidad & PAGE_MASK)
132#define sida_size(sie_block) \
133 ((((sie_block)->sidad & SIDAD_SIZE_MASK) + 1) * PAGE_SIZE)
134
Cornelia Huck9e6dabe2011-11-17 11:00:41 +0100135#define CPUSTAT_STOPPED 0x80000000
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100136#define CPUSTAT_WAIT 0x10000000
137#define CPUSTAT_ECALL_PEND 0x08000000
138#define CPUSTAT_STOP_INT 0x04000000
139#define CPUSTAT_IO_INT 0x02000000
140#define CPUSTAT_EXT_INT 0x01000000
141#define CPUSTAT_RUNNING 0x00800000
142#define CPUSTAT_RETAINED 0x00400000
143#define CPUSTAT_TIMING_SUB 0x00020000
144#define CPUSTAT_SIE_SUB 0x00010000
145#define CPUSTAT_RRF 0x00008000
146#define CPUSTAT_SLSV 0x00004000
147#define CPUSTAT_SLSR 0x00002000
148#define CPUSTAT_ZARCH 0x00000800
149#define CPUSTAT_MCDS 0x00000100
Farhan Ali730cd632017-02-24 16:12:56 -0500150#define CPUSTAT_KSS 0x00000200
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100151#define CPUSTAT_SM 0x00000080
David Hildenbrand8ad35752014-03-14 11:00:21 +0100152#define CPUSTAT_IBS 0x00000040
Guenther Hutzl53df84f2015-02-18 11:13:03 +0100153#define CPUSTAT_GED2 0x00000010
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100154#define CPUSTAT_G 0x00000008
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +0200155#define CPUSTAT_GED 0x00000004
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100156#define CPUSTAT_J 0x00000002
157#define CPUSTAT_P 0x00000001
158
Christian Borntraeger180c12f2008-06-27 15:05:40 +0200159struct kvm_s390_sie_block {
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100160 atomic_t cpuflags; /* 0x0000 */
Michael Muellerfda902c2014-05-13 16:58:30 +0200161 __u32 : 1; /* 0x0004 */
162 __u32 prefix : 18;
Michael Mueller658b6ed2015-02-02 15:49:35 +0100163 __u32 : 1;
164 __u32 ibc : 12;
Christian Borntraeger95d38fd2013-05-17 14:41:34 +0200165 __u8 reserved08[4]; /* 0x0008 */
166#define PROG_IN_SIE (1<<0)
167 __u32 prog0c; /* 0x000c */
Janosch Frank29b40f12019-09-30 04:19:18 -0400168 union {
169 __u8 reserved10[16]; /* 0x0010 */
170 struct {
171 __u64 pv_handle_cpu;
172 __u64 pv_handle_config;
173 };
174 };
Christian Borntraeger8e236542015-04-09 13:49:04 +0200175#define PROG_BLOCK_SIE (1<<0)
176#define PROG_REQUEST (1<<1)
Christian Borntraeger49b99e12013-05-17 14:41:35 +0200177 atomic_t prog20; /* 0x0020 */
178 __u8 reserved24[4]; /* 0x0024 */
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100179 __u64 cputm; /* 0x0028 */
180 __u64 ckc; /* 0x0030 */
181 __u64 epoch; /* 0x0038 */
David Hildenbranda3508fb2015-07-08 13:19:48 +0200182 __u32 svcc; /* 0x0040 */
Carsten Otteba5c1e92008-03-25 18:47:26 +0100183#define LCTL_CR0 0x8000
Cornelia Huckd8346b72012-12-20 15:32:08 +0100184#define LCTL_CR6 0x0200
David Hildenbrand27291e22014-01-23 12:26:52 +0100185#define LCTL_CR9 0x0040
186#define LCTL_CR10 0x0020
187#define LCTL_CR11 0x0010
Cornelia Huck48a3e952012-12-20 15:32:09 +0100188#define LCTL_CR14 0x0002
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100189 __u16 lctl; /* 0x0044 */
190 __s16 icpua; /* 0x0046 */
Janosch Frank95ca2cb2016-05-23 15:11:58 +0200191#define ICTL_OPEREXC 0x80000000
David Hildenbrand27291e22014-01-23 12:26:52 +0100192#define ICTL_PINT 0x20000000
193#define ICTL_LPSW 0x00400000
194#define ICTL_STCTL 0x00040000
195#define ICTL_ISKE 0x00004000
196#define ICTL_SSKE 0x00002000
197#define ICTL_RRBE 0x00001000
Matthew Rosato5a5e6532013-01-29 11:48:20 -0500198#define ICTL_TPROT 0x00000200
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100199 __u32 ictl; /* 0x0048 */
David Hildenbrand0c9d8682017-03-13 11:48:28 +0100200#define ECA_CEI 0x80000000
201#define ECA_IB 0x40000000
202#define ECA_SIGPI 0x10000000
203#define ECA_MVPGI 0x01000000
Michael Mueller19114be2017-05-30 14:26:02 +0200204#define ECA_AIV 0x00200000
David Hildenbrand0c9d8682017-03-13 11:48:28 +0100205#define ECA_VX 0x00020000
206#define ECA_PROTEXCI 0x00002000
Tony Krowiake585b242018-09-25 19:16:18 -0400207#define ECA_APIE 0x00000008
David Hildenbrand0c9d8682017-03-13 11:48:28 +0100208#define ECA_SII 0x00000001
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100209 __u32 eca; /* 0x004c */
David Hildenbrand87128362014-03-03 10:55:13 +0100210#define ICPT_INST 0x04
211#define ICPT_PROGI 0x08
212#define ICPT_INSTPROGI 0x0C
Farhan Ali947b8972017-03-17 09:59:32 -0400213#define ICPT_EXTREQ 0x10
David Hildenbranda3508fb2015-07-08 13:19:48 +0200214#define ICPT_EXTINT 0x14
Farhan Ali947b8972017-03-17 09:59:32 -0400215#define ICPT_IOREQ 0x18
216#define ICPT_WAIT 0x1c
David Hildenbranda3508fb2015-07-08 13:19:48 +0200217#define ICPT_VALIDITY 0x20
218#define ICPT_STOP 0x28
David Hildenbrand87128362014-03-03 10:55:13 +0100219#define ICPT_OPEREXC 0x2C
220#define ICPT_PARTEXEC 0x38
221#define ICPT_IOINST 0x40
Farhan Ali730cd632017-02-24 16:12:56 -0500222#define ICPT_KSS 0x5c
Janosch Frank49710db2019-04-01 10:54:09 +0200223#define ICPT_MCHKREQ 0x60
224#define ICPT_INT_ENABLE 0x64
Janosch Frankda24a0c2019-10-22 04:42:52 -0400225#define ICPT_PV_INSTR 0x68
226#define ICPT_PV_NOTIFY 0x6c
Janosch Frankd2749952019-09-17 14:53:53 +0200227#define ICPT_PV_PREF 0x70
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100228 __u8 icptcode; /* 0x0050 */
Thomas Huth04b41ac2014-11-12 17:13:29 +0100229 __u8 icptstatus; /* 0x0051 */
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100230 __u16 ihcpu; /* 0x0052 */
Michael Mueller201ae982019-02-18 16:48:20 +0100231 __u8 reserved54; /* 0x0054 */
232#define IICTL_CODE_NONE 0x00
233#define IICTL_CODE_MCHK 0x01
234#define IICTL_CODE_EXT 0x02
235#define IICTL_CODE_IO 0x03
236#define IICTL_CODE_RESTART 0x04
237#define IICTL_CODE_SPECIFICATION 0x10
238#define IICTL_CODE_OPERAND 0x11
239 __u8 iictl; /* 0x0055 */
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100240 __u16 ipa; /* 0x0056 */
241 __u32 ipb; /* 0x0058 */
242 __u32 scaoh; /* 0x005c */
Christian Borntraeger35b3fde2018-01-17 14:44:34 +0100243#define FPF_BPBC 0x20
244 __u8 fpf; /* 0x0060 */
Fan Zhang4e0b1ab2016-11-29 07:17:55 +0100245#define ECB_GS 0x40
David Hildenbrand0c9d8682017-03-13 11:48:28 +0100246#define ECB_TE 0x10
247#define ECB_SRSI 0x04
248#define ECB_HOSTPROTINT 0x02
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100249 __u8 ecb; /* 0x0061 */
David Hildenbrand0c9d8682017-03-13 11:48:28 +0100250#define ECB2_CMMA 0x80
251#define ECB2_IEP 0x20
252#define ECB2_PFMFI 0x08
253#define ECB2_ESCA 0x04
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +0200254 __u8 ecb2; /* 0x0062 */
Tony Krowiaka374e892014-09-03 10:13:53 +0200255#define ECB3_DEA 0x08
David Hildenbrand0c9d8682017-03-13 11:48:28 +0100256#define ECB3_AES 0x04
257#define ECB3_RI 0x01
Tony Krowiaka374e892014-09-03 10:13:53 +0200258 __u8 ecb3; /* 0x0063 */
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100259 __u32 scaol; /* 0x0064 */
Janosch Frank29b40f12019-09-30 04:19:18 -0400260 __u8 sdf; /* 0x0068 */
Collin L. Walling8fa16962016-07-26 15:29:44 -0400261 __u8 epdx; /* 0x0069 */
Collin Walling23a60f82020-06-22 11:46:36 -0400262 __u8 cpnc; /* 0x006a */
263 __u8 reserved6b; /* 0x006b */
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100264 __u32 todpr; /* 0x006c */
Michael Mueller4b9f9522017-06-23 13:51:25 +0200265#define GISA_FORMAT1 0x00000001
Michael Mueller19114be2017-05-30 14:26:02 +0200266 __u32 gd; /* 0x0070 */
267 __u8 reserved74[12]; /* 0x0074 */
David Hildenbrandefed1102015-04-16 12:32:41 +0200268 __u64 mso; /* 0x0080 */
269 __u64 msl; /* 0x0088 */
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100270 psw_t gpsw; /* 0x0090 */
271 __u64 gg14; /* 0x00a0 */
272 __u64 gg15; /* 0x00a8 */
Collin Walling67d49d52018-08-31 12:51:19 -0400273 __u8 reservedb0[8]; /* 0x00b0 */
274#define HPID_KVM 0x4
275#define HPID_VSIE 0x5
276 __u8 hpid; /* 0x00b8 */
Michael Mueller201ae982019-02-18 16:48:20 +0100277 __u8 reservedb9[7]; /* 0x00b9 */
278 union {
279 struct {
280 __u32 eiparams; /* 0x00c0 */
281 __u16 extcpuaddr; /* 0x00c4 */
282 __u16 eic; /* 0x00c6 */
283 };
284 __u64 mcic; /* 0x00c0 */
285 } __packed;
Thomas Huthf14d82e2014-01-15 16:46:07 +0100286 __u32 reservedc8; /* 0x00c8 */
Michael Mueller201ae982019-02-18 16:48:20 +0100287 union {
288 struct {
289 __u16 pgmilc; /* 0x00cc */
290 __u16 iprcc; /* 0x00ce */
291 };
292 __u32 edc; /* 0x00cc */
293 } __packed;
294 union {
295 struct {
296 __u32 dxc; /* 0x00d0 */
297 __u16 mcn; /* 0x00d4 */
298 __u8 perc; /* 0x00d6 */
299 __u8 peratmid; /* 0x00d7 */
300 };
301 __u64 faddr; /* 0x00d0 */
302 } __packed;
David Hildenbrand439716a2014-03-03 10:54:33 +0100303 __u64 peraddr; /* 0x00d8 */
304 __u8 eai; /* 0x00e0 */
305 __u8 peraid; /* 0x00e1 */
306 __u8 oai; /* 0x00e2 */
307 __u8 armid; /* 0x00e3 */
308 __u8 reservede4[4]; /* 0x00e4 */
Michael Mueller201ae982019-02-18 16:48:20 +0100309 union {
310 __u64 tecmc; /* 0x00e8 */
311 struct {
312 __u16 subchannel_id; /* 0x00e8 */
313 __u16 subchannel_nr; /* 0x00ea */
314 __u32 io_int_parm; /* 0x00ec */
315 __u32 io_int_word; /* 0x00f0 */
316 };
317 } __packed;
318 __u8 reservedf4[8]; /* 0x00f4 */
Tony Krowiake585b242018-09-25 19:16:18 -0400319#define CRYCB_FORMAT_MASK 0x00000003
Tony Krowiak258287c2018-09-25 19:16:26 -0400320#define CRYCB_FORMAT0 0x00000000
Tony Krowiak5102ee82014-06-27 14:46:01 -0400321#define CRYCB_FORMAT1 0x00000001
Tony Krowiak45c9b472015-01-13 11:33:26 -0500322#define CRYCB_FORMAT2 0x00000003
Tony Krowiak5102ee82014-06-27 14:46:01 -0400323 __u32 crycbd; /* 0x00fc */
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100324 __u64 gcr[16]; /* 0x0100 */
Janosch Frank19e12272019-04-02 09:21:06 +0200325 union {
326 __u64 gbea; /* 0x0180 */
327 __u64 sidad;
328 };
Fan Zhang4e0b1ab2016-11-29 07:17:55 +0100329 __u8 reserved188[8]; /* 0x0188 */
330 __u64 sdnxo; /* 0x0190 */
331 __u8 reserved198[8]; /* 0x0198 */
Christian Borntraegeref50f7a2009-06-23 17:24:07 +0200332 __u32 fac; /* 0x01a0 */
Konstantin Weitzb31288f2013-04-17 17:36:29 +0200333 __u8 reserved1a4[20]; /* 0x01a4 */
334 __u64 cbrlo; /* 0x01b8 */
Eric Farman13211ea2014-04-30 13:39:46 -0400335 __u8 reserved1c0[8]; /* 0x01c0 */
David Hildenbrand0c9d8682017-03-13 11:48:28 +0100336#define ECD_HOSTREGMGMT 0x20000000
Collin L. Walling8fa16962016-07-26 15:29:44 -0400337#define ECD_MEF 0x08000000
Christian Borntraegera3da7b42018-03-08 16:08:49 +0000338#define ECD_ETOKENF 0x02000000
Christian Borntraeger8ec2fa52019-04-03 03:00:35 -0400339#define ECD_ECC 0x00200000
Eric Farman13211ea2014-04-30 13:39:46 -0400340 __u32 ecd; /* 0x01c8 */
341 __u8 reserved1cc[18]; /* 0x01cc */
Christian Borntraeger672550f2014-02-10 15:32:19 +0100342 __u64 pp; /* 0x01de */
343 __u8 reserved1e6[2]; /* 0x01e6 */
Michael Mueller7feb6bb2013-06-28 13:30:24 +0200344 __u64 itdba; /* 0x01e8 */
Fan Zhangc6e5f162016-01-07 18:24:29 +0800345 __u64 riccbd; /* 0x01f0 */
David Hildenbrandc9bc1ea2015-11-25 11:08:32 +0100346 __u64 gvrd; /* 0x01f8 */
Christian Borntraegerf3dd18d2020-03-11 09:30:56 +0100347} __packed __aligned(512);
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100348
Michael Mueller7feb6bb2013-06-28 13:30:24 +0200349struct kvm_s390_itdb {
350 __u8 data[256];
Martin Schwidefsky1cae0252017-06-21 16:49:15 +0200351};
Michael Mueller7feb6bb2013-06-28 13:30:24 +0200352
353struct sie_page {
354 struct kvm_s390_sie_block sie_block;
QingFeng Haoda72ca42017-06-07 11:41:19 +0200355 struct mcck_volatile_info mcck_info; /* 0x0200 */
Janosch Frankc8aac232019-05-08 15:52:00 +0200356 __u8 reserved218[360]; /* 0x0218 */
357 __u64 pv_grregs[16]; /* 0x0380 */
358 __u8 reserved400[512]; /* 0x0400 */
Michael Mueller7feb6bb2013-06-28 13:30:24 +0200359 struct kvm_s390_itdb itdb; /* 0x0600 */
David Hildenbrandefa48162016-01-14 22:15:08 +0100360 __u8 reserved700[2304]; /* 0x0700 */
Martin Schwidefsky1cae0252017-06-21 16:49:15 +0200361};
Michael Mueller7feb6bb2013-06-28 13:30:24 +0200362
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100363struct kvm_vcpu_stat {
Jing Zhang0193cc92021-06-18 22:27:03 +0000364 struct kvm_vcpu_stat_generic generic;
Suraj Jitindar Singh8a7e75d2016-08-02 14:03:22 +1000365 u64 exit_userspace;
366 u64 exit_null;
367 u64 exit_external_request;
Christian Borntraegera5e0acea92018-02-23 07:57:33 +0000368 u64 exit_io_request;
Suraj Jitindar Singh8a7e75d2016-08-02 14:03:22 +1000369 u64 exit_external_interrupt;
370 u64 exit_stop_request;
371 u64 exit_validity;
372 u64 exit_instruction;
373 u64 exit_pei;
Christian Borntraeger8b905d22019-03-05 05:30:02 -0500374 u64 halt_no_poll_steal;
Suraj Jitindar Singh8a7e75d2016-08-02 14:03:22 +1000375 u64 instruction_lctl;
376 u64 instruction_lctlg;
377 u64 instruction_stctl;
378 u64 instruction_stctg;
379 u64 exit_program_interruption;
380 u64 exit_instr_and_program;
381 u64 exit_operation_exception;
Christian Borntraegerccc40c52018-03-08 12:48:05 +0000382 u64 deliver_ckc;
383 u64 deliver_cputm;
Suraj Jitindar Singh8a7e75d2016-08-02 14:03:22 +1000384 u64 deliver_external_call;
385 u64 deliver_emergency_signal;
386 u64 deliver_service_signal;
Christian Borntraegerccc40c52018-03-08 12:48:05 +0000387 u64 deliver_virtio;
Suraj Jitindar Singh8a7e75d2016-08-02 14:03:22 +1000388 u64 deliver_stop_signal;
389 u64 deliver_prefix_signal;
390 u64 deliver_restart_signal;
Christian Borntraegerccc40c52018-03-08 12:48:05 +0000391 u64 deliver_program;
392 u64 deliver_io;
QingFeng Hao32de0742018-03-02 11:56:47 +0100393 u64 deliver_machine_check;
Suraj Jitindar Singh8a7e75d2016-08-02 14:03:22 +1000394 u64 exit_wait_state;
Christian Borntraegerccc40c52018-03-08 12:48:05 +0000395 u64 inject_ckc;
396 u64 inject_cputm;
397 u64 inject_external_call;
398 u64 inject_emergency_signal;
399 u64 inject_mchk;
400 u64 inject_pfault_init;
401 u64 inject_program;
402 u64 inject_restart;
403 u64 inject_set_prefix;
404 u64 inject_stop_signal;
Christian Borntraegera37cb072018-01-23 13:28:40 +0100405 u64 instruction_epsw;
406 u64 instruction_gs;
407 u64 instruction_io_other;
408 u64 instruction_lpsw;
409 u64 instruction_lpswe;
Suraj Jitindar Singh8a7e75d2016-08-02 14:03:22 +1000410 u64 instruction_pfmf;
Christian Borntraegera37cb072018-01-23 13:28:40 +0100411 u64 instruction_ptff;
412 u64 instruction_sck;
413 u64 instruction_sckpf;
Suraj Jitindar Singh8a7e75d2016-08-02 14:03:22 +1000414 u64 instruction_stidp;
415 u64 instruction_spx;
416 u64 instruction_stpx;
417 u64 instruction_stap;
Christian Borntraegera37cb072018-01-23 13:28:40 +0100418 u64 instruction_iske;
419 u64 instruction_ri;
420 u64 instruction_rrbe;
421 u64 instruction_sske;
Suraj Jitindar Singh8a7e75d2016-08-02 14:03:22 +1000422 u64 instruction_ipte_interlock;
Suraj Jitindar Singh8a7e75d2016-08-02 14:03:22 +1000423 u64 instruction_stsi;
424 u64 instruction_stfl;
Christian Borntraegera37cb072018-01-23 13:28:40 +0100425 u64 instruction_tb;
426 u64 instruction_tpi;
Suraj Jitindar Singh8a7e75d2016-08-02 14:03:22 +1000427 u64 instruction_tprot;
Christian Borntraegera37cb072018-01-23 13:28:40 +0100428 u64 instruction_tsch;
Suraj Jitindar Singh8a7e75d2016-08-02 14:03:22 +1000429 u64 instruction_sie;
430 u64 instruction_essa;
431 u64 instruction_sthyi;
432 u64 instruction_sigp_sense;
433 u64 instruction_sigp_sense_running;
434 u64 instruction_sigp_external_call;
435 u64 instruction_sigp_emergency;
436 u64 instruction_sigp_cond_emergency;
437 u64 instruction_sigp_start;
438 u64 instruction_sigp_stop;
439 u64 instruction_sigp_stop_store_status;
440 u64 instruction_sigp_store_status;
441 u64 instruction_sigp_store_adtl_status;
442 u64 instruction_sigp_arch;
443 u64 instruction_sigp_prefix;
444 u64 instruction_sigp_restart;
445 u64 instruction_sigp_init_cpu_reset;
446 u64 instruction_sigp_cpu_reset;
447 u64 instruction_sigp_unknown;
Christian Borntraegerbb000f642021-07-26 17:01:08 +0200448 u64 instruction_diagnose_10;
449 u64 instruction_diagnose_44;
450 u64 instruction_diagnose_9c;
451 u64 diag_9c_ignored;
452 u64 diag_9c_forward;
453 u64 instruction_diagnose_258;
454 u64 instruction_diagnose_308;
455 u64 instruction_diagnose_500;
456 u64 instruction_diagnose_other;
Christian Borntraeger50a05be2020-11-25 10:06:58 +0100457 u64 pfault_sync;
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100458};
459
Jens Freimannbcd84682014-02-11 11:07:05 +0100460#define PGM_OPERATION 0x01
461#define PGM_PRIVILEGED_OP 0x02
462#define PGM_EXECUTE 0x03
463#define PGM_PROTECTION 0x04
464#define PGM_ADDRESSING 0x05
465#define PGM_SPECIFICATION 0x06
466#define PGM_DATA 0x07
467#define PGM_FIXED_POINT_OVERFLOW 0x08
468#define PGM_FIXED_POINT_DIVIDE 0x09
469#define PGM_DECIMAL_OVERFLOW 0x0a
470#define PGM_DECIMAL_DIVIDE 0x0b
471#define PGM_HFP_EXPONENT_OVERFLOW 0x0c
472#define PGM_HFP_EXPONENT_UNDERFLOW 0x0d
473#define PGM_HFP_SIGNIFICANCE 0x0e
474#define PGM_HFP_DIVIDE 0x0f
475#define PGM_SEGMENT_TRANSLATION 0x10
476#define PGM_PAGE_TRANSLATION 0x11
477#define PGM_TRANSLATION_SPEC 0x12
478#define PGM_SPECIAL_OPERATION 0x13
479#define PGM_OPERAND 0x15
480#define PGM_TRACE_TABEL 0x16
Eric Farman403c8642015-02-02 15:01:06 -0500481#define PGM_VECTOR_PROCESSING 0x1b
Jens Freimannbcd84682014-02-11 11:07:05 +0100482#define PGM_SPACE_SWITCH 0x1c
483#define PGM_HFP_SQUARE_ROOT 0x1d
484#define PGM_PC_TRANSLATION_SPEC 0x1f
485#define PGM_AFX_TRANSLATION 0x20
486#define PGM_ASX_TRANSLATION 0x21
487#define PGM_LX_TRANSLATION 0x22
488#define PGM_EX_TRANSLATION 0x23
489#define PGM_PRIMARY_AUTHORITY 0x24
490#define PGM_SECONDARY_AUTHORITY 0x25
491#define PGM_LFX_TRANSLATION 0x26
492#define PGM_LSX_TRANSLATION 0x27
493#define PGM_ALET_SPECIFICATION 0x28
494#define PGM_ALEN_TRANSLATION 0x29
495#define PGM_ALE_SEQUENCE 0x2a
496#define PGM_ASTE_VALIDITY 0x2b
497#define PGM_ASTE_SEQUENCE 0x2c
498#define PGM_EXTENDED_AUTHORITY 0x2d
499#define PGM_LSTE_SEQUENCE 0x2e
500#define PGM_ASTE_INSTANCE 0x2f
501#define PGM_STACK_FULL 0x30
502#define PGM_STACK_EMPTY 0x31
503#define PGM_STACK_SPECIFICATION 0x32
504#define PGM_STACK_TYPE 0x33
505#define PGM_STACK_OPERATION 0x34
506#define PGM_ASCE_TYPE 0x38
507#define PGM_REGION_FIRST_TRANS 0x39
508#define PGM_REGION_SECOND_TRANS 0x3a
509#define PGM_REGION_THIRD_TRANS 0x3b
510#define PGM_MONITOR 0x40
511#define PGM_PER 0x80
512#define PGM_CRYPTO_OPERATION 0x119
Carsten Otteba5c1e92008-03-25 18:47:26 +0100513
Michael Muellerc7901a62017-06-29 18:39:27 +0200514/* irq types in ascend order of priorities */
Jens Freimannc0e61592013-07-29 20:54:15 +0200515enum irq_types {
Michael Muellerc7901a62017-06-29 18:39:27 +0200516 IRQ_PEND_SET_PREFIX = 0,
Jens Freimannc0e61592013-07-29 20:54:15 +0200517 IRQ_PEND_RESTART,
Michael Muellerc7901a62017-06-29 18:39:27 +0200518 IRQ_PEND_SIGP_STOP,
519 IRQ_PEND_IO_ISC_7,
520 IRQ_PEND_IO_ISC_6,
521 IRQ_PEND_IO_ISC_5,
522 IRQ_PEND_IO_ISC_4,
523 IRQ_PEND_IO_ISC_3,
524 IRQ_PEND_IO_ISC_2,
525 IRQ_PEND_IO_ISC_1,
526 IRQ_PEND_IO_ISC_0,
527 IRQ_PEND_VIRTIO,
528 IRQ_PEND_PFAULT_DONE,
529 IRQ_PEND_PFAULT_INIT,
530 IRQ_PEND_EXT_HOST,
531 IRQ_PEND_EXT_SERVICE,
Christian Borntraeger0890dde2020-02-03 09:13:37 +0100532 IRQ_PEND_EXT_SERVICE_EV,
Michael Muellerc7901a62017-06-29 18:39:27 +0200533 IRQ_PEND_EXT_TIMING,
534 IRQ_PEND_EXT_CPU_TIMER,
535 IRQ_PEND_EXT_CLOCK_COMP,
536 IRQ_PEND_EXT_EXTERNAL,
537 IRQ_PEND_EXT_EMERGENCY,
538 IRQ_PEND_EXT_MALFUNC,
539 IRQ_PEND_EXT_IRQ_KEY,
540 IRQ_PEND_MCHK_REP,
541 IRQ_PEND_PROG,
542 IRQ_PEND_SVC,
543 IRQ_PEND_MCHK_EX,
Jens Freimannc0e61592013-07-29 20:54:15 +0200544 IRQ_PEND_COUNT
545};
546
Jens Freimann6d3da242013-07-03 15:18:35 +0200547/* We have 2M for virtio device descriptor pages. Smallest amount of
548 * memory per page is 24 bytes (1 queue), so (2048*1024) / 24 = 87381
549 */
550#define KVM_S390_MAX_VIRTIO_IRQS 87381
551
Jens Freimannc0e61592013-07-29 20:54:15 +0200552/*
553 * Repressible (non-floating) machine check interrupts
554 * subclass bits in MCIC
555 */
556#define MCHK_EXTD_BIT 58
557#define MCHK_DEGR_BIT 56
558#define MCHK_WARN_BIT 55
559#define MCHK_REP_MASK ((1UL << MCHK_DEGR_BIT) | \
560 (1UL << MCHK_EXTD_BIT) | \
561 (1UL << MCHK_WARN_BIT))
562
563/* Exigent machine check interrupts subclass bits in MCIC */
564#define MCHK_SD_BIT 63
565#define MCHK_PD_BIT 62
566#define MCHK_EX_MASK ((1UL << MCHK_SD_BIT) | (1UL << MCHK_PD_BIT))
567
568#define IRQ_PEND_EXT_MASK ((1UL << IRQ_PEND_EXT_IRQ_KEY) | \
569 (1UL << IRQ_PEND_EXT_CLOCK_COMP) | \
570 (1UL << IRQ_PEND_EXT_CPU_TIMER) | \
571 (1UL << IRQ_PEND_EXT_MALFUNC) | \
572 (1UL << IRQ_PEND_EXT_EMERGENCY) | \
573 (1UL << IRQ_PEND_EXT_EXTERNAL) | \
574 (1UL << IRQ_PEND_EXT_TIMING) | \
575 (1UL << IRQ_PEND_EXT_HOST) | \
576 (1UL << IRQ_PEND_EXT_SERVICE) | \
Christian Borntraeger0890dde2020-02-03 09:13:37 +0100577 (1UL << IRQ_PEND_EXT_SERVICE_EV) | \
Jens Freimannc0e61592013-07-29 20:54:15 +0200578 (1UL << IRQ_PEND_VIRTIO) | \
579 (1UL << IRQ_PEND_PFAULT_INIT) | \
580 (1UL << IRQ_PEND_PFAULT_DONE))
581
582#define IRQ_PEND_IO_MASK ((1UL << IRQ_PEND_IO_ISC_0) | \
583 (1UL << IRQ_PEND_IO_ISC_1) | \
584 (1UL << IRQ_PEND_IO_ISC_2) | \
585 (1UL << IRQ_PEND_IO_ISC_3) | \
586 (1UL << IRQ_PEND_IO_ISC_4) | \
587 (1UL << IRQ_PEND_IO_ISC_5) | \
588 (1UL << IRQ_PEND_IO_ISC_6) | \
589 (1UL << IRQ_PEND_IO_ISC_7))
590
591#define IRQ_PEND_MCHK_MASK ((1UL << IRQ_PEND_MCHK_REP) | \
592 (1UL << IRQ_PEND_MCHK_EX))
593
Michael Mueller201ae982019-02-18 16:48:20 +0100594#define IRQ_PEND_EXT_II_MASK ((1UL << IRQ_PEND_EXT_CPU_TIMER) | \
595 (1UL << IRQ_PEND_EXT_CLOCK_COMP) | \
596 (1UL << IRQ_PEND_EXT_EMERGENCY) | \
597 (1UL << IRQ_PEND_EXT_EXTERNAL) | \
Christian Borntraeger0890dde2020-02-03 09:13:37 +0100598 (1UL << IRQ_PEND_EXT_SERVICE) | \
599 (1UL << IRQ_PEND_EXT_SERVICE_EV))
Michael Mueller201ae982019-02-18 16:48:20 +0100600
Christian Borntraeger180c12f2008-06-27 15:05:40 +0200601struct kvm_s390_interrupt_info {
Carsten Otteba5c1e92008-03-25 18:47:26 +0100602 struct list_head list;
603 u64 type;
604 union {
Christian Borntraeger180c12f2008-06-27 15:05:40 +0200605 struct kvm_s390_io_info io;
606 struct kvm_s390_ext_info ext;
607 struct kvm_s390_pgm_info pgm;
Christian Ehrhardt8bb3a2e2011-07-24 10:48:31 +0200608 struct kvm_s390_emerg_info emerg;
Christian Ehrhardt7697e71f2011-10-18 12:27:15 +0200609 struct kvm_s390_extcall_info extcall;
Christian Borntraeger180c12f2008-06-27 15:05:40 +0200610 struct kvm_s390_prefix_info prefix;
David Hildenbrand28225452014-10-15 16:48:16 +0200611 struct kvm_s390_stop_info stop;
Cornelia Huck48a3e952012-12-20 15:32:09 +0100612 struct kvm_s390_mchk_info mchk;
Carsten Otteba5c1e92008-03-25 18:47:26 +0100613 };
614};
615
Jens Freimannc0e61592013-07-29 20:54:15 +0200616struct kvm_s390_irq_payload {
617 struct kvm_s390_io_info io;
618 struct kvm_s390_ext_info ext;
619 struct kvm_s390_pgm_info pgm;
620 struct kvm_s390_emerg_info emerg;
621 struct kvm_s390_extcall_info extcall;
622 struct kvm_s390_prefix_info prefix;
David Hildenbrand28225452014-10-15 16:48:16 +0200623 struct kvm_s390_stop_info stop;
Jens Freimannc0e61592013-07-29 20:54:15 +0200624 struct kvm_s390_mchk_info mchk;
625};
626
Christian Borntraeger180c12f2008-06-27 15:05:40 +0200627struct kvm_s390_local_interrupt {
Carsten Otteba5c1e92008-03-25 18:47:26 +0100628 spinlock_t lock;
Jens Freimannc0e61592013-07-29 20:54:15 +0200629 DECLARE_BITMAP(sigp_emerg_pending, KVM_MAX_VCPUS);
630 struct kvm_s390_irq_payload irq;
631 unsigned long pending_irqs;
Carsten Otteba5c1e92008-03-25 18:47:26 +0100632};
633
Jens Freimann6d3da242013-07-03 15:18:35 +0200634#define FIRQ_LIST_IO_ISC_0 0
635#define FIRQ_LIST_IO_ISC_1 1
636#define FIRQ_LIST_IO_ISC_2 2
637#define FIRQ_LIST_IO_ISC_3 3
638#define FIRQ_LIST_IO_ISC_4 4
639#define FIRQ_LIST_IO_ISC_5 5
640#define FIRQ_LIST_IO_ISC_6 6
641#define FIRQ_LIST_IO_ISC_7 7
642#define FIRQ_LIST_PFAULT 8
643#define FIRQ_LIST_VIRTIO 9
644#define FIRQ_LIST_COUNT 10
645#define FIRQ_CNTR_IO 0
646#define FIRQ_CNTR_SERVICE 1
647#define FIRQ_CNTR_VIRTIO 2
648#define FIRQ_CNTR_PFAULT 3
649#define FIRQ_MAX_COUNT 4
650
Fei Li51978392017-02-17 17:06:26 +0800651/* mask the AIS mode for a given ISC */
652#define AIS_MODE_MASK(isc) (0x80 >> isc)
653
654#define KVM_S390_AIS_MODE_ALL 0
655#define KVM_S390_AIS_MODE_SINGLE 1
656
Christian Borntraeger180c12f2008-06-27 15:05:40 +0200657struct kvm_s390_float_interrupt {
Jens Freimann6d3da242013-07-03 15:18:35 +0200658 unsigned long pending_irqs;
Christian Borntraeger0890dde2020-02-03 09:13:37 +0100659 unsigned long masked_irqs;
Carsten Otteba5c1e92008-03-25 18:47:26 +0100660 spinlock_t lock;
Jens Freimann6d3da242013-07-03 15:18:35 +0200661 struct list_head lists[FIRQ_LIST_COUNT];
662 int counters[FIRQ_MAX_COUNT];
663 struct kvm_s390_mchk_info mchk;
664 struct kvm_s390_ext_info srv_signal;
Carsten Otteba5c1e92008-03-25 18:47:26 +0100665 int next_rr_cpu;
Fei Li51978392017-02-17 17:06:26 +0800666 struct mutex ais_lock;
667 u8 simm;
668 u8 nimm;
Carsten Otteba5c1e92008-03-25 18:47:26 +0100669};
670
David Hildenbrand27291e22014-01-23 12:26:52 +0100671struct kvm_hw_wp_info_arch {
672 unsigned long addr;
673 unsigned long phys_addr;
674 int len;
675 char *old_data;
676};
677
678struct kvm_hw_bp_info_arch {
679 unsigned long addr;
680 int len;
681};
682
683/*
684 * Only the upper 16 bits of kvm_guest_debug->control are arch specific.
685 * Further KVM_GUESTDBG flags which an be used from userspace can be found in
686 * arch/s390/include/uapi/asm/kvm.h
687 */
688#define KVM_GUESTDBG_EXIT_PENDING 0x10000000
689
690#define guestdbg_enabled(vcpu) \
691 (vcpu->guest_debug & KVM_GUESTDBG_ENABLE)
692#define guestdbg_sstep_enabled(vcpu) \
693 (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
694#define guestdbg_hw_bp_enabled(vcpu) \
695 (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)
696#define guestdbg_exit_pending(vcpu) (guestdbg_enabled(vcpu) && \
697 (vcpu->guest_debug & KVM_GUESTDBG_EXIT_PENDING))
698
Maxim Levitskya43b80b2021-04-01 16:54:47 +0300699#define KVM_GUESTDBG_VALID_MASK \
700 (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_SINGLESTEP |\
701 KVM_GUESTDBG_USE_HW_BP | KVM_GUESTDBG_EXIT_PENDING)
702
David Hildenbrand27291e22014-01-23 12:26:52 +0100703struct kvm_guestdbg_info_arch {
704 unsigned long cr0;
705 unsigned long cr9;
706 unsigned long cr10;
707 unsigned long cr11;
708 struct kvm_hw_bp_info_arch *hw_bp_info;
709 struct kvm_hw_wp_info_arch *hw_wp_info;
710 int nr_hw_bp;
711 int nr_hw_wp;
712 unsigned long last_bp;
713};
Carsten Otteba5c1e92008-03-25 18:47:26 +0100714
Janosch Frank29b40f12019-09-30 04:19:18 -0400715struct kvm_s390_pv_vcpu {
716 u64 handle;
717 unsigned long stor_base;
718};
719
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100720struct kvm_vcpu_arch {
Christian Borntraeger180c12f2008-06-27 15:05:40 +0200721 struct kvm_s390_sie_block *sie_block;
David Hildenbrandadbf1692016-05-27 22:03:52 +0200722 /* if vsie is active, currently executed shadow sie control block */
723 struct kvm_s390_sie_block *vsie_block;
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100724 unsigned int host_acrs[NUM_ACRS];
Fan Zhang4e0b1ab2016-11-29 07:17:55 +0100725 struct gs_cb *host_gscb;
Hendrik Brueckner9977e882015-06-10 12:53:42 +0200726 struct fpu host_fpregs;
Christian Borntraeger180c12f2008-06-27 15:05:40 +0200727 struct kvm_s390_local_interrupt local_int;
Christian Borntraegerca872302009-05-12 17:21:49 +0200728 struct hrtimer ckc_timer;
Heiko Carstens1b0462e2014-01-01 16:31:49 +0100729 struct kvm_s390_pgm_info pgm;
Carsten Otte598841c2011-07-24 10:48:21 +0200730 struct gmap *gmap;
David Hildenbrand37d9df92015-03-11 16:47:33 +0100731 /* backup location for the currently enabled gmap when scheduled out */
732 struct gmap *enabled_gmap;
David Hildenbrand27291e22014-01-23 12:26:52 +0100733 struct kvm_guestdbg_info_arch guestdbg;
Dominik Dingel3c038e62013-10-07 17:11:48 +0200734 unsigned long pfault_token;
735 unsigned long pfault_select;
736 unsigned long pfault_compare;
David Hildenbranddb0758b2016-02-15 09:42:25 +0100737 bool cputm_enabled;
David Hildenbrand9c23a132016-02-17 21:53:33 +0100738 /*
739 * The seqcount protects updates to cputm_start and sie_block.cputm,
740 * this way we can have non-blocking reads with consistent values.
741 * Only the owning VCPU thread (vcpu->cpu) is allowed to change these
742 * values and to start/stop/enable/disable cpu timer accounting.
743 */
744 seqcount_t cputm_seqcount;
David Hildenbranddb0758b2016-02-15 09:42:25 +0100745 __u64 cputm_start;
Fan Zhang4e0b1ab2016-11-29 07:17:55 +0100746 bool gs_enabled;
Janosch Frank57cb1982018-07-20 13:51:21 +0100747 bool skey_enabled;
Janosch Frank29b40f12019-09-30 04:19:18 -0400748 struct kvm_s390_pv_vcpu pv;
Collin Walling23a60f82020-06-22 11:46:36 -0400749 union diag318_info diag318_info;
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100750};
751
752struct kvm_vm_stat {
Jing Zhang0193cc92021-06-18 22:27:03 +0000753 struct kvm_vm_stat_generic generic;
Christian Borntraegerccc40c52018-03-08 12:48:05 +0000754 u64 inject_io;
755 u64 inject_float_mchk;
756 u64 inject_pfault_done;
757 u64 inject_service_signal;
758 u64 inject_virtio;
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100759};
760
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900761struct kvm_arch_memory_slot {
762};
763
Cornelia Huck841b91c2013-07-15 13:36:01 +0200764struct s390_map_info {
765 struct list_head list;
766 __u64 guest_addr;
767 __u64 addr;
768 struct page *page;
769};
770
771struct s390_io_adapter {
772 unsigned int id;
773 int isc;
774 bool maskable;
775 bool masked;
776 bool swap;
Fei Li08fab502017-01-19 17:02:26 +0100777 bool suppressible;
Cornelia Huck841b91c2013-07-15 13:36:01 +0200778};
779
780#define MAX_S390_IO_ADAPTERS ((MAX_ISC + 1) * 8)
781#define MAX_S390_ADAPTER_MAPS 256
782
Michael Mueller9d8d5782015-02-02 15:42:51 +0100783/* maximum size of facilities and facility mask is 2k bytes */
784#define S390_ARCH_FAC_LIST_SIZE_BYTE (1<<11)
785#define S390_ARCH_FAC_LIST_SIZE_U64 \
786 (S390_ARCH_FAC_LIST_SIZE_BYTE / sizeof(u64))
787#define S390_ARCH_FAC_MASK_SIZE_BYTE S390_ARCH_FAC_LIST_SIZE_BYTE
788#define S390_ARCH_FAC_MASK_SIZE_U64 \
789 (S390_ARCH_FAC_MASK_SIZE_BYTE / sizeof(u64))
790
Michael Mueller9d8d5782015-02-02 15:42:51 +0100791struct kvm_s390_cpu_model {
David Hildenbrandc54f0d62015-12-02 08:53:52 +0100792 /* facility mask supported by kvm & hosting machine */
793 __u64 fac_mask[S390_ARCH_FAC_LIST_SIZE_U64];
Christian Borntraeger346fa2f2019-02-18 07:48:25 -0500794 struct kvm_s390_vm_cpu_subfunc subfuncs;
David Hildenbrandc54f0d62015-12-02 08:53:52 +0100795 /* facility list requested by guest (in dma page) */
796 __u64 *fac_list;
David Hildenbrand9bb0ec02016-04-04 14:27:51 +0200797 u64 cpuid;
Michael Mueller658b6ed2015-02-02 15:49:35 +0100798 unsigned short ibc;
Michael Mueller9d8d5782015-02-02 15:42:51 +0100799};
800
Pierre Morele5282de2019-05-21 17:34:34 +0200801struct kvm_s390_module_hook {
802 int (*hook)(struct kvm_vcpu *vcpu);
803 struct module *owner;
804};
805
Tony Krowiak5102ee82014-06-27 14:46:01 -0400806struct kvm_s390_crypto {
807 struct kvm_s390_crypto_cb *crycb;
Pierre Morele5282de2019-05-21 17:34:34 +0200808 struct kvm_s390_module_hook *pqap_hook;
Tony Krowiak5102ee82014-06-27 14:46:01 -0400809 __u32 crycbd;
Tony Krowiaka374e892014-09-03 10:13:53 +0200810 __u8 aes_kw;
811 __u8 dea_kw;
Tony Krowiake585b242018-09-25 19:16:18 -0400812 __u8 apie;
Tony Krowiak5102ee82014-06-27 14:46:01 -0400813};
814
Tony Krowiakba850a82017-10-13 13:38:46 -0400815#define APCB0_MASK_SIZE 1
816struct kvm_s390_apcb0 {
817 __u64 apm[APCB0_MASK_SIZE]; /* 0x0000 */
818 __u64 aqm[APCB0_MASK_SIZE]; /* 0x0008 */
819 __u64 adm[APCB0_MASK_SIZE]; /* 0x0010 */
820 __u64 reserved18; /* 0x0018 */
821};
822
823#define APCB1_MASK_SIZE 4
824struct kvm_s390_apcb1 {
825 __u64 apm[APCB1_MASK_SIZE]; /* 0x0000 */
826 __u64 aqm[APCB1_MASK_SIZE]; /* 0x0020 */
827 __u64 adm[APCB1_MASK_SIZE]; /* 0x0040 */
828 __u64 reserved60[4]; /* 0x0060 */
829};
830
Tony Krowiak5102ee82014-06-27 14:46:01 -0400831struct kvm_s390_crypto_cb {
Tony Krowiakba850a82017-10-13 13:38:46 -0400832 struct kvm_s390_apcb0 apcb0; /* 0x0000 */
833 __u8 reserved20[0x0048 - 0x0020]; /* 0x0020 */
834 __u8 dea_wrapping_key_mask[24]; /* 0x0048 */
835 __u8 aes_wrapping_key_mask[32]; /* 0x0060 */
836 struct kvm_s390_apcb1 apcb1; /* 0x0080 */
Tony Krowiak5102ee82014-06-27 14:46:01 -0400837};
838
Michael Mueller19114be2017-05-30 14:26:02 +0200839struct kvm_s390_gisa {
Michael Mueller4b9f9522017-06-23 13:51:25 +0200840 union {
841 struct { /* common to all formats */
842 u32 next_alert;
843 u8 ipm;
844 u8 reserved01[2];
845 u8 iam;
846 };
847 struct { /* format 0 */
848 u32 next_alert;
849 u8 ipm;
850 u8 reserved01;
851 u8 : 6;
852 u8 g : 1;
853 u8 c : 1;
854 u8 iam;
855 u8 reserved02[4];
856 u32 airq_count;
857 } g0;
858 struct { /* format 1 */
859 u32 next_alert;
860 u8 ipm;
861 u8 simm;
862 u8 nimm;
863 u8 iam;
864 u8 aism[8];
865 u8 : 6;
866 u8 g : 1;
867 u8 c : 1;
868 u8 reserved03[11];
869 u32 airq_count;
870 } g1;
Michael Mueller6cff2e12019-01-31 09:52:42 +0100871 struct {
872 u64 word[4];
873 } u64;
Michael Mueller4b9f9522017-06-23 13:51:25 +0200874 };
Michael Mueller19114be2017-05-30 14:26:02 +0200875};
876
Michael Mueller1282c212019-01-31 09:52:40 +0100877struct kvm_s390_gib {
878 u32 alert_list_origin;
879 u32 reserved01;
880 u8:5;
881 u8 nisc:3;
882 u8 reserved03[3];
883 u32 reserved04[5];
884};
885
David Hildenbrandc54f0d62015-12-02 08:53:52 +0100886/*
Michael Mueller19114be2017-05-30 14:26:02 +0200887 * sie_page2 has to be allocated as DMA because fac_list, crycb and
888 * gisa need 31bit addresses in the sie control block.
David Hildenbrandc54f0d62015-12-02 08:53:52 +0100889 */
890struct sie_page2 {
891 __u64 fac_list[S390_ARCH_FAC_LIST_SIZE_U64]; /* 0x0000 */
892 struct kvm_s390_crypto_cb crycb; /* 0x0800 */
Michael Mueller19114be2017-05-30 14:26:02 +0200893 struct kvm_s390_gisa gisa; /* 0x0900 */
Michael Mueller25c84db2019-01-31 09:52:41 +0100894 struct kvm *kvm; /* 0x0920 */
895 u8 reserved928[0x1000 - 0x928]; /* 0x0928 */
Martin Schwidefsky1cae0252017-06-21 16:49:15 +0200896};
David Hildenbrandc54f0d62015-12-02 08:53:52 +0100897
David Hildenbranda3508fb2015-07-08 13:19:48 +0200898struct kvm_s390_vsie {
899 struct mutex mutex;
900 struct radix_tree_root addr_to_page;
901 int page_count;
902 int next;
903 struct page *pages[KVM_MAX_VCPUS];
904};
905
Michael Mueller6cff2e12019-01-31 09:52:42 +0100906struct kvm_s390_gisa_iam {
907 u8 mask;
908 spinlock_t ref_lock;
909 u32 ref_count[MAX_ISC + 1];
910};
911
Michael Mueller982cff42019-01-31 09:52:38 +0100912struct kvm_s390_gisa_interrupt {
913 struct kvm_s390_gisa *origin;
Michael Mueller6cff2e12019-01-31 09:52:42 +0100914 struct kvm_s390_gisa_iam alert;
Michael Mueller9f30f622019-01-31 09:52:44 +0100915 struct hrtimer timer;
916 u64 expires;
917 DECLARE_BITMAP(kicked_mask, KVM_MAX_VCPUS);
Michael Mueller982cff42019-01-31 09:52:38 +0100918};
919
Janosch Frank29b40f12019-09-30 04:19:18 -0400920struct kvm_s390_pv {
921 u64 handle;
922 u64 guest_len;
923 unsigned long stor_base;
924 void *stor_var;
925};
926
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100927struct kvm_arch{
Eugene (jno) Dvurechenski7d43bafcf2015-04-22 17:09:44 +0200928 void *sca;
929 int use_esca;
Eugene (jno) Dvurechenski5e044312015-04-22 18:08:39 +0200930 rwlock_t sca_lock;
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100931 debug_info_t *dbf;
Christian Borntraeger180c12f2008-06-27 15:05:40 +0200932 struct kvm_s390_float_interrupt float_int;
Jens Freimannc05c4182013-10-07 16:13:45 +0200933 struct kvm_device *flic;
Carsten Otte598841c2011-07-24 10:48:21 +0200934 struct gmap *gmap;
Dominik Dingela3a92c32014-12-01 17:24:42 +0100935 unsigned long mem_limit;
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100936 int css_support;
Cornelia Huck84223592013-07-15 13:36:01 +0200937 int use_irqchip;
Dominik Dingelb31605c2014-03-25 13:47:11 +0100938 int use_cmma;
Janosch Frankc9f0a2b2018-02-16 12:16:14 +0100939 int use_pfmfi;
Janosch Frank55531b72018-02-15 16:33:47 +0100940 int use_skf;
David Hildenbrand6352e4d2014-04-10 17:35:00 +0200941 int user_cpu_state_ctrl;
David Hildenbrand2444b352014-10-09 14:10:13 +0200942 int user_sigp;
Ekaterina Tumanovae44fc8c2015-01-30 16:55:56 +0100943 int user_stsi;
David Hildenbrand6502a342016-06-21 14:19:51 +0200944 int user_instr0;
Cornelia Huck841b91c2013-07-15 13:36:01 +0200945 struct s390_io_adapter *adapters[MAX_S390_IO_ADAPTERS];
Heiko Carstens8a2422342014-01-10 14:33:28 +0100946 wait_queue_head_t ipte_wq;
Thomas Hutha6b7e452014-10-01 14:48:42 +0200947 int ipte_lock_count;
948 struct mutex ipte_mutex;
David Hildenbrand8ad35752014-03-14 11:00:21 +0100949 spinlock_t start_stop_lock;
David Hildenbrandc54f0d62015-12-02 08:53:52 +0100950 struct sie_page2 *sie_page2;
Michael Mueller9d8d5782015-02-02 15:42:51 +0100951 struct kvm_s390_cpu_model model;
Tony Krowiak5102ee82014-06-27 14:46:01 -0400952 struct kvm_s390_crypto crypto;
David Hildenbranda3508fb2015-07-08 13:19:48 +0200953 struct kvm_s390_vsie vsie;
Collin L. Walling8fa16962016-07-26 15:29:44 -0400954 u8 epdx;
Jason J. Herne72f25022014-11-25 09:46:02 -0500955 u64 epoch;
Claudio Imbrendaafdad612018-04-30 18:33:25 +0200956 int migration_mode;
957 atomic64_t cmma_dirty_pages;
David Hildenbrand15c97052015-03-19 17:36:43 +0100958 /* subset of available cpu features enabled by user space */
959 DECLARE_BITMAP(cpu_feat, KVM_S390_VM_CPU_FEAT_NR_BITS);
Michael Mueller246b7212019-01-31 09:52:34 +0100960 DECLARE_BITMAP(idle_mask, KVM_MAX_VCPUS);
Michael Mueller982cff42019-01-31 09:52:38 +0100961 struct kvm_s390_gisa_interrupt gisa_int;
Janosch Frank29b40f12019-09-30 04:19:18 -0400962 struct kvm_s390_pv pv;
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100963};
964
Dominik Dingelbf640872013-07-26 15:04:07 +0200965#define KVM_HVA_ERR_BAD (-1UL)
966#define KVM_HVA_ERR_RO_BAD (-2UL)
967
968static inline bool kvm_is_error_hva(unsigned long addr)
969{
970 return IS_ERR_VALUE(addr);
971}
972
Dominik Dingel3c038e62013-10-07 17:11:48 +0200973#define ASYNC_PF_PER_VCPU 64
Dominik Dingel3c038e62013-10-07 17:11:48 +0200974struct kvm_arch_async_pf {
975 unsigned long pfault_token;
976};
977
Vitaly Kuznetsov7c0ade62020-05-25 16:41:18 +0200978bool kvm_arch_can_dequeue_async_page_present(struct kvm_vcpu *vcpu);
Dominik Dingel3c038e62013-10-07 17:11:48 +0200979
980void kvm_arch_async_page_ready(struct kvm_vcpu *vcpu,
981 struct kvm_async_pf *work);
982
Vitaly Kuznetsov2a18b7e2020-06-10 19:55:32 +0200983bool kvm_arch_async_page_not_present(struct kvm_vcpu *vcpu,
Dominik Dingel3c038e62013-10-07 17:11:48 +0200984 struct kvm_async_pf *work);
985
986void kvm_arch_async_page_present(struct kvm_vcpu *vcpu,
987 struct kvm_async_pf *work);
988
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +0200989static inline void kvm_arch_async_page_present_queued(struct kvm_vcpu *vcpu) {}
990
Tony Krowiak421045982018-09-25 19:16:25 -0400991void kvm_arch_crypto_clear_masks(struct kvm *kvm);
Pierre Morel0e237e42018-10-05 10:31:09 +0200992void kvm_arch_crypto_set_masks(struct kvm *kvm, unsigned long *apm,
993 unsigned long *aqm, unsigned long *adm);
Tony Krowiak421045982018-09-25 19:16:25 -0400994
Christian Borntraeger5a32c1a2012-01-11 11:20:32 +0100995extern int sie64a(struct kvm_s390_sie_block *, u64 *);
Heinz Graalfsb764bb12013-06-12 13:54:56 +0200996extern char sie_exit;
Radim Krčmář0865e632014-08-28 15:13:02 +0200997
Michael Mueller6cff2e12019-01-31 09:52:42 +0100998extern int kvm_s390_gisc_register(struct kvm *kvm, u32 gisc);
999extern int kvm_s390_gisc_unregister(struct kvm *kvm, u32 gisc);
1000
Radim Krčmář13a34e02014-08-28 15:13:03 +02001001static inline void kvm_arch_hardware_disable(void) {}
Radim Krčmář0865e632014-08-28 15:13:02 +02001002static inline void kvm_arch_sync_events(struct kvm *kvm) {}
Radim Krčmář0865e632014-08-28 15:13:02 +02001003static inline void kvm_arch_sched_in(struct kvm_vcpu *vcpu, int cpu) {}
1004static inline void kvm_arch_free_memslot(struct kvm *kvm,
Sean Christophersone96c81e2020-02-18 13:07:27 -08001005 struct kvm_memory_slot *slot) {}
Sean Christopherson15248252019-02-05 12:54:17 -08001006static inline void kvm_arch_memslots_updated(struct kvm *kvm, u64 gen) {}
Radim Krčmář0865e632014-08-28 15:13:02 +02001007static inline void kvm_arch_flush_shadow_all(struct kvm *kvm) {}
1008static inline void kvm_arch_flush_shadow_memslot(struct kvm *kvm,
1009 struct kvm_memory_slot *slot) {}
Christoffer Dall3217f7c2015-08-27 16:41:15 +02001010static inline void kvm_arch_vcpu_blocking(struct kvm_vcpu *vcpu) {}
1011static inline void kvm_arch_vcpu_unblocking(struct kvm_vcpu *vcpu) {}
Radim Krčmář0865e632014-08-28 15:13:02 +02001012
Christian Borntraeger3491caf2016-05-13 12:16:35 +02001013void kvm_arch_vcpu_block_finish(struct kvm_vcpu *vcpu);
1014
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001015#endif