mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-08 02:03:56 -06:00
target/hppa: Convert halt/reset insns
Tested-by: Helge Deller <deller@gmx.de> Tested-by: Sven Schnelle <svens@stackframe.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
e8777db7aa
commit
96927adb8d
2 changed files with 20 additions and 34 deletions
|
@ -103,6 +103,11 @@ ssm 000000 .......... 000 01101011 t:5 i=%sm_imm
|
||||||
rfi 000000 ----- ----- --- 01100000 00000
|
rfi 000000 ----- ----- --- 01100000 00000
|
||||||
rfi_r 000000 ----- ----- --- 01100101 00000
|
rfi_r 000000 ----- ----- --- 01100101 00000
|
||||||
|
|
||||||
|
# These are artificial instructions used by QEMU firmware.
|
||||||
|
# They are allocated from the unassigned instruction space.
|
||||||
|
halt 1111 1111 1111 1101 1110 1010 1101 0000
|
||||||
|
reset 1111 1111 1111 1101 1110 1010 1101 0001
|
||||||
|
|
||||||
####
|
####
|
||||||
# Memory Management
|
# Memory Management
|
||||||
####
|
####
|
||||||
|
|
|
@ -2376,20 +2376,27 @@ static bool trans_rfi_r(DisasContext *ctx, arg_rfi_r *a)
|
||||||
return do_rfi(ctx, true);
|
return do_rfi(ctx, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifndef CONFIG_USER_ONLY
|
static bool trans_halt(DisasContext *ctx, arg_halt *a)
|
||||||
static bool gen_hlt(DisasContext *ctx, int reset)
|
|
||||||
{
|
{
|
||||||
CHECK_MOST_PRIVILEGED(EXCP_PRIV_OPR);
|
CHECK_MOST_PRIVILEGED(EXCP_PRIV_OPR);
|
||||||
|
#ifndef CONFIG_USER_ONLY
|
||||||
nullify_over(ctx);
|
nullify_over(ctx);
|
||||||
if (reset) {
|
|
||||||
gen_helper_reset(cpu_env);
|
|
||||||
} else {
|
|
||||||
gen_helper_halt(cpu_env);
|
gen_helper_halt(cpu_env);
|
||||||
}
|
|
||||||
ctx->base.is_jmp = DISAS_NORETURN;
|
ctx->base.is_jmp = DISAS_NORETURN;
|
||||||
return nullify_end(ctx);
|
return nullify_end(ctx);
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
static bool trans_reset(DisasContext *ctx, arg_reset *a)
|
||||||
|
{
|
||||||
|
CHECK_MOST_PRIVILEGED(EXCP_PRIV_OPR);
|
||||||
|
#ifndef CONFIG_USER_ONLY
|
||||||
|
nullify_over(ctx);
|
||||||
|
gen_helper_reset(cpu_env);
|
||||||
|
ctx->base.is_jmp = DISAS_NORETURN;
|
||||||
|
return nullify_end(ctx);
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
#endif /* !CONFIG_USER_ONLY */
|
|
||||||
|
|
||||||
static bool trans_nop_addrx(DisasContext *ctx, arg_ldst *a)
|
static bool trans_nop_addrx(DisasContext *ctx, arg_ldst *a)
|
||||||
{
|
{
|
||||||
|
@ -4134,32 +4141,6 @@ static void translate_one(DisasContext *ctx, uint32_t insn)
|
||||||
case 0x2E:
|
case 0x2E:
|
||||||
translate_table(ctx, insn, table_fp_fused);
|
translate_table(ctx, insn, table_fp_fused);
|
||||||
return;
|
return;
|
||||||
|
|
||||||
case 0x04: /* spopn */
|
|
||||||
case 0x05: /* diag */
|
|
||||||
case 0x0F: /* product specific */
|
|
||||||
break;
|
|
||||||
|
|
||||||
case 0x07: /* unassigned */
|
|
||||||
case 0x15: /* unassigned */
|
|
||||||
case 0x1D: /* unassigned */
|
|
||||||
case 0x37: /* unassigned */
|
|
||||||
break;
|
|
||||||
case 0x3F:
|
|
||||||
#ifndef CONFIG_USER_ONLY
|
|
||||||
/* Unassigned, but use as system-halt. */
|
|
||||||
if (insn == 0xfffdead0) {
|
|
||||||
gen_hlt(ctx, 0); /* halt system */
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
if (insn == 0xfffdead1) {
|
|
||||||
gen_hlt(ctx, 1); /* reset system */
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
gen_illegal(ctx);
|
gen_illegal(ctx);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue