inst.h 24 KB

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