1 /* SPDX-License-Identifier: GPL-2.0 */ 2 /* 3 * definition for kernel virtual machines on s390 4 * 5 * Copyright IBM Corp. 2008, 2018 6 * 7 * Author(s): Carsten Otte <cotte@de.ibm.com> 8 */ 9 10 11 #ifndef ASM_KVM_HOST_H 12 #define ASM_KVM_HOST_H 13 14 #include <linux/types.h> 15 #include <linux/hrtimer.h> 16 #include <linux/interrupt.h> 17 #include <linux/kvm_types.h> 18 #include <linux/kvm.h> 19 #include <linux/seqlock.h> 20 #include <linux/module.h> 21 #include <linux/pci.h> 22 #include <linux/mmu_notifier.h> 23 #include <asm/debug.h> 24 #include <asm/cpu.h> 25 #include <asm/fpu.h> 26 #include <asm/isc.h> 27 #include <asm/guarded_storage.h> 28 29 #define KVM_S390_BSCA_CPU_SLOTS 64 30 #define KVM_S390_ESCA_CPU_SLOTS 248 31 #define KVM_MAX_VCPUS 255 32 33 /* 34 * These seem to be used for allocating ->chip in the routing table, which we 35 * don't use. 1 is as small as we can get to reduce the needed memory. If we 36 * need to look at ->chip later on, we'll need to revisit this. 37 */ 38 #define KVM_NR_IRQCHIPS 1 39 #define KVM_IRQCHIP_NUM_PINS 1 40 #define KVM_HALT_POLL_NS_DEFAULT 50000 41 42 /* s390-specific vcpu->requests bit members */ 43 #define KVM_REQ_ENABLE_IBS KVM_ARCH_REQ(0) 44 #define KVM_REQ_DISABLE_IBS KVM_ARCH_REQ(1) 45 #define KVM_REQ_ICPT_OPEREXC KVM_ARCH_REQ(2) 46 #define KVM_REQ_START_MIGRATION KVM_ARCH_REQ(3) 47 #define KVM_REQ_STOP_MIGRATION KVM_ARCH_REQ(4) 48 #define KVM_REQ_VSIE_RESTART KVM_ARCH_REQ(5) 49 #define KVM_REQ_REFRESH_GUEST_PREFIX \ 50 KVM_ARCH_REQ_FLAGS(6, KVM_REQUEST_WAIT | KVM_REQUEST_NO_WAKEUP) 51 52 #define SIGP_CTRL_C 0x80 53 #define SIGP_CTRL_SCN_MASK 0x3f 54 55 union bsca_sigp_ctrl { 56 __u8 value; 57 struct { 58 __u8 c : 1; 59 __u8 r : 1; 60 __u8 scn : 6; 61 }; 62 }; 63 64 union esca_sigp_ctrl { 65 __u16 value; 66 struct { 67 __u8 c : 1; 68 __u8 reserved: 7; 69 __u8 scn; 70 }; 71 }; 72 73 struct esca_entry { 74 union esca_sigp_ctrl sigp_ctrl; 75 __u16 reserved1[3]; 76 __u64 sda; 77 __u64 reserved2[6]; 78 }; 79 80 struct bsca_entry { 81 __u8 reserved0; 82 union bsca_sigp_ctrl sigp_ctrl; 83 __u16 reserved[3]; 84 __u64 sda; 85 __u64 reserved2[2]; 86 }; 87 88 union ipte_control { 89 unsigned long val; 90 struct { 91 unsigned long k : 1; 92 unsigned long kh : 31; 93 unsigned long kg : 32; 94 }; 95 }; 96 97 union sca_utility { 98 __u16 val; 99 struct { 100 __u16 mtcr : 1; 101 __u16 reserved : 15; 102 }; 103 }; 104 105 struct bsca_block { 106 union ipte_control ipte_control; 107 __u64 reserved[5]; 108 __u64 mcn; 109 union sca_utility utility; 110 __u8 reserved2[6]; 111 struct bsca_entry cpu[KVM_S390_BSCA_CPU_SLOTS]; 112 }; 113 114 struct esca_block { 115 union ipte_control ipte_control; 116 __u64 reserved1[6]; 117 union sca_utility utility; 118 __u8 reserved2[6]; 119 __u64 mcn[4]; 120 __u64 reserved3[20]; 121 struct esca_entry cpu[KVM_S390_ESCA_CPU_SLOTS]; 122 }; 123 124 /* 125 * This struct is used to store some machine check info from lowcore 126 * for machine checks that happen while the guest is running. 127 * This info in host's lowcore might be overwritten by a second machine 128 * check from host when host is in the machine check's high-level handling. 129 * The size is 24 bytes. 130 */ 131 struct mcck_volatile_info { 132 __u64 mcic; 133 __u64 failing_storage_address; 134 __u32 ext_damage_code; 135 __u32 reserved; 136 }; 137 138 #define CR0_INITIAL_MASK (CR0_UNUSED_56 | CR0_INTERRUPT_KEY_SUBMASK | \ 139 CR0_MEASUREMENT_ALERT_SUBMASK) 140 #define CR14_INITIAL_MASK (CR14_UNUSED_32 | CR14_UNUSED_33 | \ 141 CR14_EXTERNAL_DAMAGE_SUBMASK) 142 143 #define SIDAD_SIZE_MASK 0xff 144 #define sida_addr(sie_block) phys_to_virt((sie_block)->sidad & PAGE_MASK) 145 #define sida_size(sie_block) \ 146 ((((sie_block)->sidad & SIDAD_SIZE_MASK) + 1) * PAGE_SIZE) 147 148 #define CPUSTAT_STOPPED 0x80000000 149 #define CPUSTAT_WAIT 0x10000000 150 #define CPUSTAT_ECALL_PEND 0x08000000 151 #define CPUSTAT_STOP_INT 0x04000000 152 #define CPUSTAT_IO_INT 0x02000000 153 #define CPUSTAT_EXT_INT 0x01000000 154 #define CPUSTAT_RUNNING 0x00800000 155 #define CPUSTAT_RETAINED 0x00400000 156 #define CPUSTAT_TIMING_SUB 0x00020000 157 #define CPUSTAT_SIE_SUB 0x00010000 158 #define CPUSTAT_RRF 0x00008000 159 #define CPUSTAT_SLSV 0x00004000 160 #define CPUSTAT_SLSR 0x00002000 161 #define CPUSTAT_ZARCH 0x00000800 162 #define CPUSTAT_MCDS 0x00000100 163 #define CPUSTAT_KSS 0x00000200 164 #define CPUSTAT_SM 0x00000080 165 #define CPUSTAT_IBS 0x00000040 166 #define CPUSTAT_GED2 0x00000010 167 #define CPUSTAT_G 0x00000008 168 #define CPUSTAT_GED 0x00000004 169 #define CPUSTAT_J 0x00000002 170 #define CPUSTAT_P 0x00000001 171 172 struct kvm_s390_sie_block { 173 atomic_t cpuflags; /* 0x0000 */ 174 __u32 : 1; /* 0x0004 */ 175 __u32 prefix : 18; 176 __u32 : 1; 177 __u32 ibc : 12; 178 __u8 reserved08[4]; /* 0x0008 */ 179 #define PROG_IN_SIE (1<<0) 180 __u32 prog0c; /* 0x000c */ 181 union { 182 __u8 reserved10[16]; /* 0x0010 */ 183 struct { 184 __u64 pv_handle_cpu; 185 __u64 pv_handle_config; 186 }; 187 }; 188 #define PROG_BLOCK_SIE (1<<0) 189 #define PROG_REQUEST (1<<1) 190 atomic_t prog20; /* 0x0020 */ 191 __u8 reserved24[4]; /* 0x0024 */ 192 __u64 cputm; /* 0x0028 */ 193 __u64 ckc; /* 0x0030 */ 194 __u64 epoch; /* 0x0038 */ 195 __u32 svcc; /* 0x0040 */ 196 #define LCTL_CR0 0x8000 197 #define LCTL_CR6 0x0200 198 #define LCTL_CR9 0x0040 199 #define LCTL_CR10 0x0020 200 #define LCTL_CR11 0x0010 201 #define LCTL_CR14 0x0002 202 __u16 lctl; /* 0x0044 */ 203 __s16 icpua; /* 0x0046 */ 204 #define ICTL_OPEREXC 0x80000000 205 #define ICTL_PINT 0x20000000 206 #define ICTL_LPSW 0x00400000 207 #define ICTL_STCTL 0x00040000 208 #define ICTL_ISKE 0x00004000 209 #define ICTL_SSKE 0x00002000 210 #define ICTL_RRBE 0x00001000 211 #define ICTL_TPROT 0x00000200 212 __u32 ictl; /* 0x0048 */ 213 #define ECA_CEI 0x80000000 214 #define ECA_IB 0x40000000 215 #define ECA_SIGPI 0x10000000 216 #define ECA_MVPGI 0x01000000 217 #define ECA_AIV 0x00200000 218 #define ECA_VX 0x00020000 219 #define ECA_PROTEXCI 0x00002000 220 #define ECA_APIE 0x00000008 221 #define ECA_SII 0x00000001 222 __u32 eca; /* 0x004c */ 223 #define ICPT_INST 0x04 224 #define ICPT_PROGI 0x08 225 #define ICPT_INSTPROGI 0x0C 226 #define ICPT_EXTREQ 0x10 227 #define ICPT_EXTINT 0x14 228 #define ICPT_IOREQ 0x18 229 #define ICPT_WAIT 0x1c 230 #define ICPT_VALIDITY 0x20 231 #define ICPT_STOP 0x28 232 #define ICPT_OPEREXC 0x2C 233 #define ICPT_PARTEXEC 0x38 234 #define ICPT_IOINST 0x40 235 #define ICPT_KSS 0x5c 236 #define ICPT_MCHKREQ 0x60 237 #define ICPT_INT_ENABLE 0x64 238 #define ICPT_PV_INSTR 0x68 239 #define ICPT_PV_NOTIFY 0x6c 240 #define ICPT_PV_PREF 0x70 241 __u8 icptcode; /* 0x0050 */ 242 __u8 icptstatus; /* 0x0051 */ 243 __u16 ihcpu; /* 0x0052 */ 244 __u8 reserved54; /* 0x0054 */ 245 #define IICTL_CODE_NONE 0x00 246 #define IICTL_CODE_MCHK 0x01 247 #define IICTL_CODE_EXT 0x02 248 #define IICTL_CODE_IO 0x03 249 #define IICTL_CODE_RESTART 0x04 250 #define IICTL_CODE_SPECIFICATION 0x10 251 #define IICTL_CODE_OPERAND 0x11 252 __u8 iictl; /* 0x0055 */ 253 __u16 ipa; /* 0x0056 */ 254 __u32 ipb; /* 0x0058 */ 255 __u32 scaoh; /* 0x005c */ 256 #define FPF_BPBC 0x20 257 __u8 fpf; /* 0x0060 */ 258 #define ECB_GS 0x40 259 #define ECB_TE 0x10 260 #define ECB_SPECI 0x08 261 #define ECB_SRSI 0x04 262 #define ECB_HOSTPROTINT 0x02 263 #define ECB_PTF 0x01 264 __u8 ecb; /* 0x0061 */ 265 #define ECB2_CMMA 0x80 266 #define ECB2_IEP 0x20 267 #define ECB2_PFMFI 0x08 268 #define ECB2_ESCA 0x04 269 #define ECB2_ZPCI_LSI 0x02 270 __u8 ecb2; /* 0x0062 */ 271 #define ECB3_AISI 0x20 272 #define ECB3_AISII 0x10 273 #define ECB3_DEA 0x08 274 #define ECB3_AES 0x04 275 #define ECB3_RI 0x01 276 __u8 ecb3; /* 0x0063 */ 277 #define ESCA_SCAOL_MASK ~0x3fU 278 __u32 scaol; /* 0x0064 */ 279 __u8 sdf; /* 0x0068 */ 280 __u8 epdx; /* 0x0069 */ 281 __u8 cpnc; /* 0x006a */ 282 __u8 reserved6b; /* 0x006b */ 283 __u32 todpr; /* 0x006c */ 284 #define GISA_FORMAT1 0x00000001 285 __u32 gd; /* 0x0070 */ 286 __u8 reserved74[12]; /* 0x0074 */ 287 __u64 mso; /* 0x0080 */ 288 __u64 msl; /* 0x0088 */ 289 psw_t gpsw; /* 0x0090 */ 290 __u64 gg14; /* 0x00a0 */ 291 __u64 gg15; /* 0x00a8 */ 292 __u8 reservedb0[8]; /* 0x00b0 */ 293 #define HPID_KVM 0x4 294 #define HPID_VSIE 0x5 295 __u8 hpid; /* 0x00b8 */ 296 __u8 reservedb9[7]; /* 0x00b9 */ 297 union { 298 struct { 299 __u32 eiparams; /* 0x00c0 */ 300 __u16 extcpuaddr; /* 0x00c4 */ 301 __u16 eic; /* 0x00c6 */ 302 }; 303 __u64 mcic; /* 0x00c0 */ 304 } __packed; 305 __u32 reservedc8; /* 0x00c8 */ 306 union { 307 struct { 308 __u16 pgmilc; /* 0x00cc */ 309 __u16 iprcc; /* 0x00ce */ 310 }; 311 __u32 edc; /* 0x00cc */ 312 } __packed; 313 union { 314 struct { 315 __u32 dxc; /* 0x00d0 */ 316 __u16 mcn; /* 0x00d4 */ 317 __u8 perc; /* 0x00d6 */ 318 __u8 peratmid; /* 0x00d7 */ 319 }; 320 __u64 faddr; /* 0x00d0 */ 321 } __packed; 322 __u64 peraddr; /* 0x00d8 */ 323 __u8 eai; /* 0x00e0 */ 324 __u8 peraid; /* 0x00e1 */ 325 __u8 oai; /* 0x00e2 */ 326 __u8 armid; /* 0x00e3 */ 327 __u8 reservede4[4]; /* 0x00e4 */ 328 union { 329 __u64 tecmc; /* 0x00e8 */ 330 struct { 331 __u16 subchannel_id; /* 0x00e8 */ 332 __u16 subchannel_nr; /* 0x00ea */ 333 __u32 io_int_parm; /* 0x00ec */ 334 __u32 io_int_word; /* 0x00f0 */ 335 }; 336 } __packed; 337 __u8 reservedf4[8]; /* 0x00f4 */ 338 #define CRYCB_FORMAT_MASK 0x00000003 339 #define CRYCB_FORMAT0 0x00000000 340 #define CRYCB_FORMAT1 0x00000001 341 #define CRYCB_FORMAT2 0x00000003 342 __u32 crycbd; /* 0x00fc */ 343 __u64 gcr[16]; /* 0x0100 */ 344 union { 345 __u64 gbea; /* 0x0180 */ 346 __u64 sidad; 347 }; 348 __u8 reserved188[8]; /* 0x0188 */ 349 __u64 sdnxo; /* 0x0190 */ 350 __u8 reserved198[8]; /* 0x0198 */ 351 __u32 fac; /* 0x01a0 */ 352 __u8 reserved1a4[20]; /* 0x01a4 */ 353 __u64 cbrlo; /* 0x01b8 */ 354 __u8 reserved1c0[8]; /* 0x01c0 */ 355 #define ECD_HOSTREGMGMT 0x20000000 356 #define ECD_MEF 0x08000000 357 #define ECD_ETOKENF 0x02000000 358 #define ECD_ECC 0x00200000 359 #define ECD_HMAC 0x00004000 360 __u32 ecd; /* 0x01c8 */ 361 __u8 reserved1cc[18]; /* 0x01cc */ 362 __u64 pp; /* 0x01de */ 363 __u8 reserved1e6[2]; /* 0x01e6 */ 364 __u64 itdba; /* 0x01e8 */ 365 __u64 riccbd; /* 0x01f0 */ 366 __u64 gvrd; /* 0x01f8 */ 367 } __packed __aligned(512); 368 369 struct kvm_s390_itdb { 370 __u8 data[256]; 371 }; 372 373 struct sie_page { 374 struct kvm_s390_sie_block sie_block; 375 struct mcck_volatile_info mcck_info; /* 0x0200 */ 376 __u8 reserved218[360]; /* 0x0218 */ 377 __u64 pv_grregs[16]; /* 0x0380 */ 378 __u8 reserved400[512]; /* 0x0400 */ 379 struct kvm_s390_itdb itdb; /* 0x0600 */ 380 __u8 reserved700[2304]; /* 0x0700 */ 381 }; 382 383 struct kvm_vcpu_stat { 384 struct kvm_vcpu_stat_generic generic; 385 u64 exit_userspace; 386 u64 exit_null; 387 u64 exit_external_request; 388 u64 exit_io_request; 389 u64 exit_external_interrupt; 390 u64 exit_stop_request; 391 u64 exit_validity; 392 u64 exit_instruction; 393 u64 exit_pei; 394 u64 halt_no_poll_steal; 395 u64 instruction_lctl; 396 u64 instruction_lctlg; 397 u64 instruction_stctl; 398 u64 instruction_stctg; 399 u64 exit_program_interruption; 400 u64 exit_instr_and_program; 401 u64 exit_operation_exception; 402 u64 deliver_ckc; 403 u64 deliver_cputm; 404 u64 deliver_external_call; 405 u64 deliver_emergency_signal; 406 u64 deliver_service_signal; 407 u64 deliver_virtio; 408 u64 deliver_stop_signal; 409 u64 deliver_prefix_signal; 410 u64 deliver_restart_signal; 411 u64 deliver_program; 412 u64 deliver_io; 413 u64 deliver_machine_check; 414 u64 exit_wait_state; 415 u64 inject_ckc; 416 u64 inject_cputm; 417 u64 inject_external_call; 418 u64 inject_emergency_signal; 419 u64 inject_mchk; 420 u64 inject_pfault_init; 421 u64 inject_program; 422 u64 inject_restart; 423 u64 inject_set_prefix; 424 u64 inject_stop_signal; 425 u64 instruction_epsw; 426 u64 instruction_gs; 427 u64 instruction_io_other; 428 u64 instruction_lpsw; 429 u64 instruction_lpswe; 430 u64 instruction_lpswey; 431 u64 instruction_pfmf; 432 u64 instruction_ptff; 433 u64 instruction_sck; 434 u64 instruction_sckpf; 435 u64 instruction_stidp; 436 u64 instruction_spx; 437 u64 instruction_stpx; 438 u64 instruction_stap; 439 u64 instruction_iske; 440 u64 instruction_ri; 441 u64 instruction_rrbe; 442 u64 instruction_sske; 443 u64 instruction_ipte_interlock; 444 u64 instruction_stsi; 445 u64 instruction_stfl; 446 u64 instruction_tb; 447 u64 instruction_tpi; 448 u64 instruction_tprot; 449 u64 instruction_tsch; 450 u64 instruction_sie; 451 u64 instruction_essa; 452 u64 instruction_sthyi; 453 u64 instruction_sigp_sense; 454 u64 instruction_sigp_sense_running; 455 u64 instruction_sigp_external_call; 456 u64 instruction_sigp_emergency; 457 u64 instruction_sigp_cond_emergency; 458 u64 instruction_sigp_start; 459 u64 instruction_sigp_stop; 460 u64 instruction_sigp_stop_store_status; 461 u64 instruction_sigp_store_status; 462 u64 instruction_sigp_store_adtl_status; 463 u64 instruction_sigp_arch; 464 u64 instruction_sigp_prefix; 465 u64 instruction_sigp_restart; 466 u64 instruction_sigp_init_cpu_reset; 467 u64 instruction_sigp_cpu_reset; 468 u64 instruction_sigp_unknown; 469 u64 instruction_diagnose_10; 470 u64 instruction_diagnose_44; 471 u64 instruction_diagnose_9c; 472 u64 diag_9c_ignored; 473 u64 diag_9c_forward; 474 u64 instruction_diagnose_258; 475 u64 instruction_diagnose_308; 476 u64 instruction_diagnose_500; 477 u64 instruction_diagnose_other; 478 u64 pfault_sync; 479 }; 480 481 #define PGM_OPERATION 0x01 482 #define PGM_PRIVILEGED_OP 0x02 483 #define PGM_EXECUTE 0x03 484 #define PGM_PROTECTION 0x04 485 #define PGM_ADDRESSING 0x05 486 #define PGM_SPECIFICATION 0x06 487 #define PGM_DATA 0x07 488 #define PGM_FIXED_POINT_OVERFLOW 0x08 489 #define PGM_FIXED_POINT_DIVIDE 0x09 490 #define PGM_DECIMAL_OVERFLOW 0x0a 491 #define PGM_DECIMAL_DIVIDE 0x0b 492 #define PGM_HFP_EXPONENT_OVERFLOW 0x0c 493 #define PGM_HFP_EXPONENT_UNDERFLOW 0x0d 494 #define PGM_HFP_SIGNIFICANCE 0x0e 495 #define PGM_HFP_DIVIDE 0x0f 496 #define PGM_SEGMENT_TRANSLATION 0x10 497 #define PGM_PAGE_TRANSLATION 0x11 498 #define PGM_TRANSLATION_SPEC 0x12 499 #define PGM_SPECIAL_OPERATION 0x13 500 #define PGM_OPERAND 0x15 501 #define PGM_TRACE_TABEL 0x16 502 #define PGM_VECTOR_PROCESSING 0x1b 503 #define PGM_SPACE_SWITCH 0x1c 504 #define PGM_HFP_SQUARE_ROOT 0x1d 505 #define PGM_PC_TRANSLATION_SPEC 0x1f 506 #define PGM_AFX_TRANSLATION 0x20 507 #define PGM_ASX_TRANSLATION 0x21 508 #define PGM_LX_TRANSLATION 0x22 509 #define PGM_EX_TRANSLATION 0x23 510 #define PGM_PRIMARY_AUTHORITY 0x24 511 #define PGM_SECONDARY_AUTHORITY 0x25 512 #define PGM_LFX_TRANSLATION 0x26 513 #define PGM_LSX_TRANSLATION 0x27 514 #define PGM_ALET_SPECIFICATION 0x28 515 #define PGM_ALEN_TRANSLATION 0x29 516 #define PGM_ALE_SEQUENCE 0x2a 517 #define PGM_ASTE_VALIDITY 0x2b 518 #define PGM_ASTE_SEQUENCE 0x2c 519 #define PGM_EXTENDED_AUTHORITY 0x2d 520 #define PGM_LSTE_SEQUENCE 0x2e 521 #define PGM_ASTE_INSTANCE 0x2f 522 #define PGM_STACK_FULL 0x30 523 #define PGM_STACK_EMPTY 0x31 524 #define PGM_STACK_SPECIFICATION 0x32 525 #define PGM_STACK_TYPE 0x33 526 #define PGM_STACK_OPERATION 0x34 527 #define PGM_ASCE_TYPE 0x38 528 #define PGM_REGION_FIRST_TRANS 0x39 529 #define PGM_REGION_SECOND_TRANS 0x3a 530 #define PGM_REGION_THIRD_TRANS 0x3b 531 #define PGM_SECURE_STORAGE_ACCESS 0x3d 532 #define PGM_NON_SECURE_STORAGE_ACCESS 0x3e 533 #define PGM_SECURE_STORAGE_VIOLATION 0x3f 534 #define PGM_MONITOR 0x40 535 #define PGM_PER 0x80 536 #define PGM_CRYPTO_OPERATION 0x119 537 538 /* irq types in ascend order of priorities */ 539 enum irq_types { 540 IRQ_PEND_SET_PREFIX = 0, 541 IRQ_PEND_RESTART, 542 IRQ_PEND_SIGP_STOP, 543 IRQ_PEND_IO_ISC_7, 544 IRQ_PEND_IO_ISC_6, 545 IRQ_PEND_IO_ISC_5, 546 IRQ_PEND_IO_ISC_4, 547 IRQ_PEND_IO_ISC_3, 548 IRQ_PEND_IO_ISC_2, 549 IRQ_PEND_IO_ISC_1, 550 IRQ_PEND_IO_ISC_0, 551 IRQ_PEND_VIRTIO, 552 IRQ_PEND_PFAULT_DONE, 553 IRQ_PEND_PFAULT_INIT, 554 IRQ_PEND_EXT_HOST, 555 IRQ_PEND_EXT_SERVICE, 556 IRQ_PEND_EXT_SERVICE_EV, 557 IRQ_PEND_EXT_TIMING, 558 IRQ_PEND_EXT_CPU_TIMER, 559 IRQ_PEND_EXT_CLOCK_COMP, 560 IRQ_PEND_EXT_EXTERNAL, 561 IRQ_PEND_EXT_EMERGENCY, 562 IRQ_PEND_EXT_MALFUNC, 563 IRQ_PEND_EXT_IRQ_KEY, 564 IRQ_PEND_MCHK_REP, 565 IRQ_PEND_PROG, 566 IRQ_PEND_SVC, 567 IRQ_PEND_MCHK_EX, 568 IRQ_PEND_COUNT 569 }; 570 571 /* We have 2M for virtio device descriptor pages. Smallest amount of 572 * memory per page is 24 bytes (1 queue), so (2048*1024) / 24 = 87381 573 */ 574 #define KVM_S390_MAX_VIRTIO_IRQS 87381 575 576 /* 577 * Repressible (non-floating) machine check interrupts 578 * subclass bits in MCIC 579 */ 580 #define MCHK_EXTD_BIT 58 581 #define MCHK_DEGR_BIT 56 582 #define MCHK_WARN_BIT 55 583 #define MCHK_REP_MASK ((1UL << MCHK_DEGR_BIT) | \ 584 (1UL << MCHK_EXTD_BIT) | \ 585 (1UL << MCHK_WARN_BIT)) 586 587 /* Exigent machine check interrupts subclass bits in MCIC */ 588 #define MCHK_SD_BIT 63 589 #define MCHK_PD_BIT 62 590 #define MCHK_EX_MASK ((1UL << MCHK_SD_BIT) | (1UL << MCHK_PD_BIT)) 591 592 #define IRQ_PEND_EXT_MASK ((1UL << IRQ_PEND_EXT_IRQ_KEY) | \ 593 (1UL << IRQ_PEND_EXT_CLOCK_COMP) | \ 594 (1UL << IRQ_PEND_EXT_CPU_TIMER) | \ 595 (1UL << IRQ_PEND_EXT_MALFUNC) | \ 596 (1UL << IRQ_PEND_EXT_EMERGENCY) | \ 597 (1UL << IRQ_PEND_EXT_EXTERNAL) | \ 598 (1UL << IRQ_PEND_EXT_TIMING) | \ 599 (1UL << IRQ_PEND_EXT_HOST) | \ 600 (1UL << IRQ_PEND_EXT_SERVICE) | \ 601 (1UL << IRQ_PEND_EXT_SERVICE_EV) | \ 602 (1UL << IRQ_PEND_VIRTIO) | \ 603 (1UL << IRQ_PEND_PFAULT_INIT) | \ 604 (1UL << IRQ_PEND_PFAULT_DONE)) 605 606 #define IRQ_PEND_IO_MASK ((1UL << IRQ_PEND_IO_ISC_0) | \ 607 (1UL << IRQ_PEND_IO_ISC_1) | \ 608 (1UL << IRQ_PEND_IO_ISC_2) | \ 609 (1UL << IRQ_PEND_IO_ISC_3) | \ 610 (1UL << IRQ_PEND_IO_ISC_4) | \ 611 (1UL << IRQ_PEND_IO_ISC_5) | \ 612 (1UL << IRQ_PEND_IO_ISC_6) | \ 613 (1UL << IRQ_PEND_IO_ISC_7)) 614 615 #define IRQ_PEND_MCHK_MASK ((1UL << IRQ_PEND_MCHK_REP) | \ 616 (1UL << IRQ_PEND_MCHK_EX)) 617 618 #define IRQ_PEND_EXT_II_MASK ((1UL << IRQ_PEND_EXT_CPU_TIMER) | \ 619 (1UL << IRQ_PEND_EXT_CLOCK_COMP) | \ 620 (1UL << IRQ_PEND_EXT_EMERGENCY) | \ 621 (1UL << IRQ_PEND_EXT_EXTERNAL) | \ 622 (1UL << IRQ_PEND_EXT_SERVICE) | \ 623 (1UL << IRQ_PEND_EXT_SERVICE_EV)) 624 625 struct kvm_s390_interrupt_info { 626 struct list_head list; 627 u64 type; 628 union { 629 struct kvm_s390_io_info io; 630 struct kvm_s390_ext_info ext; 631 struct kvm_s390_pgm_info pgm; 632 struct kvm_s390_emerg_info emerg; 633 struct kvm_s390_extcall_info extcall; 634 struct kvm_s390_prefix_info prefix; 635 struct kvm_s390_stop_info stop; 636 struct kvm_s390_mchk_info mchk; 637 }; 638 }; 639 640 struct kvm_s390_irq_payload { 641 struct kvm_s390_io_info io; 642 struct kvm_s390_ext_info ext; 643 struct kvm_s390_pgm_info pgm; 644 struct kvm_s390_emerg_info emerg; 645 struct kvm_s390_extcall_info extcall; 646 struct kvm_s390_prefix_info prefix; 647 struct kvm_s390_stop_info stop; 648 struct kvm_s390_mchk_info mchk; 649 }; 650 651 struct kvm_s390_local_interrupt { 652 spinlock_t lock; 653 DECLARE_BITMAP(sigp_emerg_pending, KVM_MAX_VCPUS); 654 struct kvm_s390_irq_payload irq; 655 unsigned long pending_irqs; 656 }; 657 658 #define FIRQ_LIST_IO_ISC_0 0 659 #define FIRQ_LIST_IO_ISC_1 1 660 #define FIRQ_LIST_IO_ISC_2 2 661 #define FIRQ_LIST_IO_ISC_3 3 662 #define FIRQ_LIST_IO_ISC_4 4 663 #define FIRQ_LIST_IO_ISC_5 5 664 #define FIRQ_LIST_IO_ISC_6 6 665 #define FIRQ_LIST_IO_ISC_7 7 666 #define FIRQ_LIST_PFAULT 8 667 #define FIRQ_LIST_VIRTIO 9 668 #define FIRQ_LIST_COUNT 10 669 #define FIRQ_CNTR_IO 0 670 #define FIRQ_CNTR_SERVICE 1 671 #define FIRQ_CNTR_VIRTIO 2 672 #define FIRQ_CNTR_PFAULT 3 673 #define FIRQ_MAX_COUNT 4 674 675 /* mask the AIS mode for a given ISC */ 676 #define AIS_MODE_MASK(isc) (0x80 >> isc) 677 678 #define KVM_S390_AIS_MODE_ALL 0 679 #define KVM_S390_AIS_MODE_SINGLE 1 680 681 struct kvm_s390_float_interrupt { 682 unsigned long pending_irqs; 683 unsigned long masked_irqs; 684 spinlock_t lock; 685 struct list_head lists[FIRQ_LIST_COUNT]; 686 int counters[FIRQ_MAX_COUNT]; 687 struct kvm_s390_mchk_info mchk; 688 struct kvm_s390_ext_info srv_signal; 689 int next_rr_cpu; 690 struct mutex ais_lock; 691 u8 simm; 692 u8 nimm; 693 }; 694 695 struct kvm_hw_wp_info_arch { 696 unsigned long addr; 697 unsigned long phys_addr; 698 int len; 699 char *old_data; 700 }; 701 702 struct kvm_hw_bp_info_arch { 703 unsigned long addr; 704 int len; 705 }; 706 707 /* 708 * Only the upper 16 bits of kvm_guest_debug->control are arch specific. 709 * Further KVM_GUESTDBG flags which an be used from userspace can be found in 710 * arch/s390/include/uapi/asm/kvm.h 711 */ 712 #define KVM_GUESTDBG_EXIT_PENDING 0x10000000 713 714 #define guestdbg_enabled(vcpu) \ 715 (vcpu->guest_debug & KVM_GUESTDBG_ENABLE) 716 #define guestdbg_sstep_enabled(vcpu) \ 717 (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP) 718 #define guestdbg_hw_bp_enabled(vcpu) \ 719 (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) 720 #define guestdbg_exit_pending(vcpu) (guestdbg_enabled(vcpu) && \ 721 (vcpu->guest_debug & KVM_GUESTDBG_EXIT_PENDING)) 722 723 #define KVM_GUESTDBG_VALID_MASK \ 724 (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_SINGLESTEP |\ 725 KVM_GUESTDBG_USE_HW_BP | KVM_GUESTDBG_EXIT_PENDING) 726 727 struct kvm_guestdbg_info_arch { 728 unsigned long cr0; 729 unsigned long cr9; 730 unsigned long cr10; 731 unsigned long cr11; 732 struct kvm_hw_bp_info_arch *hw_bp_info; 733 struct kvm_hw_wp_info_arch *hw_wp_info; 734 int nr_hw_bp; 735 int nr_hw_wp; 736 unsigned long last_bp; 737 }; 738 739 struct kvm_s390_pv_vcpu { 740 u64 handle; 741 unsigned long stor_base; 742 }; 743 744 struct kvm_vcpu_arch { 745 struct kvm_s390_sie_block *sie_block; 746 /* if vsie is active, currently executed shadow sie control block */ 747 struct kvm_s390_sie_block *vsie_block; 748 unsigned int host_acrs[NUM_ACRS]; 749 struct gs_cb *host_gscb; 750 struct kvm_s390_local_interrupt local_int; 751 struct hrtimer ckc_timer; 752 struct kvm_s390_pgm_info pgm; 753 struct gmap *gmap; 754 struct kvm_guestdbg_info_arch guestdbg; 755 unsigned long pfault_token; 756 unsigned long pfault_select; 757 unsigned long pfault_compare; 758 bool cputm_enabled; 759 /* 760 * The seqcount protects updates to cputm_start and sie_block.cputm, 761 * this way we can have non-blocking reads with consistent values. 762 * Only the owning VCPU thread (vcpu->cpu) is allowed to change these 763 * values and to start/stop/enable/disable cpu timer accounting. 764 */ 765 seqcount_t cputm_seqcount; 766 __u64 cputm_start; 767 bool gs_enabled; 768 bool skey_enabled; 769 /* Indicator if the access registers have been loaded from guest */ 770 bool acrs_loaded; 771 struct kvm_s390_pv_vcpu pv; 772 union diag318_info diag318_info; 773 }; 774 775 struct kvm_vm_stat { 776 struct kvm_vm_stat_generic generic; 777 u64 inject_io; 778 u64 inject_float_mchk; 779 u64 inject_pfault_done; 780 u64 inject_service_signal; 781 u64 inject_virtio; 782 u64 aen_forward; 783 u64 gmap_shadow_create; 784 u64 gmap_shadow_reuse; 785 u64 gmap_shadow_r1_entry; 786 u64 gmap_shadow_r2_entry; 787 u64 gmap_shadow_r3_entry; 788 u64 gmap_shadow_sg_entry; 789 u64 gmap_shadow_pg_entry; 790 }; 791 792 struct kvm_arch_memory_slot { 793 }; 794 795 struct s390_map_info { 796 struct list_head list; 797 __u64 guest_addr; 798 __u64 addr; 799 struct page *page; 800 }; 801 802 struct s390_io_adapter { 803 unsigned int id; 804 int isc; 805 bool maskable; 806 bool masked; 807 bool swap; 808 bool suppressible; 809 }; 810 811 #define MAX_S390_IO_ADAPTERS ((MAX_ISC + 1) * 8) 812 #define MAX_S390_ADAPTER_MAPS 256 813 814 /* maximum size of facilities and facility mask is 2k bytes */ 815 #define S390_ARCH_FAC_LIST_SIZE_BYTE (1<<11) 816 #define S390_ARCH_FAC_LIST_SIZE_U64 \ 817 (S390_ARCH_FAC_LIST_SIZE_BYTE / sizeof(u64)) 818 #define S390_ARCH_FAC_MASK_SIZE_BYTE S390_ARCH_FAC_LIST_SIZE_BYTE 819 #define S390_ARCH_FAC_MASK_SIZE_U64 \ 820 (S390_ARCH_FAC_MASK_SIZE_BYTE / sizeof(u64)) 821 822 struct kvm_s390_cpu_model { 823 /* facility mask supported by kvm & hosting machine */ 824 __u64 fac_mask[S390_ARCH_FAC_MASK_SIZE_U64]; 825 struct kvm_s390_vm_cpu_subfunc subfuncs; 826 /* facility list requested by guest (in dma page) */ 827 __u64 *fac_list; 828 u64 cpuid; 829 unsigned short ibc; 830 /* subset of available UV-features for pv-guests enabled by user space */ 831 struct kvm_s390_vm_cpu_uv_feat uv_feat_guest; 832 }; 833 834 typedef int (*crypto_hook)(struct kvm_vcpu *vcpu); 835 836 struct kvm_s390_crypto { 837 struct kvm_s390_crypto_cb *crycb; 838 struct rw_semaphore pqap_hook_rwsem; 839 crypto_hook *pqap_hook; 840 __u32 crycbd; 841 __u8 aes_kw; 842 __u8 dea_kw; 843 __u8 apie; 844 }; 845 846 #define APCB0_MASK_SIZE 1 847 struct kvm_s390_apcb0 { 848 __u64 apm[APCB0_MASK_SIZE]; /* 0x0000 */ 849 __u64 aqm[APCB0_MASK_SIZE]; /* 0x0008 */ 850 __u64 adm[APCB0_MASK_SIZE]; /* 0x0010 */ 851 __u64 reserved18; /* 0x0018 */ 852 }; 853 854 #define APCB1_MASK_SIZE 4 855 struct kvm_s390_apcb1 { 856 __u64 apm[APCB1_MASK_SIZE]; /* 0x0000 */ 857 __u64 aqm[APCB1_MASK_SIZE]; /* 0x0020 */ 858 __u64 adm[APCB1_MASK_SIZE]; /* 0x0040 */ 859 __u64 reserved60[4]; /* 0x0060 */ 860 }; 861 862 struct kvm_s390_crypto_cb { 863 struct kvm_s390_apcb0 apcb0; /* 0x0000 */ 864 __u8 reserved20[0x0048 - 0x0020]; /* 0x0020 */ 865 __u8 dea_wrapping_key_mask[24]; /* 0x0048 */ 866 __u8 aes_wrapping_key_mask[32]; /* 0x0060 */ 867 struct kvm_s390_apcb1 apcb1; /* 0x0080 */ 868 }; 869 870 struct kvm_s390_gisa { 871 union { 872 struct { /* common to all formats */ 873 u32 next_alert; 874 u8 ipm; 875 u8 reserved01[2]; 876 u8 iam; 877 }; 878 struct { /* format 0 */ 879 u32 next_alert; 880 u8 ipm; 881 u8 reserved01; 882 u8 : 6; 883 u8 g : 1; 884 u8 c : 1; 885 u8 iam; 886 u8 reserved02[4]; 887 u32 airq_count; 888 } g0; 889 struct { /* format 1 */ 890 u32 next_alert; 891 u8 ipm; 892 u8 simm; 893 u8 nimm; 894 u8 iam; 895 u8 aism[8]; 896 u8 : 6; 897 u8 g : 1; 898 u8 c : 1; 899 u8 reserved03[11]; 900 u32 airq_count; 901 } g1; 902 struct { 903 u64 word[4]; 904 } u64; 905 }; 906 }; 907 908 struct kvm_s390_gib { 909 u32 alert_list_origin; 910 u32 reserved01; 911 u8:5; 912 u8 nisc:3; 913 u8 reserved03[3]; 914 u32 reserved04[5]; 915 }; 916 917 /* 918 * sie_page2 has to be allocated as DMA because fac_list, crycb and 919 * gisa need 31bit addresses in the sie control block. 920 */ 921 struct sie_page2 { 922 __u64 fac_list[S390_ARCH_FAC_LIST_SIZE_U64]; /* 0x0000 */ 923 struct kvm_s390_crypto_cb crycb; /* 0x0800 */ 924 struct kvm_s390_gisa gisa; /* 0x0900 */ 925 struct kvm *kvm; /* 0x0920 */ 926 u8 reserved928[0x1000 - 0x928]; /* 0x0928 */ 927 }; 928 929 struct kvm_s390_vsie { 930 struct mutex mutex; 931 struct radix_tree_root addr_to_page; 932 int page_count; 933 int next; 934 struct page *pages[KVM_MAX_VCPUS]; 935 }; 936 937 struct kvm_s390_gisa_iam { 938 u8 mask; 939 spinlock_t ref_lock; 940 u32 ref_count[MAX_ISC + 1]; 941 }; 942 943 struct kvm_s390_gisa_interrupt { 944 struct kvm_s390_gisa *origin; 945 struct kvm_s390_gisa_iam alert; 946 struct hrtimer timer; 947 u64 expires; 948 DECLARE_BITMAP(kicked_mask, KVM_MAX_VCPUS); 949 }; 950 951 struct kvm_s390_pv { 952 u64 handle; 953 u64 guest_len; 954 unsigned long stor_base; 955 void *stor_var; 956 bool dumping; 957 void *set_aside; 958 struct list_head need_cleanup; 959 struct mmu_notifier mmu_notifier; 960 }; 961 962 struct kvm_arch{ 963 void *sca; 964 int use_esca; 965 rwlock_t sca_lock; 966 debug_info_t *dbf; 967 struct kvm_s390_float_interrupt float_int; 968 struct kvm_device *flic; 969 struct gmap *gmap; 970 unsigned long mem_limit; 971 int css_support; 972 int use_irqchip; 973 int use_cmma; 974 int use_pfmfi; 975 int use_skf; 976 int use_zpci_interp; 977 int user_cpu_state_ctrl; 978 int user_sigp; 979 int user_stsi; 980 int user_instr0; 981 struct s390_io_adapter *adapters[MAX_S390_IO_ADAPTERS]; 982 wait_queue_head_t ipte_wq; 983 int ipte_lock_count; 984 struct mutex ipte_mutex; 985 spinlock_t start_stop_lock; 986 struct sie_page2 *sie_page2; 987 struct kvm_s390_cpu_model model; 988 struct kvm_s390_crypto crypto; 989 struct kvm_s390_vsie vsie; 990 u8 epdx; 991 u64 epoch; 992 int migration_mode; 993 atomic64_t cmma_dirty_pages; 994 /* subset of available cpu features enabled by user space */ 995 DECLARE_BITMAP(cpu_feat, KVM_S390_VM_CPU_FEAT_NR_BITS); 996 /* indexed by vcpu_idx */ 997 DECLARE_BITMAP(idle_mask, KVM_MAX_VCPUS); 998 struct kvm_s390_gisa_interrupt gisa_int; 999 struct kvm_s390_pv pv; 1000 struct list_head kzdev_list; 1001 spinlock_t kzdev_list_lock; 1002 }; 1003 1004 #define KVM_HVA_ERR_BAD (-1UL) 1005 #define KVM_HVA_ERR_RO_BAD (-2UL) 1006 1007 static inline bool kvm_is_error_hva(unsigned long addr) 1008 { 1009 return IS_ERR_VALUE(addr); 1010 } 1011 1012 #define ASYNC_PF_PER_VCPU 64 1013 struct kvm_arch_async_pf { 1014 unsigned long pfault_token; 1015 }; 1016 1017 bool kvm_arch_can_dequeue_async_page_present(struct kvm_vcpu *vcpu); 1018 1019 void kvm_arch_async_page_ready(struct kvm_vcpu *vcpu, 1020 struct kvm_async_pf *work); 1021 1022 bool kvm_arch_async_page_not_present(struct kvm_vcpu *vcpu, 1023 struct kvm_async_pf *work); 1024 1025 void kvm_arch_async_page_present(struct kvm_vcpu *vcpu, 1026 struct kvm_async_pf *work); 1027 1028 static inline void kvm_arch_async_page_present_queued(struct kvm_vcpu *vcpu) {} 1029 1030 void kvm_arch_crypto_clear_masks(struct kvm *kvm); 1031 void kvm_arch_crypto_set_masks(struct kvm *kvm, unsigned long *apm, 1032 unsigned long *aqm, unsigned long *adm); 1033 1034 int __sie64a(phys_addr_t sie_block_phys, struct kvm_s390_sie_block *sie_block, u64 *rsa, 1035 unsigned long gasce); 1036 1037 static inline int sie64a(struct kvm_s390_sie_block *sie_block, u64 *rsa, unsigned long gasce) 1038 { 1039 return __sie64a(virt_to_phys(sie_block), sie_block, rsa, gasce); 1040 } 1041 1042 extern char sie_exit; 1043 1044 bool kvm_s390_pv_is_protected(struct kvm *kvm); 1045 bool kvm_s390_pv_cpu_is_protected(struct kvm_vcpu *vcpu); 1046 1047 extern int kvm_s390_gisc_register(struct kvm *kvm, u32 gisc); 1048 extern int kvm_s390_gisc_unregister(struct kvm *kvm, u32 gisc); 1049 1050 static inline void kvm_arch_sync_events(struct kvm *kvm) {} 1051 static inline void kvm_arch_free_memslot(struct kvm *kvm, 1052 struct kvm_memory_slot *slot) {} 1053 static inline void kvm_arch_memslots_updated(struct kvm *kvm, u64 gen) {} 1054 static inline void kvm_arch_flush_shadow_all(struct kvm *kvm) {} 1055 static inline void kvm_arch_flush_shadow_memslot(struct kvm *kvm, 1056 struct kvm_memory_slot *slot) {} 1057 static inline void kvm_arch_vcpu_blocking(struct kvm_vcpu *vcpu) {} 1058 static inline void kvm_arch_vcpu_unblocking(struct kvm_vcpu *vcpu) {} 1059 1060 #define __KVM_HAVE_ARCH_VM_FREE 1061 void kvm_arch_free_vm(struct kvm *kvm); 1062 1063 struct zpci_kvm_hook { 1064 int (*kvm_register)(void *opaque, struct kvm *kvm); 1065 void (*kvm_unregister)(void *opaque); 1066 }; 1067 1068 extern struct zpci_kvm_hook zpci_kvm_hook; 1069 1070 #endif 1071