123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799 |
- /*
- * Copyright (c) 2017 Actions Semiconductor Co., Ltd
- *
- * SPDX-License-Identifier: Apache-2.0
- */
- /**
- * @file
- * @brief I2CMT master driver for Actions SoC
- */
- //#define DT_DRV_COMPAT actions_acts_i2cmt
- #include <errno.h>
- #include <sys/__assert.h>
- #include <stdbool.h>
- #include <kernel.h>
- #include <device.h>
- #include <init.h>
- #include <drivers/ipmsg.h>
- #include <drivers/i2cmt.h>
- #include <rbuf/rbuf_msg_sc.h>
- #include <soc.h>
- #include <board_cfg.h>
- #include <linker/linker-defs.h>
- #define LOG_LEVEL CONFIG_I2C_LOG_LEVEL
- #include <logging/log.h>
- LOG_MODULE_REGISTER(i2cmt_acts);
- #define I2CMT_CLOCK (4000000)
- #define CMU_DIV_STEP_NUM (4)
- #define MIN_I2CMT_DIV (5)
- #define MAX_I2CMT_DIV (31)
- /**
- * @brief I2C Module (I2CMT)
- */
- typedef struct {
- volatile uint32_t CTL; /*!< (@ 0x00000000) TASK Control Register */
- volatile uint32_t DMA_CTL; /*!< (@ 0x00000004) TASK DMA Control Register */
- volatile uint32_t DMA_ADD; /*!< (@ 0x00000008) TASK DMA Address Register */
- volatile uint32_t DMA_CNT; /*!< (@ 0x0000000C) TASK DMA CNT Register */
- volatile uint32_t DMA_RC; /*!< (@ 0x00000010) TASK DMA remain counter Register */
- volatile uint32_t SLAVE_ADDR;
- volatile uint32_t RESERVED[10];
- } I2CMT_AUTO_TASK_Type; /*!< Size = 64 (0x40) */
- typedef struct { /*!< (@ 0x40088000) I2CMT Structure */
- volatile uint32_t CTL; /*!< (@ 0x00000000) I2C Control Register */
- volatile uint32_t NML_STA; /*!< (@ 0x00000004) I2C Status Register */
- volatile uint32_t NML_DAT; /*!< (@ 0x00000008) I2C TX/RX DATA Register */
- volatile uint32_t AUTO_TASK_STAT; /*!< (@ 0x0000000C) Auto task status Register */
- volatile uint32_t AUTO_TASK_IE; /*!< (@ 0x00000010) Auto task IRQ enable Register */
- volatile uint32_t AUTO_TASK_IP; /*!< (@ 0x00000014) Auto task IRQ pending Register */
- volatile uint32_t RESERVED1[2];
- volatile uint32_t AUTO_TASK_CFG; /*!< (@ 0x00000020) Auto task CFG Register */
- volatile uint32_t RESERVED2[55];
- volatile I2CMT_AUTO_TASK_Type AUTO_TASK[4]; /*!< (@ 0x00000100) TASK[0..3] Group */
- volatile uint32_t RESERVED3[3968];
- } I2CMT_Type; /*!< Size = 512 (0x200) */
- typedef I2CMT_Type I2CMT_ARRAYType[1]; /*!< max. 2 instances available */
- #define I2CMT ((I2CMT_ARRAYType*) I2CMT0_REG_BASE)
- /* ========================================================== CTL ========================================================== */
- #define I2CMT_CTL_CLKDIV_Msk (0xf80UL) /*!< CLKDIV (Bitfield-Mask: 0x1f) */
- #define I2CMT_CTL_MODSEL_Msk (0x40UL) /*!< MODSEL (Bitfield-Mask: 0x01) */
- #define I2CMT_CTL_EN_Msk (0x20UL) /*!< EN (Bitfield-Mask: 0x01) */
- #define I2CMT_CTL_IRQE_Msk (0x10UL) /*!< IRQE (Bitfield-Mask: 0x01) */
- #define I2CMT_CTL_GBCC_Msk (0xcUL) /*!< GBCC (Bitfield-Mask: 0x03) */
- #define I2CMT_CTL_RB_Msk (0x2UL) /*!< RB (Bitfield-Mask: 0x01) */
- #define I2CMT_CTL_GACK_Msk (0x1UL) /*!< GACK (Bitfield-Mask: 0x01) */
- #define I2CMT_CTL_CLKDIV_Pos (7UL) /*!< CLKDIV (Bit 7) */
- #define I2CMT_CTL_MODSEL_Pos (6UL) /*!< MODSEL (Bit 6) */
- #define I2CMT_CTL_EN_Pos (5UL) /*!< EN (Bit 5) */
- #define I2CMT_CTL_IRQE_Pos (4UL) /*!< IRQE (Bit 4) */
- #define I2CMT_CTL_GBCC_Pos (2UL) /*!< GBCC (Bit 2) */
- #define I2CMT_CTL_RB_Pos (1UL) /*!< RB (Bit 1) */
- #define I2CMT_CTL_GACK_Pos (0UL) /*!< GACK (Bit 0) */
- /* ======================================================== NML_STA ======================================================== */
- #define I2CMT_NML_STA_TCB_Msk (0x100UL) /*!< TCB (Bitfield-Mask: 0x01) */
- #define I2CMT_NML_STA_STPD_Msk (0x80UL) /*!< STPD (Bitfield-Mask: 0x01) */
- #define I2CMT_NML_STA_STAD_Msk (0x40UL) /*!< STAD (Bitfield-Mask: 0x01) */
- #define I2CMT_NML_STA_RWST_Msk (0x20UL) /*!< RWST (Bitfield-Mask: 0x01) */
- #define I2CMT_NML_STA_LBST_Msk (0x10UL) /*!< LBST (Bitfield-Mask: 0x01) */
- #define I2CMT_NML_STA_IRQP_Msk (0x8UL) /*!< IRQP (Bitfield-Mask: 0x01) */
- #define I2CMT_NML_STA_BBB_Msk (0x4UL) /*!< BBB (Bitfield-Mask: 0x01) */
- #define I2CMT_NML_STA_BEB_Msk (0x2UL) /*!< BEB (Bitfield-Mask: 0x01) */
- #define I2CMT_NML_STA_RACK_Msk (0x1UL) /*!< RACK (Bitfield-Mask: 0x01) */
- /* ===================================================== AUTO_TASK_IE ====================================================== */
- #define I2CMT_AUTO_TASK_IE_TSK0BERIE_Pos (12UL) /*!< TSK0BERIE (Bit 12) */
- #define I2CMT_AUTO_TASK_IE_TSK0NAKIE_Pos (8UL) /*!< TSK0NAKIE (Bit 8) */
- #define I2CMT_AUTO_TASK_IE_TSK0HFIE_Pos (4UL) /*!< TSK0HFIE (Bit 4) */
- #define I2CMT_AUTO_TASK_IE_TSK0TCIE_Pos (0UL) /*!< TSK0TCIE (Bit 0) */
- /* ===================================================== AUTO_TASK_IP ====================================================== */
- #define I2CMT_AUTO_TASK_IP_TSK0BERIP_Pos (12UL) /*!< TSK0BERIP (Bit 12) */
- #define I2CMT_AUTO_TASK_IP_TSK0NAKIP_Pos (8UL) /*!< TSK0NAKIP (Bit 8) */
- #define I2CMT_AUTO_TASK_IP_TSK0HFIP_Pos (4UL) /*!< TSK0HFIP (Bit 4) */
- #define I2CMT_AUTO_TASK_IP_TSK0TCIP_Pos (0UL) /*!< TSK0TCIP (Bit 0) */
- /* ========================================================== CTL ========================================================== */
- #define I2CMT_AUTO_TASK_CTL_SOFT_ST_Msk (0x80000000UL) /*!< SOFT_ST (Bitfield-Mask: 0x01) */
- /* ======================================================== DMA_CTL ======================================================== */
- #define I2CMT_AUTO_TASK_DMA_CTL_DMARELD_Pos (1UL) /*!< DMARELD (Bit 1) */
- #define I2CMT_AUTO_TASK_DMA_CTL_DMASTART_Msk (0x1UL) /*!< DMASTART (Bitfield-Mask: 0x01) */
- // I2C BUS STAT
- #define MASK (I2CMT_CTL_GBCC_Msk | I2CMT_CTL_RB_Msk | I2CMT_CTL_GACK_Msk)
- #define START (1 << I2CMT_CTL_GBCC_Pos)
- #define STOP (2 << I2CMT_CTL_GBCC_Pos)
- #define RESTA (3 << I2CMT_CTL_GBCC_Pos)
- #define REBUS I2CMT_CTL_RB_Msk
- #define ACK 0
- #define NACK I2CMT_CTL_GACK_Msk
- enum i2cmt_state {
- STATE_OK = 0,
- STATE_ERR,
- };
- struct acts_i2cmt_config {
- uint32_t ctl_reg;
- uint32_t clk_freq;
- uint16_t max_task_len;
- uint8_t bus_id;
- uint8_t clock_id;
- uint8_t reset_id;
- void (*irq_config_func)(void);
- };
- /* Device run time data */
- struct acts_i2cmt_data {
- struct k_mutex mutex;
- struct k_sem complete_sem;
- enum i2cmt_state state;
- uint8_t suspended;
- uint8_t soft_started;
- /* task data */
- i2c_task_callback_t task_cb[I2C_TASK_NUM];
- void *task_cb_ctx[I2C_TASK_NUM];
- i2c_task_t *task_attr[I2C_TASK_NUM];
- uint8_t *task_buf[I2C_TASK_NUM];
- uint32_t task_len[I2C_TASK_NUM];
- };
- #define DEV_NAME(dev) ((dev)->name)
- #define DEV_CFG(dev) \
- ((const struct acts_i2cmt_config *const)(dev)->config)
- #define DEV_DATA(dev) \
- ((struct acts_i2cmt_data *const)(dev)->data)
- static void i2cmt_set_rate(int i2c_dev, int rate)
- {
- unsigned int val, cmu_div, i2cmt_div, div, real_rate, cmu_div_reg;
- uint8_t cmu_clksrc_div[CMU_DIV_STEP_NUM] = {1, 2, 4, 8};
- div = (I2CMT_CLOCK + rate * 2 - 1) / (rate * 2);
- /* foreach cmu_clksrc_div and match proper i2cmt_div */
- for (int i = 0; i < CMU_DIV_STEP_NUM; i++) {
- cmu_div_reg = i;
- cmu_div = cmu_clksrc_div[i];
- i2cmt_div = (div + cmu_div - 1) / cmu_div;
- if ((i2cmt_div >= MIN_I2CMT_DIV) && (i2cmt_div <= MAX_I2CMT_DIV)) {
- break;
- } else if (i2cmt_div < MIN_I2CMT_DIV) {
- i2cmt_div = MIN_I2CMT_DIV;
- break;
- } else {
- i2cmt_div = MAX_I2CMT_DIV;
- }
- }
- real_rate = I2CMT_CLOCK / cmu_div / (2 * i2cmt_div);
- LOG_INF("I2CMT%d expected rate %dHz, real rate %dHz, cmudiv=%d, i2cmtdiv=%d",
- i2c_dev, rate, real_rate, cmu_div, i2cmt_div);
- /* fill in RC4M clock src and div */
- val = (0 << 8) | (cmu_div_reg << 0);
- sys_write32(val, CMU_I2CMT0CLK + i2c_dev * 4);
- I2CMT[i2c_dev]->CTL &= ~I2CMT_CTL_CLKDIV_Msk;
- I2CMT[i2c_dev]->CTL |= i2cmt_div << I2CMT_CTL_CLKDIV_Pos;
- }
- // switch to auto mode
- static void i2cmt_auto_mode_set(int i2c_dev)
- {
- /* clear task IRQ pending */
- I2CMT[i2c_dev]->AUTO_TASK_IP = I2CMT[i2c_dev]->AUTO_TASK_IP;
- /* set auto mode */
- I2CMT[i2c_dev]->CTL |= I2CMT_CTL_MODSEL_Msk;
- }
- // configure i2c task
- static void i2cmt_auto_task_config(int i2c_dev, int task_id, i2c_task_t *task_attr, uint32_t addr)
- {
- uint8_t *pdata = (uint8_t *)&task_attr->ctl;
- volatile uint32_t ctl = *(volatile unsigned int*)pdata;
- pdata = (uint8_t *)&task_attr->slavedev;
- volatile uint32_t sdev = *(volatile unsigned int*)pdata;
- /* config task dma first */
- if (task_attr->ctl.swen && (!task_attr->slavedev.rwsel)) {
- I2CMT[i2c_dev]->AUTO_TASK[task_id].DMA_CTL &= ~(I2CMT_AUTO_TASK_DMA_CTL_DMASTART_Msk);
- } else {
- I2CMT[i2c_dev]->AUTO_TASK[task_id].DMA_ADD = addr;//task_attr->dma.addr;
- I2CMT[i2c_dev]->AUTO_TASK[task_id].DMA_CNT = task_attr->dma.len;
- if (task_attr->dma.len > 0) {
- I2CMT[i2c_dev]->AUTO_TASK[task_id].DMA_CTL = I2CMT_AUTO_TASK_DMA_CTL_DMASTART_Msk
- | (task_attr->dma.reload << I2CMT_AUTO_TASK_DMA_CTL_DMARELD_Pos);
- }
- }
- if(task_attr->irq_type & I2C_TASK_IRQ_CMPLT) {
- /* enable task DMA transmission complete IRQ */
- I2CMT[i2c_dev]->AUTO_TASK_IE |= 1 << (I2CMT_AUTO_TASK_IE_TSK0TCIE_Pos + task_id);
- } else {
- /* disable task DMA transmission complete IRQ */
- I2CMT[i2c_dev]->AUTO_TASK_IE &= ~(1 << (I2CMT_AUTO_TASK_IE_TSK0TCIE_Pos + task_id));
- }
- if(task_attr->irq_type & I2C_TASK_IRQ_HALF_CMPLT) {
- /* enable task DMA Half transmission complete IRQ */
- I2CMT[i2c_dev]->AUTO_TASK_IE |= 1 << (I2CMT_AUTO_TASK_IE_TSK0HFIE_Pos + task_id);
- } else {
- /* disable task DMA Half transmission complete IRQ */
- I2CMT[i2c_dev]->AUTO_TASK_IE &= ~(1 << (I2CMT_AUTO_TASK_IE_TSK0HFIE_Pos + task_id));
- }
- if(task_attr->irq_type & I2C_TASK_IRQ_NACK) {
- /* enable task DMA receive NACK IRQ */
- I2CMT[i2c_dev]->AUTO_TASK_IE |= 1 << (I2CMT_AUTO_TASK_IE_TSK0NAKIE_Pos + task_id);
- } else {
- /* disable task DMA receive NACK IRQ */
- I2CMT[i2c_dev]->AUTO_TASK_IE &= ~(1 << (I2CMT_AUTO_TASK_IE_TSK0NAKIE_Pos + task_id));
- }
- if(task_attr->irq_type & I2C_TASK_IRQ_BUS_ERROR) {
- /* enable task DMA bus error IRQ */
- I2CMT[i2c_dev]->AUTO_TASK_IE |= 1 << (I2CMT_AUTO_TASK_IE_TSK0BERIE_Pos + task_id);
- } else {
- /* disable task DMA bus error IRQ */
- I2CMT[i2c_dev]->AUTO_TASK_IE &= ~(1 << (I2CMT_AUTO_TASK_IE_TSK0BERIE_Pos + task_id));
- }
- /* config task ctl*/
- I2CMT[i2c_dev]->AUTO_TASK[task_id].CTL = (ctl & ~I2CMT_AUTO_TASK_CTL_SOFT_ST_Msk);
- I2CMT[i2c_dev]->AUTO_TASK[task_id].SLAVE_ADDR = sdev;
- }
- // configure i2c stop
- static void i2cmt_auto_task_stop_en(int i2c_dev, int task_id, int en)
- {
- if (en) {
- I2CMT[i2c_dev]->AUTO_TASK_CFG &= ~(1 << task_id);
- } else {
- I2CMT[i2c_dev]->AUTO_TASK_CFG |= (1 << task_id);
- }
- }
- // force trigger i2c task by software if don't use externtal trigger sources
- static void i2cmt_auto_task_soft_start(int i2c_dev, int task_id)
- {
- /* trigger task by software */
- I2CMT[i2c_dev]->AUTO_TASK[task_id].CTL &= ~I2CMT_AUTO_TASK_CTL_SOFT_ST_Msk;
- I2CMT[i2c_dev]->AUTO_TASK[task_id].CTL |= I2CMT_AUTO_TASK_CTL_SOFT_ST_Msk;
- }
- // force trigger i2c task by software if don't use externtal trigger sources
- static void i2cmt_auto_task_soft_stop(int i2c_dev, int task_id)
- {
- /* stop dma */
- I2CMT[i2c_dev]->AUTO_TASK[task_id].DMA_CTL = 0;
- /* trigger task by software */
- I2CMT[i2c_dev]->AUTO_TASK[task_id].CTL &= ~I2CMT_AUTO_TASK_CTL_SOFT_ST_Msk;
- }
- //get the irq pending
- static __sleepfunc int i2cmt_auto_task_irq_get_pending(int i2c_dev)
- {
- return I2CMT[i2c_dev]->AUTO_TASK_IP & I2CMT[i2c_dev]->AUTO_TASK_IE;
- }
- static __sleepfunc int i2cmt_auto_task_irq_mask(int task_id, int task_irq_type)
- {
- int irq_pending_mask = 0;
- switch (task_irq_type) {
- case I2C_TASK_IRQ_CMPLT:
- irq_pending_mask = 1 << (I2CMT_AUTO_TASK_IP_TSK0TCIP_Pos + task_id);
- break;
- case I2C_TASK_IRQ_HALF_CMPLT:
- irq_pending_mask = 1 << (I2CMT_AUTO_TASK_IP_TSK0HFIP_Pos + task_id);
- break;
- case I2C_TASK_IRQ_NACK:
- irq_pending_mask = 1 << (I2CMT_AUTO_TASK_IP_TSK0NAKIP_Pos + task_id);
- break;
- case I2C_TASK_IRQ_BUS_ERROR:
- irq_pending_mask = 1 << (I2CMT_AUTO_TASK_IP_TSK0BERIP_Pos + task_id);
- break;
- default:
- break;
- }
- return irq_pending_mask;
- }
- //check if the irq is pending
- //static __sleepfunc int i2cmt_auto_task_irq_is_pending(int i2c_dev, int task_id, int task_irq_type)
- //{
- // return I2CMT[i2c_dev]->AUTO_TASK_IP & i2cmt_auto_task_irq_mask(task_id, task_irq_type);
- //}
- //clear task irq pending
- static __sleepfunc void i2cmt_auto_task_irq_clr_pending(int i2c_dev, int task_id, int task_irq_type)
- {
- I2CMT[i2c_dev]->AUTO_TASK_IP = i2cmt_auto_task_irq_mask(task_id, task_irq_type);
- }
- static void i2cmt_acts_register_callback(struct device *dev, int task_id,
- i2c_task_callback_t cb, void *context)
- {
- struct acts_i2cmt_data *data = DEV_DATA(dev);
- data->task_cb[task_id] = cb;
- data->task_cb_ctx[task_id] = context;
- }
- static uint8_t* i2cmt_task_buf_start(const struct device *dev,
- int task_id, uint32_t addr, uint16_t len, uint8_t rd)
- {
- const struct acts_i2cmt_config *cfg =DEV_CFG(dev);
- struct acts_i2cmt_data *data = DEV_DATA(dev);
- rbuf_t *rbuf;
- uint8_t *sbuf;
- uint16_t slen;
- /* check task len */
- if ((len == 0) || (len > cfg->max_task_len)) {
- LOG_ERR("task[%d] length %d error!", task_id, len);
- return NULL;
- }
- /* get task buf */
- sbuf = data->task_buf[task_id];
- /* check task buf len */
- if ((sbuf != NULL) && (len > data->task_len[task_id])) {
- /* free task buf */
- rbuf = RBUF_FR_BUF(sbuf);
- RB_MSG_FREE(rbuf);
- sbuf = NULL;
- data->task_buf[task_id] = NULL;
- data->task_len[task_id] = 0;
- }
- /* alloc task buf */
- if (sbuf == NULL) {
- if (task_id == I2C_TASK_NUM - 1) {
- slen = cfg->max_task_len;
- } else {
- slen = (len < 16) ? 16 : len;
- }
- rbuf = RB_MSG_ALLOC(slen);
- if (rbuf != NULL) {
- sbuf = (uint8_t*)RBUF_TO_BUF(rbuf);
- data->task_buf[task_id] = sbuf;
- data->task_len[task_id] = slen;
- } else {
- LOG_ERR("task[%d] malloc(%d) error!", task_id, len);
- }
- }
- /* copy buf before writing */
- if (!rd && (addr != 0) && sbuf) {
- memcpy(sbuf, (void*)addr, len);
- }
- return sbuf;
- }
- static uint8_t* i2cmt_task_buf_stop(struct acts_i2cmt_data *data,
- int task_id, uint32_t addr, uint32_t len, uint8_t rd)
- {
- uint8_t *sbuf;
- sbuf = data->task_buf[task_id];
- /* copy buf after reading */
- if (rd && (addr != 0) && sbuf) {
- memcpy((void*)addr, sbuf, len);
- }
- return sbuf;
- }
- static int i2cmt_acts_task_start(struct device *dev, int task_id,
- const i2c_task_t *attr)
- {
- const struct acts_i2cmt_config *cfg =DEV_CFG(dev);
- struct acts_i2cmt_data *data = DEV_DATA(dev);
- uint8_t *buf;
- /* start dma buffer */
- buf = i2cmt_task_buf_start(dev, task_id, attr->dma.addr, attr->dma.len, attr->slavedev.rwsel);
- if (buf == NULL) {
- return -1;
- }
- /* save attr */
- data->task_attr[task_id] = (i2c_task_t*)attr;
- /* select i2c auto mode */
- i2cmt_auto_mode_set(cfg->bus_id);
- /* config i2c task */
- i2cmt_auto_task_config(cfg->bus_id, task_id, (i2c_task_t*)attr, (uint32_t)buf);
- /* config ppi */
- if (!attr->ctl.soft) {
- /* disable ppi trigger */
- ppi_trig_src_en(attr->trig.trig, 0);
- /* clear ppi pending */
- ppi_trig_src_clr_pending(attr->trig.trig);
- /* config ppi trigger */
- ppi_task_trig_config(attr->trig.chan, attr->trig.task, attr->trig.trig);
- /* enable ppi trigger */
- ppi_trig_src_en(attr->trig.trig, attr->trig.en);
- } else {
- /* soft trigger */
- data->soft_started = 1;
- i2cmt_auto_task_soft_start(cfg->bus_id, task_id);
- }
- return 0;
- }
- static int i2cmt_acts_task_stop(struct device *dev, int task_id)
- {
- const struct acts_i2cmt_config *cfg =DEV_CFG(dev);
- struct acts_i2cmt_data *data = DEV_DATA(dev);
- const i2c_task_t *attr = data->task_attr[task_id];
- /* check attr */
- if (attr == NULL) {
- return 0;
- }
- /* disable ppi trigger */
- if ((attr != NULL) && (!attr->ctl.soft)) {
- ppi_trig_src_en(attr->trig.trig, 0);
- /* disable dma transmission */
- I2CMT[cfg->bus_id]->AUTO_TASK[task_id].DMA_CTL = 0;
- } else {
- i2cmt_auto_task_soft_stop(cfg->bus_id, task_id);
- data->soft_started = 0;
- }
- /* stop dma buffer */
- i2cmt_task_buf_stop(data, task_id, attr->dma.addr, attr->dma.len, attr->slavedev.rwsel);
- /* clear attr */
- data->task_attr[task_id] = NULL;
- return 0;
- }
- static int i2cmt_acts_ctl_reset(const struct device *dev)
- {
- const struct acts_i2cmt_config *cfg = DEV_CFG(dev);
- // reset i2cmt
- acts_reset_peripheral(cfg->reset_id);
- /* enable i2c */
- I2CMT[cfg->bus_id]->CTL |= I2CMT_CTL_EN_Msk;
- return 0;
- }
- #if IS_ENABLED(CONFIG_I2CMT_0) || IS_ENABLED(CONFIG_I2CMT_1)
- static const unsigned short i2c_irq_list[4] = {
- I2C_TASK_IRQ_CMPLT,
- I2C_TASK_IRQ_HALF_CMPLT,
- I2C_TASK_IRQ_NACK,
- I2C_TASK_IRQ_BUS_ERROR,
- };
- static void i2cmt_acts_isr(struct device *dev)
- {
- const struct acts_i2cmt_config *cfg = DEV_CFG(dev);;
- struct acts_i2cmt_data *data = DEV_DATA(dev);
- int task_id, irq_type, len;
- int pending = i2cmt_auto_task_irq_get_pending(cfg->bus_id);
- int pos = find_msb_set(pending) - 1;
- i2c_task_callback_t cb;
- const i2c_task_t *attr;
- uint8_t *buf;
- void *ctx;
- while (pos >= 0) {
- task_id = (pos % 4);
- irq_type = i2c_irq_list[pos / 4];
- attr = data->task_attr[task_id];
- /* clear task pending */
- i2cmt_auto_task_irq_clr_pending(cfg->bus_id, task_id, irq_type);
- /* clear ppi pending */
- ppi_trig_src_clr_pending(SPIMT0_TASK0_CIP + attr->trig.task);
- if (!attr->ctl.soft) {
- ppi_trig_src_clr_pending(attr->trig.trig);
- if (attr->trig.trig <= TIMER4) {
- //timer_clear_pd(attr->trig.trig);
- }
- }
- /* call handler */
- cb = data->task_cb[task_id];
- if (cb != NULL) {
- /* get buffer */
- ctx = data->task_cb_ctx[task_id];
- buf = data->task_buf[task_id];
- len = attr->dma.len / 2;
- switch(irq_type) {
- case I2C_TASK_IRQ_CMPLT:
- buf += len;
- break;
- case I2C_TASK_IRQ_HALF_CMPLT:
- break;
- case I2C_TASK_IRQ_NACK:
- case I2C_TASK_IRQ_BUS_ERROR:
- buf = NULL;
- break;
- }
- cb(buf, len, ctx);
- }
- /* find msb */
- pending = i2cmt_auto_task_irq_get_pending(cfg->bus_id);
- pos = find_msb_set(pending) - 1;
- }
- }
- #endif
- __sleepfunc uint8_t* i2c_task_get_data(int bus_id, int task_id, int trig, int *plen)
- {
- int len = 0;
- uint8_t *buf = NULL;
- int pending = i2cmt_auto_task_irq_get_pending(bus_id);
- /* clear task pending */
- if (pending & i2cmt_auto_task_irq_mask(task_id, I2C_TASK_IRQ_HALF_CMPLT)) {
- i2cmt_auto_task_irq_clr_pending(bus_id, task_id, I2C_TASK_IRQ_HALF_CMPLT);
- len = I2CMT[bus_id]->AUTO_TASK[task_id].DMA_CNT / 2;
- buf = (uint8_t *)I2CMT[bus_id]->AUTO_TASK[task_id].DMA_ADD;
- } else if (pending & i2cmt_auto_task_irq_mask(task_id, I2C_TASK_IRQ_CMPLT)) {
- i2cmt_auto_task_irq_clr_pending(bus_id, task_id, I2C_TASK_IRQ_CMPLT);
- len = I2CMT[bus_id]->AUTO_TASK[task_id].DMA_CNT / 2;
- buf = (uint8_t *)I2CMT[bus_id]->AUTO_TASK[task_id].DMA_ADD + len;
- }
- /* clear ppi pending */
- if (buf) {
- ppi_trig_src_clr_pending(I2CMT0_TASK0_CIP+task_id);
- if (trig >= 0) {
- ppi_trig_src_clr_pending(trig);
- }
- }
- if (plen) {
- *plen = len;
- }
- return buf;
- }
- static uint32_t i2cmt_get_timeout(const struct device *dev, int len)
- {
- const struct acts_i2cmt_config *cfg = DEV_CFG(dev);
- /* > 50ms */
- return ((len << 15) / cfg->clk_freq + 50);
- }
- static void i2cmt_xfer_callback(unsigned char *buf, int len, void *ctx)
- {
- struct acts_i2cmt_data *data = DEV_DATA((const struct device *)ctx);
-
- // save status
- data->state = (buf != NULL) ? STATE_OK : STATE_ERR;
-
- // complete xfer
- k_sem_give(&data->complete_sem);
- }
- static int i2cmt_xfer_task(struct device *dev, uint32_t task_id, i2c_task_t *task)
- {
- int ret;
- uint32_t pre_time, cur_time;
- uint32_t timeout_ms = i2cmt_get_timeout(dev, task->dma.len + 3);
- const struct acts_i2cmt_config *cfg = DEV_CFG(dev);
- struct acts_i2cmt_data *data = DEV_DATA(dev);
- /* reset sem */
- if (!data->suspended) {
- k_sem_reset(&data->complete_sem);
- }
- /* start task */
- i2cmt_acts_register_callback(dev, task_id, i2cmt_xfer_callback, (void*)dev);
- ret = i2cmt_acts_task_start(dev, task_id, task);
- if(ret) {
- return -1;
- }
- /* wait task */
- if (data->suspended) {
- pre_time = (uint32_t)soc_sys_uptime_get();
- while(!i2c_task_get_data(cfg->bus_id, task_id, -1, NULL)) {
- cur_time = (uint32_t)soc_sys_uptime_get();
- // timeout
- if ((cur_time - pre_time) > timeout_ms) {
- data->state = STATE_ERR;
- break;
- }
- }
- } else {
- ret = k_sem_take(&data->complete_sem, K_MSEC(timeout_ms));
- if (ret) {
- data->state = STATE_ERR;
- LOG_ERR("i2cmt[%d] timeout(%d ms)", cfg->bus_id, timeout_ms);
- }
- }
-
- /* stop task */
- i2cmt_acts_task_stop(dev, task_id);
- i2cmt_acts_register_callback(dev, task_id, NULL, NULL);
-
- return data->state;
- }
- static int i2cmt_acts_configure(const struct device *dev, uint32_t config)
- {
- LOG_ERR("Change I2CMT clock is not supported");
- return 0;
- }
- static int i2cmt_acts_transfer(const struct device *dev, struct i2c_msg *msgs,
- uint8_t num_msgs, uint16_t addr)
- {
- const struct acts_i2cmt_config *cfg = DEV_CFG(dev);
- struct acts_i2cmt_data *data = DEV_DATA(dev);
- int ret = 0, i;
- i2c_task_t i2c_task = {0};
- if (!data->suspended) {
- k_mutex_lock(&data->mutex, K_FOREVER);
- }
- for (i = 0; i < num_msgs; i ++) {
- /* config task */
- i2c_task.irq_type = I2C_TASK_IRQ_CMPLT | I2C_TASK_IRQ_NACK;
- i2c_task.slavedev.rwsel = ((msgs[i].flags & I2C_MSG_RW_MASK) == I2C_MSG_READ);
- i2c_task.slavedev.sdevaddr = addr;
- i2c_task.ctl.rdlen_wsdat = msgs[i].len;
- i2c_task.ctl.tdataddr = 1,
- i2c_task.ctl.soft = 1;
- i2c_task.dma.reload = 0;
- i2c_task.dma.addr = (uint32_t)msgs[i].buf;
- i2c_task.dma.len = msgs[i].len;
- /* config stop */
- i2cmt_auto_task_stop_en(cfg->bus_id, I2C_TASK_NUM - 1, (msgs[i].flags & I2C_MSG_STOP));
- /* xfer task */
- ret = i2cmt_xfer_task((struct device *)dev, I2C_TASK_NUM - 1, &i2c_task);
- if (ret != STATE_OK) {
- break;
- }
- }
- if (!data->suspended) {
- k_mutex_unlock(&data->mutex);
- }
- return (ret != STATE_OK);
- }
- #ifdef CONFIG_PM_DEVICE
- int i2cmt_pm_control(const struct device *dev, enum pm_device_action action)
- {
- struct acts_i2cmt_data *data = DEV_DATA(dev);
- switch (action) {
- case PM_DEVICE_ACTION_RESUME:
- data->suspended = 0;
- break;
- case PM_DEVICE_ACTION_SUSPEND:
- if((data->mutex.lock_count != 0U) || data->soft_started) {
- LOG_ERR("i2cmt busy, cannot suspend");
- return -1;
- }
- data->suspended = 1;
- break;
- default:
- return 0;
- }
- return 0;
- }
- #else
- #define i2cmt_pm_control NULL
- #endif
- int i2cmt_acts_init(const struct device *dev)
- {
- const struct acts_i2cmt_config *cfg = DEV_CFG(dev);;
- struct acts_i2cmt_data *data = DEV_DATA(dev);
- // enable clock
- acts_clock_peripheral_enable(cfg->clock_id);
- // reset i2cmt
- i2cmt_acts_ctl_reset(dev);
- // set clock
- i2cmt_set_rate(cfg->bus_id, cfg->clk_freq);
- /* irq init */
- cfg->irq_config_func();
- /* data init */
- k_mutex_init(&data->mutex);
- k_sem_init(&data->complete_sem, 0, UINT_MAX);
- data->state = STATE_OK;
- data->suspended = 0;
- data->soft_started = 0;
- return 0;
- }
- const struct i2cmt_driver_api i2cmt_acts_driver_api = {
- .i2c_api = {
- .configure = i2cmt_acts_configure,
- .transfer = i2cmt_acts_transfer,
- },
- .register_callback = i2cmt_acts_register_callback,
- .task_start = i2cmt_acts_task_start,
- .task_stop = i2cmt_acts_task_stop,
- .ctl_reset = i2cmt_acts_ctl_reset,
- };
- #define I2CMT_ACTS_DEFINE_CONFIG(n) \
- static const struct device DEVICE_NAME_GET(i2cmt##n##_acts); \
- \
- static void i2cmt##n##_acts_irq_config(void) \
- { \
- IRQ_CONNECT(IRQ_ID_IIC##n##MT, CONFIG_I2CMT_##n##_IRQ_PRI, \
- i2cmt_acts_isr, \
- DEVICE_GET(i2cmt##n##_acts), 0); \
- irq_enable(IRQ_ID_IIC##n##MT); \
- } \
- static const struct acts_i2cmt_config i2cmt##n##_acts_config = { \
- .ctl_reg = I2CMT##n##_REG_BASE,\
- .clk_freq = CONFIG_I2CMT_##n##_CLK_FREQ, \
- .bus_id = n,\
- .clock_id = CLOCK_ID_I2CMT##n,\
- .reset_id = RESET_ID_I2CMT##n,\
- .irq_config_func = i2cmt##n##_acts_irq_config, \
- .max_task_len = CONFIG_I2CMT_##n##_MAX_TASK_LEN, \
- }
- #define I2CMT_ACTS_DEFINE_DATA(n) \
- static __act_s2_sleep_data struct acts_i2cmt_data i2cmt##n##_acts_dev_data;
- #define I2CMT_ACTS_DEVICE_INIT(n) \
- I2CMT_ACTS_DEFINE_CONFIG(n); \
- I2CMT_ACTS_DEFINE_DATA(n); \
- DEVICE_DEFINE(i2cmt##n##_acts, \
- CONFIG_I2CMT_##n##_NAME, \
- i2cmt_acts_init, i2cmt_pm_control, &i2cmt##n##_acts_dev_data, \
- &i2cmt##n##_acts_config, POST_KERNEL, \
- CONFIG_I2C_INIT_PRIORITY, &i2cmt_acts_driver_api);
- #if IS_ENABLED(CONFIG_I2CMT_0)
- I2CMT_ACTS_DEVICE_INIT(0)
- #endif
- #if IS_ENABLED(CONFIG_I2CMT_1)
- I2CMT_ACTS_DEVICE_INIT(1)
- #endif
|