Greg Kroah-Hartman | 0b73214 | 2017-11-24 15:00:38 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Heiko Carstens | b0c632d | 2008-03-25 18:47:20 +0100 | [diff] [blame] | 2 | /* |
Heiko Carstens | a53c8fa | 2012-07-20 11:15:04 +0200 | [diff] [blame] | 3 | * definition for kernel virtual machines on s390 |
Heiko Carstens | b0c632d | 2008-03-25 18:47:20 +0100 | [diff] [blame] | 4 | * |
Christian Borntraeger | a37cb07 | 2018-01-23 13:28:40 +0100 | [diff] [blame] | 5 | * Copyright IBM Corp. 2008, 2018 |
Heiko Carstens | b0c632d | 2008-03-25 18:47:20 +0100 | [diff] [blame] | 6 | * |
Heiko Carstens | b0c632d | 2008-03-25 18:47:20 +0100 | [diff] [blame] | 7 | * Author(s): Carsten Otte <cotte@de.ibm.com> |
| 8 | */ |
| 9 | |
| 10 | |
| 11 | #ifndef ASM_KVM_HOST_H |
| 12 | #define ASM_KVM_HOST_H |
Paolo Bonzini | 6564730 | 2014-08-29 14:01:17 +0200 | [diff] [blame] | 13 | |
| 14 | #include <linux/types.h> |
Christian Borntraeger | ca87230 | 2009-05-12 17:21:49 +0200 | [diff] [blame] | 15 | #include <linux/hrtimer.h> |
| 16 | #include <linux/interrupt.h> |
Paolo Bonzini | 6564730 | 2014-08-29 14:01:17 +0200 | [diff] [blame] | 17 | #include <linux/kvm_types.h> |
Heiko Carstens | b0c632d | 2008-03-25 18:47:20 +0100 | [diff] [blame] | 18 | #include <linux/kvm_host.h> |
Jens Freimann | 81aa8efe | 2013-10-07 16:13:44 +0200 | [diff] [blame] | 19 | #include <linux/kvm.h> |
David Hildenbrand | 9c23a13 | 2016-02-17 21:53:33 +0100 | [diff] [blame] | 20 | #include <linux/seqlock.h> |
Heiko Carstens | b0c632d | 2008-03-25 18:47:20 +0100 | [diff] [blame] | 21 | #include <asm/debug.h> |
Heiko Carstens | e86a6ed | 2009-09-11 10:29:04 +0200 | [diff] [blame] | 22 | #include <asm/cpu.h> |
Hendrik Brueckner | b075390 | 2015-10-06 12:25:59 +0200 | [diff] [blame] | 23 | #include <asm/fpu/api.h> |
Cornelia Huck | 841b91c | 2013-07-15 13:36:01 +0200 | [diff] [blame] | 24 | #include <asm/isc.h> |
Fan Zhang | 4e0b1ab | 2016-11-29 07:17:55 +0100 | [diff] [blame] | 25 | #include <asm/guarded_storage.h> |
Heiko Carstens | b0c632d | 2008-03-25 18:47:20 +0100 | [diff] [blame] | 26 | |
Eugene (jno) Dvurechenski | bc784cc | 2015-04-23 16:09:06 +0200 | [diff] [blame] | 27 | #define KVM_S390_BSCA_CPU_SLOTS 64 |
| 28 | #define KVM_S390_ESCA_CPU_SLOTS 248 |
David Hildenbrand | a694067 | 2016-08-08 22:39:32 +0200 | [diff] [blame] | 29 | #define KVM_MAX_VCPUS 255 |
Alex Williamson | bbacc0c | 2012-12-10 10:33:09 -0700 | [diff] [blame] | 30 | #define KVM_USER_MEM_SLOTS 32 |
Heiko Carstens | b0c632d | 2008-03-25 18:47:20 +0100 | [diff] [blame] | 31 | |
Cornelia Huck | 8422359 | 2013-07-15 13:36:01 +0200 | [diff] [blame] | 32 | /* |
| 33 | * These seem to be used for allocating ->chip in the routing table, |
| 34 | * which we don't use. 4096 is an out-of-thin-air value. If we need |
| 35 | * to look at ->chip later on, we'll need to revisit this. |
| 36 | */ |
| 37 | #define KVM_NR_IRQCHIPS 1 |
| 38 | #define KVM_IRQCHIP_NUM_PINS 4096 |
Christian Borntraeger | c4a8de3 | 2016-05-13 12:16:36 +0200 | [diff] [blame] | 39 | #define KVM_HALT_POLL_NS_DEFAULT 80000 |
Cornelia Huck | 8422359 | 2013-07-15 13:36:01 +0200 | [diff] [blame] | 40 | |
Paolo Bonzini | 2860c4b | 2016-01-07 15:05:10 +0100 | [diff] [blame] | 41 | /* s390-specific vcpu->requests bit members */ |
Andrew Jones | 2387149 | 2017-06-04 14:43:51 +0200 | [diff] [blame] | 42 | #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 Bonzini | 04a7ea0 | 2017-06-30 12:38:26 +0200 | [diff] [blame] | 45 | #define KVM_REQ_START_MIGRATION KVM_ARCH_REQ(3) |
| 46 | #define KVM_REQ_STOP_MIGRATION KVM_ARCH_REQ(4) |
Paolo Bonzini | 2860c4b | 2016-01-07 15:05:10 +0100 | [diff] [blame] | 47 | |
David Hildenbrand | ea5f496 | 2014-10-14 15:29:30 +0200 | [diff] [blame] | 48 | #define SIGP_CTRL_C 0x80 |
| 49 | #define SIGP_CTRL_SCN_MASK 0x3f |
David Hildenbrand | 4953919 | 2014-02-21 08:59:59 +0100 | [diff] [blame] | 50 | |
Eugene (jno) Dvurechenski | bc784cc | 2015-04-23 16:09:06 +0200 | [diff] [blame] | 51 | union bsca_sigp_ctrl { |
| 52 | __u8 value; |
| 53 | struct { |
| 54 | __u8 c : 1; |
| 55 | __u8 r : 1; |
| 56 | __u8 scn : 6; |
| 57 | }; |
Martin Schwidefsky | 1cae025 | 2017-06-21 16:49:15 +0200 | [diff] [blame] | 58 | }; |
Eugene (jno) Dvurechenski | bc784cc | 2015-04-23 16:09:06 +0200 | [diff] [blame] | 59 | |
| 60 | union esca_sigp_ctrl { |
| 61 | __u16 value; |
| 62 | struct { |
| 63 | __u8 c : 1; |
| 64 | __u8 reserved: 7; |
| 65 | __u8 scn; |
| 66 | }; |
Martin Schwidefsky | 1cae025 | 2017-06-21 16:49:15 +0200 | [diff] [blame] | 67 | }; |
Eugene (jno) Dvurechenski | bc784cc | 2015-04-23 16:09:06 +0200 | [diff] [blame] | 68 | |
| 69 | struct esca_entry { |
| 70 | union esca_sigp_ctrl sigp_ctrl; |
| 71 | __u16 reserved1[3]; |
| 72 | __u64 sda; |
| 73 | __u64 reserved2[6]; |
Martin Schwidefsky | 1cae025 | 2017-06-21 16:49:15 +0200 | [diff] [blame] | 74 | }; |
Eugene (jno) Dvurechenski | bc784cc | 2015-04-23 16:09:06 +0200 | [diff] [blame] | 75 | |
| 76 | struct bsca_entry { |
David Hildenbrand | ea5f496 | 2014-10-14 15:29:30 +0200 | [diff] [blame] | 77 | __u8 reserved0; |
Eugene (jno) Dvurechenski | bc784cc | 2015-04-23 16:09:06 +0200 | [diff] [blame] | 78 | union bsca_sigp_ctrl sigp_ctrl; |
David Hildenbrand | ea5f496 | 2014-10-14 15:29:30 +0200 | [diff] [blame] | 79 | __u16 reserved[3]; |
Heiko Carstens | b0c632d | 2008-03-25 18:47:20 +0100 | [diff] [blame] | 80 | __u64 sda; |
| 81 | __u64 reserved2[2]; |
Martin Schwidefsky | 1cae025 | 2017-06-21 16:49:15 +0200 | [diff] [blame] | 82 | }; |
Heiko Carstens | b0c632d | 2008-03-25 18:47:20 +0100 | [diff] [blame] | 83 | |
Heiko Carstens | 8a242234 | 2014-01-10 14:33:28 +0100 | [diff] [blame] | 84 | union 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 | }; |
Heiko Carstens | b0c632d | 2008-03-25 18:47:20 +0100 | [diff] [blame] | 92 | |
Eugene (jno) Dvurechenski | bc784cc | 2015-04-23 16:09:06 +0200 | [diff] [blame] | 93 | struct bsca_block { |
Heiko Carstens | 8a242234 | 2014-01-10 14:33:28 +0100 | [diff] [blame] | 94 | union ipte_control ipte_control; |
Heiko Carstens | b0c632d | 2008-03-25 18:47:20 +0100 | [diff] [blame] | 95 | __u64 reserved[5]; |
| 96 | __u64 mcn; |
| 97 | __u64 reserved2; |
Eugene (jno) Dvurechenski | bc784cc | 2015-04-23 16:09:06 +0200 | [diff] [blame] | 98 | struct bsca_entry cpu[KVM_S390_BSCA_CPU_SLOTS]; |
Martin Schwidefsky | 1cae025 | 2017-06-21 16:49:15 +0200 | [diff] [blame] | 99 | }; |
Heiko Carstens | b0c632d | 2008-03-25 18:47:20 +0100 | [diff] [blame] | 100 | |
Eugene (jno) Dvurechenski | bc784cc | 2015-04-23 16:09:06 +0200 | [diff] [blame] | 101 | struct 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]; |
Martin Schwidefsky | 1cae025 | 2017-06-21 16:49:15 +0200 | [diff] [blame] | 107 | }; |
Eugene (jno) Dvurechenski | bc784cc | 2015-04-23 16:09:06 +0200 | [diff] [blame] | 108 | |
QingFeng Hao | da72ca4 | 2017-06-07 11:41:19 +0200 | [diff] [blame] | 109 | /* |
| 110 | * This struct is used to store some machine check info from lowcore |
| 111 | * for machine checks that happen while the guest is running. |
| 112 | * This info in host's lowcore might be overwritten by a second machine |
| 113 | * check from host when host is in the machine check's high-level handling. |
| 114 | * The size is 24 bytes. |
| 115 | */ |
| 116 | struct mcck_volatile_info { |
| 117 | __u64 mcic; |
| 118 | __u64 failing_storage_address; |
| 119 | __u32 ext_damage_code; |
| 120 | __u32 reserved; |
| 121 | }; |
| 122 | |
Cornelia Huck | 9e6dabe | 2011-11-17 11:00:41 +0100 | [diff] [blame] | 123 | #define CPUSTAT_STOPPED 0x80000000 |
Heiko Carstens | b0c632d | 2008-03-25 18:47:20 +0100 | [diff] [blame] | 124 | #define CPUSTAT_WAIT 0x10000000 |
| 125 | #define CPUSTAT_ECALL_PEND 0x08000000 |
| 126 | #define CPUSTAT_STOP_INT 0x04000000 |
| 127 | #define CPUSTAT_IO_INT 0x02000000 |
| 128 | #define CPUSTAT_EXT_INT 0x01000000 |
| 129 | #define CPUSTAT_RUNNING 0x00800000 |
| 130 | #define CPUSTAT_RETAINED 0x00400000 |
| 131 | #define CPUSTAT_TIMING_SUB 0x00020000 |
| 132 | #define CPUSTAT_SIE_SUB 0x00010000 |
| 133 | #define CPUSTAT_RRF 0x00008000 |
| 134 | #define CPUSTAT_SLSV 0x00004000 |
| 135 | #define CPUSTAT_SLSR 0x00002000 |
| 136 | #define CPUSTAT_ZARCH 0x00000800 |
| 137 | #define CPUSTAT_MCDS 0x00000100 |
Farhan Ali | 730cd63 | 2017-02-24 16:12:56 -0500 | [diff] [blame] | 138 | #define CPUSTAT_KSS 0x00000200 |
Heiko Carstens | b0c632d | 2008-03-25 18:47:20 +0100 | [diff] [blame] | 139 | #define CPUSTAT_SM 0x00000080 |
David Hildenbrand | 8ad3575 | 2014-03-14 11:00:21 +0100 | [diff] [blame] | 140 | #define CPUSTAT_IBS 0x00000040 |
Guenther Hutzl | 53df84f | 2015-02-18 11:13:03 +0100 | [diff] [blame] | 141 | #define CPUSTAT_GED2 0x00000010 |
Heiko Carstens | b0c632d | 2008-03-25 18:47:20 +0100 | [diff] [blame] | 142 | #define CPUSTAT_G 0x00000008 |
Christian Borntraeger | 69d0d3a | 2013-06-12 13:54:53 +0200 | [diff] [blame] | 143 | #define CPUSTAT_GED 0x00000004 |
Heiko Carstens | b0c632d | 2008-03-25 18:47:20 +0100 | [diff] [blame] | 144 | #define CPUSTAT_J 0x00000002 |
| 145 | #define CPUSTAT_P 0x00000001 |
| 146 | |
Christian Borntraeger | 180c12f | 2008-06-27 15:05:40 +0200 | [diff] [blame] | 147 | struct kvm_s390_sie_block { |
Heiko Carstens | b0c632d | 2008-03-25 18:47:20 +0100 | [diff] [blame] | 148 | atomic_t cpuflags; /* 0x0000 */ |
Michael Mueller | fda902c | 2014-05-13 16:58:30 +0200 | [diff] [blame] | 149 | __u32 : 1; /* 0x0004 */ |
| 150 | __u32 prefix : 18; |
Michael Mueller | 658b6ed | 2015-02-02 15:49:35 +0100 | [diff] [blame] | 151 | __u32 : 1; |
| 152 | __u32 ibc : 12; |
Christian Borntraeger | 95d38fd | 2013-05-17 14:41:34 +0200 | [diff] [blame] | 153 | __u8 reserved08[4]; /* 0x0008 */ |
| 154 | #define PROG_IN_SIE (1<<0) |
| 155 | __u32 prog0c; /* 0x000c */ |
Christian Borntraeger | 49b99e1 | 2013-05-17 14:41:35 +0200 | [diff] [blame] | 156 | __u8 reserved10[16]; /* 0x0010 */ |
Christian Borntraeger | 8e23654 | 2015-04-09 13:49:04 +0200 | [diff] [blame] | 157 | #define PROG_BLOCK_SIE (1<<0) |
| 158 | #define PROG_REQUEST (1<<1) |
Christian Borntraeger | 49b99e1 | 2013-05-17 14:41:35 +0200 | [diff] [blame] | 159 | atomic_t prog20; /* 0x0020 */ |
| 160 | __u8 reserved24[4]; /* 0x0024 */ |
Heiko Carstens | b0c632d | 2008-03-25 18:47:20 +0100 | [diff] [blame] | 161 | __u64 cputm; /* 0x0028 */ |
| 162 | __u64 ckc; /* 0x0030 */ |
| 163 | __u64 epoch; /* 0x0038 */ |
David Hildenbrand | a3508fb | 2015-07-08 13:19:48 +0200 | [diff] [blame] | 164 | __u32 svcc; /* 0x0040 */ |
Carsten Otte | ba5c1e9 | 2008-03-25 18:47:26 +0100 | [diff] [blame] | 165 | #define LCTL_CR0 0x8000 |
Cornelia Huck | d8346b7 | 2012-12-20 15:32:08 +0100 | [diff] [blame] | 166 | #define LCTL_CR6 0x0200 |
David Hildenbrand | 27291e2 | 2014-01-23 12:26:52 +0100 | [diff] [blame] | 167 | #define LCTL_CR9 0x0040 |
| 168 | #define LCTL_CR10 0x0020 |
| 169 | #define LCTL_CR11 0x0010 |
Cornelia Huck | 48a3e95 | 2012-12-20 15:32:09 +0100 | [diff] [blame] | 170 | #define LCTL_CR14 0x0002 |
Heiko Carstens | b0c632d | 2008-03-25 18:47:20 +0100 | [diff] [blame] | 171 | __u16 lctl; /* 0x0044 */ |
| 172 | __s16 icpua; /* 0x0046 */ |
Janosch Frank | 95ca2cb | 2016-05-23 15:11:58 +0200 | [diff] [blame] | 173 | #define ICTL_OPEREXC 0x80000000 |
David Hildenbrand | 27291e2 | 2014-01-23 12:26:52 +0100 | [diff] [blame] | 174 | #define ICTL_PINT 0x20000000 |
| 175 | #define ICTL_LPSW 0x00400000 |
| 176 | #define ICTL_STCTL 0x00040000 |
| 177 | #define ICTL_ISKE 0x00004000 |
| 178 | #define ICTL_SSKE 0x00002000 |
| 179 | #define ICTL_RRBE 0x00001000 |
Matthew Rosato | 5a5e653 | 2013-01-29 11:48:20 -0500 | [diff] [blame] | 180 | #define ICTL_TPROT 0x00000200 |
Heiko Carstens | b0c632d | 2008-03-25 18:47:20 +0100 | [diff] [blame] | 181 | __u32 ictl; /* 0x0048 */ |
David Hildenbrand | 0c9d868 | 2017-03-13 11:48:28 +0100 | [diff] [blame] | 182 | #define ECA_CEI 0x80000000 |
| 183 | #define ECA_IB 0x40000000 |
| 184 | #define ECA_SIGPI 0x10000000 |
| 185 | #define ECA_MVPGI 0x01000000 |
Michael Mueller | 19114be | 2017-05-30 14:26:02 +0200 | [diff] [blame] | 186 | #define ECA_AIV 0x00200000 |
David Hildenbrand | 0c9d868 | 2017-03-13 11:48:28 +0100 | [diff] [blame] | 187 | #define ECA_VX 0x00020000 |
| 188 | #define ECA_PROTEXCI 0x00002000 |
| 189 | #define ECA_SII 0x00000001 |
Heiko Carstens | b0c632d | 2008-03-25 18:47:20 +0100 | [diff] [blame] | 190 | __u32 eca; /* 0x004c */ |
David Hildenbrand | 8712836 | 2014-03-03 10:55:13 +0100 | [diff] [blame] | 191 | #define ICPT_INST 0x04 |
| 192 | #define ICPT_PROGI 0x08 |
| 193 | #define ICPT_INSTPROGI 0x0C |
Farhan Ali | 947b897 | 2017-03-17 09:59:32 -0400 | [diff] [blame] | 194 | #define ICPT_EXTREQ 0x10 |
David Hildenbrand | a3508fb | 2015-07-08 13:19:48 +0200 | [diff] [blame] | 195 | #define ICPT_EXTINT 0x14 |
Farhan Ali | 947b897 | 2017-03-17 09:59:32 -0400 | [diff] [blame] | 196 | #define ICPT_IOREQ 0x18 |
| 197 | #define ICPT_WAIT 0x1c |
David Hildenbrand | a3508fb | 2015-07-08 13:19:48 +0200 | [diff] [blame] | 198 | #define ICPT_VALIDITY 0x20 |
| 199 | #define ICPT_STOP 0x28 |
David Hildenbrand | 8712836 | 2014-03-03 10:55:13 +0100 | [diff] [blame] | 200 | #define ICPT_OPEREXC 0x2C |
| 201 | #define ICPT_PARTEXEC 0x38 |
| 202 | #define ICPT_IOINST 0x40 |
Farhan Ali | 730cd63 | 2017-02-24 16:12:56 -0500 | [diff] [blame] | 203 | #define ICPT_KSS 0x5c |
Heiko Carstens | b0c632d | 2008-03-25 18:47:20 +0100 | [diff] [blame] | 204 | __u8 icptcode; /* 0x0050 */ |
Thomas Huth | 04b41ac | 2014-11-12 17:13:29 +0100 | [diff] [blame] | 205 | __u8 icptstatus; /* 0x0051 */ |
Heiko Carstens | b0c632d | 2008-03-25 18:47:20 +0100 | [diff] [blame] | 206 | __u16 ihcpu; /* 0x0052 */ |
| 207 | __u8 reserved54[2]; /* 0x0054 */ |
| 208 | __u16 ipa; /* 0x0056 */ |
| 209 | __u32 ipb; /* 0x0058 */ |
| 210 | __u32 scaoh; /* 0x005c */ |
Christian Borntraeger | 35b3fde | 2018-01-17 14:44:34 +0100 | [diff] [blame] | 211 | #define FPF_BPBC 0x20 |
| 212 | __u8 fpf; /* 0x0060 */ |
Fan Zhang | 4e0b1ab | 2016-11-29 07:17:55 +0100 | [diff] [blame] | 213 | #define ECB_GS 0x40 |
David Hildenbrand | 0c9d868 | 2017-03-13 11:48:28 +0100 | [diff] [blame] | 214 | #define ECB_TE 0x10 |
| 215 | #define ECB_SRSI 0x04 |
| 216 | #define ECB_HOSTPROTINT 0x02 |
Heiko Carstens | b0c632d | 2008-03-25 18:47:20 +0100 | [diff] [blame] | 217 | __u8 ecb; /* 0x0061 */ |
David Hildenbrand | 0c9d868 | 2017-03-13 11:48:28 +0100 | [diff] [blame] | 218 | #define ECB2_CMMA 0x80 |
| 219 | #define ECB2_IEP 0x20 |
| 220 | #define ECB2_PFMFI 0x08 |
| 221 | #define ECB2_ESCA 0x04 |
Christian Borntraeger | 69d0d3a | 2013-06-12 13:54:53 +0200 | [diff] [blame] | 222 | __u8 ecb2; /* 0x0062 */ |
Tony Krowiak | a374e89 | 2014-09-03 10:13:53 +0200 | [diff] [blame] | 223 | #define ECB3_DEA 0x08 |
David Hildenbrand | 0c9d868 | 2017-03-13 11:48:28 +0100 | [diff] [blame] | 224 | #define ECB3_AES 0x04 |
| 225 | #define ECB3_RI 0x01 |
Tony Krowiak | a374e89 | 2014-09-03 10:13:53 +0200 | [diff] [blame] | 226 | __u8 ecb3; /* 0x0063 */ |
Heiko Carstens | b0c632d | 2008-03-25 18:47:20 +0100 | [diff] [blame] | 227 | __u32 scaol; /* 0x0064 */ |
Collin L. Walling | 8fa1696 | 2016-07-26 15:29:44 -0400 | [diff] [blame] | 228 | __u8 reserved68; /* 0x0068 */ |
| 229 | __u8 epdx; /* 0x0069 */ |
| 230 | __u8 reserved6a[2]; /* 0x006a */ |
Heiko Carstens | b0c632d | 2008-03-25 18:47:20 +0100 | [diff] [blame] | 231 | __u32 todpr; /* 0x006c */ |
Michael Mueller | 4b9f952 | 2017-06-23 13:51:25 +0200 | [diff] [blame] | 232 | #define GISA_FORMAT1 0x00000001 |
Michael Mueller | 19114be | 2017-05-30 14:26:02 +0200 | [diff] [blame] | 233 | __u32 gd; /* 0x0070 */ |
| 234 | __u8 reserved74[12]; /* 0x0074 */ |
David Hildenbrand | efed110 | 2015-04-16 12:32:41 +0200 | [diff] [blame] | 235 | __u64 mso; /* 0x0080 */ |
| 236 | __u64 msl; /* 0x0088 */ |
Heiko Carstens | b0c632d | 2008-03-25 18:47:20 +0100 | [diff] [blame] | 237 | psw_t gpsw; /* 0x0090 */ |
| 238 | __u64 gg14; /* 0x00a0 */ |
| 239 | __u64 gg15; /* 0x00a8 */ |
Thomas Huth | f14d82e | 2014-01-15 16:46:07 +0100 | [diff] [blame] | 240 | __u8 reservedb0[20]; /* 0x00b0 */ |
| 241 | __u16 extcpuaddr; /* 0x00c4 */ |
| 242 | __u16 eic; /* 0x00c6 */ |
| 243 | __u32 reservedc8; /* 0x00c8 */ |
David Hildenbrand | 439716a | 2014-03-03 10:54:33 +0100 | [diff] [blame] | 244 | __u16 pgmilc; /* 0x00cc */ |
| 245 | __u16 iprcc; /* 0x00ce */ |
| 246 | __u32 dxc; /* 0x00d0 */ |
| 247 | __u16 mcn; /* 0x00d4 */ |
| 248 | __u8 perc; /* 0x00d6 */ |
| 249 | __u8 peratmid; /* 0x00d7 */ |
| 250 | __u64 peraddr; /* 0x00d8 */ |
| 251 | __u8 eai; /* 0x00e0 */ |
| 252 | __u8 peraid; /* 0x00e1 */ |
| 253 | __u8 oai; /* 0x00e2 */ |
| 254 | __u8 armid; /* 0x00e3 */ |
| 255 | __u8 reservede4[4]; /* 0x00e4 */ |
| 256 | __u64 tecmc; /* 0x00e8 */ |
Tony Krowiak | 5102ee8 | 2014-06-27 14:46:01 -0400 | [diff] [blame] | 257 | __u8 reservedf0[12]; /* 0x00f0 */ |
| 258 | #define CRYCB_FORMAT1 0x00000001 |
Tony Krowiak | 45c9b47 | 2015-01-13 11:33:26 -0500 | [diff] [blame] | 259 | #define CRYCB_FORMAT2 0x00000003 |
Tony Krowiak | 5102ee8 | 2014-06-27 14:46:01 -0400 | [diff] [blame] | 260 | __u32 crycbd; /* 0x00fc */ |
Heiko Carstens | b0c632d | 2008-03-25 18:47:20 +0100 | [diff] [blame] | 261 | __u64 gcr[16]; /* 0x0100 */ |
| 262 | __u64 gbea; /* 0x0180 */ |
Fan Zhang | 4e0b1ab | 2016-11-29 07:17:55 +0100 | [diff] [blame] | 263 | __u8 reserved188[8]; /* 0x0188 */ |
| 264 | __u64 sdnxo; /* 0x0190 */ |
| 265 | __u8 reserved198[8]; /* 0x0198 */ |
Christian Borntraeger | ef50f7a | 2009-06-23 17:24:07 +0200 | [diff] [blame] | 266 | __u32 fac; /* 0x01a0 */ |
Konstantin Weitz | b31288f | 2013-04-17 17:36:29 +0200 | [diff] [blame] | 267 | __u8 reserved1a4[20]; /* 0x01a4 */ |
| 268 | __u64 cbrlo; /* 0x01b8 */ |
Eric Farman | 13211ea | 2014-04-30 13:39:46 -0400 | [diff] [blame] | 269 | __u8 reserved1c0[8]; /* 0x01c0 */ |
David Hildenbrand | 0c9d868 | 2017-03-13 11:48:28 +0100 | [diff] [blame] | 270 | #define ECD_HOSTREGMGMT 0x20000000 |
Collin L. Walling | 8fa1696 | 2016-07-26 15:29:44 -0400 | [diff] [blame] | 271 | #define ECD_MEF 0x08000000 |
Eric Farman | 13211ea | 2014-04-30 13:39:46 -0400 | [diff] [blame] | 272 | __u32 ecd; /* 0x01c8 */ |
| 273 | __u8 reserved1cc[18]; /* 0x01cc */ |
Christian Borntraeger | 672550f | 2014-02-10 15:32:19 +0100 | [diff] [blame] | 274 | __u64 pp; /* 0x01de */ |
| 275 | __u8 reserved1e6[2]; /* 0x01e6 */ |
Michael Mueller | 7feb6bb | 2013-06-28 13:30:24 +0200 | [diff] [blame] | 276 | __u64 itdba; /* 0x01e8 */ |
Fan Zhang | c6e5f16 | 2016-01-07 18:24:29 +0800 | [diff] [blame] | 277 | __u64 riccbd; /* 0x01f0 */ |
David Hildenbrand | c9bc1ea | 2015-11-25 11:08:32 +0100 | [diff] [blame] | 278 | __u64 gvrd; /* 0x01f8 */ |
Heiko Carstens | b0c632d | 2008-03-25 18:47:20 +0100 | [diff] [blame] | 279 | } __attribute__((packed)); |
| 280 | |
Michael Mueller | 7feb6bb | 2013-06-28 13:30:24 +0200 | [diff] [blame] | 281 | struct kvm_s390_itdb { |
| 282 | __u8 data[256]; |
Martin Schwidefsky | 1cae025 | 2017-06-21 16:49:15 +0200 | [diff] [blame] | 283 | }; |
Michael Mueller | 7feb6bb | 2013-06-28 13:30:24 +0200 | [diff] [blame] | 284 | |
| 285 | struct sie_page { |
| 286 | struct kvm_s390_sie_block sie_block; |
QingFeng Hao | da72ca4 | 2017-06-07 11:41:19 +0200 | [diff] [blame] | 287 | struct mcck_volatile_info mcck_info; /* 0x0200 */ |
| 288 | __u8 reserved218[1000]; /* 0x0218 */ |
Michael Mueller | 7feb6bb | 2013-06-28 13:30:24 +0200 | [diff] [blame] | 289 | struct kvm_s390_itdb itdb; /* 0x0600 */ |
David Hildenbrand | efa4816 | 2016-01-14 22:15:08 +0100 | [diff] [blame] | 290 | __u8 reserved700[2304]; /* 0x0700 */ |
Martin Schwidefsky | 1cae025 | 2017-06-21 16:49:15 +0200 | [diff] [blame] | 291 | }; |
Michael Mueller | 7feb6bb | 2013-06-28 13:30:24 +0200 | [diff] [blame] | 292 | |
Heiko Carstens | b0c632d | 2008-03-25 18:47:20 +0100 | [diff] [blame] | 293 | struct kvm_vcpu_stat { |
Suraj Jitindar Singh | 8a7e75d | 2016-08-02 14:03:22 +1000 | [diff] [blame] | 294 | u64 exit_userspace; |
| 295 | u64 exit_null; |
| 296 | u64 exit_external_request; |
Christian Borntraeger | a5e0acea9 | 2018-02-23 07:57:33 +0000 | [diff] [blame] | 297 | u64 exit_io_request; |
Suraj Jitindar Singh | 8a7e75d | 2016-08-02 14:03:22 +1000 | [diff] [blame] | 298 | u64 exit_external_interrupt; |
| 299 | u64 exit_stop_request; |
| 300 | u64 exit_validity; |
| 301 | u64 exit_instruction; |
| 302 | u64 exit_pei; |
| 303 | u64 halt_successful_poll; |
| 304 | u64 halt_attempted_poll; |
| 305 | u64 halt_poll_invalid; |
| 306 | u64 halt_wakeup; |
| 307 | u64 instruction_lctl; |
| 308 | u64 instruction_lctlg; |
| 309 | u64 instruction_stctl; |
| 310 | u64 instruction_stctg; |
| 311 | u64 exit_program_interruption; |
| 312 | u64 exit_instr_and_program; |
| 313 | u64 exit_operation_exception; |
Christian Borntraeger | ccc40c5 | 2018-03-08 12:48:05 +0000 | [diff] [blame] | 314 | u64 deliver_ckc; |
| 315 | u64 deliver_cputm; |
Suraj Jitindar Singh | 8a7e75d | 2016-08-02 14:03:22 +1000 | [diff] [blame] | 316 | u64 deliver_external_call; |
| 317 | u64 deliver_emergency_signal; |
| 318 | u64 deliver_service_signal; |
Christian Borntraeger | ccc40c5 | 2018-03-08 12:48:05 +0000 | [diff] [blame] | 319 | u64 deliver_virtio; |
Suraj Jitindar Singh | 8a7e75d | 2016-08-02 14:03:22 +1000 | [diff] [blame] | 320 | u64 deliver_stop_signal; |
| 321 | u64 deliver_prefix_signal; |
| 322 | u64 deliver_restart_signal; |
Christian Borntraeger | ccc40c5 | 2018-03-08 12:48:05 +0000 | [diff] [blame] | 323 | u64 deliver_program; |
| 324 | u64 deliver_io; |
QingFeng Hao | 32de074 | 2018-03-02 11:56:47 +0100 | [diff] [blame] | 325 | u64 deliver_machine_check; |
Suraj Jitindar Singh | 8a7e75d | 2016-08-02 14:03:22 +1000 | [diff] [blame] | 326 | u64 exit_wait_state; |
Christian Borntraeger | ccc40c5 | 2018-03-08 12:48:05 +0000 | [diff] [blame] | 327 | u64 inject_ckc; |
| 328 | u64 inject_cputm; |
| 329 | u64 inject_external_call; |
| 330 | u64 inject_emergency_signal; |
| 331 | u64 inject_mchk; |
| 332 | u64 inject_pfault_init; |
| 333 | u64 inject_program; |
| 334 | u64 inject_restart; |
| 335 | u64 inject_set_prefix; |
| 336 | u64 inject_stop_signal; |
Christian Borntraeger | a37cb07 | 2018-01-23 13:28:40 +0100 | [diff] [blame] | 337 | u64 instruction_epsw; |
| 338 | u64 instruction_gs; |
| 339 | u64 instruction_io_other; |
| 340 | u64 instruction_lpsw; |
| 341 | u64 instruction_lpswe; |
Suraj Jitindar Singh | 8a7e75d | 2016-08-02 14:03:22 +1000 | [diff] [blame] | 342 | u64 instruction_pfmf; |
Christian Borntraeger | a37cb07 | 2018-01-23 13:28:40 +0100 | [diff] [blame] | 343 | u64 instruction_ptff; |
| 344 | u64 instruction_sck; |
| 345 | u64 instruction_sckpf; |
Suraj Jitindar Singh | 8a7e75d | 2016-08-02 14:03:22 +1000 | [diff] [blame] | 346 | u64 instruction_stidp; |
| 347 | u64 instruction_spx; |
| 348 | u64 instruction_stpx; |
| 349 | u64 instruction_stap; |
Christian Borntraeger | a37cb07 | 2018-01-23 13:28:40 +0100 | [diff] [blame] | 350 | u64 instruction_iske; |
| 351 | u64 instruction_ri; |
| 352 | u64 instruction_rrbe; |
| 353 | u64 instruction_sske; |
Suraj Jitindar Singh | 8a7e75d | 2016-08-02 14:03:22 +1000 | [diff] [blame] | 354 | u64 instruction_ipte_interlock; |
Suraj Jitindar Singh | 8a7e75d | 2016-08-02 14:03:22 +1000 | [diff] [blame] | 355 | u64 instruction_stsi; |
| 356 | u64 instruction_stfl; |
Christian Borntraeger | a37cb07 | 2018-01-23 13:28:40 +0100 | [diff] [blame] | 357 | u64 instruction_tb; |
| 358 | u64 instruction_tpi; |
Suraj Jitindar Singh | 8a7e75d | 2016-08-02 14:03:22 +1000 | [diff] [blame] | 359 | u64 instruction_tprot; |
Christian Borntraeger | a37cb07 | 2018-01-23 13:28:40 +0100 | [diff] [blame] | 360 | u64 instruction_tsch; |
Suraj Jitindar Singh | 8a7e75d | 2016-08-02 14:03:22 +1000 | [diff] [blame] | 361 | u64 instruction_sie; |
| 362 | u64 instruction_essa; |
| 363 | u64 instruction_sthyi; |
| 364 | u64 instruction_sigp_sense; |
| 365 | u64 instruction_sigp_sense_running; |
| 366 | u64 instruction_sigp_external_call; |
| 367 | u64 instruction_sigp_emergency; |
| 368 | u64 instruction_sigp_cond_emergency; |
| 369 | u64 instruction_sigp_start; |
| 370 | u64 instruction_sigp_stop; |
| 371 | u64 instruction_sigp_stop_store_status; |
| 372 | u64 instruction_sigp_store_status; |
| 373 | u64 instruction_sigp_store_adtl_status; |
| 374 | u64 instruction_sigp_arch; |
| 375 | u64 instruction_sigp_prefix; |
| 376 | u64 instruction_sigp_restart; |
| 377 | u64 instruction_sigp_init_cpu_reset; |
| 378 | u64 instruction_sigp_cpu_reset; |
| 379 | u64 instruction_sigp_unknown; |
| 380 | u64 diagnose_10; |
| 381 | u64 diagnose_44; |
| 382 | u64 diagnose_9c; |
| 383 | u64 diagnose_258; |
| 384 | u64 diagnose_308; |
| 385 | u64 diagnose_500; |
Christian Borntraeger | a37cb07 | 2018-01-23 13:28:40 +0100 | [diff] [blame] | 386 | u64 diagnose_other; |
Heiko Carstens | b0c632d | 2008-03-25 18:47:20 +0100 | [diff] [blame] | 387 | }; |
| 388 | |
Jens Freimann | bcd8468 | 2014-02-11 11:07:05 +0100 | [diff] [blame] | 389 | #define PGM_OPERATION 0x01 |
| 390 | #define PGM_PRIVILEGED_OP 0x02 |
| 391 | #define PGM_EXECUTE 0x03 |
| 392 | #define PGM_PROTECTION 0x04 |
| 393 | #define PGM_ADDRESSING 0x05 |
| 394 | #define PGM_SPECIFICATION 0x06 |
| 395 | #define PGM_DATA 0x07 |
| 396 | #define PGM_FIXED_POINT_OVERFLOW 0x08 |
| 397 | #define PGM_FIXED_POINT_DIVIDE 0x09 |
| 398 | #define PGM_DECIMAL_OVERFLOW 0x0a |
| 399 | #define PGM_DECIMAL_DIVIDE 0x0b |
| 400 | #define PGM_HFP_EXPONENT_OVERFLOW 0x0c |
| 401 | #define PGM_HFP_EXPONENT_UNDERFLOW 0x0d |
| 402 | #define PGM_HFP_SIGNIFICANCE 0x0e |
| 403 | #define PGM_HFP_DIVIDE 0x0f |
| 404 | #define PGM_SEGMENT_TRANSLATION 0x10 |
| 405 | #define PGM_PAGE_TRANSLATION 0x11 |
| 406 | #define PGM_TRANSLATION_SPEC 0x12 |
| 407 | #define PGM_SPECIAL_OPERATION 0x13 |
| 408 | #define PGM_OPERAND 0x15 |
| 409 | #define PGM_TRACE_TABEL 0x16 |
Eric Farman | 403c864 | 2015-02-02 15:01:06 -0500 | [diff] [blame] | 410 | #define PGM_VECTOR_PROCESSING 0x1b |
Jens Freimann | bcd8468 | 2014-02-11 11:07:05 +0100 | [diff] [blame] | 411 | #define PGM_SPACE_SWITCH 0x1c |
| 412 | #define PGM_HFP_SQUARE_ROOT 0x1d |
| 413 | #define PGM_PC_TRANSLATION_SPEC 0x1f |
| 414 | #define PGM_AFX_TRANSLATION 0x20 |
| 415 | #define PGM_ASX_TRANSLATION 0x21 |
| 416 | #define PGM_LX_TRANSLATION 0x22 |
| 417 | #define PGM_EX_TRANSLATION 0x23 |
| 418 | #define PGM_PRIMARY_AUTHORITY 0x24 |
| 419 | #define PGM_SECONDARY_AUTHORITY 0x25 |
| 420 | #define PGM_LFX_TRANSLATION 0x26 |
| 421 | #define PGM_LSX_TRANSLATION 0x27 |
| 422 | #define PGM_ALET_SPECIFICATION 0x28 |
| 423 | #define PGM_ALEN_TRANSLATION 0x29 |
| 424 | #define PGM_ALE_SEQUENCE 0x2a |
| 425 | #define PGM_ASTE_VALIDITY 0x2b |
| 426 | #define PGM_ASTE_SEQUENCE 0x2c |
| 427 | #define PGM_EXTENDED_AUTHORITY 0x2d |
| 428 | #define PGM_LSTE_SEQUENCE 0x2e |
| 429 | #define PGM_ASTE_INSTANCE 0x2f |
| 430 | #define PGM_STACK_FULL 0x30 |
| 431 | #define PGM_STACK_EMPTY 0x31 |
| 432 | #define PGM_STACK_SPECIFICATION 0x32 |
| 433 | #define PGM_STACK_TYPE 0x33 |
| 434 | #define PGM_STACK_OPERATION 0x34 |
| 435 | #define PGM_ASCE_TYPE 0x38 |
| 436 | #define PGM_REGION_FIRST_TRANS 0x39 |
| 437 | #define PGM_REGION_SECOND_TRANS 0x3a |
| 438 | #define PGM_REGION_THIRD_TRANS 0x3b |
| 439 | #define PGM_MONITOR 0x40 |
| 440 | #define PGM_PER 0x80 |
| 441 | #define PGM_CRYPTO_OPERATION 0x119 |
Carsten Otte | ba5c1e9 | 2008-03-25 18:47:26 +0100 | [diff] [blame] | 442 | |
Michael Mueller | c7901a6 | 2017-06-29 18:39:27 +0200 | [diff] [blame] | 443 | /* irq types in ascend order of priorities */ |
Jens Freimann | c0e6159 | 2013-07-29 20:54:15 +0200 | [diff] [blame] | 444 | enum irq_types { |
Michael Mueller | c7901a6 | 2017-06-29 18:39:27 +0200 | [diff] [blame] | 445 | IRQ_PEND_SET_PREFIX = 0, |
Jens Freimann | c0e6159 | 2013-07-29 20:54:15 +0200 | [diff] [blame] | 446 | IRQ_PEND_RESTART, |
Michael Mueller | c7901a6 | 2017-06-29 18:39:27 +0200 | [diff] [blame] | 447 | IRQ_PEND_SIGP_STOP, |
| 448 | IRQ_PEND_IO_ISC_7, |
| 449 | IRQ_PEND_IO_ISC_6, |
| 450 | IRQ_PEND_IO_ISC_5, |
| 451 | IRQ_PEND_IO_ISC_4, |
| 452 | IRQ_PEND_IO_ISC_3, |
| 453 | IRQ_PEND_IO_ISC_2, |
| 454 | IRQ_PEND_IO_ISC_1, |
| 455 | IRQ_PEND_IO_ISC_0, |
| 456 | IRQ_PEND_VIRTIO, |
| 457 | IRQ_PEND_PFAULT_DONE, |
| 458 | IRQ_PEND_PFAULT_INIT, |
| 459 | IRQ_PEND_EXT_HOST, |
| 460 | IRQ_PEND_EXT_SERVICE, |
| 461 | IRQ_PEND_EXT_TIMING, |
| 462 | IRQ_PEND_EXT_CPU_TIMER, |
| 463 | IRQ_PEND_EXT_CLOCK_COMP, |
| 464 | IRQ_PEND_EXT_EXTERNAL, |
| 465 | IRQ_PEND_EXT_EMERGENCY, |
| 466 | IRQ_PEND_EXT_MALFUNC, |
| 467 | IRQ_PEND_EXT_IRQ_KEY, |
| 468 | IRQ_PEND_MCHK_REP, |
| 469 | IRQ_PEND_PROG, |
| 470 | IRQ_PEND_SVC, |
| 471 | IRQ_PEND_MCHK_EX, |
Jens Freimann | c0e6159 | 2013-07-29 20:54:15 +0200 | [diff] [blame] | 472 | IRQ_PEND_COUNT |
| 473 | }; |
| 474 | |
Jens Freimann | 6d3da24 | 2013-07-03 15:18:35 +0200 | [diff] [blame] | 475 | /* We have 2M for virtio device descriptor pages. Smallest amount of |
| 476 | * memory per page is 24 bytes (1 queue), so (2048*1024) / 24 = 87381 |
| 477 | */ |
| 478 | #define KVM_S390_MAX_VIRTIO_IRQS 87381 |
| 479 | |
Jens Freimann | c0e6159 | 2013-07-29 20:54:15 +0200 | [diff] [blame] | 480 | /* |
| 481 | * Repressible (non-floating) machine check interrupts |
| 482 | * subclass bits in MCIC |
| 483 | */ |
| 484 | #define MCHK_EXTD_BIT 58 |
| 485 | #define MCHK_DEGR_BIT 56 |
| 486 | #define MCHK_WARN_BIT 55 |
| 487 | #define MCHK_REP_MASK ((1UL << MCHK_DEGR_BIT) | \ |
| 488 | (1UL << MCHK_EXTD_BIT) | \ |
| 489 | (1UL << MCHK_WARN_BIT)) |
| 490 | |
| 491 | /* Exigent machine check interrupts subclass bits in MCIC */ |
| 492 | #define MCHK_SD_BIT 63 |
| 493 | #define MCHK_PD_BIT 62 |
| 494 | #define MCHK_EX_MASK ((1UL << MCHK_SD_BIT) | (1UL << MCHK_PD_BIT)) |
| 495 | |
| 496 | #define IRQ_PEND_EXT_MASK ((1UL << IRQ_PEND_EXT_IRQ_KEY) | \ |
| 497 | (1UL << IRQ_PEND_EXT_CLOCK_COMP) | \ |
| 498 | (1UL << IRQ_PEND_EXT_CPU_TIMER) | \ |
| 499 | (1UL << IRQ_PEND_EXT_MALFUNC) | \ |
| 500 | (1UL << IRQ_PEND_EXT_EMERGENCY) | \ |
| 501 | (1UL << IRQ_PEND_EXT_EXTERNAL) | \ |
| 502 | (1UL << IRQ_PEND_EXT_TIMING) | \ |
| 503 | (1UL << IRQ_PEND_EXT_HOST) | \ |
| 504 | (1UL << IRQ_PEND_EXT_SERVICE) | \ |
| 505 | (1UL << IRQ_PEND_VIRTIO) | \ |
| 506 | (1UL << IRQ_PEND_PFAULT_INIT) | \ |
| 507 | (1UL << IRQ_PEND_PFAULT_DONE)) |
| 508 | |
| 509 | #define IRQ_PEND_IO_MASK ((1UL << IRQ_PEND_IO_ISC_0) | \ |
| 510 | (1UL << IRQ_PEND_IO_ISC_1) | \ |
| 511 | (1UL << IRQ_PEND_IO_ISC_2) | \ |
| 512 | (1UL << IRQ_PEND_IO_ISC_3) | \ |
| 513 | (1UL << IRQ_PEND_IO_ISC_4) | \ |
| 514 | (1UL << IRQ_PEND_IO_ISC_5) | \ |
| 515 | (1UL << IRQ_PEND_IO_ISC_6) | \ |
| 516 | (1UL << IRQ_PEND_IO_ISC_7)) |
| 517 | |
| 518 | #define IRQ_PEND_MCHK_MASK ((1UL << IRQ_PEND_MCHK_REP) | \ |
| 519 | (1UL << IRQ_PEND_MCHK_EX)) |
| 520 | |
Christian Borntraeger | 180c12f | 2008-06-27 15:05:40 +0200 | [diff] [blame] | 521 | struct kvm_s390_interrupt_info { |
Carsten Otte | ba5c1e9 | 2008-03-25 18:47:26 +0100 | [diff] [blame] | 522 | struct list_head list; |
| 523 | u64 type; |
| 524 | union { |
Christian Borntraeger | 180c12f | 2008-06-27 15:05:40 +0200 | [diff] [blame] | 525 | struct kvm_s390_io_info io; |
| 526 | struct kvm_s390_ext_info ext; |
| 527 | struct kvm_s390_pgm_info pgm; |
Christian Ehrhardt | 8bb3a2e | 2011-07-24 10:48:31 +0200 | [diff] [blame] | 528 | struct kvm_s390_emerg_info emerg; |
Christian Ehrhardt | 7697e71f | 2011-10-18 12:27:15 +0200 | [diff] [blame] | 529 | struct kvm_s390_extcall_info extcall; |
Christian Borntraeger | 180c12f | 2008-06-27 15:05:40 +0200 | [diff] [blame] | 530 | struct kvm_s390_prefix_info prefix; |
David Hildenbrand | 2822545 | 2014-10-15 16:48:16 +0200 | [diff] [blame] | 531 | struct kvm_s390_stop_info stop; |
Cornelia Huck | 48a3e95 | 2012-12-20 15:32:09 +0100 | [diff] [blame] | 532 | struct kvm_s390_mchk_info mchk; |
Carsten Otte | ba5c1e9 | 2008-03-25 18:47:26 +0100 | [diff] [blame] | 533 | }; |
| 534 | }; |
| 535 | |
Jens Freimann | c0e6159 | 2013-07-29 20:54:15 +0200 | [diff] [blame] | 536 | struct kvm_s390_irq_payload { |
| 537 | struct kvm_s390_io_info io; |
| 538 | struct kvm_s390_ext_info ext; |
| 539 | struct kvm_s390_pgm_info pgm; |
| 540 | struct kvm_s390_emerg_info emerg; |
| 541 | struct kvm_s390_extcall_info extcall; |
| 542 | struct kvm_s390_prefix_info prefix; |
David Hildenbrand | 2822545 | 2014-10-15 16:48:16 +0200 | [diff] [blame] | 543 | struct kvm_s390_stop_info stop; |
Jens Freimann | c0e6159 | 2013-07-29 20:54:15 +0200 | [diff] [blame] | 544 | struct kvm_s390_mchk_info mchk; |
| 545 | }; |
| 546 | |
Christian Borntraeger | 180c12f | 2008-06-27 15:05:40 +0200 | [diff] [blame] | 547 | struct kvm_s390_local_interrupt { |
Carsten Otte | ba5c1e9 | 2008-03-25 18:47:26 +0100 | [diff] [blame] | 548 | spinlock_t lock; |
Jens Freimann | c0e6159 | 2013-07-29 20:54:15 +0200 | [diff] [blame] | 549 | DECLARE_BITMAP(sigp_emerg_pending, KVM_MAX_VCPUS); |
| 550 | struct kvm_s390_irq_payload irq; |
| 551 | unsigned long pending_irqs; |
Carsten Otte | ba5c1e9 | 2008-03-25 18:47:26 +0100 | [diff] [blame] | 552 | }; |
| 553 | |
Jens Freimann | 6d3da24 | 2013-07-03 15:18:35 +0200 | [diff] [blame] | 554 | #define FIRQ_LIST_IO_ISC_0 0 |
| 555 | #define FIRQ_LIST_IO_ISC_1 1 |
| 556 | #define FIRQ_LIST_IO_ISC_2 2 |
| 557 | #define FIRQ_LIST_IO_ISC_3 3 |
| 558 | #define FIRQ_LIST_IO_ISC_4 4 |
| 559 | #define FIRQ_LIST_IO_ISC_5 5 |
| 560 | #define FIRQ_LIST_IO_ISC_6 6 |
| 561 | #define FIRQ_LIST_IO_ISC_7 7 |
| 562 | #define FIRQ_LIST_PFAULT 8 |
| 563 | #define FIRQ_LIST_VIRTIO 9 |
| 564 | #define FIRQ_LIST_COUNT 10 |
| 565 | #define FIRQ_CNTR_IO 0 |
| 566 | #define FIRQ_CNTR_SERVICE 1 |
| 567 | #define FIRQ_CNTR_VIRTIO 2 |
| 568 | #define FIRQ_CNTR_PFAULT 3 |
| 569 | #define FIRQ_MAX_COUNT 4 |
| 570 | |
Fei Li | 5197839 | 2017-02-17 17:06:26 +0800 | [diff] [blame] | 571 | /* mask the AIS mode for a given ISC */ |
| 572 | #define AIS_MODE_MASK(isc) (0x80 >> isc) |
| 573 | |
| 574 | #define KVM_S390_AIS_MODE_ALL 0 |
| 575 | #define KVM_S390_AIS_MODE_SINGLE 1 |
| 576 | |
Christian Borntraeger | 180c12f | 2008-06-27 15:05:40 +0200 | [diff] [blame] | 577 | struct kvm_s390_float_interrupt { |
Jens Freimann | 6d3da24 | 2013-07-03 15:18:35 +0200 | [diff] [blame] | 578 | unsigned long pending_irqs; |
Carsten Otte | ba5c1e9 | 2008-03-25 18:47:26 +0100 | [diff] [blame] | 579 | spinlock_t lock; |
Jens Freimann | 6d3da24 | 2013-07-03 15:18:35 +0200 | [diff] [blame] | 580 | struct list_head lists[FIRQ_LIST_COUNT]; |
| 581 | int counters[FIRQ_MAX_COUNT]; |
| 582 | struct kvm_s390_mchk_info mchk; |
| 583 | struct kvm_s390_ext_info srv_signal; |
Carsten Otte | ba5c1e9 | 2008-03-25 18:47:26 +0100 | [diff] [blame] | 584 | int next_rr_cpu; |
Jens Freimann | 609433f | 2014-03-18 16:34:18 +0100 | [diff] [blame] | 585 | unsigned long idle_mask[BITS_TO_LONGS(KVM_MAX_VCPUS)]; |
Fei Li | 5197839 | 2017-02-17 17:06:26 +0800 | [diff] [blame] | 586 | struct mutex ais_lock; |
| 587 | u8 simm; |
| 588 | u8 nimm; |
Carsten Otte | ba5c1e9 | 2008-03-25 18:47:26 +0100 | [diff] [blame] | 589 | }; |
| 590 | |
David Hildenbrand | 27291e2 | 2014-01-23 12:26:52 +0100 | [diff] [blame] | 591 | struct kvm_hw_wp_info_arch { |
| 592 | unsigned long addr; |
| 593 | unsigned long phys_addr; |
| 594 | int len; |
| 595 | char *old_data; |
| 596 | }; |
| 597 | |
| 598 | struct kvm_hw_bp_info_arch { |
| 599 | unsigned long addr; |
| 600 | int len; |
| 601 | }; |
| 602 | |
| 603 | /* |
| 604 | * Only the upper 16 bits of kvm_guest_debug->control are arch specific. |
| 605 | * Further KVM_GUESTDBG flags which an be used from userspace can be found in |
| 606 | * arch/s390/include/uapi/asm/kvm.h |
| 607 | */ |
| 608 | #define KVM_GUESTDBG_EXIT_PENDING 0x10000000 |
| 609 | |
| 610 | #define guestdbg_enabled(vcpu) \ |
| 611 | (vcpu->guest_debug & KVM_GUESTDBG_ENABLE) |
| 612 | #define guestdbg_sstep_enabled(vcpu) \ |
| 613 | (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP) |
| 614 | #define guestdbg_hw_bp_enabled(vcpu) \ |
| 615 | (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) |
| 616 | #define guestdbg_exit_pending(vcpu) (guestdbg_enabled(vcpu) && \ |
| 617 | (vcpu->guest_debug & KVM_GUESTDBG_EXIT_PENDING)) |
| 618 | |
| 619 | struct kvm_guestdbg_info_arch { |
| 620 | unsigned long cr0; |
| 621 | unsigned long cr9; |
| 622 | unsigned long cr10; |
| 623 | unsigned long cr11; |
| 624 | struct kvm_hw_bp_info_arch *hw_bp_info; |
| 625 | struct kvm_hw_wp_info_arch *hw_wp_info; |
| 626 | int nr_hw_bp; |
| 627 | int nr_hw_wp; |
| 628 | unsigned long last_bp; |
| 629 | }; |
Carsten Otte | ba5c1e9 | 2008-03-25 18:47:26 +0100 | [diff] [blame] | 630 | |
Heiko Carstens | b0c632d | 2008-03-25 18:47:20 +0100 | [diff] [blame] | 631 | struct kvm_vcpu_arch { |
Christian Borntraeger | 180c12f | 2008-06-27 15:05:40 +0200 | [diff] [blame] | 632 | struct kvm_s390_sie_block *sie_block; |
David Hildenbrand | adbf169 | 2016-05-27 22:03:52 +0200 | [diff] [blame] | 633 | /* if vsie is active, currently executed shadow sie control block */ |
| 634 | struct kvm_s390_sie_block *vsie_block; |
Heiko Carstens | b0c632d | 2008-03-25 18:47:20 +0100 | [diff] [blame] | 635 | unsigned int host_acrs[NUM_ACRS]; |
Fan Zhang | 4e0b1ab | 2016-11-29 07:17:55 +0100 | [diff] [blame] | 636 | struct gs_cb *host_gscb; |
Hendrik Brueckner | 9977e88 | 2015-06-10 12:53:42 +0200 | [diff] [blame] | 637 | struct fpu host_fpregs; |
Christian Borntraeger | 180c12f | 2008-06-27 15:05:40 +0200 | [diff] [blame] | 638 | struct kvm_s390_local_interrupt local_int; |
Christian Borntraeger | ca87230 | 2009-05-12 17:21:49 +0200 | [diff] [blame] | 639 | struct hrtimer ckc_timer; |
Heiko Carstens | 1b0462e | 2014-01-01 16:31:49 +0100 | [diff] [blame] | 640 | struct kvm_s390_pgm_info pgm; |
Carsten Otte | 598841c | 2011-07-24 10:48:21 +0200 | [diff] [blame] | 641 | struct gmap *gmap; |
David Hildenbrand | 37d9df9 | 2015-03-11 16:47:33 +0100 | [diff] [blame] | 642 | /* backup location for the currently enabled gmap when scheduled out */ |
| 643 | struct gmap *enabled_gmap; |
David Hildenbrand | 27291e2 | 2014-01-23 12:26:52 +0100 | [diff] [blame] | 644 | struct kvm_guestdbg_info_arch guestdbg; |
Dominik Dingel | 3c038e6 | 2013-10-07 17:11:48 +0200 | [diff] [blame] | 645 | unsigned long pfault_token; |
| 646 | unsigned long pfault_select; |
| 647 | unsigned long pfault_compare; |
David Hildenbrand | db0758b | 2016-02-15 09:42:25 +0100 | [diff] [blame] | 648 | bool cputm_enabled; |
David Hildenbrand | 9c23a13 | 2016-02-17 21:53:33 +0100 | [diff] [blame] | 649 | /* |
| 650 | * The seqcount protects updates to cputm_start and sie_block.cputm, |
| 651 | * this way we can have non-blocking reads with consistent values. |
| 652 | * Only the owning VCPU thread (vcpu->cpu) is allowed to change these |
| 653 | * values and to start/stop/enable/disable cpu timer accounting. |
| 654 | */ |
| 655 | seqcount_t cputm_seqcount; |
David Hildenbrand | db0758b | 2016-02-15 09:42:25 +0100 | [diff] [blame] | 656 | __u64 cputm_start; |
Fan Zhang | 4e0b1ab | 2016-11-29 07:17:55 +0100 | [diff] [blame] | 657 | bool gs_enabled; |
Heiko Carstens | b0c632d | 2008-03-25 18:47:20 +0100 | [diff] [blame] | 658 | }; |
| 659 | |
| 660 | struct kvm_vm_stat { |
Christian Borntraeger | ccc40c5 | 2018-03-08 12:48:05 +0000 | [diff] [blame] | 661 | u64 inject_io; |
| 662 | u64 inject_float_mchk; |
| 663 | u64 inject_pfault_done; |
| 664 | u64 inject_service_signal; |
| 665 | u64 inject_virtio; |
| 666 | u64 remote_tlb_flush; |
Heiko Carstens | b0c632d | 2008-03-25 18:47:20 +0100 | [diff] [blame] | 667 | }; |
| 668 | |
Takuya Yoshikawa | db3fe4e | 2012-02-08 13:02:18 +0900 | [diff] [blame] | 669 | struct kvm_arch_memory_slot { |
| 670 | }; |
| 671 | |
Cornelia Huck | 841b91c | 2013-07-15 13:36:01 +0200 | [diff] [blame] | 672 | struct s390_map_info { |
| 673 | struct list_head list; |
| 674 | __u64 guest_addr; |
| 675 | __u64 addr; |
| 676 | struct page *page; |
| 677 | }; |
| 678 | |
| 679 | struct s390_io_adapter { |
| 680 | unsigned int id; |
| 681 | int isc; |
| 682 | bool maskable; |
| 683 | bool masked; |
| 684 | bool swap; |
Fei Li | 08fab50 | 2017-01-19 17:02:26 +0100 | [diff] [blame] | 685 | bool suppressible; |
Cornelia Huck | 841b91c | 2013-07-15 13:36:01 +0200 | [diff] [blame] | 686 | struct rw_semaphore maps_lock; |
| 687 | struct list_head maps; |
| 688 | atomic_t nr_maps; |
| 689 | }; |
| 690 | |
| 691 | #define MAX_S390_IO_ADAPTERS ((MAX_ISC + 1) * 8) |
| 692 | #define MAX_S390_ADAPTER_MAPS 256 |
| 693 | |
Michael Mueller | 9d8d578 | 2015-02-02 15:42:51 +0100 | [diff] [blame] | 694 | /* maximum size of facilities and facility mask is 2k bytes */ |
| 695 | #define S390_ARCH_FAC_LIST_SIZE_BYTE (1<<11) |
| 696 | #define S390_ARCH_FAC_LIST_SIZE_U64 \ |
| 697 | (S390_ARCH_FAC_LIST_SIZE_BYTE / sizeof(u64)) |
| 698 | #define S390_ARCH_FAC_MASK_SIZE_BYTE S390_ARCH_FAC_LIST_SIZE_BYTE |
| 699 | #define S390_ARCH_FAC_MASK_SIZE_U64 \ |
| 700 | (S390_ARCH_FAC_MASK_SIZE_BYTE / sizeof(u64)) |
| 701 | |
Michael Mueller | 9d8d578 | 2015-02-02 15:42:51 +0100 | [diff] [blame] | 702 | struct kvm_s390_cpu_model { |
David Hildenbrand | c54f0d6 | 2015-12-02 08:53:52 +0100 | [diff] [blame] | 703 | /* facility mask supported by kvm & hosting machine */ |
| 704 | __u64 fac_mask[S390_ARCH_FAC_LIST_SIZE_U64]; |
| 705 | /* facility list requested by guest (in dma page) */ |
| 706 | __u64 *fac_list; |
David Hildenbrand | 9bb0ec0 | 2016-04-04 14:27:51 +0200 | [diff] [blame] | 707 | u64 cpuid; |
Michael Mueller | 658b6ed | 2015-02-02 15:49:35 +0100 | [diff] [blame] | 708 | unsigned short ibc; |
Michael Mueller | 9d8d578 | 2015-02-02 15:42:51 +0100 | [diff] [blame] | 709 | }; |
| 710 | |
Tony Krowiak | 5102ee8 | 2014-06-27 14:46:01 -0400 | [diff] [blame] | 711 | struct kvm_s390_crypto { |
| 712 | struct kvm_s390_crypto_cb *crycb; |
| 713 | __u32 crycbd; |
Tony Krowiak | a374e89 | 2014-09-03 10:13:53 +0200 | [diff] [blame] | 714 | __u8 aes_kw; |
| 715 | __u8 dea_kw; |
Tony Krowiak | 5102ee8 | 2014-06-27 14:46:01 -0400 | [diff] [blame] | 716 | }; |
| 717 | |
Tony Krowiak | ba850a8 | 2017-10-13 13:38:46 -0400 | [diff] [blame] | 718 | #define APCB0_MASK_SIZE 1 |
| 719 | struct kvm_s390_apcb0 { |
| 720 | __u64 apm[APCB0_MASK_SIZE]; /* 0x0000 */ |
| 721 | __u64 aqm[APCB0_MASK_SIZE]; /* 0x0008 */ |
| 722 | __u64 adm[APCB0_MASK_SIZE]; /* 0x0010 */ |
| 723 | __u64 reserved18; /* 0x0018 */ |
| 724 | }; |
| 725 | |
| 726 | #define APCB1_MASK_SIZE 4 |
| 727 | struct kvm_s390_apcb1 { |
| 728 | __u64 apm[APCB1_MASK_SIZE]; /* 0x0000 */ |
| 729 | __u64 aqm[APCB1_MASK_SIZE]; /* 0x0020 */ |
| 730 | __u64 adm[APCB1_MASK_SIZE]; /* 0x0040 */ |
| 731 | __u64 reserved60[4]; /* 0x0060 */ |
| 732 | }; |
| 733 | |
Tony Krowiak | 5102ee8 | 2014-06-27 14:46:01 -0400 | [diff] [blame] | 734 | struct kvm_s390_crypto_cb { |
Tony Krowiak | ba850a8 | 2017-10-13 13:38:46 -0400 | [diff] [blame] | 735 | struct kvm_s390_apcb0 apcb0; /* 0x0000 */ |
| 736 | __u8 reserved20[0x0048 - 0x0020]; /* 0x0020 */ |
| 737 | __u8 dea_wrapping_key_mask[24]; /* 0x0048 */ |
| 738 | __u8 aes_wrapping_key_mask[32]; /* 0x0060 */ |
| 739 | struct kvm_s390_apcb1 apcb1; /* 0x0080 */ |
Tony Krowiak | 5102ee8 | 2014-06-27 14:46:01 -0400 | [diff] [blame] | 740 | }; |
| 741 | |
Michael Mueller | 19114be | 2017-05-30 14:26:02 +0200 | [diff] [blame] | 742 | struct kvm_s390_gisa { |
Michael Mueller | 4b9f952 | 2017-06-23 13:51:25 +0200 | [diff] [blame] | 743 | union { |
| 744 | struct { /* common to all formats */ |
| 745 | u32 next_alert; |
| 746 | u8 ipm; |
| 747 | u8 reserved01[2]; |
| 748 | u8 iam; |
| 749 | }; |
| 750 | struct { /* format 0 */ |
| 751 | u32 next_alert; |
| 752 | u8 ipm; |
| 753 | u8 reserved01; |
| 754 | u8 : 6; |
| 755 | u8 g : 1; |
| 756 | u8 c : 1; |
| 757 | u8 iam; |
| 758 | u8 reserved02[4]; |
| 759 | u32 airq_count; |
| 760 | } g0; |
| 761 | struct { /* format 1 */ |
| 762 | u32 next_alert; |
| 763 | u8 ipm; |
| 764 | u8 simm; |
| 765 | u8 nimm; |
| 766 | u8 iam; |
| 767 | u8 aism[8]; |
| 768 | u8 : 6; |
| 769 | u8 g : 1; |
| 770 | u8 c : 1; |
| 771 | u8 reserved03[11]; |
| 772 | u32 airq_count; |
| 773 | } g1; |
| 774 | }; |
Michael Mueller | 19114be | 2017-05-30 14:26:02 +0200 | [diff] [blame] | 775 | }; |
| 776 | |
David Hildenbrand | c54f0d6 | 2015-12-02 08:53:52 +0100 | [diff] [blame] | 777 | /* |
Michael Mueller | 19114be | 2017-05-30 14:26:02 +0200 | [diff] [blame] | 778 | * sie_page2 has to be allocated as DMA because fac_list, crycb and |
| 779 | * gisa need 31bit addresses in the sie control block. |
David Hildenbrand | c54f0d6 | 2015-12-02 08:53:52 +0100 | [diff] [blame] | 780 | */ |
| 781 | struct sie_page2 { |
| 782 | __u64 fac_list[S390_ARCH_FAC_LIST_SIZE_U64]; /* 0x0000 */ |
| 783 | struct kvm_s390_crypto_cb crycb; /* 0x0800 */ |
Michael Mueller | 19114be | 2017-05-30 14:26:02 +0200 | [diff] [blame] | 784 | struct kvm_s390_gisa gisa; /* 0x0900 */ |
Michael Mueller | 4b9f952 | 2017-06-23 13:51:25 +0200 | [diff] [blame] | 785 | u8 reserved920[0x1000 - 0x920]; /* 0x0920 */ |
Martin Schwidefsky | 1cae025 | 2017-06-21 16:49:15 +0200 | [diff] [blame] | 786 | }; |
David Hildenbrand | c54f0d6 | 2015-12-02 08:53:52 +0100 | [diff] [blame] | 787 | |
David Hildenbrand | a3508fb | 2015-07-08 13:19:48 +0200 | [diff] [blame] | 788 | struct kvm_s390_vsie { |
| 789 | struct mutex mutex; |
| 790 | struct radix_tree_root addr_to_page; |
| 791 | int page_count; |
| 792 | int next; |
| 793 | struct page *pages[KVM_MAX_VCPUS]; |
| 794 | }; |
| 795 | |
Heiko Carstens | b0c632d | 2008-03-25 18:47:20 +0100 | [diff] [blame] | 796 | struct kvm_arch{ |
Eugene (jno) Dvurechenski | 7d43bafcf | 2015-04-22 17:09:44 +0200 | [diff] [blame] | 797 | void *sca; |
| 798 | int use_esca; |
Eugene (jno) Dvurechenski | 5e04431 | 2015-04-22 18:08:39 +0200 | [diff] [blame] | 799 | rwlock_t sca_lock; |
Heiko Carstens | b0c632d | 2008-03-25 18:47:20 +0100 | [diff] [blame] | 800 | debug_info_t *dbf; |
Christian Borntraeger | 180c12f | 2008-06-27 15:05:40 +0200 | [diff] [blame] | 801 | struct kvm_s390_float_interrupt float_int; |
Jens Freimann | c05c418 | 2013-10-07 16:13:45 +0200 | [diff] [blame] | 802 | struct kvm_device *flic; |
Carsten Otte | 598841c | 2011-07-24 10:48:21 +0200 | [diff] [blame] | 803 | struct gmap *gmap; |
Dominik Dingel | a3a92c3 | 2014-12-01 17:24:42 +0100 | [diff] [blame] | 804 | unsigned long mem_limit; |
Cornelia Huck | fa6b7fe | 2012-12-20 15:32:12 +0100 | [diff] [blame] | 805 | int css_support; |
Cornelia Huck | 8422359 | 2013-07-15 13:36:01 +0200 | [diff] [blame] | 806 | int use_irqchip; |
Dominik Dingel | b31605c | 2014-03-25 13:47:11 +0100 | [diff] [blame] | 807 | int use_cmma; |
Janosch Frank | c9f0a2b | 2018-02-16 12:16:14 +0100 | [diff] [blame] | 808 | int use_pfmfi; |
Janosch Frank | 55531b7 | 2018-02-15 16:33:47 +0100 | [diff] [blame] | 809 | int use_skf; |
David Hildenbrand | 6352e4d | 2014-04-10 17:35:00 +0200 | [diff] [blame] | 810 | int user_cpu_state_ctrl; |
David Hildenbrand | 2444b35 | 2014-10-09 14:10:13 +0200 | [diff] [blame] | 811 | int user_sigp; |
Ekaterina Tumanova | e44fc8c | 2015-01-30 16:55:56 +0100 | [diff] [blame] | 812 | int user_stsi; |
David Hildenbrand | 6502a34 | 2016-06-21 14:19:51 +0200 | [diff] [blame] | 813 | int user_instr0; |
Cornelia Huck | 841b91c | 2013-07-15 13:36:01 +0200 | [diff] [blame] | 814 | struct s390_io_adapter *adapters[MAX_S390_IO_ADAPTERS]; |
Heiko Carstens | 8a242234 | 2014-01-10 14:33:28 +0100 | [diff] [blame] | 815 | wait_queue_head_t ipte_wq; |
Thomas Huth | a6b7e45 | 2014-10-01 14:48:42 +0200 | [diff] [blame] | 816 | int ipte_lock_count; |
| 817 | struct mutex ipte_mutex; |
David Hildenbrand | 8ad3575 | 2014-03-14 11:00:21 +0100 | [diff] [blame] | 818 | spinlock_t start_stop_lock; |
David Hildenbrand | c54f0d6 | 2015-12-02 08:53:52 +0100 | [diff] [blame] | 819 | struct sie_page2 *sie_page2; |
Michael Mueller | 9d8d578 | 2015-02-02 15:42:51 +0100 | [diff] [blame] | 820 | struct kvm_s390_cpu_model model; |
Tony Krowiak | 5102ee8 | 2014-06-27 14:46:01 -0400 | [diff] [blame] | 821 | struct kvm_s390_crypto crypto; |
David Hildenbrand | a3508fb | 2015-07-08 13:19:48 +0200 | [diff] [blame] | 822 | struct kvm_s390_vsie vsie; |
Collin L. Walling | 8fa1696 | 2016-07-26 15:29:44 -0400 | [diff] [blame] | 823 | u8 epdx; |
Jason J. Herne | 72f2502 | 2014-11-25 09:46:02 -0500 | [diff] [blame] | 824 | u64 epoch; |
Claudio Imbrenda | afdad61 | 2018-04-30 18:33:25 +0200 | [diff] [blame^] | 825 | int migration_mode; |
| 826 | atomic64_t cmma_dirty_pages; |
David Hildenbrand | 15c9705 | 2015-03-19 17:36:43 +0100 | [diff] [blame] | 827 | /* subset of available cpu features enabled by user space */ |
| 828 | DECLARE_BITMAP(cpu_feat, KVM_S390_VM_CPU_FEAT_NR_BITS); |
Michael Mueller | d7c5cb0 | 2017-06-12 14:15:19 +0200 | [diff] [blame] | 829 | struct kvm_s390_gisa *gisa; |
Heiko Carstens | b0c632d | 2008-03-25 18:47:20 +0100 | [diff] [blame] | 830 | }; |
| 831 | |
Dominik Dingel | bf64087 | 2013-07-26 15:04:07 +0200 | [diff] [blame] | 832 | #define KVM_HVA_ERR_BAD (-1UL) |
| 833 | #define KVM_HVA_ERR_RO_BAD (-2UL) |
| 834 | |
| 835 | static inline bool kvm_is_error_hva(unsigned long addr) |
| 836 | { |
| 837 | return IS_ERR_VALUE(addr); |
| 838 | } |
| 839 | |
Dominik Dingel | 3c038e6 | 2013-10-07 17:11:48 +0200 | [diff] [blame] | 840 | #define ASYNC_PF_PER_VCPU 64 |
Dominik Dingel | 3c038e6 | 2013-10-07 17:11:48 +0200 | [diff] [blame] | 841 | struct kvm_arch_async_pf { |
| 842 | unsigned long pfault_token; |
| 843 | }; |
| 844 | |
| 845 | bool kvm_arch_can_inject_async_page_present(struct kvm_vcpu *vcpu); |
| 846 | |
| 847 | void kvm_arch_async_page_ready(struct kvm_vcpu *vcpu, |
| 848 | struct kvm_async_pf *work); |
| 849 | |
| 850 | void kvm_arch_async_page_not_present(struct kvm_vcpu *vcpu, |
| 851 | struct kvm_async_pf *work); |
| 852 | |
| 853 | void kvm_arch_async_page_present(struct kvm_vcpu *vcpu, |
| 854 | struct kvm_async_pf *work); |
| 855 | |
Christian Borntraeger | 5a32c1a | 2012-01-11 11:20:32 +0100 | [diff] [blame] | 856 | extern int sie64a(struct kvm_s390_sie_block *, u64 *); |
Heinz Graalfs | b764bb1 | 2013-06-12 13:54:56 +0200 | [diff] [blame] | 857 | extern char sie_exit; |
Radim Krčmář | 0865e63 | 2014-08-28 15:13:02 +0200 | [diff] [blame] | 858 | |
Radim Krčmář | 13a34e0 | 2014-08-28 15:13:03 +0200 | [diff] [blame] | 859 | static inline void kvm_arch_hardware_disable(void) {} |
Radim Krčmář | 0865e63 | 2014-08-28 15:13:02 +0200 | [diff] [blame] | 860 | static inline void kvm_arch_check_processor_compat(void *rtn) {} |
Radim Krčmář | 0865e63 | 2014-08-28 15:13:02 +0200 | [diff] [blame] | 861 | static inline void kvm_arch_sync_events(struct kvm *kvm) {} |
| 862 | static inline void kvm_arch_vcpu_uninit(struct kvm_vcpu *vcpu) {} |
| 863 | static inline void kvm_arch_sched_in(struct kvm_vcpu *vcpu, int cpu) {} |
| 864 | static inline void kvm_arch_free_memslot(struct kvm *kvm, |
| 865 | struct kvm_memory_slot *free, struct kvm_memory_slot *dont) {} |
Paolo Bonzini | 15f4601 | 2015-05-17 21:26:08 +0200 | [diff] [blame] | 866 | static inline void kvm_arch_memslots_updated(struct kvm *kvm, struct kvm_memslots *slots) {} |
Radim Krčmář | 0865e63 | 2014-08-28 15:13:02 +0200 | [diff] [blame] | 867 | static inline void kvm_arch_flush_shadow_all(struct kvm *kvm) {} |
| 868 | static inline void kvm_arch_flush_shadow_memslot(struct kvm *kvm, |
| 869 | struct kvm_memory_slot *slot) {} |
Christoffer Dall | 3217f7c | 2015-08-27 16:41:15 +0200 | [diff] [blame] | 870 | static inline void kvm_arch_vcpu_blocking(struct kvm_vcpu *vcpu) {} |
| 871 | static inline void kvm_arch_vcpu_unblocking(struct kvm_vcpu *vcpu) {} |
Radim Krčmář | 0865e63 | 2014-08-28 15:13:02 +0200 | [diff] [blame] | 872 | |
Christian Borntraeger | 3491caf | 2016-05-13 12:16:35 +0200 | [diff] [blame] | 873 | void kvm_arch_vcpu_block_finish(struct kvm_vcpu *vcpu); |
| 874 | |
Heiko Carstens | b0c632d | 2008-03-25 18:47:20 +0100 | [diff] [blame] | 875 | #endif |