提交 638129ff 编写于 作者: C Cornelia Huck 提交者: Alexander Graf

s390x/kvm: Fix diagnose handling.

The instruction intercept handler for diagnose used only the displacement
when trying to calculate the function code. This is only correct for base
0, however; we need to perform a complete base/displacement address
calculation and use bits 48-63 as the function code.
Reviewed-by: NThomas Huth <thuth@linux.vnet.ibm.com>
Signed-off-by: NCornelia Huck <cornelia.huck@de.ibm.com>
Signed-off-by: NJens Freimann <jfrei@linux.vnet.ibm.com>
Signed-off-by: NAlexander Graf <agraf@suse.de>
上级 f46e720a
...@@ -352,6 +352,9 @@ static inline hwaddr decode_basedisp_s(CPUS390XState *env, uint32_t ipb) ...@@ -352,6 +352,9 @@ static inline hwaddr decode_basedisp_s(CPUS390XState *env, uint32_t ipb)
return addr; return addr;
} }
/* Base/displacement are at the same locations. */
#define decode_basedisp_rs decode_basedisp_s
void s390x_tod_timer(void *opaque); void s390x_tod_timer(void *opaque);
void s390x_cpu_timer(void *opaque); void s390x_cpu_timer(void *opaque);
......
...@@ -562,11 +562,19 @@ static void kvm_handle_diag_308(S390CPU *cpu, struct kvm_run *run) ...@@ -562,11 +562,19 @@ static void kvm_handle_diag_308(S390CPU *cpu, struct kvm_run *run)
handle_diag_308(&cpu->env, r1, r3); handle_diag_308(&cpu->env, r1, r3);
} }
static int handle_diag(S390CPU *cpu, struct kvm_run *run, int ipb_code) #define DIAG_KVM_CODE_MASK 0x000000000000ffff
static int handle_diag(S390CPU *cpu, struct kvm_run *run, uint32_t ipb)
{ {
int r = 0; int r = 0;
uint16_t func_code;
switch (ipb_code) {
/*
* For any diagnose call we support, bits 48-63 of the resulting
* address specify the function code; the remainder is ignored.
*/
func_code = decode_basedisp_rs(&cpu->env, ipb) & DIAG_KVM_CODE_MASK;
switch (func_code) {
case DIAG_IPL: case DIAG_IPL:
kvm_handle_diag_308(cpu, run); kvm_handle_diag_308(cpu, run);
break; break;
...@@ -577,7 +585,7 @@ static int handle_diag(S390CPU *cpu, struct kvm_run *run, int ipb_code) ...@@ -577,7 +585,7 @@ static int handle_diag(S390CPU *cpu, struct kvm_run *run, int ipb_code)
sleep(10); sleep(10);
break; break;
default: default:
DPRINTF("KVM: unknown DIAG: 0x%x\n", ipb_code); DPRINTF("KVM: unknown DIAG: 0x%x\n", func_code);
r = -1; r = -1;
break; break;
} }
...@@ -684,7 +692,6 @@ static void handle_instruction(S390CPU *cpu, struct kvm_run *run) ...@@ -684,7 +692,6 @@ static void handle_instruction(S390CPU *cpu, struct kvm_run *run)
{ {
unsigned int ipa0 = (run->s390_sieic.ipa & 0xff00); unsigned int ipa0 = (run->s390_sieic.ipa & 0xff00);
uint8_t ipa1 = run->s390_sieic.ipa & 0x00ff; uint8_t ipa1 = run->s390_sieic.ipa & 0x00ff;
int ipb_code = (run->s390_sieic.ipb & 0x0fff0000) >> 16;
int r = -1; int r = -1;
DPRINTF("handle_instruction 0x%x 0x%x\n", DPRINTF("handle_instruction 0x%x 0x%x\n",
...@@ -696,7 +703,7 @@ static void handle_instruction(S390CPU *cpu, struct kvm_run *run) ...@@ -696,7 +703,7 @@ static void handle_instruction(S390CPU *cpu, struct kvm_run *run)
r = handle_priv(cpu, run, ipa0 >> 8, ipa1); r = handle_priv(cpu, run, ipa0 >> 8, ipa1);
break; break;
case IPA0_DIAG: case IPA0_DIAG:
r = handle_diag(cpu, run, ipb_code); r = handle_diag(cpu, run, run->s390_sieic.ipb);
break; break;
case IPA0_SIGP: case IPA0_SIGP:
r = handle_sigp(cpu, run, ipa1); r = handle_sigp(cpu, run, ipa1);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册