ft32.h 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. /* Definitions for decoding the ft32 opcode table.
  2. Copyright (C) 2013-2015 Free Software Foundation, Inc.
  3. Contributed by FTDI (support@ftdichip.com)
  4. This program is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation; either version 2 of the License, or
  7. (at your option) any later version.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with this program; if not, write to the Free Software
  14. Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
  15. 02110-1301, USA. */
  16. typedef struct ft32_opc_info_t
  17. {
  18. const char *name;
  19. int dw;
  20. unsigned int mask;
  21. unsigned int bits;
  22. int fields;
  23. } ft32_opc_info_t;
  24. #define FT32_PAT_ALUOP 0x08
  25. #define FT32_PAT_LDA 0x18
  26. #define FT32_PAT_TOCI 0x01
  27. #define FT32_PAT_CMPOP 0x0b
  28. #define FT32_PAT_STA 0x17
  29. #define FT32_PAT_EXA 0x07
  30. #define FT32_PAT_LDK 0x0c
  31. #define FT32_PAT_FFUOP 0x1e
  32. #define FT32_PAT_LDI 0x15
  33. #define FT32_PAT_STI 0x16
  34. #define FT32_PAT_EXI 0x1d
  35. #define FT32_PAT_POP 0x11
  36. #define FT32_PAT_LPM 0x0d
  37. #define FT32_PAT_LINK 0x12
  38. #define FT32_PAT_TOC 0x00
  39. #define FT32_PAT_PUSH 0x10
  40. #define FT32_PAT_RETURN 0x14
  41. #define FT32_PAT_UNLINK 0x13
  42. #define FT32_PAT_LPMI 0x19
  43. #define FT32_FLD_CBCRCV (1 << 0)
  44. #define FT32_FLD_INT (1 << 1)
  45. #define FT32_FLD_INT_BIT 26
  46. #define FT32_FLD_INT_SIZ 1
  47. #define FT32_FLD_DW (1 << 2)
  48. #define FT32_FLD_DW_BIT 25
  49. #define FT32_FLD_DW_SIZ 2
  50. #define FT32_FLD_CB (1 << 3)
  51. #define FT32_FLD_CB_BIT 22
  52. #define FT32_FLD_CB_SIZ 5
  53. #define FT32_FLD_R_D (1 << 4)
  54. #define FT32_FLD_R_D_BIT 20
  55. #define FT32_FLD_R_D_SIZ 5
  56. #define FT32_FLD_CR (1 << 5)
  57. #define FT32_FLD_CR_BIT 20
  58. #define FT32_FLD_CR_SIZ 2
  59. #define FT32_FLD_CV (1 << 6)
  60. #define FT32_FLD_CV_BIT 19
  61. #define FT32_FLD_CV_SIZ 1
  62. #define FT32_FLD_BT (1 << 7)
  63. #define FT32_FLD_BT_BIT 18
  64. #define FT32_FLD_BT_SIZ 1
  65. #define FT32_FLD_R_1 (1 << 8)
  66. #define FT32_FLD_R_1_BIT 15
  67. #define FT32_FLD_R_1_SIZ 5
  68. #define FT32_FLD_RIMM (1 << 9)
  69. #define FT32_FLD_RIMM_BIT 4
  70. #define FT32_FLD_RIMM_SIZ 11
  71. #define FT32_FLD_R_2 (1 << 10)
  72. #define FT32_FLD_R_2_BIT 4
  73. #define FT32_FLD_R_2_SIZ 5
  74. #define FT32_FLD_K20 (1 << 11)
  75. #define FT32_FLD_K20_BIT 0
  76. #define FT32_FLD_K20_SIZ 20
  77. #define FT32_FLD_PA (1 << 12)
  78. #define FT32_FLD_PA_BIT 0
  79. #define FT32_FLD_PA_SIZ 18
  80. #define FT32_FLD_AA (1 << 13)
  81. #define FT32_FLD_AA_BIT 0
  82. #define FT32_FLD_AA_SIZ 17
  83. #define FT32_FLD_K16 (1 << 14)
  84. #define FT32_FLD_K16_BIT 0
  85. #define FT32_FLD_K16_SIZ 16
  86. #define FT32_FLD_K8 (1 << 15)
  87. #define FT32_FLD_K8_BIT 0
  88. #define FT32_FLD_K8_SIZ 8
  89. #define FT32_FLD_AL (1 << 16)
  90. #define FT32_FLD_AL_BIT 0
  91. #define FT32_FLD_AL_SIZ 4
  92. #define FT32_IS_CALL(inst) (((inst) & 0xfffc0000) == 0x00340000)
  93. #define FT32_IS_PUSH(inst) (((inst) & 0xfff00000) == 0x84000000)
  94. #define FT32_PUSH_REG(inst) (((inst) >> 15) & 0x1f)
  95. #define FT32_IS_LINK(inst) (((inst) & 0xffff0000) == 0x95d00000)
  96. #define FT32_LINK_SIZE(inst) ((inst) & 0xffff)
  97. #define FT32_FLD_R_D_POST (1 << 17)
  98. #define FT32_FLD_R_1_POST (1 << 18)