aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJames Hogan <james.hogan@imgtec.com>2016-06-23 12:34:37 -0400
committerPaolo Bonzini <pbonzini@redhat.com>2016-07-05 10:08:35 -0400
commit9f730a60e5a046230cff8c9f4c8eb73f6dca7d81 (patch)
tree9d5b4804713cfbbd7da6fc182c084ddb9a7f37e9
parent61c64cf99ae589af3835dbc9bb57200d4a4842ae (diff)
MIPS: uasm: Add MTHI/MTLO instructions
Add MTHI/MTLO instructions for writing to the hi & lo registers to uasm so that KVM can use uasm for generating its entry point code at runtime. Signed-off-by: James Hogan <james.hogan@imgtec.com> Acked-by: Ralf Baechle <ralf@linux-mips.org> Cc: linux-mips@linux-mips.org Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
-rw-r--r--arch/mips/include/asm/uasm.h2
-rw-r--r--arch/mips/include/uapi/asm/inst.h2
-rw-r--r--arch/mips/mm/uasm-micromips.c2
-rw-r--r--arch/mips/mm/uasm-mips.c2
-rw-r--r--arch/mips/mm/uasm.c13
5 files changed, 16 insertions, 5 deletions
diff --git a/arch/mips/include/asm/uasm.h b/arch/mips/include/asm/uasm.h
index 4af8a5becbbb..f7929f65f7ca 100644
--- a/arch/mips/include/asm/uasm.h
+++ b/arch/mips/include/asm/uasm.h
@@ -146,6 +146,8 @@ Ip_u1(_mfhi);
146Ip_u1(_mflo); 146Ip_u1(_mflo);
147Ip_u1u2u3(_mtc0); 147Ip_u1u2u3(_mtc0);
148Ip_u1u2u3(_mthc0); 148Ip_u1u2u3(_mthc0);
149Ip_u1(_mthi);
150Ip_u1(_mtlo);
149Ip_u3u1u2(_mul); 151Ip_u3u1u2(_mul);
150Ip_u3u1u2(_or); 152Ip_u3u1u2(_or);
151Ip_u2u1u3(_ori); 153Ip_u2u1u3(_ori);
diff --git a/arch/mips/include/uapi/asm/inst.h b/arch/mips/include/uapi/asm/inst.h
index 7010d0b7b752..6319c5037e66 100644
--- a/arch/mips/include/uapi/asm/inst.h
+++ b/arch/mips/include/uapi/asm/inst.h
@@ -375,7 +375,9 @@ enum mm_32axf_minor_op {
375 mm_mflo32_op = 0x075, 375 mm_mflo32_op = 0x075,
376 mm_jalrhb_op = 0x07c, 376 mm_jalrhb_op = 0x07c,
377 mm_tlbwi_op = 0x08d, 377 mm_tlbwi_op = 0x08d,
378 mm_mthi32_op = 0x0b5,
378 mm_tlbwr_op = 0x0cd, 379 mm_tlbwr_op = 0x0cd,
380 mm_mtlo32_op = 0x0f5,
379 mm_di_op = 0x11d, 381 mm_di_op = 0x11d,
380 mm_jalrs_op = 0x13c, 382 mm_jalrs_op = 0x13c,
381 mm_jalrshb_op = 0x17c, 383 mm_jalrshb_op = 0x17c,
diff --git a/arch/mips/mm/uasm-micromips.c b/arch/mips/mm/uasm-micromips.c
index 40bef28f192c..277cf52d80e1 100644
--- a/arch/mips/mm/uasm-micromips.c
+++ b/arch/mips/mm/uasm-micromips.c
@@ -89,6 +89,8 @@ static struct insn insn_table_MM[] = {
89 { insn_mfhi, M(mm_pool32a_op, 0, 0, 0, mm_mfhi32_op, mm_pool32axf_op), RS }, 89 { insn_mfhi, M(mm_pool32a_op, 0, 0, 0, mm_mfhi32_op, mm_pool32axf_op), RS },
90 { insn_mflo, M(mm_pool32a_op, 0, 0, 0, mm_mflo32_op, mm_pool32axf_op), RS }, 90 { insn_mflo, M(mm_pool32a_op, 0, 0, 0, mm_mflo32_op, mm_pool32axf_op), RS },
91 { insn_mtc0, M(mm_pool32a_op, 0, 0, 0, mm_mtc0_op, mm_pool32axf_op), RT | RS | RD }, 91 { insn_mtc0, M(mm_pool32a_op, 0, 0, 0, mm_mtc0_op, mm_pool32axf_op), RT | RS | RD },
92 { insn_mthi, M(mm_pool32a_op, 0, 0, 0, mm_mthi32_op, mm_pool32axf_op), RS },
93 { insn_mtlo, M(mm_pool32a_op, 0, 0, 0, mm_mtlo32_op, mm_pool32axf_op), RS },
92 { insn_mul, M(mm_pool32a_op, 0, 0, 0, 0, mm_mul_op), RT | RS | RD }, 94 { insn_mul, M(mm_pool32a_op, 0, 0, 0, 0, mm_mul_op), RT | RS | RD },
93 { insn_or, M(mm_pool32a_op, 0, 0, 0, 0, mm_or32_op), RT | RS | RD }, 95 { insn_or, M(mm_pool32a_op, 0, 0, 0, 0, mm_or32_op), RT | RS | RD },
94 { insn_ori, M(mm_ori32_op, 0, 0, 0, 0, 0), RT | RS | UIMM }, 96 { insn_ori, M(mm_ori32_op, 0, 0, 0, 0, 0), RT | RS | UIMM },
diff --git a/arch/mips/mm/uasm-mips.c b/arch/mips/mm/uasm-mips.c
index 2b7d85b8241f..86a3c76a1ad8 100644
--- a/arch/mips/mm/uasm-mips.c
+++ b/arch/mips/mm/uasm-mips.c
@@ -119,6 +119,8 @@ static struct insn insn_table[] = {
119 { insn_mflo, M(spec_op, 0, 0, 0, 0, mflo_op), RD }, 119 { insn_mflo, M(spec_op, 0, 0, 0, 0, mflo_op), RD },
120 { insn_mtc0, M(cop0_op, mtc_op, 0, 0, 0, 0), RT | RD | SET}, 120 { insn_mtc0, M(cop0_op, mtc_op, 0, 0, 0, 0), RT | RD | SET},
121 { insn_mthc0, M(cop0_op, mthc0_op, 0, 0, 0, 0), RT | RD | SET}, 121 { insn_mthc0, M(cop0_op, mthc0_op, 0, 0, 0, 0), RT | RD | SET},
122 { insn_mthi, M(spec_op, 0, 0, 0, 0, mthi_op), RS },
123 { insn_mtlo, M(spec_op, 0, 0, 0, 0, mtlo_op), RS },
122 { insn_mul, M(spec2_op, 0, 0, 0, 0, mul_op), RS | RT | RD}, 124 { insn_mul, M(spec2_op, 0, 0, 0, 0, mul_op), RS | RT | RD},
123 { insn_ori, M(ori_op, 0, 0, 0, 0, 0), RS | RT | UIMM }, 125 { insn_ori, M(ori_op, 0, 0, 0, 0, 0), RS | RT | UIMM },
124 { insn_or, M(spec_op, 0, 0, 0, 0, or_op), RS | RT | RD }, 126 { insn_or, M(spec_op, 0, 0, 0, 0, or_op), RS | RT | RD },
diff --git a/arch/mips/mm/uasm.c b/arch/mips/mm/uasm.c
index 006fb05b74a7..3e0282d301d6 100644
--- a/arch/mips/mm/uasm.c
+++ b/arch/mips/mm/uasm.c
@@ -56,11 +56,12 @@ enum opcode {
56 insn_ext, insn_ins, insn_j, insn_jal, insn_jalr, insn_jr, insn_lb, 56 insn_ext, insn_ins, insn_j, insn_jal, insn_jalr, insn_jr, insn_lb,
57 insn_ld, insn_ldx, insn_lh, insn_ll, insn_lld, insn_lui, insn_lw, 57 insn_ld, insn_ldx, insn_lh, insn_ll, insn_lld, insn_lui, insn_lw,
58 insn_lwx, insn_mfc0, insn_mfhc0, insn_mfhi, insn_mflo, insn_mtc0, 58 insn_lwx, insn_mfc0, insn_mfhc0, insn_mfhi, insn_mflo, insn_mtc0,
59 insn_mthc0, insn_mul, insn_or, insn_ori, insn_pref, insn_rfe, insn_rotr, 59 insn_mthc0, insn_mthi, insn_mtlo, insn_mul, insn_or, insn_ori,
60 insn_sc, insn_scd, insn_sd, insn_sll, insn_sllv, insn_slt, insn_sltiu, 60 insn_pref, insn_rfe, insn_rotr, insn_sc, insn_scd, insn_sd, insn_sll,
61 insn_sltu, insn_sra, insn_srl, insn_srlv, insn_subu, insn_sw, insn_sync, 61 insn_sllv, insn_slt, insn_sltiu, insn_sltu, insn_sra, insn_srl,
62 insn_syscall, insn_tlbp, insn_tlbr, insn_tlbwi, insn_tlbwr, insn_wait, 62 insn_srlv, insn_subu, insn_sw, insn_sync, insn_syscall, insn_tlbp,
63 insn_wsbh, insn_xor, insn_xori, insn_yield, insn_lddir, insn_ldpte, 63 insn_tlbr, insn_tlbwi, insn_tlbwr, insn_wait, insn_wsbh, insn_xor,
64 insn_xori, insn_yield, insn_lddir, insn_ldpte,
64}; 65};
65 66
66struct insn { 67struct insn {
@@ -306,6 +307,8 @@ I_u1(_mfhi)
306I_u1(_mflo) 307I_u1(_mflo)
307I_u1u2u3(_mtc0) 308I_u1u2u3(_mtc0)
308I_u1u2u3(_mthc0) 309I_u1u2u3(_mthc0)
310I_u1(_mthi)
311I_u1(_mtlo)
309I_u3u1u2(_mul) 312I_u3u1u2(_mul)
310I_u2u1u3(_ori) 313I_u2u1u3(_ori)
311I_u3u1u2(_or) 314I_u3u1u2(_or)