i2cmt_lark.c 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825
  1. /*
  2. * Copyright (c) 2017 Actions Semiconductor Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief I2CMT master driver for Actions SoC
  9. */
  10. //#define DT_DRV_COMPAT actions_acts_i2cmt
  11. #include <errno.h>
  12. #include <sys/__assert.h>
  13. #include <stdbool.h>
  14. #include <kernel.h>
  15. #include <device.h>
  16. #include <init.h>
  17. #include <drivers/ipmsg.h>
  18. #include <drivers/i2cmt.h>
  19. #include <rbuf/rbuf_msg_sc.h>
  20. #include <soc.h>
  21. #include <board_cfg.h>
  22. #include <linker/linker-defs.h>
  23. #define LOG_LEVEL CONFIG_I2C_LOG_LEVEL
  24. #include <logging/log.h>
  25. LOG_MODULE_REGISTER(i2cmt_acts);
  26. #define I2CMT_CLOCK (4000000)
  27. /**
  28. * @brief I2C Module (I2CMT)
  29. */
  30. typedef struct {
  31. volatile uint32_t CTL; /*!< (@ 0x00000000) TASK Control Register */
  32. volatile uint32_t DMA_CTL; /*!< (@ 0x00000004) TASK DMA Control Register */
  33. volatile uint32_t DMA_ADD; /*!< (@ 0x00000008) TASK DMA Address Register */
  34. volatile uint32_t DMA_CNT; /*!< (@ 0x0000000C) TASK DMA CNT Register */
  35. volatile uint32_t DMA_RC; /*!< (@ 0x00000010) TASK DMA remain counter Register */
  36. volatile uint32_t RESERVED[11];
  37. } I2CMT_AUTO_TASK_Type; /*!< Size = 64 (0x40) */
  38. typedef struct { /*!< (@ 0x40088000) I2CMT Structure */
  39. volatile uint32_t CTL; /*!< (@ 0x00000000) I2C Control Register */
  40. volatile uint32_t NML_STA; /*!< (@ 0x00000004) I2C Status Register */
  41. volatile uint32_t NML_DAT; /*!< (@ 0x00000008) I2C TX/RX DATA Register */
  42. volatile uint32_t AUTO_TASK_STAT; /*!< (@ 0x0000000C) Auto task status Register */
  43. volatile uint32_t AUTO_TASK_IE; /*!< (@ 0x00000010) Auto task IRQ enable Register */
  44. volatile uint32_t AUTO_TASK_IP; /*!< (@ 0x00000014) Auto task IRQ pending Register */
  45. volatile uint32_t RESERVED[58];
  46. volatile I2CMT_AUTO_TASK_Type AUTO_TASK[4]; /*!< (@ 0x00000100) TASK[0..3] Group */
  47. volatile uint32_t RESERVED1[3968];
  48. } I2CMT_Type; /*!< Size = 512 (0x200) */
  49. typedef I2CMT_Type I2CMT_ARRAYType[1]; /*!< max. 2 instances available */
  50. #define I2CMT ((I2CMT_ARRAYType*) I2CMT0_REG_BASE)
  51. /* ========================================================== CTL ========================================================== */
  52. #define I2CMT_CTL_CLKDIV_Msk (0xf80UL) /*!< CLKDIV (Bitfield-Mask: 0x1f) */
  53. #define I2CMT_CTL_MODSEL_Msk (0x40UL) /*!< MODSEL (Bitfield-Mask: 0x01) */
  54. #define I2CMT_CTL_EN_Msk (0x20UL) /*!< EN (Bitfield-Mask: 0x01) */
  55. #define I2CMT_CTL_IRQE_Msk (0x10UL) /*!< IRQE (Bitfield-Mask: 0x01) */
  56. #define I2CMT_CTL_GBCC_Msk (0xcUL) /*!< GBCC (Bitfield-Mask: 0x03) */
  57. #define I2CMT_CTL_RB_Msk (0x2UL) /*!< RB (Bitfield-Mask: 0x01) */
  58. #define I2CMT_CTL_GACK_Msk (0x1UL) /*!< GACK (Bitfield-Mask: 0x01) */
  59. #define I2CMT_CTL_CLKDIV_Pos (7UL) /*!< CLKDIV (Bit 7) */
  60. #define I2CMT_CTL_MODSEL_Pos (6UL) /*!< MODSEL (Bit 6) */
  61. #define I2CMT_CTL_EN_Pos (5UL) /*!< EN (Bit 5) */
  62. #define I2CMT_CTL_IRQE_Pos (4UL) /*!< IRQE (Bit 4) */
  63. #define I2CMT_CTL_GBCC_Pos (2UL) /*!< GBCC (Bit 2) */
  64. #define I2CMT_CTL_RB_Pos (1UL) /*!< RB (Bit 1) */
  65. #define I2CMT_CTL_GACK_Pos (0UL) /*!< GACK (Bit 0) */
  66. /* ======================================================== NML_STA ======================================================== */
  67. #define I2CMT_NML_STA_TCB_Msk (0x100UL) /*!< TCB (Bitfield-Mask: 0x01) */
  68. #define I2CMT_NML_STA_STPD_Msk (0x80UL) /*!< STPD (Bitfield-Mask: 0x01) */
  69. #define I2CMT_NML_STA_STAD_Msk (0x40UL) /*!< STAD (Bitfield-Mask: 0x01) */
  70. #define I2CMT_NML_STA_RWST_Msk (0x20UL) /*!< RWST (Bitfield-Mask: 0x01) */
  71. #define I2CMT_NML_STA_LBST_Msk (0x10UL) /*!< LBST (Bitfield-Mask: 0x01) */
  72. #define I2CMT_NML_STA_IRQP_Msk (0x8UL) /*!< IRQP (Bitfield-Mask: 0x01) */
  73. #define I2CMT_NML_STA_BBB_Msk (0x4UL) /*!< BBB (Bitfield-Mask: 0x01) */
  74. #define I2CMT_NML_STA_BEB_Msk (0x2UL) /*!< BEB (Bitfield-Mask: 0x01) */
  75. #define I2CMT_NML_STA_RACK_Msk (0x1UL) /*!< RACK (Bitfield-Mask: 0x01) */
  76. /* ===================================================== AUTO_TASK_IE ====================================================== */
  77. #define I2CMT_AUTO_TASK_IE_TSK0BERIE_Pos (12UL) /*!< TSK0BERIE (Bit 12) */
  78. #define I2CMT_AUTO_TASK_IE_TSK0NAKIE_Pos (8UL) /*!< TSK0NAKIE (Bit 8) */
  79. #define I2CMT_AUTO_TASK_IE_TSK0HFIE_Pos (4UL) /*!< TSK0HFIE (Bit 4) */
  80. #define I2CMT_AUTO_TASK_IE_TSK0TCIE_Pos (0UL) /*!< TSK0TCIE (Bit 0) */
  81. /* ===================================================== AUTO_TASK_IP ====================================================== */
  82. #define I2CMT_AUTO_TASK_IP_TSK0BERIP_Pos (12UL) /*!< TSK0BERIP (Bit 12) */
  83. #define I2CMT_AUTO_TASK_IP_TSK0NAKIP_Pos (8UL) /*!< TSK0NAKIP (Bit 8) */
  84. #define I2CMT_AUTO_TASK_IP_TSK0HFIP_Pos (4UL) /*!< TSK0HFIP (Bit 4) */
  85. #define I2CMT_AUTO_TASK_IP_TSK0TCIP_Pos (0UL) /*!< TSK0TCIP (Bit 0) */
  86. /* ========================================================== CTL ========================================================== */
  87. #define I2CMT_AUTO_TASK_CTL_SOFT_ST_Msk (0x80000000UL) /*!< SOFT_ST (Bitfield-Mask: 0x01) */
  88. /* ======================================================== DMA_CTL ======================================================== */
  89. #define I2CMT_AUTO_TASK_DMA_CTL_DMARELD_Pos (1UL) /*!< DMARELD (Bit 1) */
  90. #define I2CMT_AUTO_TASK_DMA_CTL_DMASTART_Msk (0x1UL) /*!< DMASTART (Bitfield-Mask: 0x01) */
  91. // I2C BUS STAT
  92. #define MASK (I2CMT_CTL_GBCC_Msk | I2CMT_CTL_RB_Msk | I2CMT_CTL_GACK_Msk)
  93. #define START (1 << I2CMT_CTL_GBCC_Pos)
  94. #define STOP (2 << I2CMT_CTL_GBCC_Pos)
  95. #define RESTA (3 << I2CMT_CTL_GBCC_Pos)
  96. #define REBUS I2CMT_CTL_RB_Msk
  97. #define ACK 0
  98. #define NACK I2CMT_CTL_GACK_Msk
  99. // TIMER
  100. #define CMU_TIMERCLK(id) (CMU_TIMER0CLK + (id) * 4)
  101. #define T_CTL(id) (T0_CTL + (id) * 0x20)
  102. #define T_VAL(id) (T0_VAL + (id) * 0x20)
  103. struct acts_i2cmt_config {
  104. uint32_t ctl_reg;
  105. uint32_t clk_freq;
  106. uint8_t bus_id;
  107. uint8_t clock_id;
  108. uint8_t reset_id;
  109. void (*irq_config_func)(void);
  110. };
  111. /* Device run time data */
  112. struct acts_i2cmt_data {
  113. struct k_mutex mutex;
  114. i2c_task_callback_t task_cb[I2C_TASK_NUM];
  115. void *task_cb_ctx[I2C_TASK_NUM];
  116. i2c_task_t *task_attr[I2C_TASK_NUM];
  117. uint8_t *task_buf[I2C_TASK_NUM];
  118. uint32_t task_len[I2C_TASK_NUM];
  119. };
  120. #define DEV_NAME(dev) ((dev)->name)
  121. #define DEV_CFG(dev) \
  122. ((const struct acts_i2cmt_config *const)(dev)->config)
  123. #define DEV_DATA(dev) \
  124. ((struct acts_i2cmt_data *const)(dev)->data)
  125. static void i2cmt_set_rate(int i2c_dev, int rate)
  126. {
  127. unsigned int val, div;
  128. /* RC4M clock src and div=1 */
  129. val = (0 << 8) | (0 << 0);
  130. sys_write32(val, CMU_I2CMT0CLK + i2c_dev * 4);
  131. div = (I2CMT_CLOCK + rate * 2 - 1) / (rate * 2);
  132. I2CMT[i2c_dev]->CTL &= ~I2CMT_CTL_CLKDIV_Msk;
  133. I2CMT[i2c_dev]->CTL |= div << I2CMT_CTL_CLKDIV_Pos;
  134. }
  135. // switch to auto mode
  136. static void i2cmt_auto_mode_set(int i2c_dev)
  137. {
  138. /* clear task IRQ pending */
  139. I2CMT[i2c_dev]->AUTO_TASK_IP = I2CMT[i2c_dev]->AUTO_TASK_IP;
  140. /* set auto mode */
  141. I2CMT[i2c_dev]->CTL |= I2CMT_CTL_MODSEL_Msk;
  142. }
  143. // switch to normal mode
  144. static void i2cmt_auto_mode_cancel(int i2c_dev)
  145. {
  146. /* cancel auto mode */
  147. I2CMT[i2c_dev]->CTL &= ~I2CMT_CTL_MODSEL_Msk;
  148. }
  149. // configure i2c task
  150. static void i2cmt_auto_task_config(int i2c_dev, int task_id, i2c_task_t *task_attr, uint32_t addr)
  151. {
  152. uint8_t *pdata = (uint8_t *)&task_attr->ctl;
  153. volatile uint32_t ctl = *(volatile unsigned int*)pdata;
  154. /* config task dma first */
  155. I2CMT[i2c_dev]->AUTO_TASK[task_id].DMA_ADD = addr;//task_attr->dma.addr;
  156. I2CMT[i2c_dev]->AUTO_TASK[task_id].DMA_CNT = task_attr->dma.len;
  157. if (task_attr->dma.len > 0) {
  158. I2CMT[i2c_dev]->AUTO_TASK[task_id].DMA_CTL = I2CMT_AUTO_TASK_DMA_CTL_DMASTART_Msk
  159. | (task_attr->dma.reload << I2CMT_AUTO_TASK_DMA_CTL_DMARELD_Pos);
  160. }
  161. if(task_attr->irq_type & I2C_TASK_IRQ_CMPLT) {
  162. /* enable task DMA transmission complete IRQ */
  163. I2CMT[i2c_dev]->AUTO_TASK_IE |= 1 << (I2CMT_AUTO_TASK_IE_TSK0TCIE_Pos + task_id);
  164. } else {
  165. /* disable task DMA transmission complete IRQ */
  166. I2CMT[i2c_dev]->AUTO_TASK_IE &= ~(1 << (I2CMT_AUTO_TASK_IE_TSK0TCIE_Pos + task_id));
  167. }
  168. if(task_attr->irq_type & I2C_TASK_IRQ_HALF_CMPLT) {
  169. /* enable task DMA Half transmission complete IRQ */
  170. I2CMT[i2c_dev]->AUTO_TASK_IE |= 1 << (I2CMT_AUTO_TASK_IE_TSK0HFIE_Pos + task_id);
  171. } else {
  172. /* disable task DMA Half transmission complete IRQ */
  173. I2CMT[i2c_dev]->AUTO_TASK_IE &= ~(1 << (I2CMT_AUTO_TASK_IE_TSK0HFIE_Pos + task_id));
  174. }
  175. if(task_attr->irq_type & I2C_TASK_IRQ_NACK) {
  176. /* enable task DMA receive NACK IRQ */
  177. I2CMT[i2c_dev]->AUTO_TASK_IE |= 1 << (I2CMT_AUTO_TASK_IE_TSK0NAKIE_Pos + task_id);
  178. } else {
  179. /* disable task DMA receive NACK IRQ */
  180. I2CMT[i2c_dev]->AUTO_TASK_IE &= ~(1 << (I2CMT_AUTO_TASK_IE_TSK0NAKIE_Pos + task_id));
  181. }
  182. if(task_attr->irq_type & I2C_TASK_IRQ_BUS_ERROR) {
  183. /* enable task DMA bus error IRQ */
  184. I2CMT[i2c_dev]->AUTO_TASK_IE |= 1 << (I2CMT_AUTO_TASK_IE_TSK0BERIE_Pos + task_id);
  185. } else {
  186. /* disable task DMA bus error IRQ */
  187. I2CMT[i2c_dev]->AUTO_TASK_IE &= ~(1 << (I2CMT_AUTO_TASK_IE_TSK0BERIE_Pos + task_id));
  188. }
  189. /* config task ctl*/
  190. I2CMT[i2c_dev]->AUTO_TASK[task_id].CTL = (ctl & ~I2CMT_AUTO_TASK_CTL_SOFT_ST_Msk);
  191. }
  192. // force trigger i2c task by software if don't use externtal trigger sources
  193. static void i2cmt_auto_task_soft_start(int i2c_dev, int task_id)
  194. {
  195. /* trigger task by software */
  196. I2CMT[i2c_dev]->AUTO_TASK[task_id].CTL &= ~I2CMT_AUTO_TASK_CTL_SOFT_ST_Msk;
  197. I2CMT[i2c_dev]->AUTO_TASK[task_id].CTL |= I2CMT_AUTO_TASK_CTL_SOFT_ST_Msk;
  198. }
  199. // force trigger i2c task by software if don't use externtal trigger sources
  200. static void i2cmt_auto_task_soft_stop(int i2c_dev, int task_id)
  201. {
  202. /* trigger task by software */
  203. I2CMT[i2c_dev]->AUTO_TASK[task_id].CTL &= ~I2CMT_AUTO_TASK_CTL_SOFT_ST_Msk;
  204. }
  205. //get the irq pending
  206. static __sleepfunc int i2cmt_auto_task_irq_get_pending(int i2c_dev)
  207. {
  208. return I2CMT[i2c_dev]->AUTO_TASK_IP & I2CMT[i2c_dev]->AUTO_TASK_IE;
  209. }
  210. static __sleepfunc int i2cmt_auto_task_irq_mask(int task_id, int task_irq_type)
  211. {
  212. int irq_pending_mask = 0;
  213. switch (task_irq_type) {
  214. case I2C_TASK_IRQ_CMPLT:
  215. irq_pending_mask = 1 << (I2CMT_AUTO_TASK_IP_TSK0TCIP_Pos + task_id);
  216. break;
  217. case I2C_TASK_IRQ_HALF_CMPLT:
  218. irq_pending_mask = 1 << (I2CMT_AUTO_TASK_IP_TSK0HFIP_Pos + task_id);
  219. break;
  220. case I2C_TASK_IRQ_NACK:
  221. irq_pending_mask = 1 << (I2CMT_AUTO_TASK_IP_TSK0NAKIP_Pos + task_id);
  222. break;
  223. case I2C_TASK_IRQ_BUS_ERROR:
  224. irq_pending_mask = 1 << (I2CMT_AUTO_TASK_IP_TSK0BERIP_Pos + task_id);
  225. break;
  226. default:
  227. break;
  228. }
  229. return irq_pending_mask;
  230. }
  231. //check if the irq is pending
  232. //static __sleepfunc int i2cmt_auto_task_irq_is_pending(int i2c_dev, int task_id, int task_irq_type)
  233. //{
  234. // return I2CMT[i2c_dev]->AUTO_TASK_IP & i2cmt_auto_task_irq_mask(task_id, task_irq_type);
  235. //}
  236. //clear task irq pending
  237. static __sleepfunc void i2cmt_auto_task_irq_clr_pending(int i2c_dev, int task_id, int task_irq_type)
  238. {
  239. I2CMT[i2c_dev]->AUTO_TASK_IP = i2cmt_auto_task_irq_mask(task_id, task_irq_type);
  240. }
  241. static int i2cmt_wait_start(int i2c_dev)
  242. {
  243. int ret = 0;
  244. int pre_time, cur_time;
  245. // set a 50ms timeout mechanism
  246. pre_time = k_uptime_get_32();
  247. // wait for start
  248. while(!(I2CMT[i2c_dev]->NML_STA & I2CMT_NML_STA_STAD_Msk)) {
  249. cur_time = k_uptime_get_32();
  250. // stop retry when timeout
  251. if ((cur_time - pre_time) > 50) {
  252. ret = -1;
  253. break;
  254. }
  255. }
  256. if (!ret) {
  257. // clear start bit
  258. I2CMT[i2c_dev]->NML_STA = I2CMT_NML_STA_STAD_Msk;
  259. }
  260. return ret;
  261. }
  262. static int i2cmt_wait_stop(int i2c_dev)
  263. {
  264. int ret = 0;
  265. int pre_time, cur_time;
  266. // set a 50ms timeout mechanism
  267. pre_time = k_uptime_get_32();
  268. // wait for stop
  269. while(!(I2CMT[i2c_dev]->NML_STA & I2CMT_NML_STA_STPD_Msk)) {
  270. cur_time = k_uptime_get_32();
  271. // stop retry when timeout
  272. if ((cur_time - pre_time) > 50) {
  273. ret = -1;
  274. break;
  275. }
  276. }
  277. if (!ret) {
  278. // clear stop bit
  279. I2CMT[i2c_dev]->NML_STA = I2CMT_NML_STA_STPD_Msk;
  280. }
  281. return ret;
  282. }
  283. static int i2cmt_wait_complete(int i2c_dev)
  284. {
  285. int ret = 0;
  286. int pre_time, cur_time;
  287. // set a 50ms timeout mechanism
  288. pre_time = k_uptime_get_32();
  289. // wait for complete
  290. while(!(I2CMT[i2c_dev]->NML_STA & I2CMT_NML_STA_TCB_Msk)) {
  291. cur_time = k_uptime_get_32();
  292. // stop retry when timeout
  293. if ((cur_time - pre_time) > 50) {
  294. ret = -1;
  295. break;
  296. }
  297. }
  298. if (!ret) {
  299. // clear complete bit
  300. I2CMT[i2c_dev]->NML_STA = I2CMT_NML_STA_TCB_Msk;
  301. }
  302. return ret;
  303. }
  304. static int i2cmt_xfer(int i2c_dev, i2c_xfer_t *xfer, int wr)
  305. {
  306. int ret = I2C_XFER_OK;
  307. int i, sta_mode;
  308. /* cancel auto mode */
  309. i2cmt_auto_mode_cancel(i2c_dev);
  310. /* i2c clear status */
  311. I2CMT[i2c_dev]->NML_STA = I2CMT[i2c_dev]->NML_STA;
  312. /* has cmd or write mode */
  313. if ((xfer->cmd_len > 0) || wr) {
  314. /* write device addr + w */
  315. I2CMT[i2c_dev]->NML_DAT = (xfer->dev << 1);
  316. /* send start and addr */
  317. I2CMT[i2c_dev]->CTL = (I2CMT[i2c_dev]->CTL & ~MASK) | START | REBUS;
  318. if (i2cmt_wait_start(i2c_dev)) {
  319. return I2C_XFER_START_FAILED;
  320. }
  321. /* write for completed */
  322. if (i2cmt_wait_complete(i2c_dev)) {
  323. return I2C_XFER_NO_TCB;
  324. }
  325. /* check bus error */
  326. if (I2CMT[i2c_dev]->NML_STA & I2CMT_NML_STA_BEB_Msk) {
  327. ret = I2C_XFER_BUS_ERR;
  328. goto _xfer_out;
  329. }
  330. /* check nack */
  331. if (!(I2CMT[i2c_dev]->NML_STA & I2CMT_NML_STA_RACK_Msk)) {
  332. ret = I2C_XFER_NACK;
  333. goto _xfer_out;
  334. }
  335. /* write cmd and wait for transfer complete */
  336. for (i = 0; i < xfer->cmd_len; i ++) {
  337. I2CMT[i2c_dev]->NML_DAT = xfer->cmd_buf[i];
  338. I2CMT[i2c_dev]->CTL = (I2CMT[i2c_dev]->CTL & ~MASK) | REBUS;
  339. if (i2cmt_wait_complete(i2c_dev)) {
  340. return I2C_XFER_NO_TCB;
  341. }
  342. }
  343. }
  344. /* write mode */
  345. if (wr) {
  346. /* write data and wait for transfer complete */
  347. for (i = 0; i < xfer->dat_len; i ++) {
  348. I2CMT[i2c_dev]->NML_DAT = xfer->dat_buf[i];
  349. I2CMT[i2c_dev]->CTL = (I2CMT[i2c_dev]->CTL & ~MASK) | REBUS;
  350. if (i2cmt_wait_complete(i2c_dev)) {
  351. return I2C_XFER_NO_TCB;
  352. }
  353. }
  354. } else {
  355. /* read mode: restart after write cmd */
  356. if (xfer->cmd_len > 0) {
  357. sta_mode = RESTA;
  358. } else {
  359. sta_mode = START;
  360. }
  361. /* write device addr + r */
  362. I2CMT[i2c_dev]->NML_DAT = ((xfer->dev << 1) | 0x1);
  363. /* send start/restart and addr */
  364. I2CMT[i2c_dev]->CTL = (I2CMT[i2c_dev]->CTL & ~MASK) | sta_mode | REBUS;
  365. if (i2cmt_wait_complete(i2c_dev)) {
  366. return I2C_XFER_NO_TCB;
  367. }
  368. /* check bus error */
  369. if (I2CMT[i2c_dev]->NML_STA & I2CMT_NML_STA_BEB_Msk) {
  370. ret = I2C_XFER_BUS_ERR;
  371. goto _xfer_out;
  372. }
  373. /* check nack */
  374. if (!(I2CMT[i2c_dev]->NML_STA & I2CMT_NML_STA_RACK_Msk)) {
  375. ret = I2C_XFER_NACK;
  376. goto _xfer_out;
  377. }
  378. /* read data and wait for transfer complete */
  379. for (i = 0; i < xfer->dat_len; i ++) {
  380. /* ack/nack */
  381. if (i == xfer->dat_len - 1) {
  382. I2CMT[i2c_dev]->CTL = (I2CMT[i2c_dev]->CTL & ~MASK) | NACK | REBUS;
  383. } else {
  384. I2CMT[i2c_dev]->CTL = (I2CMT[i2c_dev]->CTL & ~MASK) | ACK | REBUS;
  385. }
  386. if (i2cmt_wait_complete(i2c_dev)) {
  387. return I2C_XFER_NO_TCB;
  388. }
  389. /* read data */
  390. xfer->dat_buf[i] = I2CMT[i2c_dev]->NML_DAT;
  391. }
  392. }
  393. _xfer_out:
  394. /* send stop */
  395. I2CMT[i2c_dev]->CTL = (I2CMT[i2c_dev]->CTL & ~MASK) | STOP | REBUS;
  396. if (i2cmt_wait_stop(i2c_dev)) {
  397. ret = I2C_XFER_STOP_FAILED;
  398. }
  399. /* enable auto mode */
  400. i2cmt_auto_mode_set(i2c_dev);
  401. return ret;
  402. }
  403. static int i2cmt_acts_configure(const struct device *dev, uint32_t config)
  404. {
  405. // code implement by user
  406. return 0;
  407. }
  408. static int i2cmt_acts_transfer(const struct device *dev, struct i2c_msg *msgs,
  409. uint8_t num_msgs, uint16_t addr)
  410. {
  411. const struct acts_i2cmt_config *cfg = DEV_CFG(dev);
  412. struct acts_i2cmt_data *data = DEV_DATA(dev);
  413. i2c_xfer_t xfer;
  414. uint8_t flags;
  415. int ret;
  416. if (!num_msgs)
  417. return 0;
  418. /* config xfer */
  419. xfer.dev = addr;
  420. if (num_msgs >= 2) {
  421. xfer.cmd_buf = msgs[0].buf;
  422. xfer.cmd_len = msgs[0].len;
  423. xfer.dat_buf = msgs[1].buf;
  424. xfer.dat_len = msgs[1].len;
  425. flags = msgs[1].flags;
  426. } else {
  427. xfer.cmd_buf = NULL;
  428. xfer.cmd_len = 0;
  429. xfer.dat_buf = msgs[0].buf;
  430. xfer.dat_len = msgs[0].len;
  431. flags = msgs[0].flags;
  432. }
  433. k_mutex_lock(&data->mutex, K_FOREVER);
  434. pm_device_busy_set(dev);
  435. if ((flags & I2C_MSG_RW_MASK) == I2C_MSG_READ) {
  436. ret = i2cmt_xfer(cfg->bus_id, &xfer, 0);
  437. } else {
  438. ret = i2cmt_xfer(cfg->bus_id, &xfer, 1);
  439. }
  440. pm_device_busy_clear(dev);
  441. k_mutex_unlock(&data->mutex);
  442. return ret;
  443. }
  444. static void i2cmt_acts_register_callback(struct device *dev, int task_id,
  445. i2c_task_callback_t cb, void *context)
  446. {
  447. struct acts_i2cmt_data *data = DEV_DATA(dev);
  448. data->task_cb[task_id] = cb;
  449. data->task_cb_ctx[task_id] = context;
  450. }
  451. static uint8_t* i2cmt_task_buf_start(struct acts_i2cmt_data *data,
  452. int task_id, uint32_t addr, uint16_t len, uint8_t rd)
  453. {
  454. rbuf_t *rbuf;
  455. uint8_t *sbuf;
  456. uint16_t slen;
  457. /* get task buf */
  458. sbuf = data->task_buf[task_id];
  459. /* check task buf len */
  460. if ((sbuf != NULL) && (len > data->task_len[task_id])) {
  461. /* free task buf */
  462. rbuf = RBUF_FR_BUF(sbuf);
  463. RB_MSG_FREE(rbuf);
  464. sbuf = NULL;
  465. }
  466. /* alloc task buf */
  467. if (sbuf == NULL) {
  468. slen = (len < 16) ? 16 : len;
  469. rbuf = RB_MSG_ALLOC(slen);
  470. sbuf = (uint8_t*)RBUF_TO_BUF(rbuf);
  471. data->task_buf[task_id] = sbuf;
  472. data->task_len[task_id] = slen;
  473. }
  474. /* copy buf before writing */
  475. if (!rd && (addr != 0)) {
  476. memcpy(sbuf, (void*)addr, len);
  477. }
  478. return sbuf;
  479. }
  480. static uint8_t* i2cmt_task_buf_stop(struct acts_i2cmt_data *data,
  481. int task_id, uint32_t addr, uint32_t len, uint8_t rd)
  482. {
  483. uint8_t *sbuf;
  484. sbuf = data->task_buf[task_id];
  485. /* copy buf after reading */
  486. if (rd && (addr != 0)) {
  487. memcpy((void*)addr, sbuf, len);
  488. }
  489. return sbuf;
  490. }
  491. static int i2cmt_acts_task_start(struct device *dev, int task_id,
  492. const i2c_task_t *attr)
  493. {
  494. const struct acts_i2cmt_config *cfg =DEV_CFG(dev);
  495. struct acts_i2cmt_data *data = DEV_DATA(dev);
  496. uint8_t *buf;
  497. /* start dma buffer */
  498. buf = i2cmt_task_buf_start(data, task_id, attr->dma.addr, attr->dma.len, attr->ctl.rwsel);
  499. /* save attr */
  500. data->task_attr[task_id] = (i2c_task_t*)attr;
  501. /* select i2c auto mode */
  502. i2cmt_auto_mode_set(cfg->bus_id);
  503. /* config i2c task */
  504. i2cmt_auto_task_config(cfg->bus_id, task_id, (i2c_task_t*)attr, (uint32_t)buf);
  505. /* config ppi */
  506. if (!attr->ctl.soft) {
  507. /* disable ppi trigger */
  508. ppi_trig_src_en(attr->trig.trig, 0);
  509. /* clear ppi pending */
  510. ppi_trig_src_clr_pending(attr->trig.trig);
  511. /* config ppi trigger */
  512. ppi_task_trig_config(attr->trig.chan, attr->trig.task, attr->trig.trig);
  513. /* enable ppi trigger */
  514. ppi_trig_src_en(attr->trig.trig, attr->trig.en);
  515. if (attr->trig.en) {
  516. if (attr->trig.trig <= TIMER4) {
  517. sys_write32(0x1, CMU_TIMERCLK(attr->trig.trig)); // select hosc/32=1M
  518. sys_write32(attr->trig.peri*1000, T_VAL(attr->trig.trig));
  519. sys_write32(0x24, T_CTL(attr->trig.trig));
  520. }
  521. }
  522. } else {
  523. /* soft trigger */
  524. i2cmt_auto_task_soft_start(cfg->bus_id, task_id);
  525. }
  526. return 0;
  527. }
  528. static int i2cmt_acts_task_stop(struct device *dev, int task_id)
  529. {
  530. const struct acts_i2cmt_config *cfg =DEV_CFG(dev);
  531. struct acts_i2cmt_data *data = DEV_DATA(dev);
  532. const i2c_task_t *attr = data->task_attr[task_id];
  533. /* disable ppi trigger */
  534. if ((attr != NULL) && (!attr->ctl.soft)) {
  535. ppi_trig_src_en(attr->trig.trig, 0);
  536. if (attr->trig.trig <= TIMER4) {
  537. sys_write32(0x0, T_CTL(attr->trig.trig));
  538. }
  539. } else {
  540. i2cmt_auto_task_soft_stop(cfg->bus_id, task_id);
  541. }
  542. /* stop dma buffer */
  543. i2cmt_task_buf_stop(data, task_id, attr->dma.addr, attr->dma.len, attr->ctl.rwsel);
  544. /* clear attr */
  545. data->task_attr[task_id] = NULL;
  546. return 0;
  547. }
  548. static const unsigned short i2c_irq_list[4] = {
  549. I2C_TASK_IRQ_CMPLT,
  550. I2C_TASK_IRQ_HALF_CMPLT,
  551. I2C_TASK_IRQ_NACK,
  552. I2C_TASK_IRQ_BUS_ERROR,
  553. };
  554. static void i2cmt_acts_isr(struct device *dev)
  555. {
  556. const struct acts_i2cmt_config *cfg = DEV_CFG(dev);;
  557. struct acts_i2cmt_data *data = DEV_DATA(dev);
  558. int task_id, irq_type, len;
  559. int pending = i2cmt_auto_task_irq_get_pending(cfg->bus_id);
  560. int pos = find_msb_set(pending) - 1;
  561. i2c_task_callback_t cb;
  562. const i2c_task_t *attr;
  563. uint8_t *buf;
  564. void *ctx;
  565. while (pos >= 0) {
  566. task_id = (pos % 4);
  567. irq_type = i2c_irq_list[pos / 4];
  568. attr = data->task_attr[task_id];
  569. /* clear task pending */
  570. i2cmt_auto_task_irq_clr_pending(cfg->bus_id, task_id, irq_type);
  571. /* clear ppi pending */
  572. ppi_trig_src_clr_pending(SPIMT0_TASK0_CIP + attr->trig.task);
  573. if (!attr->ctl.soft) {
  574. ppi_trig_src_clr_pending(attr->trig.trig);
  575. if (attr->trig.trig <= TIMER4) {
  576. //timer_clear_pd(attr->trig.trig);
  577. }
  578. }
  579. /* call handler */
  580. cb = data->task_cb[task_id];
  581. if (cb != NULL) {
  582. /* get buffer */
  583. ctx = data->task_cb_ctx[task_id];
  584. buf = data->task_buf[task_id];
  585. len = attr->dma.len / 2;
  586. switch(irq_type) {
  587. case I2C_TASK_IRQ_CMPLT:
  588. buf += len;
  589. break;
  590. case I2C_TASK_IRQ_HALF_CMPLT:
  591. break;
  592. case I2C_TASK_IRQ_NACK:
  593. case I2C_TASK_IRQ_BUS_ERROR:
  594. buf = NULL;
  595. break;
  596. }
  597. cb(buf, len, ctx);
  598. }
  599. /* find msb */
  600. pending = i2cmt_auto_task_irq_get_pending(cfg->bus_id);
  601. pos = find_msb_set(pending) - 1;
  602. }
  603. }
  604. __sleepfunc uint8_t* i2c_task_get_data(int bus_id, int task_id, int trig, int *plen)
  605. {
  606. int len = 0;
  607. uint8_t *buf = NULL;
  608. int pending = i2cmt_auto_task_irq_get_pending(bus_id);
  609. /* clear task pending */
  610. if (pending & i2cmt_auto_task_irq_mask(task_id, I2C_TASK_IRQ_HALF_CMPLT)) {
  611. i2cmt_auto_task_irq_clr_pending(bus_id, task_id, I2C_TASK_IRQ_HALF_CMPLT);
  612. len = I2CMT[bus_id]->AUTO_TASK[task_id].DMA_CNT / 2;
  613. buf = (uint8_t *)I2CMT[bus_id]->AUTO_TASK[task_id].DMA_ADD;
  614. } else if (pending & i2cmt_auto_task_irq_mask(task_id, I2C_TASK_IRQ_CMPLT)) {
  615. i2cmt_auto_task_irq_clr_pending(bus_id, task_id, I2C_TASK_IRQ_CMPLT);
  616. len = I2CMT[bus_id]->AUTO_TASK[task_id].DMA_CNT / 2;
  617. buf = (uint8_t *)I2CMT[bus_id]->AUTO_TASK[task_id].DMA_ADD + len;
  618. }
  619. /* clear ppi pending */
  620. if (buf) {
  621. ppi_trig_src_clr_pending(I2CMT0_TASK0_CIP+task_id);
  622. if (trig >= 0) {
  623. ppi_trig_src_clr_pending(trig);
  624. }
  625. }
  626. if (plen) {
  627. *plen = len;
  628. }
  629. return buf;
  630. }
  631. int i2cmt_acts_init(const struct device *dev)
  632. {
  633. const struct acts_i2cmt_config *cfg = DEV_CFG(dev);;
  634. struct acts_i2cmt_data *data = DEV_DATA(dev);
  635. // enable clock
  636. acts_clock_peripheral_enable(cfg->clock_id);
  637. // reset spimt
  638. acts_reset_peripheral(cfg->reset_id);
  639. /* enable i2c */
  640. I2CMT[cfg->bus_id]->CTL |= I2CMT_CTL_EN_Msk;
  641. // set clock
  642. i2cmt_set_rate(cfg->bus_id, cfg->clk_freq);
  643. /* irq init */
  644. cfg->irq_config_func();
  645. k_mutex_init(&data->mutex);
  646. return 0;
  647. }
  648. const struct i2cmt_driver_api i2cmt_acts_driver_api = {
  649. .i2c_api = {
  650. .configure = i2cmt_acts_configure,
  651. .transfer = i2cmt_acts_transfer,
  652. },
  653. .register_callback = i2cmt_acts_register_callback,
  654. .task_start = i2cmt_acts_task_start,
  655. .task_stop = i2cmt_acts_task_stop,
  656. };
  657. #define I2CMT_ACTS_DEFINE_CONFIG(n) \
  658. static const struct device DEVICE_NAME_GET(i2cmt##n##_acts); \
  659. \
  660. static void i2cmt##n##_acts_irq_config(void) \
  661. { \
  662. IRQ_CONNECT(IRQ_ID_IIC##n##MT, CONFIG_I2CMT_##n##_IRQ_PRI, \
  663. i2cmt_acts_isr, \
  664. DEVICE_GET(i2cmt##n##_acts), 0); \
  665. irq_enable(IRQ_ID_IIC##n##MT); \
  666. } \
  667. static const struct acts_i2cmt_config i2cmt##n##_acts_config = { \
  668. .ctl_reg = I2CMT##n##_REG_BASE,\
  669. .clk_freq = CONFIG_I2CMT_##n##_CLK_FREQ, \
  670. .bus_id = n,\
  671. .clock_id = CLOCK_ID_I2CMT##n,\
  672. .reset_id = RESET_ID_I2CMT##n,\
  673. .irq_config_func = i2cmt##n##_acts_irq_config, \
  674. }
  675. #define I2CMT_ACTS_DEFINE_DATA(n) \
  676. static struct acts_i2cmt_data i2cmt##n##_acts_dev_data;
  677. #define I2CMT_ACTS_DEVICE_INIT(n) \
  678. I2CMT_ACTS_DEFINE_CONFIG(n); \
  679. I2CMT_ACTS_DEFINE_DATA(n); \
  680. DEVICE_DEFINE(i2cmt##n##_acts, \
  681. CONFIG_I2CMT_##n##_NAME, \
  682. &i2cmt_acts_init, NULL, &i2cmt##n##_acts_dev_data, \
  683. &i2cmt##n##_acts_config, POST_KERNEL, \
  684. CONFIG_I2C_INIT_PRIORITY, &i2cmt_acts_driver_api);
  685. #if IS_ENABLED(CONFIG_I2CMT_0)
  686. I2CMT_ACTS_DEVICE_INIT(0)
  687. #endif
  688. #if IS_ENABLED(CONFIG_I2CMT_1)
  689. I2CMT_ACTS_DEVICE_INIT(1)
  690. #endif