2 * QEMU S390x KVM implementation
4 * Copyright (c) 2009 Alexander Graf <agraf@suse.de>
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 ICPT_INSTRUCTION 0x04
53 #define ICPT_WAITPSW 0x1c
54 #define ICPT_SOFT_INTERCEPT 0x24
55 #define ICPT_CPU_STOP 0x28
58 #define SIGP_RESTART 0x06
59 #define SIGP_INITIAL_CPU_RESET 0x0b
60 #define SIGP_STORE_STATUS_ADDR 0x0e
61 #define SIGP_SET_ARCH 0x12
63 #define SCLP_CMDW_READ_SCP_INFO 0x00020001
64 #define SCLP_CMDW_READ_SCP_INFO_FORCED 0x00120001
66 const KVMCapabilityInfo kvm_arch_required_capabilities
[] = {
70 int kvm_arch_init(KVMState
*s
)
75 int kvm_arch_init_vcpu(CPUS390XState
*env
)
79 if (kvm_vcpu_ioctl(env
, KVM_S390_INITIAL_RESET
, NULL
) < 0) {
80 perror("cannot init reset vcpu");
86 void kvm_arch_reset_vcpu(CPUS390XState
*env
)
88 /* FIXME: add code to reset vcpu. */
91 int kvm_arch_put_registers(CPUS390XState
*env
, int level
)
97 ret
= kvm_vcpu_ioctl(env
, KVM_GET_REGS
, ®s
);
102 for (i
= 0; i
< 16; i
++) {
103 regs
.gprs
[i
] = env
->regs
[i
];
106 ret
= kvm_vcpu_ioctl(env
, KVM_SET_REGS
, ®s
);
111 env
->kvm_run
->psw_addr
= env
->psw
.addr
;
112 env
->kvm_run
->psw_mask
= env
->psw
.mask
;
117 int kvm_arch_get_registers(CPUS390XState
*env
)
120 struct kvm_regs regs
;
123 ret
= kvm_vcpu_ioctl(env
, KVM_GET_REGS
, ®s
);
128 for (i
= 0; i
< 16; i
++) {
129 env
->regs
[i
] = regs
.gprs
[i
];
132 env
->psw
.addr
= env
->kvm_run
->psw_addr
;
133 env
->psw
.mask
= env
->kvm_run
->psw_mask
;
138 int kvm_arch_insert_sw_breakpoint(CPUS390XState
*env
, struct kvm_sw_breakpoint
*bp
)
140 static const uint8_t diag_501
[] = {0x83, 0x24, 0x05, 0x01};
142 if (cpu_memory_rw_debug(env
, bp
->pc
, (uint8_t *)&bp
->saved_insn
, 4, 0) ||
143 cpu_memory_rw_debug(env
, bp
->pc
, (uint8_t *)diag_501
, 4, 1)) {
149 int kvm_arch_remove_sw_breakpoint(CPUS390XState
*env
, struct kvm_sw_breakpoint
*bp
)
152 static const uint8_t diag_501
[] = {0x83, 0x24, 0x05, 0x01};
154 if (cpu_memory_rw_debug(env
, bp
->pc
, t
, 4, 0)) {
156 } else if (memcmp(t
, diag_501
, 4)) {
158 } else if (cpu_memory_rw_debug(env
, bp
->pc
, (uint8_t *)&bp
->saved_insn
, 1, 1)) {
165 void kvm_arch_pre_run(CPUS390XState
*env
, struct kvm_run
*run
)
169 void kvm_arch_post_run(CPUS390XState
*env
, struct kvm_run
*run
)
173 int kvm_arch_process_async_events(CPUS390XState
*env
)
178 void kvm_s390_interrupt_internal(CPUS390XState
*env
, int type
, uint32_t parm
,
179 uint64_t parm64
, int vm
)
181 struct kvm_s390_interrupt kvmint
;
184 if (!env
->kvm_state
) {
190 kvmint
.parm64
= parm64
;
193 r
= kvm_vm_ioctl(env
->kvm_state
, KVM_S390_INTERRUPT
, &kvmint
);
195 r
= kvm_vcpu_ioctl(env
, KVM_S390_INTERRUPT
, &kvmint
);
199 fprintf(stderr
, "KVM failed to inject interrupt\n");
204 void kvm_s390_virtio_irq(CPUS390XState
*env
, int config_change
, uint64_t token
)
206 kvm_s390_interrupt_internal(env
, KVM_S390_INT_VIRTIO
, config_change
,
210 void kvm_s390_interrupt(CPUS390XState
*env
, int type
, uint32_t code
)
212 kvm_s390_interrupt_internal(env
, type
, code
, 0, 0);
215 static void enter_pgmcheck(CPUS390XState
*env
, uint16_t code
)
217 kvm_s390_interrupt(env
, KVM_S390_PROGRAM_INT
, code
);
220 static inline void setcc(CPUS390XState
*env
, uint64_t cc
)
222 env
->kvm_run
->psw_mask
&= ~(3ull << 44);
223 env
->kvm_run
->psw_mask
|= (cc
& 3) << 44;
225 env
->psw
.mask
&= ~(3ul << 44);
226 env
->psw
.mask
|= (cc
& 3) << 44;
229 static int kvm_sclp_service_call(CPUS390XState
*env
, struct kvm_run
*run
,
236 cpu_synchronize_state(env
);
237 sccb
= env
->regs
[ipbh0
& 0xf];
238 code
= env
->regs
[(ipbh0
& 0xf0) >> 4];
240 r
= sclp_service_call(env
, sccb
, code
);
248 static int handle_priv(CPUS390XState
*env
, struct kvm_run
*run
, uint8_t ipa1
)
251 uint16_t ipbh0
= (run
->s390_sieic
.ipb
& 0xffff0000) >> 16;
253 dprintf("KVM: PRIV: %d\n", ipa1
);
256 r
= kvm_sclp_service_call(env
, run
, ipbh0
);
259 dprintf("KVM: unknown PRIV: 0x%x\n", ipa1
);
267 static int handle_hypercall(CPUS390XState
*env
, struct kvm_run
*run
)
269 cpu_synchronize_state(env
);
270 env
->regs
[2] = s390_virtio_hypercall(env
, env
->regs
[2], env
->regs
[1]);
275 static int handle_diag(CPUS390XState
*env
, struct kvm_run
*run
, int ipb_code
)
280 case DIAG_KVM_HYPERCALL
:
281 r
= handle_hypercall(env
, run
);
283 case DIAG_KVM_BREAKPOINT
:
287 dprintf("KVM: unknown DIAG: 0x%x\n", ipb_code
);
295 static int s390_cpu_restart(S390CPU
*cpu
)
297 CPUS390XState
*env
= &cpu
->env
;
299 kvm_s390_interrupt(env
, KVM_S390_RESTART
, 0);
300 s390_add_running_cpu(env
);
302 dprintf("DONE: SIGP cpu restart: %p\n", env
);
306 static int s390_store_status(CPUS390XState
*env
, uint32_t parameter
)
309 fprintf(stderr
, "XXX SIGP store status\n");
313 static int s390_cpu_initial_reset(CPUS390XState
*env
)
317 if (kvm_vcpu_ioctl(env
, KVM_S390_INITIAL_RESET
, NULL
) < 0) {
318 perror("cannot init reset vcpu");
321 /* Manually zero out all registers */
322 cpu_synchronize_state(env
);
323 for (i
= 0; i
< 16; i
++) {
327 dprintf("DONE: SIGP initial reset: %p\n", env
);
331 static int handle_sigp(CPUS390XState
*env
, struct kvm_run
*run
, uint8_t ipa1
)
339 CPUS390XState
*target_env
;
341 cpu_synchronize_state(env
);
344 order_code
= run
->s390_sieic
.ipb
>> 28;
345 if (order_code
> 0) {
346 order_code
= env
->regs
[order_code
];
348 order_code
+= (run
->s390_sieic
.ipb
& 0x0fff0000) >> 16;
351 t
= (ipa1
& 0xf0) >> 4;
356 parameter
= env
->regs
[t
] & 0x7ffffe00;
357 cpu_addr
= env
->regs
[ipa1
& 0x0f];
359 target_cpu
= s390_cpu_addr2state(cpu_addr
);
360 if (target_cpu
== NULL
) {
363 target_env
= &target_cpu
->env
;
365 switch (order_code
) {
367 r
= s390_cpu_restart(target_cpu
);
369 case SIGP_STORE_STATUS_ADDR
:
370 r
= s390_store_status(target_env
, parameter
);
373 /* make the caller panic */
375 case SIGP_INITIAL_CPU_RESET
:
376 r
= s390_cpu_initial_reset(target_env
);
379 fprintf(stderr
, "KVM: unknown SIGP: 0x%x\n", order_code
);
384 setcc(env
, r
? 3 : 0);
388 static int handle_instruction(CPUS390XState
*env
, struct kvm_run
*run
)
390 unsigned int ipa0
= (run
->s390_sieic
.ipa
& 0xff00);
391 uint8_t ipa1
= run
->s390_sieic
.ipa
& 0x00ff;
392 int ipb_code
= (run
->s390_sieic
.ipb
& 0x0fff0000) >> 16;
395 dprintf("handle_instruction 0x%x 0x%x\n", run
->s390_sieic
.ipa
, run
->s390_sieic
.ipb
);
398 r
= handle_priv(env
, run
, ipa1
);
401 r
= handle_diag(env
, run
, ipb_code
);
404 r
= handle_sigp(env
, run
, ipa1
);
409 enter_pgmcheck(env
, 0x0001);
414 static bool is_special_wait_psw(CPUS390XState
*env
)
417 return env
->kvm_run
->psw_addr
== 0xfffUL
;
420 static int handle_intercept(CPUS390XState
*env
)
422 struct kvm_run
*run
= env
->kvm_run
;
423 int icpt_code
= run
->s390_sieic
.icptcode
;
426 dprintf("intercept: 0x%x (at 0x%lx)\n", icpt_code
,
427 (long)env
->kvm_run
->psw_addr
);
429 case ICPT_INSTRUCTION
:
430 r
= handle_instruction(env
, run
);
433 if (s390_del_running_cpu(env
) == 0 &&
434 is_special_wait_psw(env
)) {
435 qemu_system_shutdown_request();
440 if (s390_del_running_cpu(env
) == 0) {
441 qemu_system_shutdown_request();
445 case ICPT_SOFT_INTERCEPT
:
446 fprintf(stderr
, "KVM unimplemented icpt SOFT\n");
450 fprintf(stderr
, "KVM unimplemented icpt IO\n");
454 fprintf(stderr
, "Unknown intercept code: %d\n", icpt_code
);
462 int kvm_arch_handle_exit(CPUS390XState
*env
, struct kvm_run
*run
)
466 switch (run
->exit_reason
) {
467 case KVM_EXIT_S390_SIEIC
:
468 ret
= handle_intercept(env
);
470 case KVM_EXIT_S390_RESET
:
471 qemu_system_reset_request();
474 fprintf(stderr
, "Unknown KVM exit: %d\n", run
->exit_reason
);
479 ret
= EXCP_INTERRUPT
;
484 bool kvm_arch_stop_on_emulation_error(CPUS390XState
*env
)
489 int kvm_arch_on_sigbus_vcpu(CPUS390XState
*env
, int code
, void *addr
)
494 int kvm_arch_on_sigbus(int code
, void *addr
)