blob: 1c390a1f386299069fe799e2c33bb84797bd2bdd [file] [log] [blame]
Steven J. Hilla6a48342013-02-05 16:52:02 -06001/*
2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
4 * for more details.
5 *
6 * A small micro-assembler. It is intentionally kept simple, does only
7 * support a subset of instructions, and does not try to hide pipeline
8 * effects like branch delay slots.
9 *
10 * Copyright (C) 2004, 2005, 2006, 2008 Thiemo Seufer
11 * Copyright (C) 2005, 2007 Maciej W. Rozycki
12 * Copyright (C) 2006 Ralf Baechle (ralf@linux-mips.org)
13 * Copyright (C) 2012, 2013 MIPS Technologies, Inc. All rights reserved.
14 */
15
16#include <linux/kernel.h>
17#include <linux/types.h>
Steven J. Hilla6a48342013-02-05 16:52:02 -060018
19#include <asm/inst.h>
20#include <asm/elf.h>
21#include <asm/bugs.h>
22#define UASM_ISA _UASM_ISA_MICROMIPS
23#include <asm/uasm.h>
24
25#define RS_MASK 0x1f
26#define RS_SH 16
27#define RT_MASK 0x1f
28#define RT_SH 21
29#define SCIMM_MASK 0x3ff
30#define SCIMM_SH 16
31
32/* This macro sets the non-variable bits of an instruction. */
33#define M(a, b, c, d, e, f) \
34 ((a) << OP_SH \
35 | (b) << RT_SH \
36 | (c) << RS_SH \
37 | (d) << RD_SH \
38 | (e) << RE_SH \
39 | (f) << FUNC_SH)
40
41/* Define these when we are not the ISA the kernel is being compiled with. */
42#ifndef CONFIG_CPU_MICROMIPS
43#define MM_uasm_i_b(buf, off) ISAOPC(_beq)(buf, 0, 0, off)
44#define MM_uasm_i_beqz(buf, rs, off) ISAOPC(_beq)(buf, rs, 0, off)
45#define MM_uasm_i_beqzl(buf, rs, off) ISAOPC(_beql)(buf, rs, 0, off)
46#define MM_uasm_i_bnez(buf, rs, off) ISAOPC(_bne)(buf, rs, 0, off)
47#endif
48
49#include "uasm.c"
50
Paul Gortmaker078a55f2013-06-18 13:38:59 +000051static struct insn insn_table_MM[] = {
Steven J. Hilla6a48342013-02-05 16:52:02 -060052 { insn_addu, M(mm_pool32a_op, 0, 0, 0, 0, mm_addu32_op), RT | RS | RD },
53 { insn_addiu, M(mm_addiu32_op, 0, 0, 0, 0, 0), RT | RS | SIMM },
54 { insn_and, M(mm_pool32a_op, 0, 0, 0, 0, mm_and_op), RT | RS | RD },
55 { insn_andi, M(mm_andi32_op, 0, 0, 0, 0, 0), RT | RS | UIMM },
56 { insn_beq, M(mm_beq32_op, 0, 0, 0, 0, 0), RS | RT | BIMM },
57 { insn_beql, 0, 0 },
58 { insn_bgez, M(mm_pool32i_op, mm_bgez_op, 0, 0, 0, 0), RS | BIMM },
59 { insn_bgezl, 0, 0 },
60 { insn_bltz, M(mm_pool32i_op, mm_bltz_op, 0, 0, 0, 0), RS | BIMM },
61 { insn_bltzl, 0, 0 },
62 { insn_bne, M(mm_bne32_op, 0, 0, 0, 0, 0), RT | RS | BIMM },
63 { insn_cache, M(mm_pool32b_op, 0, 0, mm_cache_func, 0, 0), RT | RS | SIMM },
64 { insn_daddu, 0, 0 },
65 { insn_daddiu, 0, 0 },
Markos Chandras4c12a852014-04-08 12:47:06 +010066 { insn_divu, M(mm_pool32a_op, 0, 0, 0, mm_divu_op, mm_pool32axf_op), RT | RS },
Steven J. Hilla6a48342013-02-05 16:52:02 -060067 { insn_dmfc0, 0, 0 },
68 { insn_dmtc0, 0, 0 },
69 { insn_dsll, 0, 0 },
70 { insn_dsll32, 0, 0 },
71 { insn_dsra, 0, 0 },
72 { insn_dsrl, 0, 0 },
73 { insn_dsrl32, 0, 0 },
74 { insn_drotr, 0, 0 },
75 { insn_drotr32, 0, 0 },
76 { insn_dsubu, 0, 0 },
77 { insn_eret, M(mm_pool32a_op, 0, 0, 0, mm_eret_op, mm_pool32axf_op), 0 },
78 { insn_ins, M(mm_pool32a_op, 0, 0, 0, 0, mm_ins_op), RT | RS | RD | RE },
79 { insn_ext, M(mm_pool32a_op, 0, 0, 0, 0, mm_ext_op), RT | RS | RD | RE },
80 { insn_j, M(mm_j32_op, 0, 0, 0, 0, 0), JIMM },
81 { insn_jal, M(mm_jal32_op, 0, 0, 0, 0, 0), JIMM },
Markos Chandras7fa22682014-04-08 12:47:08 +010082 { insn_jalr, M(mm_pool32a_op, 0, 0, 0, mm_jalr_op, mm_pool32axf_op), RT | RS },
Steven J. Hilla6a48342013-02-05 16:52:02 -060083 { insn_jr, M(mm_pool32a_op, 0, 0, 0, mm_jalr_op, mm_pool32axf_op), RS },
84 { insn_ld, 0, 0 },
Markos Chandrasd6b33142014-04-08 12:47:12 +010085 { insn_lh, M(mm_lh32_op, 0, 0, 0, 0, 0), RS | RS | SIMM },
Steven J. Hilla6a48342013-02-05 16:52:02 -060086 { insn_ll, M(mm_pool32c_op, 0, 0, (mm_ll_func << 1), 0, 0), RS | RT | SIMM },
87 { insn_lld, 0, 0 },
88 { insn_lui, M(mm_pool32i_op, mm_lui_op, 0, 0, 0, 0), RS | SIMM },
89 { insn_lw, M(mm_lw32_op, 0, 0, 0, 0, 0), RT | RS | SIMM },
90 { insn_mfc0, M(mm_pool32a_op, 0, 0, 0, mm_mfc0_op, mm_pool32axf_op), RT | RS | RD },
Markos Chandrasf3ec7a22014-04-08 12:47:07 +010091 { insn_mfhi, M(mm_pool32a_op, 0, 0, 0, mm_mfhi32_op, mm_pool32axf_op), RS },
Markos Chandras16d21a82014-04-14 15:42:31 +010092 { insn_mflo, M(mm_pool32a_op, 0, 0, 0, mm_mflo32_op, mm_pool32axf_op), RS },
Steven J. Hilla6a48342013-02-05 16:52:02 -060093 { insn_mtc0, M(mm_pool32a_op, 0, 0, 0, mm_mtc0_op, mm_pool32axf_op), RT | RS | RD },
Markos Chandrasa8e897a2014-04-08 12:47:13 +010094 { insn_mul, M(mm_pool32a_op, 0, 0, 0, 0, mm_mul_op), RT | RS | RD },
Steven J. Hilla6a48342013-02-05 16:52:02 -060095 { insn_or, M(mm_pool32a_op, 0, 0, 0, 0, mm_or32_op), RT | RS | RD },
96 { insn_ori, M(mm_ori32_op, 0, 0, 0, 0, 0), RT | RS | UIMM },
97 { insn_pref, M(mm_pool32c_op, 0, 0, (mm_pref_func << 1), 0, 0), RT | RS | SIMM },
98 { insn_rfe, 0, 0 },
99 { insn_sc, M(mm_pool32c_op, 0, 0, (mm_sc_func << 1), 0, 0), RT | RS | SIMM },
100 { insn_scd, 0, 0 },
101 { insn_sd, 0, 0 },
102 { insn_sll, M(mm_pool32a_op, 0, 0, 0, 0, mm_sll32_op), RT | RS | RD },
Markos Chandrasbef581b2014-04-08 12:47:04 +0100103 { insn_sllv, M(mm_pool32a_op, 0, 0, 0, 0, mm_sllv32_op), RT | RS | RD },
Markos Chandras390363e2014-04-08 12:47:09 +0100104 { insn_sltiu, M(mm_sltiu32_op, 0, 0, 0, 0, 0), RT | RS | SIMM },
Markos Chandrase8ef8682014-04-08 12:47:10 +0100105 { insn_sltu, M(mm_pool32a_op, 0, 0, 0, 0, mm_sltu_op), RT | RS | RD },
Steven J. Hilla6a48342013-02-05 16:52:02 -0600106 { insn_sra, M(mm_pool32a_op, 0, 0, 0, 0, mm_sra_op), RT | RS | RD },
107 { insn_srl, M(mm_pool32a_op, 0, 0, 0, 0, mm_srl32_op), RT | RS | RD },
Markos Chandrasf31318f2014-04-08 12:47:05 +0100108 { insn_srlv, M(mm_pool32a_op, 0, 0, 0, 0, mm_srlv32_op), RT | RS | RD },
Steven J. Hilla6a48342013-02-05 16:52:02 -0600109 { insn_rotr, M(mm_pool32a_op, 0, 0, 0, 0, mm_rotr_op), RT | RS | RD },
110 { insn_subu, M(mm_pool32a_op, 0, 0, 0, 0, mm_subu32_op), RT | RS | RD },
111 { insn_sw, M(mm_sw32_op, 0, 0, 0, 0, 0), RT | RS | SIMM },
Paul Burton729ff562013-12-24 03:49:45 +0000112 { insn_sync, M(mm_pool32a_op, 0, 0, 0, mm_sync_op, mm_pool32axf_op), RS },
Steven J. Hilla6a48342013-02-05 16:52:02 -0600113 { insn_tlbp, M(mm_pool32a_op, 0, 0, 0, mm_tlbp_op, mm_pool32axf_op), 0 },
114 { insn_tlbr, M(mm_pool32a_op, 0, 0, 0, mm_tlbr_op, mm_pool32axf_op), 0 },
115 { insn_tlbwi, M(mm_pool32a_op, 0, 0, 0, mm_tlbwi_op, mm_pool32axf_op), 0 },
116 { insn_tlbwr, M(mm_pool32a_op, 0, 0, 0, mm_tlbwr_op, mm_pool32axf_op), 0 },
Paul Burton53ed1382013-12-24 03:50:35 +0000117 { insn_wait, M(mm_pool32a_op, 0, 0, 0, mm_wait_op, mm_pool32axf_op), SCIMM },
Markos Chandrasab9e4fa2014-04-08 12:47:11 +0100118 { insn_wsbh, M(mm_pool32a_op, 0, 0, 0, mm_wsbh_op, mm_pool32axf_op), RT | RS },
Steven J. Hilla6a48342013-02-05 16:52:02 -0600119 { insn_xor, M(mm_pool32a_op, 0, 0, 0, 0, mm_xor32_op), RT | RS | RD },
120 { insn_xori, M(mm_xori32_op, 0, 0, 0, 0, 0), RT | RS | UIMM },
121 { insn_dins, 0, 0 },
122 { insn_dinsm, 0, 0 },
123 { insn_syscall, M(mm_pool32a_op, 0, 0, 0, mm_syscall_op, mm_pool32axf_op), SCIMM},
124 { insn_bbit0, 0, 0 },
125 { insn_bbit1, 0, 0 },
126 { insn_lwx, 0, 0 },
127 { insn_ldx, 0, 0 },
128 { insn_invalid, 0, 0 }
129};
130
131#undef M
132
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000133static inline u32 build_bimm(s32 arg)
Steven J. Hilla6a48342013-02-05 16:52:02 -0600134{
135 WARN(arg > 0xffff || arg < -0x10000,
136 KERN_WARNING "Micro-assembler field overflow\n");
137
138 WARN(arg & 0x3, KERN_WARNING "Invalid micro-assembler branch target\n");
139
140 return ((arg < 0) ? (1 << 15) : 0) | ((arg >> 1) & 0x7fff);
141}
142
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000143static inline u32 build_jimm(u32 arg)
Steven J. Hilla6a48342013-02-05 16:52:02 -0600144{
Steven J. Hill8fe4bb92013-03-25 12:07:40 -0500145
146 WARN(arg & ~((JIMM_MASK << 2) | 1),
Steven J. Hilla6a48342013-02-05 16:52:02 -0600147 KERN_WARNING "Micro-assembler field overflow\n");
148
149 return (arg >> 1) & JIMM_MASK;
150}
151
152/*
153 * The order of opcode arguments is implicitly left to right,
154 * starting with RS and ending with FUNC or IMM.
155 */
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000156static void build_insn(u32 **buf, enum opcode opc, ...)
Steven J. Hilla6a48342013-02-05 16:52:02 -0600157{
158 struct insn *ip = NULL;
159 unsigned int i;
160 va_list ap;
161 u32 op;
162
163 for (i = 0; insn_table_MM[i].opcode != insn_invalid; i++)
164 if (insn_table_MM[i].opcode == opc) {
165 ip = &insn_table_MM[i];
166 break;
167 }
168
169 if (!ip || (opc == insn_daddiu && r4k_daddiu_bug()))
170 panic("Unsupported Micro-assembler instruction %d", opc);
171
172 op = ip->match;
173 va_start(ap, opc);
174 if (ip->fields & RS) {
175 if (opc == insn_mfc0 || opc == insn_mtc0)
176 op |= build_rt(va_arg(ap, u32));
177 else
178 op |= build_rs(va_arg(ap, u32));
179 }
180 if (ip->fields & RT) {
181 if (opc == insn_mfc0 || opc == insn_mtc0)
182 op |= build_rs(va_arg(ap, u32));
183 else
184 op |= build_rt(va_arg(ap, u32));
185 }
186 if (ip->fields & RD)
187 op |= build_rd(va_arg(ap, u32));
188 if (ip->fields & RE)
189 op |= build_re(va_arg(ap, u32));
190 if (ip->fields & SIMM)
191 op |= build_simm(va_arg(ap, s32));
192 if (ip->fields & UIMM)
193 op |= build_uimm(va_arg(ap, u32));
194 if (ip->fields & BIMM)
195 op |= build_bimm(va_arg(ap, s32));
196 if (ip->fields & JIMM)
197 op |= build_jimm(va_arg(ap, u32));
198 if (ip->fields & FUNC)
199 op |= build_func(va_arg(ap, u32));
200 if (ip->fields & SET)
201 op |= build_set(va_arg(ap, u32));
202 if (ip->fields & SCIMM)
203 op |= build_scimm(va_arg(ap, u32));
204 va_end(ap);
205
206#ifdef CONFIG_CPU_LITTLE_ENDIAN
207 **buf = ((op & 0xffff) << 16) | (op >> 16);
208#else
209 **buf = op;
210#endif
211 (*buf)++;
212}
213
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000214static inline void
Steven J. Hilla6a48342013-02-05 16:52:02 -0600215__resolve_relocs(struct uasm_reloc *rel, struct uasm_label *lab)
216{
217 long laddr = (long)lab->addr;
218 long raddr = (long)rel->addr;
219
220 switch (rel->type) {
221 case R_MIPS_PC16:
222#ifdef CONFIG_CPU_LITTLE_ENDIAN
223 *rel->addr |= (build_bimm(laddr - (raddr + 4)) << 16);
224#else
225 *rel->addr |= build_bimm(laddr - (raddr + 4));
226#endif
227 break;
228
229 default:
230 panic("Unsupported Micro-assembler relocation %d",
231 rel->type);
232 }
233}