]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - arch/s390/include/asm/kvm_host.h
Merge remote-tracking branch 's390/guarded-storage' into kvms390/next
[mirror_ubuntu-bionic-kernel.git] / arch / s390 / include / asm / kvm_host.h
CommitLineData
b0c632db 1/*
a53c8fab 2 * definition for kernel virtual machines on s390
b0c632db 3 *
a53c8fab 4 * Copyright IBM Corp. 2008, 2009
b0c632db
HC
5 *
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
65647300
PB
16
17#include <linux/types.h>
ca872302
CB
18#include <linux/hrtimer.h>
19#include <linux/interrupt.h>
65647300 20#include <linux/kvm_types.h>
b0c632db 21#include <linux/kvm_host.h>
81aa8efe 22#include <linux/kvm.h>
9c23a131 23#include <linux/seqlock.h>
b0c632db 24#include <asm/debug.h>
e86a6ed6 25#include <asm/cpu.h>
b0753902 26#include <asm/fpu/api.h>
841b91c5 27#include <asm/isc.h>
b0c632db 28
bc784cce
ED
29#define KVM_S390_BSCA_CPU_SLOTS 64
30#define KVM_S390_ESCA_CPU_SLOTS 248
a6940674 31#define KVM_MAX_VCPUS 255
bbacc0c1 32#define KVM_USER_MEM_SLOTS 32
b0c632db 33
84223598
CH
34/*
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
c4a8de35 41#define KVM_HALT_POLL_NS_DEFAULT 80000
84223598 42
2860c4b1
PB
43/* s390-specific vcpu->requests bit members */
44#define KVM_REQ_ENABLE_IBS 8
45#define KVM_REQ_DISABLE_IBS 9
6502a34c 46#define KVM_REQ_ICPT_OPEREXC 10
2860c4b1 47
ea5f4969
DH
48#define SIGP_CTRL_C 0x80
49#define SIGP_CTRL_SCN_MASK 0x3f
4953919f 50
bc784cce
ED
51union bsca_sigp_ctrl {
52 __u8 value;
53 struct {
54 __u8 c : 1;
55 __u8 r : 1;
56 __u8 scn : 6;
57 };
58} __packed;
59
60union esca_sigp_ctrl {
61 __u16 value;
62 struct {
63 __u8 c : 1;
64 __u8 reserved: 7;
65 __u8 scn;
66 };
67} __packed;
68
69struct esca_entry {
70 union esca_sigp_ctrl sigp_ctrl;
71 __u16 reserved1[3];
72 __u64 sda;
73 __u64 reserved2[6];
74} __packed;
75
76struct bsca_entry {
ea5f4969 77 __u8 reserved0;
bc784cce 78 union bsca_sigp_ctrl sigp_ctrl;
ea5f4969 79 __u16 reserved[3];
b0c632db
HC
80 __u64 sda;
81 __u64 reserved2[2];
82} __attribute__((packed));
83
8a242234
HC
84union ipte_control {
85 unsigned long val;
86 struct {
87 unsigned long k : 1;
88 unsigned long kh : 31;
89 unsigned long kg : 32;
90 };
91};
b0c632db 92
bc784cce 93struct bsca_block {
8a242234 94 union ipte_control ipte_control;
b0c632db
HC
95 __u64 reserved[5];
96 __u64 mcn;
97 __u64 reserved2;
bc784cce 98 struct bsca_entry cpu[KVM_S390_BSCA_CPU_SLOTS];
b0c632db
HC
99} __attribute__((packed));
100
bc784cce
ED
101struct esca_block {
102 union ipte_control ipte_control;
103 __u64 reserved1[7];
104 __u64 mcn[4];
105 __u64 reserved2[20];
106 struct esca_entry cpu[KVM_S390_ESCA_CPU_SLOTS];
107} __packed;
108
9e6dabef 109#define CPUSTAT_STOPPED 0x80000000
b0c632db
HC
110#define CPUSTAT_WAIT 0x10000000
111#define CPUSTAT_ECALL_PEND 0x08000000
112#define CPUSTAT_STOP_INT 0x04000000
113#define CPUSTAT_IO_INT 0x02000000
114#define CPUSTAT_EXT_INT 0x01000000
115#define CPUSTAT_RUNNING 0x00800000
116#define CPUSTAT_RETAINED 0x00400000
117#define CPUSTAT_TIMING_SUB 0x00020000
118#define CPUSTAT_SIE_SUB 0x00010000
119#define CPUSTAT_RRF 0x00008000
120#define CPUSTAT_SLSV 0x00004000
121#define CPUSTAT_SLSR 0x00002000
122#define CPUSTAT_ZARCH 0x00000800
123#define CPUSTAT_MCDS 0x00000100
124#define CPUSTAT_SM 0x00000080
8ad35755 125#define CPUSTAT_IBS 0x00000040
53df84f8 126#define CPUSTAT_GED2 0x00000010
b0c632db 127#define CPUSTAT_G 0x00000008
69d0d3a3 128#define CPUSTAT_GED 0x00000004
b0c632db
HC
129#define CPUSTAT_J 0x00000002
130#define CPUSTAT_P 0x00000001
131
180c12fb 132struct kvm_s390_sie_block {
b0c632db 133 atomic_t cpuflags; /* 0x0000 */
fda902cb
MM
134 __u32 : 1; /* 0x0004 */
135 __u32 prefix : 18;
658b6eda
MM
136 __u32 : 1;
137 __u32 ibc : 12;
95d38fd0
CB
138 __u8 reserved08[4]; /* 0x0008 */
139#define PROG_IN_SIE (1<<0)
140 __u32 prog0c; /* 0x000c */
49b99e1e 141 __u8 reserved10[16]; /* 0x0010 */
8e236546
CB
142#define PROG_BLOCK_SIE (1<<0)
143#define PROG_REQUEST (1<<1)
49b99e1e
CB
144 atomic_t prog20; /* 0x0020 */
145 __u8 reserved24[4]; /* 0x0024 */
b0c632db
HC
146 __u64 cputm; /* 0x0028 */
147 __u64 ckc; /* 0x0030 */
148 __u64 epoch; /* 0x0038 */
a3508fbe 149 __u32 svcc; /* 0x0040 */
ba5c1e9b 150#define LCTL_CR0 0x8000
d8346b7d 151#define LCTL_CR6 0x0200
27291e21
DH
152#define LCTL_CR9 0x0040
153#define LCTL_CR10 0x0020
154#define LCTL_CR11 0x0010
48a3e950 155#define LCTL_CR14 0x0002
b0c632db
HC
156 __u16 lctl; /* 0x0044 */
157 __s16 icpua; /* 0x0046 */
95ca2cb5 158#define ICTL_OPEREXC 0x80000000
27291e21
DH
159#define ICTL_PINT 0x20000000
160#define ICTL_LPSW 0x00400000
161#define ICTL_STCTL 0x00040000
162#define ICTL_ISKE 0x00004000
163#define ICTL_SSKE 0x00002000
164#define ICTL_RRBE 0x00001000
5a5e6536 165#define ICTL_TPROT 0x00000200
b0c632db 166 __u32 ictl; /* 0x0048 */
0c9d8683
DH
167#define ECA_CEI 0x80000000
168#define ECA_IB 0x40000000
169#define ECA_SIGPI 0x10000000
170#define ECA_MVPGI 0x01000000
171#define ECA_VX 0x00020000
172#define ECA_PROTEXCI 0x00002000
173#define ECA_SII 0x00000001
b0c632db 174 __u32 eca; /* 0x004c */
8712836b
DH
175#define ICPT_INST 0x04
176#define ICPT_PROGI 0x08
177#define ICPT_INSTPROGI 0x0C
947b8972 178#define ICPT_EXTREQ 0x10
a3508fbe 179#define ICPT_EXTINT 0x14
947b8972
FA
180#define ICPT_IOREQ 0x18
181#define ICPT_WAIT 0x1c
a3508fbe
DH
182#define ICPT_VALIDITY 0x20
183#define ICPT_STOP 0x28
8712836b
DH
184#define ICPT_OPEREXC 0x2C
185#define ICPT_PARTEXEC 0x38
186#define ICPT_IOINST 0x40
b0c632db 187 __u8 icptcode; /* 0x0050 */
04b41acd 188 __u8 icptstatus; /* 0x0051 */
b0c632db
HC
189 __u16 ihcpu; /* 0x0052 */
190 __u8 reserved54[2]; /* 0x0054 */
191 __u16 ipa; /* 0x0056 */
192 __u32 ipb; /* 0x0058 */
193 __u32 scaoh; /* 0x005c */
194 __u8 reserved60; /* 0x0060 */
0c9d8683
DH
195#define ECB_TE 0x10
196#define ECB_SRSI 0x04
197#define ECB_HOSTPROTINT 0x02
b0c632db 198 __u8 ecb; /* 0x0061 */
0c9d8683
DH
199#define ECB2_CMMA 0x80
200#define ECB2_IEP 0x20
201#define ECB2_PFMFI 0x08
202#define ECB2_ESCA 0x04
69d0d3a3 203 __u8 ecb2; /* 0x0062 */
a374e892 204#define ECB3_DEA 0x08
0c9d8683
DH
205#define ECB3_AES 0x04
206#define ECB3_RI 0x01
a374e892 207 __u8 ecb3; /* 0x0063 */
b0c632db
HC
208 __u32 scaol; /* 0x0064 */
209 __u8 reserved68[4]; /* 0x0068 */
210 __u32 todpr; /* 0x006c */
efed1104
DH
211 __u8 reserved70[16]; /* 0x0070 */
212 __u64 mso; /* 0x0080 */
213 __u64 msl; /* 0x0088 */
b0c632db
HC
214 psw_t gpsw; /* 0x0090 */
215 __u64 gg14; /* 0x00a0 */
216 __u64 gg15; /* 0x00a8 */
f14d82e0
TH
217 __u8 reservedb0[20]; /* 0x00b0 */
218 __u16 extcpuaddr; /* 0x00c4 */
219 __u16 eic; /* 0x00c6 */
220 __u32 reservedc8; /* 0x00c8 */
439716a5
DH
221 __u16 pgmilc; /* 0x00cc */
222 __u16 iprcc; /* 0x00ce */
223 __u32 dxc; /* 0x00d0 */
224 __u16 mcn; /* 0x00d4 */
225 __u8 perc; /* 0x00d6 */
226 __u8 peratmid; /* 0x00d7 */
227 __u64 peraddr; /* 0x00d8 */
228 __u8 eai; /* 0x00e0 */
229 __u8 peraid; /* 0x00e1 */
230 __u8 oai; /* 0x00e2 */
231 __u8 armid; /* 0x00e3 */
232 __u8 reservede4[4]; /* 0x00e4 */
233 __u64 tecmc; /* 0x00e8 */
5102ee87
TK
234 __u8 reservedf0[12]; /* 0x00f0 */
235#define CRYCB_FORMAT1 0x00000001
45c9b47c 236#define CRYCB_FORMAT2 0x00000003
5102ee87 237 __u32 crycbd; /* 0x00fc */
b0c632db
HC
238 __u64 gcr[16]; /* 0x0100 */
239 __u64 gbea; /* 0x0180 */
ef50f7ac
CB
240 __u8 reserved188[24]; /* 0x0188 */
241 __u32 fac; /* 0x01a0 */
b31288fa
KW
242 __u8 reserved1a4[20]; /* 0x01a4 */
243 __u64 cbrlo; /* 0x01b8 */
13211ea7 244 __u8 reserved1c0[8]; /* 0x01c0 */
0c9d8683 245#define ECD_HOSTREGMGMT 0x20000000
13211ea7
EF
246 __u32 ecd; /* 0x01c8 */
247 __u8 reserved1cc[18]; /* 0x01cc */
672550fb
CB
248 __u64 pp; /* 0x01de */
249 __u8 reserved1e6[2]; /* 0x01e6 */
7feb6bb8 250 __u64 itdba; /* 0x01e8 */
c6e5f166 251 __u64 riccbd; /* 0x01f0 */
c9bc1eab 252 __u64 gvrd; /* 0x01f8 */
b0c632db
HC
253} __attribute__((packed));
254
7feb6bb8
MM
255struct kvm_s390_itdb {
256 __u8 data[256];
257} __packed;
258
259struct sie_page {
260 struct kvm_s390_sie_block sie_block;
261 __u8 reserved200[1024]; /* 0x0200 */
262 struct kvm_s390_itdb itdb; /* 0x0600 */
efa48163 263 __u8 reserved700[2304]; /* 0x0700 */
7feb6bb8
MM
264} __packed;
265
b0c632db 266struct kvm_vcpu_stat {
8a7e75d4
SJS
267 u64 exit_userspace;
268 u64 exit_null;
269 u64 exit_external_request;
270 u64 exit_external_interrupt;
271 u64 exit_stop_request;
272 u64 exit_validity;
273 u64 exit_instruction;
274 u64 exit_pei;
275 u64 halt_successful_poll;
276 u64 halt_attempted_poll;
277 u64 halt_poll_invalid;
278 u64 halt_wakeup;
279 u64 instruction_lctl;
280 u64 instruction_lctlg;
281 u64 instruction_stctl;
282 u64 instruction_stctg;
283 u64 exit_program_interruption;
284 u64 exit_instr_and_program;
285 u64 exit_operation_exception;
286 u64 deliver_external_call;
287 u64 deliver_emergency_signal;
288 u64 deliver_service_signal;
289 u64 deliver_virtio_interrupt;
290 u64 deliver_stop_signal;
291 u64 deliver_prefix_signal;
292 u64 deliver_restart_signal;
293 u64 deliver_program_int;
294 u64 deliver_io_int;
295 u64 exit_wait_state;
296 u64 instruction_pfmf;
297 u64 instruction_stidp;
298 u64 instruction_spx;
299 u64 instruction_stpx;
300 u64 instruction_stap;
301 u64 instruction_storage_key;
302 u64 instruction_ipte_interlock;
303 u64 instruction_stsch;
304 u64 instruction_chsc;
305 u64 instruction_stsi;
306 u64 instruction_stfl;
307 u64 instruction_tprot;
308 u64 instruction_sie;
309 u64 instruction_essa;
310 u64 instruction_sthyi;
311 u64 instruction_sigp_sense;
312 u64 instruction_sigp_sense_running;
313 u64 instruction_sigp_external_call;
314 u64 instruction_sigp_emergency;
315 u64 instruction_sigp_cond_emergency;
316 u64 instruction_sigp_start;
317 u64 instruction_sigp_stop;
318 u64 instruction_sigp_stop_store_status;
319 u64 instruction_sigp_store_status;
320 u64 instruction_sigp_store_adtl_status;
321 u64 instruction_sigp_arch;
322 u64 instruction_sigp_prefix;
323 u64 instruction_sigp_restart;
324 u64 instruction_sigp_init_cpu_reset;
325 u64 instruction_sigp_cpu_reset;
326 u64 instruction_sigp_unknown;
327 u64 diagnose_10;
328 u64 diagnose_44;
329 u64 diagnose_9c;
330 u64 diagnose_258;
331 u64 diagnose_308;
332 u64 diagnose_500;
b0c632db
HC
333};
334
bcd84683
JF
335#define PGM_OPERATION 0x01
336#define PGM_PRIVILEGED_OP 0x02
337#define PGM_EXECUTE 0x03
338#define PGM_PROTECTION 0x04
339#define PGM_ADDRESSING 0x05
340#define PGM_SPECIFICATION 0x06
341#define PGM_DATA 0x07
342#define PGM_FIXED_POINT_OVERFLOW 0x08
343#define PGM_FIXED_POINT_DIVIDE 0x09
344#define PGM_DECIMAL_OVERFLOW 0x0a
345#define PGM_DECIMAL_DIVIDE 0x0b
346#define PGM_HFP_EXPONENT_OVERFLOW 0x0c
347#define PGM_HFP_EXPONENT_UNDERFLOW 0x0d
348#define PGM_HFP_SIGNIFICANCE 0x0e
349#define PGM_HFP_DIVIDE 0x0f
350#define PGM_SEGMENT_TRANSLATION 0x10
351#define PGM_PAGE_TRANSLATION 0x11
352#define PGM_TRANSLATION_SPEC 0x12
353#define PGM_SPECIAL_OPERATION 0x13
354#define PGM_OPERAND 0x15
355#define PGM_TRACE_TABEL 0x16
403c8648 356#define PGM_VECTOR_PROCESSING 0x1b
bcd84683
JF
357#define PGM_SPACE_SWITCH 0x1c
358#define PGM_HFP_SQUARE_ROOT 0x1d
359#define PGM_PC_TRANSLATION_SPEC 0x1f
360#define PGM_AFX_TRANSLATION 0x20
361#define PGM_ASX_TRANSLATION 0x21
362#define PGM_LX_TRANSLATION 0x22
363#define PGM_EX_TRANSLATION 0x23
364#define PGM_PRIMARY_AUTHORITY 0x24
365#define PGM_SECONDARY_AUTHORITY 0x25
366#define PGM_LFX_TRANSLATION 0x26
367#define PGM_LSX_TRANSLATION 0x27
368#define PGM_ALET_SPECIFICATION 0x28
369#define PGM_ALEN_TRANSLATION 0x29
370#define PGM_ALE_SEQUENCE 0x2a
371#define PGM_ASTE_VALIDITY 0x2b
372#define PGM_ASTE_SEQUENCE 0x2c
373#define PGM_EXTENDED_AUTHORITY 0x2d
374#define PGM_LSTE_SEQUENCE 0x2e
375#define PGM_ASTE_INSTANCE 0x2f
376#define PGM_STACK_FULL 0x30
377#define PGM_STACK_EMPTY 0x31
378#define PGM_STACK_SPECIFICATION 0x32
379#define PGM_STACK_TYPE 0x33
380#define PGM_STACK_OPERATION 0x34
381#define PGM_ASCE_TYPE 0x38
382#define PGM_REGION_FIRST_TRANS 0x39
383#define PGM_REGION_SECOND_TRANS 0x3a
384#define PGM_REGION_THIRD_TRANS 0x3b
385#define PGM_MONITOR 0x40
386#define PGM_PER 0x80
387#define PGM_CRYPTO_OPERATION 0x119
ba5c1e9b 388
c0e6159d
JF
389/* irq types in order of priority */
390enum irq_types {
391 IRQ_PEND_MCHK_EX = 0,
392 IRQ_PEND_SVC,
393 IRQ_PEND_PROG,
394 IRQ_PEND_MCHK_REP,
395 IRQ_PEND_EXT_IRQ_KEY,
396 IRQ_PEND_EXT_MALFUNC,
397 IRQ_PEND_EXT_EMERGENCY,
398 IRQ_PEND_EXT_EXTERNAL,
399 IRQ_PEND_EXT_CLOCK_COMP,
400 IRQ_PEND_EXT_CPU_TIMER,
401 IRQ_PEND_EXT_TIMING,
402 IRQ_PEND_EXT_SERVICE,
403 IRQ_PEND_EXT_HOST,
404 IRQ_PEND_PFAULT_INIT,
405 IRQ_PEND_PFAULT_DONE,
406 IRQ_PEND_VIRTIO,
407 IRQ_PEND_IO_ISC_0,
408 IRQ_PEND_IO_ISC_1,
409 IRQ_PEND_IO_ISC_2,
410 IRQ_PEND_IO_ISC_3,
411 IRQ_PEND_IO_ISC_4,
412 IRQ_PEND_IO_ISC_5,
413 IRQ_PEND_IO_ISC_6,
414 IRQ_PEND_IO_ISC_7,
415 IRQ_PEND_SIGP_STOP,
416 IRQ_PEND_RESTART,
417 IRQ_PEND_SET_PREFIX,
418 IRQ_PEND_COUNT
419};
420
6d3da241
JF
421/* We have 2M for virtio device descriptor pages. Smallest amount of
422 * memory per page is 24 bytes (1 queue), so (2048*1024) / 24 = 87381
423 */
424#define KVM_S390_MAX_VIRTIO_IRQS 87381
425
c0e6159d
JF
426/*
427 * Repressible (non-floating) machine check interrupts
428 * subclass bits in MCIC
429 */
430#define MCHK_EXTD_BIT 58
431#define MCHK_DEGR_BIT 56
432#define MCHK_WARN_BIT 55
433#define MCHK_REP_MASK ((1UL << MCHK_DEGR_BIT) | \
434 (1UL << MCHK_EXTD_BIT) | \
435 (1UL << MCHK_WARN_BIT))
436
437/* Exigent machine check interrupts subclass bits in MCIC */
438#define MCHK_SD_BIT 63
439#define MCHK_PD_BIT 62
440#define MCHK_EX_MASK ((1UL << MCHK_SD_BIT) | (1UL << MCHK_PD_BIT))
441
442#define IRQ_PEND_EXT_MASK ((1UL << IRQ_PEND_EXT_IRQ_KEY) | \
443 (1UL << IRQ_PEND_EXT_CLOCK_COMP) | \
444 (1UL << IRQ_PEND_EXT_CPU_TIMER) | \
445 (1UL << IRQ_PEND_EXT_MALFUNC) | \
446 (1UL << IRQ_PEND_EXT_EMERGENCY) | \
447 (1UL << IRQ_PEND_EXT_EXTERNAL) | \
448 (1UL << IRQ_PEND_EXT_TIMING) | \
449 (1UL << IRQ_PEND_EXT_HOST) | \
450 (1UL << IRQ_PEND_EXT_SERVICE) | \
451 (1UL << IRQ_PEND_VIRTIO) | \
452 (1UL << IRQ_PEND_PFAULT_INIT) | \
453 (1UL << IRQ_PEND_PFAULT_DONE))
454
455#define IRQ_PEND_IO_MASK ((1UL << IRQ_PEND_IO_ISC_0) | \
456 (1UL << IRQ_PEND_IO_ISC_1) | \
457 (1UL << IRQ_PEND_IO_ISC_2) | \
458 (1UL << IRQ_PEND_IO_ISC_3) | \
459 (1UL << IRQ_PEND_IO_ISC_4) | \
460 (1UL << IRQ_PEND_IO_ISC_5) | \
461 (1UL << IRQ_PEND_IO_ISC_6) | \
462 (1UL << IRQ_PEND_IO_ISC_7))
463
464#define IRQ_PEND_MCHK_MASK ((1UL << IRQ_PEND_MCHK_REP) | \
465 (1UL << IRQ_PEND_MCHK_EX))
466
180c12fb 467struct kvm_s390_interrupt_info {
ba5c1e9b
CO
468 struct list_head list;
469 u64 type;
470 union {
180c12fb
CB
471 struct kvm_s390_io_info io;
472 struct kvm_s390_ext_info ext;
473 struct kvm_s390_pgm_info pgm;
8bb3a2eb 474 struct kvm_s390_emerg_info emerg;
7697e71f 475 struct kvm_s390_extcall_info extcall;
180c12fb 476 struct kvm_s390_prefix_info prefix;
2822545f 477 struct kvm_s390_stop_info stop;
48a3e950 478 struct kvm_s390_mchk_info mchk;
ba5c1e9b
CO
479 };
480};
481
c0e6159d
JF
482struct kvm_s390_irq_payload {
483 struct kvm_s390_io_info io;
484 struct kvm_s390_ext_info ext;
485 struct kvm_s390_pgm_info pgm;
486 struct kvm_s390_emerg_info emerg;
487 struct kvm_s390_extcall_info extcall;
488 struct kvm_s390_prefix_info prefix;
2822545f 489 struct kvm_s390_stop_info stop;
c0e6159d
JF
490 struct kvm_s390_mchk_info mchk;
491};
492
180c12fb 493struct kvm_s390_local_interrupt {
ba5c1e9b 494 spinlock_t lock;
180c12fb 495 struct kvm_s390_float_interrupt *float_int;
8577370f 496 struct swait_queue_head *wq;
5288fbf0 497 atomic_t *cpuflags;
c0e6159d
JF
498 DECLARE_BITMAP(sigp_emerg_pending, KVM_MAX_VCPUS);
499 struct kvm_s390_irq_payload irq;
500 unsigned long pending_irqs;
ba5c1e9b
CO
501};
502
6d3da241
JF
503#define FIRQ_LIST_IO_ISC_0 0
504#define FIRQ_LIST_IO_ISC_1 1
505#define FIRQ_LIST_IO_ISC_2 2
506#define FIRQ_LIST_IO_ISC_3 3
507#define FIRQ_LIST_IO_ISC_4 4
508#define FIRQ_LIST_IO_ISC_5 5
509#define FIRQ_LIST_IO_ISC_6 6
510#define FIRQ_LIST_IO_ISC_7 7
511#define FIRQ_LIST_PFAULT 8
512#define FIRQ_LIST_VIRTIO 9
513#define FIRQ_LIST_COUNT 10
514#define FIRQ_CNTR_IO 0
515#define FIRQ_CNTR_SERVICE 1
516#define FIRQ_CNTR_VIRTIO 2
517#define FIRQ_CNTR_PFAULT 3
518#define FIRQ_MAX_COUNT 4
519
180c12fb 520struct kvm_s390_float_interrupt {
6d3da241 521 unsigned long pending_irqs;
ba5c1e9b 522 spinlock_t lock;
6d3da241
JF
523 struct list_head lists[FIRQ_LIST_COUNT];
524 int counters[FIRQ_MAX_COUNT];
525 struct kvm_s390_mchk_info mchk;
526 struct kvm_s390_ext_info srv_signal;
ba5c1e9b 527 int next_rr_cpu;
609433fb 528 unsigned long idle_mask[BITS_TO_LONGS(KVM_MAX_VCPUS)];
ba5c1e9b
CO
529};
530
27291e21
DH
531struct kvm_hw_wp_info_arch {
532 unsigned long addr;
533 unsigned long phys_addr;
534 int len;
535 char *old_data;
536};
537
538struct kvm_hw_bp_info_arch {
539 unsigned long addr;
540 int len;
541};
542
543/*
544 * Only the upper 16 bits of kvm_guest_debug->control are arch specific.
545 * Further KVM_GUESTDBG flags which an be used from userspace can be found in
546 * arch/s390/include/uapi/asm/kvm.h
547 */
548#define KVM_GUESTDBG_EXIT_PENDING 0x10000000
549
550#define guestdbg_enabled(vcpu) \
551 (vcpu->guest_debug & KVM_GUESTDBG_ENABLE)
552#define guestdbg_sstep_enabled(vcpu) \
553 (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
554#define guestdbg_hw_bp_enabled(vcpu) \
555 (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)
556#define guestdbg_exit_pending(vcpu) (guestdbg_enabled(vcpu) && \
557 (vcpu->guest_debug & KVM_GUESTDBG_EXIT_PENDING))
558
559struct kvm_guestdbg_info_arch {
560 unsigned long cr0;
561 unsigned long cr9;
562 unsigned long cr10;
563 unsigned long cr11;
564 struct kvm_hw_bp_info_arch *hw_bp_info;
565 struct kvm_hw_wp_info_arch *hw_wp_info;
566 int nr_hw_bp;
567 int nr_hw_wp;
568 unsigned long last_bp;
569};
ba5c1e9b 570
b0c632db 571struct kvm_vcpu_arch {
180c12fb 572 struct kvm_s390_sie_block *sie_block;
adbf1698
DH
573 /* if vsie is active, currently executed shadow sie control block */
574 struct kvm_s390_sie_block *vsie_block;
b0c632db 575 unsigned int host_acrs[NUM_ACRS];
9977e886 576 struct fpu host_fpregs;
180c12fb 577 struct kvm_s390_local_interrupt local_int;
ca872302 578 struct hrtimer ckc_timer;
1b0462e5 579 struct kvm_s390_pgm_info pgm;
598841ca 580 struct gmap *gmap;
37d9df98
DH
581 /* backup location for the currently enabled gmap when scheduled out */
582 struct gmap *enabled_gmap;
27291e21 583 struct kvm_guestdbg_info_arch guestdbg;
3c038e6b
DD
584 unsigned long pfault_token;
585 unsigned long pfault_select;
586 unsigned long pfault_compare;
db0758b2 587 bool cputm_enabled;
9c23a131
DH
588 /*
589 * The seqcount protects updates to cputm_start and sie_block.cputm,
590 * this way we can have non-blocking reads with consistent values.
591 * Only the owning VCPU thread (vcpu->cpu) is allowed to change these
592 * values and to start/stop/enable/disable cpu timer accounting.
593 */
594 seqcount_t cputm_seqcount;
db0758b2 595 __u64 cputm_start;
b0c632db
HC
596};
597
598struct kvm_vm_stat {
8a7e75d4 599 ulong remote_tlb_flush;
b0c632db
HC
600};
601
db3fe4eb
TY
602struct kvm_arch_memory_slot {
603};
604
841b91c5
CH
605struct s390_map_info {
606 struct list_head list;
607 __u64 guest_addr;
608 __u64 addr;
609 struct page *page;
610};
611
612struct s390_io_adapter {
613 unsigned int id;
614 int isc;
615 bool maskable;
616 bool masked;
617 bool swap;
618 struct rw_semaphore maps_lock;
619 struct list_head maps;
620 atomic_t nr_maps;
621};
622
623#define MAX_S390_IO_ADAPTERS ((MAX_ISC + 1) * 8)
624#define MAX_S390_ADAPTER_MAPS 256
625
9d8d5786
MM
626/* maximum size of facilities and facility mask is 2k bytes */
627#define S390_ARCH_FAC_LIST_SIZE_BYTE (1<<11)
628#define S390_ARCH_FAC_LIST_SIZE_U64 \
629 (S390_ARCH_FAC_LIST_SIZE_BYTE / sizeof(u64))
630#define S390_ARCH_FAC_MASK_SIZE_BYTE S390_ARCH_FAC_LIST_SIZE_BYTE
631#define S390_ARCH_FAC_MASK_SIZE_U64 \
632 (S390_ARCH_FAC_MASK_SIZE_BYTE / sizeof(u64))
633
9d8d5786 634struct kvm_s390_cpu_model {
c54f0d6a
DH
635 /* facility mask supported by kvm & hosting machine */
636 __u64 fac_mask[S390_ARCH_FAC_LIST_SIZE_U64];
637 /* facility list requested by guest (in dma page) */
638 __u64 *fac_list;
9bb0ec09 639 u64 cpuid;
658b6eda 640 unsigned short ibc;
9d8d5786
MM
641};
642
5102ee87
TK
643struct kvm_s390_crypto {
644 struct kvm_s390_crypto_cb *crycb;
645 __u32 crycbd;
a374e892
TK
646 __u8 aes_kw;
647 __u8 dea_kw;
5102ee87
TK
648};
649
650struct kvm_s390_crypto_cb {
a374e892
TK
651 __u8 reserved00[72]; /* 0x0000 */
652 __u8 dea_wrapping_key_mask[24]; /* 0x0048 */
653 __u8 aes_wrapping_key_mask[32]; /* 0x0060 */
45c9b47c 654 __u8 reserved80[128]; /* 0x0080 */
5102ee87
TK
655};
656
c54f0d6a
DH
657/*
658 * sie_page2 has to be allocated as DMA because fac_list and crycb need
659 * 31bit addresses in the sie control block.
660 */
661struct sie_page2 {
662 __u64 fac_list[S390_ARCH_FAC_LIST_SIZE_U64]; /* 0x0000 */
663 struct kvm_s390_crypto_cb crycb; /* 0x0800 */
664 u8 reserved900[0x1000 - 0x900]; /* 0x0900 */
665} __packed;
666
a3508fbe
DH
667struct kvm_s390_vsie {
668 struct mutex mutex;
669 struct radix_tree_root addr_to_page;
670 int page_count;
671 int next;
672 struct page *pages[KVM_MAX_VCPUS];
673};
674
b0c632db 675struct kvm_arch{
7d43bafc
ED
676 void *sca;
677 int use_esca;
5e044315 678 rwlock_t sca_lock;
b0c632db 679 debug_info_t *dbf;
180c12fb 680 struct kvm_s390_float_interrupt float_int;
c05c4186 681 struct kvm_device *flic;
598841ca 682 struct gmap *gmap;
a3a92c31 683 unsigned long mem_limit;
fa6b7fe9 684 int css_support;
84223598 685 int use_irqchip;
b31605c1 686 int use_cmma;
6352e4d2 687 int user_cpu_state_ctrl;
2444b352 688 int user_sigp;
e44fc8c9 689 int user_stsi;
6502a34c 690 int user_instr0;
841b91c5 691 struct s390_io_adapter *adapters[MAX_S390_IO_ADAPTERS];
8a242234 692 wait_queue_head_t ipte_wq;
a6b7e459
TH
693 int ipte_lock_count;
694 struct mutex ipte_mutex;
7d0a5e62 695 struct ratelimit_state sthyi_limit;
8ad35755 696 spinlock_t start_stop_lock;
c54f0d6a 697 struct sie_page2 *sie_page2;
9d8d5786 698 struct kvm_s390_cpu_model model;
5102ee87 699 struct kvm_s390_crypto crypto;
a3508fbe 700 struct kvm_s390_vsie vsie;
72f25020 701 u64 epoch;
15c9705f
DH
702 /* subset of available cpu features enabled by user space */
703 DECLARE_BITMAP(cpu_feat, KVM_S390_VM_CPU_FEAT_NR_BITS);
b0c632db
HC
704};
705
bf640876
DD
706#define KVM_HVA_ERR_BAD (-1UL)
707#define KVM_HVA_ERR_RO_BAD (-2UL)
708
709static inline bool kvm_is_error_hva(unsigned long addr)
710{
711 return IS_ERR_VALUE(addr);
712}
713
3c038e6b 714#define ASYNC_PF_PER_VCPU 64
3c038e6b
DD
715struct kvm_arch_async_pf {
716 unsigned long pfault_token;
717};
718
719bool kvm_arch_can_inject_async_page_present(struct kvm_vcpu *vcpu);
720
721void kvm_arch_async_page_ready(struct kvm_vcpu *vcpu,
722 struct kvm_async_pf *work);
723
724void kvm_arch_async_page_not_present(struct kvm_vcpu *vcpu,
725 struct kvm_async_pf *work);
726
727void kvm_arch_async_page_present(struct kvm_vcpu *vcpu,
728 struct kvm_async_pf *work);
729
5a32c1af 730extern int sie64a(struct kvm_s390_sie_block *, u64 *);
b764bb1c 731extern char sie_exit;
0865e636 732
13a34e06 733static inline void kvm_arch_hardware_disable(void) {}
0865e636 734static inline void kvm_arch_check_processor_compat(void *rtn) {}
0865e636
RK
735static inline void kvm_arch_sync_events(struct kvm *kvm) {}
736static inline void kvm_arch_vcpu_uninit(struct kvm_vcpu *vcpu) {}
737static inline void kvm_arch_sched_in(struct kvm_vcpu *vcpu, int cpu) {}
738static inline void kvm_arch_free_memslot(struct kvm *kvm,
739 struct kvm_memory_slot *free, struct kvm_memory_slot *dont) {}
15f46015 740static inline void kvm_arch_memslots_updated(struct kvm *kvm, struct kvm_memslots *slots) {}
0865e636
RK
741static inline void kvm_arch_flush_shadow_all(struct kvm *kvm) {}
742static inline void kvm_arch_flush_shadow_memslot(struct kvm *kvm,
743 struct kvm_memory_slot *slot) {}
3217f7c2
CD
744static inline void kvm_arch_vcpu_blocking(struct kvm_vcpu *vcpu) {}
745static inline void kvm_arch_vcpu_unblocking(struct kvm_vcpu *vcpu) {}
0865e636 746
3491caf2
CB
747void kvm_arch_vcpu_block_finish(struct kvm_vcpu *vcpu);
748
b0c632db 749#endif