blob: c69f785753b51b6f9af908bd6cc3cddefd594986 [file] [log] [blame]
Steven J. Hillabc597f2013-02-05 16:52:01 -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. Hillabc597f2013-02-05 16:52:01 -060018
19#include <asm/inst.h>
20#include <asm/elf.h>
21#include <asm/bugs.h>
Steven J. Hillcf6d9052013-03-25 12:03:41 -050022#define UASM_ISA _UASM_ISA_CLASSIC
Steven J. Hillabc597f2013-02-05 16:52:01 -060023#include <asm/uasm.h>
24
25#define RS_MASK 0x1f
26#define RS_SH 21
27#define RT_MASK 0x1f
28#define RT_SH 16
29#define SCIMM_MASK 0xfffff
30#define SCIMM_SH 6
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) << RS_SH \
36 | (c) << RT_SH \
37 | (d) << RD_SH \
38 | (e) << RE_SH \
39 | (f) << FUNC_SH)
40
Steven J. Hillcf6d9052013-03-25 12:03:41 -050041/* Define these when we are not the ISA the kernel is being compiled with. */
42#ifdef CONFIG_CPU_MICROMIPS
43#define CL_uasm_i_b(buf, off) ISAOPC(_beq)(buf, 0, 0, off)
44#define CL_uasm_i_beqz(buf, rs, off) ISAOPC(_beq)(buf, rs, 0, off)
45#define CL_uasm_i_beqzl(buf, rs, off) ISAOPC(_beql)(buf, rs, 0, off)
46#define CL_uasm_i_bnez(buf, rs, off) ISAOPC(_bne)(buf, rs, 0, off)
47#endif
48
Steven J. Hillabc597f2013-02-05 16:52:01 -060049#include "uasm.c"
50
Paul Gortmaker078a55f2013-06-18 13:38:59 +000051static struct insn insn_table[] = {
Steven J. Hillabc597f2013-02-05 16:52:01 -060052 { insn_addiu, M(addiu_op, 0, 0, 0, 0, 0), RS | RT | SIMM },
53 { insn_addu, M(spec_op, 0, 0, 0, 0, addu_op), RS | RT | RD },
54 { insn_andi, M(andi_op, 0, 0, 0, 0, 0), RS | RT | UIMM },
55 { insn_and, M(spec_op, 0, 0, 0, 0, and_op), RS | RT | RD },
56 { insn_bbit0, M(lwc2_op, 0, 0, 0, 0, 0), RS | RT | BIMM },
57 { insn_bbit1, M(swc2_op, 0, 0, 0, 0, 0), RS | RT | BIMM },
58 { insn_beql, M(beql_op, 0, 0, 0, 0, 0), RS | RT | BIMM },
59 { insn_beq, M(beq_op, 0, 0, 0, 0, 0), RS | RT | BIMM },
60 { insn_bgezl, M(bcond_op, 0, bgezl_op, 0, 0, 0), RS | BIMM },
61 { insn_bgez, M(bcond_op, 0, bgez_op, 0, 0, 0), RS | BIMM },
62 { insn_bltzl, M(bcond_op, 0, bltzl_op, 0, 0, 0), RS | BIMM },
63 { insn_bltz, M(bcond_op, 0, bltz_op, 0, 0, 0), RS | BIMM },
64 { insn_bne, M(bne_op, 0, 0, 0, 0, 0), RS | RT | BIMM },
65 { insn_cache, M(cache_op, 0, 0, 0, 0, 0), RS | RT | SIMM },
66 { insn_daddiu, M(daddiu_op, 0, 0, 0, 0, 0), RS | RT | SIMM },
67 { insn_daddu, M(spec_op, 0, 0, 0, 0, daddu_op), RS | RT | RD },
68 { insn_dinsm, M(spec3_op, 0, 0, 0, 0, dinsm_op), RS | RT | RD | RE },
69 { insn_dins, M(spec3_op, 0, 0, 0, 0, dins_op), RS | RT | RD | RE },
70 { insn_dmfc0, M(cop0_op, dmfc_op, 0, 0, 0, 0), RT | RD | SET},
71 { insn_dmtc0, M(cop0_op, dmtc_op, 0, 0, 0, 0), RT | RD | SET},
72 { insn_drotr32, M(spec_op, 1, 0, 0, 0, dsrl32_op), RT | RD | RE },
73 { insn_drotr, M(spec_op, 1, 0, 0, 0, dsrl_op), RT | RD | RE },
74 { insn_dsll32, M(spec_op, 0, 0, 0, 0, dsll32_op), RT | RD | RE },
75 { insn_dsll, M(spec_op, 0, 0, 0, 0, dsll_op), RT | RD | RE },
76 { insn_dsra, M(spec_op, 0, 0, 0, 0, dsra_op), RT | RD | RE },
77 { insn_dsrl32, M(spec_op, 0, 0, 0, 0, dsrl32_op), RT | RD | RE },
78 { insn_dsrl, M(spec_op, 0, 0, 0, 0, dsrl_op), RT | RD | RE },
79 { insn_dsubu, M(spec_op, 0, 0, 0, 0, dsubu_op), RS | RT | RD },
80 { insn_eret, M(cop0_op, cop_op, 0, 0, 0, eret_op), 0 },
81 { insn_ext, M(spec3_op, 0, 0, 0, 0, ext_op), RS | RT | RD | RE },
82 { insn_ins, M(spec3_op, 0, 0, 0, 0, ins_op), RS | RT | RD | RE },
83 { insn_j, M(j_op, 0, 0, 0, 0, 0), JIMM },
84 { insn_jal, M(jal_op, 0, 0, 0, 0, 0), JIMM },
Paul Burton49e9529b2014-03-16 12:58:05 +000085 { insn_jalr, M(spec_op, 0, 0, 0, 0, jalr_op), RS | RD },
Steven J. Hillabc597f2013-02-05 16:52:01 -060086 { insn_j, M(j_op, 0, 0, 0, 0, 0), JIMM },
87 { insn_jr, M(spec_op, 0, 0, 0, 0, jr_op), RS },
88 { insn_ld, M(ld_op, 0, 0, 0, 0, 0), RS | RT | SIMM },
89 { insn_ldx, M(spec3_op, 0, 0, 0, ldx_op, lx_op), RS | RT | RD },
90 { insn_lld, M(lld_op, 0, 0, 0, 0, 0), RS | RT | SIMM },
91 { insn_ll, M(ll_op, 0, 0, 0, 0, 0), RS | RT | SIMM },
92 { insn_lui, M(lui_op, 0, 0, 0, 0, 0), RT | SIMM },
93 { insn_lw, M(lw_op, 0, 0, 0, 0, 0), RS | RT | SIMM },
94 { insn_lwx, M(spec3_op, 0, 0, 0, lwx_op, lx_op), RS | RT | RD },
95 { insn_mfc0, M(cop0_op, mfc_op, 0, 0, 0, 0), RT | RD | SET},
96 { insn_mtc0, M(cop0_op, mtc_op, 0, 0, 0, 0), RT | RD | SET},
97 { insn_ori, M(ori_op, 0, 0, 0, 0, 0), RS | RT | UIMM },
98 { insn_or, M(spec_op, 0, 0, 0, 0, or_op), RS | RT | RD },
99 { insn_pref, M(pref_op, 0, 0, 0, 0, 0), RS | RT | SIMM },
100 { insn_rfe, M(cop0_op, cop_op, 0, 0, 0, rfe_op), 0 },
101 { insn_rotr, M(spec_op, 1, 0, 0, 0, srl_op), RT | RD | RE },
102 { insn_scd, M(scd_op, 0, 0, 0, 0, 0), RS | RT | SIMM },
103 { insn_sc, M(sc_op, 0, 0, 0, 0, 0), RS | RT | SIMM },
104 { insn_sd, M(sd_op, 0, 0, 0, 0, 0), RS | RT | SIMM },
105 { insn_sll, M(spec_op, 0, 0, 0, 0, sll_op), RT | RD | RE },
106 { insn_sra, M(spec_op, 0, 0, 0, 0, sra_op), RT | RD | RE },
107 { insn_srl, M(spec_op, 0, 0, 0, 0, srl_op), RT | RD | RE },
108 { insn_subu, M(spec_op, 0, 0, 0, 0, subu_op), RS | RT | RD },
109 { insn_sw, M(sw_op, 0, 0, 0, 0, 0), RS | RT | SIMM },
Paul Burton729ff562013-12-24 03:49:45 +0000110 { insn_sync, M(spec_op, 0, 0, 0, 0, sync_op), RE },
Steven J. Hillabc597f2013-02-05 16:52:01 -0600111 { insn_syscall, M(spec_op, 0, 0, 0, 0, syscall_op), SCIMM},
112 { insn_tlbp, M(cop0_op, cop_op, 0, 0, 0, tlbp_op), 0 },
113 { insn_tlbr, M(cop0_op, cop_op, 0, 0, 0, tlbr_op), 0 },
114 { insn_tlbwi, M(cop0_op, cop_op, 0, 0, 0, tlbwi_op), 0 },
115 { insn_tlbwr, M(cop0_op, cop_op, 0, 0, 0, tlbwr_op), 0 },
Paul Burton53ed1382013-12-24 03:50:35 +0000116 { insn_wait, M(cop0_op, cop_op, 0, 0, 0, wait_op), SCIMM },
Steven J. Hillabc597f2013-02-05 16:52:01 -0600117 { insn_xori, M(xori_op, 0, 0, 0, 0, 0), RS | RT | UIMM },
118 { insn_xor, M(spec_op, 0, 0, 0, 0, xor_op), RS | RT | RD },
119 { insn_invalid, 0, 0 }
120};
121
122#undef M
123
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000124static inline u32 build_bimm(s32 arg)
Steven J. Hillabc597f2013-02-05 16:52:01 -0600125{
126 WARN(arg > 0x1ffff || arg < -0x20000,
127 KERN_WARNING "Micro-assembler field overflow\n");
128
129 WARN(arg & 0x3, KERN_WARNING "Invalid micro-assembler branch target\n");
130
131 return ((arg < 0) ? (1 << 15) : 0) | ((arg >> 2) & 0x7fff);
132}
133
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000134static inline u32 build_jimm(u32 arg)
Steven J. Hillabc597f2013-02-05 16:52:01 -0600135{
136 WARN(arg & ~(JIMM_MASK << 2),
137 KERN_WARNING "Micro-assembler field overflow\n");
138
139 return (arg >> 2) & JIMM_MASK;
140}
141
142/*
143 * The order of opcode arguments is implicitly left to right,
144 * starting with RS and ending with FUNC or IMM.
145 */
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000146static void build_insn(u32 **buf, enum opcode opc, ...)
Steven J. Hillabc597f2013-02-05 16:52:01 -0600147{
148 struct insn *ip = NULL;
149 unsigned int i;
150 va_list ap;
151 u32 op;
152
153 for (i = 0; insn_table[i].opcode != insn_invalid; i++)
154 if (insn_table[i].opcode == opc) {
155 ip = &insn_table[i];
156 break;
157 }
158
159 if (!ip || (opc == insn_daddiu && r4k_daddiu_bug()))
160 panic("Unsupported Micro-assembler instruction %d", opc);
161
162 op = ip->match;
163 va_start(ap, opc);
164 if (ip->fields & RS)
165 op |= build_rs(va_arg(ap, u32));
166 if (ip->fields & RT)
167 op |= build_rt(va_arg(ap, u32));
168 if (ip->fields & RD)
169 op |= build_rd(va_arg(ap, u32));
170 if (ip->fields & RE)
171 op |= build_re(va_arg(ap, u32));
172 if (ip->fields & SIMM)
173 op |= build_simm(va_arg(ap, s32));
174 if (ip->fields & UIMM)
175 op |= build_uimm(va_arg(ap, u32));
176 if (ip->fields & BIMM)
177 op |= build_bimm(va_arg(ap, s32));
178 if (ip->fields & JIMM)
179 op |= build_jimm(va_arg(ap, u32));
180 if (ip->fields & FUNC)
181 op |= build_func(va_arg(ap, u32));
182 if (ip->fields & SET)
183 op |= build_set(va_arg(ap, u32));
184 if (ip->fields & SCIMM)
185 op |= build_scimm(va_arg(ap, u32));
186 va_end(ap);
187
188 **buf = op;
189 (*buf)++;
190}
191
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000192static inline void
Steven J. Hillabc597f2013-02-05 16:52:01 -0600193__resolve_relocs(struct uasm_reloc *rel, struct uasm_label *lab)
194{
195 long laddr = (long)lab->addr;
196 long raddr = (long)rel->addr;
197
198 switch (rel->type) {
199 case R_MIPS_PC16:
200 *rel->addr |= build_bimm(laddr - (raddr + 4));
201 break;
202
203 default:
204 panic("Unsupported Micro-assembler relocation %d",
205 rel->type);
206 }
207}