blob: 70b71ac1660e811203f58a286d5f0917821c0ecf [file] [log] [blame]
David Hildenbrand27291e22014-01-23 12:26:52 +01001/*
2 * kvm guest debug support
3 *
4 * Copyright IBM Corp. 2014
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): David Hildenbrand <dahi@linux.vnet.ibm.com>
11 */
12#include <linux/kvm_host.h>
13#include <linux/errno.h>
14#include "kvm-s390.h"
15#include "gaccess.h"
16
17/*
18 * Extends the address range given by *start and *stop to include the address
19 * range starting with estart and the length len. Takes care of overflowing
Adam Buchbinder7eb792b2016-03-04 11:20:04 -080020 * intervals and tries to minimize the overall interval size.
David Hildenbrand27291e22014-01-23 12:26:52 +010021 */
22static void extend_address_range(u64 *start, u64 *stop, u64 estart, int len)
23{
24 u64 estop;
25
26 if (len > 0)
27 len--;
28 else
29 len = 0;
30
31 estop = estart + len;
32
33 /* 0-0 range represents "not set" */
34 if ((*start == 0) && (*stop == 0)) {
35 *start = estart;
36 *stop = estop;
37 } else if (*start <= *stop) {
38 /* increase the existing range */
39 if (estart < *start)
40 *start = estart;
41 if (estop > *stop)
42 *stop = estop;
43 } else {
44 /* "overflowing" interval, whereby *stop > *start */
45 if (estart <= *stop) {
46 if (estop > *stop)
47 *stop = estop;
48 } else if (estop > *start) {
49 if (estart < *start)
50 *start = estart;
51 }
52 /* minimize the range */
53 else if ((estop - *stop) < (*start - estart))
54 *stop = estop;
55 else
56 *start = estart;
57 }
58}
59
60#define MAX_INST_SIZE 6
61
62static void enable_all_hw_bp(struct kvm_vcpu *vcpu)
63{
64 unsigned long start, len;
65 u64 *cr9 = &vcpu->arch.sie_block->gcr[9];
66 u64 *cr10 = &vcpu->arch.sie_block->gcr[10];
67 u64 *cr11 = &vcpu->arch.sie_block->gcr[11];
68 int i;
69
70 if (vcpu->arch.guestdbg.nr_hw_bp <= 0 ||
71 vcpu->arch.guestdbg.hw_bp_info == NULL)
72 return;
73
74 /*
Adam Buchbinder7eb792b2016-03-04 11:20:04 -080075 * If the guest is not interested in branching events, we can safely
David Hildenbrand27291e22014-01-23 12:26:52 +010076 * limit them to the PER address range.
77 */
78 if (!(*cr9 & PER_EVENT_BRANCH))
79 *cr9 |= PER_CONTROL_BRANCH_ADDRESS;
80 *cr9 |= PER_EVENT_IFETCH | PER_EVENT_BRANCH;
81
82 for (i = 0; i < vcpu->arch.guestdbg.nr_hw_bp; i++) {
83 start = vcpu->arch.guestdbg.hw_bp_info[i].addr;
84 len = vcpu->arch.guestdbg.hw_bp_info[i].len;
85
86 /*
87 * The instruction in front of the desired bp has to
88 * report instruction-fetching events
89 */
90 if (start < MAX_INST_SIZE) {
91 len += start;
92 start = 0;
93 } else {
94 start -= MAX_INST_SIZE;
95 len += MAX_INST_SIZE;
96 }
97
98 extend_address_range(cr10, cr11, start, len);
99 }
100}
101
102static void enable_all_hw_wp(struct kvm_vcpu *vcpu)
103{
104 unsigned long start, len;
105 u64 *cr9 = &vcpu->arch.sie_block->gcr[9];
106 u64 *cr10 = &vcpu->arch.sie_block->gcr[10];
107 u64 *cr11 = &vcpu->arch.sie_block->gcr[11];
108 int i;
109
110 if (vcpu->arch.guestdbg.nr_hw_wp <= 0 ||
111 vcpu->arch.guestdbg.hw_wp_info == NULL)
112 return;
113
114 /* if host uses storage alternation for special address
115 * spaces, enable all events and give all to the guest */
116 if (*cr9 & PER_EVENT_STORE && *cr9 & PER_CONTROL_ALTERATION) {
117 *cr9 &= ~PER_CONTROL_ALTERATION;
118 *cr10 = 0;
Heiko Carstens9cb1cce2016-01-18 13:12:19 +0100119 *cr11 = -1UL;
David Hildenbrand27291e22014-01-23 12:26:52 +0100120 } else {
121 *cr9 &= ~PER_CONTROL_ALTERATION;
122 *cr9 |= PER_EVENT_STORE;
123
124 for (i = 0; i < vcpu->arch.guestdbg.nr_hw_wp; i++) {
125 start = vcpu->arch.guestdbg.hw_wp_info[i].addr;
126 len = vcpu->arch.guestdbg.hw_wp_info[i].len;
127
128 extend_address_range(cr10, cr11, start, len);
129 }
130 }
131}
132
133void kvm_s390_backup_guest_per_regs(struct kvm_vcpu *vcpu)
134{
135 vcpu->arch.guestdbg.cr0 = vcpu->arch.sie_block->gcr[0];
136 vcpu->arch.guestdbg.cr9 = vcpu->arch.sie_block->gcr[9];
137 vcpu->arch.guestdbg.cr10 = vcpu->arch.sie_block->gcr[10];
138 vcpu->arch.guestdbg.cr11 = vcpu->arch.sie_block->gcr[11];
139}
140
141void kvm_s390_restore_guest_per_regs(struct kvm_vcpu *vcpu)
142{
143 vcpu->arch.sie_block->gcr[0] = vcpu->arch.guestdbg.cr0;
144 vcpu->arch.sie_block->gcr[9] = vcpu->arch.guestdbg.cr9;
145 vcpu->arch.sie_block->gcr[10] = vcpu->arch.guestdbg.cr10;
146 vcpu->arch.sie_block->gcr[11] = vcpu->arch.guestdbg.cr11;
147}
148
149void kvm_s390_patch_guest_per_regs(struct kvm_vcpu *vcpu)
150{
151 /*
152 * TODO: if guest psw has per enabled, otherwise 0s!
153 * This reduces the amount of reported events.
154 * Need to intercept all psw changes!
155 */
156
157 if (guestdbg_sstep_enabled(vcpu)) {
David Hildenbrandf71d0dc2014-03-18 10:06:14 +0100158 /* disable timer (clock-comparator) interrupts */
159 vcpu->arch.sie_block->gcr[0] &= ~0x800ul;
David Hildenbrand27291e22014-01-23 12:26:52 +0100160 vcpu->arch.sie_block->gcr[9] |= PER_EVENT_IFETCH;
161 vcpu->arch.sie_block->gcr[10] = 0;
Heiko Carstens9cb1cce2016-01-18 13:12:19 +0100162 vcpu->arch.sie_block->gcr[11] = -1UL;
David Hildenbrand27291e22014-01-23 12:26:52 +0100163 }
164
165 if (guestdbg_hw_bp_enabled(vcpu)) {
166 enable_all_hw_bp(vcpu);
167 enable_all_hw_wp(vcpu);
168 }
169
170 /* TODO: Instruction-fetching-nullification not allowed for now */
171 if (vcpu->arch.sie_block->gcr[9] & PER_EVENT_NULLIFICATION)
172 vcpu->arch.sie_block->gcr[9] &= ~PER_EVENT_NULLIFICATION;
173}
174
175#define MAX_WP_SIZE 100
176
177static int __import_wp_info(struct kvm_vcpu *vcpu,
178 struct kvm_hw_breakpoint *bp_data,
179 struct kvm_hw_wp_info_arch *wp_info)
180{
181 int ret = 0;
182 wp_info->len = bp_data->len;
183 wp_info->addr = bp_data->addr;
184 wp_info->phys_addr = bp_data->phys_addr;
185 wp_info->old_data = NULL;
186
187 if (wp_info->len < 0 || wp_info->len > MAX_WP_SIZE)
188 return -EINVAL;
189
190 wp_info->old_data = kmalloc(bp_data->len, GFP_KERNEL);
191 if (!wp_info->old_data)
192 return -ENOMEM;
193 /* try to backup the original value */
Alexander Yarygin1f289a82015-03-03 19:05:43 +0300194 ret = read_guest_abs(vcpu, wp_info->phys_addr, wp_info->old_data,
195 wp_info->len);
David Hildenbrand27291e22014-01-23 12:26:52 +0100196 if (ret) {
197 kfree(wp_info->old_data);
198 wp_info->old_data = NULL;
199 }
200
201 return ret;
202}
203
204#define MAX_BP_COUNT 50
205
206int kvm_s390_import_bp_data(struct kvm_vcpu *vcpu,
207 struct kvm_guest_debug *dbg)
208{
Markus Elfringa1708a22016-08-24 19:45:23 +0200209 int ret = 0, nr_wp = 0, nr_bp = 0, i;
David Hildenbrand27291e22014-01-23 12:26:52 +0100210 struct kvm_hw_breakpoint *bp_data = NULL;
211 struct kvm_hw_wp_info_arch *wp_info = NULL;
212 struct kvm_hw_bp_info_arch *bp_info = NULL;
213
214 if (dbg->arch.nr_hw_bp <= 0 || !dbg->arch.hw_bp)
215 return 0;
216 else if (dbg->arch.nr_hw_bp > MAX_BP_COUNT)
217 return -EINVAL;
218
Markus Elfringa1708a22016-08-24 19:45:23 +0200219 bp_data = kmalloc_array(dbg->arch.nr_hw_bp,
220 sizeof(*bp_data),
221 GFP_KERNEL);
David Hildenbrand27291e22014-01-23 12:26:52 +0100222 if (!bp_data) {
223 ret = -ENOMEM;
224 goto error;
225 }
226
Markus Elfringa1708a22016-08-24 19:45:23 +0200227 if (copy_from_user(bp_data,
228 dbg->arch.hw_bp,
229 sizeof(*bp_data) * dbg->arch.nr_hw_bp)) {
Dan Carpenterfcc9aec2014-05-03 23:18:11 +0300230 ret = -EFAULT;
David Hildenbrand27291e22014-01-23 12:26:52 +0100231 goto error;
Dan Carpenterfcc9aec2014-05-03 23:18:11 +0300232 }
David Hildenbrand27291e22014-01-23 12:26:52 +0100233
234 for (i = 0; i < dbg->arch.nr_hw_bp; i++) {
235 switch (bp_data[i].type) {
236 case KVM_HW_WP_WRITE:
237 nr_wp++;
238 break;
239 case KVM_HW_BP:
240 nr_bp++;
241 break;
242 default:
243 break;
244 }
245 }
246
Markus Elfringa1708a22016-08-24 19:45:23 +0200247 if (nr_wp > 0) {
248 wp_info = kmalloc_array(nr_wp,
249 sizeof(*wp_info),
250 GFP_KERNEL);
David Hildenbrand27291e22014-01-23 12:26:52 +0100251 if (!wp_info) {
252 ret = -ENOMEM;
253 goto error;
254 }
255 }
Markus Elfringa1708a22016-08-24 19:45:23 +0200256 if (nr_bp > 0) {
257 bp_info = kmalloc_array(nr_bp,
258 sizeof(*bp_info),
259 GFP_KERNEL);
David Hildenbrand27291e22014-01-23 12:26:52 +0100260 if (!bp_info) {
261 ret = -ENOMEM;
262 goto error;
263 }
264 }
265
266 for (nr_wp = 0, nr_bp = 0, i = 0; i < dbg->arch.nr_hw_bp; i++) {
267 switch (bp_data[i].type) {
268 case KVM_HW_WP_WRITE:
269 ret = __import_wp_info(vcpu, &bp_data[i],
270 &wp_info[nr_wp]);
271 if (ret)
272 goto error;
273 nr_wp++;
274 break;
275 case KVM_HW_BP:
276 bp_info[nr_bp].len = bp_data[i].len;
277 bp_info[nr_bp].addr = bp_data[i].addr;
278 nr_bp++;
279 break;
280 }
281 }
282
283 vcpu->arch.guestdbg.nr_hw_bp = nr_bp;
284 vcpu->arch.guestdbg.hw_bp_info = bp_info;
285 vcpu->arch.guestdbg.nr_hw_wp = nr_wp;
286 vcpu->arch.guestdbg.hw_wp_info = wp_info;
287 return 0;
288error:
289 kfree(bp_data);
290 kfree(wp_info);
291 kfree(bp_info);
292 return ret;
293}
294
295void kvm_s390_clear_bp_data(struct kvm_vcpu *vcpu)
296{
297 int i;
298 struct kvm_hw_wp_info_arch *hw_wp_info = NULL;
299
300 for (i = 0; i < vcpu->arch.guestdbg.nr_hw_wp; i++) {
301 hw_wp_info = &vcpu->arch.guestdbg.hw_wp_info[i];
302 kfree(hw_wp_info->old_data);
303 hw_wp_info->old_data = NULL;
304 }
305 kfree(vcpu->arch.guestdbg.hw_wp_info);
306 vcpu->arch.guestdbg.hw_wp_info = NULL;
307
308 kfree(vcpu->arch.guestdbg.hw_bp_info);
309 vcpu->arch.guestdbg.hw_bp_info = NULL;
310
311 vcpu->arch.guestdbg.nr_hw_wp = 0;
312 vcpu->arch.guestdbg.nr_hw_bp = 0;
313}
314
315static inline int in_addr_range(u64 addr, u64 a, u64 b)
316{
317 if (a <= b)
318 return (addr >= a) && (addr <= b);
319 else
320 /* "overflowing" interval */
321 return (addr <= a) && (addr >= b);
322}
323
324#define end_of_range(bp_info) (bp_info->addr + bp_info->len - 1)
325
326static struct kvm_hw_bp_info_arch *find_hw_bp(struct kvm_vcpu *vcpu,
327 unsigned long addr)
328{
329 struct kvm_hw_bp_info_arch *bp_info = vcpu->arch.guestdbg.hw_bp_info;
330 int i;
331
332 if (vcpu->arch.guestdbg.nr_hw_bp == 0)
333 return NULL;
334
335 for (i = 0; i < vcpu->arch.guestdbg.nr_hw_bp; i++) {
336 /* addr is directly the start or in the range of a bp */
337 if (addr == bp_info->addr)
338 goto found;
339 if (bp_info->len > 0 &&
340 in_addr_range(addr, bp_info->addr, end_of_range(bp_info)))
341 goto found;
342
343 bp_info++;
344 }
345
346 return NULL;
347found:
348 return bp_info;
349}
350
351static struct kvm_hw_wp_info_arch *any_wp_changed(struct kvm_vcpu *vcpu)
352{
353 int i;
354 struct kvm_hw_wp_info_arch *wp_info = NULL;
355 void *temp = NULL;
356
357 if (vcpu->arch.guestdbg.nr_hw_wp == 0)
358 return NULL;
359
360 for (i = 0; i < vcpu->arch.guestdbg.nr_hw_wp; i++) {
361 wp_info = &vcpu->arch.guestdbg.hw_wp_info[i];
362 if (!wp_info || !wp_info->old_data || wp_info->len <= 0)
363 continue;
364
365 temp = kmalloc(wp_info->len, GFP_KERNEL);
366 if (!temp)
367 continue;
368
369 /* refetch the wp data and compare it to the old value */
Alexander Yarygin1f289a82015-03-03 19:05:43 +0300370 if (!read_guest_abs(vcpu, wp_info->phys_addr, temp,
371 wp_info->len)) {
David Hildenbrand27291e22014-01-23 12:26:52 +0100372 if (memcmp(temp, wp_info->old_data, wp_info->len)) {
373 kfree(temp);
374 return wp_info;
375 }
376 }
377 kfree(temp);
378 temp = NULL;
379 }
380
381 return NULL;
382}
383
384void kvm_s390_prepare_debug_exit(struct kvm_vcpu *vcpu)
385{
386 vcpu->run->exit_reason = KVM_EXIT_DEBUG;
387 vcpu->guest_debug &= ~KVM_GUESTDBG_EXIT_PENDING;
388}
389
David Hildenbrandb1ffffb2016-05-27 15:24:33 +0200390#define PER_CODE_MASK (PER_EVENT_MASK >> 24)
391#define PER_CODE_BRANCH (PER_EVENT_BRANCH >> 24)
392#define PER_CODE_IFETCH (PER_EVENT_IFETCH >> 24)
393#define PER_CODE_STORE (PER_EVENT_STORE >> 24)
394#define PER_CODE_STORE_REAL (PER_EVENT_STORE_REAL >> 24)
395
David Hildenbrand27291e22014-01-23 12:26:52 +0100396#define per_bp_event(code) \
David Hildenbrandb1ffffb2016-05-27 15:24:33 +0200397 (code & (PER_CODE_IFETCH | PER_CODE_BRANCH))
David Hildenbrand27291e22014-01-23 12:26:52 +0100398#define per_write_wp_event(code) \
David Hildenbrandb1ffffb2016-05-27 15:24:33 +0200399 (code & (PER_CODE_STORE | PER_CODE_STORE_REAL))
David Hildenbrand27291e22014-01-23 12:26:52 +0100400
401static int debug_exit_required(struct kvm_vcpu *vcpu)
402{
David Hildenbrandb1ffffb2016-05-27 15:24:33 +0200403 u8 perc = vcpu->arch.sie_block->perc;
David Hildenbrand27291e22014-01-23 12:26:52 +0100404 struct kvm_debug_exit_arch *debug_exit = &vcpu->run->debug.arch;
405 struct kvm_hw_wp_info_arch *wp_info = NULL;
406 struct kvm_hw_bp_info_arch *bp_info = NULL;
407 unsigned long addr = vcpu->arch.sie_block->gpsw.addr;
408 unsigned long peraddr = vcpu->arch.sie_block->peraddr;
409
410 if (guestdbg_hw_bp_enabled(vcpu)) {
411 if (per_write_wp_event(perc) &&
412 vcpu->arch.guestdbg.nr_hw_wp > 0) {
413 wp_info = any_wp_changed(vcpu);
414 if (wp_info) {
415 debug_exit->addr = wp_info->addr;
416 debug_exit->type = KVM_HW_WP_WRITE;
417 goto exit_required;
418 }
419 }
420 if (per_bp_event(perc) &&
421 vcpu->arch.guestdbg.nr_hw_bp > 0) {
422 bp_info = find_hw_bp(vcpu, addr);
423 /* remove duplicate events if PC==PER address */
424 if (bp_info && (addr != peraddr)) {
425 debug_exit->addr = addr;
426 debug_exit->type = KVM_HW_BP;
427 vcpu->arch.guestdbg.last_bp = addr;
428 goto exit_required;
429 }
430 /* breakpoint missed */
431 bp_info = find_hw_bp(vcpu, peraddr);
432 if (bp_info && vcpu->arch.guestdbg.last_bp != peraddr) {
433 debug_exit->addr = peraddr;
434 debug_exit->type = KVM_HW_BP;
435 goto exit_required;
436 }
437 }
438 }
439 if (guestdbg_sstep_enabled(vcpu) && per_bp_event(perc)) {
440 debug_exit->addr = addr;
441 debug_exit->type = KVM_SINGLESTEP;
442 goto exit_required;
443 }
444
445 return 0;
446exit_required:
447 return 1;
448}
449
450#define guest_per_enabled(vcpu) \
451 (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PER)
452
David Hildenbrand5ffe4662016-05-24 12:10:27 +0200453int kvm_s390_handle_per_ifetch_icpt(struct kvm_vcpu *vcpu)
454{
455 const u8 ilen = kvm_s390_get_ilen(vcpu);
456 struct kvm_s390_pgm_info pgm_info = {
457 .code = PGM_PER,
David Hildenbrandb1ffffb2016-05-27 15:24:33 +0200458 .per_code = PER_CODE_IFETCH,
David Hildenbrand5ffe4662016-05-24 12:10:27 +0200459 .per_address = __rewind_psw(vcpu->arch.sie_block->gpsw, ilen),
460 };
461
462 /*
463 * The PSW points to the next instruction, therefore the intercepted
464 * instruction generated a PER i-fetch event. PER address therefore
465 * points at the previous PSW address (could be an EXECUTE function).
466 */
467 return kvm_s390_inject_prog_irq(vcpu, &pgm_info);
468}
469
David Hildenbrand27291e22014-01-23 12:26:52 +0100470static void filter_guest_per_event(struct kvm_vcpu *vcpu)
471{
David Hildenbrandb1ffffb2016-05-27 15:24:33 +0200472 const u8 perc = vcpu->arch.sie_block->perc;
David Hildenbrand27291e22014-01-23 12:26:52 +0100473 u64 peraddr = vcpu->arch.sie_block->peraddr;
474 u64 addr = vcpu->arch.sie_block->gpsw.addr;
475 u64 cr9 = vcpu->arch.sie_block->gcr[9];
476 u64 cr10 = vcpu->arch.sie_block->gcr[10];
477 u64 cr11 = vcpu->arch.sie_block->gcr[11];
478 /* filter all events, demanded by the guest */
David Hildenbrandb1ffffb2016-05-27 15:24:33 +0200479 u8 guest_perc = perc & (cr9 >> 24) & PER_CODE_MASK;
David Hildenbrand27291e22014-01-23 12:26:52 +0100480
481 if (!guest_per_enabled(vcpu))
482 guest_perc = 0;
483
484 /* filter "successful-branching" events */
David Hildenbrandb1ffffb2016-05-27 15:24:33 +0200485 if (guest_perc & PER_CODE_BRANCH &&
David Hildenbrand27291e22014-01-23 12:26:52 +0100486 cr9 & PER_CONTROL_BRANCH_ADDRESS &&
487 !in_addr_range(addr, cr10, cr11))
David Hildenbrandb1ffffb2016-05-27 15:24:33 +0200488 guest_perc &= ~PER_CODE_BRANCH;
David Hildenbrand27291e22014-01-23 12:26:52 +0100489
490 /* filter "instruction-fetching" events */
David Hildenbrandb1ffffb2016-05-27 15:24:33 +0200491 if (guest_perc & PER_CODE_IFETCH &&
David Hildenbrand27291e22014-01-23 12:26:52 +0100492 !in_addr_range(peraddr, cr10, cr11))
David Hildenbrandb1ffffb2016-05-27 15:24:33 +0200493 guest_perc &= ~PER_CODE_IFETCH;
David Hildenbrand27291e22014-01-23 12:26:52 +0100494
495 /* All other PER events will be given to the guest */
Andrea Gelmini960cb302016-05-21 14:08:55 +0200496 /* TODO: Check altered address/address space */
David Hildenbrand27291e22014-01-23 12:26:52 +0100497
David Hildenbrandb1ffffb2016-05-27 15:24:33 +0200498 vcpu->arch.sie_block->perc = guest_perc;
David Hildenbrand27291e22014-01-23 12:26:52 +0100499
500 if (!guest_perc)
501 vcpu->arch.sie_block->iprcc &= ~PGM_PER;
502}
503
David Hildenbrand0df30ab2015-06-23 22:49:36 +0200504#define pssec(vcpu) (vcpu->arch.sie_block->gcr[1] & _ASCE_SPACE_SWITCH)
505#define hssec(vcpu) (vcpu->arch.sie_block->gcr[13] & _ASCE_SPACE_SWITCH)
506#define old_ssec(vcpu) ((vcpu->arch.sie_block->tecmc >> 31) & 0x1)
507#define old_as_is_home(vcpu) !(vcpu->arch.sie_block->tecmc & 0xffff)
508
David Hildenbrand27291e22014-01-23 12:26:52 +0100509void kvm_s390_handle_per_event(struct kvm_vcpu *vcpu)
510{
David Hildenbrand0df30ab2015-06-23 22:49:36 +0200511 int new_as;
512
David Hildenbrand27291e22014-01-23 12:26:52 +0100513 if (debug_exit_required(vcpu))
514 vcpu->guest_debug |= KVM_GUESTDBG_EXIT_PENDING;
515
516 filter_guest_per_event(vcpu);
David Hildenbrand0df30ab2015-06-23 22:49:36 +0200517
518 /*
519 * Only RP, SAC, SACF, PT, PTI, PR, PC instructions can trigger
520 * a space-switch event. PER events enforce space-switch events
521 * for these instructions. So if no PER event for the guest is left,
522 * we might have to filter the space-switch element out, too.
523 */
524 if (vcpu->arch.sie_block->iprcc == PGM_SPACE_SWITCH) {
525 vcpu->arch.sie_block->iprcc = 0;
526 new_as = psw_bits(vcpu->arch.sie_block->gpsw).as;
527
528 /*
529 * If the AS changed from / to home, we had RP, SAC or SACF
530 * instruction. Check primary and home space-switch-event
531 * controls. (theoretically home -> home produced no event)
532 */
533 if (((new_as == PSW_AS_HOME) ^ old_as_is_home(vcpu)) &&
534 (pssec(vcpu) || hssec(vcpu)))
535 vcpu->arch.sie_block->iprcc = PGM_SPACE_SWITCH;
536
537 /*
538 * PT, PTI, PR, PC instruction operate on primary AS only. Check
539 * if the primary-space-switch-event control was or got set.
540 */
541 if (new_as == PSW_AS_PRIMARY && !old_as_is_home(vcpu) &&
542 (pssec(vcpu) || old_ssec(vcpu)))
543 vcpu->arch.sie_block->iprcc = PGM_SPACE_SWITCH;
544 }
David Hildenbrand27291e22014-01-23 12:26:52 +0100545}