KVM: s390: add SPDX identifiers to the remaining files
[linux-2.6-block.git] / arch / s390 / kvm / kvm-s390.h
CommitLineData
d809aa23 1/* SPDX-License-Identifier: GPL-2.0 */
b0c632db 2/*
a53c8fab 3 * definition for kvm on s390
b0c632db 4 *
a53c8fab 5 * Copyright IBM Corp. 2008, 2009
b0c632db
HC
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License (version 2 only)
9 * as published by the Free Software Foundation.
10 *
11 * Author(s): Carsten Otte <cotte@de.ibm.com>
12 * Christian Borntraeger <borntraeger@de.ibm.com>
628eb9b8 13 * Christian Ehrhardt <ehrhardt@de.ibm.com>
b0c632db
HC
14 */
15
16#ifndef ARCH_S390_KVM_S390_H
17#define ARCH_S390_KVM_S390_H
8f2abe6a 18
ca872302 19#include <linux/hrtimer.h>
ba5c1e9b 20#include <linux/kvm.h>
8f2abe6a 21#include <linux/kvm_host.h>
9d8d5786 22#include <asm/facility.h>
0e8bc06a 23#include <asm/processor.h>
a6940674 24#include <asm/sclp.h>
8f2abe6a
CB
25
26typedef int (*intercept_handler_t)(struct kvm_vcpu *vcpu);
27
7feb6bb8 28/* Transactional Memory Execution related macros */
0c9d8683 29#define IS_TE_ENABLED(vcpu) ((vcpu->arch.sie_block->ecb & ECB_TE))
7feb6bb8
MM
30#define TDB_FORMAT1 1
31#define IS_ITDB_VALID(vcpu) ((*(char *)vcpu->arch.sie_block->itdba == TDB_FORMAT1))
32
78f26131
CB
33extern debug_info_t *kvm_s390_dbf;
34#define KVM_EVENT(d_loglevel, d_string, d_args...)\
35do { \
36 debug_sprintf_event(kvm_s390_dbf, d_loglevel, d_string "\n", \
37 d_args); \
38} while (0)
39
b0c632db
HC
40#define VM_EVENT(d_kvm, d_loglevel, d_string, d_args...)\
41do { \
42 debug_sprintf_event(d_kvm->arch.dbf, d_loglevel, d_string "\n", \
43 d_args); \
44} while (0)
45
46#define VCPU_EVENT(d_vcpu, d_loglevel, d_string, d_args...)\
47do { \
48 debug_sprintf_event(d_vcpu->kvm->arch.dbf, d_loglevel, \
49 "%02d[%016lx-%016lx]: " d_string "\n", d_vcpu->vcpu_id, \
50 d_vcpu->arch.sie_block->gpsw.mask, d_vcpu->arch.sie_block->gpsw.addr,\
51 d_args); \
52} while (0)
ba5c1e9b 53
7a42fdc2 54static inline int is_vcpu_stopped(struct kvm_vcpu *vcpu)
ba5c1e9b 55{
7a42fdc2 56 return atomic_read(&vcpu->arch.sie_block->cpuflags) & CPUSTAT_STOPPED;
ba5c1e9b
CO
57}
58
5ebda316
DH
59static inline int is_vcpu_idle(struct kvm_vcpu *vcpu)
60{
94a15de8 61 return test_bit(vcpu->vcpu_id, vcpu->arch.local_int.float_int->idle_mask);
5ebda316
DH
62}
63
e08b9637
CO
64static inline int kvm_is_ucontrol(struct kvm *kvm)
65{
66#ifdef CONFIG_KVM_S390_UCONTROL
67 if (kvm->arch.gmap)
68 return 0;
69 return 1;
70#else
71 return 0;
72#endif
73}
8d26cf7b 74
fda902cb
MM
75#define GUEST_PREFIX_SHIFT 13
76static inline u32 kvm_s390_get_prefix(struct kvm_vcpu *vcpu)
77{
78 return vcpu->arch.sie_block->prefix << GUEST_PREFIX_SHIFT;
79}
80
8d26cf7b
CB
81static inline void kvm_s390_set_prefix(struct kvm_vcpu *vcpu, u32 prefix)
82{
71db35d2
CB
83 VCPU_EVENT(vcpu, 3, "set prefix of cpu %03u to 0x%x", vcpu->vcpu_id,
84 prefix);
fda902cb 85 vcpu->arch.sie_block->prefix = prefix >> GUEST_PREFIX_SHIFT;
d3d692c8 86 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
2c70fe44 87 kvm_make_request(KVM_REQ_MMU_RELOAD, vcpu);
8d26cf7b
CB
88}
89
27f67f87 90static inline u64 kvm_s390_get_base_disp_s(struct kvm_vcpu *vcpu, u8 *ar)
b1c571a5 91{
0c29b229
CB
92 u32 base2 = vcpu->arch.sie_block->ipb >> 28;
93 u32 disp2 = ((vcpu->arch.sie_block->ipb & 0x0fff0000) >> 16);
b1c571a5 94
8ae04b8f
AY
95 if (ar)
96 *ar = base2;
97
b1c571a5
CH
98 return (base2 ? vcpu->run->s.regs.gprs[base2] : 0) + disp2;
99}
100
101static inline void kvm_s390_get_base_disp_sse(struct kvm_vcpu *vcpu,
8ae04b8f 102 u64 *address1, u64 *address2,
27f67f87 103 u8 *ar_b1, u8 *ar_b2)
b1c571a5 104{
0c29b229
CB
105 u32 base1 = (vcpu->arch.sie_block->ipb & 0xf0000000) >> 28;
106 u32 disp1 = (vcpu->arch.sie_block->ipb & 0x0fff0000) >> 16;
107 u32 base2 = (vcpu->arch.sie_block->ipb & 0xf000) >> 12;
108 u32 disp2 = vcpu->arch.sie_block->ipb & 0x0fff;
b1c571a5
CH
109
110 *address1 = (base1 ? vcpu->run->s.regs.gprs[base1] : 0) + disp1;
111 *address2 = (base2 ? vcpu->run->s.regs.gprs[base2] : 0) + disp2;
8ae04b8f
AY
112
113 if (ar_b1)
114 *ar_b1 = base1;
115 if (ar_b2)
116 *ar_b2 = base2;
b1c571a5
CH
117}
118
69d0d3a3
CB
119static inline void kvm_s390_get_regs_rre(struct kvm_vcpu *vcpu, int *r1, int *r2)
120{
ff7158b2
TH
121 if (r1)
122 *r1 = (vcpu->arch.sie_block->ipb & 0x00f00000) >> 20;
123 if (r2)
124 *r2 = (vcpu->arch.sie_block->ipb & 0x000f0000) >> 16;
69d0d3a3
CB
125}
126
27f67f87 127static inline u64 kvm_s390_get_base_disp_rsy(struct kvm_vcpu *vcpu, u8 *ar)
b1c571a5 128{
0c29b229
CB
129 u32 base2 = vcpu->arch.sie_block->ipb >> 28;
130 u32 disp2 = ((vcpu->arch.sie_block->ipb & 0x0fff0000) >> 16) +
b1c571a5 131 ((vcpu->arch.sie_block->ipb & 0xff00) << 4);
0c29b229
CB
132 /* The displacement is a 20bit _SIGNED_ value */
133 if (disp2 & 0x80000)
134 disp2+=0xfff00000;
b1c571a5 135
8ae04b8f
AY
136 if (ar)
137 *ar = base2;
138
0c29b229 139 return (base2 ? vcpu->run->s.regs.gprs[base2] : 0) + (long)(int)disp2;
b1c571a5
CH
140}
141
27f67f87 142static inline u64 kvm_s390_get_base_disp_rs(struct kvm_vcpu *vcpu, u8 *ar)
b1c571a5 143{
0c29b229
CB
144 u32 base2 = vcpu->arch.sie_block->ipb >> 28;
145 u32 disp2 = ((vcpu->arch.sie_block->ipb & 0x0fff0000) >> 16);
b1c571a5 146
8ae04b8f
AY
147 if (ar)
148 *ar = base2;
149
b1c571a5
CH
150 return (base2 ? vcpu->run->s.regs.gprs[base2] : 0) + disp2;
151}
152
ea828ebf
TH
153/* Set the condition code in the guest program status word */
154static inline void kvm_s390_set_psw_cc(struct kvm_vcpu *vcpu, unsigned long cc)
155{
156 vcpu->arch.sie_block->gpsw.mask &= ~(3UL << 44);
157 vcpu->arch.sie_block->gpsw.mask |= cc << 44;
158}
159
1e8d2424 160/* test availability of facility in a kvm instance */
9d8d5786
MM
161static inline int test_kvm_facility(struct kvm *kvm, unsigned long nr)
162{
c54f0d6a
DH
163 return __test_facility(nr, kvm->arch.model.fac_mask) &&
164 __test_facility(nr, kvm->arch.model.fac_list);
9d8d5786
MM
165}
166
18280d8b
MM
167static inline int set_kvm_facility(u64 *fac_list, unsigned long nr)
168{
169 unsigned char *ptr;
170
171 if (nr >= MAX_FACILITY_BIT)
172 return -EINVAL;
173 ptr = (unsigned char *) fac_list + (nr >> 3);
174 *ptr |= (0x80UL >> (nr & 7));
175 return 0;
176}
177
15c9705f
DH
178static inline int test_kvm_cpu_feat(struct kvm *kvm, unsigned long nr)
179{
180 WARN_ON_ONCE(nr >= KVM_S390_VM_CPU_FEAT_NR_BITS);
181 return test_bit_inv(nr, kvm->arch.cpu_feat);
182}
183
6352e4d2
DH
184/* are cpu states controlled by user space */
185static inline int kvm_s390_user_cpu_state_ctrl(struct kvm *kvm)
186{
187 return kvm->arch.user_cpu_state_ctrl != 0;
188}
189
66933b78 190/* implemented in interrupt.c */
ba5c1e9b 191int kvm_s390_handle_wait(struct kvm_vcpu *vcpu);
0e9c85a5 192void kvm_s390_vcpu_wakeup(struct kvm_vcpu *vcpu);
ca872302 193enum hrtimer_restart kvm_s390_idle_wakeup(struct hrtimer *timer);
614aeab4 194int __must_check kvm_s390_deliver_pending_interrupts(struct kvm_vcpu *vcpu);
2ed10cc1 195void kvm_s390_clear_local_irqs(struct kvm_vcpu *vcpu);
67335e63 196void kvm_s390_clear_float_irqs(struct kvm *kvm);
db4a29cb
HC
197int __must_check kvm_s390_inject_vm(struct kvm *kvm,
198 struct kvm_s390_interrupt *s390int);
199int __must_check kvm_s390_inject_vcpu(struct kvm_vcpu *vcpu,
383d0b05 200 struct kvm_s390_irq *irq);
66933b78
DH
201static inline int kvm_s390_inject_prog_irq(struct kvm_vcpu *vcpu,
202 struct kvm_s390_pgm_info *pgm_info)
203{
204 struct kvm_s390_irq irq = {
205 .type = KVM_S390_PROGRAM_INT,
206 .u.pgm = *pgm_info,
207 };
208
209 return kvm_s390_inject_vcpu(vcpu, &irq);
210}
211static inline int kvm_s390_inject_program_int(struct kvm_vcpu *vcpu, u16 code)
212{
213 struct kvm_s390_irq irq = {
214 .type = KVM_S390_PROGRAM_INT,
215 .u.pgm.code = code,
216 };
217
218 return kvm_s390_inject_vcpu(vcpu, &irq);
219}
fa6b7fe9 220struct kvm_s390_interrupt_info *kvm_s390_get_io_int(struct kvm *kvm,
6d3da241 221 u64 isc_mask, u32 schid);
15462e37
DH
222int kvm_s390_reinject_io_int(struct kvm *kvm,
223 struct kvm_s390_interrupt_info *inti);
841b91c5 224int kvm_s390_mask_adapter(struct kvm *kvm, unsigned int id, bool masked);
453423dc 225
04b41acd 226/* implemented in intercept.c */
0e8bc06a 227u8 kvm_s390_get_ilen(struct kvm_vcpu *vcpu);
04b41acd 228int kvm_handle_sie_intercept(struct kvm_vcpu *vcpu);
0e8bc06a
DH
229static inline void kvm_s390_rewind_psw(struct kvm_vcpu *vcpu, int ilen)
230{
231 struct kvm_s390_sie_block *sie_block = vcpu->arch.sie_block;
232
233 sie_block->gpsw.addr = __rewind_psw(sie_block->gpsw, ilen);
234}
235static inline void kvm_s390_forward_psw(struct kvm_vcpu *vcpu, int ilen)
236{
237 kvm_s390_rewind_psw(vcpu, -ilen);
238}
239static inline void kvm_s390_retry_instr(struct kvm_vcpu *vcpu)
240{
5ffe466c
DH
241 /* don't inject PER events if we re-execute the instruction */
242 vcpu->arch.sie_block->icptstatus &= ~0x02;
0e8bc06a
DH
243 kvm_s390_rewind_psw(vcpu, kvm_s390_get_ilen(vcpu));
244}
04b41acd 245
b7c92f1a
QH
246int handle_sthyi(struct kvm_vcpu *vcpu);
247
453423dc 248/* implemented in priv.c */
a3fb577e 249int is_valid_psw(psw_t *psw);
80cd8763 250int kvm_s390_handle_aa(struct kvm_vcpu *vcpu);
70455a36 251int kvm_s390_handle_b2(struct kvm_vcpu *vcpu);
4e0b1ab7 252int kvm_s390_handle_e3(struct kvm_vcpu *vcpu);
bb25b9ba 253int kvm_s390_handle_e5(struct kvm_vcpu *vcpu);
8c3f61e2 254int kvm_s390_handle_01(struct kvm_vcpu *vcpu);
48a3e950
CH
255int kvm_s390_handle_b9(struct kvm_vcpu *vcpu);
256int kvm_s390_handle_lpsw(struct kvm_vcpu *vcpu);
aba07508 257int kvm_s390_handle_stctl(struct kvm_vcpu *vcpu);
953ed88d
TH
258int kvm_s390_handle_lctl(struct kvm_vcpu *vcpu);
259int kvm_s390_handle_eb(struct kvm_vcpu *vcpu);
730cd632 260int kvm_s390_skey_check_enable(struct kvm_vcpu *vcpu);
5288fbf0 261
a3508fbe
DH
262/* implemented in vsie.c */
263int kvm_s390_handle_vsie(struct kvm_vcpu *vcpu);
adbf1698 264void kvm_s390_vsie_kick(struct kvm_vcpu *vcpu);
a3508fbe
DH
265void kvm_s390_vsie_gmap_notifier(struct gmap *gmap, unsigned long start,
266 unsigned long end);
267void kvm_s390_vsie_init(struct kvm *kvm);
268void kvm_s390_vsie_destroy(struct kvm *kvm);
269
5288fbf0
CB
270/* implemented in sigp.c */
271int kvm_s390_handle_sigp(struct kvm_vcpu *vcpu);
4953919f 272int kvm_s390_handle_sigp_pei(struct kvm_vcpu *vcpu);
5288fbf0
CB
273
274/* implemented in kvm-s390.c */
8fa1696e
CW
275void kvm_s390_set_tod_clock_ext(struct kvm *kvm,
276 const struct kvm_s390_vm_tod_clock *gtod);
25ed1675 277void kvm_s390_set_tod_clock(struct kvm *kvm, u64 tod);
fa576c58 278long kvm_arch_fault_in_page(struct kvm_vcpu *vcpu, gpa_t gpa, int writable);
e879892c
TH
279int kvm_s390_store_status_unloaded(struct kvm_vcpu *vcpu, unsigned long addr);
280int kvm_s390_vcpu_store_status(struct kvm_vcpu *vcpu, unsigned long addr);
6852d7b6
DH
281void kvm_s390_vcpu_start(struct kvm_vcpu *vcpu);
282void kvm_s390_vcpu_stop(struct kvm_vcpu *vcpu);
27406cd5
CB
283void kvm_s390_vcpu_block(struct kvm_vcpu *vcpu);
284void kvm_s390_vcpu_unblock(struct kvm_vcpu *vcpu);
49b99e1e 285void exit_sie(struct kvm_vcpu *vcpu);
8e236546 286void kvm_s390_sync_request(int req, struct kvm_vcpu *vcpu);
b31605c1
DD
287int kvm_s390_vcpu_setup_cmma(struct kvm_vcpu *vcpu);
288void kvm_s390_vcpu_unsetup_cmma(struct kvm_vcpu *vcpu);
9d8d5786
MM
289unsigned long kvm_s390_fac_list_mask_size(void);
290extern unsigned long kvm_s390_fac_list_mask[];
4287f247
DH
291void kvm_s390_set_cpu_timer(struct kvm_vcpu *vcpu, __u64 cputm);
292__u64 kvm_s390_get_cpu_timer(struct kvm_vcpu *vcpu);
b31605c1 293
e28acfea
CB
294/* implemented in diag.c */
295int kvm_s390_handle_diag(struct kvm_vcpu *vcpu);
296
27406cd5
CB
297static inline void kvm_s390_vcpu_block_all(struct kvm *kvm)
298{
299 int i;
300 struct kvm_vcpu *vcpu;
301
302 WARN_ON(!mutex_is_locked(&kvm->lock));
303 kvm_for_each_vcpu(i, vcpu, kvm)
304 kvm_s390_vcpu_block(vcpu);
305}
306
307static inline void kvm_s390_vcpu_unblock_all(struct kvm *kvm)
308{
309 int i;
310 struct kvm_vcpu *vcpu;
311
312 kvm_for_each_vcpu(i, vcpu, kvm)
313 kvm_s390_vcpu_unblock(vcpu);
314}
315
60417fcc
DH
316static inline u64 kvm_s390_get_tod_clock_fast(struct kvm *kvm)
317{
318 u64 rc;
319
320 preempt_disable();
321 rc = get_tod_clock_fast() + kvm->arch.epoch;
322 preempt_enable();
323 return rc;
324}
325
1b0462e5
HC
326/**
327 * kvm_s390_inject_prog_cond - conditionally inject a program check
328 * @vcpu: virtual cpu
329 * @rc: original return/error code
330 *
331 * This function is supposed to be used after regular guest access functions
332 * failed, to conditionally inject a program check to a vcpu. The typical
333 * pattern would look like
334 *
335 * rc = write_guest(vcpu, addr, data, len);
336 * if (rc)
337 * return kvm_s390_inject_prog_cond(vcpu, rc);
338 *
339 * A negative return code from guest access functions implies an internal error
340 * like e.g. out of memory. In these cases no program check should be injected
341 * to the guest.
342 * A positive value implies that an exception happened while accessing a guest's
343 * memory. In this case all data belonging to the corresponding program check
344 * has been stored in vcpu->arch.pgm and can be injected with
345 * kvm_s390_inject_prog_irq().
346 *
347 * Returns: - the original @rc value if @rc was negative (internal error)
348 * - zero if @rc was already zero
349 * - zero or error code from injecting if @rc was positive
350 * (program check injected to @vcpu)
351 */
352static inline int kvm_s390_inject_prog_cond(struct kvm_vcpu *vcpu, int rc)
353{
354 if (rc <= 0)
355 return rc;
356 return kvm_s390_inject_prog_irq(vcpu, &vcpu->arch.pgm);
357}
358
383d0b05
JF
359int s390int_to_s390irq(struct kvm_s390_interrupt *s390int,
360 struct kvm_s390_irq *s390irq);
361
3c038e6b 362/* implemented in interrupt.c */
9a022067 363int kvm_s390_vcpu_has_irq(struct kvm_vcpu *vcpu, int exclude_stop);
3c038e6b 364int psw_extint_disabled(struct kvm_vcpu *vcpu);
841b91c5 365void kvm_s390_destroy_adapters(struct kvm *kvm);
ea5f4969 366int kvm_s390_ext_call_pending(struct kvm_vcpu *vcpu);
84877d93 367extern struct kvm_device_ops kvm_flic_ops;
6cddd432
DH
368int kvm_s390_is_stop_irq_pending(struct kvm_vcpu *vcpu);
369void kvm_s390_clear_stop_irq(struct kvm_vcpu *vcpu);
816c7667
JF
370int kvm_s390_set_irq_state(struct kvm_vcpu *vcpu,
371 void __user *buf, int len);
372int kvm_s390_get_irq_state(struct kvm_vcpu *vcpu,
373 __u8 __user *buf, int len);
3c038e6b 374
27291e21
DH
375/* implemented in guestdbg.c */
376void kvm_s390_backup_guest_per_regs(struct kvm_vcpu *vcpu);
377void kvm_s390_restore_guest_per_regs(struct kvm_vcpu *vcpu);
378void kvm_s390_patch_guest_per_regs(struct kvm_vcpu *vcpu);
379int kvm_s390_import_bp_data(struct kvm_vcpu *vcpu,
380 struct kvm_guest_debug *dbg);
381void kvm_s390_clear_bp_data(struct kvm_vcpu *vcpu);
382void kvm_s390_prepare_debug_exit(struct kvm_vcpu *vcpu);
5ffe466c 383int kvm_s390_handle_per_ifetch_icpt(struct kvm_vcpu *vcpu);
a69cbe81 384int kvm_s390_handle_per_event(struct kvm_vcpu *vcpu);
27291e21 385
60514510
ED
386/* support for Basic/Extended SCA handling */
387static inline union ipte_control *kvm_s390_get_ipte_control(struct kvm *kvm)
388{
bc784cce
ED
389 struct bsca_block *sca = kvm->arch.sca; /* SCA version doesn't matter */
390
391 return &sca->ipte_control;
60514510 392}
a6940674
DH
393static inline int kvm_s390_use_sca_entries(void)
394{
395 /*
396 * Without SIGP interpretation, only SRS interpretation (if available)
397 * might use the entries. By not setting the entries and keeping them
398 * invalid, hardware will not access them but intercept.
399 */
400 return sclp.has_sigpif;
401}
4d62fcc0
QH
402void kvm_s390_reinject_machine_check(struct kvm_vcpu *vcpu,
403 struct mcck_volatile_info *mcck_info);
b0c632db 404#endif