| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316 |
- /**************************************************************************//**
- * @file wm_i2c.c
- * @author
- * @version
- * @date
- * @brief
- *
- * Copyright (c) 2014 Winner Microelectronics Co., Ltd. All rights reserved.
- *****************************************************************************/
- #include "wm_include.h"
- #include "wm_i2c.h"
- #define I2C_FREQ_MAX (400000)
- #define I2C_FREQ_MIN (100000)
- #define I2C_WRITE (0x80)
- #define I2C_READ (0x00)
- typedef struct {
- uint8_t addr;
- uint8_t dev_addr;
- uint8_t state;
- uint8_t *buf;
- uint16_t len;
- uint16_t cnt;
- uint8_t cmd;
- void (*transfer_done)(void);
- } i2c_desc;
- enum {
- START,
- RESTART,
- TRANSMIT,
- PRERECEIVE,
- RECEIVE,
- STOP,
- DONE,
- IDLE,
- };
- static i2c_desc i2c_transfer;
- ATTRIBUTE_ISR void i2c_I2C_IRQHandler(void)
- {
- int i2c_sr;
- csi_kernel_intrpt_enter();
- i2c_sr = I2C->CR_SR;
- I2C->CR_SR = 1;
- if (i2c_sr & 0x20)
- {
- printf("I2C AL lost\r\n");
- }
- if (i2c_sr & 0x01)
- {
- if ((i2c_sr & 0x80) == 0)
- {
- switch(i2c_transfer.state)
- {
- case START:
- I2C->TX_RX = i2c_transfer.addr;
- I2C->CR_SR = I2C_CR_WR;
- if ((i2c_transfer.cmd & I2C_WRITE) == I2C_WRITE)
- {
- i2c_transfer.state = TRANSMIT;
- }
- else
- {
- i2c_transfer.state = RESTART;
- }
- break;
-
- case RESTART:
- I2C->TX_RX = (i2c_transfer.dev_addr | 0x01);
- I2C->CR_SR = (I2C_CR_STA | I2C_CR_WR);
- i2c_transfer.state = PRERECEIVE;
- break;
-
- case TRANSMIT:
- I2C->TX_RX = i2c_transfer.buf[i2c_transfer.cnt++];
- I2C->CR_SR = I2C_CR_WR;
- if (i2c_transfer.cnt == i2c_transfer.len)
- {
- i2c_transfer.state = STOP;
- }
- break;
-
- case PRERECEIVE:
- i2c_transfer.state = RECEIVE;
- I2C->CR_SR = I2C_CR_RD;
- break;
- case RECEIVE:
- i2c_transfer.buf[i2c_transfer.cnt++] = I2C->TX_RX;
- if (i2c_transfer.cnt == (i2c_transfer.len - 1))
- {
- I2C->CR_SR = (I2C_CR_STO | I2C_CR_NAK | I2C_CR_RD);
- i2c_transfer.state = STOP;
- }
- else if (i2c_transfer.len == 1)
- {
- I2C->CR_SR = (I2C_CR_STO | I2C_CR_NAK | I2C_CR_RD);
- i2c_transfer.state = DONE;
- if (i2c_transfer.transfer_done)
- {
- i2c_transfer.transfer_done();
- }
- }
- else
- {
- I2C->CR_SR = I2C_CR_RD;
- }
- break;
-
- case STOP:
- I2C->CR_SR = I2C_CR_STO;
- i2c_transfer.state = DONE;
- if (i2c_transfer.transfer_done)
- {
- i2c_transfer.transfer_done();
- }
- break;
- }
- }
- else
- {
- if ((i2c_transfer.state == STOP) && i2c_transfer.cmd != I2C_WRITE)
- {
- i2c_transfer.buf[i2c_transfer.cnt] = I2C->TX_RX;
- i2c_transfer.state = DONE;
- if (i2c_transfer.transfer_done)
- {
- i2c_transfer.transfer_done();
- }
- }
- }
- }
- // if ((i2c_sr & 0x40) == 0)
- // {
- // i2c_transfer.state = IDLE;
- // }
- csi_kernel_intrpt_exit();
- }
- void tls_i2c_init(u32 freq)
- {
- u32 div = 0;
- tls_sys_clk clk;
-
- if (freq <= I2C_FREQ_MIN)
- {
- freq = I2C_FREQ_MIN;
- }
- else if (freq >= I2C_FREQ_MAX)
- {
- freq = I2C_FREQ_MAX;
- }
- tls_sys_clk_get(&clk);
-
- div = (clk.apbclk * 1000000)/(5 * freq) - 1;
- tls_reg_write32(HR_I2C_PRER_LO, div & 0xff);
- tls_reg_write32(HR_I2C_PRER_HI, (div>>8) & 0xff);
- /** enable I2C | Disable Int*/
- tls_reg_write32(HR_I2C_CTRL, I2C_CTRL_INT_DISABLE | I2C_CTRL_ENABLE);
- tls_irq_enable(I2C_IRQn);
-
- }
- /**
- * @brief send stop signal
- *
- */
- void tls_i2c_stop(void)
- {
- tls_reg_write32(HR_I2C_CR_SR, I2C_CR_STO);
- while(tls_reg_read32(HR_I2C_CR_SR) & I2C_SR_TIP);
- }
- /**
- * @brief waiting for ack signal
- * @retval
- * - \ref WM_FAILED
- * - \ref WM_SUCCESS
- */
- int tls_i2c_wait_ack(void)
- {
- u16 errtime=0;
- u32 value;
- while(tls_reg_read32(HR_I2C_CR_SR) & I2C_SR_TIP);
- value = tls_reg_read32(HR_I2C_CR_SR);
- while(value & I2C_SR_NAK)
- {
- errtime ++;
- if(errtime > 512)
- {
- //printf("wait ack err\n");
- tls_i2c_stop();
- return WM_FAILED;
- }
- value = tls_reg_read32(HR_I2C_CR_SR);
- }
- return WM_SUCCESS;
- }
- /**
- * @brief writes the data to data register of I2C module
- * when \ifstart one the start signal will be sent followed by the \data
- * when \ifstart zero only the \data will be send
- * @param[in] data the data will be write to the data register of I2C module
- * @param[in] ifstart when one send start signal, when zero don't
- * @retval
- *
- */
- void tls_i2c_write_byte(u8 data,u8 ifstart)
- {
- tls_reg_write32(HR_I2C_TX_RX, data);
- if(ifstart)
- tls_reg_write32(HR_I2C_CR_SR, I2C_CR_STA | I2C_CR_WR);
- else
- tls_reg_write32(HR_I2C_CR_SR, I2C_CR_WR);
- while(tls_reg_read32(HR_I2C_CR_SR) & I2C_SR_TIP);
- }
- /**
- * @brief get the data stored in data register of I2C module
- * @param[in] ifack when one send ack after reading the data register,when zero don't
- * @param[in] ifstop when one send stop signal after read, when zero do not send stop
- * @retval the received data
- */
- u8 tls_i2c_read_byte(u8 ifack,u8 ifstop)
- {
- u8 data;
- u32 value = I2C_CR_RD;
- if(!ifack)
- value |= I2C_CR_NAK;
- if(ifstop)
- value |= I2C_CR_STO;
-
- tls_reg_write32(HR_I2C_CR_SR, value);
- /** Waiting finish */
- while(tls_reg_read32(HR_I2C_CR_SR) & I2C_SR_TIP);
- data = tls_reg_read32(HR_I2C_TX_RX);
- return data;
- }
- /**
- * @brief start write through int mode
- * @param[in] devaddr the device address
- * @param[in] wordaddr when one send stop signal after read, when zero do not send stop
- * @param[in] buf the address point where data shoule be stored
- * @param[in] len the length of data will be received
- * @retval
- * - \ref WM_FAILED
- * - \ref WM_SUCCESS
- */
- int wm_i2c_start_write_it(uint8_t devaddr, uint8_t wordaddr, uint8_t * buf, uint16_t len)
- {
- if (buf == NULL)
- {
- return WM_FAILED;
- }
- I2C->TX_RX = devaddr;
- i2c_transfer.dev_addr = devaddr;
- i2c_transfer.state = START;
- i2c_transfer.cmd = I2C_WRITE;
- i2c_transfer.buf = buf;
- i2c_transfer.len = len;
- i2c_transfer.cnt = 0;
- i2c_transfer.addr = wordaddr;
- I2C->CR_SR = I2C_CR_STA | I2C_CR_WR;
- return WM_SUCCESS;
- }
- /**
- * @brief start read through int mode
- * @param[in] devaddr the device address
- * @param[in] wordaddr when one send stop signal after read, when zero do not send stop
- * @param[in] buf the address point where data shoule be stored
- * @param[in] len the length of data will be received
- * @retval
- * - \ref WM_FAILED
- * - \ref WM_SUCCESS
- */
- int wm_i2c_start_read_it(uint8_t devaddr, uint8_t wordaddr, uint8_t * buf, uint16_t len)
- {
- if (buf == NULL)
- {
- return WM_FAILED;
- }
- I2C->TX_RX = devaddr;
- i2c_transfer.dev_addr = devaddr;
- i2c_transfer.state = START;
- i2c_transfer.cmd = I2C_READ;
- i2c_transfer.buf = buf;
- i2c_transfer.len = len;
- i2c_transfer.cnt = 0;
- i2c_transfer.addr = wordaddr;
- I2C->CR_SR = I2C_CR_STA | I2C_CR_WR;
-
- return WM_SUCCESS;
- }
- /**
- * @brief This function is used to register i2c transfer done callback function.
- * @param[in] done is the i2c transfer done callback function.
- * @retval None
- * @note None
- */
- void wm_i2c_transfer_done_register(void (*done)(void))
- {
- i2c_transfer.transfer_done = done;
- }
- /*** (C) COPYRIGHT 2014 Winner Microelectronics Co., Ltd. ***/
|