blob: 946fc86202fdac371a6e32028c16b11967feb668 [file] [log] [blame]
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001/*
Heiko Carstensa53c8fa2012-07-20 11:15:04 +02002 * definition for kernel virtual machines on s390
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003 *
Heiko Carstensa53c8fa2012-07-20 11:15:04 +02004 * Copyright IBM Corp. 2008, 2009
Heiko Carstensb0c632d2008-03-25 18:47:20 +01005 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License (version 2 only)
8 * as published by the Free Software Foundation.
9 *
10 * Author(s): Carsten Otte <cotte@de.ibm.com>
11 */
12
13
14#ifndef ASM_KVM_HOST_H
15#define ASM_KVM_HOST_H
Paolo Bonzini65647302014-08-29 14:01:17 +020016
17#include <linux/types.h>
Christian Borntraegerca872302009-05-12 17:21:49 +020018#include <linux/hrtimer.h>
19#include <linux/interrupt.h>
Paolo Bonzini65647302014-08-29 14:01:17 +020020#include <linux/kvm_types.h>
Heiko Carstensb0c632d2008-03-25 18:47:20 +010021#include <linux/kvm_host.h>
Jens Freimann81aa8efe2013-10-07 16:13:44 +020022#include <linux/kvm.h>
David Hildenbrand9c23a132016-02-17 21:53:33 +010023#include <linux/seqlock.h>
Heiko Carstensb0c632d2008-03-25 18:47:20 +010024#include <asm/debug.h>
Heiko Carstense86a6ed2009-09-11 10:29:04 +020025#include <asm/cpu.h>
Hendrik Bruecknerb0753902015-10-06 12:25:59 +020026#include <asm/fpu/api.h>
Cornelia Huck841b91c2013-07-15 13:36:01 +020027#include <asm/isc.h>
Heiko Carstensb0c632d2008-03-25 18:47:20 +010028
Eugene (jno) Dvurechenskibc784cc2015-04-23 16:09:06 +020029#define KVM_S390_BSCA_CPU_SLOTS 64
30#define KVM_S390_ESCA_CPU_SLOTS 248
Eugene (jno) Dvurechenskife0edcb2015-04-22 18:37:40 +020031#define KVM_MAX_VCPUS KVM_S390_ESCA_CPU_SLOTS
Alex Williamsonbbacc0c2012-12-10 10:33:09 -070032#define KVM_USER_MEM_SLOTS 32
Heiko Carstensb0c632d2008-03-25 18:47:20 +010033
Cornelia Huck84223592013-07-15 13:36:01 +020034/*
35 * These seem to be used for allocating ->chip in the routing table,
36 * which we don't use. 4096 is an out-of-thin-air value. If we need
37 * to look at ->chip later on, we'll need to revisit this.
38 */
39#define KVM_NR_IRQCHIPS 1
40#define KVM_IRQCHIP_NUM_PINS 4096
Christian Borntraegerc4a8de32016-05-13 12:16:36 +020041#define KVM_HALT_POLL_NS_DEFAULT 80000
Cornelia Huck84223592013-07-15 13:36:01 +020042
Paolo Bonzini2860c4b2016-01-07 15:05:10 +010043/* s390-specific vcpu->requests bit members */
44#define KVM_REQ_ENABLE_IBS 8
45#define KVM_REQ_DISABLE_IBS 9
46
David Hildenbrandea5f4962014-10-14 15:29:30 +020047#define SIGP_CTRL_C 0x80
48#define SIGP_CTRL_SCN_MASK 0x3f
David Hildenbrand49539192014-02-21 08:59:59 +010049
Eugene (jno) Dvurechenskibc784cc2015-04-23 16:09:06 +020050union bsca_sigp_ctrl {
51 __u8 value;
52 struct {
53 __u8 c : 1;
54 __u8 r : 1;
55 __u8 scn : 6;
56 };
57} __packed;
58
59union esca_sigp_ctrl {
60 __u16 value;
61 struct {
62 __u8 c : 1;
63 __u8 reserved: 7;
64 __u8 scn;
65 };
66} __packed;
67
68struct esca_entry {
69 union esca_sigp_ctrl sigp_ctrl;
70 __u16 reserved1[3];
71 __u64 sda;
72 __u64 reserved2[6];
73} __packed;
74
75struct bsca_entry {
David Hildenbrandea5f4962014-10-14 15:29:30 +020076 __u8 reserved0;
Eugene (jno) Dvurechenskibc784cc2015-04-23 16:09:06 +020077 union bsca_sigp_ctrl sigp_ctrl;
David Hildenbrandea5f4962014-10-14 15:29:30 +020078 __u16 reserved[3];
Heiko Carstensb0c632d2008-03-25 18:47:20 +010079 __u64 sda;
80 __u64 reserved2[2];
81} __attribute__((packed));
82
Heiko Carstens8a2422342014-01-10 14:33:28 +010083union ipte_control {
84 unsigned long val;
85 struct {
86 unsigned long k : 1;
87 unsigned long kh : 31;
88 unsigned long kg : 32;
89 };
90};
Heiko Carstensb0c632d2008-03-25 18:47:20 +010091
Eugene (jno) Dvurechenskibc784cc2015-04-23 16:09:06 +020092struct bsca_block {
Heiko Carstens8a2422342014-01-10 14:33:28 +010093 union ipte_control ipte_control;
Heiko Carstensb0c632d2008-03-25 18:47:20 +010094 __u64 reserved[5];
95 __u64 mcn;
96 __u64 reserved2;
Eugene (jno) Dvurechenskibc784cc2015-04-23 16:09:06 +020097 struct bsca_entry cpu[KVM_S390_BSCA_CPU_SLOTS];
Heiko Carstensb0c632d2008-03-25 18:47:20 +010098} __attribute__((packed));
99
Eugene (jno) Dvurechenskibc784cc2015-04-23 16:09:06 +0200100struct esca_block {
101 union ipte_control ipte_control;
102 __u64 reserved1[7];
103 __u64 mcn[4];
104 __u64 reserved2[20];
105 struct esca_entry cpu[KVM_S390_ESCA_CPU_SLOTS];
106} __packed;
107
Cornelia Huck9e6dabe2011-11-17 11:00:41 +0100108#define CPUSTAT_STOPPED 0x80000000
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100109#define CPUSTAT_WAIT 0x10000000
110#define CPUSTAT_ECALL_PEND 0x08000000
111#define CPUSTAT_STOP_INT 0x04000000
112#define CPUSTAT_IO_INT 0x02000000
113#define CPUSTAT_EXT_INT 0x01000000
114#define CPUSTAT_RUNNING 0x00800000
115#define CPUSTAT_RETAINED 0x00400000
116#define CPUSTAT_TIMING_SUB 0x00020000
117#define CPUSTAT_SIE_SUB 0x00010000
118#define CPUSTAT_RRF 0x00008000
119#define CPUSTAT_SLSV 0x00004000
120#define CPUSTAT_SLSR 0x00002000
121#define CPUSTAT_ZARCH 0x00000800
122#define CPUSTAT_MCDS 0x00000100
123#define CPUSTAT_SM 0x00000080
David Hildenbrand8ad35752014-03-14 11:00:21 +0100124#define CPUSTAT_IBS 0x00000040
Guenther Hutzl53df84f2015-02-18 11:13:03 +0100125#define CPUSTAT_GED2 0x00000010
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100126#define CPUSTAT_G 0x00000008
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +0200127#define CPUSTAT_GED 0x00000004
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100128#define CPUSTAT_J 0x00000002
129#define CPUSTAT_P 0x00000001
130
Christian Borntraeger180c12f2008-06-27 15:05:40 +0200131struct kvm_s390_sie_block {
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100132 atomic_t cpuflags; /* 0x0000 */
Michael Muellerfda902c2014-05-13 16:58:30 +0200133 __u32 : 1; /* 0x0004 */
134 __u32 prefix : 18;
Michael Mueller658b6ed2015-02-02 15:49:35 +0100135 __u32 : 1;
136 __u32 ibc : 12;
Christian Borntraeger95d38fd2013-05-17 14:41:34 +0200137 __u8 reserved08[4]; /* 0x0008 */
138#define PROG_IN_SIE (1<<0)
139 __u32 prog0c; /* 0x000c */
Christian Borntraeger49b99e12013-05-17 14:41:35 +0200140 __u8 reserved10[16]; /* 0x0010 */
Christian Borntraeger8e236542015-04-09 13:49:04 +0200141#define PROG_BLOCK_SIE (1<<0)
142#define PROG_REQUEST (1<<1)
Christian Borntraeger49b99e12013-05-17 14:41:35 +0200143 atomic_t prog20; /* 0x0020 */
144 __u8 reserved24[4]; /* 0x0024 */
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100145 __u64 cputm; /* 0x0028 */
146 __u64 ckc; /* 0x0030 */
147 __u64 epoch; /* 0x0038 */
David Hildenbranda3508fb2015-07-08 13:19:48 +0200148 __u32 svcc; /* 0x0040 */
Carsten Otteba5c1e92008-03-25 18:47:26 +0100149#define LCTL_CR0 0x8000
Cornelia Huckd8346b72012-12-20 15:32:08 +0100150#define LCTL_CR6 0x0200
David Hildenbrand27291e22014-01-23 12:26:52 +0100151#define LCTL_CR9 0x0040
152#define LCTL_CR10 0x0020
153#define LCTL_CR11 0x0010
Cornelia Huck48a3e952012-12-20 15:32:09 +0100154#define LCTL_CR14 0x0002
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100155 __u16 lctl; /* 0x0044 */
156 __s16 icpua; /* 0x0046 */
Janosch Frank95ca2cb2016-05-23 15:11:58 +0200157#define ICTL_OPEREXC 0x80000000
David Hildenbrand27291e22014-01-23 12:26:52 +0100158#define ICTL_PINT 0x20000000
159#define ICTL_LPSW 0x00400000
160#define ICTL_STCTL 0x00040000
161#define ICTL_ISKE 0x00004000
162#define ICTL_SSKE 0x00002000
163#define ICTL_RRBE 0x00001000
Matthew Rosato5a5e6532013-01-29 11:48:20 -0500164#define ICTL_TPROT 0x00000200
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100165 __u32 ictl; /* 0x0048 */
166 __u32 eca; /* 0x004c */
David Hildenbrand87128362014-03-03 10:55:13 +0100167#define ICPT_INST 0x04
168#define ICPT_PROGI 0x08
169#define ICPT_INSTPROGI 0x0C
David Hildenbranda3508fb2015-07-08 13:19:48 +0200170#define ICPT_EXTINT 0x14
171#define ICPT_VALIDITY 0x20
172#define ICPT_STOP 0x28
David Hildenbrand87128362014-03-03 10:55:13 +0100173#define ICPT_OPEREXC 0x2C
174#define ICPT_PARTEXEC 0x38
175#define ICPT_IOINST 0x40
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100176 __u8 icptcode; /* 0x0050 */
Thomas Huth04b41ac2014-11-12 17:13:29 +0100177 __u8 icptstatus; /* 0x0051 */
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100178 __u16 ihcpu; /* 0x0052 */
179 __u8 reserved54[2]; /* 0x0054 */
180 __u16 ipa; /* 0x0056 */
181 __u32 ipb; /* 0x0058 */
182 __u32 scaoh; /* 0x005c */
183 __u8 reserved60; /* 0x0060 */
184 __u8 ecb; /* 0x0061 */
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +0200185 __u8 ecb2; /* 0x0062 */
Tony Krowiaka374e892014-09-03 10:13:53 +0200186#define ECB3_AES 0x04
187#define ECB3_DEA 0x08
188 __u8 ecb3; /* 0x0063 */
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100189 __u32 scaol; /* 0x0064 */
190 __u8 reserved68[4]; /* 0x0068 */
191 __u32 todpr; /* 0x006c */
David Hildenbrandefed1102015-04-16 12:32:41 +0200192 __u8 reserved70[16]; /* 0x0070 */
193 __u64 mso; /* 0x0080 */
194 __u64 msl; /* 0x0088 */
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100195 psw_t gpsw; /* 0x0090 */
196 __u64 gg14; /* 0x00a0 */
197 __u64 gg15; /* 0x00a8 */
Thomas Huthf14d82e2014-01-15 16:46:07 +0100198 __u8 reservedb0[20]; /* 0x00b0 */
199 __u16 extcpuaddr; /* 0x00c4 */
200 __u16 eic; /* 0x00c6 */
201 __u32 reservedc8; /* 0x00c8 */
David Hildenbrand439716a2014-03-03 10:54:33 +0100202 __u16 pgmilc; /* 0x00cc */
203 __u16 iprcc; /* 0x00ce */
204 __u32 dxc; /* 0x00d0 */
205 __u16 mcn; /* 0x00d4 */
206 __u8 perc; /* 0x00d6 */
207 __u8 peratmid; /* 0x00d7 */
208 __u64 peraddr; /* 0x00d8 */
209 __u8 eai; /* 0x00e0 */
210 __u8 peraid; /* 0x00e1 */
211 __u8 oai; /* 0x00e2 */
212 __u8 armid; /* 0x00e3 */
213 __u8 reservede4[4]; /* 0x00e4 */
214 __u64 tecmc; /* 0x00e8 */
Tony Krowiak5102ee82014-06-27 14:46:01 -0400215 __u8 reservedf0[12]; /* 0x00f0 */
216#define CRYCB_FORMAT1 0x00000001
Tony Krowiak45c9b472015-01-13 11:33:26 -0500217#define CRYCB_FORMAT2 0x00000003
Tony Krowiak5102ee82014-06-27 14:46:01 -0400218 __u32 crycbd; /* 0x00fc */
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100219 __u64 gcr[16]; /* 0x0100 */
220 __u64 gbea; /* 0x0180 */
Christian Borntraegeref50f7a2009-06-23 17:24:07 +0200221 __u8 reserved188[24]; /* 0x0188 */
222 __u32 fac; /* 0x01a0 */
Konstantin Weitzb31288f2013-04-17 17:36:29 +0200223 __u8 reserved1a4[20]; /* 0x01a4 */
224 __u64 cbrlo; /* 0x01b8 */
Eric Farman13211ea2014-04-30 13:39:46 -0400225 __u8 reserved1c0[8]; /* 0x01c0 */
226 __u32 ecd; /* 0x01c8 */
227 __u8 reserved1cc[18]; /* 0x01cc */
Christian Borntraeger672550f2014-02-10 15:32:19 +0100228 __u64 pp; /* 0x01de */
229 __u8 reserved1e6[2]; /* 0x01e6 */
Michael Mueller7feb6bb2013-06-28 13:30:24 +0200230 __u64 itdba; /* 0x01e8 */
Fan Zhangc6e5f162016-01-07 18:24:29 +0800231 __u64 riccbd; /* 0x01f0 */
David Hildenbrandc9bc1ea2015-11-25 11:08:32 +0100232 __u64 gvrd; /* 0x01f8 */
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100233} __attribute__((packed));
234
Michael Mueller7feb6bb2013-06-28 13:30:24 +0200235struct kvm_s390_itdb {
236 __u8 data[256];
237} __packed;
238
239struct sie_page {
240 struct kvm_s390_sie_block sie_block;
241 __u8 reserved200[1024]; /* 0x0200 */
242 struct kvm_s390_itdb itdb; /* 0x0600 */
David Hildenbrandefa48162016-01-14 22:15:08 +0100243 __u8 reserved700[2304]; /* 0x0700 */
Michael Mueller7feb6bb2013-06-28 13:30:24 +0200244} __packed;
245
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100246struct kvm_vcpu_stat {
247 u32 exit_userspace;
Christian Borntraeger0eaeafa2008-05-07 09:22:53 +0200248 u32 exit_null;
Christian Borntraeger8f2abe62008-03-25 18:47:23 +0100249 u32 exit_external_request;
250 u32 exit_external_interrupt;
251 u32 exit_stop_request;
252 u32 exit_validity;
Carsten Otteba5c1e92008-03-25 18:47:26 +0100253 u32 exit_instruction;
Paolo Bonzinif7819512015-02-04 18:20:58 +0100254 u32 halt_successful_poll;
Paolo Bonzini62bea5b2015-09-15 18:27:57 +0200255 u32 halt_attempted_poll;
Christian Borntraeger3491caf2016-05-13 12:16:35 +0200256 u32 halt_poll_invalid;
David Hildenbrandce2e4f02014-07-11 10:00:43 +0200257 u32 halt_wakeup;
Carsten Otteba5c1e92008-03-25 18:47:26 +0100258 u32 instruction_lctl;
Christian Borntraegerf5e10b02008-07-25 15:52:44 +0200259 u32 instruction_lctlg;
David Hildenbrandaba07502014-01-23 10:47:13 +0100260 u32 instruction_stctl;
261 u32 instruction_stctg;
Carsten Otteba5c1e92008-03-25 18:47:26 +0100262 u32 exit_program_interruption;
263 u32 exit_instr_and_program;
Janosch Franka011eeb2016-05-09 14:14:01 +0200264 u32 exit_operation_exception;
Christian Ehrhardt7697e71f2011-10-18 12:27:15 +0200265 u32 deliver_external_call;
Carsten Otteba5c1e92008-03-25 18:47:26 +0100266 u32 deliver_emergency_signal;
267 u32 deliver_service_signal;
268 u32 deliver_virtio_interrupt;
269 u32 deliver_stop_signal;
270 u32 deliver_prefix_signal;
271 u32 deliver_restart_signal;
272 u32 deliver_program_int;
Cornelia Huckd8346b72012-12-20 15:32:08 +0100273 u32 deliver_io_int;
Carsten Otteba5c1e92008-03-25 18:47:26 +0100274 u32 exit_wait_state;
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +0200275 u32 instruction_pfmf;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100276 u32 instruction_stidp;
277 u32 instruction_spx;
278 u32 instruction_stpx;
279 u32 instruction_stap;
280 u32 instruction_storage_key;
Heiko Carstens8a2422342014-01-10 14:33:28 +0100281 u32 instruction_ipte_interlock;
Christian Borntraeger453423d2008-03-25 18:47:29 +0100282 u32 instruction_stsch;
283 u32 instruction_chsc;
284 u32 instruction_stsi;
285 u32 instruction_stfl;
Christian Borntraegerbb25b9b2011-07-24 10:48:17 +0200286 u32 instruction_tprot;
David Hildenbranda3508fb2015-07-08 13:19:48 +0200287 u32 instruction_sie;
Konstantin Weitzb31288f2013-04-17 17:36:29 +0200288 u32 instruction_essa;
Janosch Frank95ca2cb2016-05-23 15:11:58 +0200289 u32 instruction_sthyi;
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100290 u32 instruction_sigp_sense;
Cornelia Huckbd59d3a2011-11-17 11:00:42 +0100291 u32 instruction_sigp_sense_running;
Christian Ehrhardt7697e71f2011-10-18 12:27:15 +0200292 u32 instruction_sigp_external_call;
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100293 u32 instruction_sigp_emergency;
David Hildenbrand42cb0c92014-05-23 12:25:11 +0200294 u32 instruction_sigp_cond_emergency;
295 u32 instruction_sigp_start;
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100296 u32 instruction_sigp_stop;
David Hildenbrand42cb0c92014-05-23 12:25:11 +0200297 u32 instruction_sigp_stop_store_status;
298 u32 instruction_sigp_store_status;
Eric Farmancd7b4b62015-02-12 09:06:34 -0500299 u32 instruction_sigp_store_adtl_status;
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100300 u32 instruction_sigp_arch;
301 u32 instruction_sigp_prefix;
302 u32 instruction_sigp_restart;
David Hildenbrand42cb0c92014-05-23 12:25:11 +0200303 u32 instruction_sigp_init_cpu_reset;
304 u32 instruction_sigp_cpu_reset;
305 u32 instruction_sigp_unknown;
Christian Borntraeger388186b2011-10-30 15:17:03 +0100306 u32 diagnose_10;
Christian Borntraegere28acfe2008-03-25 18:47:34 +0100307 u32 diagnose_44;
Konstantin Weitz41628d32012-04-25 15:30:38 +0200308 u32 diagnose_9c;
Christian Borntraeger175a5c92015-07-07 15:19:32 +0200309 u32 diagnose_258;
310 u32 diagnose_308;
311 u32 diagnose_500;
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100312};
313
Jens Freimannbcd84682014-02-11 11:07:05 +0100314#define PGM_OPERATION 0x01
315#define PGM_PRIVILEGED_OP 0x02
316#define PGM_EXECUTE 0x03
317#define PGM_PROTECTION 0x04
318#define PGM_ADDRESSING 0x05
319#define PGM_SPECIFICATION 0x06
320#define PGM_DATA 0x07
321#define PGM_FIXED_POINT_OVERFLOW 0x08
322#define PGM_FIXED_POINT_DIVIDE 0x09
323#define PGM_DECIMAL_OVERFLOW 0x0a
324#define PGM_DECIMAL_DIVIDE 0x0b
325#define PGM_HFP_EXPONENT_OVERFLOW 0x0c
326#define PGM_HFP_EXPONENT_UNDERFLOW 0x0d
327#define PGM_HFP_SIGNIFICANCE 0x0e
328#define PGM_HFP_DIVIDE 0x0f
329#define PGM_SEGMENT_TRANSLATION 0x10
330#define PGM_PAGE_TRANSLATION 0x11
331#define PGM_TRANSLATION_SPEC 0x12
332#define PGM_SPECIAL_OPERATION 0x13
333#define PGM_OPERAND 0x15
334#define PGM_TRACE_TABEL 0x16
Eric Farman403c8642015-02-02 15:01:06 -0500335#define PGM_VECTOR_PROCESSING 0x1b
Jens Freimannbcd84682014-02-11 11:07:05 +0100336#define PGM_SPACE_SWITCH 0x1c
337#define PGM_HFP_SQUARE_ROOT 0x1d
338#define PGM_PC_TRANSLATION_SPEC 0x1f
339#define PGM_AFX_TRANSLATION 0x20
340#define PGM_ASX_TRANSLATION 0x21
341#define PGM_LX_TRANSLATION 0x22
342#define PGM_EX_TRANSLATION 0x23
343#define PGM_PRIMARY_AUTHORITY 0x24
344#define PGM_SECONDARY_AUTHORITY 0x25
345#define PGM_LFX_TRANSLATION 0x26
346#define PGM_LSX_TRANSLATION 0x27
347#define PGM_ALET_SPECIFICATION 0x28
348#define PGM_ALEN_TRANSLATION 0x29
349#define PGM_ALE_SEQUENCE 0x2a
350#define PGM_ASTE_VALIDITY 0x2b
351#define PGM_ASTE_SEQUENCE 0x2c
352#define PGM_EXTENDED_AUTHORITY 0x2d
353#define PGM_LSTE_SEQUENCE 0x2e
354#define PGM_ASTE_INSTANCE 0x2f
355#define PGM_STACK_FULL 0x30
356#define PGM_STACK_EMPTY 0x31
357#define PGM_STACK_SPECIFICATION 0x32
358#define PGM_STACK_TYPE 0x33
359#define PGM_STACK_OPERATION 0x34
360#define PGM_ASCE_TYPE 0x38
361#define PGM_REGION_FIRST_TRANS 0x39
362#define PGM_REGION_SECOND_TRANS 0x3a
363#define PGM_REGION_THIRD_TRANS 0x3b
364#define PGM_MONITOR 0x40
365#define PGM_PER 0x80
366#define PGM_CRYPTO_OPERATION 0x119
Carsten Otteba5c1e92008-03-25 18:47:26 +0100367
Jens Freimannc0e61592013-07-29 20:54:15 +0200368/* irq types in order of priority */
369enum irq_types {
370 IRQ_PEND_MCHK_EX = 0,
371 IRQ_PEND_SVC,
372 IRQ_PEND_PROG,
373 IRQ_PEND_MCHK_REP,
374 IRQ_PEND_EXT_IRQ_KEY,
375 IRQ_PEND_EXT_MALFUNC,
376 IRQ_PEND_EXT_EMERGENCY,
377 IRQ_PEND_EXT_EXTERNAL,
378 IRQ_PEND_EXT_CLOCK_COMP,
379 IRQ_PEND_EXT_CPU_TIMER,
380 IRQ_PEND_EXT_TIMING,
381 IRQ_PEND_EXT_SERVICE,
382 IRQ_PEND_EXT_HOST,
383 IRQ_PEND_PFAULT_INIT,
384 IRQ_PEND_PFAULT_DONE,
385 IRQ_PEND_VIRTIO,
386 IRQ_PEND_IO_ISC_0,
387 IRQ_PEND_IO_ISC_1,
388 IRQ_PEND_IO_ISC_2,
389 IRQ_PEND_IO_ISC_3,
390 IRQ_PEND_IO_ISC_4,
391 IRQ_PEND_IO_ISC_5,
392 IRQ_PEND_IO_ISC_6,
393 IRQ_PEND_IO_ISC_7,
394 IRQ_PEND_SIGP_STOP,
395 IRQ_PEND_RESTART,
396 IRQ_PEND_SET_PREFIX,
397 IRQ_PEND_COUNT
398};
399
Jens Freimann6d3da242013-07-03 15:18:35 +0200400/* We have 2M for virtio device descriptor pages. Smallest amount of
401 * memory per page is 24 bytes (1 queue), so (2048*1024) / 24 = 87381
402 */
403#define KVM_S390_MAX_VIRTIO_IRQS 87381
404
Jens Freimannc0e61592013-07-29 20:54:15 +0200405/*
406 * Repressible (non-floating) machine check interrupts
407 * subclass bits in MCIC
408 */
409#define MCHK_EXTD_BIT 58
410#define MCHK_DEGR_BIT 56
411#define MCHK_WARN_BIT 55
412#define MCHK_REP_MASK ((1UL << MCHK_DEGR_BIT) | \
413 (1UL << MCHK_EXTD_BIT) | \
414 (1UL << MCHK_WARN_BIT))
415
416/* Exigent machine check interrupts subclass bits in MCIC */
417#define MCHK_SD_BIT 63
418#define MCHK_PD_BIT 62
419#define MCHK_EX_MASK ((1UL << MCHK_SD_BIT) | (1UL << MCHK_PD_BIT))
420
421#define IRQ_PEND_EXT_MASK ((1UL << IRQ_PEND_EXT_IRQ_KEY) | \
422 (1UL << IRQ_PEND_EXT_CLOCK_COMP) | \
423 (1UL << IRQ_PEND_EXT_CPU_TIMER) | \
424 (1UL << IRQ_PEND_EXT_MALFUNC) | \
425 (1UL << IRQ_PEND_EXT_EMERGENCY) | \
426 (1UL << IRQ_PEND_EXT_EXTERNAL) | \
427 (1UL << IRQ_PEND_EXT_TIMING) | \
428 (1UL << IRQ_PEND_EXT_HOST) | \
429 (1UL << IRQ_PEND_EXT_SERVICE) | \
430 (1UL << IRQ_PEND_VIRTIO) | \
431 (1UL << IRQ_PEND_PFAULT_INIT) | \
432 (1UL << IRQ_PEND_PFAULT_DONE))
433
434#define IRQ_PEND_IO_MASK ((1UL << IRQ_PEND_IO_ISC_0) | \
435 (1UL << IRQ_PEND_IO_ISC_1) | \
436 (1UL << IRQ_PEND_IO_ISC_2) | \
437 (1UL << IRQ_PEND_IO_ISC_3) | \
438 (1UL << IRQ_PEND_IO_ISC_4) | \
439 (1UL << IRQ_PEND_IO_ISC_5) | \
440 (1UL << IRQ_PEND_IO_ISC_6) | \
441 (1UL << IRQ_PEND_IO_ISC_7))
442
443#define IRQ_PEND_MCHK_MASK ((1UL << IRQ_PEND_MCHK_REP) | \
444 (1UL << IRQ_PEND_MCHK_EX))
445
Christian Borntraeger180c12f2008-06-27 15:05:40 +0200446struct kvm_s390_interrupt_info {
Carsten Otteba5c1e92008-03-25 18:47:26 +0100447 struct list_head list;
448 u64 type;
449 union {
Christian Borntraeger180c12f2008-06-27 15:05:40 +0200450 struct kvm_s390_io_info io;
451 struct kvm_s390_ext_info ext;
452 struct kvm_s390_pgm_info pgm;
Christian Ehrhardt8bb3a2e2011-07-24 10:48:31 +0200453 struct kvm_s390_emerg_info emerg;
Christian Ehrhardt7697e71f2011-10-18 12:27:15 +0200454 struct kvm_s390_extcall_info extcall;
Christian Borntraeger180c12f2008-06-27 15:05:40 +0200455 struct kvm_s390_prefix_info prefix;
David Hildenbrand28225452014-10-15 16:48:16 +0200456 struct kvm_s390_stop_info stop;
Cornelia Huck48a3e952012-12-20 15:32:09 +0100457 struct kvm_s390_mchk_info mchk;
Carsten Otteba5c1e92008-03-25 18:47:26 +0100458 };
459};
460
Jens Freimannc0e61592013-07-29 20:54:15 +0200461struct kvm_s390_irq_payload {
462 struct kvm_s390_io_info io;
463 struct kvm_s390_ext_info ext;
464 struct kvm_s390_pgm_info pgm;
465 struct kvm_s390_emerg_info emerg;
466 struct kvm_s390_extcall_info extcall;
467 struct kvm_s390_prefix_info prefix;
David Hildenbrand28225452014-10-15 16:48:16 +0200468 struct kvm_s390_stop_info stop;
Jens Freimannc0e61592013-07-29 20:54:15 +0200469 struct kvm_s390_mchk_info mchk;
470};
471
Christian Borntraeger180c12f2008-06-27 15:05:40 +0200472struct kvm_s390_local_interrupt {
Carsten Otteba5c1e92008-03-25 18:47:26 +0100473 spinlock_t lock;
Christian Borntraeger180c12f2008-06-27 15:05:40 +0200474 struct kvm_s390_float_interrupt *float_int;
Marcelo Tosatti85773702016-02-19 09:46:39 +0100475 struct swait_queue_head *wq;
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100476 atomic_t *cpuflags;
Jens Freimannc0e61592013-07-29 20:54:15 +0200477 DECLARE_BITMAP(sigp_emerg_pending, KVM_MAX_VCPUS);
478 struct kvm_s390_irq_payload irq;
479 unsigned long pending_irqs;
Carsten Otteba5c1e92008-03-25 18:47:26 +0100480};
481
Jens Freimann6d3da242013-07-03 15:18:35 +0200482#define FIRQ_LIST_IO_ISC_0 0
483#define FIRQ_LIST_IO_ISC_1 1
484#define FIRQ_LIST_IO_ISC_2 2
485#define FIRQ_LIST_IO_ISC_3 3
486#define FIRQ_LIST_IO_ISC_4 4
487#define FIRQ_LIST_IO_ISC_5 5
488#define FIRQ_LIST_IO_ISC_6 6
489#define FIRQ_LIST_IO_ISC_7 7
490#define FIRQ_LIST_PFAULT 8
491#define FIRQ_LIST_VIRTIO 9
492#define FIRQ_LIST_COUNT 10
493#define FIRQ_CNTR_IO 0
494#define FIRQ_CNTR_SERVICE 1
495#define FIRQ_CNTR_VIRTIO 2
496#define FIRQ_CNTR_PFAULT 3
497#define FIRQ_MAX_COUNT 4
498
Christian Borntraeger180c12f2008-06-27 15:05:40 +0200499struct kvm_s390_float_interrupt {
Jens Freimann6d3da242013-07-03 15:18:35 +0200500 unsigned long pending_irqs;
Carsten Otteba5c1e92008-03-25 18:47:26 +0100501 spinlock_t lock;
Jens Freimann6d3da242013-07-03 15:18:35 +0200502 struct list_head lists[FIRQ_LIST_COUNT];
503 int counters[FIRQ_MAX_COUNT];
504 struct kvm_s390_mchk_info mchk;
505 struct kvm_s390_ext_info srv_signal;
Carsten Otteba5c1e92008-03-25 18:47:26 +0100506 int next_rr_cpu;
Jens Freimann609433f2014-03-18 16:34:18 +0100507 unsigned long idle_mask[BITS_TO_LONGS(KVM_MAX_VCPUS)];
Carsten Otteba5c1e92008-03-25 18:47:26 +0100508};
509
David Hildenbrand27291e22014-01-23 12:26:52 +0100510struct kvm_hw_wp_info_arch {
511 unsigned long addr;
512 unsigned long phys_addr;
513 int len;
514 char *old_data;
515};
516
517struct kvm_hw_bp_info_arch {
518 unsigned long addr;
519 int len;
520};
521
522/*
523 * Only the upper 16 bits of kvm_guest_debug->control are arch specific.
524 * Further KVM_GUESTDBG flags which an be used from userspace can be found in
525 * arch/s390/include/uapi/asm/kvm.h
526 */
527#define KVM_GUESTDBG_EXIT_PENDING 0x10000000
528
529#define guestdbg_enabled(vcpu) \
530 (vcpu->guest_debug & KVM_GUESTDBG_ENABLE)
531#define guestdbg_sstep_enabled(vcpu) \
532 (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
533#define guestdbg_hw_bp_enabled(vcpu) \
534 (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)
535#define guestdbg_exit_pending(vcpu) (guestdbg_enabled(vcpu) && \
536 (vcpu->guest_debug & KVM_GUESTDBG_EXIT_PENDING))
537
538struct kvm_guestdbg_info_arch {
539 unsigned long cr0;
540 unsigned long cr9;
541 unsigned long cr10;
542 unsigned long cr11;
543 struct kvm_hw_bp_info_arch *hw_bp_info;
544 struct kvm_hw_wp_info_arch *hw_wp_info;
545 int nr_hw_bp;
546 int nr_hw_wp;
547 unsigned long last_bp;
548};
Carsten Otteba5c1e92008-03-25 18:47:26 +0100549
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100550struct kvm_vcpu_arch {
Christian Borntraeger180c12f2008-06-27 15:05:40 +0200551 struct kvm_s390_sie_block *sie_block;
David Hildenbrandadbf1692016-05-27 22:03:52 +0200552 /* if vsie is active, currently executed shadow sie control block */
553 struct kvm_s390_sie_block *vsie_block;
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100554 unsigned int host_acrs[NUM_ACRS];
Hendrik Brueckner9977e882015-06-10 12:53:42 +0200555 struct fpu host_fpregs;
Christian Borntraeger180c12f2008-06-27 15:05:40 +0200556 struct kvm_s390_local_interrupt local_int;
Christian Borntraegerca872302009-05-12 17:21:49 +0200557 struct hrtimer ckc_timer;
Heiko Carstens1b0462e2014-01-01 16:31:49 +0100558 struct kvm_s390_pgm_info pgm;
Carsten Otte598841c2011-07-24 10:48:21 +0200559 struct gmap *gmap;
David Hildenbrand37d9df92015-03-11 16:47:33 +0100560 /* backup location for the currently enabled gmap when scheduled out */
561 struct gmap *enabled_gmap;
David Hildenbrand27291e22014-01-23 12:26:52 +0100562 struct kvm_guestdbg_info_arch guestdbg;
Dominik Dingel3c038e62013-10-07 17:11:48 +0200563 unsigned long pfault_token;
564 unsigned long pfault_select;
565 unsigned long pfault_compare;
David Hildenbranddb0758b2016-02-15 09:42:25 +0100566 bool cputm_enabled;
David Hildenbrand9c23a132016-02-17 21:53:33 +0100567 /*
568 * The seqcount protects updates to cputm_start and sie_block.cputm,
569 * this way we can have non-blocking reads with consistent values.
570 * Only the owning VCPU thread (vcpu->cpu) is allowed to change these
571 * values and to start/stop/enable/disable cpu timer accounting.
572 */
573 seqcount_t cputm_seqcount;
David Hildenbranddb0758b2016-02-15 09:42:25 +0100574 __u64 cputm_start;
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100575};
576
577struct kvm_vm_stat {
578 u32 remote_tlb_flush;
579};
580
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900581struct kvm_arch_memory_slot {
582};
583
Cornelia Huck841b91c2013-07-15 13:36:01 +0200584struct s390_map_info {
585 struct list_head list;
586 __u64 guest_addr;
587 __u64 addr;
588 struct page *page;
589};
590
591struct s390_io_adapter {
592 unsigned int id;
593 int isc;
594 bool maskable;
595 bool masked;
596 bool swap;
597 struct rw_semaphore maps_lock;
598 struct list_head maps;
599 atomic_t nr_maps;
600};
601
602#define MAX_S390_IO_ADAPTERS ((MAX_ISC + 1) * 8)
603#define MAX_S390_ADAPTER_MAPS 256
604
Michael Mueller9d8d5782015-02-02 15:42:51 +0100605/* maximum size of facilities and facility mask is 2k bytes */
606#define S390_ARCH_FAC_LIST_SIZE_BYTE (1<<11)
607#define S390_ARCH_FAC_LIST_SIZE_U64 \
608 (S390_ARCH_FAC_LIST_SIZE_BYTE / sizeof(u64))
609#define S390_ARCH_FAC_MASK_SIZE_BYTE S390_ARCH_FAC_LIST_SIZE_BYTE
610#define S390_ARCH_FAC_MASK_SIZE_U64 \
611 (S390_ARCH_FAC_MASK_SIZE_BYTE / sizeof(u64))
612
Michael Mueller9d8d5782015-02-02 15:42:51 +0100613struct kvm_s390_cpu_model {
David Hildenbrandc54f0d62015-12-02 08:53:52 +0100614 /* facility mask supported by kvm & hosting machine */
615 __u64 fac_mask[S390_ARCH_FAC_LIST_SIZE_U64];
616 /* facility list requested by guest (in dma page) */
617 __u64 *fac_list;
David Hildenbrand9bb0ec02016-04-04 14:27:51 +0200618 u64 cpuid;
Michael Mueller658b6ed2015-02-02 15:49:35 +0100619 unsigned short ibc;
Michael Mueller9d8d5782015-02-02 15:42:51 +0100620};
621
Tony Krowiak5102ee82014-06-27 14:46:01 -0400622struct kvm_s390_crypto {
623 struct kvm_s390_crypto_cb *crycb;
624 __u32 crycbd;
Tony Krowiaka374e892014-09-03 10:13:53 +0200625 __u8 aes_kw;
626 __u8 dea_kw;
Tony Krowiak5102ee82014-06-27 14:46:01 -0400627};
628
629struct kvm_s390_crypto_cb {
Tony Krowiaka374e892014-09-03 10:13:53 +0200630 __u8 reserved00[72]; /* 0x0000 */
631 __u8 dea_wrapping_key_mask[24]; /* 0x0048 */
632 __u8 aes_wrapping_key_mask[32]; /* 0x0060 */
Tony Krowiak45c9b472015-01-13 11:33:26 -0500633 __u8 reserved80[128]; /* 0x0080 */
Tony Krowiak5102ee82014-06-27 14:46:01 -0400634};
635
David Hildenbrandc54f0d62015-12-02 08:53:52 +0100636/*
637 * sie_page2 has to be allocated as DMA because fac_list and crycb need
638 * 31bit addresses in the sie control block.
639 */
640struct sie_page2 {
641 __u64 fac_list[S390_ARCH_FAC_LIST_SIZE_U64]; /* 0x0000 */
642 struct kvm_s390_crypto_cb crycb; /* 0x0800 */
643 u8 reserved900[0x1000 - 0x900]; /* 0x0900 */
644} __packed;
645
David Hildenbranda3508fb2015-07-08 13:19:48 +0200646struct kvm_s390_vsie {
647 struct mutex mutex;
648 struct radix_tree_root addr_to_page;
649 int page_count;
650 int next;
651 struct page *pages[KVM_MAX_VCPUS];
652};
653
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100654struct kvm_arch{
Eugene (jno) Dvurechenski7d43bafcf2015-04-22 17:09:44 +0200655 void *sca;
656 int use_esca;
Eugene (jno) Dvurechenski5e044312015-04-22 18:08:39 +0200657 rwlock_t sca_lock;
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100658 debug_info_t *dbf;
Christian Borntraeger180c12f2008-06-27 15:05:40 +0200659 struct kvm_s390_float_interrupt float_int;
Jens Freimannc05c4182013-10-07 16:13:45 +0200660 struct kvm_device *flic;
Carsten Otte598841c2011-07-24 10:48:21 +0200661 struct gmap *gmap;
Dominik Dingela3a92c32014-12-01 17:24:42 +0100662 unsigned long mem_limit;
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100663 int css_support;
Cornelia Huck84223592013-07-15 13:36:01 +0200664 int use_irqchip;
Dominik Dingelb31605c2014-03-25 13:47:11 +0100665 int use_cmma;
David Hildenbrand6352e4d2014-04-10 17:35:00 +0200666 int user_cpu_state_ctrl;
David Hildenbrand2444b352014-10-09 14:10:13 +0200667 int user_sigp;
Ekaterina Tumanovae44fc8c2015-01-30 16:55:56 +0100668 int user_stsi;
Cornelia Huck841b91c2013-07-15 13:36:01 +0200669 struct s390_io_adapter *adapters[MAX_S390_IO_ADAPTERS];
Heiko Carstens8a2422342014-01-10 14:33:28 +0100670 wait_queue_head_t ipte_wq;
Thomas Hutha6b7e452014-10-01 14:48:42 +0200671 int ipte_lock_count;
672 struct mutex ipte_mutex;
Janosch Frank7d0a5e62016-05-10 15:03:42 +0200673 struct ratelimit_state sthyi_limit;
David Hildenbrand8ad35752014-03-14 11:00:21 +0100674 spinlock_t start_stop_lock;
David Hildenbrandc54f0d62015-12-02 08:53:52 +0100675 struct sie_page2 *sie_page2;
Michael Mueller9d8d5782015-02-02 15:42:51 +0100676 struct kvm_s390_cpu_model model;
Tony Krowiak5102ee82014-06-27 14:46:01 -0400677 struct kvm_s390_crypto crypto;
David Hildenbranda3508fb2015-07-08 13:19:48 +0200678 struct kvm_s390_vsie vsie;
Jason J. Herne72f25022014-11-25 09:46:02 -0500679 u64 epoch;
David Hildenbrand15c97052015-03-19 17:36:43 +0100680 /* subset of available cpu features enabled by user space */
681 DECLARE_BITMAP(cpu_feat, KVM_S390_VM_CPU_FEAT_NR_BITS);
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100682};
683
Dominik Dingelbf640872013-07-26 15:04:07 +0200684#define KVM_HVA_ERR_BAD (-1UL)
685#define KVM_HVA_ERR_RO_BAD (-2UL)
686
687static inline bool kvm_is_error_hva(unsigned long addr)
688{
689 return IS_ERR_VALUE(addr);
690}
691
Dominik Dingel3c038e62013-10-07 17:11:48 +0200692#define ASYNC_PF_PER_VCPU 64
Dominik Dingel3c038e62013-10-07 17:11:48 +0200693struct kvm_arch_async_pf {
694 unsigned long pfault_token;
695};
696
697bool kvm_arch_can_inject_async_page_present(struct kvm_vcpu *vcpu);
698
699void kvm_arch_async_page_ready(struct kvm_vcpu *vcpu,
700 struct kvm_async_pf *work);
701
702void kvm_arch_async_page_not_present(struct kvm_vcpu *vcpu,
703 struct kvm_async_pf *work);
704
705void kvm_arch_async_page_present(struct kvm_vcpu *vcpu,
706 struct kvm_async_pf *work);
707
Christian Borntraeger5a32c1a2012-01-11 11:20:32 +0100708extern int sie64a(struct kvm_s390_sie_block *, u64 *);
Heinz Graalfsb764bb12013-06-12 13:54:56 +0200709extern char sie_exit;
Radim Krčmář0865e632014-08-28 15:13:02 +0200710
Radim Krčmář13a34e02014-08-28 15:13:03 +0200711static inline void kvm_arch_hardware_disable(void) {}
Radim Krčmář0865e632014-08-28 15:13:02 +0200712static inline void kvm_arch_check_processor_compat(void *rtn) {}
Radim Krčmář0865e632014-08-28 15:13:02 +0200713static inline void kvm_arch_sync_events(struct kvm *kvm) {}
714static inline void kvm_arch_vcpu_uninit(struct kvm_vcpu *vcpu) {}
715static inline void kvm_arch_sched_in(struct kvm_vcpu *vcpu, int cpu) {}
716static inline void kvm_arch_free_memslot(struct kvm *kvm,
717 struct kvm_memory_slot *free, struct kvm_memory_slot *dont) {}
Paolo Bonzini15f46012015-05-17 21:26:08 +0200718static inline void kvm_arch_memslots_updated(struct kvm *kvm, struct kvm_memslots *slots) {}
Radim Krčmář0865e632014-08-28 15:13:02 +0200719static inline void kvm_arch_flush_shadow_all(struct kvm *kvm) {}
720static inline void kvm_arch_flush_shadow_memslot(struct kvm *kvm,
721 struct kvm_memory_slot *slot) {}
Christoffer Dall3217f7c2015-08-27 16:41:15 +0200722static inline void kvm_arch_vcpu_blocking(struct kvm_vcpu *vcpu) {}
723static inline void kvm_arch_vcpu_unblocking(struct kvm_vcpu *vcpu) {}
Radim Krčmář0865e632014-08-28 15:13:02 +0200724
Christian Borntraeger3491caf2016-05-13 12:16:35 +0200725void kvm_arch_vcpu_block_finish(struct kvm_vcpu *vcpu);
726
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100727#endif