kvm_host.h 20 KB

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