tmsgheaders.h 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294
  1. #ifndef DMADRIVER_TMSGHEADERS_H
  2. #define DMADRIVER_TMSGHEADERS_H
  3. #include <stdint.h>
  4. #include <unistd.h>
  5. #include <stdio.h>
  6. // Device IDs
  7. #define DeviceIdLmx2594 0x0
  8. #define DeviceIdDDS 0x1
  9. #define DeviceIdPot 0x2
  10. #define DeviceIdDac 0x3
  11. #define DeviceIdAtt 0x4
  12. #define DeviceIdShReg 0x5
  13. #define DeviceIdMax2870 0x6
  14. #define DeviceIdGpio1 0x7
  15. #define DeviceIdTemp 0x8
  16. #define DeviceIdGpio2 0x9
  17. // Init Word Numbers 1 MOSI
  18. #define Gpio1InitWordNum 2
  19. #define Gpio2InitWordNum 1
  20. #define PotWordInitNum 1
  21. #define DacWordInitNum 1
  22. #define AttWordInitNum 1
  23. #define ShRegWordInitNum 1
  24. #define Lmx2594InitWordNum 113
  25. #define DDSInitWordNum 37
  26. #define MaxInitWordNum 6
  27. #define TempSensWordNum 1
  28. // Bit Positions
  29. #define RF_SW1_BITP 0
  30. #define RF_SW2_BITP 1
  31. #define CTRL_AM_SW3_BITP 2
  32. #define DDS_SYNC_CTRL_FPGA_BITP 3
  33. #define DDS_RESET_FPGA_BITP 4
  34. #define DDS_SYNC_FPGA_BITP 5
  35. #define SW_CAP4_BITP 6
  36. #define AM_ALC_SW_BITP 7
  37. #define SW_CAP3_BITP 8
  38. #define SW_CAP2_BITP 9
  39. #define SW_CAP1_BITP 10
  40. #define AM_ALC_1_FIX_BITP 11
  41. #define PLL_VTUNE_CTRL_BITP 12
  42. #define PLL_SYNC_CTRL_BITP 13
  43. #define PLL_SYNC_BITP 14
  44. #define PLL_LOOP_CTRL_BITP 15
  45. #define DDS_X2_FPGA_BITP 16
  46. #define DDS_SAW2_FPGA_BITP 17
  47. #define REF_OFFSET_CTRL_FPGA_BITP 18
  48. #define GPIO_ADRF_V1_BITP 19
  49. #define GPIO_ADRF_V2_BITP 20
  50. #define DDS_SAW1_FPGA_BITP 21
  51. // Headers 1-MOSI
  52. #define LMX2594_RST_HEADER ((0 << 23) | (DeviceIdLmx2594 << 18) | (2 << 1) | 1)
  53. #define GPIO_INIT_HEADER ((0 << 23) | (DeviceIdGpio1 << 18) | (Gpio1InitWordNum << 1) | 1)
  54. #define InitGpio2Header ((0 << 23) | (DeviceIdGpio2 << 18) | (Gpio2InitWordNum << 1) | 1)
  55. #define TempSensHeader ((0 << 23) | (DeviceIdTemp << 18) | (TempSensWordNum << 1) | 1)
  56. #define InitLMX2594Header ((0 << 23) | (DeviceIdLmx2594 << 18) | (Lmx2594InitWordNum << 1) | 1)
  57. #define InitDDSHeader ((0 << 23) | (DeviceIdDDS << 18) | (DDSInitWordNum << 1) | 1)
  58. #define InitMAX2870Header ((0 << 23) | (DeviceIdMax2870 << 18) | (MaxInitWordNum << 1) | 1)
  59. #define InitPotHeader ((0 << 23) | (DeviceIdPot << 18) | (PotWordInitNum << 1) | 1)
  60. #define InitDacHeader ((0 << 23) | (DeviceIdDac << 18) | (DacWordInitNum << 1) | 1)
  61. #define InitAttHeader ((0 << 23) | (DeviceIdAtt << 18) | (AttWordInitNum << 1) | 1)
  62. #define InitShRegHeader ((0 << 23) | (DeviceIdShReg << 18) | (ShRegWordInitNum << 1) | 1)
  63. // Word Numbers 4-MOSI
  64. #define LMXWordNum 14
  65. #define DDSWordNum 4
  66. #define POTWordNum 2
  67. #define DACWordNum 1
  68. #define ATTWordNum 1
  69. #define ShRegWordNum 1
  70. #define MaxWordNum 2
  71. #define GPIOWordNum 1
  72. // Define bit values for GPIO Reg
  73. #define RF_SW1 0x0
  74. #define RF_SW2 0x0
  75. #define CTRL_AM_SW3 0x0
  76. #define DDS_SYNC_CTRL_FPGA 0x0
  77. #define DDS_RESET_FPGA 0x0
  78. #define DDS_SYNC_FPGA 0x0
  79. #define SW_CAP4 0x0
  80. #define AM_ALC_SW 0x1
  81. #define SW_CAP3 0x0
  82. #define SW_CAP2 0x0
  83. #define SW_CAP1 0x0
  84. #define AM_ALC_1_FIX 0x1
  85. #define PLL_VTUNE_CTRL 0x1
  86. #define PLL_SYNC_CTRL 0x0
  87. #define PLL_SYNC 0x0
  88. #define PLL_LOOP_CTRL 0x1
  89. #define DDS_X2_FPGA 0x0
  90. #define DDS_SAW2_FPGA 0x0
  91. #define REF_OFFSET_CTRL_FPGA 0x1
  92. #define GPIO_ADRF_V1 0x0
  93. #define GPIO_ADRF_V2 0x0
  94. #define DDS_SAW1_FPGA 0x0
  95. #define FPGA_AM_CTRL 0x0
  96. #define RF_SW1_BITP 0
  97. #define RF_SW2_BITP 1
  98. #define CTRL_AM_SW3_BITP 2
  99. #define DDS_SYNC_CTRL_FPGA_BITP 3
  100. #define DDS_RESET_FPGA_BITP 4
  101. #define DDS_SYNC_FPGA_BITP 5
  102. #define SW_CAP4_BITP 6
  103. #define AM_ALC_SW_BITP 7
  104. #define SW_CAP3_BITP 8
  105. #define SW_CAP2_BITP 9
  106. #define SW_CAP1_BITP 10
  107. #define AM_ALC_1_FIX_BITP 11
  108. #define PLL_VTUNE_CTRL_BITP 12
  109. #define PLL_SYNC_CTRL_BITP 13
  110. #define PLL_SYNC_BITP 14
  111. #define PLL_LOOP_CTRL_BITP 15
  112. #define DDS_X2_FPGA_BITP 16
  113. #define DDS_SAW2_FPGA_BITP 17
  114. #define REF_OFFSET_CTRL_FPGA_BITP 18
  115. #define GPIO_ADRF_V1_BITP 19
  116. #define GPIO_ADRF_V2_BITP 20
  117. #define DDS_SAW1_FPGA_BITP 21
  118. #define FPGA_AM_CTRL_BITP 22
  119. #define RF_SW1_BITM (0x1 << RF_SW1_BITP )
  120. #define RF_SW2_BITM (0x1 << RF_SW2_BITP )
  121. #define CTRL_AM_SW3_BITM (0x1 << CTRL_AM_SW3_BITP )
  122. #define DDS_SYNC_CTRL_FPGA_BITM (0x1 << DDS_SYNC_CTRL_FPGA_BITP )
  123. #define DDS_RESET_FPGA_BITM (0x1 << DDS_RESET_FPGA_BITP )
  124. #define DDS_SYNC_FPGA_BITM (0x1 << DDS_SYNC_FPGA_BITP )
  125. #define SW_CAP4_BITM (0x1 << SW_CAP4_BITP )
  126. #define AM_ALC_SW_BITM (0x1 << AM_ALC_SW_BITP )
  127. #define SW_CAP3_BITM (0x1 << SW_CAP3_BITP )
  128. #define SW_CAP2_BITM (0x1 << SW_CAP2_BITP )
  129. #define SW_CAP1_BITM (0x1 << SW_CAP1_BITP )
  130. #define AM_ALC_1_FIX_BITM (0x1 << AM_ALC_1_FIX_BITP )
  131. #define PLL_VTUNE_CTRL_BITM (0x1 << PLL_VTUNE_CTRL_BITP )
  132. #define PLL_SYNC_CTRL_BITM (0x1 << PLL_SYNC_CTRL_BITP )
  133. #define PLL_SYNC_BITM (0x1 << PLL_SYNC_BITP )
  134. #define PLL_LOOP_CTRL_BITM (0x1 << PLL_LOOP_CTRL_BITP )
  135. #define DDS_X2_FPGA_BITM (0x1 << DDS_X2_FPGA_BITP )
  136. #define DDS_SAW2_FPGA_BITM (0x1 << DDS_SAW2_FPGA_BITP )
  137. #define REF_OFFSET_CTRL_FPGA_BITM (0x1 << REF_OFFSET_CTRL_FPGA_BITP )
  138. #define GPIO_ADRF_V1_BITM (0x1 << GPIO_ADRF_V1_BITP )
  139. #define GPIO_ADRF_V2_BITM (0x1 << GPIO_ADRF_V2_BITP )
  140. #define DDS_SAW1_FPGA_BITM (0x1 << DDS_SAW1_FPGA_BITP )
  141. #define FPGA_AM_CTRL_BITM (0x1 << FPGA_AM_CTRL_BITP )
  142. #define RF_SW1_0 (0x0 << RF_SW1_BITP)
  143. #define RF_SW1_1 (0x1 << RF_SW1_BITP)
  144. #define RF_SW2_0 (0x0 << RF_SW2_BITP)
  145. #define RF_SW2_1 (0x1 << RF_SW2_BITP)
  146. #define CTRL_AM_SW3_0 (0x0 << CTRL_AM_SW3_BITP)
  147. #define CTRL_AM_SW3_1 (0x1 << CTRL_AM_SW3_BITP)
  148. #define DDS_SYNC_CTRL_FPGA_0 (0x0 << DDS_SYNC_CTRL_FPGA_BITP)
  149. #define DDS_SYNC_CTRL_FPGA_1 (0x1 << DDS_SYNC_CTRL_FPGA_BITP)
  150. #define DDS_RESET_FPGA_0 (0x0 << DDS_RESET_FPGA_BITP)
  151. #define DDS_RESET_FPGA_1 (0x1 << DDS_RESET_FPGA_BITP)
  152. #define DDS_SYNC_FPGA_0 (0x0 << DDS_SYNC_FPGA_BITP)
  153. #define DDS_SYNC_FPGA_1 (0x1 << DDS_SYNC_FPGA_BITP)
  154. #define SW_CAP4_0 (0x0 << SW_CAP4_BITP)
  155. #define SW_CAP4_1 (0x1 << SW_CAP4_BITP)
  156. #define AM_ALC_SW_0 (0x0 << AM_ALC_SW_BITP)
  157. #define AM_ALC_SW_1 (0x1 << AM_ALC_SW_BITP)
  158. #define SW_CAP3_0 (0x0 << SW_CAP3_BITP)
  159. #define SW_CAP3_1 (0x1 << SW_CAP3_BITP)
  160. #define SW_CAP2_0 (0x0 << SW_CAP2_BITP)
  161. #define SW_CAP2_1 (0x1 << SW_CAP2_BITP)
  162. #define SW_CAP1_0 (0x0 << SW_CAP1_BITP)
  163. #define SW_CAP1_1 (0x1 << SW_CAP1_BITP)
  164. #define AM_ALC_1_FIX_0 (0x0 << AM_ALC_1_FIX_BITP)
  165. #define AM_ALC_1_FIX_1 (0x1 << AM_ALC_1_FIX_BITP)
  166. #define PLL_VTUNE_CTRL_0 (0x0 << PLL_VTUNE_CTRL_BITP)
  167. #define PLL_VTUNE_CTRL_1 (0x1 << PLL_VTUNE_CTRL_BITP)
  168. #define PLL_SYNC_CTRL_0 (0x0 << PLL_SYNC_CTRL_BITP)
  169. #define PLL_SYNC_CTRL_1 (0x1 << PLL_SYNC_CTRL_BITP)
  170. #define PLL_SYNC_0 (0x0 << PLL_SYNC_BITP)
  171. #define PLL_SYNC_1 (0x1 << PLL_SYNC_BITP)
  172. #define PLL_LOOP_CTRL_0 (0x0 << PLL_LOOP_CTRL_BITP)
  173. #define PLL_LOOP_CTRL_1 (0x1 << PLL_LOOP_CTRL_BITP)
  174. #define DDS_X2_FPGA_0 (0x0 << DDS_X2_FPGA_BITP)
  175. #define DDS_X2_FPGA_1 (0x1 << DDS_X2_FPGA_BITP)
  176. #define DDS_SAW2_FPGA_0 (0x0 << DDS_SAW2_FPGA_BITP)
  177. #define DDS_SAW2_FPGA_1 (0x1 << DDS_SAW2_FPGA_BITP)
  178. #define REF_OFFSET_CTRL_FPGA_0 (0x0 << REF_OFFSET_CTRL_FPGA_BITP)
  179. #define REF_OFFSET_CTRL_FPGA_1 (0x1 << REF_OFFSET_CTRL_FPGA_BITP)
  180. #define GPIO_ADRF_V1_0 (0x0 << GPIO_ADRF_V1_BITP)
  181. #define GPIO_ADRF_V1_1 (0x1 << GPIO_ADRF_V1_BITP)
  182. #define GPIO_ADRF_V2_0 (0x0 << GPIO_ADRF_V2_BITP)
  183. #define GPIO_ADRF_V2_1 (0x1 << GPIO_ADRF_V2_BITP)
  184. #define DDS_SAW1_FPGA_0 (0x0 << DDS_SAW1_FPGA_BITP)
  185. #define DDS_SAW1_FPGA_1 (0x1 << DDS_SAW1_FPGA_BITP)
  186. #define FPGA_AM_CTRL_0 (0x0 << FPGA_AM_CTRL_BITP)
  187. #define FPGA_AM_CTRL_1 (0x1 << FPGA_AM_CTRL_BITP)
  188. // Define values for Shift Reg
  189. #define SHIFT_REG_SW_RF 0x0
  190. #define SHIFT_REG_SW4_RF 0x0
  191. #define SHIFT_REG_GPIO_SW_015_RF 0x1
  192. #define SHIFT_REG_GPIO_SW_X2_RF 0x0
  193. #define SHIFT_REG_SW1_RF 0x1
  194. #define SHIFT_REG_SW_MIXER_RF 0x0
  195. #define SHIFT_REG_GPIO_SW_X2_RF_BITP 0
  196. #define SHIFT_REG_SW_RF_BITP 1
  197. #define SHIFT_REG_SW4_RF_BITP 2
  198. #define SHIFT_REG_GPIO_SW_015_RF_BITP 3
  199. #define SHIFT_REG_SW_MIXER_RF_BITP 4
  200. #define SHIFT_REG_SW1_RF_BITP 5
  201. #define SHIFT_REG_SW2_RF_BITP 6
  202. #define SHIFT_REG_SW3_RF_BITP 7
  203. #define SHIFT_REG ((SHIFT_REG_SW_RF << 1) | \
  204. (SHIFT_REG_SW4_RF<<2) | \
  205. (SHIFT_REG_GPIO_SW_015_RF<<3) | \
  206. (SHIFT_REG_GPIO_SW_X2_RF<<0) | \
  207. (SHIFT_REG_SW1_RF <<5) | \
  208. (SHIFT_REG_SW_MIXER_RF <<4))
  209. #define GPIO_REG ((FPGA_AM_CTRL << 22) | \
  210. (DDS_SAW1_FPGA << 21) | \
  211. (GPIO_ADRF_V2 << 20) | \
  212. (GPIO_ADRF_V1 << 19) | \
  213. (REF_OFFSET_CTRL_FPGA << 18) | \
  214. (DDS_SAW2_FPGA << 17) | \
  215. (DDS_X2_FPGA << 16) | \
  216. (PLL_LOOP_CTRL << 15) | \
  217. (PLL_SYNC << 14) | \
  218. (PLL_SYNC_CTRL << 13) | \
  219. (PLL_VTUNE_CTRL << 12) | \
  220. (AM_ALC_1_FIX << 11) | \
  221. (SW_CAP1 << 10) | \
  222. (SW_CAP2 << 9) | \
  223. (SW_CAP3 << 8) | \
  224. (AM_ALC_SW << 7) | \
  225. (SW_CAP4 << 6) | \
  226. (DDS_SYNC_FPGA << 5) | \
  227. (DDS_RESET_FPGA << 4) | \
  228. (DDS_SYNC_CTRL_FPGA << 3) | \
  229. (CTRL_AM_SW3 << 2) | \
  230. (RF_SW2 << 1) | \
  231. (RF_SW1 << 0))
  232. // Macros to set register parameter
  233. #define SET_REGISTER_PARAM( REGISTER, BITM, BITP, PARAMETER )\
  234. REGISTER &= ~BITM;\
  235. REGISTER |= (PARAMETER << BITP);
  236. #define CFG_REG_ADDR 0x08
  237. // Command Register
  238. #define CFG_REG_RST_FOR_FPGA_BITP 0
  239. #define CFG_REG_WIDTH_SPI_TMSG_BITP 1
  240. #define CFG_REG_MOD_CMD_REG_BITP 2
  241. #define CFG_REG_LR_GPIO_BITP 3
  242. #define CFG_REG_HR_GPIO_BITP 4
  243. #define CFG_REG_RST_FOR_FPGA_BITM (0x1 << CFG_REG_RST_FOR_FPGA_BITP)
  244. #define CFG_REG_WIDTH_SPI_TMSG_BITM (0x1 << CFG_REG_WIDTH_SPI_TMSG_BITP)
  245. #define CFG_REG_MOD_CMD_REG_BITM (0x1 << CFG_REG_MOD_CMD_REG_BITP)
  246. #define CFG_REG_LR_GPIO_BITM (0x1 << CFG_REG_LR_GPIO_BITP)
  247. #define CFG_REG_HR_GPIO_BITM (0x1 << CFG_REG_HR_GPIO_BITP)
  248. #define CFG_REG_RST_FOR_FPGA_ON 0x1
  249. #define CFG_REG_RST_FOR_FPGA_OFF 0x0
  250. #define CFG_REG_WIDTH_SPI_TMSG_24_BIT (0x0 << CFG_REG_WIDTH_SPI_TMSG_BITP)
  251. #define CFG_REG_WIDTH_SPI_TMSG_32_BIT (0x1 << CFG_REG_WIDTH_SPI_TMSG_BITP)
  252. #define CFG_REG_MOD_0 (0x0 << CFG_REG_MOD_CMD_REG_BITP)
  253. #define CFG_REG_MOD_1 (0x1 << CFG_REG_MOD_CMD_REG_BITP)
  254. #define CFG_REG_LR_GPIO_0 (0x0 << CFG_REG_LR_GPIO_BITP)
  255. #define CFG_REG_LR_GPIO_1 (0x1 << CFG_REG_LR_GPIO_BITP)
  256. #define CFG_REG_HR_GPIO_0 (0x0 << CFG_REG_HR_GPIO_BITP)
  257. #define CFG_REG_HR_GPIO_1 (0x1 << CFG_REG_HR_GPIO_BITP)
  258. #define LMX_BASE_ADDR 0x04
  259. void rst_for_fpga(void *bar1);
  260. void shift_reg (void *bar1);
  261. void key_switch (void *bar1, double freq,double lmx_freq);
  262. uint32_t get_cfg_reg();
  263. void set_cfg_reg(uint32_t cfgRegToSet);
  264. #endif //DMADRIVER_TMSGHEADERS_H