kvm_host.h 27 KB

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