blob: 89e91558741763b2f13c947a94092db4e7c8a013 [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
16/*
17 * Major opcodes; before MIPS IV cop1x was called cop3.
18 */
19enum major_op {
20 spec_op, bcond_op, j_op, jal_op,
21 beq_op, bne_op, blez_op, bgtz_op,
22 addi_op, addiu_op, slti_op, sltiu_op,
23 andi_op, ori_op, xori_op, lui_op,
24 cop0_op, cop1_op, cop2_op, cop1x_op,
25 beql_op, bnel_op, blezl_op, bgtzl_op,
26 daddi_op, daddiu_op, ldl_op, ldr_op,
27 spec2_op, jalx_op, mdmx_op, spec3_op,
28 lb_op, lh_op, lwl_op, lw_op,
29 lbu_op, lhu_op, lwr_op, lwu_op,
30 sb_op, sh_op, swl_op, sw_op,
31 sdl_op, sdr_op, swr_op, cache_op,
32 ll_op, lwc1_op, lwc2_op, pref_op,
33 lld_op, ldc1_op, ldc2_op, ld_op,
34 sc_op, swc1_op, swc2_op, major_3b_op,
35 scd_op, sdc1_op, sdc2_op, sd_op
36};
37
38/*
39 * func field of spec opcode.
40 */
41enum spec_op {
42 sll_op, movc_op, srl_op, sra_op,
43 sllv_op, pmon_op, srlv_op, srav_op,
44 jr_op, jalr_op, movz_op, movn_op,
45 syscall_op, break_op, spim_op, sync_op,
46 mfhi_op, mthi_op, mflo_op, mtlo_op,
47 dsllv_op, spec2_unused_op, dsrlv_op, dsrav_op,
48 mult_op, multu_op, div_op, divu_op,
49 dmult_op, dmultu_op, ddiv_op, ddivu_op,
50 add_op, addu_op, sub_op, subu_op,
51 and_op, or_op, xor_op, nor_op,
52 spec3_unused_op, spec4_unused_op, slt_op, sltu_op,
53 dadd_op, daddu_op, dsub_op, dsubu_op,
54 tge_op, tgeu_op, tlt_op, tltu_op,
55 teq_op, spec5_unused_op, tne_op, spec6_unused_op,
56 dsll_op, spec7_unused_op, dsrl_op, dsra_op,
57 dsll32_op, spec8_unused_op, dsrl32_op, dsra32_op
58};
59
60/*
61 * func field of spec2 opcode.
62 */
63enum spec2_op {
64 madd_op, maddu_op, mul_op, spec2_3_unused_op,
65 msub_op, msubu_op, /* more unused ops */
66 clz_op = 0x20, clo_op,
67 dclz_op = 0x24, dclo_op,
68 sdbpp_op = 0x3f
69};
70
71/*
72 * func field of spec3 opcode.
73 */
74enum spec3_op {
75 ext_op, dextm_op, dextu_op, dext_op,
76 ins_op, dinsm_op, dinsu_op, dins_op,
Paul Burton6f5bb422014-03-04 15:11:12 +000077 yield_op = 0x09, lx_op = 0x0a,
78 lwle_op = 0x19, lwre_op = 0x1a,
79 cachee_op = 0x1b, sbe_op = 0x1c,
80 she_op = 0x1d, sce_op = 0x1e,
81 swe_op = 0x1f, bshfl_op = 0x20,
82 swle_op = 0x21, swre_op = 0x22,
83 prefe_op = 0x23, dbshfl_op = 0x24,
84 lbue_op = 0x28, lhue_op = 0x29,
85 lbe_op = 0x2c, lhe_op = 0x2d,
86 lle_op = 0x2e, lwe_op = 0x2f,
87 rdhwr_op = 0x3b
Ralf Baechle90e8cac2013-01-17 15:11:16 +010088};
89
90/*
91 * rt field of bcond opcodes.
92 */
93enum rt_op {
94 bltz_op, bgez_op, bltzl_op, bgezl_op,
95 spimi_op, unused_rt_op_0x05, unused_rt_op_0x06, unused_rt_op_0x07,
96 tgei_op, tgeiu_op, tlti_op, tltiu_op,
97 teqi_op, unused_0x0d_rt_op, tnei_op, unused_0x0f_rt_op,
98 bltzal_op, bgezal_op, bltzall_op, bgezall_op,
99 rt_op_0x14, rt_op_0x15, rt_op_0x16, rt_op_0x17,
100 rt_op_0x18, rt_op_0x19, rt_op_0x1a, rt_op_0x1b,
101 bposge32_op, rt_op_0x1d, rt_op_0x1e, rt_op_0x1f
102};
103
104/*
105 * rs field of cop opcodes.
106 */
107enum cop_op {
Ralf Baechle70342282013-01-22 12:59:30 +0100108 mfc_op = 0x00, dmfc_op = 0x01,
Leonid Yegoshin1ac944002013-11-07 12:48:28 +0000109 cfc_op = 0x02, mfhc_op = 0x03,
110 mtc_op = 0x04, dmtc_op = 0x05,
111 ctc_op = 0x06, mthc_op = 0x07,
Ralf Baechle70342282013-01-22 12:59:30 +0100112 bc_op = 0x08, cop_op = 0x10,
113 copm_op = 0x18
Ralf Baechle90e8cac2013-01-17 15:11:16 +0100114};
115
116/*
117 * rt field of cop.bc_op opcodes
118 */
119enum bcop_op {
120 bcf_op, bct_op, bcfl_op, bctl_op
121};
122
123/*
124 * func field of cop0 coi opcodes.
125 */
126enum cop0_coi_func {
Ralf Baechle70342282013-01-22 12:59:30 +0100127 tlbr_op = 0x01, tlbwi_op = 0x02,
128 tlbwr_op = 0x06, tlbp_op = 0x08,
Paul Burtonb0a3eae2013-12-24 03:44:28 +0000129 rfe_op = 0x10, eret_op = 0x18,
130 wait_op = 0x20,
Ralf Baechle90e8cac2013-01-17 15:11:16 +0100131};
132
133/*
134 * func field of cop0 com opcodes.
135 */
136enum cop0_com_func {
Ralf Baechle70342282013-01-22 12:59:30 +0100137 tlbr1_op = 0x01, tlbw_op = 0x02,
138 tlbp1_op = 0x08, dctr_op = 0x09,
139 dctw_op = 0x0a
Ralf Baechle90e8cac2013-01-17 15:11:16 +0100140};
141
142/*
143 * fmt field of cop1 opcodes.
144 */
145enum cop1_fmt {
146 s_fmt, d_fmt, e_fmt, q_fmt,
147 w_fmt, l_fmt
148};
149
150/*
151 * func field of cop1 instructions using d, s or w format.
152 */
153enum cop1_sdw_func {
Ralf Baechle70342282013-01-22 12:59:30 +0100154 fadd_op = 0x00, fsub_op = 0x01,
155 fmul_op = 0x02, fdiv_op = 0x03,
156 fsqrt_op = 0x04, fabs_op = 0x05,
157 fmov_op = 0x06, fneg_op = 0x07,
158 froundl_op = 0x08, ftruncl_op = 0x09,
159 fceill_op = 0x0a, ffloorl_op = 0x0b,
160 fround_op = 0x0c, ftrunc_op = 0x0d,
161 fceil_op = 0x0e, ffloor_op = 0x0f,
162 fmovc_op = 0x11, fmovz_op = 0x12,
163 fmovn_op = 0x13, frecip_op = 0x15,
164 frsqrt_op = 0x16, fcvts_op = 0x20,
165 fcvtd_op = 0x21, fcvte_op = 0x22,
166 fcvtw_op = 0x24, fcvtl_op = 0x25,
167 fcmp_op = 0x30
Ralf Baechle90e8cac2013-01-17 15:11:16 +0100168};
169
170/*
171 * func field of cop1x opcodes (MIPS IV).
172 */
173enum cop1x_func {
Ralf Baechle70342282013-01-22 12:59:30 +0100174 lwxc1_op = 0x00, ldxc1_op = 0x01,
Deng-Cheng Zhu51061b82014-03-06 17:05:27 -0800175 swxc1_op = 0x08, sdxc1_op = 0x09,
176 pfetch_op = 0x0f, madd_s_op = 0x20,
Ralf Baechle70342282013-01-22 12:59:30 +0100177 madd_d_op = 0x21, madd_e_op = 0x22,
178 msub_s_op = 0x28, msub_d_op = 0x29,
179 msub_e_op = 0x2a, nmadd_s_op = 0x30,
180 nmadd_d_op = 0x31, nmadd_e_op = 0x32,
181 nmsub_s_op = 0x38, nmsub_d_op = 0x39,
182 nmsub_e_op = 0x3a
Ralf Baechle90e8cac2013-01-17 15:11:16 +0100183};
184
185/*
186 * func field for mad opcodes (MIPS IV).
187 */
188enum mad_func {
Ralf Baechle70342282013-01-22 12:59:30 +0100189 madd_fp_op = 0x08, msub_fp_op = 0x0a,
190 nmadd_fp_op = 0x0c, nmsub_fp_op = 0x0e
Ralf Baechle90e8cac2013-01-17 15:11:16 +0100191};
192
193/*
194 * func field for special3 lx opcodes (Cavium Octeon).
195 */
196enum lx_func {
197 lwx_op = 0x00,
198 lhx_op = 0x04,
Ralf Baechle70342282013-01-22 12:59:30 +0100199 lbux_op = 0x06,
Ralf Baechle90e8cac2013-01-17 15:11:16 +0100200 ldx_op = 0x08,
Ralf Baechle70342282013-01-22 12:59:30 +0100201 lwux_op = 0x10,
202 lhux_op = 0x14,
Ralf Baechle90e8cac2013-01-17 15:11:16 +0100203 lbx_op = 0x16,
204};
205
206/*
Steven J. Hill2aa9fd02013-02-05 16:52:00 -0600207 * (microMIPS) Major opcodes.
208 */
209enum mm_major_op {
210 mm_pool32a_op, mm_pool16a_op, mm_lbu16_op, mm_move16_op,
211 mm_addi32_op, mm_lbu32_op, mm_sb32_op, mm_lb32_op,
212 mm_pool32b_op, mm_pool16b_op, mm_lhu16_op, mm_andi16_op,
213 mm_addiu32_op, mm_lhu32_op, mm_sh32_op, mm_lh32_op,
214 mm_pool32i_op, mm_pool16c_op, mm_lwsp16_op, mm_pool16d_op,
215 mm_ori32_op, mm_pool32f_op, mm_reserved1_op, mm_reserved2_op,
216 mm_pool32c_op, mm_lwgp16_op, mm_lw16_op, mm_pool16e_op,
217 mm_xori32_op, mm_jals32_op, mm_addiupc_op, mm_reserved3_op,
218 mm_reserved4_op, mm_pool16f_op, mm_sb16_op, mm_beqz16_op,
219 mm_slti32_op, mm_beq32_op, mm_swc132_op, mm_lwc132_op,
220 mm_reserved5_op, mm_reserved6_op, mm_sh16_op, mm_bnez16_op,
221 mm_sltiu32_op, mm_bne32_op, mm_sdc132_op, mm_ldc132_op,
222 mm_reserved7_op, mm_reserved8_op, mm_swsp16_op, mm_b16_op,
223 mm_andi32_op, mm_j32_op, mm_sd32_op, mm_ld32_op,
224 mm_reserved11_op, mm_reserved12_op, mm_sw16_op, mm_li16_op,
225 mm_jalx32_op, mm_jal32_op, mm_sw32_op, mm_lw32_op,
226};
227
228/*
229 * (microMIPS) POOL32I minor opcodes.
230 */
231enum mm_32i_minor_op {
232 mm_bltz_op, mm_bltzal_op, mm_bgez_op, mm_bgezal_op,
233 mm_blez_op, mm_bnezc_op, mm_bgtz_op, mm_beqzc_op,
234 mm_tlti_op, mm_tgei_op, mm_tltiu_op, mm_tgeiu_op,
235 mm_tnei_op, mm_lui_op, mm_teqi_op, mm_reserved13_op,
236 mm_synci_op, mm_bltzals_op, mm_reserved14_op, mm_bgezals_op,
237 mm_bc2f_op, mm_bc2t_op, mm_reserved15_op, mm_reserved16_op,
238 mm_reserved17_op, mm_reserved18_op, mm_bposge64_op, mm_bposge32_op,
239 mm_bc1f_op, mm_bc1t_op, mm_reserved19_op, mm_reserved20_op,
240 mm_bc1any2f_op, mm_bc1any2t_op, mm_bc1any4f_op, mm_bc1any4t_op,
241};
242
243/*
244 * (microMIPS) POOL32A minor opcodes.
245 */
246enum mm_32a_minor_op {
247 mm_sll32_op = 0x000,
248 mm_ins_op = 0x00c,
249 mm_ext_op = 0x02c,
250 mm_pool32axf_op = 0x03c,
251 mm_srl32_op = 0x040,
252 mm_sra_op = 0x080,
253 mm_rotr_op = 0x0c0,
254 mm_lwxs_op = 0x118,
255 mm_addu32_op = 0x150,
256 mm_subu32_op = 0x1d0,
257 mm_and_op = 0x250,
258 mm_or32_op = 0x290,
259 mm_xor32_op = 0x310,
260};
261
262/*
263 * (microMIPS) POOL32B functions.
264 */
265enum mm_32b_func {
266 mm_lwc2_func = 0x0,
267 mm_lwp_func = 0x1,
268 mm_ldc2_func = 0x2,
269 mm_ldp_func = 0x4,
270 mm_lwm32_func = 0x5,
271 mm_cache_func = 0x6,
272 mm_ldm_func = 0x7,
273 mm_swc2_func = 0x8,
274 mm_swp_func = 0x9,
275 mm_sdc2_func = 0xa,
276 mm_sdp_func = 0xc,
277 mm_swm32_func = 0xd,
278 mm_sdm_func = 0xf,
279};
280
281/*
282 * (microMIPS) POOL32C functions.
283 */
284enum mm_32c_func {
285 mm_pref_func = 0x2,
286 mm_ll_func = 0x3,
287 mm_swr_func = 0x9,
288 mm_sc_func = 0xb,
289 mm_lwu_func = 0xe,
290};
291
292/*
293 * (microMIPS) POOL32AXF minor opcodes.
294 */
295enum mm_32axf_minor_op {
296 mm_mfc0_op = 0x003,
297 mm_mtc0_op = 0x00b,
298 mm_tlbp_op = 0x00d,
299 mm_jalr_op = 0x03c,
300 mm_tlbr_op = 0x04d,
301 mm_jalrhb_op = 0x07c,
302 mm_tlbwi_op = 0x08d,
303 mm_tlbwr_op = 0x0cd,
304 mm_jalrs_op = 0x13c,
305 mm_jalrshb_op = 0x17c,
Paul Burton7ed82ad2014-01-09 15:27:32 +0000306 mm_sync_op = 0x1ad,
Steven J. Hill2aa9fd02013-02-05 16:52:00 -0600307 mm_syscall_op = 0x22d,
308 mm_eret_op = 0x3cd,
309};
310
311/*
312 * (microMIPS) POOL32F minor opcodes.
313 */
314enum mm_32f_minor_op {
315 mm_32f_00_op = 0x00,
316 mm_32f_01_op = 0x01,
317 mm_32f_02_op = 0x02,
318 mm_32f_10_op = 0x08,
319 mm_32f_11_op = 0x09,
320 mm_32f_12_op = 0x0a,
321 mm_32f_20_op = 0x10,
322 mm_32f_30_op = 0x18,
323 mm_32f_40_op = 0x20,
324 mm_32f_41_op = 0x21,
325 mm_32f_42_op = 0x22,
326 mm_32f_50_op = 0x28,
327 mm_32f_51_op = 0x29,
328 mm_32f_52_op = 0x2a,
329 mm_32f_60_op = 0x30,
330 mm_32f_70_op = 0x38,
331 mm_32f_73_op = 0x3b,
332 mm_32f_74_op = 0x3c,
333};
334
335/*
336 * (microMIPS) POOL32F secondary minor opcodes.
337 */
338enum mm_32f_10_minor_op {
339 mm_lwxc1_op = 0x1,
340 mm_swxc1_op,
341 mm_ldxc1_op,
342 mm_sdxc1_op,
343 mm_luxc1_op,
344 mm_suxc1_op,
345};
346
347enum mm_32f_func {
348 mm_lwxc1_func = 0x048,
349 mm_swxc1_func = 0x088,
350 mm_ldxc1_func = 0x0c8,
351 mm_sdxc1_func = 0x108,
352};
353
354/*
355 * (microMIPS) POOL32F secondary minor opcodes.
356 */
357enum mm_32f_40_minor_op {
358 mm_fmovf_op,
359 mm_fmovt_op,
360};
361
362/*
363 * (microMIPS) POOL32F secondary minor opcodes.
364 */
365enum mm_32f_60_minor_op {
366 mm_fadd_op,
367 mm_fsub_op,
368 mm_fmul_op,
369 mm_fdiv_op,
370};
371
372/*
373 * (microMIPS) POOL32F secondary minor opcodes.
374 */
375enum mm_32f_70_minor_op {
376 mm_fmovn_op,
377 mm_fmovz_op,
378};
379
380/*
381 * (microMIPS) POOL32FXF secondary minor opcodes for POOL32F.
382 */
383enum mm_32f_73_minor_op {
384 mm_fmov0_op = 0x01,
385 mm_fcvtl_op = 0x04,
386 mm_movf0_op = 0x05,
387 mm_frsqrt_op = 0x08,
388 mm_ffloorl_op = 0x0c,
389 mm_fabs0_op = 0x0d,
390 mm_fcvtw_op = 0x24,
391 mm_movt0_op = 0x25,
392 mm_fsqrt_op = 0x28,
393 mm_ffloorw_op = 0x2c,
394 mm_fneg0_op = 0x2d,
395 mm_cfc1_op = 0x40,
396 mm_frecip_op = 0x48,
397 mm_fceill_op = 0x4c,
398 mm_fcvtd0_op = 0x4d,
399 mm_ctc1_op = 0x60,
400 mm_fceilw_op = 0x6c,
401 mm_fcvts0_op = 0x6d,
402 mm_mfc1_op = 0x80,
403 mm_fmov1_op = 0x81,
404 mm_movf1_op = 0x85,
405 mm_ftruncl_op = 0x8c,
406 mm_fabs1_op = 0x8d,
407 mm_mtc1_op = 0xa0,
408 mm_movt1_op = 0xa5,
409 mm_ftruncw_op = 0xac,
410 mm_fneg1_op = 0xad,
Steven J. Hill9355e592013-11-07 12:48:29 +0000411 mm_mfhc1_op = 0xc0,
Steven J. Hill2aa9fd02013-02-05 16:52:00 -0600412 mm_froundl_op = 0xcc,
413 mm_fcvtd1_op = 0xcd,
Steven J. Hill9355e592013-11-07 12:48:29 +0000414 mm_mthc1_op = 0xe0,
Steven J. Hill2aa9fd02013-02-05 16:52:00 -0600415 mm_froundw_op = 0xec,
416 mm_fcvts1_op = 0xed,
417};
418
419/*
420 * (microMIPS) POOL16C minor opcodes.
421 */
422enum mm_16c_minor_op {
423 mm_lwm16_op = 0x04,
424 mm_swm16_op = 0x05,
Tony Wudfb033f2013-06-20 12:32:30 +0000425 mm_jr16_op = 0x0c,
426 mm_jrc_op = 0x0d,
427 mm_jalr16_op = 0x0e,
428 mm_jalrs16_op = 0x0f,
429 mm_jraddiusp_op = 0x18,
Steven J. Hill2aa9fd02013-02-05 16:52:00 -0600430};
431
432/*
433 * (microMIPS) POOL16D minor opcodes.
434 */
435enum mm_16d_minor_op {
436 mm_addius5_func,
437 mm_addiusp_func,
438};
439
440/*
Steven J. Hillcd574702013-03-25 13:44:04 -0500441 * (MIPS16e) opcodes.
442 */
443enum MIPS16e_ops {
444 MIPS16e_jal_op = 003,
445 MIPS16e_ld_op = 007,
446 MIPS16e_i8_op = 014,
447 MIPS16e_sd_op = 017,
448 MIPS16e_lb_op = 020,
449 MIPS16e_lh_op = 021,
450 MIPS16e_lwsp_op = 022,
451 MIPS16e_lw_op = 023,
452 MIPS16e_lbu_op = 024,
453 MIPS16e_lhu_op = 025,
454 MIPS16e_lwpc_op = 026,
455 MIPS16e_lwu_op = 027,
456 MIPS16e_sb_op = 030,
457 MIPS16e_sh_op = 031,
458 MIPS16e_swsp_op = 032,
459 MIPS16e_sw_op = 033,
460 MIPS16e_rr_op = 035,
461 MIPS16e_extend_op = 036,
462 MIPS16e_i64_op = 037,
463};
464
465enum MIPS16e_i64_func {
466 MIPS16e_ldsp_func,
467 MIPS16e_sdsp_func,
468 MIPS16e_sdrasp_func,
469 MIPS16e_dadjsp_func,
470 MIPS16e_ldpc_func,
471};
472
473enum MIPS16e_rr_func {
474 MIPS16e_jr_func,
475};
476
477enum MIPS6e_i8_func {
478 MIPS16e_swrasp_func = 02,
479};
480
481/*
Leonid Yegoshin102cedc2013-03-25 12:09:02 -0500482 * (microMIPS & MIPS16e) NOP instruction.
483 */
484#define MM_NOP16 0x0c00
485
486/*
Ralf Baechle90e8cac2013-01-17 15:11:16 +0100487 * Damn ... bitfields depend from byteorder :-(
488 */
489#ifdef __MIPSEB__
Ralf Baechle85dfaf02013-01-17 15:28:31 +0100490#define BITFIELD_FIELD(field, more) \
491 field; \
492 more
Ralf Baechle90e8cac2013-01-17 15:11:16 +0100493
494#elif defined(__MIPSEL__)
495
Ralf Baechle85dfaf02013-01-17 15:28:31 +0100496#define BITFIELD_FIELD(field, more) \
497 more \
498 field;
Ralf Baechle90e8cac2013-01-17 15:11:16 +0100499
500#else /* !defined (__MIPSEB__) && !defined (__MIPSEL__) */
501#error "MIPS but neither __MIPSEL__ nor __MIPSEB__?"
502#endif
503
Ralf Baechle85dfaf02013-01-17 15:28:31 +0100504struct j_format {
Ralf Baechle70342282013-01-22 12:59:30 +0100505 BITFIELD_FIELD(unsigned int opcode : 6, /* Jump format */
Ralf Baechle85dfaf02013-01-17 15:28:31 +0100506 BITFIELD_FIELD(unsigned int target : 26,
507 ;))
508};
509
510struct i_format { /* signed immediate format */
511 BITFIELD_FIELD(unsigned int opcode : 6,
512 BITFIELD_FIELD(unsigned int rs : 5,
513 BITFIELD_FIELD(unsigned int rt : 5,
514 BITFIELD_FIELD(signed int simmediate : 16,
515 ;))))
516};
517
518struct u_format { /* unsigned immediate format */
519 BITFIELD_FIELD(unsigned int opcode : 6,
520 BITFIELD_FIELD(unsigned int rs : 5,
521 BITFIELD_FIELD(unsigned int rt : 5,
522 BITFIELD_FIELD(unsigned int uimmediate : 16,
523 ;))))
524};
525
526struct c_format { /* Cache (>= R6000) format */
527 BITFIELD_FIELD(unsigned int opcode : 6,
528 BITFIELD_FIELD(unsigned int rs : 5,
529 BITFIELD_FIELD(unsigned int c_op : 3,
530 BITFIELD_FIELD(unsigned int cache : 2,
531 BITFIELD_FIELD(unsigned int simmediate : 16,
532 ;)))))
533};
534
535struct r_format { /* Register format */
536 BITFIELD_FIELD(unsigned int opcode : 6,
537 BITFIELD_FIELD(unsigned int rs : 5,
538 BITFIELD_FIELD(unsigned int rt : 5,
539 BITFIELD_FIELD(unsigned int rd : 5,
540 BITFIELD_FIELD(unsigned int re : 5,
541 BITFIELD_FIELD(unsigned int func : 6,
542 ;))))))
543};
544
545struct p_format { /* Performance counter format (R10000) */
546 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 rd : 5,
550 BITFIELD_FIELD(unsigned int re : 5,
551 BITFIELD_FIELD(unsigned int func : 6,
552 ;))))))
553};
554
Ralf Baechle70342282013-01-22 12:59:30 +0100555struct f_format { /* FPU register format */
Ralf Baechle85dfaf02013-01-17 15:28:31 +0100556 BITFIELD_FIELD(unsigned int opcode : 6,
557 BITFIELD_FIELD(unsigned int : 1,
558 BITFIELD_FIELD(unsigned int fmt : 4,
559 BITFIELD_FIELD(unsigned int rt : 5,
560 BITFIELD_FIELD(unsigned int rd : 5,
561 BITFIELD_FIELD(unsigned int re : 5,
562 BITFIELD_FIELD(unsigned int func : 6,
563 ;)))))))
564};
565
566struct ma_format { /* FPU multiply and add format (MIPS IV) */
567 BITFIELD_FIELD(unsigned int opcode : 6,
568 BITFIELD_FIELD(unsigned int fr : 5,
569 BITFIELD_FIELD(unsigned int ft : 5,
570 BITFIELD_FIELD(unsigned int fs : 5,
571 BITFIELD_FIELD(unsigned int fd : 5,
572 BITFIELD_FIELD(unsigned int func : 4,
573 BITFIELD_FIELD(unsigned int fmt : 2,
574 ;)))))))
575};
576
577struct b_format { /* BREAK and SYSCALL */
578 BITFIELD_FIELD(unsigned int opcode : 6,
579 BITFIELD_FIELD(unsigned int code : 20,
580 BITFIELD_FIELD(unsigned int func : 6,
581 ;)))
582};
583
Ralf Baechle8fba1e52013-01-17 16:29:27 +0100584struct ps_format { /* MIPS-3D / paired single format */
585 BITFIELD_FIELD(unsigned int opcode : 6,
586 BITFIELD_FIELD(unsigned int rs : 5,
587 BITFIELD_FIELD(unsigned int ft : 5,
588 BITFIELD_FIELD(unsigned int fs : 5,
589 BITFIELD_FIELD(unsigned int fd : 5,
590 BITFIELD_FIELD(unsigned int func : 6,
591 ;))))))
592};
593
594struct v_format { /* MDMX vector format */
595 BITFIELD_FIELD(unsigned int opcode : 6,
596 BITFIELD_FIELD(unsigned int sel : 4,
597 BITFIELD_FIELD(unsigned int fmt : 1,
598 BITFIELD_FIELD(unsigned int vt : 5,
599 BITFIELD_FIELD(unsigned int vs : 5,
600 BITFIELD_FIELD(unsigned int vd : 5,
601 BITFIELD_FIELD(unsigned int func : 6,
602 ;)))))))
603};
604
Leonid Yegoshinaa1af472013-12-04 11:06:57 +0000605struct spec3_format { /* SPEC3 */
606 BITFIELD_FIELD(unsigned int opcode:6,
607 BITFIELD_FIELD(unsigned int rs:5,
608 BITFIELD_FIELD(unsigned int rt:5,
609 BITFIELD_FIELD(signed int simmediate:9,
610 BITFIELD_FIELD(unsigned int func:7,
611 ;)))))
612};
613
Steven J. Hill2aa9fd02013-02-05 16:52:00 -0600614/*
615 * microMIPS instruction formats (32-bit length)
616 *
617 * NOTE:
618 * Parenthesis denote whether the format is a microMIPS instruction or
619 * if it is MIPS32 instruction re-encoded for use in the microMIPS ASE.
620 */
621struct fb_format { /* FPU branch format (MIPS32) */
622 BITFIELD_FIELD(unsigned int opcode : 6,
623 BITFIELD_FIELD(unsigned int bc : 5,
624 BITFIELD_FIELD(unsigned int cc : 3,
625 BITFIELD_FIELD(unsigned int flag : 2,
626 BITFIELD_FIELD(signed int simmediate : 16,
627 ;)))))
628};
629
630struct fp0_format { /* FPU multiply and add format (MIPS32) */
631 BITFIELD_FIELD(unsigned int opcode : 6,
632 BITFIELD_FIELD(unsigned int fmt : 5,
633 BITFIELD_FIELD(unsigned int ft : 5,
634 BITFIELD_FIELD(unsigned int fs : 5,
635 BITFIELD_FIELD(unsigned int fd : 5,
636 BITFIELD_FIELD(unsigned int func : 6,
637 ;))))))
638};
639
640struct mm_fp0_format { /* FPU multipy and add format (microMIPS) */
641 BITFIELD_FIELD(unsigned int opcode : 6,
642 BITFIELD_FIELD(unsigned int ft : 5,
643 BITFIELD_FIELD(unsigned int fs : 5,
644 BITFIELD_FIELD(unsigned int fd : 5,
645 BITFIELD_FIELD(unsigned int fmt : 3,
646 BITFIELD_FIELD(unsigned int op : 2,
647 BITFIELD_FIELD(unsigned int func : 6,
648 ;)))))))
649};
650
651struct fp1_format { /* FPU mfc1 and cfc1 format (MIPS32) */
652 BITFIELD_FIELD(unsigned int opcode : 6,
653 BITFIELD_FIELD(unsigned int op : 5,
654 BITFIELD_FIELD(unsigned int rt : 5,
655 BITFIELD_FIELD(unsigned int fs : 5,
656 BITFIELD_FIELD(unsigned int fd : 5,
657 BITFIELD_FIELD(unsigned int func : 6,
658 ;))))))
659};
660
661struct mm_fp1_format { /* FPU mfc1 and cfc1 format (microMIPS) */
662 BITFIELD_FIELD(unsigned int opcode : 6,
663 BITFIELD_FIELD(unsigned int rt : 5,
664 BITFIELD_FIELD(unsigned int fs : 5,
665 BITFIELD_FIELD(unsigned int fmt : 2,
666 BITFIELD_FIELD(unsigned int op : 8,
667 BITFIELD_FIELD(unsigned int func : 6,
668 ;))))))
669};
670
671struct mm_fp2_format { /* FPU movt and movf format (microMIPS) */
672 BITFIELD_FIELD(unsigned int opcode : 6,
673 BITFIELD_FIELD(unsigned int fd : 5,
674 BITFIELD_FIELD(unsigned int fs : 5,
675 BITFIELD_FIELD(unsigned int cc : 3,
676 BITFIELD_FIELD(unsigned int zero : 2,
677 BITFIELD_FIELD(unsigned int fmt : 2,
678 BITFIELD_FIELD(unsigned int op : 3,
679 BITFIELD_FIELD(unsigned int func : 6,
680 ;))))))))
681};
682
683struct mm_fp3_format { /* FPU abs and neg format (microMIPS) */
684 BITFIELD_FIELD(unsigned int opcode : 6,
685 BITFIELD_FIELD(unsigned int rt : 5,
686 BITFIELD_FIELD(unsigned int fs : 5,
687 BITFIELD_FIELD(unsigned int fmt : 3,
688 BITFIELD_FIELD(unsigned int op : 7,
689 BITFIELD_FIELD(unsigned int func : 6,
690 ;))))))
691};
692
693struct mm_fp4_format { /* FPU c.cond format (microMIPS) */
694 BITFIELD_FIELD(unsigned int opcode : 6,
695 BITFIELD_FIELD(unsigned int rt : 5,
696 BITFIELD_FIELD(unsigned int fs : 5,
697 BITFIELD_FIELD(unsigned int cc : 3,
698 BITFIELD_FIELD(unsigned int fmt : 3,
699 BITFIELD_FIELD(unsigned int cond : 4,
700 BITFIELD_FIELD(unsigned int func : 6,
701 ;)))))))
702};
703
704struct mm_fp5_format { /* FPU lwxc1 and swxc1 format (microMIPS) */
705 BITFIELD_FIELD(unsigned int opcode : 6,
706 BITFIELD_FIELD(unsigned int index : 5,
707 BITFIELD_FIELD(unsigned int base : 5,
708 BITFIELD_FIELD(unsigned int fd : 5,
709 BITFIELD_FIELD(unsigned int op : 5,
710 BITFIELD_FIELD(unsigned int func : 6,
711 ;))))))
712};
713
714struct fp6_format { /* FPU madd and msub format (MIPS IV) */
715 BITFIELD_FIELD(unsigned int opcode : 6,
716 BITFIELD_FIELD(unsigned int fr : 5,
717 BITFIELD_FIELD(unsigned int ft : 5,
718 BITFIELD_FIELD(unsigned int fs : 5,
719 BITFIELD_FIELD(unsigned int fd : 5,
720 BITFIELD_FIELD(unsigned int func : 6,
721 ;))))))
722};
723
724struct mm_fp6_format { /* FPU madd and msub format (microMIPS) */
725 BITFIELD_FIELD(unsigned int opcode : 6,
726 BITFIELD_FIELD(unsigned int ft : 5,
727 BITFIELD_FIELD(unsigned int fs : 5,
728 BITFIELD_FIELD(unsigned int fd : 5,
729 BITFIELD_FIELD(unsigned int fr : 5,
730 BITFIELD_FIELD(unsigned int func : 6,
731 ;))))))
732};
733
734struct mm_i_format { /* Immediate format (microMIPS) */
735 BITFIELD_FIELD(unsigned int opcode : 6,
736 BITFIELD_FIELD(unsigned int rt : 5,
737 BITFIELD_FIELD(unsigned int rs : 5,
738 BITFIELD_FIELD(signed int simmediate : 16,
739 ;))))
740};
741
742struct mm_m_format { /* Multi-word load/store format (microMIPS) */
743 BITFIELD_FIELD(unsigned int opcode : 6,
744 BITFIELD_FIELD(unsigned int rd : 5,
745 BITFIELD_FIELD(unsigned int base : 5,
746 BITFIELD_FIELD(unsigned int func : 4,
747 BITFIELD_FIELD(signed int simmediate : 12,
748 ;)))))
749};
750
751struct mm_x_format { /* Scaled indexed load format (microMIPS) */
752 BITFIELD_FIELD(unsigned int opcode : 6,
753 BITFIELD_FIELD(unsigned int index : 5,
754 BITFIELD_FIELD(unsigned int base : 5,
755 BITFIELD_FIELD(unsigned int rd : 5,
756 BITFIELD_FIELD(unsigned int func : 11,
757 ;)))))
758};
759
760/*
761 * microMIPS instruction formats (16-bit length)
762 */
763struct mm_b0_format { /* Unconditional branch format (microMIPS) */
764 BITFIELD_FIELD(unsigned int opcode : 6,
765 BITFIELD_FIELD(signed int simmediate : 10,
766 BITFIELD_FIELD(unsigned int : 16, /* Ignored */
767 ;)))
768};
769
770struct mm_b1_format { /* Conditional branch format (microMIPS) */
771 BITFIELD_FIELD(unsigned int opcode : 6,
772 BITFIELD_FIELD(unsigned int rs : 3,
773 BITFIELD_FIELD(signed int simmediate : 7,
774 BITFIELD_FIELD(unsigned int : 16, /* Ignored */
775 ;))))
776};
777
778struct mm16_m_format { /* Multi-word load/store format */
779 BITFIELD_FIELD(unsigned int opcode : 6,
780 BITFIELD_FIELD(unsigned int func : 4,
781 BITFIELD_FIELD(unsigned int rlist : 2,
782 BITFIELD_FIELD(unsigned int imm : 4,
783 BITFIELD_FIELD(unsigned int : 16, /* Ignored */
784 ;)))))
785};
786
787struct mm16_rb_format { /* Signed immediate format */
788 BITFIELD_FIELD(unsigned int opcode : 6,
789 BITFIELD_FIELD(unsigned int rt : 3,
790 BITFIELD_FIELD(unsigned int base : 3,
791 BITFIELD_FIELD(signed int simmediate : 4,
792 BITFIELD_FIELD(unsigned int : 16, /* Ignored */
793 ;)))))
794};
795
796struct mm16_r3_format { /* Load from global pointer format */
797 BITFIELD_FIELD(unsigned int opcode : 6,
798 BITFIELD_FIELD(unsigned int rt : 3,
799 BITFIELD_FIELD(signed int simmediate : 7,
800 BITFIELD_FIELD(unsigned int : 16, /* Ignored */
801 ;))))
802};
803
804struct mm16_r5_format { /* Load/store from stack pointer format */
805 BITFIELD_FIELD(unsigned int opcode : 6,
806 BITFIELD_FIELD(unsigned int rt : 5,
807 BITFIELD_FIELD(signed int simmediate : 5,
808 BITFIELD_FIELD(unsigned int : 16, /* Ignored */
809 ;))))
810};
811
Steven J. Hillcd574702013-03-25 13:44:04 -0500812/*
813 * MIPS16e instruction formats (16-bit length)
814 */
815struct m16e_rr {
816 BITFIELD_FIELD(unsigned int opcode : 5,
817 BITFIELD_FIELD(unsigned int rx : 3,
818 BITFIELD_FIELD(unsigned int nd : 1,
819 BITFIELD_FIELD(unsigned int l : 1,
820 BITFIELD_FIELD(unsigned int ra : 1,
821 BITFIELD_FIELD(unsigned int func : 5,
822 ;))))))
823};
824
825struct m16e_jal {
826 BITFIELD_FIELD(unsigned int opcode : 5,
827 BITFIELD_FIELD(unsigned int x : 1,
828 BITFIELD_FIELD(unsigned int imm20_16 : 5,
829 BITFIELD_FIELD(signed int imm25_21 : 5,
830 ;))))
831};
832
833struct m16e_i64 {
834 BITFIELD_FIELD(unsigned int opcode : 5,
835 BITFIELD_FIELD(unsigned int func : 3,
836 BITFIELD_FIELD(unsigned int imm : 8,
837 ;)))
838};
839
840struct m16e_ri64 {
841 BITFIELD_FIELD(unsigned int opcode : 5,
842 BITFIELD_FIELD(unsigned int func : 3,
843 BITFIELD_FIELD(unsigned int ry : 3,
844 BITFIELD_FIELD(unsigned int imm : 5,
845 ;))))
846};
847
848struct m16e_ri {
849 BITFIELD_FIELD(unsigned int opcode : 5,
850 BITFIELD_FIELD(unsigned int rx : 3,
851 BITFIELD_FIELD(unsigned int imm : 8,
852 ;)))
853};
854
855struct m16e_rri {
856 BITFIELD_FIELD(unsigned int opcode : 5,
857 BITFIELD_FIELD(unsigned int rx : 3,
858 BITFIELD_FIELD(unsigned int ry : 3,
859 BITFIELD_FIELD(unsigned int imm : 5,
860 ;))))
861};
862
863struct m16e_i8 {
864 BITFIELD_FIELD(unsigned int opcode : 5,
865 BITFIELD_FIELD(unsigned int func : 3,
866 BITFIELD_FIELD(unsigned int imm : 8,
867 ;)))
868};
869
Ralf Baechle90e8cac2013-01-17 15:11:16 +0100870union mips_instruction {
871 unsigned int word;
872 unsigned short halfword[2];
873 unsigned char byte[4];
874 struct j_format j_format;
875 struct i_format i_format;
876 struct u_format u_format;
877 struct c_format c_format;
878 struct r_format r_format;
879 struct p_format p_format;
880 struct f_format f_format;
881 struct ma_format ma_format;
882 struct b_format b_format;
Ralf Baechle8fba1e52013-01-17 16:29:27 +0100883 struct ps_format ps_format;
884 struct v_format v_format;
Leonid Yegoshinaa1af472013-12-04 11:06:57 +0000885 struct spec3_format spec3_format;
Steven J. Hill2aa9fd02013-02-05 16:52:00 -0600886 struct fb_format fb_format;
887 struct fp0_format fp0_format;
888 struct mm_fp0_format mm_fp0_format;
889 struct fp1_format fp1_format;
890 struct mm_fp1_format mm_fp1_format;
891 struct mm_fp2_format mm_fp2_format;
892 struct mm_fp3_format mm_fp3_format;
893 struct mm_fp4_format mm_fp4_format;
894 struct mm_fp5_format mm_fp5_format;
895 struct fp6_format fp6_format;
896 struct mm_fp6_format mm_fp6_format;
897 struct mm_i_format mm_i_format;
898 struct mm_m_format mm_m_format;
899 struct mm_x_format mm_x_format;
900 struct mm_b0_format mm_b0_format;
901 struct mm_b1_format mm_b1_format;
902 struct mm16_m_format mm16_m_format ;
903 struct mm16_rb_format mm16_rb_format;
904 struct mm16_r3_format mm16_r3_format;
905 struct mm16_r5_format mm16_r5_format;
Ralf Baechle90e8cac2013-01-17 15:11:16 +0100906};
907
Steven J. Hillcd574702013-03-25 13:44:04 -0500908union mips16e_instruction {
909 unsigned int full : 16;
910 struct m16e_rr rr;
911 struct m16e_jal jal;
912 struct m16e_i64 i64;
913 struct m16e_ri64 ri64;
914 struct m16e_ri ri;
915 struct m16e_rri rri;
916 struct m16e_i8 i8;
917};
918
Ralf Baechle90e8cac2013-01-17 15:11:16 +0100919#endif /* _UAPI_ASM_INST_H */