diff options
author | Paul Burton <paul.burton@imgtec.com> | 2013-12-23 22:49:45 -0500 |
---|---|---|
committer | Paul Burton <paul.burton@imgtec.com> | 2014-05-28 11:20:26 -0400 |
commit | 729ff56169395cb3e467e4e3c1e2637f4d3436ce (patch) | |
tree | bdb21de660a5fb826f2c308e8aa3e1315d48837e /arch/mips/mm/uasm.c | |
parent | 49e9529b9d43773307b8c73bd251b71784830c3d (diff) |
MIPS: uasm: add sync instruction
This patch allows use of the sync instruction from uasm. It will be used
by a subsequent patch.
Signed-off-by: Paul Burton <paul.burton@imgtec.com>
Diffstat (limited to 'arch/mips/mm/uasm.c')
-rw-r--r-- | arch/mips/mm/uasm.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/arch/mips/mm/uasm.c b/arch/mips/mm/uasm.c index a77a4b83307c..7c1380127a82 100644 --- a/arch/mips/mm/uasm.c +++ b/arch/mips/mm/uasm.c | |||
@@ -53,8 +53,8 @@ enum opcode { | |||
53 | insn_ldx, insn_ll, insn_lld, insn_lui, insn_lw, insn_lwx, insn_mfc0, | 53 | insn_ldx, insn_ll, insn_lld, insn_lui, insn_lw, insn_lwx, insn_mfc0, |
54 | insn_mtc0, insn_or, insn_ori, insn_pref, insn_rfe, insn_rotr, insn_sc, | 54 | insn_mtc0, insn_or, insn_ori, insn_pref, insn_rfe, insn_rotr, insn_sc, |
55 | insn_scd, insn_sd, insn_sll, insn_sra, insn_srl, insn_subu, insn_sw, | 55 | insn_scd, insn_sd, insn_sll, insn_sra, insn_srl, insn_subu, insn_sw, |
56 | insn_syscall, insn_tlbp, insn_tlbr, insn_tlbwi, insn_tlbwr, insn_xor, | 56 | insn_sync, insn_syscall, insn_tlbp, insn_tlbr, insn_tlbwi, insn_tlbwr, |
57 | insn_xori, | 57 | insn_xor, insn_xori, |
58 | }; | 58 | }; |
59 | 59 | ||
60 | struct insn { | 60 | struct insn { |
@@ -271,6 +271,7 @@ I_u2u1u3(_srl) | |||
271 | I_u2u1u3(_rotr) | 271 | I_u2u1u3(_rotr) |
272 | I_u3u1u2(_subu) | 272 | I_u3u1u2(_subu) |
273 | I_u2s3u1(_sw) | 273 | I_u2s3u1(_sw) |
274 | I_u1(_sync) | ||
274 | I_0(_tlbp) | 275 | I_0(_tlbp) |
275 | I_0(_tlbr) | 276 | I_0(_tlbr) |
276 | I_0(_tlbwi) | 277 | I_0(_tlbwi) |