blob: 3dce80e679488d42623a874852ee18faaa7fcd83 [file] [log] [blame]
Ralf Baechle90e8cac2013-01-17 15:11:16 +01001/*
2 * Format of an instruction in memory.
3 *
4 * This file is subject to the terms and conditions of the GNU General Public
5 * License. See the file "COPYING" in the main directory of this archive
6 * for more details.
7 *
8 * Copyright (C) 1996, 2000 by Ralf Baechle
9 * Copyright (C) 2006 by Thiemo Seufer
Steven J. Hill2aa9fd02013-02-05 16:52:00 -060010 * Copyright (C) 2012 MIPS Technologies, Inc. All rights reserved.
Leonid Yegoshinaa1af472013-12-04 11:06:57 +000011 * Copyright (C) 2014 Imagination Technologies Ltd.
Ralf Baechle90e8cac2013-01-17 15:11:16 +010012 */
13#ifndef _UAPI_ASM_INST_H
14#define _UAPI_ASM_INST_H
15
Ralf Baechle64a17a02014-04-16 00:39:02 +020016#include <asm/bitfield.h>
17
Ralf Baechle90e8cac2013-01-17 15:11:16 +010018/*
19 * Major opcodes; before MIPS IV cop1x was called cop3.
20 */
21enum major_op {
22 spec_op, bcond_op, j_op, jal_op,
23 beq_op, bne_op, blez_op, bgtz_op,
Markos Chandrasc893ce32014-11-26 14:08:52 +000024 addi_op, cbcond0_op = addi_op, addiu_op, slti_op, sltiu_op,
Ralf Baechle90e8cac2013-01-17 15:11:16 +010025 andi_op, ori_op, xori_op, lui_op,
26 cop0_op, cop1_op, cop2_op, cop1x_op,
27 beql_op, bnel_op, blezl_op, bgtzl_op,
Markos Chandras10d962d2014-11-26 15:03:54 +000028 daddi_op, cbcond1_op = daddi_op, daddiu_op, ldl_op, ldr_op,
Leonid Yegoshin6701ca22015-06-22 12:20:58 +010029 spec2_op, jalx_op, mdmx_op, msa_op = mdmx_op, spec3_op,
Ralf Baechle90e8cac2013-01-17 15:11:16 +010030 lb_op, lh_op, lwl_op, lw_op,
31 lbu_op, lhu_op, lwr_op, lwu_op,
32 sb_op, sh_op, swl_op, sw_op,
33 sdl_op, sdr_op, swr_op, cache_op,
Markos Chandras8467ca02014-11-26 13:56:51 +000034 ll_op, lwc1_op, lwc2_op, bc6_op = lwc2_op, pref_op,
Markos Chandras69b9a2f2014-11-27 09:32:25 +000035 lld_op, ldc1_op, ldc2_op, beqzcjic_op = ldc2_op, ld_op,
Markos Chandras84fef632014-11-26 15:43:11 +000036 sc_op, swc1_op, swc2_op, balc6_op = swc2_op, major_3b_op,
Markos Chandras28d6f932015-01-08 11:55:20 +000037 scd_op, sdc1_op, sdc2_op, bnezcjialc_op = sdc2_op, sd_op
Ralf Baechle90e8cac2013-01-17 15:11:16 +010038};
39
40/*
41 * func field of spec opcode.
42 */
43enum spec_op {
44 sll_op, movc_op, srl_op, sra_op,
45 sllv_op, pmon_op, srlv_op, srav_op,
46 jr_op, jalr_op, movz_op, movn_op,
47 syscall_op, break_op, spim_op, sync_op,
48 mfhi_op, mthi_op, mflo_op, mtlo_op,
49 dsllv_op, spec2_unused_op, dsrlv_op, dsrav_op,
50 mult_op, multu_op, div_op, divu_op,
51 dmult_op, dmultu_op, ddiv_op, ddivu_op,
52 add_op, addu_op, sub_op, subu_op,
53 and_op, or_op, xor_op, nor_op,
54 spec3_unused_op, spec4_unused_op, slt_op, sltu_op,
55 dadd_op, daddu_op, dsub_op, dsubu_op,
56 tge_op, tgeu_op, tlt_op, tltu_op,
57 teq_op, spec5_unused_op, tne_op, spec6_unused_op,
58 dsll_op, spec7_unused_op, dsrl_op, dsra_op,
59 dsll32_op, spec8_unused_op, dsrl32_op, dsra32_op
60};
61
62/*
63 * func field of spec2 opcode.
64 */
65enum spec2_op {
66 madd_op, maddu_op, mul_op, spec2_3_unused_op,
67 msub_op, msubu_op, /* more unused ops */
68 clz_op = 0x20, clo_op,
69 dclz_op = 0x24, dclo_op,
70 sdbpp_op = 0x3f
71};
72
73/*
74 * func field of spec3 opcode.
75 */
76enum spec3_op {
77 ext_op, dextm_op, dextu_op, dext_op,
78 ins_op, dinsm_op, dinsu_op, dins_op,
Paul Burton6f5bb422014-03-04 15:11:12 +000079 yield_op = 0x09, lx_op = 0x0a,
80 lwle_op = 0x19, lwre_op = 0x1a,
81 cachee_op = 0x1b, sbe_op = 0x1c,
82 she_op = 0x1d, sce_op = 0x1e,
83 swe_op = 0x1f, bshfl_op = 0x20,
84 swle_op = 0x21, swre_op = 0x22,
85 prefe_op = 0x23, dbshfl_op = 0x24,
Leonid Yegoshina168b8f2014-11-19 09:29:42 +000086 cache6_op = 0x25, sc6_op = 0x26,
87 scd6_op = 0x27, lbue_op = 0x28,
88 lhue_op = 0x29, lbe_op = 0x2c,
89 lhe_op = 0x2d, lle_op = 0x2e,
90 lwe_op = 0x2f, pref6_op = 0x35,
91 ll6_op = 0x36, lld6_op = 0x37,
Paul Burton6f5bb422014-03-04 15:11:12 +000092 rdhwr_op = 0x3b
Ralf Baechle90e8cac2013-01-17 15:11:16 +010093};
94
95/*
96 * rt field of bcond opcodes.
97 */
98enum rt_op {
99 bltz_op, bgez_op, bltzl_op, bgezl_op,
100 spimi_op, unused_rt_op_0x05, unused_rt_op_0x06, unused_rt_op_0x07,
101 tgei_op, tgeiu_op, tlti_op, tltiu_op,
102 teqi_op, unused_0x0d_rt_op, tnei_op, unused_0x0f_rt_op,
103 bltzal_op, bgezal_op, bltzall_op, bgezall_op,
104 rt_op_0x14, rt_op_0x15, rt_op_0x16, rt_op_0x17,
105 rt_op_0x18, rt_op_0x19, rt_op_0x1a, rt_op_0x1b,
106 bposge32_op, rt_op_0x1d, rt_op_0x1e, rt_op_0x1f
107};
108
109/*
110 * rs field of cop opcodes.
111 */
112enum cop_op {
Ralf Baechle70342282013-01-22 12:59:30 +0100113 mfc_op = 0x00, dmfc_op = 0x01,
Steven J. Hille2965cd2014-11-13 09:52:02 -0600114 cfc_op = 0x02, mfhc0_op = 0x02,
115 mfhc_op = 0x03, mtc_op = 0x04,
116 dmtc_op = 0x05, ctc_op = 0x06,
117 mthc0_op = 0x06, mthc_op = 0x07,
Markos Chandrasc8a34582014-11-26 10:10:18 +0000118 bc_op = 0x08, bc1eqz_op = 0x09,
119 bc1nez_op = 0x0d, cop_op = 0x10,
Ralf Baechle70342282013-01-22 12:59:30 +0100120 copm_op = 0x18
Ralf Baechle90e8cac2013-01-17 15:11:16 +0100121};
122
123/*
124 * rt field of cop.bc_op opcodes
125 */
126enum bcop_op {
127 bcf_op, bct_op, bcfl_op, bctl_op
128};
129
130/*
131 * func field of cop0 coi opcodes.
132 */
133enum cop0_coi_func {
Ralf Baechle70342282013-01-22 12:59:30 +0100134 tlbr_op = 0x01, tlbwi_op = 0x02,
135 tlbwr_op = 0x06, tlbp_op = 0x08,
Paul Burtonb0a3eae2013-12-24 03:44:28 +0000136 rfe_op = 0x10, eret_op = 0x18,
137 wait_op = 0x20,
Ralf Baechle90e8cac2013-01-17 15:11:16 +0100138};
139
140/*
141 * func field of cop0 com opcodes.
142 */
143enum cop0_com_func {
Ralf Baechle70342282013-01-22 12:59:30 +0100144 tlbr1_op = 0x01, tlbw_op = 0x02,
145 tlbp1_op = 0x08, dctr_op = 0x09,
146 dctw_op = 0x0a
Ralf Baechle90e8cac2013-01-17 15:11:16 +0100147};
148
149/*
150 * fmt field of cop1 opcodes.
151 */
152enum cop1_fmt {
153 s_fmt, d_fmt, e_fmt, q_fmt,
154 w_fmt, l_fmt
155};
156
157/*
158 * func field of cop1 instructions using d, s or w format.
159 */
160enum cop1_sdw_func {
Ralf Baechle70342282013-01-22 12:59:30 +0100161 fadd_op = 0x00, fsub_op = 0x01,
162 fmul_op = 0x02, fdiv_op = 0x03,
163 fsqrt_op = 0x04, fabs_op = 0x05,
164 fmov_op = 0x06, fneg_op = 0x07,
165 froundl_op = 0x08, ftruncl_op = 0x09,
166 fceill_op = 0x0a, ffloorl_op = 0x0b,
167 fround_op = 0x0c, ftrunc_op = 0x0d,
168 fceil_op = 0x0e, ffloor_op = 0x0f,
169 fmovc_op = 0x11, fmovz_op = 0x12,
170 fmovn_op = 0x13, frecip_op = 0x15,
171 frsqrt_op = 0x16, fcvts_op = 0x20,
172 fcvtd_op = 0x21, fcvte_op = 0x22,
173 fcvtw_op = 0x24, fcvtl_op = 0x25,
174 fcmp_op = 0x30
Ralf Baechle90e8cac2013-01-17 15:11:16 +0100175};
176
177/*
178 * func field of cop1x opcodes (MIPS IV).
179 */
180enum cop1x_func {
Ralf Baechle70342282013-01-22 12:59:30 +0100181 lwxc1_op = 0x00, ldxc1_op = 0x01,
Deng-Cheng Zhu51061b82014-03-06 17:05:27 -0800182 swxc1_op = 0x08, sdxc1_op = 0x09,
183 pfetch_op = 0x0f, madd_s_op = 0x20,
Ralf Baechle70342282013-01-22 12:59:30 +0100184 madd_d_op = 0x21, madd_e_op = 0x22,
185 msub_s_op = 0x28, msub_d_op = 0x29,
186 msub_e_op = 0x2a, nmadd_s_op = 0x30,
187 nmadd_d_op = 0x31, nmadd_e_op = 0x32,
188 nmsub_s_op = 0x38, nmsub_d_op = 0x39,
189 nmsub_e_op = 0x3a
Ralf Baechle90e8cac2013-01-17 15:11:16 +0100190};
191
192/*
193 * func field for mad opcodes (MIPS IV).
194 */
195enum mad_func {
Ralf Baechle70342282013-01-22 12:59:30 +0100196 madd_fp_op = 0x08, msub_fp_op = 0x0a,
197 nmadd_fp_op = 0x0c, nmsub_fp_op = 0x0e
Ralf Baechle90e8cac2013-01-17 15:11:16 +0100198};
199
200/*
201 * func field for special3 lx opcodes (Cavium Octeon).
202 */
203enum lx_func {
204 lwx_op = 0x00,
205 lhx_op = 0x04,
Ralf Baechle70342282013-01-22 12:59:30 +0100206 lbux_op = 0x06,
Ralf Baechle90e8cac2013-01-17 15:11:16 +0100207 ldx_op = 0x08,
Ralf Baechle70342282013-01-22 12:59:30 +0100208 lwux_op = 0x10,
209 lhux_op = 0x14,
Ralf Baechle90e8cac2013-01-17 15:11:16 +0100210 lbx_op = 0x16,
211};
212
213/*
Markos Chandrasab9e4fa2014-04-08 12:47:11 +0100214 * BSHFL opcodes
215 */
216enum bshfl_func {
217 wsbh_op = 0x2,
218 dshd_op = 0x5,
219 seb_op = 0x10,
220 seh_op = 0x18,
221};
222
223/*
Leonid Yegoshin6701ca22015-06-22 12:20:58 +0100224 * func field for MSA MI10 format.
225 */
226enum msa_mi10_func {
227 msa_ld_op = 8,
228 msa_st_op = 9,
229};
230
231/*
232 * MSA 2 bit format fields.
233 */
234enum msa_2b_fmt {
235 msa_fmt_b = 0,
236 msa_fmt_h = 1,
237 msa_fmt_w = 2,
238 msa_fmt_d = 3,
239};
240
241/*
Steven J. Hill2aa9fd02013-02-05 16:52:00 -0600242 * (microMIPS) Major opcodes.
243 */
244enum mm_major_op {
245 mm_pool32a_op, mm_pool16a_op, mm_lbu16_op, mm_move16_op,
246 mm_addi32_op, mm_lbu32_op, mm_sb32_op, mm_lb32_op,
247 mm_pool32b_op, mm_pool16b_op, mm_lhu16_op, mm_andi16_op,
248 mm_addiu32_op, mm_lhu32_op, mm_sh32_op, mm_lh32_op,
249 mm_pool32i_op, mm_pool16c_op, mm_lwsp16_op, mm_pool16d_op,
250 mm_ori32_op, mm_pool32f_op, mm_reserved1_op, mm_reserved2_op,
251 mm_pool32c_op, mm_lwgp16_op, mm_lw16_op, mm_pool16e_op,
252 mm_xori32_op, mm_jals32_op, mm_addiupc_op, mm_reserved3_op,
253 mm_reserved4_op, mm_pool16f_op, mm_sb16_op, mm_beqz16_op,
254 mm_slti32_op, mm_beq32_op, mm_swc132_op, mm_lwc132_op,
255 mm_reserved5_op, mm_reserved6_op, mm_sh16_op, mm_bnez16_op,
256 mm_sltiu32_op, mm_bne32_op, mm_sdc132_op, mm_ldc132_op,
257 mm_reserved7_op, mm_reserved8_op, mm_swsp16_op, mm_b16_op,
258 mm_andi32_op, mm_j32_op, mm_sd32_op, mm_ld32_op,
259 mm_reserved11_op, mm_reserved12_op, mm_sw16_op, mm_li16_op,
260 mm_jalx32_op, mm_jal32_op, mm_sw32_op, mm_lw32_op,
261};
262
263/*
264 * (microMIPS) POOL32I minor opcodes.
265 */
266enum mm_32i_minor_op {
267 mm_bltz_op, mm_bltzal_op, mm_bgez_op, mm_bgezal_op,
268 mm_blez_op, mm_bnezc_op, mm_bgtz_op, mm_beqzc_op,
269 mm_tlti_op, mm_tgei_op, mm_tltiu_op, mm_tgeiu_op,
270 mm_tnei_op, mm_lui_op, mm_teqi_op, mm_reserved13_op,
271 mm_synci_op, mm_bltzals_op, mm_reserved14_op, mm_bgezals_op,
272 mm_bc2f_op, mm_bc2t_op, mm_reserved15_op, mm_reserved16_op,
273 mm_reserved17_op, mm_reserved18_op, mm_bposge64_op, mm_bposge32_op,
274 mm_bc1f_op, mm_bc1t_op, mm_reserved19_op, mm_reserved20_op,
275 mm_bc1any2f_op, mm_bc1any2t_op, mm_bc1any4f_op, mm_bc1any4t_op,
276};
277
278/*
279 * (microMIPS) POOL32A minor opcodes.
280 */
281enum mm_32a_minor_op {
282 mm_sll32_op = 0x000,
283 mm_ins_op = 0x00c,
Markos Chandrasbef581b2014-04-08 12:47:04 +0100284 mm_sllv32_op = 0x010,
Steven J. Hill2aa9fd02013-02-05 16:52:00 -0600285 mm_ext_op = 0x02c,
286 mm_pool32axf_op = 0x03c,
287 mm_srl32_op = 0x040,
288 mm_sra_op = 0x080,
Markos Chandrasf31318f2014-04-08 12:47:05 +0100289 mm_srlv32_op = 0x090,
Steven J. Hill2aa9fd02013-02-05 16:52:00 -0600290 mm_rotr_op = 0x0c0,
291 mm_lwxs_op = 0x118,
292 mm_addu32_op = 0x150,
293 mm_subu32_op = 0x1d0,
Markos Chandrasab9e4fa2014-04-08 12:47:11 +0100294 mm_wsbh_op = 0x1ec,
Markos Chandrasa8e897a2014-04-08 12:47:13 +0100295 mm_mul_op = 0x210,
Steven J. Hill2aa9fd02013-02-05 16:52:00 -0600296 mm_and_op = 0x250,
297 mm_or32_op = 0x290,
298 mm_xor32_op = 0x310,
Markos Chandras7682f9e2014-06-23 10:38:45 +0100299 mm_slt_op = 0x350,
Markos Chandrase8ef8682014-04-08 12:47:10 +0100300 mm_sltu_op = 0x390,
Steven J. Hill2aa9fd02013-02-05 16:52:00 -0600301};
302
303/*
304 * (microMIPS) POOL32B functions.
305 */
306enum mm_32b_func {
307 mm_lwc2_func = 0x0,
308 mm_lwp_func = 0x1,
309 mm_ldc2_func = 0x2,
310 mm_ldp_func = 0x4,
311 mm_lwm32_func = 0x5,
312 mm_cache_func = 0x6,
313 mm_ldm_func = 0x7,
314 mm_swc2_func = 0x8,
315 mm_swp_func = 0x9,
316 mm_sdc2_func = 0xa,
317 mm_sdp_func = 0xc,
318 mm_swm32_func = 0xd,
319 mm_sdm_func = 0xf,
320};
321
322/*
323 * (microMIPS) POOL32C functions.
324 */
325enum mm_32c_func {
326 mm_pref_func = 0x2,
327 mm_ll_func = 0x3,
328 mm_swr_func = 0x9,
329 mm_sc_func = 0xb,
330 mm_lwu_func = 0xe,
331};
332
333/*
334 * (microMIPS) POOL32AXF minor opcodes.
335 */
336enum mm_32axf_minor_op {
337 mm_mfc0_op = 0x003,
338 mm_mtc0_op = 0x00b,
339 mm_tlbp_op = 0x00d,
Markos Chandrasf3ec7a22014-04-08 12:47:07 +0100340 mm_mfhi32_op = 0x035,
Steven J. Hill2aa9fd02013-02-05 16:52:00 -0600341 mm_jalr_op = 0x03c,
342 mm_tlbr_op = 0x04d,
Markos Chandras16d21a82014-04-14 15:42:31 +0100343 mm_mflo32_op = 0x075,
Steven J. Hill2aa9fd02013-02-05 16:52:00 -0600344 mm_jalrhb_op = 0x07c,
345 mm_tlbwi_op = 0x08d,
346 mm_tlbwr_op = 0x0cd,
347 mm_jalrs_op = 0x13c,
348 mm_jalrshb_op = 0x17c,
Paul Burton7ed82ad2014-01-09 15:27:32 +0000349 mm_sync_op = 0x1ad,
Steven J. Hill2aa9fd02013-02-05 16:52:00 -0600350 mm_syscall_op = 0x22d,
Paul Burtonf2638392014-01-09 15:30:37 +0000351 mm_wait_op = 0x24d,
Steven J. Hill2aa9fd02013-02-05 16:52:00 -0600352 mm_eret_op = 0x3cd,
Markos Chandras4c12a852014-04-08 12:47:06 +0100353 mm_divu_op = 0x5dc,
Steven J. Hill2aa9fd02013-02-05 16:52:00 -0600354};
355
356/*
357 * (microMIPS) POOL32F minor opcodes.
358 */
359enum mm_32f_minor_op {
360 mm_32f_00_op = 0x00,
361 mm_32f_01_op = 0x01,
362 mm_32f_02_op = 0x02,
363 mm_32f_10_op = 0x08,
364 mm_32f_11_op = 0x09,
365 mm_32f_12_op = 0x0a,
366 mm_32f_20_op = 0x10,
367 mm_32f_30_op = 0x18,
368 mm_32f_40_op = 0x20,
369 mm_32f_41_op = 0x21,
370 mm_32f_42_op = 0x22,
371 mm_32f_50_op = 0x28,
372 mm_32f_51_op = 0x29,
373 mm_32f_52_op = 0x2a,
374 mm_32f_60_op = 0x30,
375 mm_32f_70_op = 0x38,
376 mm_32f_73_op = 0x3b,
377 mm_32f_74_op = 0x3c,
378};
379
380/*
381 * (microMIPS) POOL32F secondary minor opcodes.
382 */
383enum mm_32f_10_minor_op {
384 mm_lwxc1_op = 0x1,
385 mm_swxc1_op,
386 mm_ldxc1_op,
387 mm_sdxc1_op,
388 mm_luxc1_op,
389 mm_suxc1_op,
390};
391
392enum mm_32f_func {
393 mm_lwxc1_func = 0x048,
394 mm_swxc1_func = 0x088,
395 mm_ldxc1_func = 0x0c8,
396 mm_sdxc1_func = 0x108,
397};
398
399/*
400 * (microMIPS) POOL32F secondary minor opcodes.
401 */
402enum mm_32f_40_minor_op {
403 mm_fmovf_op,
404 mm_fmovt_op,
405};
406
407/*
408 * (microMIPS) POOL32F secondary minor opcodes.
409 */
410enum mm_32f_60_minor_op {
411 mm_fadd_op,
412 mm_fsub_op,
413 mm_fmul_op,
414 mm_fdiv_op,
415};
416
417/*
418 * (microMIPS) POOL32F secondary minor opcodes.
419 */
420enum mm_32f_70_minor_op {
421 mm_fmovn_op,
422 mm_fmovz_op,
423};
424
425/*
426 * (microMIPS) POOL32FXF secondary minor opcodes for POOL32F.
427 */
428enum mm_32f_73_minor_op {
429 mm_fmov0_op = 0x01,
430 mm_fcvtl_op = 0x04,
431 mm_movf0_op = 0x05,
432 mm_frsqrt_op = 0x08,
433 mm_ffloorl_op = 0x0c,
434 mm_fabs0_op = 0x0d,
435 mm_fcvtw_op = 0x24,
436 mm_movt0_op = 0x25,
437 mm_fsqrt_op = 0x28,
438 mm_ffloorw_op = 0x2c,
439 mm_fneg0_op = 0x2d,
440 mm_cfc1_op = 0x40,
441 mm_frecip_op = 0x48,
442 mm_fceill_op = 0x4c,
443 mm_fcvtd0_op = 0x4d,
444 mm_ctc1_op = 0x60,
445 mm_fceilw_op = 0x6c,
446 mm_fcvts0_op = 0x6d,
447 mm_mfc1_op = 0x80,
448 mm_fmov1_op = 0x81,
449 mm_movf1_op = 0x85,
450 mm_ftruncl_op = 0x8c,
451 mm_fabs1_op = 0x8d,
452 mm_mtc1_op = 0xa0,
453 mm_movt1_op = 0xa5,
454 mm_ftruncw_op = 0xac,
455 mm_fneg1_op = 0xad,
Steven J. Hill9355e592013-11-07 12:48:29 +0000456 mm_mfhc1_op = 0xc0,
Steven J. Hill2aa9fd02013-02-05 16:52:00 -0600457 mm_froundl_op = 0xcc,
458 mm_fcvtd1_op = 0xcd,
Steven J. Hill9355e592013-11-07 12:48:29 +0000459 mm_mthc1_op = 0xe0,
Steven J. Hill2aa9fd02013-02-05 16:52:00 -0600460 mm_froundw_op = 0xec,
461 mm_fcvts1_op = 0xed,
462};
463
464/*
465 * (microMIPS) POOL16C minor opcodes.
466 */
467enum mm_16c_minor_op {
468 mm_lwm16_op = 0x04,
469 mm_swm16_op = 0x05,
Tony Wudfb033f2013-06-20 12:32:30 +0000470 mm_jr16_op = 0x0c,
471 mm_jrc_op = 0x0d,
472 mm_jalr16_op = 0x0e,
473 mm_jalrs16_op = 0x0f,
474 mm_jraddiusp_op = 0x18,
Steven J. Hill2aa9fd02013-02-05 16:52:00 -0600475};
476
477/*
478 * (microMIPS) POOL16D minor opcodes.
479 */
480enum mm_16d_minor_op {
481 mm_addius5_func,
482 mm_addiusp_func,
483};
484
485/*
Steven J. Hillcd574702013-03-25 13:44:04 -0500486 * (MIPS16e) opcodes.
487 */
488enum MIPS16e_ops {
489 MIPS16e_jal_op = 003,
490 MIPS16e_ld_op = 007,
491 MIPS16e_i8_op = 014,
492 MIPS16e_sd_op = 017,
493 MIPS16e_lb_op = 020,
494 MIPS16e_lh_op = 021,
495 MIPS16e_lwsp_op = 022,
496 MIPS16e_lw_op = 023,
497 MIPS16e_lbu_op = 024,
498 MIPS16e_lhu_op = 025,
499 MIPS16e_lwpc_op = 026,
500 MIPS16e_lwu_op = 027,
501 MIPS16e_sb_op = 030,
502 MIPS16e_sh_op = 031,
503 MIPS16e_swsp_op = 032,
504 MIPS16e_sw_op = 033,
505 MIPS16e_rr_op = 035,
506 MIPS16e_extend_op = 036,
507 MIPS16e_i64_op = 037,
508};
509
510enum MIPS16e_i64_func {
511 MIPS16e_ldsp_func,
512 MIPS16e_sdsp_func,
513 MIPS16e_sdrasp_func,
514 MIPS16e_dadjsp_func,
515 MIPS16e_ldpc_func,
516};
517
518enum MIPS16e_rr_func {
519 MIPS16e_jr_func,
520};
521
522enum MIPS6e_i8_func {
523 MIPS16e_swrasp_func = 02,
524};
525
526/*
Leonid Yegoshin102cedc2013-03-25 12:09:02 -0500527 * (microMIPS & MIPS16e) NOP instruction.
528 */
529#define MM_NOP16 0x0c00
530
Ralf Baechle85dfaf02013-01-17 15:28:31 +0100531struct j_format {
Ralf Baechle8471ac1b2014-04-16 00:31:51 +0200532 __BITFIELD_FIELD(unsigned int opcode : 6, /* Jump format */
533 __BITFIELD_FIELD(unsigned int target : 26,
Ralf Baechle85dfaf02013-01-17 15:28:31 +0100534 ;))
535};
536
537struct i_format { /* signed immediate format */
Ralf Baechle8471ac1b2014-04-16 00:31:51 +0200538 __BITFIELD_FIELD(unsigned int opcode : 6,
539 __BITFIELD_FIELD(unsigned int rs : 5,
540 __BITFIELD_FIELD(unsigned int rt : 5,
541 __BITFIELD_FIELD(signed int simmediate : 16,
Ralf Baechle85dfaf02013-01-17 15:28:31 +0100542 ;))))
543};
544
545struct u_format { /* unsigned immediate format */
Ralf Baechle8471ac1b2014-04-16 00:31:51 +0200546 __BITFIELD_FIELD(unsigned int opcode : 6,
547 __BITFIELD_FIELD(unsigned int rs : 5,
548 __BITFIELD_FIELD(unsigned int rt : 5,
549 __BITFIELD_FIELD(unsigned int uimmediate : 16,
Ralf Baechle85dfaf02013-01-17 15:28:31 +0100550 ;))))
551};
552
553struct c_format { /* Cache (>= R6000) format */
Ralf Baechle8471ac1b2014-04-16 00:31:51 +0200554 __BITFIELD_FIELD(unsigned int opcode : 6,
555 __BITFIELD_FIELD(unsigned int rs : 5,
556 __BITFIELD_FIELD(unsigned int c_op : 3,
557 __BITFIELD_FIELD(unsigned int cache : 2,
558 __BITFIELD_FIELD(unsigned int simmediate : 16,
Ralf Baechle85dfaf02013-01-17 15:28:31 +0100559 ;)))))
560};
561
562struct r_format { /* Register format */
Ralf Baechle8471ac1b2014-04-16 00:31:51 +0200563 __BITFIELD_FIELD(unsigned int opcode : 6,
564 __BITFIELD_FIELD(unsigned int rs : 5,
565 __BITFIELD_FIELD(unsigned int rt : 5,
566 __BITFIELD_FIELD(unsigned int rd : 5,
567 __BITFIELD_FIELD(unsigned int re : 5,
568 __BITFIELD_FIELD(unsigned int func : 6,
Ralf Baechle85dfaf02013-01-17 15:28:31 +0100569 ;))))))
570};
571
572struct p_format { /* Performance counter format (R10000) */
Ralf Baechle8471ac1b2014-04-16 00:31:51 +0200573 __BITFIELD_FIELD(unsigned int opcode : 6,
574 __BITFIELD_FIELD(unsigned int rs : 5,
575 __BITFIELD_FIELD(unsigned int rt : 5,
576 __BITFIELD_FIELD(unsigned int rd : 5,
577 __BITFIELD_FIELD(unsigned int re : 5,
578 __BITFIELD_FIELD(unsigned int func : 6,
Ralf Baechle85dfaf02013-01-17 15:28:31 +0100579 ;))))))
580};
581
Ralf Baechle70342282013-01-22 12:59:30 +0100582struct f_format { /* FPU register format */
Ralf Baechle8471ac1b2014-04-16 00:31:51 +0200583 __BITFIELD_FIELD(unsigned int opcode : 6,
584 __BITFIELD_FIELD(unsigned int : 1,
585 __BITFIELD_FIELD(unsigned int fmt : 4,
586 __BITFIELD_FIELD(unsigned int rt : 5,
587 __BITFIELD_FIELD(unsigned int rd : 5,
588 __BITFIELD_FIELD(unsigned int re : 5,
589 __BITFIELD_FIELD(unsigned int func : 6,
Ralf Baechle85dfaf02013-01-17 15:28:31 +0100590 ;)))))))
591};
592
593struct ma_format { /* FPU multiply and add format (MIPS IV) */
Ralf Baechle8471ac1b2014-04-16 00:31:51 +0200594 __BITFIELD_FIELD(unsigned int opcode : 6,
595 __BITFIELD_FIELD(unsigned int fr : 5,
596 __BITFIELD_FIELD(unsigned int ft : 5,
597 __BITFIELD_FIELD(unsigned int fs : 5,
598 __BITFIELD_FIELD(unsigned int fd : 5,
599 __BITFIELD_FIELD(unsigned int func : 4,
600 __BITFIELD_FIELD(unsigned int fmt : 2,
Ralf Baechle85dfaf02013-01-17 15:28:31 +0100601 ;)))))))
602};
603
604struct b_format { /* BREAK and SYSCALL */
Ralf Baechle8471ac1b2014-04-16 00:31:51 +0200605 __BITFIELD_FIELD(unsigned int opcode : 6,
606 __BITFIELD_FIELD(unsigned int code : 20,
607 __BITFIELD_FIELD(unsigned int func : 6,
Ralf Baechle85dfaf02013-01-17 15:28:31 +0100608 ;)))
609};
610
Ralf Baechle8fba1e52013-01-17 16:29:27 +0100611struct ps_format { /* MIPS-3D / paired single format */
Ralf Baechle8471ac1b2014-04-16 00:31:51 +0200612 __BITFIELD_FIELD(unsigned int opcode : 6,
613 __BITFIELD_FIELD(unsigned int rs : 5,
614 __BITFIELD_FIELD(unsigned int ft : 5,
615 __BITFIELD_FIELD(unsigned int fs : 5,
616 __BITFIELD_FIELD(unsigned int fd : 5,
617 __BITFIELD_FIELD(unsigned int func : 6,
Ralf Baechle8fba1e52013-01-17 16:29:27 +0100618 ;))))))
619};
620
621struct v_format { /* MDMX vector format */
Ralf Baechle8471ac1b2014-04-16 00:31:51 +0200622 __BITFIELD_FIELD(unsigned int opcode : 6,
623 __BITFIELD_FIELD(unsigned int sel : 4,
624 __BITFIELD_FIELD(unsigned int fmt : 1,
625 __BITFIELD_FIELD(unsigned int vt : 5,
626 __BITFIELD_FIELD(unsigned int vs : 5,
627 __BITFIELD_FIELD(unsigned int vd : 5,
628 __BITFIELD_FIELD(unsigned int func : 6,
Ralf Baechle8fba1e52013-01-17 16:29:27 +0100629 ;)))))))
630};
631
Leonid Yegoshin6701ca22015-06-22 12:20:58 +0100632struct msa_mi10_format { /* MSA MI10 */
633 __BITFIELD_FIELD(unsigned int opcode : 6,
634 __BITFIELD_FIELD(signed int s10 : 10,
635 __BITFIELD_FIELD(unsigned int rs : 5,
636 __BITFIELD_FIELD(unsigned int wd : 5,
637 __BITFIELD_FIELD(unsigned int func : 4,
638 __BITFIELD_FIELD(unsigned int df : 2,
639 ;))))))
640};
641
Leonid Yegoshinaa1af472013-12-04 11:06:57 +0000642struct spec3_format { /* SPEC3 */
Ralf Baechle8471ac1b2014-04-16 00:31:51 +0200643 __BITFIELD_FIELD(unsigned int opcode:6,
644 __BITFIELD_FIELD(unsigned int rs:5,
645 __BITFIELD_FIELD(unsigned int rt:5,
646 __BITFIELD_FIELD(signed int simmediate:9,
647 __BITFIELD_FIELD(unsigned int func:7,
Leonid Yegoshinaa1af472013-12-04 11:06:57 +0000648 ;)))))
649};
650
Steven J. Hill2aa9fd02013-02-05 16:52:00 -0600651/*
652 * microMIPS instruction formats (32-bit length)
653 *
654 * NOTE:
655 * Parenthesis denote whether the format is a microMIPS instruction or
656 * if it is MIPS32 instruction re-encoded for use in the microMIPS ASE.
657 */
658struct fb_format { /* FPU branch format (MIPS32) */
Ralf Baechle8471ac1b2014-04-16 00:31:51 +0200659 __BITFIELD_FIELD(unsigned int opcode : 6,
660 __BITFIELD_FIELD(unsigned int bc : 5,
661 __BITFIELD_FIELD(unsigned int cc : 3,
662 __BITFIELD_FIELD(unsigned int flag : 2,
663 __BITFIELD_FIELD(signed int simmediate : 16,
Steven J. Hill2aa9fd02013-02-05 16:52:00 -0600664 ;)))))
665};
666
667struct fp0_format { /* FPU multiply and add format (MIPS32) */
Ralf Baechle8471ac1b2014-04-16 00:31:51 +0200668 __BITFIELD_FIELD(unsigned int opcode : 6,
669 __BITFIELD_FIELD(unsigned int fmt : 5,
670 __BITFIELD_FIELD(unsigned int ft : 5,
671 __BITFIELD_FIELD(unsigned int fs : 5,
672 __BITFIELD_FIELD(unsigned int fd : 5,
673 __BITFIELD_FIELD(unsigned int func : 6,
Steven J. Hill2aa9fd02013-02-05 16:52:00 -0600674 ;))))))
675};
676
677struct mm_fp0_format { /* FPU multipy and add format (microMIPS) */
Ralf Baechle8471ac1b2014-04-16 00:31:51 +0200678 __BITFIELD_FIELD(unsigned int opcode : 6,
679 __BITFIELD_FIELD(unsigned int ft : 5,
680 __BITFIELD_FIELD(unsigned int fs : 5,
681 __BITFIELD_FIELD(unsigned int fd : 5,
682 __BITFIELD_FIELD(unsigned int fmt : 3,
683 __BITFIELD_FIELD(unsigned int op : 2,
684 __BITFIELD_FIELD(unsigned int func : 6,
Steven J. Hill2aa9fd02013-02-05 16:52:00 -0600685 ;)))))))
686};
687
688struct fp1_format { /* FPU mfc1 and cfc1 format (MIPS32) */
Ralf Baechle8471ac1b2014-04-16 00:31:51 +0200689 __BITFIELD_FIELD(unsigned int opcode : 6,
690 __BITFIELD_FIELD(unsigned int op : 5,
691 __BITFIELD_FIELD(unsigned int rt : 5,
692 __BITFIELD_FIELD(unsigned int fs : 5,
693 __BITFIELD_FIELD(unsigned int fd : 5,
694 __BITFIELD_FIELD(unsigned int func : 6,
Steven J. Hill2aa9fd02013-02-05 16:52:00 -0600695 ;))))))
696};
697
698struct mm_fp1_format { /* FPU mfc1 and cfc1 format (microMIPS) */
Ralf Baechle8471ac1b2014-04-16 00:31:51 +0200699 __BITFIELD_FIELD(unsigned int opcode : 6,
700 __BITFIELD_FIELD(unsigned int rt : 5,
701 __BITFIELD_FIELD(unsigned int fs : 5,
702 __BITFIELD_FIELD(unsigned int fmt : 2,
703 __BITFIELD_FIELD(unsigned int op : 8,
704 __BITFIELD_FIELD(unsigned int func : 6,
Steven J. Hill2aa9fd02013-02-05 16:52:00 -0600705 ;))))))
706};
707
708struct mm_fp2_format { /* FPU movt and movf format (microMIPS) */
Ralf Baechle8471ac1b2014-04-16 00:31:51 +0200709 __BITFIELD_FIELD(unsigned int opcode : 6,
710 __BITFIELD_FIELD(unsigned int fd : 5,
711 __BITFIELD_FIELD(unsigned int fs : 5,
712 __BITFIELD_FIELD(unsigned int cc : 3,
713 __BITFIELD_FIELD(unsigned int zero : 2,
714 __BITFIELD_FIELD(unsigned int fmt : 2,
715 __BITFIELD_FIELD(unsigned int op : 3,
716 __BITFIELD_FIELD(unsigned int func : 6,
Steven J. Hill2aa9fd02013-02-05 16:52:00 -0600717 ;))))))))
718};
719
720struct mm_fp3_format { /* FPU abs and neg format (microMIPS) */
Ralf Baechle8471ac1b2014-04-16 00:31:51 +0200721 __BITFIELD_FIELD(unsigned int opcode : 6,
722 __BITFIELD_FIELD(unsigned int rt : 5,
723 __BITFIELD_FIELD(unsigned int fs : 5,
724 __BITFIELD_FIELD(unsigned int fmt : 3,
725 __BITFIELD_FIELD(unsigned int op : 7,
726 __BITFIELD_FIELD(unsigned int func : 6,
Steven J. Hill2aa9fd02013-02-05 16:52:00 -0600727 ;))))))
728};
729
730struct mm_fp4_format { /* FPU c.cond format (microMIPS) */
Ralf Baechle8471ac1b2014-04-16 00:31:51 +0200731 __BITFIELD_FIELD(unsigned int opcode : 6,
732 __BITFIELD_FIELD(unsigned int rt : 5,
733 __BITFIELD_FIELD(unsigned int fs : 5,
734 __BITFIELD_FIELD(unsigned int cc : 3,
735 __BITFIELD_FIELD(unsigned int fmt : 3,
736 __BITFIELD_FIELD(unsigned int cond : 4,
737 __BITFIELD_FIELD(unsigned int func : 6,
Steven J. Hill2aa9fd02013-02-05 16:52:00 -0600738 ;)))))))
739};
740
741struct mm_fp5_format { /* FPU lwxc1 and swxc1 format (microMIPS) */
Ralf Baechle8471ac1b2014-04-16 00:31:51 +0200742 __BITFIELD_FIELD(unsigned int opcode : 6,
743 __BITFIELD_FIELD(unsigned int index : 5,
744 __BITFIELD_FIELD(unsigned int base : 5,
745 __BITFIELD_FIELD(unsigned int fd : 5,
746 __BITFIELD_FIELD(unsigned int op : 5,
747 __BITFIELD_FIELD(unsigned int func : 6,
Steven J. Hill2aa9fd02013-02-05 16:52:00 -0600748 ;))))))
749};
750
751struct fp6_format { /* FPU madd and msub format (MIPS IV) */
Ralf Baechle8471ac1b2014-04-16 00:31:51 +0200752 __BITFIELD_FIELD(unsigned int opcode : 6,
753 __BITFIELD_FIELD(unsigned int fr : 5,
754 __BITFIELD_FIELD(unsigned int ft : 5,
755 __BITFIELD_FIELD(unsigned int fs : 5,
756 __BITFIELD_FIELD(unsigned int fd : 5,
757 __BITFIELD_FIELD(unsigned int func : 6,
Steven J. Hill2aa9fd02013-02-05 16:52:00 -0600758 ;))))))
759};
760
761struct mm_fp6_format { /* FPU madd and msub format (microMIPS) */
Ralf Baechle8471ac1b2014-04-16 00:31:51 +0200762 __BITFIELD_FIELD(unsigned int opcode : 6,
763 __BITFIELD_FIELD(unsigned int ft : 5,
764 __BITFIELD_FIELD(unsigned int fs : 5,
765 __BITFIELD_FIELD(unsigned int fd : 5,
766 __BITFIELD_FIELD(unsigned int fr : 5,
767 __BITFIELD_FIELD(unsigned int func : 6,
Steven J. Hill2aa9fd02013-02-05 16:52:00 -0600768 ;))))))
769};
770
771struct mm_i_format { /* Immediate format (microMIPS) */
Ralf Baechle8471ac1b2014-04-16 00:31:51 +0200772 __BITFIELD_FIELD(unsigned int opcode : 6,
773 __BITFIELD_FIELD(unsigned int rt : 5,
774 __BITFIELD_FIELD(unsigned int rs : 5,
775 __BITFIELD_FIELD(signed int simmediate : 16,
Steven J. Hill2aa9fd02013-02-05 16:52:00 -0600776 ;))))
777};
778
779struct mm_m_format { /* Multi-word load/store format (microMIPS) */
Ralf Baechle8471ac1b2014-04-16 00:31:51 +0200780 __BITFIELD_FIELD(unsigned int opcode : 6,
781 __BITFIELD_FIELD(unsigned int rd : 5,
782 __BITFIELD_FIELD(unsigned int base : 5,
783 __BITFIELD_FIELD(unsigned int func : 4,
784 __BITFIELD_FIELD(signed int simmediate : 12,
Steven J. Hill2aa9fd02013-02-05 16:52:00 -0600785 ;)))))
786};
787
788struct mm_x_format { /* Scaled indexed load format (microMIPS) */
Ralf Baechle8471ac1b2014-04-16 00:31:51 +0200789 __BITFIELD_FIELD(unsigned int opcode : 6,
790 __BITFIELD_FIELD(unsigned int index : 5,
791 __BITFIELD_FIELD(unsigned int base : 5,
792 __BITFIELD_FIELD(unsigned int rd : 5,
793 __BITFIELD_FIELD(unsigned int func : 11,
Steven J. Hill2aa9fd02013-02-05 16:52:00 -0600794 ;)))))
795};
796
797/*
798 * microMIPS instruction formats (16-bit length)
799 */
800struct mm_b0_format { /* Unconditional branch format (microMIPS) */
Ralf Baechle8471ac1b2014-04-16 00:31:51 +0200801 __BITFIELD_FIELD(unsigned int opcode : 6,
802 __BITFIELD_FIELD(signed int simmediate : 10,
803 __BITFIELD_FIELD(unsigned int : 16, /* Ignored */
Steven J. Hill2aa9fd02013-02-05 16:52:00 -0600804 ;)))
805};
806
807struct mm_b1_format { /* Conditional branch format (microMIPS) */
Ralf Baechle8471ac1b2014-04-16 00:31:51 +0200808 __BITFIELD_FIELD(unsigned int opcode : 6,
809 __BITFIELD_FIELD(unsigned int rs : 3,
810 __BITFIELD_FIELD(signed int simmediate : 7,
811 __BITFIELD_FIELD(unsigned int : 16, /* Ignored */
Steven J. Hill2aa9fd02013-02-05 16:52:00 -0600812 ;))))
813};
814
815struct mm16_m_format { /* Multi-word load/store format */
Ralf Baechle8471ac1b2014-04-16 00:31:51 +0200816 __BITFIELD_FIELD(unsigned int opcode : 6,
817 __BITFIELD_FIELD(unsigned int func : 4,
818 __BITFIELD_FIELD(unsigned int rlist : 2,
819 __BITFIELD_FIELD(unsigned int imm : 4,
820 __BITFIELD_FIELD(unsigned int : 16, /* Ignored */
Steven J. Hill2aa9fd02013-02-05 16:52:00 -0600821 ;)))))
822};
823
824struct mm16_rb_format { /* Signed immediate format */
Ralf Baechle8471ac1b2014-04-16 00:31:51 +0200825 __BITFIELD_FIELD(unsigned int opcode : 6,
826 __BITFIELD_FIELD(unsigned int rt : 3,
827 __BITFIELD_FIELD(unsigned int base : 3,
828 __BITFIELD_FIELD(signed int simmediate : 4,
829 __BITFIELD_FIELD(unsigned int : 16, /* Ignored */
Steven J. Hill2aa9fd02013-02-05 16:52:00 -0600830 ;)))))
831};
832
833struct mm16_r3_format { /* Load from global pointer format */
Ralf Baechle8471ac1b2014-04-16 00:31:51 +0200834 __BITFIELD_FIELD(unsigned int opcode : 6,
835 __BITFIELD_FIELD(unsigned int rt : 3,
836 __BITFIELD_FIELD(signed int simmediate : 7,
837 __BITFIELD_FIELD(unsigned int : 16, /* Ignored */
Steven J. Hill2aa9fd02013-02-05 16:52:00 -0600838 ;))))
839};
840
841struct mm16_r5_format { /* Load/store from stack pointer format */
Ralf Baechle8471ac1b2014-04-16 00:31:51 +0200842 __BITFIELD_FIELD(unsigned int opcode : 6,
843 __BITFIELD_FIELD(unsigned int rt : 5,
844 __BITFIELD_FIELD(signed int simmediate : 5,
845 __BITFIELD_FIELD(unsigned int : 16, /* Ignored */
Steven J. Hill2aa9fd02013-02-05 16:52:00 -0600846 ;))))
847};
848
Steven J. Hillcd574702013-03-25 13:44:04 -0500849/*
850 * MIPS16e instruction formats (16-bit length)
851 */
852struct m16e_rr {
Ralf Baechle8471ac1b2014-04-16 00:31:51 +0200853 __BITFIELD_FIELD(unsigned int opcode : 5,
854 __BITFIELD_FIELD(unsigned int rx : 3,
855 __BITFIELD_FIELD(unsigned int nd : 1,
856 __BITFIELD_FIELD(unsigned int l : 1,
857 __BITFIELD_FIELD(unsigned int ra : 1,
858 __BITFIELD_FIELD(unsigned int func : 5,
Steven J. Hillcd574702013-03-25 13:44:04 -0500859 ;))))))
860};
861
862struct m16e_jal {
Ralf Baechle8471ac1b2014-04-16 00:31:51 +0200863 __BITFIELD_FIELD(unsigned int opcode : 5,
864 __BITFIELD_FIELD(unsigned int x : 1,
865 __BITFIELD_FIELD(unsigned int imm20_16 : 5,
866 __BITFIELD_FIELD(signed int imm25_21 : 5,
Steven J. Hillcd574702013-03-25 13:44:04 -0500867 ;))))
868};
869
870struct m16e_i64 {
Ralf Baechle8471ac1b2014-04-16 00:31:51 +0200871 __BITFIELD_FIELD(unsigned int opcode : 5,
872 __BITFIELD_FIELD(unsigned int func : 3,
873 __BITFIELD_FIELD(unsigned int imm : 8,
Steven J. Hillcd574702013-03-25 13:44:04 -0500874 ;)))
875};
876
877struct m16e_ri64 {
Ralf Baechle8471ac1b2014-04-16 00:31:51 +0200878 __BITFIELD_FIELD(unsigned int opcode : 5,
879 __BITFIELD_FIELD(unsigned int func : 3,
880 __BITFIELD_FIELD(unsigned int ry : 3,
881 __BITFIELD_FIELD(unsigned int imm : 5,
Steven J. Hillcd574702013-03-25 13:44:04 -0500882 ;))))
883};
884
885struct m16e_ri {
Ralf Baechle8471ac1b2014-04-16 00:31:51 +0200886 __BITFIELD_FIELD(unsigned int opcode : 5,
887 __BITFIELD_FIELD(unsigned int rx : 3,
888 __BITFIELD_FIELD(unsigned int imm : 8,
Steven J. Hillcd574702013-03-25 13:44:04 -0500889 ;)))
890};
891
892struct m16e_rri {
Ralf Baechle8471ac1b2014-04-16 00:31:51 +0200893 __BITFIELD_FIELD(unsigned int opcode : 5,
894 __BITFIELD_FIELD(unsigned int rx : 3,
895 __BITFIELD_FIELD(unsigned int ry : 3,
896 __BITFIELD_FIELD(unsigned int imm : 5,
Steven J. Hillcd574702013-03-25 13:44:04 -0500897 ;))))
898};
899
900struct m16e_i8 {
Ralf Baechle8471ac1b2014-04-16 00:31:51 +0200901 __BITFIELD_FIELD(unsigned int opcode : 5,
902 __BITFIELD_FIELD(unsigned int func : 3,
903 __BITFIELD_FIELD(unsigned int imm : 8,
Steven J. Hillcd574702013-03-25 13:44:04 -0500904 ;)))
905};
906
Ralf Baechle90e8cac2013-01-17 15:11:16 +0100907union mips_instruction {
908 unsigned int word;
909 unsigned short halfword[2];
910 unsigned char byte[4];
911 struct j_format j_format;
912 struct i_format i_format;
913 struct u_format u_format;
914 struct c_format c_format;
915 struct r_format r_format;
916 struct p_format p_format;
917 struct f_format f_format;
918 struct ma_format ma_format;
Leonid Yegoshin6701ca22015-06-22 12:20:58 +0100919 struct msa_mi10_format msa_mi10_format;
Ralf Baechle90e8cac2013-01-17 15:11:16 +0100920 struct b_format b_format;
Ralf Baechle8fba1e52013-01-17 16:29:27 +0100921 struct ps_format ps_format;
922 struct v_format v_format;
Leonid Yegoshinaa1af472013-12-04 11:06:57 +0000923 struct spec3_format spec3_format;
Steven J. Hill2aa9fd02013-02-05 16:52:00 -0600924 struct fb_format fb_format;
925 struct fp0_format fp0_format;
926 struct mm_fp0_format mm_fp0_format;
927 struct fp1_format fp1_format;
928 struct mm_fp1_format mm_fp1_format;
929 struct mm_fp2_format mm_fp2_format;
930 struct mm_fp3_format mm_fp3_format;
931 struct mm_fp4_format mm_fp4_format;
932 struct mm_fp5_format mm_fp5_format;
933 struct fp6_format fp6_format;
934 struct mm_fp6_format mm_fp6_format;
935 struct mm_i_format mm_i_format;
936 struct mm_m_format mm_m_format;
937 struct mm_x_format mm_x_format;
938 struct mm_b0_format mm_b0_format;
939 struct mm_b1_format mm_b1_format;
940 struct mm16_m_format mm16_m_format ;
941 struct mm16_rb_format mm16_rb_format;
942 struct mm16_r3_format mm16_r3_format;
943 struct mm16_r5_format mm16_r5_format;
Ralf Baechle90e8cac2013-01-17 15:11:16 +0100944};
945
Steven J. Hillcd574702013-03-25 13:44:04 -0500946union mips16e_instruction {
947 unsigned int full : 16;
948 struct m16e_rr rr;
949 struct m16e_jal jal;
950 struct m16e_i64 i64;
951 struct m16e_ri64 ri64;
952 struct m16e_ri ri;
953 struct m16e_rri rri;
954 struct m16e_i8 i8;
955};
956
Ralf Baechle90e8cac2013-01-17 15:11:16 +0100957#endif /* _UAPI_ASM_INST_H */