lmx2594.c 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747
  1. #include "lmx2594.h"
  2. #include <math.h>
  3. const uint32_t lmx2594_rst[] = {
  4. 0x002516,
  5. 0x002514
  6. };
  7. uint32_t lmx2594regs[LMX_COUNT] = {
  8. 0x700000,
  9. 0x6F0000,
  10. 0x6E0000,
  11. 0x6D0000,
  12. 0x6C0000,
  13. 0x6B0000,
  14. 0x6A0000,
  15. 0x690021,
  16. 0x680000,
  17. 0x670000,
  18. 0x660000,
  19. 0x650011,
  20. 0x640000,
  21. 0x630000,
  22. 0x620000,
  23. 0x610888,
  24. 0x600000,
  25. 0x5F0000,
  26. 0x5E0000,
  27. 0x5D0000,
  28. 0x5C0000,
  29. 0x5B0000,
  30. 0x5A0000,
  31. 0x590000,
  32. 0x580000,
  33. 0x570000,
  34. 0x560000,
  35. 0x550000,
  36. 0x540000,
  37. 0x530000,
  38. 0x520000,
  39. 0x510000,
  40. 0x500000,
  41. 0x4F0000,
  42. 0x4E016F,
  43. 0x4D0000,
  44. 0x4C000C,
  45. 0x4B0800,
  46. 0x4A0000,
  47. 0x49003F,
  48. 0x480001,
  49. 0x470081,
  50. 0x46C350,
  51. 0x450000,
  52. 0x4403E8,
  53. 0x430000,
  54. 0x4201F4,
  55. 0x410000,
  56. 0x401388,
  57. 0x3F0000,
  58. 0x3E0322,
  59. 0x3D00A8,
  60. 0x3C03E8,
  61. 0x3B0001,
  62. 0x3A9001,
  63. 0x390020,
  64. 0x380000,
  65. 0x370000,
  66. 0x360000,
  67. 0x350000,
  68. 0x340820,
  69. 0x330080,
  70. 0x320000,
  71. 0x314180,
  72. 0x300300,
  73. 0x2F0300,
  74. 0x2E07FC,
  75. 0x2DC8DF,
  76. 0x2C1FA3,
  77. 0x2B0000,
  78. 0x2A0000,
  79. 0x290000,
  80. 0x280000,
  81. 0x2703E8,
  82. 0x260000,
  83. 0x250304,
  84. 0x240032,
  85. 0x230004,
  86. 0x220000,
  87. 0x211E21,
  88. 0x200393,
  89. 0x1F43EC,
  90. 0x1E318C,
  91. 0x1D318C,
  92. 0x1C0488,
  93. 0x1B0002,
  94. 0x1A0DB0,
  95. 0x190C2B,
  96. 0x18071A,
  97. 0x17007C,
  98. 0x160001,
  99. 0x150401,
  100. 0x14F848,
  101. 0x1327B7,
  102. 0x120064,
  103. 0x11012C,
  104. 0x100080,
  105. 0x0F064F,
  106. 0x0E1E40,
  107. 0x0D4000,
  108. 0x0C5001,
  109. 0x0B0018,
  110. 0x0A10D8,
  111. 0x090604,
  112. 0x082000,
  113. 0x0740B2,
  114. 0x06C802,
  115. 0x0500C8,
  116. 0x041443,
  117. 0x030642,
  118. 0x020500,
  119. 0x010808,
  120. 0x00251C
  121. };
  122. double lmx_freq; // Frequency of the LMX2594
  123. void lmx2594_init(void *bar1) {
  124. // Header for LMX Reset
  125. uint32_t *ptr_rst = bar1 + LMX_BASE_ADDR;
  126. *ptr_rst = LMX2594_RST_HEADER;
  127. // Reset Data
  128. for (int m = 0; m < (sizeof(lmx2594_rst))/4; m++) {
  129. uint32_t *ptr = bar1 + LMX_BASE_ADDR;
  130. *ptr = lmx2594_rst[m];
  131. }
  132. // Header for init data
  133. uint32_t *ptr = bar1 + LMX_BASE_ADDR;
  134. *ptr = InitLMX2594Header;
  135. // Init data
  136. for (int i = 0; i < LMX_COUNT; i++) {
  137. uint32_t *ptr = bar1 + LMX_BASE_ADDR;
  138. *ptr = lmx2594regs[i];
  139. }
  140. FILE * f = fopen("init.txt", "w");
  141. for (int i = 0; i < sizeof(lmx2594regs) / 4; i++) {
  142. fprintf(f, "0x%08X\n", lmx2594regs[i]);
  143. }
  144. fclose(f);
  145. }
  146. /*-------------------------LMX2594 Frequency Set-------------------------*/
  147. int lmx_freq_set_main_band(void *bar1, double freq, double f_pd) {
  148. double N_div;
  149. N_div = freq / f_pd;
  150. int vco_core;
  151. double f_coremin;
  152. double f_coremax;
  153. int c_core_min;
  154. int c_core_max;
  155. int a_core_min;
  156. int a_core_max;
  157. uint16_t vco_cap_ctrl_strt;
  158. uint16_t vco_daciset_strt;
  159. // divide whole part and fractional part
  160. uint32_t N = (uint32_t) N_div;
  161. // In frac part there is separate denominator and numerator
  162. // If frac part is 0 then the denominator is 1000 and numerator is 0
  163. uint32_t frac_n = (uint32_t) ((N_div - N) * (4294967295-1));
  164. uint32_t frac_d = 4294967295-1;
  165. // If frac part is 0 then the denominator is 1000 and numerator is 0
  166. if (frac_n == 0) {
  167. frac_n = 0;
  168. frac_d = 1000;
  169. }
  170. // Partial assist for the calibration
  171. //Determine a VCO core and other parameters
  172. if (freq >= 7500e6 && freq <= 8600e6) {
  173. vco_core = 1;
  174. f_coremin = 7500e6;
  175. f_coremax = 8600e6;
  176. c_core_min = 164;
  177. c_core_max = 12;
  178. a_core_min = 299;
  179. a_core_max = 240;
  180. }
  181. else if (freq > 8600e6 && freq < 9800e6) {
  182. vco_core = 2;
  183. f_coremin = 8600e6;
  184. f_coremax = 9800e6;
  185. c_core_min = 165;
  186. c_core_max = 16;
  187. a_core_min = 356;
  188. a_core_max = 247;
  189. }
  190. else if (freq >= 9800e6 && freq <= 10800e6) {
  191. vco_core = 3;
  192. f_coremin = 9800e6;
  193. f_coremax = 10800e6;
  194. c_core_min = 158;
  195. c_core_max = 19;
  196. a_core_min = 324;
  197. a_core_max = 224;
  198. }
  199. else if (freq > 10800e6 && freq <= 12000e6) {
  200. vco_core = 4;
  201. f_coremin = 10800e6;
  202. f_coremax = 12000e6;
  203. c_core_min = 140;
  204. c_core_max = 0;
  205. a_core_min = 383;
  206. a_core_max = 244;
  207. }
  208. else if (freq > 12000e6 && freq <= 12900e6) {
  209. vco_core = 5;
  210. f_coremin = 12000e6;
  211. f_coremax = 12900e6;
  212. c_core_min = 183;
  213. c_core_max = 36;
  214. a_core_min = 205;
  215. a_core_max = 146;
  216. }
  217. else if (freq > 12900e6 && freq <= 13900e6) {
  218. vco_core = 6;
  219. f_coremin = 12900e6;
  220. f_coremax = 13900e6;
  221. c_core_min = 155;
  222. c_core_max = 6;
  223. a_core_min = 242;
  224. a_core_max = 163;
  225. }
  226. else if (freq > 13900e6 && freq <= 15000e6) {
  227. vco_core = 7;
  228. f_coremin = 13900e6;
  229. f_coremax = 15000e6;
  230. c_core_min = 175;
  231. c_core_max = 19;
  232. a_core_min = 323;
  233. a_core_max = 244;
  234. };
  235. if (freq >=11900e6 && freq <=12100e6) {
  236. vco_daciset_strt = 300;
  237. vco_core = 4;
  238. vco_cap_ctrl_strt = 1;
  239. }
  240. vco_cap_ctrl_strt = round(c_core_min - (c_core_min - c_core_max) * (freq - f_coremin) / (f_coremax - f_coremin));
  241. vco_daciset_strt = round(a_core_min + (a_core_min - a_core_max) * (freq - f_coremin) / (f_coremax - f_coremin));
  242. printf("VCO_CORE = %d\n", vco_core);
  243. printf("VCO_CAP_CTRL_STR = %d\n", vco_cap_ctrl_strt);
  244. printf("VCO_DACISET_STR = %d\n", vco_daciset_strt);
  245. // Calibration assist
  246. //Set the VCO_CORE
  247. lmx2594regs[112 - VCO_SEL] = lmx2594regs[112 - VCO_SEL] & (~BITM_LMX2594_R20_VCO_SEL);
  248. lmx2594regs[112 - VCO_SEL] = lmx2594regs[112 - VCO_SEL] | (vco_core << BITP_LMX2594_R20_VCO_SEL);
  249. // Set the VCO_CAP_CTRL
  250. lmx2594regs[112 - CAP_CTRL_START] = lmx2594regs[112 - CAP_CTRL_START] & (~BITM_LMX2594_R78_VCO_CAP_CTRL_START);
  251. lmx2594regs[112 - CAP_CTRL_START] = lmx2594regs[112 - CAP_CTRL_START] | (vco_cap_ctrl_strt << BITP_LMX2594_R78_VCO_CAP_CTRL_START);
  252. // Set the VCO_DACISET
  253. lmx2594regs[112 - VCO_DACISET] = lmx2594regs[112 - VCO_DACISET] & (~BITM_LMX2594_R17_VCO_DACISET);
  254. lmx2594regs[112 - VCO_DACISET] = lmx2594regs[112 - VCO_DACISET] | (vco_daciset_strt << BITP_LMX2594_R17_VCO_DACISET);
  255. // Recommended sequnce for changin freq
  256. // 1. Change the N-div value
  257. // 2. Change the PLL numerator and denominator
  258. // 3. Program FCAL_EN bit
  259. // Clear the required parts of the register
  260. lmx2594regs[112-MASH_ORDER] = lmx2594regs[112-MASH_ORDER] & (~BITM_LMX2594_R44_MASH_ORDER);
  261. // Set the MASH_ORDER to 3
  262. lmx2594regs[112-MASH_ORDER] = lmx2594regs[112-MASH_ORDER] | ENUM_LMX2594_R44_MASH_ORDER_3;
  263. // Set PF_DLY_SEL to 3
  264. if (freq <= 10e9) {
  265. lmx2594regs[112-PFD_DLY_SEL] = lmx2594regs[112-PFD_DLY_SEL] & (~BITM_LMX2594_R37_PFD_DLY_SEL);
  266. lmx2594regs[112-PFD_DLY_SEL] = lmx2594regs[112-PFD_DLY_SEL] | (0x3 << BITP_LMX2594_R37_PFD_DLY_SEL);
  267. printf("PFD_DLY_SEL = %d\n", 3);
  268. }
  269. else if (freq > 10e9) {
  270. lmx2594regs[112-PFD_DLY_SEL] = lmx2594regs[112-PFD_DLY_SEL] & (~BITM_LMX2594_R37_PFD_DLY_SEL);
  271. lmx2594regs[112-PFD_DLY_SEL] = lmx2594regs[112-PFD_DLY_SEL] | (0x4 << BITP_LMX2594_R37_PFD_DLY_SEL);
  272. printf("PFD_DLY_SEL = %d\n", 4);
  273. }
  274. lmx2594regs[112-PLL_N_S] = lmx2594regs[112-PLL_N_S] &(~0xFFFF);
  275. lmx2594regs[112-PLL_N_S] = lmx2594regs[112-PLL_N_S] | (N >> 16);
  276. //CLear the lower 16 bits of the register
  277. lmx2594regs[112-PLL_N_M] = lmx2594regs[112-PLL_N_M] & (~0xFFFF);
  278. // Next 16 bits of the register
  279. lmx2594regs[112-PLL_N_M] = lmx2594regs[112-PLL_N_M] | (N & 0xFFFF);
  280. // Clear the upper 16 bits of the register lmx2594regs[PLL_NUM_S]
  281. lmx2594regs[112-PLL_NUM_S] = lmx2594regs[112-PLL_NUM_S] & (~0xFFFF);
  282. lmx2594regs[112-PLL_NUM_S] = lmx2594regs[112-PLL_NUM_S] | (frac_n >> 16);
  283. // Clear the lower 16 bits of the register lmx2594regs[PLL_NUM_M]
  284. lmx2594regs[112-PLL_NUM_M] = lmx2594regs[112-PLL_NUM_M] & (~0xFFFF);
  285. // Next 16 bits of the numerator
  286. lmx2594regs[112-PLL_NUM_M] = lmx2594regs[112-PLL_NUM_M] | (frac_n & 0xFFFF);
  287. // Clear the upper 16 bits of the register lmx2594regs[PLL_DEN_S]
  288. lmx2594regs[112-PLL_DEN_S] = lmx2594regs[112-PLL_DEN_S] & (~0xFFFF);
  289. // most significant 16 bits of the denominator
  290. lmx2594regs[112-PLL_DEN_S] = lmx2594regs[112-PLL_DEN_S] | (frac_d >> 16);
  291. // Clear the lower 16 bits of the register lmx2594regs[PLL_DEN_M]
  292. lmx2594regs[112-PLL_DEN_M] = lmx2594regs[112-PLL_DEN_M] & (~0xFFFF);
  293. // Next 16 bits of the denominator
  294. lmx2594regs[112-PLL_DEN_M] = lmx2594regs[112-PLL_DEN_M] | (frac_d & 0xFFFF);
  295. lmx2594regs[112-CHDIV_DIV2] = lmx2594regs[112 - CHDIV_DIV2] & (~BITM_LMX2594_R31_CHDIV_DIV2);
  296. lmx2594regs[112 - CHDIV] = lmx2594regs[112 - CHDIV] & (~BITM_LMX2594_R75_CHDIV);
  297. // Set the OUTA_MUX to channel divider R45[12:11]; 0 - Channel divider, 1 - VCO;
  298. lmx2594regs[112 - OUTA_MUX] = lmx2594regs[112 - OUTA_MUX] & (~BITM_LMX2594_R45_OUTA_MUX);
  299. lmx2594regs[112 - OUTA_MUX] = lmx2594regs[112 - OUTA_MUX] | ENUM_LMX2594_R45_OUTA_MUX_VCO;
  300. // Program the FCAL_EN bit
  301. lmx2594regs[112-FCAL_ADDR] = lmx2594regs[112-FCAL_ADDR] | (LMX2594_R0_FCAL_EN);
  302. // Show the all the upper 16 bits of the register lmx2594regs[PLL_N_S]
  303. // Determine which regs are changed and send only those
  304. uint32_t lmx_change_freq_regs[] = {
  305. lmx2594regs[112 - VCO_SEL],
  306. lmx2594regs[112 - CAP_CTRL_START],
  307. lmx2594regs[112 - VCO_DACISET],
  308. lmx2594regs[112-MASH_ORDER],
  309. lmx2594regs[112-PFD_DLY_SEL],
  310. lmx2594regs[112-PLL_N_S],
  311. lmx2594regs[112-PLL_N_M],
  312. lmx2594regs[112-PLL_DEN_S],
  313. lmx2594regs[112-PLL_DEN_M],
  314. lmx2594regs[112-PLL_NUM_S],
  315. lmx2594regs[112-PLL_NUM_M],
  316. lmx2594regs[112 - CHDIV],
  317. lmx2594regs[112 - CHDIV_DIV2],
  318. lmx2594regs[112-OUTA_MUX],
  319. lmx2594regs[112-FCAL_ADDR]
  320. };
  321. // Create a header for the LMX2594 with the appropriate number of words
  322. uint32_t LMX_HEADER = ((0 << 23) | (DeviceIdLmx2594 << 18) | ((sizeof(lmx_change_freq_regs)/4) << 1) | 1);
  323. uint32_t *ptr = bar1 + LMX_BASE_ADDR;
  324. *ptr = LMX_HEADER;
  325. for (int i = 0; i < sizeof(lmx_change_freq_regs)/4; i++) {
  326. uint32_t *data_ptr = bar1 + LMX_BASE_ADDR;
  327. *data_ptr = lmx_change_freq_regs[i];
  328. }
  329. char filename[100];
  330. sprintf(filename, "%f.txt", freq);
  331. FILE * f = fopen(filename, "w");
  332. for (int i = 0; i < sizeof(lmx2594regs) / 4; i++) {
  333. fprintf(f, "0x%08X\n", lmx2594regs[i]);
  334. }
  335. fclose(f);
  336. printf("File has been written\n");
  337. printf("N_div = %f\n", N_div);
  338. printf("f_vco = %f\n", freq);
  339. printf("SEG1_EN %08X\n",lmx2594regs[112 - CHDIV_DIV2]);
  340. printf("N = %d\n", N);
  341. printf("frac_n = %u\n", frac_n);
  342. printf("frac_d = %u\n", frac_d);
  343. }
  344. int lmx_freq_set_out_of_band(void *bar1, double freq, double f_pd) {
  345. if (freq >= 10e6 && freq <= 1000e6) {
  346. lmx_freq = lmx_lower_bond_set(freq, f_pd);
  347. }
  348. else {
  349. lmx_freq = freq;
  350. }
  351. double f_vco = 2 * lmx_freq;
  352. int chan_div = 2;
  353. uint8_t ch_div_reg = 0; // 2
  354. double vco_div = 7.5e9 / lmx_freq;
  355. double N_div;
  356. int vco_core;
  357. double f_coremin;
  358. double f_coremax;
  359. int c_core_min;
  360. int c_core_max;
  361. int a_core_min;
  362. int a_core_max;
  363. uint16_t vco_cap_ctrl_strt;
  364. uint16_t vco_daciset_strt;
  365. // minimum N_div value is 28 and Vco frequency can't be less than 7.5 GHz
  366. if (f_vco < 7.5e9) {
  367. if (vco_div > 2 && vco_div <= 4)
  368. chan_div = 4; // 4
  369. f_vco = lmx_freq * chan_div;
  370. if (vco_div > 4 && vco_div <= 6) {
  371. chan_div = 6; // 6
  372. f_vco = lmx_freq * chan_div;
  373. }
  374. if (vco_div > 6 && vco_div <= 8) {
  375. chan_div = 8; // 8
  376. f_vco = lmx_freq * chan_div;
  377. }
  378. if (vco_div > 8 && vco_div <= 12) {
  379. chan_div = 12; // 12
  380. f_vco = lmx_freq * chan_div;
  381. }
  382. if (vco_div > 12 && vco_div <= 16) {
  383. chan_div = 16; // 16
  384. f_vco = lmx_freq * chan_div;
  385. }
  386. if (vco_div > 16 && vco_div <= 24) {
  387. chan_div = 24; // 24
  388. f_vco = lmx_freq * chan_div;
  389. }
  390. if (vco_div > 24 && vco_div <= 32) {
  391. chan_div = 32; // 32
  392. f_vco = lmx_freq * chan_div;
  393. }
  394. if (vco_div > 32 && vco_div <= 48) {
  395. chan_div = 48; // 48
  396. f_vco = lmx_freq * chan_div;
  397. }
  398. if (vco_div > 48 && vco_div <= 64) {
  399. chan_div = 64; // 64
  400. f_vco = lmx_freq * chan_div;
  401. }
  402. if (vco_div > 64 && vco_div <= 72) {
  403. chan_div = 72; // 72
  404. f_vco = lmx_freq * chan_div;
  405. }
  406. if (vco_div > 72 && vco_div <= 96) {
  407. chan_div = 96; // 96
  408. f_vco = lmx_freq * chan_div;
  409. }
  410. if (vco_div > 96 && vco_div <= 128) {
  411. chan_div = 128; // 128
  412. f_vco = lmx_freq * chan_div;
  413. }
  414. if (vco_div > 128 && vco_div <= 192) {
  415. chan_div = 192; // 192
  416. f_vco = lmx_freq * chan_div;
  417. }
  418. if (vco_div > 192 && vco_div <= 256) {
  419. chan_div = 256; // 256
  420. f_vco = lmx_freq * chan_div;
  421. }
  422. if (vco_div > 256 && vco_div <= 384) {
  423. chan_div = 384; // 384
  424. f_vco = lmx_freq * chan_div;
  425. }
  426. if (vco_div > 384 && vco_div <= 512) {
  427. chan_div = 512; // 512
  428. f_vco = lmx_freq * chan_div;
  429. }
  430. if (vco_div > 512 && vco_div <= 768) {
  431. chan_div = 768; // 768
  432. f_vco = lmx_freq * chan_div;
  433. }
  434. switch (chan_div) {
  435. case 2:
  436. ch_div_reg = 0;
  437. break;
  438. case 4:
  439. ch_div_reg = 1;
  440. break;
  441. case 6:
  442. ch_div_reg = 2;
  443. break;
  444. case 8:
  445. ch_div_reg = 3;
  446. break;
  447. case 12:
  448. ch_div_reg = 4;
  449. break;
  450. case 16:
  451. ch_div_reg = 5;
  452. break;
  453. case 24:
  454. ch_div_reg = 6;
  455. break;
  456. case 32:
  457. ch_div_reg = 7;
  458. break;
  459. case 48:
  460. ch_div_reg = 8;
  461. break;
  462. case 64:
  463. ch_div_reg = 9;
  464. break;
  465. case 72:
  466. ch_div_reg = 10;
  467. break;
  468. case 96:
  469. ch_div_reg = 11;
  470. break;
  471. case 128:
  472. ch_div_reg = 12;
  473. break;
  474. case 192:
  475. ch_div_reg = 13;
  476. break;
  477. case 256:
  478. ch_div_reg = 14;
  479. break;
  480. case 384:
  481. ch_div_reg = 15;
  482. break;
  483. case 512:
  484. ch_div_reg = 16;
  485. break;
  486. case 768:
  487. ch_div_reg = 17;
  488. break;
  489. }
  490. } else {
  491. ch_div_reg = 0;
  492. f_vco = lmx_freq * 2;
  493. }
  494. N_div = f_vco / f_pd;
  495. // divide whole part and fractional part
  496. uint32_t N = (uint32_t) N_div;
  497. uint32_t frac_n = (uint32_t) ((N_div - N) * (4294967295-1));
  498. uint32_t frac_d = 4294967295-1;
  499. // If frac part is 0 then the denominator is 1000 and numerator is 0
  500. if (frac_n == 0) {
  501. frac_n = 0;
  502. frac_d = 1000;
  503. }
  504. // Partial assist for the calibration
  505. //Determine a VCO core and other parameters
  506. if (f_vco >= 7500e6 && f_vco <= 8600e6) {
  507. vco_core = 1;
  508. f_coremin = 7500e6;
  509. f_coremax = 8600e6;
  510. c_core_min = 164;
  511. c_core_max = 12;
  512. a_core_min = 299;
  513. a_core_max = 240;
  514. }
  515. else if (f_vco > 8600e6 && f_vco < 9800e6) {
  516. vco_core = 2;
  517. f_coremin = 8600e6;
  518. f_coremax = 9800e6;
  519. c_core_min = 165;
  520. c_core_max = 16;
  521. a_core_min = 356;
  522. a_core_max = 247;
  523. }
  524. else if (f_vco >= 9800e6 && f_vco <= 10800e6) {
  525. vco_core = 3;
  526. f_coremin = 9800e6;
  527. f_coremax = 10800e6;
  528. c_core_min = 158;
  529. c_core_max = 19;
  530. a_core_min = 324;
  531. a_core_max = 224;
  532. }
  533. else if (f_vco > 10800e6 && f_vco <= 12000e6) {
  534. vco_core = 4;
  535. f_coremin = 10800e6;
  536. f_coremax = 12000e6;
  537. c_core_min = 140;
  538. c_core_max = 0;
  539. a_core_min = 383;
  540. a_core_max = 244;
  541. }
  542. else if (f_vco > 12000e6 && f_vco <= 12900e6) {
  543. vco_core = 5;
  544. f_coremin = 12000e6;
  545. f_coremax = 12900e6;
  546. c_core_min = 183;
  547. c_core_max = 36;
  548. a_core_min = 205;
  549. a_core_max = 146;
  550. }
  551. else if (f_vco > 12900e6 && f_vco <= 13900e6) {
  552. vco_core = 6;
  553. f_coremin = 12900e6;
  554. f_coremax = 13900e6;
  555. c_core_min = 155;
  556. c_core_max = 6;
  557. a_core_min = 242;
  558. a_core_max = 163;
  559. }
  560. else if (f_vco > 13900e6 && f_vco <= 15000e6) {
  561. vco_core = 7;
  562. f_coremin = 13900e6;
  563. f_coremax = 15000e6;
  564. c_core_min = 175;
  565. c_core_max = 19;
  566. a_core_min = 323;
  567. a_core_max = 244;
  568. };
  569. vco_cap_ctrl_strt = round(c_core_min - (c_core_min - c_core_max) * (f_vco - f_coremin) / (f_coremax - f_coremin));
  570. vco_daciset_strt = round(a_core_min + (a_core_min - a_core_max) * (f_vco - f_coremin) / (f_coremax - f_coremin));
  571. if (f_vco >=11900e6 && f_vco <=12100e6) {
  572. vco_daciset_strt = 300;
  573. vco_core = 4;
  574. vco_cap_ctrl_strt = 1;
  575. }
  576. printf("VCO_CORE = %d\n", vco_core);
  577. printf("VCO_CAP_CTRL_STR = %d\n", vco_cap_ctrl_strt);
  578. printf("VCO_DACISET_STR = %d\n", vco_daciset_strt);
  579. // Calibration assist
  580. //Set the VCO_CORE
  581. lmx2594regs[112 - VCO_SEL] = lmx2594regs[112 - VCO_SEL] & (~BITM_LMX2594_R20_VCO_SEL);
  582. lmx2594regs[112 - VCO_SEL] = lmx2594regs[112 - VCO_SEL] | (vco_core << BITP_LMX2594_R20_VCO_SEL);
  583. // Set the VCO_CAP_CTRL_START
  584. lmx2594regs[112 - CAP_CTRL_START] = lmx2594regs[112 - CAP_CTRL_START] & (~BITM_LMX2594_R78_VCO_CAP_CTRL_START);
  585. lmx2594regs[112 - CAP_CTRL_START] = lmx2594regs[112 - CAP_CTRL_START] | (vco_cap_ctrl_strt << BITP_LMX2594_R78_VCO_CAP_CTRL_START);
  586. // Set the VCO_DACISET
  587. lmx2594regs[112 - VCO_DACISET] = lmx2594regs[112 - VCO_DACISET] & (~BITM_LMX2594_R17_VCO_DACISET);
  588. lmx2594regs[112 - VCO_DACISET] = lmx2594regs[112 - VCO_DACISET] | (vco_daciset_strt << BITP_LMX2594_R17_VCO_DACISET);
  589. lmx2594regs[112 - MASH_ORDER] = lmx2594regs[112 - MASH_ORDER] & (~BITM_LMX2594_R44_MASH_ORDER);
  590. // Set the MASH_ORDER to 3
  591. lmx2594regs[112 - MASH_ORDER] = lmx2594regs[112 - MASH_ORDER] | ENUM_LMX2594_R44_MASH_ORDER_3;
  592. // Set PF_DLY_SEL to appropriate value
  593. if (f_vco <=10e9){
  594. lmx2594regs[112 - PFD_DLY_SEL] = lmx2594regs[112 - PFD_DLY_SEL] & (~BITM_LMX2594_R37_PFD_DLY_SEL);
  595. lmx2594regs[112 - PFD_DLY_SEL] = lmx2594regs[112 - PFD_DLY_SEL] | (0x3 << BITP_LMX2594_R37_PFD_DLY_SEL);
  596. printf("PFD_DLY_SEL = %d\n", 3);
  597. }
  598. else if (f_vco > 10e9) {
  599. lmx2594regs[112 - PFD_DLY_SEL] = lmx2594regs[112 - PFD_DLY_SEL] & (~BITM_LMX2594_R37_PFD_DLY_SEL);
  600. lmx2594regs[112 - PFD_DLY_SEL] = lmx2594regs[112 - PFD_DLY_SEL] | (0x4 << BITP_LMX2594_R37_PFD_DLY_SEL);
  601. printf("PFD_DLY_SEL = %d\n", 4);
  602. }
  603. lmx2594regs[112 - PLL_N_S] = lmx2594regs[112 - PLL_N_S] & (~0xFFFF);
  604. lmx2594regs[112 - PLL_N_S] = lmx2594regs[112 - PLL_N_S] | (N >> 16);
  605. //CLear the lower 16 bits of the register
  606. lmx2594regs[112 - PLL_N_M] = lmx2594regs[112 - PLL_N_M] & (~0xFFFF);
  607. // Next 16 bits of the register
  608. lmx2594regs[112 - PLL_N_M] = lmx2594regs[112 - PLL_N_M] | (N & 0xFFFF);
  609. // Clear the upper 16 bits of the register lmx2594regs[PLL_NUM_S]
  610. lmx2594regs[112 - PLL_NUM_S] = lmx2594regs[112 - PLL_NUM_S] & (~0xFFFF);
  611. lmx2594regs[112 - PLL_NUM_S] = lmx2594regs[112 - PLL_NUM_S] | (frac_n >> 16);
  612. // Clear the lower 16 bits of the register lmx2594regs[PLL_NUM_M]
  613. lmx2594regs[112 - PLL_NUM_M] = lmx2594regs[112 - PLL_NUM_M] & (~0xFFFF);
  614. // Next 16 bits of the numerator
  615. lmx2594regs[112 - PLL_NUM_M] = lmx2594regs[112 - PLL_NUM_M] | (frac_n & 0xFFFF);
  616. // Clear the upper 16 bits of the register lmx2594regs[PLL_DEN_S]
  617. lmx2594regs[112 - PLL_DEN_S] = lmx2594regs[112 - PLL_DEN_S] & (~0xFFFF);
  618. // most significant 16 bits of the denominator
  619. lmx2594regs[112 - PLL_DEN_S] = lmx2594regs[112 - PLL_DEN_S] | (frac_d >> 16);
  620. // Clear the lower 16 bits of the register lmx2594regs[PLL_DEN_M]
  621. lmx2594regs[112 - PLL_DEN_M] = lmx2594regs[112 - PLL_DEN_M] & (~0xFFFF);
  622. // Next 16 bits of the denominator
  623. lmx2594regs[112 - PLL_DEN_M] = lmx2594regs[112 - PLL_DEN_M] | (frac_d & 0xFFFF);
  624. // Program the CHDIV value
  625. lmx2594regs[112 - CHDIV] = lmx2594regs[112 - CHDIV] & (~BITM_LMX2594_R75_CHDIV);
  626. // Set the CHDIV value with the starting position BITP_LMX2594_R75_CHDIV
  627. lmx2594regs[112 - CHDIV] = lmx2594regs[112 - CHDIV] | (ch_div_reg << BITP_LMX2594_R75_CHDIV);
  628. // If the ch_div > 2 then set the SEG1_EN bit
  629. if (chan_div > 2) {
  630. lmx2594regs[112 - CHDIV_DIV2] = lmx2594regs[112 - CHDIV_DIV2] & (~BITM_LMX2594_R31_CHDIV_DIV2);
  631. lmx2594regs[112 - CHDIV_DIV2] = lmx2594regs[112 - CHDIV_DIV2] | (ENUM_LMX2594_R31_CHDIV_DIV2_EN);
  632. }
  633. else {
  634. lmx2594regs[112-CHDIV_DIV2] = lmx2594regs[112 - CHDIV_DIV2] & (~BITM_LMX2594_R31_CHDIV_DIV2);
  635. }
  636. // Set the OUTA_MUX to channel divider R45[12:11]; 0 - Channel divider, 1 - VCO;
  637. lmx2594regs[112 - OUTA_MUX] = lmx2594regs[112 - OUTA_MUX] & (~BITM_LMX2594_R45_OUTA_MUX);
  638. lmx2594regs[112 - OUTA_MUX] = lmx2594regs[112 - OUTA_MUX] | ENUM_LMX2594_R45_OUTA_MUX_CH_DIV;
  639. // Program the FCAL_EN bit
  640. lmx2594regs[112 - FCAL_ADDR] = lmx2594regs[112 - FCAL_ADDR] | (LMX2594_R0_FCAL_EN);
  641. uint32_t lmx_change_freq_regs[] = {
  642. lmx2594regs[112 - VCO_SEL],
  643. lmx2594regs[112 - CAP_CTRL_START],
  644. lmx2594regs[112 - VCO_DACISET],
  645. lmx2594regs[112-MASH_ORDER],
  646. lmx2594regs[112-PFD_DLY_SEL],
  647. lmx2594regs[112 - PLL_N_S],
  648. lmx2594regs[112 - PLL_N_M],
  649. lmx2594regs[112 - PLL_DEN_S],
  650. lmx2594regs[112 - PLL_DEN_M],
  651. lmx2594regs[112 - PLL_NUM_S],
  652. lmx2594regs[112 - PLL_NUM_M],
  653. lmx2594regs[112 - CHDIV],
  654. lmx2594regs[112 - CHDIV_DIV2],
  655. lmx2594regs[112 - OUTA_MUX],
  656. lmx2594regs[112 - FCAL_ADDR]
  657. };
  658. // Create a header for the LMX2594 with the appropriate number of words
  659. uint32_t LMX_HEADER = ((0 << 23) | (DeviceIdLmx2594 << 18) | ((sizeof(lmx_change_freq_regs) / 4) << 1) | 1);
  660. uint32_t *ptr = bar1 + LMX_BASE_ADDR;
  661. *ptr = LMX_HEADER;
  662. // Send the data
  663. for (int i = 0; i < sizeof(lmx_change_freq_regs) / 4; i++) {
  664. uint32_t *data_ptr = bar1 + LMX_BASE_ADDR;
  665. *data_ptr = lmx_change_freq_regs[i];
  666. }
  667. char filename[100];
  668. sprintf(filename, "%f.txt", freq);
  669. FILE * f = fopen(filename, "w");
  670. for (int i = 0; i < sizeof(lmx2594regs) / 4; i++) {
  671. fprintf(f, "0x%08X\n", lmx2594regs[i]);
  672. }
  673. fclose(f);
  674. printf("N_div = %f\n", N_div);
  675. printf("f_vco = %f\n", f_vco);
  676. printf("SEG1_EN %08X\n",lmx2594regs[112 - CHDIV_DIV2]);
  677. printf("N = %d\n", N);
  678. printf("frac_n = %u\n", frac_n);
  679. printf("frac_d = %u\n", frac_d);
  680. printf("chan_div = %d\n", chan_div);
  681. printf("chan_div_reg = %d\n", ch_div_reg);
  682. printf("LMX2594 Registers\n");
  683. return 0;
  684. }
  685. double lmx_lower_bond_set (double freq, double f_pd) {
  686. double f_max2870 = 4e9;
  687. double lmx_req_freq = f_max2870-freq; // 4 GHz - freq
  688. return lmx_req_freq;
  689. }
  690. int lmx_freq_set(void *bar1, double freq) {
  691. double f_pd = 200e6;
  692. double N_div = 0;
  693. if (freq < 10e6 || freq > 15e9) {
  694. printf("Frequency range is 10 MHz to 15 GHz\n");
  695. return -1;
  696. }
  697. // if the frequency is in the main band - 7.5 GHz to 15 GHz
  698. if (freq >= 7.5e9 && freq <= 15e9) {
  699. lmx_freq_set_main_band(bar1, freq, f_pd);
  700. }
  701. else if (freq < 7.5e9) {
  702. lmx_freq_set_out_of_band(bar1, freq, f_pd);
  703. }
  704. // Switch the keys
  705. key_switch(bar1, freq,lmx_freq);
  706. return 0;
  707. }
  708. uint32_t lmx_ld_status(void *bar1) {
  709. uint32_t *read_ptr = (uint32_t *)(bar1 + LMX_LD_STATUS_ADDR);
  710. uint32_t read_value = *read_ptr;
  711. return read_value;
  712. }