i2c_acts.c 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005
  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 <cbuf.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. enum i2c_state {
  96. STATE_INVALID,
  97. STATE_READ_DATA,
  98. STATE_WRITE_DATA,
  99. STATE_TRANSFER_OVER,
  100. STATE_TRANSFER_ERROR,
  101. };
  102. /* I2C controller */
  103. struct i2c_acts_controller {
  104. volatile uint32_t ctl;
  105. volatile uint32_t clkdiv;
  106. volatile uint32_t stat;
  107. volatile uint32_t addr;
  108. volatile uint32_t txdat;
  109. volatile uint32_t rxdat;
  110. volatile uint32_t cmd;
  111. volatile uint32_t fifoctl;
  112. volatile uint32_t fifostat;
  113. volatile uint32_t datcnt;
  114. volatile uint32_t rcnt;
  115. };
  116. struct acts_i2c_config {
  117. struct i2c_acts_controller *base;
  118. void (*irq_config_func)(void);
  119. const char *dma_dev_name;
  120. uint8_t clock_id;
  121. uint8_t reset_id;
  122. uint8_t irq_id;
  123. uint8_t dma_id;
  124. uint8_t dma_chan;
  125. uint8_t use_dma; //not 0, use dma tranfser
  126. uint8_t use_cmd; //not 0, use cmd tranfser
  127. uint32_t clk_freq;
  128. };
  129. /* Device run time data */
  130. struct acts_i2c_data {
  131. struct k_mutex mutex;
  132. struct k_sem complete_sem;
  133. struct i2c_msg *cur_msg;
  134. uint32_t msg_buf_ptr;
  135. enum i2c_state state;
  136. uint32_t clk_freq;
  137. #ifdef CONFIG_I2C_SLAVE
  138. bool master_active;
  139. uint32_t status;
  140. struct i2c_slave_config *slave_cfg;
  141. bool slave_attached;
  142. #endif
  143. #ifdef CONFIG_DEVICE_POWER_MANAGEMENT
  144. uint32_t device_power_state;
  145. #endif
  146. #ifdef CONFIG_I2C_ASYNC
  147. cbuf_t cbuf;
  148. struct i2c_msg_async cur_msg_async;
  149. #ifdef CONFIG_I2C_ASYNC_MSG_INTERNAL_BUFFER
  150. uint8_t *rx_sync_buf;
  151. #endif
  152. uint8_t on_irq_async_msg : 1; /* If 1 to indicate that irq is on handling async messages */
  153. uint8_t cur_msg_async_valid : 1; /* If 1 to indicate that the current async message is valid */
  154. #endif
  155. };
  156. #define DEV_NAME(dev) ((dev)->name)
  157. #define DEV_CFG(dev) \
  158. ((const struct acts_i2c_config *const)(dev)->config)
  159. #define DEV_DATA(dev) \
  160. ((struct acts_i2c_data *const)(dev)->data)
  161. #ifdef CONFIG_I2C_ASYNC
  162. #if IS_ENABLED(CONFIG_I2C_0)
  163. #define I2C0_RINGBUF_SIZE (CONFIG_I2C_0_MAX_ASYNC_ITEMS * sizeof(struct i2c_msg_async))
  164. static uint8_t i2c0_ringbuf[I2C0_RINGBUF_SIZE];
  165. #endif
  166. #if IS_ENABLED(CONFIG_I2C_1)
  167. #define I2C1_RINGBUF_SIZE (CONFIG_I2C_1_MAX_ASYNC_ITEMS * sizeof(struct i2c_msg_async))
  168. static uint8_t i2c1_ringbuf[I2C1_RINGBUF_SIZE];
  169. #endif
  170. #endif
  171. static void i2c_acts_dump_regs(struct i2c_acts_controller *i2c)
  172. {
  173. LOG_INF("I2C base 0x%x:\n" \
  174. " ctl: %x clkdiv: %x stat: %x\n" \
  175. " addr: %x cmd: %x fifoctl: %x\n" \
  176. " fifostat: %x datcnt: %x rcnt: %x\n",
  177. (unsigned int)i2c,
  178. i2c->ctl, i2c->clkdiv, i2c->stat,
  179. i2c->addr, i2c->cmd, i2c->fifoctl,
  180. i2c->fifostat, i2c->datcnt, i2c->rcnt);
  181. }
  182. static void i2c_acts_set_clk(struct i2c_acts_controller *i2c,
  183. uint32_t clk_freq)
  184. {
  185. uint32_t div;
  186. uint32_t pclk_freq = CONFIG_HOSC_CLK_MHZ*1000000;
  187. if ((pclk_freq == 0) || (clk_freq == 0))
  188. return;
  189. div = (pclk_freq + clk_freq * 16 - 1) / (clk_freq * 16);
  190. i2c->clkdiv = I2C_CLKDIV_DIV(div);
  191. return;
  192. }
  193. static int i2c_acts_configure(const struct device *dev, uint32_t config)
  194. {
  195. const struct acts_i2c_config *cfg = DEV_CFG(dev);
  196. struct acts_i2c_data *data = DEV_DATA(dev);
  197. struct i2c_acts_controller *i2c = cfg->base;
  198. uint32_t bitrate;
  199. if (!(config & I2C_MODE_MASTER)) {
  200. LOG_ERR("Master Mode is not enabled");
  201. return -EIO;
  202. }
  203. if (config & I2C_ADDR_10_BITS) {
  204. LOG_ERR("I2C 10-bit addressing is currently not supported");
  205. LOG_ERR("Please submit a patch");
  206. return -EIO;
  207. }
  208. /* Configure clock */
  209. switch (I2C_SPEED_GET(config)) {
  210. case I2C_SPEED_STANDARD:
  211. bitrate = 100000U;
  212. break;
  213. case I2C_SPEED_FAST:
  214. bitrate = 400000U;
  215. break;
  216. case I2C_SPEED_FAST_PLUS:
  217. bitrate = 1000000U;
  218. break;
  219. case I2C_SPEED_HIGH:
  220. case I2C_SPEED_ULTRA:
  221. bitrate = 1500000U;
  222. break;
  223. default:
  224. LOG_ERR("Unsupported I2C speed value");
  225. return -EIO;
  226. }
  227. /* Setup clock waveform */
  228. i2c_acts_set_clk(i2c, bitrate);
  229. data->clk_freq = bitrate;
  230. return 0;
  231. }
  232. static void i2c_acts_reset(struct i2c_acts_controller *i2c)
  233. {
  234. /* reenable i2c controller */
  235. i2c->ctl = 0;
  236. /* clear i2c status */
  237. i2c->stat = 0xff;
  238. /* clear i2c fifo status */
  239. i2c->fifoctl = I2C_FIFOCTL_RFR | I2C_FIFOCTL_TFR;
  240. /* wait until fifo reset complete */
  241. while(i2c->fifoctl & (I2C_FIFOCTL_RFR | I2C_FIFOCTL_TFR))
  242. ;
  243. }
  244. static int i2c_acts_wait_complete(struct i2c_acts_controller *i2c,
  245. uint32_t timeout_ms, bool is_read)
  246. {
  247. uint32_t start_time, curr_time;
  248. int i = 0;
  249. start_time = k_cycle_get_32();
  250. while (!(i2c->fifostat & I2C_FIFOSTAT_CECB)) {
  251. curr_time = k_cycle_get_32();
  252. if (k_cyc_to_us_floor32(curr_time - start_time) >= (timeout_ms * 1000)) {
  253. LOG_ERR("wait i2c cmd done timeout");
  254. return -ETIMEDOUT;
  255. }
  256. }
  257. /* wait data really output to device */
  258. if(!is_read){
  259. for (i = 0; i < I2C_WAIT_TX_FIFO_EMPTY; i++) {
  260. if (i2c->fifostat & I2C_FIFOSTAT_TFE)
  261. break;
  262. k_busy_wait(1);
  263. }
  264. }
  265. if (i == I2C_WAIT_TX_FIFO_EMPTY) {
  266. LOG_ERR("wait i2c tx fifo:0x%x empty timeout",
  267. i2c->fifostat);
  268. return -ETIMEDOUT;
  269. }
  270. return 0;
  271. }
  272. #if defined(CONFIG_I2C_SLAVE)
  273. static void i2c_slave_acts_isr(struct device *dev);
  274. #endif
  275. static int __i2c_acts_transfer(const struct device *dev, struct i2c_msg *msgs,
  276. uint8_t num_msgs, uint16_t addr)
  277. {
  278. const struct acts_i2c_config *config = DEV_CFG(dev);
  279. struct acts_i2c_data *data = DEV_DATA(dev);
  280. struct i2c_acts_controller *i2c = config->base;
  281. struct i2c_msg *msg ;
  282. int i, is_read, ret = 0;
  283. uint32_t fifo_cmd; /* fifostat */
  284. if (!num_msgs)
  285. return 0;
  286. #if defined(CONFIG_I2C_SLAVE)
  287. data->master_active = true;
  288. #endif
  289. i2c_acts_reset(i2c);
  290. /* enable I2C controller IRQ */
  291. i2c->ctl = I2C_CTL_IRQE | I2C_CTL_EN | I2C_CTL_STD_IRQ_EN;
  292. fifo_cmd = I2C_CMD_EXEC | I2C_CMD_MSS | I2C_CMD_SE | I2C_CMD_DE
  293. | I2C_CMD_NS | I2C_CMD_SBE;
  294. if (num_msgs == 2) {
  295. /* set internal address and restart cmd for read operation */
  296. fifo_cmd |= I2C_CMD_AS(msgs[0].len + 1) | I2C_CMD_SAS(1);
  297. /* write i2c device address */
  298. i2c->txdat = (addr << 1);
  299. /* write internal register address */
  300. for (i = 0; i < msgs[0].len; i++)
  301. i2c->txdat = msgs[0].buf[i];
  302. msg = &msgs[1];
  303. /* restart flag */
  304. if (msg->flags & I2C_MSG_RESTART) {
  305. fifo_cmd |= I2C_CMD_RBE;
  306. }
  307. } else {
  308. /* only send device addess for 1 message */
  309. fifo_cmd |= I2C_CMD_AS(1);
  310. msg = &msgs[0];
  311. }
  312. data->cur_msg = msg;
  313. data->msg_buf_ptr = 0;
  314. LOG_DBG("msg flags:0x%x addr:0x%x buf:%p len:0x%x num_msgs:%d cur_msg:%p",
  315. msg->flags, addr, msg->buf, msg->len, num_msgs, data->cur_msg);
  316. /* set data count for the message */
  317. i2c->datcnt = msg->len;
  318. is_read = ((msg->flags & I2C_MSG_RW_MASK) == I2C_MSG_READ) ? 1 : 0;
  319. if (is_read) {
  320. /* read from device, with WR bit */
  321. i2c->txdat = (addr << 1) | 1;
  322. data->state = STATE_READ_DATA;
  323. } else {
  324. /* write to device */
  325. if ((num_msgs == 1) || (msg->flags & I2C_MSG_RESTART)) {
  326. i2c->txdat = (addr << 1);
  327. }
  328. /* Write data to FIFO */
  329. for (i = 0; i < msg->len; i++) {
  330. if (i2c->fifostat & I2C_FIFOSTAT_TFF)
  331. break;
  332. i2c->txdat = msg->buf[i];
  333. }
  334. data->msg_buf_ptr = i;
  335. data->state = STATE_WRITE_DATA;
  336. }
  337. i2c->fifoctl = 0;
  338. /* write fifo command to start transfer */
  339. i2c->cmd = fifo_cmd;
  340. return ret;
  341. }
  342. static void i2c_acts_update_cur_async_msg(const struct device *dev,
  343. struct i2c_msg_async *src_msg)
  344. {
  345. struct acts_i2c_data *data = DEV_DATA(dev);
  346. memcpy(&data->cur_msg_async, src_msg, sizeof(struct i2c_msg_async));
  347. #ifdef CONFIG_I2C_ASYNC_MSG_INTERNAL_BUFFER
  348. uint8_t i;
  349. for (i = 0; i < data->cur_msg_async.num_msgs; i++) {
  350. if (data->cur_msg_async.msg[i].flags & I2C_MSG_READ) {
  351. memset(data->cur_msg_async.rx_buf, 0,
  352. sizeof(data->cur_msg_async.rx_buf));
  353. data->cur_msg_async.msg[i].buf = data->cur_msg_async.rx_buf;
  354. } else {
  355. memcpy(data->cur_msg_async.tx_buf,
  356. data->cur_msg_async.msg[i].buf,
  357. data->cur_msg_async.msg[i].len);
  358. data->cur_msg_async.msg[i].buf = data->cur_msg_async.tx_buf;
  359. }
  360. }
  361. #endif
  362. data->cur_msg_async_valid = 1;
  363. }
  364. void i2c_acts_isr(void *arg)
  365. {
  366. struct device *dev = (struct device *)arg;
  367. const struct acts_i2c_config *config = DEV_CFG(dev);
  368. struct acts_i2c_data *data = DEV_DATA(dev);
  369. struct i2c_acts_controller *i2c = config->base;
  370. struct i2c_msg *cur_msg = data->cur_msg;
  371. uint32_t stat, fifostat;
  372. int ret;
  373. LOG_DBG("stat:0x%x fifostat:0x%x state:%d",
  374. i2c->stat, i2c->fifostat, data->state);
  375. #if defined(CONFIG_I2C_SLAVE)
  376. if (data->slave_attached && !data->master_active) {
  377. i2c_slave_acts_isr(dev);
  378. return;
  379. }
  380. #endif
  381. stat = i2c->stat;
  382. fifostat = i2c->fifostat;
  383. /* check error */
  384. if (fifostat & I2C_FIFOSTAT_RNB) {
  385. LOG_ERR("no ACK from device");
  386. data->state = STATE_TRANSFER_ERROR;
  387. goto stop;
  388. } else if (stat & I2C_STAT_BEB) {
  389. LOG_ERR("bus error");
  390. data->state = STATE_TRANSFER_ERROR;
  391. goto stop;
  392. }
  393. LOG_DBG("msg_buf_ptr:%d cur_msg:%p len:%d", data->msg_buf_ptr, cur_msg, cur_msg->len);
  394. if (data->state == STATE_READ_DATA) {
  395. /* read data from FIFO */
  396. while ((!(i2c->fifostat & I2C_FIFOSTAT_RFE)) &&
  397. data->msg_buf_ptr < cur_msg->len) {
  398. cur_msg->buf[data->msg_buf_ptr++] = i2c->rxdat;
  399. }
  400. /* all data is transfered? */
  401. if (data->msg_buf_ptr >= cur_msg->len) {
  402. data->state = STATE_TRANSFER_OVER;
  403. }
  404. } else {
  405. /* all data is transfered? */
  406. if (data->msg_buf_ptr >= cur_msg->len) {
  407. data->state = STATE_TRANSFER_OVER;
  408. }
  409. /* write data to FIFO */
  410. while (!(i2c->fifostat & I2C_FIFOSTAT_TFF) &&
  411. data->msg_buf_ptr < cur_msg->len) {
  412. i2c->txdat = cur_msg->buf[data->msg_buf_ptr++];
  413. /* wait fifo stat is updated */
  414. fifostat = i2c->fifostat;
  415. }
  416. }
  417. stop:
  418. i2c->stat |= I2C_STAT_IRQP;
  419. if (data->state == STATE_TRANSFER_ERROR ||
  420. data->state == STATE_TRANSFER_OVER) {
  421. /* FIXME: add extra 2 bytes for TX to generate IRQ */
  422. if (i2c->datcnt != cur_msg->len) {
  423. i2c->datcnt = cur_msg->len;
  424. }
  425. ret = i2c_acts_wait_complete(i2c, I2C_WAIT_COMPLETE_MS,
  426. ((cur_msg->flags & I2C_MSG_RW_MASK) == I2C_MSG_READ) ? true : false);
  427. if (ret)
  428. data->state = STATE_TRANSFER_ERROR;
  429. /* disable i2c controller */
  430. i2c->ctl = 0;
  431. if (data->cur_msg_async.async_func) {
  432. data->cur_msg_async.async_func(data->cur_msg_async.cb_data,
  433. data->cur_msg_async.msg, data->cur_msg_async.num_msgs,
  434. (data->state == STATE_TRANSFER_ERROR)? true : false);
  435. }
  436. data->cur_msg_async_valid = 0;
  437. /* read next async message */
  438. struct i2c_msg_async msg_async = {0};
  439. ret = cbuf_read(&data->cbuf, &msg_async, sizeof(struct i2c_msg_async));
  440. if (ret > 0) {
  441. LOG_DBG("read cbuf msg addr:0x%x", msg_async.addr);
  442. data->on_irq_async_msg = 1;
  443. i2c_acts_update_cur_async_msg(dev, &msg_async);
  444. __i2c_acts_transfer(dev, data->cur_msg_async.msg,
  445. data->cur_msg_async.num_msgs, data->cur_msg_async.addr);
  446. } else {
  447. cbuf_reset(&data->cbuf);
  448. data->on_irq_async_msg = 0;
  449. #if defined(CONFIG_I2C_SLAVE)
  450. data->master_active = false;
  451. #endif
  452. }
  453. }
  454. }
  455. static int i2c_acts_transfer_async(const struct device *dev, struct i2c_msg_async *msg_async)
  456. {
  457. struct acts_i2c_data *data = DEV_DATA(dev);
  458. const struct acts_i2c_config *config = DEV_CFG(dev);
  459. struct i2c_acts_controller *i2c = config->base;
  460. int ret, flags;
  461. bool need_start_flag = false;
  462. if ((!msg_async->num_msgs)|| (msg_async->num_msgs > 2)) {
  463. LOG_ERR("invalid msg number:%d", msg_async->num_msgs);
  464. return -EINVAL;
  465. }
  466. flags = irq_lock();
  467. if ((!data->on_irq_async_msg) && (!data->cur_msg_async_valid))
  468. need_start_flag = 1;
  469. if (need_start_flag) {
  470. i2c_acts_update_cur_async_msg(dev, msg_async);
  471. ret = __i2c_acts_transfer(dev, data->cur_msg_async.msg,
  472. data->cur_msg_async.num_msgs, data->cur_msg_async.addr);
  473. } else {
  474. LOG_DBG("write msg addr:0x%x to cbuf", msg_async->addr);
  475. ret = cbuf_write(&data->cbuf, msg_async, sizeof(struct i2c_msg_async));
  476. if (!ret) {
  477. LOG_ERR("write cbuf error(%d, %d)", data->on_irq_async_msg, data->cur_msg_async_valid);
  478. i2c_acts_dump_regs(i2c);
  479. i2c_acts_reset(i2c);
  480. cbuf_reset(&data->cbuf);
  481. data->cur_msg_async_valid = 0;
  482. data->on_irq_async_msg = 0;
  483. ret = -EAGAIN;
  484. } else {
  485. ret = 0;
  486. }
  487. }
  488. irq_unlock(flags);
  489. return ret;
  490. }
  491. static int i2c_acts_async_dummy_cb(void *cb_data, struct i2c_msg *msgs,
  492. uint8_t num_msgs, bool is_err)
  493. {
  494. const struct device *dev = (const struct device *)cb_data;
  495. struct acts_i2c_data *data = DEV_DATA(dev);
  496. #ifdef CONFIG_I2C_ASYNC_MSG_INTERNAL_BUFFER
  497. if (data->rx_sync_buf && data->cur_msg_async_valid) {
  498. uint8_t i;
  499. for (i = 0; i < data->cur_msg_async.num_msgs; i++) {
  500. if (data->cur_msg_async.msg[i].flags & I2C_MSG_READ) {
  501. memcpy(data->rx_sync_buf,
  502. data->cur_msg_async.msg[i].buf,
  503. data->cur_msg_async.msg[i].len);
  504. break;
  505. }
  506. }
  507. }
  508. #endif
  509. k_sem_give(&data->complete_sem);
  510. return 0;
  511. }
  512. static int i2c_acts_transfer(const struct device *dev, struct i2c_msg *msgs,
  513. uint8_t num_msgs, uint16_t addr)
  514. {
  515. const struct acts_i2c_config *config = DEV_CFG(dev);
  516. struct acts_i2c_data *data = DEV_DATA(dev);
  517. struct i2c_acts_controller *i2c = config->base;
  518. int i = 0, ret = 0;
  519. uint32_t start_time;
  520. struct i2c_msg_async msg_async = {0};
  521. if ((!num_msgs) || (num_msgs > 2)) {
  522. LOG_ERR("invalid num_msgs:%d", num_msgs);
  523. return -EINVAL;
  524. }
  525. msg_async.num_msgs = num_msgs;
  526. msg_async.async_func = i2c_acts_async_dummy_cb;
  527. msg_async.cb_data = (void *)dev;
  528. msg_async.addr = addr;
  529. for (i = 0; i < num_msgs; i++)
  530. memcpy(&msg_async.msg[i], &msgs[i], sizeof(struct i2c_msg));
  531. k_mutex_lock(&data->mutex, K_FOREVER);
  532. #ifdef CONFIG_I2C_ASYNC_MSG_INTERNAL_BUFFER
  533. for (i = 0; i < num_msgs; i++) {
  534. if (msgs[i].flags & I2C_MSG_READ) {
  535. data->rx_sync_buf = msgs[i].buf;
  536. break;
  537. }
  538. }
  539. #endif
  540. /* wait async messages finished */
  541. start_time = k_cycle_get_32();
  542. while (data->cbuf.length > 0) {
  543. if (k_cyc_to_us_floor32(k_cycle_get_32() - start_time)
  544. >= I2C_WAIT_ASYNC_TIMEOUT_US) {
  545. LOG_ERR("wait async timeout");
  546. k_mutex_unlock(&data->mutex);
  547. return -ETIMEDOUT;
  548. }
  549. }
  550. ret = i2c_acts_transfer_async(dev, &msg_async);
  551. if (ret) {
  552. LOG_ERR("i2c async error:%d", ret);
  553. i2c_acts_dump_regs(i2c);
  554. goto out;
  555. }
  556. ret = k_sem_take(&data->complete_sem, I2C_TIMEOUT_MS);
  557. if (ret) {
  558. /* wait timeout */
  559. LOG_ERR("addr 0x%x: wait timeout", addr);
  560. ret = -ETIMEDOUT;
  561. }
  562. if (data->state == STATE_TRANSFER_ERROR) {
  563. LOG_ERR("addr 0x%x: transfer error", addr);
  564. i2c_acts_dump_regs(i2c);
  565. ret = -EIO;
  566. }
  567. #ifdef CONFIG_I2C_ASYNC_MSG_INTERNAL_BUFFER
  568. data->rx_sync_buf = NULL;
  569. #endif
  570. out:
  571. if (ret) {
  572. i2c_acts_dump_regs(i2c);
  573. #ifdef CONFIG_I2C_ASYNC
  574. data->cur_msg_async_valid = 0;
  575. cbuf_reset(&data->cbuf);
  576. data->on_irq_async_msg = 0;
  577. #endif
  578. }
  579. k_mutex_unlock(&data->mutex);
  580. return ret;
  581. }
  582. int i2c_acts_init(const struct device *dev)
  583. {
  584. const struct acts_i2c_config *config = DEV_CFG(dev);;
  585. struct acts_i2c_data *data = DEV_DATA(dev);
  586. /* enable i2c controller clock */
  587. acts_clock_peripheral_enable(config->clock_id);
  588. /* reset i2c controller */
  589. acts_reset_peripheral(config->reset_id);
  590. /* setup default clock to 100K */
  591. i2c_acts_set_clk(config->base, config->clk_freq);
  592. printk("i2c%d:clk=%d,cmd=%d,dma=%d\n",config->clock_id-CLOCK_ID_I2C0, config->clk_freq,
  593. config->use_cmd, config->use_dma);
  594. k_mutex_init(&data->mutex);
  595. k_sem_init(&data->complete_sem, 0, UINT_MAX);
  596. #if IS_ENABLED(CONFIG_I2C_0)
  597. if ((uint32_t)config->base == I2C0_REG_BASE)
  598. cbuf_init(&data->cbuf, i2c0_ringbuf, sizeof(i2c0_ringbuf));
  599. #endif
  600. #if IS_ENABLED(CONFIG_I2C_1)
  601. if ((uint32_t)config->base == I2C1_REG_BASE)
  602. cbuf_init(&data->cbuf, i2c1_ringbuf, sizeof(i2c1_ringbuf));
  603. #endif
  604. data->on_irq_async_msg = 0;
  605. config->irq_config_func();
  606. return 0;
  607. }
  608. #if defined(CONFIG_I2C_SLAVE)
  609. #define I2C_SLAVE_STATUS_IDLE 0
  610. #define I2C_SLAVE_STATUS_READY 1
  611. #define I2C_SLAVE_STATUS_START 2
  612. #define I2C_SLAVE_STATUS_ADDRESS 3
  613. #define I2C_SLAVE_STATUS_MASTER_WRITE 4
  614. #define I2C_SLAVE_STATUS_MASTER_READ 5
  615. #define I2C_SLAVE_STATUS_STOPED 6
  616. #define I2C_SLAVE_STATUS_ERR 15
  617. static void i2c_slave_acts_isr(struct device *dev)
  618. {
  619. const struct acts_i2c_config *cfg = DEV_CFG(dev);
  620. struct acts_i2c_data *data = DEV_DATA(dev);
  621. struct i2c_acts_controller *i2c = cfg->base;
  622. const struct i2c_slave_callbacks *cf= data->slave_cfg->callbacks;
  623. uint32_t stat;
  624. uint16_t addr;
  625. uint8_t val;
  626. stat = i2c->stat;
  627. /* clear pending */
  628. i2c->stat = I2C_STAT_IRQP;
  629. /* check error */
  630. if (stat & I2C_STAT_BEB) {
  631. LOG_ERR("bus error\n");
  632. i2c_acts_dump_regs(i2c);
  633. i2c_acts_reset(i2c);
  634. data->status = I2C_SLAVE_STATUS_ERR;
  635. goto out;
  636. }
  637. /* detected start signal */
  638. if (stat & I2C_STAT_STAD) {
  639. i2c->stat = I2C_STAT_STAD;
  640. data->status = I2C_SLAVE_STATUS_START;
  641. }
  642. /* recieved address or data */
  643. if (stat & I2C_STAT_TCB) {
  644. i2c->stat = I2C_STAT_TCB;
  645. if (!(i2c->stat & I2C_STAT_LBST)) {
  646. /* receive address */
  647. data->status = I2C_SLAVE_STATUS_ADDRESS;
  648. addr = i2c->rxdat;
  649. if ((addr >> 1) != data->slave_cfg->address) {
  650. LOG_ERR("bus address (0x%x) not matched with (0x%x)\n",
  651. addr >> 1, data->slave_cfg->address);
  652. i2c->stat |= 0x1ff;
  653. goto out;
  654. }
  655. if (addr & 1) {
  656. /* master read */
  657. cf->read_requested(data->slave_cfg, &val);
  658. i2c->txdat = val;
  659. data->status = I2C_SLAVE_STATUS_MASTER_READ;
  660. } else {
  661. /* master write */
  662. i2c->ctl &= ~I2C_CTL_GRAS_ACK;
  663. cf->write_requested(data->slave_cfg);
  664. data->status = I2C_SLAVE_STATUS_MASTER_WRITE;
  665. }
  666. } else {
  667. /* receive data */
  668. if (data->status == I2C_SLAVE_STATUS_MASTER_READ) {
  669. /* master <--- slave */
  670. if (!(stat & I2C_STAT_RACK)) {
  671. /* received NACK */
  672. goto out;
  673. }
  674. cf->read_processed(data->slave_cfg, &val);
  675. i2c->txdat = val;
  676. } else {
  677. /* master ---> slave */
  678. val = i2c->rxdat;
  679. if(!cf->write_received(data->slave_cfg, val))
  680. i2c->ctl |= I2C_CTL_GRAS_ACK;
  681. }
  682. }
  683. }
  684. /* detected stop signal */
  685. if (stat & I2C_STAT_STPD) {
  686. i2c->stat = I2C_STAT_STPD;
  687. cf->stop(data->slave_cfg);
  688. i2c->ctl &= ~I2C_CTL_GRAS_ACK;
  689. }
  690. out:
  691. i2c->ctl |= I2C_CTL_RB;
  692. }
  693. /* Attach and start I2C as slave */
  694. int i2c_acts_slave_register(struct device *dev,
  695. struct i2c_slave_config *config)
  696. {
  697. const struct acts_i2c_config *cfg = DEV_CFG(dev);
  698. struct acts_i2c_data *data = DEV_DATA(dev);
  699. struct i2c_acts_controller *i2c = cfg->base;
  700. if (!config) {
  701. return -EINVAL;
  702. }
  703. if (data->slave_attached) {
  704. LOG_ERR("i2c: err slave is registered\n");
  705. return -EBUSY;
  706. }
  707. if (data->master_active) {
  708. LOG_ERR("i2c: master is transfer\n");
  709. return -EBUSY;
  710. }
  711. i2c->addr = config->address << 1;
  712. data->slave_cfg = config;
  713. data->slave_attached = true;
  714. LOG_DBG("i2c: slave registered");
  715. i2c->ctl = I2C_CTL_IRQE | I2C_CTL_EN | I2C_CTL_RB | I2C_CTL_GRAS_ACK | I2C_CTL_STD_IRQ_EN;
  716. return 0;
  717. }
  718. int i2c_acts_slave_unregister(struct device *dev,
  719. struct i2c_slave_config *config)
  720. {
  721. const struct acts_i2c_config *cfg = DEV_CFG(dev);
  722. struct acts_i2c_data *data = DEV_DATA(dev);
  723. struct i2c_acts_controller *i2c = cfg->base;
  724. if (!data->slave_attached) {
  725. return -EINVAL;
  726. }
  727. if (data->master_active) {
  728. return -EBUSY;
  729. }
  730. data->slave_cfg = NULL;
  731. /* disable i2c controller */
  732. i2c->ctl = 0;
  733. data->slave_attached = false;
  734. LOG_DBG("i2c: slave unregistered");
  735. return 0;
  736. }
  737. #endif /* defined(CONFIG_I2C_SLAVE) */
  738. const struct i2c_driver_api i2c_acts_driver_api = {
  739. .configure = i2c_acts_configure,
  740. .transfer = i2c_acts_transfer,
  741. #if defined(CONFIG_I2C_SLAVE)
  742. .slave_register = i2c_acts_slave_register,
  743. .slave_unregister = i2c_acts_slave_unregister,
  744. #endif
  745. #if defined(CONFIG_I2C_ASYNC)
  746. .transfer_async = i2c_acts_transfer_async,
  747. #endif
  748. };
  749. #ifdef CONFIG_DEVICE_POWER_MANAGEMENT_NOT_USE
  750. static void i2c_acts_set_power_state(struct device *dev, uint32_t power_state)
  751. {
  752. struct acts_i2c_data *drv_data = dev->data;
  753. drv_data->device_power_state = power_state;
  754. }
  755. static uint32_t i2c_acts_get_power_state(struct device *dev)
  756. {
  757. struct acts_i2c_data *drv_data = dev->data;
  758. return drv_data->device_power_state;
  759. }
  760. static int i2c_suspend_device(struct device *dev)
  761. {
  762. if (device_busy_check(dev)) {
  763. return -EBUSY;
  764. }
  765. i2c_acts_set_power_state(dev, DEVICE_PM_SUSPEND_STATE);
  766. return 0;
  767. }
  768. static int i2c_resume_device_from_suspend(struct device *dev)
  769. {
  770. i2c_acts_set_power_state(dev, DEVICE_PM_ACTIVE_STATE);
  771. return 0;
  772. }
  773. /*
  774. * Implements the driver control management functionality
  775. * the *context may include IN data or/and OUT data
  776. */
  777. int i2c_device_ctrl(struct device *dev, uint32_t ctrl_command,
  778. void *context)
  779. {
  780. if (ctrl_command == DEVICE_PM_SET_POWER_STATE) {
  781. if (*((uint32_t *)context) == DEVICE_PM_SUSPEND_STATE) {
  782. return i2c_suspend_device(dev);
  783. } else if (*((uint32_t *)context) == DEVICE_PM_ACTIVE_STATE) {
  784. return i2c_resume_device_from_suspend(dev);
  785. }
  786. } else if (ctrl_command == DEVICE_PM_GET_POWER_STATE) {
  787. *((uint32_t *)context) = i2c_acts_get_power_state(dev);
  788. return 0;
  789. }
  790. return 0;
  791. }
  792. #else
  793. #define i2c_acts_set_power_state(...)
  794. #endif /* CONFIG_DEVICE_POWER_MANAGEMENT */
  795. #define dma_use(n) (\
  796. .dma_dev_name = CONFIG_DMA_0_NAME, \
  797. .dma_id = CONFIG_I2C_##n##_DMA_ID,\
  798. .dma_chan = CONFIG_I2C_##n##_DMA_CHAN,\
  799. .use_dma = 1, \
  800. )
  801. #define dma_not(n) (\
  802. .use_dma = 0, \
  803. )
  804. // COND_CODE_1(CONFIG_I2C_##n##_USE_DMA,dma_use(n), dma_not(n))
  805. #define I2C_ACTS_INIT(n) \
  806. static const struct device DEVICE_NAME_GET(i2c##n##_acts); \
  807. \
  808. static void i2c##n##_acts_irq_config(void) \
  809. { \
  810. IRQ_CONNECT(IRQ_ID_I2C##n, CONFIG_I2C_##n##_IRQ_PRI, \
  811. i2c_acts_isr, \
  812. DEVICE_GET(i2c##n##_acts), 0); \
  813. irq_enable(IRQ_ID_I2C##n); \
  814. } \
  815. \
  816. static const struct acts_i2c_config i2c##n##_acts_config = { \
  817. .base = (struct i2c_acts_controller *)I2C##n##_REG_BASE, \
  818. .irq_config_func = i2c##n##_acts_irq_config, \
  819. .clock_id = CLOCK_ID_I2C##n,\
  820. .reset_id = RESET_ID_I2C##n,\
  821. COND_DMA_CODE(CONFIG_I2C_##n##_USE_DMA, CONFIG_I2C_##n##_DMA_ID, CONFIG_I2C_##n##_DMA_CHAN) \
  822. .use_cmd = 0,\
  823. .irq_id = IRQ_ID_I2C##n, \
  824. .clk_freq = CONFIG_I2C_##n##_CLK_FREQ, \
  825. }; \
  826. \
  827. static struct acts_i2c_data i2c##n##_acts_data; \
  828. \
  829. DEVICE_DEFINE(i2c##n##_acts, CONFIG_I2C_##n##_NAME, \
  830. &i2c_acts_init, NULL, \
  831. &i2c##n##_acts_data, &i2c##n##_acts_config, \
  832. POST_KERNEL, CONFIG_I2C_INIT_PRIORITY, \
  833. &i2c_acts_driver_api);
  834. #if IS_ENABLED(CONFIG_I2C_0)
  835. I2C_ACTS_INIT(0)
  836. #endif
  837. #if IS_ENABLED(CONFIG_I2C_1)
  838. I2C_ACTS_INIT(1)
  839. #endif