FPGA sample - Lattice I2C IP (EFB) #2

 Lattice Diamond Setting

  • Click "IPexpress button" and select "EFB" IPX
  • Select "Project Path" (source code files), "File Name" and "Module Output" is Verilog
  • Click "Customize"

  • Select Primary I2C
    • EFB have 2 I2C controller, suggestion use primary I2C
  • "EFB Enable" tab  "EFB Function Enable" Field  Click "Primary User"

  

  • Configuration Primary I2C
    • Speed is 400KHz
    • Slave Address is "0001001"
  • "I2C" tab "Primary I2C " Field → "I2C Bus Preformance" is 400KHz → "Slave Address" is 7'b0001001
  • Click "Generate" to generate hardware I2C code
  • Founad hardware I2C IPX in your project files

 範例程式碼

  •  宣告 EFB-IP

  1. /***********************************************************************
  2. * *
  3. * EFB Module Instanitiation *
  4. * *
  5. ***********************************************************************/
  6. wire rst_p = ~RST_N ;
  7. efbi2c UUT ( .wb_clk_i (CLK ),
  8. .wb_rst_i (rst_p ),
  9. .wb_cyc_i (wb_cyc_i ),
  10. .wb_stb_i (wb_stb_i ),
  11. .wb_we_i (wb_we_i ),
  12. .wb_adr_i (wb_adr_i ),
  13. .wb_dat_i (wb_dat_i ),
  14. .wb_dat_o (wb_dat_o ),
  15. .wb_ack_o (wb_ack_o ),
  16. .i2c1_scl (SCL ),
  17. .i2c1_sda (SDA ),
  18. .i2c1_irqo(i2c1_irq_o) );
  19.  
  • EFB-IP 的 address / data / control pin 訊號順序
  1. /////////////////////////////////////////////
  2. // //
  3. // State Machines Sequential Block //
  4. // //
  5. //////////////////////////////////////////////
  6. always @ (posedge CLK or negedge RST_N)
  7. begin
  8. if(!RST_N)
  9. begin
  10. wb_dat_i <= 8'h00;
  11. wb_stb_i <= 1'b0 ;
  12. wb_adr_i <= 8'h00;
  13. wb_we_i <= 1'b0;
  14. end
  15. else
  16. begin
  17. wb_dat_i <= n_wb_dat_i;
  18. wb_stb_i <= n_wb_stb_i;
  19. wb_adr_i <= n_wb_adr_i;
  20. wb_we_i <= n_wb_we_i ;
  21. end
  22. end
  23. always @ (posedge CLK or negedge RST_N)
  24. begin
  25. if(!RST_N)
  26. begin
  27. c_state <= 10'h000;
  28. efb_flag <= 1'b0 ;
  29. dat_count <= 8'd0;
  30. end
  31. else
  32. begin
  33. c_state <= n_state ;
  34. efb_flag <= n_efb_flag;
  35. dat_count <= n_dat_count ;
  36. end
  37. end
  • EFB-IP state machine 加入 oem 程序碼
  1. //////////////////////////////////////////////
  2. // //
  3. // State Machines Combinational Block //
  4. // //
  5. //////////////////////////////////////////////
  6. always @ ( * )
  7. begin
  8. n_efb_flag = 1'b0 ;
  9. n_state = c_state ;
  10. n_dat_count = dat_count ;
  11. n_wb_dat_i = 8'h00;
  12. n_wb_stb_i = 1'b0 ;
  13. n_wb_adr_i = 8'h00;
  14. n_wb_we_i = 1'b0;
  15. n_temp0 = temp0;
  16. i2c_cmd_d = i2c_cmd_q;
  17. i2c_check_d = i2c_check_q;
  18. i2c_data_d = i2c_data_q;
  19. cmdVRMEn_d = cmdVRMEn_q;
  20. case(c_state)
  21. `state0 : // I2C in idle
  22. begin
  23. n_wb_dat_i = 8'h00;
  24. n_wb_stb_i = 1'b0;
  25. n_wb_adr_i = 8'h00;
  26. n_wb_we_i = 1'b0;
  27. n_wb_stb_i = 1'b0;
  28. n_state = `state1 ;
  29. end
  30. `state1 : // Enable I2C Interface
  31. begin
  32. if (wb_ack_o && efb_flag)
  33. begin
  34. n_wb_dat_i = `ALL_ZERO ;
  35. n_wb_adr_i = `ALL_ZERO ;
  36. n_wb_we_i = `LOW ;
  37. n_wb_stb_i = `LOW ;
  38. n_efb_flag = `LOW ;
  39. n_state = `state2;
  40. end
  41. else if(!wb_ack_o)
  42. begin
  43. n_efb_flag = `HIGH ;
  44. n_wb_adr_i = `MICO_EFB_I2C_CR;
  45. n_wb_dat_i = 8'h88;
  46. n_wb_we_i = `WRITE;
  47. n_wb_stb_i = `HIGH ;
  48. n_state = c_state;
  49. end
  50. end
  51. `state2 : // Clock Disable
  52. begin
  53. if (wb_ack_o && efb_flag)
  54. begin
  55. n_wb_dat_i = `ALL_ZERO ;
  56. n_wb_adr_i = `ALL_ZERO ;
  57. n_wb_we_i = `LOW ;
  58. n_wb_stb_i = `LOW ;
  59. n_efb_flag = `LOW ;
  60. n_state = `state3;
  61. end
  62. else if(!wb_ack_o)
  63. begin
  64. n_efb_flag = `HIGH ;
  65. n_wb_adr_i = `MICO_EFB_I2C_CMDR;
  66. n_wb_dat_i = 8'h04;
  67. n_wb_we_i = `WRITE;
  68. n_wb_stb_i = `HIGH ;
  69. n_state = c_state;
  70. end
  71. end
  72. `state3 : // Wait for not BUSY
  73. begin
  74. if (wb_ack_o && efb_flag)
  75. begin
  76. n_wb_dat_i = `ALL_ZERO ;
  77. n_wb_adr_i = `ALL_ZERO ;
  78. n_wb_we_i = `LOW ;
  79. n_wb_stb_i = `LOW ;
  80. n_efb_flag = `LOW ;
  81. if(wb_dat_o & ( `MICO_EFB_I2C_SR_BUSY) )
  82. n_state = c_state;
  83. else
  84. n_state = `state4;
  85. end
  86. else if(!wb_ack_o)
  87. begin
  88. n_efb_flag = `HIGH ;
  89. n_wb_we_i = `READ_STATUS;
  90. n_wb_adr_i = `MICO_EFB_I2C_SR;
  91. n_wb_dat_i = 0 ;
  92. n_wb_stb_i = `HIGH ;
  93. n_state = c_state;
  94. end
  95. end
  96. `state4 : // Discard data 1
  97. begin
  98. if (wb_ack_o && efb_flag)
  99. begin
  100. n_wb_dat_i = `ALL_ZERO ;
  101. n_wb_adr_i = `ALL_ZERO ;
  102. n_wb_we_i = `LOW ;
  103. n_wb_stb_i = `LOW ;
  104. n_efb_flag = `LOW ;
  105. n_temp0 = wb_dat_o;
  106. n_state = `state5;
  107. end
  108. else if(!wb_ack_o)
  109. begin
  110. n_efb_flag = `HIGH ;
  111. n_wb_we_i = `READ_DATA;
  112. n_wb_adr_i = `MICO_EFB_I2C_RXDR;
  113. n_wb_dat_i = 0 ;
  114. n_wb_stb_i = `HIGH ;
  115. n_state = c_state;
  116. end
  117. end
  118. `state5 : // Discard data 2
  119. begin
  120. if (wb_ack_o && efb_flag)
  121. begin
  122. n_wb_dat_i = `ALL_ZERO ;
  123. n_wb_adr_i = `ALL_ZERO ;
  124. n_wb_we_i = `LOW ;
  125. n_wb_stb_i = `LOW ;
  126. n_efb_flag = `LOW ;
  127. n_temp0 = wb_dat_o;
  128. n_state = `state7; // keep clock stretching disabled per PCN#10A-13
  129. end
  130. else if(!wb_ack_o)
  131. begin
  132. n_efb_flag = `HIGH ;
  133. n_wb_we_i = `READ_DATA;
  134. n_wb_adr_i = `MICO_EFB_I2C_RXDR;
  135. n_wb_dat_i = 0 ;
  136. n_wb_stb_i = `HIGH ;
  137. n_state = c_state;
  138. end
  139. end
  140. `state7: // wait for data to come
  141. begin
  142. if (wb_ack_o && efb_flag)
  143. begin
  144. n_wb_dat_i = `ALL_ZERO ;
  145. n_wb_adr_i = `ALL_ZERO ;
  146. n_wb_we_i = `LOW ;
  147. n_wb_stb_i = `LOW ;
  148. n_efb_flag = `LOW ;
  149. if(wb_dat_o & (`MICO_EFB_I2C_SR_TRRDY))
  150. n_state = `state8;
  151. else
  152. n_state = c_state;
  153. end
  154. else if(!wb_ack_o)
  155. begin
  156. n_efb_flag = `HIGH ;
  157. n_wb_we_i = `READ_STATUS;
  158. n_wb_adr_i = `MICO_EFB_I2C_SR;
  159. n_wb_dat_i = 0 ;
  160. n_wb_stb_i = `HIGH ;
  161. n_state = c_state;
  162. end
  163. end
  164. `state8: // Store i2C Command Information
  165. begin
  166. if (wb_ack_o && efb_flag) begin
  167. n_wb_dat_i = `ALL_ZERO ;
  168. n_wb_adr_i = `ALL_ZERO ;
  169. n_wb_we_i = `LOW ;
  170. n_wb_stb_i = `LOW ;
  171. n_efb_flag = `LOW ;
  172. i2c_cmd_d = wb_dat_o;
  173. n_state = `state9;
  174. end
  175. else if(!wb_ack_o)
  176. begin
  177. n_efb_flag = `HIGH ;
  178. n_wb_we_i = `READ_DATA;
  179. n_wb_adr_i = `MICO_EFB_I2C_RXDR;
  180. n_wb_dat_i = 0 ;
  181. n_wb_stb_i = `HIGH ;
  182. n_state = c_state;
  183. end
  184. end
  185. `state9 : // Send ACK or NACK Based upon Command Receive & Wait for Stop `state 17
  186. begin
  187. if (wb_ack_o && efb_flag)
  188. begin
  189. n_wb_dat_i = `ALL_ZERO ;
  190. n_wb_adr_i = `ALL_ZERO ;
  191. n_wb_we_i = `LOW ;
  192. n_wb_stb_i = `LOW ;
  193. n_efb_flag = `LOW ;
  194. // oem command
  195. end
  196. else
  197. begin if(!wb_ack_o)
  198. n_efb_flag = `HIGH ;
  199. n_wb_adr_i = `MICO_EFB_I2C_CMDR;
  200. n_wb_dat_i = {4'h0,~cmd_data,3'b100};
  201. n_wb_we_i = `WRITE;
  202. n_wb_stb_i = `HIGH ;
  203. n_state = c_state;
  204. end
  205. end
  206. `state10 : // Command Valid
  207. begin
  208. if (wb_ack_o && efb_flag)
  209. begin
  210. n_wb_dat_i = `ALL_ZERO ;
  211. n_wb_adr_i = `ALL_ZERO ;
  212. n_wb_we_i = `LOW ;
  213. n_wb_stb_i = `LOW ;
  214. n_efb_flag = `LOW ;
  215. if(wb_dat_o & ( `MICO_EFB_I2C_SR_TRRDY) )
  216. n_state = `state11;
  217. else if (~wb_dat_o[6]) // if stop bit
  218. n_state = `state2;
  219. else
  220. n_state = c_state;
  221. end
  222. else if(!wb_ack_o)
  223. begin
  224. n_efb_flag = `HIGH ;
  225. n_wb_we_i = `READ_STATUS;
  226. n_wb_adr_i = `MICO_EFB_I2C_SR;
  227. n_wb_dat_i = 0 ;
  228. n_wb_stb_i = `HIGH ;
  229. n_state = c_state;
  230. end
  231. end
  232. `state11: // Store checksum byte Information
  233. begin
  234. if (wb_ack_o && efb_flag)
  235. begin
  236. n_wb_dat_i = `ALL_ZERO ;
  237. n_wb_adr_i = `ALL_ZERO ;
  238. n_wb_we_i = `LOW ;
  239. n_wb_stb_i = `LOW ;
  240. n_efb_flag = `LOW ;
  241. i2c_check_d = wb_dat_o;
  242. if(command_data == ~i2c_check_d)
  243. begin
  244. // oem command
  245. end
  246. else
  247. n_state = `state17;
  248. end
  249. else if(!wb_ack_o)
  250. begin
  251. n_efb_flag = `HIGH ;
  252. n_wb_we_i = `READ_DATA;
  253. n_wb_adr_i = `MICO_EFB_I2C_RXDR;
  254. n_wb_dat_i = 0 ;
  255. n_wb_stb_i = `HIGH ;
  256. n_state = c_state;
  257. end
  258. end
  259. `state12: // Wait for TRRDY Bit
  260. begin
  261. if (wb_ack_o && efb_flag)
  262. begin
  263. n_wb_dat_i = `ALL_ZERO ;
  264. n_wb_adr_i = `ALL_ZERO ;
  265. n_wb_we_i = `LOW ;
  266. n_wb_stb_i = `LOW ;
  267. n_efb_flag = `LOW ;
  268. if(wb_dat_o & ( `MICO_EFB_I2C_SR_TRRDY))
  269. begin
  270. // Read command
  271. end
  272. else if (~wb_dat_o[6])
  273. n_state = `state2;
  274. else
  275. n_state = c_state;
  276. end
  277. else if(!wb_ack_o)
  278. begin
  279. n_efb_flag = `HIGH ;
  280. n_wb_we_i = `READ_STATUS;
  281. n_wb_adr_i = `MICO_EFB_I2C_SR;
  282. n_wb_dat_i = 0 ;
  283. n_wb_stb_i = `HIGH ;
  284. n_state = c_state;
  285. end
  286. end
  287. `state13: // Check for read or write operation Go to State15
  288. begin
  289. if (wb_ack_o && efb_flag)
  290. begin
  291. n_wb_dat_i = `ALL_ZERO ;
  292. n_wb_adr_i = `ALL_ZERO ;
  293. n_wb_we_i = `LOW ;
  294. n_wb_stb_i = `LOW ;
  295. n_efb_flag = `LOW ;
  296. if(wb_dat_o & ( `MICO_EFB_I2C_SR_SRW))
  297. n_state = `state15;
  298. else
  299. n_state = c_state;
  300. end
  301. else if(!wb_ack_o)
  302. begin
  303. n_efb_flag = `HIGH ;
  304. n_wb_we_i = `READ_STATUS;
  305. n_wb_adr_i = `MICO_EFB_I2C_SR;
  306. n_wb_dat_i = 0 ;
  307. n_wb_stb_i = `HIGH ;
  308. n_state = c_state;
  309. end
  310. end
  311. `state14:
  312. begin // Read Data
  313. if (wb_ack_o && efb_flag)
  314. begin
  315. n_wb_dat_i = `ALL_ZERO ;
  316. n_wb_adr_i = `ALL_ZERO ;
  317. n_wb_we_i = `LOW ;
  318. n_wb_stb_i = `LOW ;
  319. n_efb_flag = `LOW ;
  320. n_dat_count = dat_count - 1;
  321. i2c_wr_data[n_dat_count] <= wb_dat_o;
  322. n_state = `state19;
  323. end
  324. else if(!wb_ack_o)
  325. begin
  326. n_efb_flag = `HIGH ;
  327. n_wb_we_i = `READ_DATA;
  328. n_wb_adr_i = `MICO_EFB_I2C_RXDR;
  329. n_wb_dat_i = 0 ;
  330. n_wb_stb_i = `HIGH ;
  331. n_state = c_state;
  332. end
  333. end
  334. `state15: // Send Data to Master
  335. begin
  336. if (wb_ack_o && efb_flag)
  337. begin
  338. n_wb_dat_i = `ALL_ZERO ;
  339. n_wb_adr_i = `ALL_ZERO ;
  340. n_wb_we_i = `LOW ;
  341. n_wb_stb_i = `LOW ;
  342. n_efb_flag = `LOW ;
  343. n_state = `state18;
  344. n_dat_count = dat_count - 1 ;
  345. end
  346. else if(!wb_ack_o)
  347. begin
  348. n_efb_flag = `HIGH ;
  349. n_wb_adr_i = `MICO_EFB_I2C_TXDR;
  350. if(n_dat_count != 1)
  351. n_wb_dat_i = i2c_cmd_q;
  352. else
  353. n_wb_dat_i = i2c_data_q;
  354. n_wb_we_i = `WRITE;
  355. n_wb_stb_i = `HIGH ;
  356. n_state = c_state;
  357. end
  358. end
  359. `state16: // Send NACK Based upon Command Receive
  360. begin
  361. if (wb_ack_o && efb_flag)
  362. begin
  363. n_wb_dat_i = `ALL_ZERO ;
  364. n_wb_adr_i = `ALL_ZERO ;
  365. n_wb_we_i = `LOW ;
  366. n_wb_stb_i = `LOW ;
  367. n_efb_flag = `LOW ;
  368. // n_count_en = `LOW ;
  369. n_state = `state17;
  370. end
  371. else if(!wb_ack_o)
  372. begin
  373. n_efb_flag = `HIGH ;
  374. n_wb_adr_i = `MICO_EFB_I2C_CMDR;
  375. n_wb_dat_i = 8'h0C;
  376. n_wb_we_i = `WRITE;
  377. n_wb_stb_i = `HIGH ;
  378. n_state = c_state;
  379. end
  380. end
  381. `state17: // Wait till Stop is Send
  382. begin
  383. if (wb_ack_o && efb_flag)
  384. begin
  385. n_wb_dat_i = `ALL_ZERO ;
  386. n_wb_adr_i = `ALL_ZERO ;
  387. n_wb_we_i = `LOW ;
  388. n_wb_stb_i = `LOW ;
  389. n_efb_flag = `LOW ;
  390. if(~wb_dat_o[6])
  391. n_state = `state2;
  392. else
  393. n_state = c_state;
  394. end
  395. else if(!wb_ack_o)
  396. begin
  397. n_efb_flag = `HIGH ;
  398. n_wb_we_i = `READ_STATUS;
  399. n_wb_adr_i = `MICO_EFB_I2C_SR;
  400. n_wb_dat_i = 0 ;
  401. n_wb_stb_i = `HIGH ;
  402. n_state = c_state;
  403. end
  404. end
  405. `state18: // Wait for TxRDY flag and send data again if required
  406. begin
  407. if (wb_ack_o && efb_flag)
  408. begin
  409. n_wb_dat_i = `ALL_ZERO ;
  410. n_wb_adr_i = `ALL_ZERO ;
  411. n_wb_we_i = `LOW ;
  412. n_wb_stb_i = `LOW ;
  413. n_efb_flag = `LOW ;
  414. if ( dat_count == 8'h00)
  415. n_state = `state16; // Send Nack for Any More Read Request
  416. else if(wb_dat_o & (`MICO_EFB_I2C_SR_TRRDY ))
  417. n_state = `state15; // Send Data
  418. else
  419. n_state = c_state;
  420. end
  421. else if(!wb_ack_o)
  422. begin
  423. n_efb_flag = `HIGH ;
  424. n_wb_we_i = `READ_STATUS;
  425. n_wb_adr_i = `MICO_EFB_I2C_SR;
  426. n_wb_dat_i = 0 ;
  427. n_wb_stb_i = `HIGH ;
  428. n_state = c_state;
  429. end
  430. end
  431. `state19: // Wait for TRRDY bit
  432. begin
  433. if (wb_ack_o && efb_flag)
  434. begin
  435. n_wb_dat_i = `ALL_ZERO ;
  436. n_wb_adr_i = `ALL_ZERO ;
  437. n_wb_we_i = `LOW ;
  438. n_wb_stb_i = `LOW ;
  439. n_efb_flag = `LOW ;
  440. if ( dat_count == 8'h00)
  441. n_state = `state16;
  442. else if(wb_dat_o & ( `MICO_EFB_I2C_SR_TRRDY) )
  443. n_state = `state14;
  444. else if (~wb_dat_o[6])
  445. n_state = `state2;
  446. else
  447. n_state = c_state;
  448. end
  449. else if(!wb_ack_o)
  450. begin
  451. n_efb_flag = `HIGH ;
  452. n_wb_we_i = `READ_STATUS;
  453. n_wb_adr_i = `MICO_EFB_I2C_SR;
  454. n_wb_dat_i = 0 ;
  455. n_wb_stb_i = `HIGH ;
  456. n_state = c_state;
  457. end
  458. end
  459. endcase
  460. end

 

 參考資料



 






留言

張貼留言

這個網誌中的熱門文章

EC 所需知識 - SMBUS

EC 所需知識 - KBC

EC 所需知識 - LPC