2 * QEMU S390x KVM implementation
4 * Copyright (c) 2009 Alexander Graf <agraf@suse.de>
5 * Copyright IBM Corp. 2012
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * Contributions after 2012-10-29 are licensed under the terms of the
18 * GNU GPL, version 2 or (at your option) any later version.
20 * You should have received a copy of the GNU (Lesser) General Public
21 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
24 #include <sys/types.h>
25 #include <sys/ioctl.h>
28 #include <linux/kvm.h>
29 #include <asm/ptrace.h>
31 #include "qemu-common.h"
32 #include "qemu/timer.h"
33 #include "sysemu/sysemu.h"
34 #include "sysemu/kvm.h"
36 #include "sysemu/device_tree.h"
37 #include "qapi/qmp/qjson.h"
38 #include "monitor/monitor.h"
41 /* #define DEBUG_KVM */
44 #define DPRINTF(fmt, ...) \
45 do { fprintf(stderr, fmt, ## __VA_ARGS__); } while (0)
47 #define DPRINTF(fmt, ...) \
51 #define IPA0_DIAG 0x8300
52 #define IPA0_SIGP 0xae00
53 #define IPA0_B2 0xb200
54 #define IPA0_B9 0xb900
55 #define IPA0_EB 0xeb00
57 #define PRIV_B2_SCLP_CALL 0x20
58 #define PRIV_B2_CSCH 0x30
59 #define PRIV_B2_HSCH 0x31
60 #define PRIV_B2_MSCH 0x32
61 #define PRIV_B2_SSCH 0x33
62 #define PRIV_B2_STSCH 0x34
63 #define PRIV_B2_TSCH 0x35
64 #define PRIV_B2_TPI 0x36
65 #define PRIV_B2_SAL 0x37
66 #define PRIV_B2_RSCH 0x38
67 #define PRIV_B2_STCRW 0x39
68 #define PRIV_B2_STCPS 0x3a
69 #define PRIV_B2_RCHP 0x3b
70 #define PRIV_B2_SCHM 0x3c
71 #define PRIV_B2_CHSC 0x5f
72 #define PRIV_B2_SIGA 0x74
73 #define PRIV_B2_XSCH 0x76
75 #define PRIV_EB_SQBS 0x8a
77 #define PRIV_B9_EQBS 0x9c
79 #define DIAG_IPL 0x308
80 #define DIAG_KVM_HYPERCALL 0x500
81 #define DIAG_KVM_BREAKPOINT 0x501
83 #define ICPT_INSTRUCTION 0x04
84 #define ICPT_WAITPSW 0x1c
85 #define ICPT_SOFT_INTERCEPT 0x24
86 #define ICPT_CPU_STOP 0x28
89 const KVMCapabilityInfo kvm_arch_required_capabilities
[] = {
93 static int cap_sync_regs
;
94 static int cap_async_pf
;
96 static void *legacy_s390_alloc(size_t size
);
98 int kvm_arch_init(KVMState
*s
)
100 cap_sync_regs
= kvm_check_extension(s
, KVM_CAP_SYNC_REGS
);
101 cap_async_pf
= kvm_check_extension(s
, KVM_CAP_ASYNC_PF
);
102 if (!kvm_check_extension(s
, KVM_CAP_S390_GMAP
)
103 || !kvm_check_extension(s
, KVM_CAP_S390_COW
)) {
104 phys_mem_set_alloc(legacy_s390_alloc
);
109 unsigned long kvm_arch_vcpu_id(CPUState
*cpu
)
111 return cpu
->cpu_index
;
114 int kvm_arch_init_vcpu(CPUState
*cpu
)
116 /* nothing todo yet */
120 void kvm_arch_reset_vcpu(CPUState
*cpu
)
122 /* The initial reset call is needed here to reset in-kernel
123 * vcpu data that we can't access directly from QEMU
124 * (i.e. with older kernels which don't support sync_regs/ONE_REG).
125 * Before this ioctl cpu_synchronize_state() is called in common kvm
127 if (kvm_vcpu_ioctl(cpu
, KVM_S390_INITIAL_RESET
, NULL
)) {
128 perror("Can't reset vcpu\n");
132 static int kvm_set_one_reg(CPUState
*cs
, uint64_t id
, void *source
)
134 struct kvm_one_reg reg
;
138 reg
.addr
= (uint64_t) source
;
139 r
= kvm_vcpu_ioctl(cs
, KVM_SET_ONE_REG
, ®
);
141 trace_kvm_failed_reg_set(id
, strerror(errno
));
146 static int kvm_get_one_reg(CPUState
*cs
, uint64_t id
, void *target
)
148 struct kvm_one_reg reg
;
152 reg
.addr
= (uint64_t) target
;
153 r
= kvm_vcpu_ioctl(cs
, KVM_GET_ONE_REG
, ®
);
155 trace_kvm_failed_reg_get(id
, strerror(errno
));
161 int kvm_arch_put_registers(CPUState
*cs
, int level
)
163 S390CPU
*cpu
= S390_CPU(cs
);
164 CPUS390XState
*env
= &cpu
->env
;
165 struct kvm_sregs sregs
;
166 struct kvm_regs regs
;
170 /* always save the PSW and the GPRS*/
171 cs
->kvm_run
->psw_addr
= env
->psw
.addr
;
172 cs
->kvm_run
->psw_mask
= env
->psw
.mask
;
174 if (cap_sync_regs
&& cs
->kvm_run
->kvm_valid_regs
& KVM_SYNC_GPRS
) {
175 for (i
= 0; i
< 16; i
++) {
176 cs
->kvm_run
->s
.regs
.gprs
[i
] = env
->regs
[i
];
177 cs
->kvm_run
->kvm_dirty_regs
|= KVM_SYNC_GPRS
;
180 for (i
= 0; i
< 16; i
++) {
181 regs
.gprs
[i
] = env
->regs
[i
];
183 r
= kvm_vcpu_ioctl(cs
, KVM_SET_REGS
, ®s
);
189 /* Do we need to save more than that? */
190 if (level
== KVM_PUT_RUNTIME_STATE
) {
195 * These ONE_REGS are not protected by a capability. As they are only
196 * necessary for migration we just trace a possible error, but don't
197 * return with an error return code.
199 kvm_set_one_reg(cs
, KVM_REG_S390_CPU_TIMER
, &env
->cputm
);
200 kvm_set_one_reg(cs
, KVM_REG_S390_CLOCK_COMP
, &env
->ckc
);
201 kvm_set_one_reg(cs
, KVM_REG_S390_TODPR
, &env
->todpr
);
202 kvm_set_one_reg(cs
, KVM_REG_S390_GBEA
, &env
->gbea
);
203 kvm_set_one_reg(cs
, KVM_REG_S390_PP
, &env
->pp
);
206 r
= kvm_set_one_reg(cs
, KVM_REG_S390_PFTOKEN
, &env
->pfault_token
);
210 r
= kvm_set_one_reg(cs
, KVM_REG_S390_PFCOMPARE
, &env
->pfault_compare
);
214 r
= kvm_set_one_reg(cs
, KVM_REG_S390_PFSELECT
, &env
->pfault_select
);
221 cs
->kvm_run
->kvm_valid_regs
& KVM_SYNC_ACRS
&&
222 cs
->kvm_run
->kvm_valid_regs
& KVM_SYNC_CRS
) {
223 for (i
= 0; i
< 16; i
++) {
224 cs
->kvm_run
->s
.regs
.acrs
[i
] = env
->aregs
[i
];
225 cs
->kvm_run
->s
.regs
.crs
[i
] = env
->cregs
[i
];
227 cs
->kvm_run
->kvm_dirty_regs
|= KVM_SYNC_ACRS
;
228 cs
->kvm_run
->kvm_dirty_regs
|= KVM_SYNC_CRS
;
230 for (i
= 0; i
< 16; i
++) {
231 sregs
.acrs
[i
] = env
->aregs
[i
];
232 sregs
.crs
[i
] = env
->cregs
[i
];
234 r
= kvm_vcpu_ioctl(cs
, KVM_SET_SREGS
, &sregs
);
240 /* Finally the prefix */
241 if (cap_sync_regs
&& cs
->kvm_run
->kvm_valid_regs
& KVM_SYNC_PREFIX
) {
242 cs
->kvm_run
->s
.regs
.prefix
= env
->psa
;
243 cs
->kvm_run
->kvm_dirty_regs
|= KVM_SYNC_PREFIX
;
245 /* prefix is only supported via sync regs */
250 int kvm_arch_get_registers(CPUState
*cs
)
252 S390CPU
*cpu
= S390_CPU(cs
);
253 CPUS390XState
*env
= &cpu
->env
;
254 struct kvm_sregs sregs
;
255 struct kvm_regs regs
;
259 env
->psw
.addr
= cs
->kvm_run
->psw_addr
;
260 env
->psw
.mask
= cs
->kvm_run
->psw_mask
;
263 if (cap_sync_regs
&& cs
->kvm_run
->kvm_valid_regs
& KVM_SYNC_GPRS
) {
264 for (i
= 0; i
< 16; i
++) {
265 env
->regs
[i
] = cs
->kvm_run
->s
.regs
.gprs
[i
];
268 r
= kvm_vcpu_ioctl(cs
, KVM_GET_REGS
, ®s
);
272 for (i
= 0; i
< 16; i
++) {
273 env
->regs
[i
] = regs
.gprs
[i
];
277 /* The ACRS and CRS */
279 cs
->kvm_run
->kvm_valid_regs
& KVM_SYNC_ACRS
&&
280 cs
->kvm_run
->kvm_valid_regs
& KVM_SYNC_CRS
) {
281 for (i
= 0; i
< 16; i
++) {
282 env
->aregs
[i
] = cs
->kvm_run
->s
.regs
.acrs
[i
];
283 env
->cregs
[i
] = cs
->kvm_run
->s
.regs
.crs
[i
];
286 r
= kvm_vcpu_ioctl(cs
, KVM_GET_SREGS
, &sregs
);
290 for (i
= 0; i
< 16; i
++) {
291 env
->aregs
[i
] = sregs
.acrs
[i
];
292 env
->cregs
[i
] = sregs
.crs
[i
];
297 if (cap_sync_regs
&& cs
->kvm_run
->kvm_valid_regs
& KVM_SYNC_PREFIX
) {
298 env
->psa
= cs
->kvm_run
->s
.regs
.prefix
;
302 * These ONE_REGS are not protected by a capability. As they are only
303 * necessary for migration we just trace a possible error, but don't
304 * return with an error return code.
306 kvm_get_one_reg(cs
, KVM_REG_S390_CPU_TIMER
, &env
->cputm
);
307 kvm_get_one_reg(cs
, KVM_REG_S390_CLOCK_COMP
, &env
->ckc
);
308 kvm_get_one_reg(cs
, KVM_REG_S390_TODPR
, &env
->todpr
);
309 kvm_get_one_reg(cs
, KVM_REG_S390_GBEA
, &env
->gbea
);
310 kvm_get_one_reg(cs
, KVM_REG_S390_PP
, &env
->pp
);
313 r
= kvm_get_one_reg(cs
, KVM_REG_S390_PFTOKEN
, &env
->pfault_token
);
317 r
= kvm_get_one_reg(cs
, KVM_REG_S390_PFCOMPARE
, &env
->pfault_compare
);
321 r
= kvm_get_one_reg(cs
, KVM_REG_S390_PFSELECT
, &env
->pfault_select
);
331 * Legacy layout for s390:
332 * Older S390 KVM requires the topmost vma of the RAM to be
333 * smaller than an system defined value, which is at least 256GB.
334 * Larger systems have larger values. We put the guest between
335 * the end of data segment (system break) and this value. We
336 * use 32GB as a base to have enough room for the system break
337 * to grow. We also have to use MAP parameters that avoid
338 * read-only mapping of guest pages.
340 static void *legacy_s390_alloc(size_t size
)
344 mem
= mmap((void *) 0x800000000ULL
, size
,
345 PROT_EXEC
|PROT_READ
|PROT_WRITE
,
346 MAP_SHARED
| MAP_ANONYMOUS
| MAP_FIXED
, -1, 0);
347 return mem
== MAP_FAILED
? NULL
: mem
;
350 int kvm_arch_insert_sw_breakpoint(CPUState
*cs
, struct kvm_sw_breakpoint
*bp
)
352 static const uint8_t diag_501
[] = {0x83, 0x24, 0x05, 0x01};
354 if (cpu_memory_rw_debug(cs
, bp
->pc
, (uint8_t *)&bp
->saved_insn
, 4, 0) ||
355 cpu_memory_rw_debug(cs
, bp
->pc
, (uint8_t *)diag_501
, 4, 1)) {
361 int kvm_arch_remove_sw_breakpoint(CPUState
*cs
, struct kvm_sw_breakpoint
*bp
)
364 static const uint8_t diag_501
[] = {0x83, 0x24, 0x05, 0x01};
366 if (cpu_memory_rw_debug(cs
, bp
->pc
, t
, 4, 0)) {
368 } else if (memcmp(t
, diag_501
, 4)) {
370 } else if (cpu_memory_rw_debug(cs
, bp
->pc
, (uint8_t *)&bp
->saved_insn
, 1, 1)) {
377 int kvm_arch_insert_hw_breakpoint(target_ulong addr
,
378 target_ulong len
, int type
)
383 int kvm_arch_remove_hw_breakpoint(target_ulong addr
,
384 target_ulong len
, int type
)
389 void kvm_arch_remove_all_hw_breakpoints(void)
393 void kvm_arch_update_guest_debug(CPUState
*cpu
, struct kvm_guest_debug
*dbg
)
397 void kvm_arch_pre_run(CPUState
*cpu
, struct kvm_run
*run
)
401 void kvm_arch_post_run(CPUState
*cpu
, struct kvm_run
*run
)
405 int kvm_arch_process_async_events(CPUState
*cs
)
410 void kvm_s390_interrupt_internal(S390CPU
*cpu
, int type
, uint32_t parm
,
411 uint64_t parm64
, int vm
)
413 CPUState
*cs
= CPU(cpu
);
414 struct kvm_s390_interrupt kvmint
;
417 if (!cs
->kvm_state
) {
423 kvmint
.parm64
= parm64
;
426 r
= kvm_vm_ioctl(cs
->kvm_state
, KVM_S390_INTERRUPT
, &kvmint
);
428 r
= kvm_vcpu_ioctl(cs
, KVM_S390_INTERRUPT
, &kvmint
);
432 fprintf(stderr
, "KVM failed to inject interrupt\n");
437 void kvm_s390_virtio_irq(S390CPU
*cpu
, int config_change
, uint64_t token
)
439 kvm_s390_interrupt_internal(cpu
, KVM_S390_INT_VIRTIO
, config_change
,
443 void kvm_s390_interrupt(S390CPU
*cpu
, int type
, uint32_t code
)
445 kvm_s390_interrupt_internal(cpu
, type
, code
, 0, 0);
448 static void enter_pgmcheck(S390CPU
*cpu
, uint16_t code
)
450 kvm_s390_interrupt(cpu
, KVM_S390_PROGRAM_INT
, code
);
453 static int kvm_sclp_service_call(S390CPU
*cpu
, struct kvm_run
*run
,
456 CPUS390XState
*env
= &cpu
->env
;
461 cpu_synchronize_state(CPU(cpu
));
462 sccb
= env
->regs
[ipbh0
& 0xf];
463 code
= env
->regs
[(ipbh0
& 0xf0) >> 4];
465 r
= sclp_service_call(env
, sccb
, code
);
467 enter_pgmcheck(cpu
, -r
);
475 static int handle_b2(S390CPU
*cpu
, struct kvm_run
*run
, uint8_t ipa1
)
477 CPUS390XState
*env
= &cpu
->env
;
479 uint16_t ipbh0
= (run
->s390_sieic
.ipb
& 0xffff0000) >> 16;
481 cpu_synchronize_state(CPU(cpu
));
485 ioinst_handle_xsch(cpu
, env
->regs
[1]);
488 ioinst_handle_csch(cpu
, env
->regs
[1]);
491 ioinst_handle_hsch(cpu
, env
->regs
[1]);
494 ioinst_handle_msch(cpu
, env
->regs
[1], run
->s390_sieic
.ipb
);
497 ioinst_handle_ssch(cpu
, env
->regs
[1], run
->s390_sieic
.ipb
);
500 ioinst_handle_stcrw(cpu
, run
->s390_sieic
.ipb
);
503 ioinst_handle_stsch(cpu
, env
->regs
[1], run
->s390_sieic
.ipb
);
506 /* We should only get tsch via KVM_EXIT_S390_TSCH. */
507 fprintf(stderr
, "Spurious tsch intercept\n");
510 ioinst_handle_chsc(cpu
, run
->s390_sieic
.ipb
);
513 /* This should have been handled by kvm already. */
514 fprintf(stderr
, "Spurious tpi intercept\n");
517 ioinst_handle_schm(cpu
, env
->regs
[1], env
->regs
[2],
518 run
->s390_sieic
.ipb
);
521 ioinst_handle_rsch(cpu
, env
->regs
[1]);
524 ioinst_handle_rchp(cpu
, env
->regs
[1]);
527 /* We do not provide this instruction, it is suppressed. */
530 ioinst_handle_sal(cpu
, env
->regs
[1]);
533 /* Not provided, set CC = 3 for subchannel not operational */
536 case PRIV_B2_SCLP_CALL
:
537 rc
= kvm_sclp_service_call(cpu
, run
, ipbh0
);
541 DPRINTF("KVM: unhandled PRIV: 0xb2%x\n", ipa1
);
548 static int handle_b9(S390CPU
*cpu
, struct kvm_run
*run
, uint8_t ipa1
)
554 /* just inject exception */
559 DPRINTF("KVM: unhandled PRIV: 0xb9%x\n", ipa1
);
566 static int handle_eb(S390CPU
*cpu
, struct kvm_run
*run
, uint8_t ipa1
)
572 /* just inject exception */
577 DPRINTF("KVM: unhandled PRIV: 0xeb%x\n", ipa1
);
584 static int handle_hypercall(S390CPU
*cpu
, struct kvm_run
*run
)
586 CPUS390XState
*env
= &cpu
->env
;
589 cpu_synchronize_state(CPU(cpu
));
590 ret
= s390_virtio_hypercall(env
);
591 if (ret
== -EINVAL
) {
592 enter_pgmcheck(cpu
, PGM_SPECIFICATION
);
599 static void kvm_handle_diag_308(S390CPU
*cpu
, struct kvm_run
*run
)
603 cpu_synchronize_state(CPU(cpu
));
604 r1
= (run
->s390_sieic
.ipa
& 0x00f0) >> 8;
605 r3
= run
->s390_sieic
.ipa
& 0x000f;
606 handle_diag_308(&cpu
->env
, r1
, r3
);
609 #define DIAG_KVM_CODE_MASK 0x000000000000ffff
611 static int handle_diag(S390CPU
*cpu
, struct kvm_run
*run
, uint32_t ipb
)
617 * For any diagnose call we support, bits 48-63 of the resulting
618 * address specify the function code; the remainder is ignored.
620 func_code
= decode_basedisp_rs(&cpu
->env
, ipb
) & DIAG_KVM_CODE_MASK
;
623 kvm_handle_diag_308(cpu
, run
);
625 case DIAG_KVM_HYPERCALL
:
626 r
= handle_hypercall(cpu
, run
);
628 case DIAG_KVM_BREAKPOINT
:
632 DPRINTF("KVM: unknown DIAG: 0x%x\n", func_code
);
640 static int kvm_s390_cpu_start(S390CPU
*cpu
)
642 s390_add_running_cpu(cpu
);
643 qemu_cpu_kick(CPU(cpu
));
644 DPRINTF("DONE: KVM cpu start: %p\n", &cpu
->env
);
648 int kvm_s390_cpu_restart(S390CPU
*cpu
)
650 kvm_s390_interrupt(cpu
, KVM_S390_RESTART
, 0);
651 s390_add_running_cpu(cpu
);
652 qemu_cpu_kick(CPU(cpu
));
653 DPRINTF("DONE: KVM cpu restart: %p\n", &cpu
->env
);
657 static void sigp_initial_cpu_reset(void *arg
)
660 S390CPUClass
*scc
= S390_CPU_GET_CLASS(cpu
);
662 cpu_synchronize_state(cpu
);
663 scc
->initial_cpu_reset(cpu
);
666 static void sigp_cpu_reset(void *arg
)
669 S390CPUClass
*scc
= S390_CPU_GET_CLASS(cpu
);
671 cpu_synchronize_state(cpu
);
675 #define SIGP_ORDER_MASK 0x000000ff
677 static int handle_sigp(S390CPU
*cpu
, struct kvm_run
*run
, uint8_t ipa1
)
679 CPUS390XState
*env
= &cpu
->env
;
683 uint64_t *statusreg
= &env
->regs
[ipa1
>> 4];
686 cpu_synchronize_state(CPU(cpu
));
689 order_code
= decode_basedisp_rs(env
, run
->s390_sieic
.ipb
) & SIGP_ORDER_MASK
;
691 cpu_addr
= env
->regs
[ipa1
& 0x0f];
692 target_cpu
= s390_cpu_addr2state(cpu_addr
);
693 if (target_cpu
== NULL
) {
694 cc
= 3; /* not operational */
698 switch (order_code
) {
700 cc
= kvm_s390_cpu_start(target_cpu
);
703 cc
= kvm_s390_cpu_restart(target_cpu
);
706 *statusreg
&= 0xffffffff00000000UL
;
707 *statusreg
|= SIGP_STAT_INVALID_PARAMETER
;
708 cc
= 1; /* status stored */
710 case SIGP_INITIAL_CPU_RESET
:
711 run_on_cpu(CPU(target_cpu
), sigp_initial_cpu_reset
, CPU(target_cpu
));
715 run_on_cpu(CPU(target_cpu
), sigp_cpu_reset
, CPU(target_cpu
));
719 DPRINTF("KVM: unknown SIGP: 0x%x\n", order_code
);
720 *statusreg
&= 0xffffffff00000000UL
;
721 *statusreg
|= SIGP_STAT_INVALID_ORDER
;
722 cc
= 1; /* status stored */
731 static void handle_instruction(S390CPU
*cpu
, struct kvm_run
*run
)
733 unsigned int ipa0
= (run
->s390_sieic
.ipa
& 0xff00);
734 uint8_t ipa1
= run
->s390_sieic
.ipa
& 0x00ff;
737 DPRINTF("handle_instruction 0x%x 0x%x\n",
738 run
->s390_sieic
.ipa
, run
->s390_sieic
.ipb
);
741 r
= handle_b2(cpu
, run
, ipa1
);
744 r
= handle_b9(cpu
, run
, ipa1
);
747 r
= handle_eb(cpu
, run
, ipa1
);
750 r
= handle_diag(cpu
, run
, run
->s390_sieic
.ipb
);
753 r
= handle_sigp(cpu
, run
, ipa1
);
758 enter_pgmcheck(cpu
, 0x0001);
762 static bool is_special_wait_psw(CPUState
*cs
)
765 return cs
->kvm_run
->psw_addr
== 0xfffUL
;
768 static int handle_intercept(S390CPU
*cpu
)
770 CPUState
*cs
= CPU(cpu
);
771 struct kvm_run
*run
= cs
->kvm_run
;
772 int icpt_code
= run
->s390_sieic
.icptcode
;
775 DPRINTF("intercept: 0x%x (at 0x%lx)\n", icpt_code
,
776 (long)cs
->kvm_run
->psw_addr
);
778 case ICPT_INSTRUCTION
:
779 handle_instruction(cpu
, run
);
782 /* disabled wait, since enabled wait is handled in kernel */
783 if (s390_del_running_cpu(cpu
) == 0) {
784 if (is_special_wait_psw(cs
)) {
785 qemu_system_shutdown_request();
789 data
= qobject_from_jsonf("{ 'action': %s }", "pause");
790 monitor_protocol_event(QEVENT_GUEST_PANICKED
, data
);
791 qobject_decref(data
);
792 vm_stop(RUN_STATE_GUEST_PANICKED
);
798 if (s390_del_running_cpu(cpu
) == 0) {
799 qemu_system_shutdown_request();
803 case ICPT_SOFT_INTERCEPT
:
804 fprintf(stderr
, "KVM unimplemented icpt SOFT\n");
808 fprintf(stderr
, "KVM unimplemented icpt IO\n");
812 fprintf(stderr
, "Unknown intercept code: %d\n", icpt_code
);
820 static int handle_tsch(S390CPU
*cpu
)
822 CPUS390XState
*env
= &cpu
->env
;
823 CPUState
*cs
= CPU(cpu
);
824 struct kvm_run
*run
= cs
->kvm_run
;
827 cpu_synchronize_state(cs
);
829 ret
= ioinst_handle_tsch(env
, env
->regs
[1], run
->s390_tsch
.ipb
);
831 /* Success; set condition code. */
834 } else if (ret
< -1) {
837 * If an I/O interrupt had been dequeued, we have to reinject it.
839 if (run
->s390_tsch
.dequeued
) {
840 uint16_t subchannel_id
= run
->s390_tsch
.subchannel_id
;
841 uint16_t subchannel_nr
= run
->s390_tsch
.subchannel_nr
;
842 uint32_t io_int_parm
= run
->s390_tsch
.io_int_parm
;
843 uint32_t io_int_word
= run
->s390_tsch
.io_int_word
;
844 uint32_t type
= ((subchannel_id
& 0xff00) << 24) |
845 ((subchannel_id
& 0x00060) << 22) | (subchannel_nr
<< 16);
847 kvm_s390_interrupt_internal(cpu
, type
,
848 ((uint32_t)subchannel_id
<< 16)
850 ((uint64_t)io_int_parm
<< 32)
858 static int kvm_arch_handle_debug_exit(S390CPU
*cpu
)
863 int kvm_arch_handle_exit(CPUState
*cs
, struct kvm_run
*run
)
865 S390CPU
*cpu
= S390_CPU(cs
);
868 switch (run
->exit_reason
) {
869 case KVM_EXIT_S390_SIEIC
:
870 ret
= handle_intercept(cpu
);
872 case KVM_EXIT_S390_RESET
:
873 qemu_system_reset_request();
875 case KVM_EXIT_S390_TSCH
:
876 ret
= handle_tsch(cpu
);
879 ret
= kvm_arch_handle_debug_exit(cpu
);
882 fprintf(stderr
, "Unknown KVM exit: %d\n", run
->exit_reason
);
887 ret
= EXCP_INTERRUPT
;
892 bool kvm_arch_stop_on_emulation_error(CPUState
*cpu
)
897 int kvm_arch_on_sigbus_vcpu(CPUState
*cpu
, int code
, void *addr
)
902 int kvm_arch_on_sigbus(int code
, void *addr
)
907 void kvm_s390_io_interrupt(S390CPU
*cpu
, uint16_t subchannel_id
,
908 uint16_t subchannel_nr
, uint32_t io_int_parm
,
909 uint32_t io_int_word
)
913 if (io_int_word
& IO_INT_WORD_AI
) {
914 type
= KVM_S390_INT_IO(1, 0, 0, 0);
916 type
= ((subchannel_id
& 0xff00) << 24) |
917 ((subchannel_id
& 0x00060) << 22) | (subchannel_nr
<< 16);
919 kvm_s390_interrupt_internal(cpu
, type
,
920 ((uint32_t)subchannel_id
<< 16) | subchannel_nr
,
921 ((uint64_t)io_int_parm
<< 32) | io_int_word
, 1);
924 void kvm_s390_crw_mchk(S390CPU
*cpu
)
926 kvm_s390_interrupt_internal(cpu
, KVM_S390_MCHK
, 1 << 28,
927 0x00400f1d40330000, 1);
930 void kvm_s390_enable_css_support(S390CPU
*cpu
)
934 /* Activate host kernel channel subsystem support. */
935 r
= kvm_vcpu_enable_cap(CPU(cpu
), KVM_CAP_S390_CSS_SUPPORT
, 0);
939 void kvm_arch_init_irq_routing(KVMState
*s
)
943 int kvm_s390_assign_subch_ioeventfd(EventNotifier
*notifier
, uint32_t sch
,
946 struct kvm_ioeventfd kick
= {
947 .flags
= KVM_IOEVENTFD_FLAG_VIRTIO_CCW_NOTIFY
|
948 KVM_IOEVENTFD_FLAG_DATAMATCH
,
949 .fd
= event_notifier_get_fd(notifier
),
954 if (!kvm_check_extension(kvm_state
, KVM_CAP_IOEVENTFD
)) {
958 kick
.flags
|= KVM_IOEVENTFD_FLAG_DEASSIGN
;
960 return kvm_vm_ioctl(kvm_state
, KVM_IOEVENTFD
, &kick
);