i2c_acts.c 27 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069
  1. /*
  2. * Copyright (c) 2017 Actions Semiconductor Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief I2C master driver for Actions SoC
  9. */
  10. //#define DT_DRV_COMPAT actions_acts_i2c
  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/i2c.h>
  18. #include <soc.h>
  19. #include <board_cfg.h>
  20. #include <sys/ring_buffer.h>
  21. #define LOG_LEVEL CONFIG_I2C_LOG_LEVEL
  22. #include <logging/log.h>
  23. LOG_MODULE_REGISTER(i2c_acts_i2c);
  24. //#define I2C_TIMEOUT_MS Z_TIMEOUT_MS(50)
  25. #define I2C_WAIT_COMPLETE_MS (2)
  26. #define I2C_WAIT_TX_FIFO_EMPTY (1000)
  27. #define I2C_WAIT_ASYNC_TIMEOUT_US (6000000)
  28. /* I2Cx_CTL */
  29. #define I2C_CTL_GRAS (0x1 << 0)
  30. #define I2C_CTL_GRAS_ACK (0)
  31. #define I2C_CTL_GRAS_NACK I2C_CTL_GRAS
  32. #define I2C_CTL_RB (0x1 << 1)
  33. #define I2C_CTL_GBCC_MASK (0x3 << 2)
  34. #define I2C_CTL_GBCC(x) (((x) & 0x3) << 2)
  35. #define I2C_CTL_GBCC_NONE I2C_CTL_GBCC(0)
  36. #define I2C_CTL_GBCC_START I2C_CTL_GBCC(1)
  37. #define I2C_CTL_GBCC_STOP I2C_CTL_GBCC(2)
  38. #define I2C_CTL_GBCC_RESTART I2C_CTL_GBCC(3)
  39. #define I2C_CTL_EN (0x1 << 5)
  40. #define I2C_CTL_IRQE (0x1 << 6)
  41. #define I2C_CTL_BUSSEL (1 << 7)
  42. #define I2C_CTL_DRQRE (1 << 8)
  43. #define I2C_CTL_DRQTE (1 << 9)
  44. #define I2C_CTL_RX_IRQ_THREHOLD_4BYTES (0x1 << 10)
  45. #define I2C_CTL_ADM_IRQ_EN (0x1 << 16)
  46. #define I2C_CTL_NACK_IRQ_EN (0x1 << 17)
  47. #define I2C_CTL_STD_IRQ_EN (0x1 << 19)
  48. #define I2C_CTL_FIFO_IRQ_EN (0x1 << 20)
  49. /* I2Cx_CLKDIV */
  50. #define I2C_CLKDIV_DIV_MASK (0xff << 0)
  51. #define I2C_CLKDIV_DIV(x) (((x) & 0xff) << 0)
  52. /* I2Cx_STAT */
  53. #define I2C_STAT_RACK (0x1 << 0)
  54. #define I2C_STAT_BEB (0x1 << 1)
  55. #define I2C_STAT_IRQP (0x1 << 2)
  56. #define I2C_STAT_STPD (0x1 << 4)
  57. #define I2C_STAT_STAD (0x1 << 5)
  58. #define I2C_STAT_BBB (0x1 << 6)
  59. #define I2C_STAT_TCB (0x1 << 7)
  60. #define I2C_STAT_LBST (0x1 << 8)
  61. #define I2C_STAT_SAMB (0x1 << 9)
  62. #define I2C_STAT_SRGC (0x1 << 10)
  63. /* I2Cx_CMD */
  64. #define I2C_CMD_SBE (0x1 << 0)
  65. #define I2C_CMD_AS_MASK (0x7 << 1)
  66. #define I2C_CMD_AS(x) (((x) & 0x7) << 1)
  67. #define I2C_CMD_RBE (0x1 << 4)
  68. #define I2C_CMD_SAS_MASK (0x7 << 5)
  69. #define I2C_CMD_SAS(x) (((x) & 0x7) << 5)
  70. #define I2C_CMD_DE (0x1 << 8)
  71. #define I2C_CMD_NS (0x1 << 9)
  72. #define I2C_CMD_SE (0x1 << 10)
  73. #define I2C_CMD_MSS (0x1 << 11)
  74. #define I2C_CMD_WRS (0x1 << 12)
  75. #define I2C_CMD_EXEC (0x1 << 15)
  76. /* I2Cx_FIFOCTL */
  77. #define I2C_FIFOCTL_NIB (0x1 << 0)
  78. #define I2C_FIFOCTL_RFR (0x1 << 1)
  79. #define I2C_FIFOCTL_TFR (0x1 << 2)
  80. /* I2Cx_FIFOSTAT */
  81. #define I2C_FIFOSTAT_CECB (0x1 << 0)
  82. #define I2C_FIFOSTAT_RNB (0x1 << 1)
  83. #define I2C_FIFOSTAT_RFE (0x1 << 2)
  84. #define I2C_FIFOSTAT_RFF (0x1 << 3)
  85. #define I2C_FIFOSTAT_TFE (0x1 << 4)
  86. #define I2C_FIFOSTAT_TFF (0x1 << 5)
  87. #define I2C_FIFOSTAT_WRS (0x1 << 6)
  88. #define I2C_FIFOSTAT_RFD_MASK (0xf << 8)
  89. #define I2C_FIFOSTAT_RFD_SHIFT (8)
  90. #define I2C_FIFOSTAT_TFD_MASK (0xf << 12)
  91. #define I2C_FIFOSTAT_TFD_SHIFT (12)
  92. /* extract fifo level from fifostat */
  93. #define I2C_RX_FIFO_LEVEL(x) (((x) >> 8) & 0xff)
  94. #define I2C_TX_FIFO_LEVEL(x) (((x) >> 12) & 0xff)
  95. #if defined(CONFIG_SOC_SERIES_LEOPARD)
  96. #define MAX_CNT_ONCE 1023
  97. #else
  98. #define MAX_CNT_ONCE 255
  99. #endif
  100. enum i2c_state {
  101. STATE_INVALID,
  102. STATE_READ_DATA,
  103. STATE_WRITE_DATA,
  104. STATE_TRANSFER_OVER,
  105. STATE_TRANSFER_ERROR,
  106. };
  107. /* I2C controller */
  108. struct i2c_acts_controller {
  109. volatile uint32_t ctl;
  110. volatile uint32_t clkdiv;
  111. volatile uint32_t stat;
  112. volatile uint32_t addr;
  113. volatile uint32_t txdat;
  114. volatile uint32_t rxdat;
  115. volatile uint32_t cmd;
  116. volatile uint32_t fifoctl;
  117. volatile uint32_t fifostat;
  118. volatile uint32_t datcnt;
  119. volatile uint32_t rcnt;
  120. };
  121. struct acts_i2c_config {
  122. struct i2c_acts_controller *base;
  123. void (*irq_config_func)(void);
  124. const char *dma_dev_name;
  125. uint8_t clock_id;
  126. uint8_t reset_id;
  127. uint8_t irq_id;
  128. uint8_t dma_id;
  129. uint8_t dma_chan;
  130. uint8_t use_dma; //not 0, use dma tranfser
  131. uint8_t use_cmd; //not 0, use cmd tranfser
  132. uint32_t clk_freq;
  133. };
  134. /* Device run time data */
  135. struct acts_i2c_data {
  136. struct k_mutex mutex;
  137. struct k_sem complete_sem;
  138. struct i2c_msg *cur_msg;
  139. uint32_t msg_buf_ptr;
  140. uint32_t xfer_len;
  141. enum i2c_state state;
  142. uint32_t clk_freq;
  143. #ifdef CONFIG_I2C_SLAVE
  144. bool master_active;
  145. uint32_t status;
  146. struct i2c_slave_config *slave_cfg;
  147. bool slave_attached;
  148. #endif
  149. #ifdef CONFIG_DEVICE_POWER_MANAGEMENT
  150. uint32_t device_power_state;
  151. #endif
  152. #ifdef CONFIG_I2C_ASYNC
  153. struct ring_buf cbuf;
  154. struct i2c_msg_async cur_msg_async;
  155. #ifdef CONFIG_I2C_ASYNC_MSG_INTERNAL_BUFFER
  156. uint8_t *rx_sync_buf;
  157. #endif
  158. uint8_t on_irq_async_msg : 1; /* If 1 to indicate that irq is on handling async messages */
  159. uint8_t cur_msg_async_valid : 1; /* If 1 to indicate that the current async message is valid */
  160. uint8_t i2c_isbusy : 1;
  161. #endif
  162. };
  163. #define DEV_NAME(dev) ((dev)->name)
  164. #define DEV_CFG(dev) \
  165. ((const struct acts_i2c_config *const)(dev)->config)
  166. #define DEV_DATA(dev) \
  167. ((struct acts_i2c_data *const)(dev)->data)
  168. #ifdef CONFIG_I2C_ASYNC
  169. #if IS_ENABLED(CONFIG_I2C_0)
  170. #define I2C0_RINGBUF_SIZE (CONFIG_I2C_0_MAX_ASYNC_ITEMS * sizeof(struct i2c_msg_async))
  171. static uint8_t i2c0_ringbuf[I2C0_RINGBUF_SIZE];
  172. #endif
  173. #if IS_ENABLED(CONFIG_I2C_1)
  174. #define I2C1_RINGBUF_SIZE (CONFIG_I2C_1_MAX_ASYNC_ITEMS * sizeof(struct i2c_msg_async))
  175. static uint8_t i2c1_ringbuf[I2C1_RINGBUF_SIZE];
  176. #endif
  177. #if defined(CONFIG_SOC_SERIES_LEOPARD)
  178. #if IS_ENABLED(CONFIG_I2C_2)
  179. #define I2C2_RINGBUF_SIZE (CONFIG_I2C_2_MAX_ASYNC_ITEMS * sizeof(struct i2c_msg_async))
  180. static uint8_t i2c2_ringbuf[I2C2_RINGBUF_SIZE];
  181. #endif
  182. #if IS_ENABLED(CONFIG_I2C_3)
  183. #define I2C3_RINGBUF_SIZE (CONFIG_I2C_3_MAX_ASYNC_ITEMS * sizeof(struct i2c_msg_async))
  184. static uint8_t i2c3_ringbuf[I2C3_RINGBUF_SIZE];
  185. #endif
  186. #endif
  187. #endif
  188. static void i2c_acts_dump_regs(struct i2c_acts_controller *i2c)
  189. {
  190. LOG_INF("I2C base 0x%x:\n" \
  191. " ctl: %x clkdiv: %x stat: %x\n" \
  192. " addr: %x cmd: %x fifoctl: %x\n" \
  193. " fifostat: %x datcnt: %x rcnt: %x\n",
  194. (unsigned int)i2c,
  195. i2c->ctl, i2c->clkdiv, i2c->stat,
  196. i2c->addr, i2c->cmd, i2c->fifoctl,
  197. i2c->fifostat, i2c->datcnt, i2c->rcnt);
  198. }
  199. static void i2c_acts_set_clk(struct i2c_acts_controller *i2c,
  200. uint32_t clk_freq)
  201. {
  202. uint32_t div;
  203. uint32_t pclk_freq = CONFIG_HOSC_CLK_MHZ*1000000;
  204. if ((pclk_freq == 0) || (clk_freq == 0))
  205. return;
  206. div = (pclk_freq + clk_freq * 16 - 1) / (clk_freq * 16);
  207. i2c->clkdiv = I2C_CLKDIV_DIV(div);
  208. return;
  209. }
  210. static int i2c_acts_configure(const struct device *dev, uint32_t config)
  211. {
  212. const struct acts_i2c_config *cfg = DEV_CFG(dev);
  213. struct acts_i2c_data *data = DEV_DATA(dev);
  214. struct i2c_acts_controller *i2c = cfg->base;
  215. uint32_t bitrate;
  216. if (!(config & I2C_MODE_MASTER)) {
  217. LOG_ERR("Master Mode is not enabled");
  218. return -EIO;
  219. }
  220. if (config & I2C_ADDR_10_BITS) {
  221. LOG_ERR("I2C 10-bit addressing is currently not supported");
  222. LOG_ERR("Please submit a patch");
  223. return -EIO;
  224. }
  225. /* Configure clock */
  226. switch (I2C_SPEED_GET(config)) {
  227. case I2C_SPEED_STANDARD:
  228. bitrate = 100000U;
  229. break;
  230. case I2C_SPEED_FAST:
  231. bitrate = 400000U;
  232. break;
  233. case I2C_SPEED_FAST_PLUS:
  234. bitrate = 1000000U;
  235. break;
  236. case I2C_SPEED_HIGH:
  237. case I2C_SPEED_ULTRA:
  238. bitrate = 1500000U;
  239. break;
  240. default:
  241. LOG_ERR("Unsupported I2C speed value");
  242. return -EIO;
  243. }
  244. /* Setup clock waveform */
  245. i2c_acts_set_clk(i2c, bitrate);
  246. data->clk_freq = bitrate;
  247. return 0;
  248. }
  249. static void i2c_acts_reset(struct i2c_acts_controller *i2c)
  250. {
  251. /* reenable i2c controller */
  252. i2c->ctl = 0;
  253. /* clear i2c status */
  254. i2c->stat = 0xff;
  255. /* clear i2c fifo status */
  256. i2c->fifoctl = I2C_FIFOCTL_RFR | I2C_FIFOCTL_TFR;
  257. /* wait until fifo reset complete */
  258. while(i2c->fifoctl & (I2C_FIFOCTL_RFR | I2C_FIFOCTL_TFR))
  259. ;
  260. }
  261. static int i2c_acts_wait_complete(struct i2c_acts_controller *i2c,
  262. uint32_t timeout_ms, bool is_read)
  263. {
  264. uint32_t start_time, curr_time;
  265. int i = 0;
  266. start_time = k_cycle_get_32();
  267. while (!(i2c->fifostat & I2C_FIFOSTAT_CECB)) {
  268. curr_time = k_cycle_get_32();
  269. if (k_cyc_to_us_floor32(curr_time - start_time) >= (timeout_ms * 1000)) {
  270. LOG_ERR("wait i2c cmd done timeout");
  271. return -ETIMEDOUT;
  272. }
  273. }
  274. /* wait data really output to device */
  275. if(!is_read){
  276. for (i = 0; i < I2C_WAIT_TX_FIFO_EMPTY; i++) {
  277. if (i2c->fifostat & I2C_FIFOSTAT_TFE)
  278. break;
  279. k_busy_wait(1);
  280. }
  281. }
  282. if (i == I2C_WAIT_TX_FIFO_EMPTY) {
  283. LOG_ERR("wait i2c tx fifo:0x%x empty timeout",
  284. i2c->fifostat);
  285. return -ETIMEDOUT;
  286. }
  287. return 0;
  288. }
  289. #if defined(CONFIG_I2C_SLAVE)
  290. static void i2c_slave_acts_isr(struct device *dev);
  291. #endif
  292. static int __i2c_acts_transfer(const struct device *dev, struct i2c_msg *msgs,
  293. uint8_t num_msgs, uint16_t addr)
  294. {
  295. const struct acts_i2c_config *config = DEV_CFG(dev);
  296. struct acts_i2c_data *data = DEV_DATA(dev);
  297. struct i2c_acts_controller *i2c = config->base;
  298. struct i2c_msg *msg ;
  299. int i, is_read, ret = 0;
  300. uint32_t fifo_cmd; /* fifostat */
  301. if (!num_msgs)
  302. return 0;
  303. #if defined(CONFIG_I2C_SLAVE)
  304. data->master_active = true;
  305. #endif
  306. i2c_acts_reset(i2c);
  307. /* enable I2C controller IRQ */
  308. i2c->ctl = I2C_CTL_IRQE | I2C_CTL_EN | I2C_CTL_STD_IRQ_EN | I2C_CTL_FIFO_IRQ_EN | I2C_CTL_RX_IRQ_THREHOLD_4BYTES;
  309. fifo_cmd = I2C_CMD_EXEC | I2C_CMD_MSS | I2C_CMD_SE | I2C_CMD_DE
  310. | I2C_CMD_NS | I2C_CMD_SBE;
  311. if (num_msgs == 2) {
  312. /* set internal address and restart cmd for read operation */
  313. fifo_cmd |= I2C_CMD_AS(msgs[0].len + 1) | I2C_CMD_SAS(1);
  314. /* write i2c device address */
  315. i2c->txdat = (addr << 1);
  316. /* write internal register address */
  317. for (i = 0; i < msgs[0].len; i++)
  318. i2c->txdat = msgs[0].buf[i];
  319. msg = &msgs[1];
  320. /* restart flag */
  321. if (msg->flags & I2C_MSG_RESTART) {
  322. fifo_cmd |= I2C_CMD_RBE;
  323. }
  324. } else {
  325. /* only send device addess for 1 message */
  326. fifo_cmd |= I2C_CMD_AS(1);
  327. msg = &msgs[0];
  328. }
  329. data->cur_msg = msg;
  330. data->msg_buf_ptr = 0;
  331. LOG_DBG("msg flags:0x%x addr:0x%x buf:%p len:0x%x num_msgs:%d cur_msg:%p",
  332. msg->flags, addr, msg->buf, msg->len, num_msgs, data->cur_msg);
  333. is_read = ((msg->flags & I2C_MSG_RW_MASK) == I2C_MSG_READ) ? 1 : 0;
  334. /* set data count for the message */
  335. if(msg->len > MAX_CNT_ONCE){
  336. data->xfer_len = MAX_CNT_ONCE;
  337. fifo_cmd &= ~(I2C_CMD_SE | I2C_CMD_NS);
  338. printk("--i2c is_read=%d len=%d\n", is_read, msg->len);
  339. }else{
  340. data->xfer_len = msg->len;
  341. }
  342. i2c->datcnt = data->xfer_len;
  343. if (is_read) {
  344. /* read from device, with WR bit */
  345. i2c->txdat = (addr << 1) | 1;
  346. data->state = STATE_READ_DATA;
  347. } else {
  348. /* write to device */
  349. if ((num_msgs == 1) || (msg->flags & I2C_MSG_RESTART)) {
  350. i2c->txdat = (addr << 1);
  351. }
  352. /* Write data to FIFO */
  353. for (i = 0; i < msg->len; i++) {
  354. if (i2c->fifostat & I2C_FIFOSTAT_TFF)
  355. break;
  356. i2c->txdat = msg->buf[i];
  357. }
  358. data->msg_buf_ptr = i;
  359. data->state = STATE_WRITE_DATA;
  360. }
  361. i2c->fifoctl = 0;
  362. /* write fifo command to start transfer */
  363. i2c->cmd = fifo_cmd;
  364. return ret;
  365. }
  366. static void i2c_acts_update_cur_async_msg(const struct device *dev,
  367. struct i2c_msg_async *src_msg)
  368. {
  369. struct acts_i2c_data *data = DEV_DATA(dev);
  370. memcpy(&data->cur_msg_async, src_msg, sizeof(struct i2c_msg_async));
  371. #ifdef CONFIG_I2C_ASYNC_MSG_INTERNAL_BUFFER
  372. uint8_t i;
  373. for (i = 0; i < data->cur_msg_async.num_msgs; i++) {
  374. if (data->cur_msg_async.msg[i].flags & I2C_MSG_READ) {
  375. memset(data->cur_msg_async.rx_buf, 0,
  376. sizeof(data->cur_msg_async.rx_buf));
  377. data->cur_msg_async.msg[i].buf = data->cur_msg_async.rx_buf;
  378. } else {
  379. memcpy(data->cur_msg_async.tx_buf,
  380. data->cur_msg_async.msg[i].buf,
  381. data->cur_msg_async.msg[i].len);
  382. data->cur_msg_async.msg[i].buf = data->cur_msg_async.tx_buf;
  383. }
  384. }
  385. #endif
  386. data->cur_msg_async_valid = 1;
  387. }
  388. void i2c_acts_isr(void *arg)
  389. {
  390. struct device *dev = (struct device *)arg;
  391. const struct acts_i2c_config *config = DEV_CFG(dev);
  392. struct acts_i2c_data *data = DEV_DATA(dev);
  393. struct i2c_acts_controller *i2c = config->base;
  394. struct i2c_msg *cur_msg = data->cur_msg;
  395. uint32_t stat, fifostat, len, fifo_cmd;
  396. int ret;
  397. LOG_DBG("stat:0x%x fifostat:0x%x state:%d",
  398. i2c->stat, i2c->fifostat, data->state);
  399. #if defined(CONFIG_I2C_SLAVE)
  400. if (data->slave_attached && !data->master_active) {
  401. i2c_slave_acts_isr(dev);
  402. return;
  403. }
  404. #endif
  405. stat = i2c->stat;
  406. fifostat = i2c->fifostat;
  407. /* check error */
  408. if (fifostat & I2C_FIFOSTAT_RNB) {
  409. LOG_ERR("no ACK from device");
  410. data->state = STATE_TRANSFER_ERROR;
  411. goto stop;
  412. } else if (stat & I2C_STAT_BEB) {
  413. LOG_ERR("bus error");
  414. data->state = STATE_TRANSFER_ERROR;
  415. goto stop;
  416. }
  417. i2c->stat |= I2C_STAT_IRQP;
  418. LOG_DBG("msg_buf_ptr:%d cur_msg:%p len:%d", data->msg_buf_ptr, cur_msg, data->xfer_len);
  419. if (data->state == STATE_READ_DATA) {
  420. /* read data from FIFO */
  421. while ((!(i2c->fifostat & I2C_FIFOSTAT_RFE)) &&
  422. data->msg_buf_ptr < data->xfer_len) {
  423. cur_msg->buf[data->msg_buf_ptr++] = i2c->rxdat;
  424. }
  425. /* all data is transfered? */
  426. if (data->msg_buf_ptr >= cur_msg->len) {
  427. data->state = STATE_TRANSFER_OVER;
  428. }
  429. } else {
  430. /* all data is transfered? */
  431. if (data->msg_buf_ptr >= cur_msg->len) {
  432. data->state = STATE_TRANSFER_OVER;
  433. }
  434. /* write data to FIFO */
  435. while (!(i2c->fifostat & I2C_FIFOSTAT_TFF) &&
  436. data->msg_buf_ptr < data->xfer_len) {
  437. i2c->txdat = cur_msg->buf[data->msg_buf_ptr++];
  438. /* wait fifo stat is updated */
  439. fifostat = i2c->fifostat;
  440. }
  441. }
  442. if(I2C_FIFOSTAT_CECB & fifostat){
  443. if (data->msg_buf_ptr < cur_msg->len){
  444. len = cur_msg->len - data->msg_buf_ptr;
  445. printk("--i2c irq remain =%d\n", len);
  446. if(len > MAX_CNT_ONCE){
  447. data->xfer_len += MAX_CNT_ONCE;
  448. i2c->datcnt = MAX_CNT_ONCE;
  449. fifo_cmd = I2C_CMD_EXEC | I2C_CMD_MSS | I2C_CMD_DE; // 0x8900
  450. }else{
  451. data->xfer_len += len;
  452. i2c->datcnt = len;
  453. fifo_cmd = I2C_CMD_NS | I2C_CMD_SE|I2C_CMD_EXEC | I2C_CMD_MSS | I2C_CMD_DE; // 0x8f00;
  454. }
  455. if (data->state != STATE_READ_DATA) {
  456. /* write data to FIFO */
  457. while (!(i2c->fifostat & I2C_FIFOSTAT_TFF) &&
  458. data->msg_buf_ptr < data->xfer_len) {
  459. i2c->txdat = cur_msg->buf[data->msg_buf_ptr++];
  460. /* wait fifo stat is updated */
  461. fifostat = i2c->fifostat;
  462. }
  463. }
  464. i2c->cmd = fifo_cmd;
  465. }
  466. }
  467. stop:
  468. //i2c->stat |= I2C_STAT_IRQP;
  469. if (data->state == STATE_TRANSFER_ERROR ||
  470. data->state == STATE_TRANSFER_OVER) {
  471. /* FIXME: add extra 2 bytes for TX to generate IRQ */
  472. if (i2c->datcnt != cur_msg->len) {
  473. i2c->datcnt = cur_msg->len;
  474. }
  475. ret = i2c_acts_wait_complete(i2c, I2C_WAIT_COMPLETE_MS,
  476. ((cur_msg->flags & I2C_MSG_RW_MASK) == I2C_MSG_READ) ? true : false);
  477. if (ret)
  478. data->state = STATE_TRANSFER_ERROR;
  479. if(data->state == STATE_TRANSFER_ERROR){
  480. i2c_acts_dump_regs(i2c);
  481. }
  482. /* disable i2c controller */
  483. i2c->ctl = 0;
  484. if (data->cur_msg_async.async_func) {
  485. data->cur_msg_async.async_func(data->cur_msg_async.cb_data,
  486. data->cur_msg_async.msg, data->cur_msg_async.num_msgs,
  487. (data->state == STATE_TRANSFER_ERROR)? true : false);
  488. }
  489. data->cur_msg_async_valid = 0;
  490. /* read next async message */
  491. struct i2c_msg_async msg_async = {0};
  492. ret = ring_buf_get(&data->cbuf, (uint8_t *)&msg_async, sizeof(struct i2c_msg_async));
  493. if (ret > 0) {
  494. LOG_DBG("read cbuf msg addr:0x%x", msg_async.addr);
  495. data->on_irq_async_msg = 1;
  496. i2c_acts_update_cur_async_msg(dev, &msg_async);
  497. __i2c_acts_transfer(dev, data->cur_msg_async.msg,
  498. data->cur_msg_async.num_msgs, data->cur_msg_async.addr);
  499. } else {
  500. ring_buf_reset(&data->cbuf);
  501. data->on_irq_async_msg = 0;
  502. data->i2c_isbusy = 0; /*i2c is stop*/
  503. #if defined(CONFIG_I2C_SLAVE)
  504. data->master_active = false;
  505. #endif
  506. }
  507. }
  508. }
  509. static int i2c_acts_transfer_async(const struct device *dev, struct i2c_msg_async *msg_async)
  510. {
  511. struct acts_i2c_data *data = DEV_DATA(dev);
  512. //const struct acts_i2c_config *config = DEV_CFG(dev);
  513. //struct i2c_acts_controller *i2c = config->base;
  514. int ret, flags;
  515. bool need_start_flag = false;
  516. if ((!msg_async->num_msgs)|| (msg_async->num_msgs > 2)) {
  517. LOG_ERR("invalid msg number:%d", msg_async->num_msgs);
  518. return -EINVAL;
  519. }
  520. flags = irq_lock();
  521. if ((!data->on_irq_async_msg) && (!data->cur_msg_async_valid))
  522. need_start_flag = 1;
  523. if (need_start_flag) {
  524. i2c_acts_update_cur_async_msg(dev, msg_async);
  525. ret = __i2c_acts_transfer(dev, data->cur_msg_async.msg,
  526. data->cur_msg_async.num_msgs, data->cur_msg_async.addr);
  527. data->i2c_isbusy = 1; /*i2c is busy*/
  528. } else {
  529. LOG_DBG("write msg addr:0x%x to cbuf", msg_async->addr);
  530. ret = ring_buf_put(&data->cbuf, (const uint8_t *)msg_async, sizeof(struct i2c_msg_async));
  531. if (!ret) {
  532. LOG_ERR("write cbuf error(%d, %d)", data->on_irq_async_msg, data->cur_msg_async_valid);
  533. //i2c_acts_dump_regs(i2c);
  534. //i2c_acts_reset(i2c);
  535. //ring_buf_reset(&data->cbuf);
  536. //data->cur_msg_async_valid = 0;
  537. //data->on_irq_async_msg = 0;
  538. ret = -EAGAIN;
  539. } else {
  540. ret = 0;
  541. }
  542. }
  543. irq_unlock(flags);
  544. return ret;
  545. }
  546. static int i2c_acts_async_dummy_cb(void *cb_data, struct i2c_msg *msgs,
  547. uint8_t num_msgs, bool is_err)
  548. {
  549. const struct device *dev = (const struct device *)cb_data;
  550. struct acts_i2c_data *data = DEV_DATA(dev);
  551. #ifdef CONFIG_I2C_ASYNC_MSG_INTERNAL_BUFFER
  552. if (data->rx_sync_buf && data->cur_msg_async_valid) {
  553. uint8_t i;
  554. for (i = 0; i < data->cur_msg_async.num_msgs; i++) {
  555. if (data->cur_msg_async.msg[i].flags & I2C_MSG_READ) {
  556. memcpy(data->rx_sync_buf,
  557. data->cur_msg_async.msg[i].buf,
  558. data->cur_msg_async.msg[i].len);
  559. break;
  560. }
  561. }
  562. }
  563. #endif
  564. k_sem_give(&data->complete_sem);
  565. return 0;
  566. }
  567. static uint32_t i2c_get_msg_overtimer(const struct device *dev, struct i2c_msg_async *msg)
  568. {
  569. const struct acts_i2c_config *config = DEV_CFG(dev);
  570. struct acts_i2c_data *data = DEV_DATA(dev);
  571. uint32_t tlen ,clk_freq, ot;
  572. tlen = msg->msg[0].len;
  573. if(msg->num_msgs == 2){
  574. tlen += msg->msg[1].len;
  575. }
  576. clk_freq = config->clk_freq;
  577. if(data->clk_freq)
  578. clk_freq = data->clk_freq;
  579. /* > 50*/
  580. ot = ((tlen<<15)/clk_freq + 50);
  581. //printk("ot=%d, len=%d, clk_freq=%d\n", ot, tlen, clk_freq);
  582. return ot; // ms = tlen*1000 /clk_freq/10 = 10000*tlen/clk_freq, mul= 3, # (tlen<<15)/clk_freq
  583. }
  584. static int i2c_acts_transfer(const struct device *dev, struct i2c_msg *msgs,
  585. uint8_t num_msgs, uint16_t addr)
  586. {
  587. const struct acts_i2c_config *config = DEV_CFG(dev);
  588. struct acts_i2c_data *data = DEV_DATA(dev);
  589. struct i2c_acts_controller *i2c = config->base;
  590. int i = 0, ret = 0;
  591. uint32_t start_time, ot;
  592. struct i2c_msg_async msg_async = {0};
  593. if ((!num_msgs) || (num_msgs > 2)) {
  594. LOG_ERR("invalid num_msgs:%d", num_msgs);
  595. return -EINVAL;
  596. }
  597. msg_async.num_msgs = num_msgs;
  598. msg_async.async_func = i2c_acts_async_dummy_cb;
  599. msg_async.cb_data = (void *)dev;
  600. msg_async.addr = addr;
  601. for (i = 0; i < num_msgs; i++)
  602. memcpy(&msg_async.msg[i], &msgs[i], sizeof(struct i2c_msg));
  603. k_mutex_lock(&data->mutex, K_FOREVER);
  604. #ifdef CONFIG_I2C_ASYNC_MSG_INTERNAL_BUFFER
  605. for (i = 0; i < num_msgs; i++) {
  606. if (msgs[i].flags & I2C_MSG_READ) {
  607. data->rx_sync_buf = msgs[i].buf;
  608. break;
  609. }
  610. }
  611. #endif
  612. /* wait async messages finished */
  613. start_time = k_cycle_get_32();
  614. while (ring_buf_size_get(&data->cbuf) > 0) {
  615. if (k_cyc_to_us_floor32(k_cycle_get_32() - start_time)
  616. >= I2C_WAIT_ASYNC_TIMEOUT_US) {
  617. LOG_ERR("wait async timeout");
  618. k_mutex_unlock(&data->mutex);
  619. return -ETIMEDOUT;
  620. }
  621. }
  622. /* reset sem to fix i2c-isr problem */
  623. k_sem_reset(&data->complete_sem);
  624. ret = i2c_acts_transfer_async(dev, &msg_async);
  625. if (ret) {
  626. LOG_ERR("i2c async error:%d", ret);
  627. i2c_acts_dump_regs(i2c);
  628. goto out;
  629. }
  630. //ret = k_sem_take(&data->complete_sem, I2C_TIMEOUT_MS);
  631. ot = i2c_get_msg_overtimer(dev, &msg_async);
  632. ret = k_sem_take(&data->complete_sem, Z_TIMEOUT_MS(ot));
  633. if (ret) {
  634. /* wait timeout */
  635. LOG_ERR("addr 0x%x: wait =%d ms timeout ", addr, ot);
  636. ret = -ETIMEDOUT;
  637. }
  638. if (data->state == STATE_TRANSFER_ERROR) {
  639. LOG_ERR("addr 0x%x: transfer error", addr);
  640. //i2c_acts_dump_regs(i2c);
  641. ret = -EIO;
  642. }
  643. #ifdef CONFIG_I2C_ASYNC_MSG_INTERNAL_BUFFER
  644. data->rx_sync_buf = NULL;
  645. #endif
  646. out:
  647. if (ret) {
  648. i2c_acts_dump_regs(i2c);
  649. #ifdef CONFIG_I2C_ASYNC
  650. data->cur_msg_async_valid = 0;
  651. ring_buf_reset(&data->cbuf);
  652. data->on_irq_async_msg = 0;
  653. #endif
  654. }
  655. k_mutex_unlock(&data->mutex);
  656. return ret;
  657. }
  658. int i2c_acts_init(const struct device *dev)
  659. {
  660. const struct acts_i2c_config *config = DEV_CFG(dev);;
  661. struct acts_i2c_data *data = DEV_DATA(dev);
  662. /* enable i2c controller clock */
  663. acts_clock_peripheral_enable(config->clock_id);
  664. /* reset i2c controller */
  665. acts_reset_peripheral(config->reset_id);
  666. /* setup default clock to 100K */
  667. i2c_acts_set_clk(config->base, config->clk_freq);
  668. printk("i2c%d:clk=%d,cmd=%d,dma=%d\n",config->clock_id-CLOCK_ID_I2C0, config->clk_freq,
  669. config->use_cmd, config->use_dma);
  670. k_mutex_init(&data->mutex);
  671. k_sem_init(&data->complete_sem, 0, UINT_MAX);
  672. #if IS_ENABLED(CONFIG_I2C_0)
  673. if ((uint32_t)config->base == I2C0_REG_BASE)
  674. ring_buf_init(&data->cbuf, sizeof(i2c0_ringbuf), i2c0_ringbuf);
  675. #endif
  676. #if IS_ENABLED(CONFIG_I2C_1)
  677. if ((uint32_t)config->base == I2C1_REG_BASE)
  678. ring_buf_init(&data->cbuf, sizeof(i2c1_ringbuf), i2c1_ringbuf);
  679. #endif
  680. #if defined(CONFIG_SOC_SERIES_LEOPARD)
  681. #if IS_ENABLED(CONFIG_I2C_2)
  682. if ((uint32_t)config->base == I2C2_REG_BASE)
  683. ring_buf_init(&data->cbuf, sizeof(i2c2_ringbuf), i2c2_ringbuf);
  684. #endif
  685. #if IS_ENABLED(CONFIG_I2C_3)
  686. if ((uint32_t)config->base == I2C3_REG_BASE)
  687. ring_buf_init(&data->cbuf, sizeof(i2c3_ringbuf), i2c3_ringbuf);
  688. #endif
  689. #endif
  690. data->on_irq_async_msg = 0;
  691. data->i2c_isbusy = 0;
  692. config->irq_config_func();
  693. return 0;
  694. }
  695. #if defined(CONFIG_I2C_SLAVE)
  696. #define I2C_SLAVE_STATUS_IDLE 0
  697. #define I2C_SLAVE_STATUS_READY 1
  698. #define I2C_SLAVE_STATUS_START 2
  699. #define I2C_SLAVE_STATUS_ADDRESS 3
  700. #define I2C_SLAVE_STATUS_MASTER_WRITE 4
  701. #define I2C_SLAVE_STATUS_MASTER_READ 5
  702. #define I2C_SLAVE_STATUS_STOPED 6
  703. #define I2C_SLAVE_STATUS_ERR 15
  704. static void i2c_slave_acts_isr(struct device *dev)
  705. {
  706. const struct acts_i2c_config *cfg = DEV_CFG(dev);
  707. struct acts_i2c_data *data = DEV_DATA(dev);
  708. struct i2c_acts_controller *i2c = cfg->base;
  709. const struct i2c_slave_callbacks *cf= data->slave_cfg->callbacks;
  710. uint32_t stat;
  711. uint16_t addr;
  712. uint8_t val;
  713. stat = i2c->stat;
  714. /* clear pending */
  715. i2c->stat = I2C_STAT_IRQP;
  716. /* check error */
  717. if (stat & I2C_STAT_BEB) {
  718. LOG_ERR("bus error\n");
  719. i2c_acts_dump_regs(i2c);
  720. i2c_acts_reset(i2c);
  721. data->status = I2C_SLAVE_STATUS_ERR;
  722. goto out;
  723. }
  724. /* detected start signal */
  725. if (stat & I2C_STAT_STAD) {
  726. i2c->stat = I2C_STAT_STAD;
  727. data->status = I2C_SLAVE_STATUS_START;
  728. }
  729. /* recieved address or data */
  730. if (stat & I2C_STAT_TCB) {
  731. i2c->stat = I2C_STAT_TCB;
  732. if (!(i2c->stat & I2C_STAT_LBST)) {
  733. /* receive address */
  734. data->status = I2C_SLAVE_STATUS_ADDRESS;
  735. addr = i2c->rxdat;
  736. if ((addr >> 1) != data->slave_cfg->address) {
  737. LOG_ERR("bus address (0x%x) not matched with (0x%x)\n",
  738. addr >> 1, data->slave_cfg->address);
  739. i2c->stat |= 0x1ff;
  740. goto out;
  741. }
  742. if (addr & 1) {
  743. /* master read */
  744. cf->read_requested(data->slave_cfg, &val);
  745. i2c->txdat = val;
  746. data->status = I2C_SLAVE_STATUS_MASTER_READ;
  747. } else {
  748. /* master write */
  749. i2c->ctl &= ~I2C_CTL_GRAS_ACK;
  750. cf->write_requested(data->slave_cfg);
  751. data->status = I2C_SLAVE_STATUS_MASTER_WRITE;
  752. }
  753. } else {
  754. /* receive data */
  755. if (data->status == I2C_SLAVE_STATUS_MASTER_READ) {
  756. /* master <--- slave */
  757. if (!(stat & I2C_STAT_RACK)) {
  758. /* received NACK */
  759. goto out;
  760. }
  761. cf->read_processed(data->slave_cfg, &val);
  762. i2c->txdat = val;
  763. } else {
  764. /* master ---> slave */
  765. val = i2c->rxdat;
  766. if(!cf->write_received(data->slave_cfg, val))
  767. i2c->ctl |= I2C_CTL_GRAS_ACK;
  768. }
  769. }
  770. }
  771. /* detected stop signal */
  772. if (stat & I2C_STAT_STPD) {
  773. i2c->stat = I2C_STAT_STPD;
  774. cf->stop(data->slave_cfg);
  775. i2c->ctl &= ~I2C_CTL_GRAS_ACK;
  776. }
  777. out:
  778. i2c->ctl |= I2C_CTL_RB;
  779. }
  780. /* Attach and start I2C as slave */
  781. int i2c_acts_slave_register(const struct device *dev,
  782. struct i2c_slave_config *config)
  783. {
  784. const struct acts_i2c_config *cfg = DEV_CFG(dev);
  785. struct acts_i2c_data *data = DEV_DATA(dev);
  786. struct i2c_acts_controller *i2c = cfg->base;
  787. if (!config) {
  788. return -EINVAL;
  789. }
  790. if (data->slave_attached) {
  791. LOG_ERR("i2c: err slave is registered\n");
  792. return -EBUSY;
  793. }
  794. if (data->master_active) {
  795. LOG_ERR("i2c: master is transfer\n");
  796. return -EBUSY;
  797. }
  798. i2c->addr = config->address << 1;
  799. data->slave_cfg = config;
  800. data->slave_attached = true;
  801. LOG_DBG("i2c: slave registered");
  802. i2c->ctl = I2C_CTL_IRQE | I2C_CTL_EN | I2C_CTL_RB | I2C_CTL_GRAS_ACK | I2C_CTL_STD_IRQ_EN;
  803. return 0;
  804. }
  805. int i2c_acts_slave_unregister(const struct device *dev,
  806. struct i2c_slave_config *config)
  807. {
  808. const struct acts_i2c_config *cfg = DEV_CFG(dev);
  809. struct acts_i2c_data *data = DEV_DATA(dev);
  810. struct i2c_acts_controller *i2c = cfg->base;
  811. if (!data->slave_attached) {
  812. return -EINVAL;
  813. }
  814. if (data->master_active) {
  815. return -EBUSY;
  816. }
  817. data->slave_cfg = NULL;
  818. /* disable i2c controller */
  819. i2c->ctl = 0;
  820. data->slave_attached = false;
  821. LOG_DBG("i2c: slave unregistered");
  822. return 0;
  823. }
  824. #endif /* defined(CONFIG_I2C_SLAVE) */
  825. const struct i2c_driver_api i2c_acts_driver_api = {
  826. .configure = i2c_acts_configure,
  827. .transfer = i2c_acts_transfer,
  828. #if defined(CONFIG_I2C_SLAVE)
  829. .slave_register = i2c_acts_slave_register,
  830. .slave_unregister = i2c_acts_slave_unregister,
  831. #endif
  832. #if defined(CONFIG_I2C_ASYNC)
  833. .transfer_async = i2c_acts_transfer_async,
  834. #endif
  835. };
  836. #ifdef CONFIG_PM_DEVICE
  837. int i2c_acts_pm_control(const struct device *device, enum pm_device_action action)
  838. {
  839. struct acts_i2c_data *data = DEV_DATA(device);
  840. if(action == PM_DEVICE_ACTION_SUSPEND){
  841. if (data->i2c_isbusy) {
  842. printk("i2c busy, not suspend\n");
  843. return -EINVAL;
  844. }
  845. }
  846. if(action == PM_DEVICE_ACTION_RESUME){
  847. const struct acts_i2c_config *config = device->config;
  848. i2c_acts_set_clk(config->base, config->clk_freq);
  849. }
  850. return 0;
  851. }
  852. #else
  853. #define i2c_acts_pm_control NULL
  854. #endif
  855. #define dma_use(n) (\
  856. .dma_dev_name = CONFIG_DMA_0_NAME, \
  857. .dma_id = CONFIG_I2C_##n##_DMA_ID,\
  858. .dma_chan = CONFIG_I2C_##n##_DMA_CHAN,\
  859. .use_dma = 1, \
  860. )
  861. #define dma_not(n) (\
  862. .use_dma = 0, \
  863. )
  864. // COND_CODE_1(CONFIG_I2C_##n##_USE_DMA,dma_use(n), dma_not(n))
  865. #define I2C_ACTS_INIT(n) \
  866. static const struct device DEVICE_NAME_GET(i2c##n##_acts); \
  867. \
  868. static void i2c##n##_acts_irq_config(void) \
  869. { \
  870. IRQ_CONNECT(IRQ_ID_I2C##n, CONFIG_I2C_##n##_IRQ_PRI, \
  871. i2c_acts_isr, \
  872. DEVICE_GET(i2c##n##_acts), 0); \
  873. irq_enable(IRQ_ID_I2C##n); \
  874. } \
  875. \
  876. static const struct acts_i2c_config i2c##n##_acts_config = { \
  877. .base = (struct i2c_acts_controller *)I2C##n##_REG_BASE, \
  878. .irq_config_func = i2c##n##_acts_irq_config, \
  879. .clock_id = CLOCK_ID_I2C##n,\
  880. .reset_id = RESET_ID_I2C##n,\
  881. COND_DMA_CODE(CONFIG_I2C_##n##_USE_DMA, CONFIG_I2C_##n##_DMA_ID, CONFIG_I2C_##n##_DMA_CHAN) \
  882. .use_cmd = 0,\
  883. .irq_id = IRQ_ID_I2C##n, \
  884. .clk_freq = CONFIG_I2C_##n##_CLK_FREQ, \
  885. }; \
  886. \
  887. static struct acts_i2c_data i2c##n##_acts_data; \
  888. \
  889. DEVICE_DEFINE(i2c##n##_acts, CONFIG_I2C_##n##_NAME, \
  890. &i2c_acts_init, i2c_acts_pm_control, \
  891. &i2c##n##_acts_data, &i2c##n##_acts_config, \
  892. POST_KERNEL, CONFIG_I2C_INIT_PRIORITY, \
  893. &i2c_acts_driver_api);
  894. #if IS_ENABLED(CONFIG_I2C_0)
  895. I2C_ACTS_INIT(0)
  896. #endif
  897. #if IS_ENABLED(CONFIG_I2C_1)
  898. I2C_ACTS_INIT(1)
  899. #endif
  900. #if defined(CONFIG_SOC_SERIES_LEOPARD)
  901. #if IS_ENABLED(CONFIG_I2C_2)
  902. I2C_ACTS_INIT(2)
  903. #endif
  904. #if IS_ENABLED(CONFIG_I2C_3)
  905. I2C_ACTS_INIT(3)
  906. #endif
  907. #endif