2 * QEMU S390x KVM implementation
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
20 #include <sys/types.h>
21 #include <sys/ioctl.h>
24 #include <linux/kvm.h>
25 #include <asm/ptrace.h>
27 #include "qemu-common.h"
28 #include "qemu-timer.h"
32 #include "device_tree.h"
34 /* #define DEBUG_KVM */
37 #define dprintf(fmt, ...) \
38 do { fprintf(stderr, fmt, ## __VA_ARGS__); } while (0)
40 #define dprintf(fmt, ...) \
44 #define IPA0_DIAG 0x8300
45 #define IPA0_SIGP 0xae00
46 #define IPA0_PRIV 0xb200
48 #define PRIV_SCLP_CALL 0x20
49 #define DIAG_KVM_HYPERCALL 0x500
50 #define DIAG_KVM_BREAKPOINT 0x501
52 #define SCP_LENGTH 0x00
53 #define SCP_FUNCTION_CODE 0x02
54 #define SCP_CONTROL_MASK 0x03
55 #define SCP_RESPONSE_CODE 0x06
56 #define SCP_MEM_CODE 0x08
57 #define SCP_INCREMENT 0x0a
59 #define ICPT_INSTRUCTION 0x04
60 #define ICPT_WAITPSW 0x1c
61 #define ICPT_SOFT_INTERCEPT 0x24
62 #define ICPT_CPU_STOP 0x28
65 #define SIGP_RESTART 0x06
66 #define SIGP_INITIAL_CPU_RESET 0x0b
67 #define SIGP_STORE_STATUS_ADDR 0x0e
68 #define SIGP_SET_ARCH 0x12
70 #define SCLP_CMDW_READ_SCP_INFO 0x00020001
71 #define SCLP_CMDW_READ_SCP_INFO_FORCED 0x00120001
73 const KVMCapabilityInfo kvm_arch_required_capabilities[] = {
77 int kvm_arch_init(KVMState *s)
82 int kvm_arch_init_vcpu(CPUState *env)
86 if (kvm_vcpu_ioctl(env, KVM_S390_INITIAL_RESET, NULL) < 0) {
87 perror("cannot init reset vcpu");
93 void kvm_arch_reset_vcpu(CPUState *env)
95 /* FIXME: add code to reset vcpu. */
98 int kvm_arch_put_registers(CPUState *env, int level)
100 struct kvm_regs regs;
104 ret = kvm_vcpu_ioctl(env, KVM_GET_REGS, ®s);
109 for (i = 0; i < 16; i++) {
110 regs.gprs[i] = env->regs[i];
113 ret = kvm_vcpu_ioctl(env, KVM_SET_REGS, ®s);
118 env->kvm_run->psw_addr = env->psw.addr;
119 env->kvm_run->psw_mask = env->psw.mask;
124 int kvm_arch_get_registers(CPUState *env)
127 struct kvm_regs regs;
130 ret = kvm_vcpu_ioctl(env, KVM_GET_REGS, ®s);
135 for (i = 0; i < 16; i++) {
136 env->regs[i] = regs.gprs[i];
139 env->psw.addr = env->kvm_run->psw_addr;
140 env->psw.mask = env->kvm_run->psw_mask;
145 int kvm_arch_insert_sw_breakpoint(CPUState *env, struct kvm_sw_breakpoint *bp)
147 static const uint8_t diag_501[] = {0x83, 0x24, 0x05, 0x01};
149 if (cpu_memory_rw_debug(env, bp->pc, (uint8_t *)&bp->saved_insn, 4, 0) ||
150 cpu_memory_rw_debug(env, bp->pc, (uint8_t *)diag_501, 4, 1)) {
156 int kvm_arch_remove_sw_breakpoint(CPUState *env, struct kvm_sw_breakpoint *bp)
159 static const uint8_t diag_501[] = {0x83, 0x24, 0x05, 0x01};
161 if (cpu_memory_rw_debug(env, bp->pc, t, 4, 0)) {
163 } else if (memcmp(t, diag_501, 4)) {
165 } else if (cpu_memory_rw_debug(env, bp->pc, (uint8_t *)&bp->saved_insn, 1, 1)) {
172 void kvm_arch_pre_run(CPUState *env, struct kvm_run *run)
176 void kvm_arch_post_run(CPUState *env, struct kvm_run *run)
180 int kvm_arch_process_async_events(CPUState *env)
185 static void kvm_s390_interrupt_internal(CPUState *env, int type, uint32_t parm,
186 uint64_t parm64, int vm)
188 struct kvm_s390_interrupt kvmint;
191 if (!env->kvm_state) {
196 env->exception_index = -1;
201 kvmint.parm64 = parm64;
204 r = kvm_vm_ioctl(env->kvm_state, KVM_S390_INTERRUPT, &kvmint);
206 r = kvm_vcpu_ioctl(env, KVM_S390_INTERRUPT, &kvmint);
210 fprintf(stderr, "KVM failed to inject interrupt\n");
215 void kvm_s390_virtio_irq(CPUState *env, int config_change, uint64_t token)
217 kvm_s390_interrupt_internal(env, KVM_S390_INT_VIRTIO, config_change,
221 static void kvm_s390_interrupt(CPUState *env, int type, uint32_t code)
223 kvm_s390_interrupt_internal(env, type, code, 0, 0);
226 static void enter_pgmcheck(CPUState *env, uint16_t code)
228 kvm_s390_interrupt(env, KVM_S390_PROGRAM_INT, code);
231 static void setcc(CPUState *env, uint64_t cc)
233 env->kvm_run->psw_mask &= ~(3ul << 44);
234 env->kvm_run->psw_mask |= (cc & 3) << 44;
236 env->psw.mask &= ~(3ul << 44);
237 env->psw.mask |= (cc & 3) << 44;
240 static int sclp_service_call(CPUState *env, struct kvm_run *run, uint16_t ipbh0)
246 cpu_synchronize_state(env);
247 sccb = env->regs[ipbh0 & 0xf];
248 code = env->regs[(ipbh0 & 0xf0) >> 4];
250 dprintf("sclp(0x%x, 0x%lx)\n", sccb, code);
252 if (sccb & ~0x7ffffff8ul) {
253 fprintf(stderr, "KVM: invalid sccb address 0x%x\n", sccb);
259 case SCLP_CMDW_READ_SCP_INFO:
260 case SCLP_CMDW_READ_SCP_INFO_FORCED:
261 stw_phys(sccb + SCP_MEM_CODE, ram_size >> 20);
262 stb_phys(sccb + SCP_INCREMENT, 1);
263 stw_phys(sccb + SCP_RESPONSE_CODE, 0x10);
266 kvm_s390_interrupt_internal(env, KVM_S390_INT_SERVICE,
270 dprintf("KVM: invalid sclp call 0x%x / 0x%lx\n", sccb, code);
282 static int handle_priv(CPUState *env, struct kvm_run *run, uint8_t ipa1)
285 uint16_t ipbh0 = (run->s390_sieic.ipb & 0xffff0000) >> 16;
287 dprintf("KVM: PRIV: %d\n", ipa1);
290 r = sclp_service_call(env, run, ipbh0);
293 dprintf("KVM: unknown PRIV: 0x%x\n", ipa1);
301 static int handle_hypercall(CPUState *env, struct kvm_run *run)
305 cpu_synchronize_state(env);
306 r = s390_virtio_hypercall(env);
311 static int handle_diag(CPUState *env, struct kvm_run *run, int ipb_code)
316 case DIAG_KVM_HYPERCALL:
317 r = handle_hypercall(env, run);
319 case DIAG_KVM_BREAKPOINT:
323 dprintf("KVM: unknown DIAG: 0x%x\n", ipb_code);
331 static int s390_cpu_restart(CPUState *env)
333 kvm_s390_interrupt(env, KVM_S390_RESTART, 0);
335 env->exception_index = -1;
337 dprintf("DONE: SIGP cpu restart: %p\n", env);
341 static int s390_store_status(CPUState *env, uint32_t parameter)
344 fprintf(stderr, "XXX SIGP store status\n");
348 static int s390_cpu_initial_reset(CPUState *env)
352 if (kvm_vcpu_ioctl(env, KVM_S390_INITIAL_RESET, NULL) < 0) {
353 perror("cannot init reset vcpu");
356 /* Manually zero out all registers */
357 cpu_synchronize_state(env);
358 for (i = 0; i < 16; i++) {
362 dprintf("DONE: SIGP initial reset: %p\n", env);
366 static int handle_sigp(CPUState *env, struct kvm_run *run, uint8_t ipa1)
373 CPUState *target_env;
375 cpu_synchronize_state(env);
378 order_code = run->s390_sieic.ipb >> 28;
379 if (order_code > 0) {
380 order_code = env->regs[order_code];
382 order_code += (run->s390_sieic.ipb & 0x0fff0000) >> 16;
385 t = (ipa1 & 0xf0) >> 4;
390 parameter = env->regs[t] & 0x7ffffe00;
391 cpu_addr = env->regs[ipa1 & 0x0f];
393 target_env = s390_cpu_addr2state(cpu_addr);
398 switch (order_code) {
400 r = s390_cpu_restart(target_env);
402 case SIGP_STORE_STATUS_ADDR:
403 r = s390_store_status(target_env, parameter);
406 /* make the caller panic */
408 case SIGP_INITIAL_CPU_RESET:
409 r = s390_cpu_initial_reset(target_env);
412 fprintf(stderr, "KVM: unknown SIGP: 0x%x\n", ipa1);
417 setcc(env, r ? 3 : 0);
421 static int handle_instruction(CPUState *env, struct kvm_run *run)
423 unsigned int ipa0 = (run->s390_sieic.ipa & 0xff00);
424 uint8_t ipa1 = run->s390_sieic.ipa & 0x00ff;
425 int ipb_code = (run->s390_sieic.ipb & 0x0fff0000) >> 16;
428 dprintf("handle_instruction 0x%x 0x%x\n", run->s390_sieic.ipa, run->s390_sieic.ipb);
431 r = handle_priv(env, run, ipa1);
434 r = handle_diag(env, run, ipb_code);
437 r = handle_sigp(env, run, ipa1);
442 enter_pgmcheck(env, 0x0001);
447 static int handle_intercept(CPUState *env)
449 struct kvm_run *run = env->kvm_run;
450 int icpt_code = run->s390_sieic.icptcode;
453 dprintf("intercept: 0x%x (at 0x%lx)\n", icpt_code, env->kvm_run->psw_addr);
455 case ICPT_INSTRUCTION:
456 r = handle_instruction(env, run);
459 /* XXX What to do on system shutdown? */
461 env->exception_index = EXCP_HLT;
463 case ICPT_SOFT_INTERCEPT:
464 fprintf(stderr, "KVM unimplemented icpt SOFT\n");
468 qemu_system_shutdown_request();
471 fprintf(stderr, "KVM unimplemented icpt IO\n");
475 fprintf(stderr, "Unknown intercept code: %d\n", icpt_code);
483 int kvm_arch_handle_exit(CPUState *env, struct kvm_run *run)
487 switch (run->exit_reason) {
488 case KVM_EXIT_S390_SIEIC:
489 ret = handle_intercept(env);
491 case KVM_EXIT_S390_RESET:
492 fprintf(stderr, "RESET not implemented\n");
496 fprintf(stderr, "Unknown KVM exit: %d\n", run->exit_reason);
501 ret = EXCP_INTERRUPT;
502 } else if (ret > 0) {
508 bool kvm_arch_stop_on_emulation_error(CPUState *env)
513 int kvm_arch_on_sigbus_vcpu(CPUState *env, int code, void *addr)
518 int kvm_arch_on_sigbus(int code, void *addr)