2018-05-21 11:13:46 +08:00
|
|
|
/*
|
|
|
|
* File : drv_i2c.c
|
|
|
|
* This file is part of RT-Thread RTOS
|
|
|
|
* COPYRIGHT (C) 2006 - 2018, RT-Thread Development Team
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*
|
|
|
|
* Change Logs:
|
|
|
|
* Date Author Notes
|
|
|
|
* 2017-06-05 tanek first implementation.
|
|
|
|
* 2018-04-19 misonyo Porting for gd32f30x
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "drv_i2c.h"
|
|
|
|
#include <rtthread.h>
|
|
|
|
#include "gd32f30x.h"
|
|
|
|
|
|
|
|
#ifdef RT_USING_I2C
|
|
|
|
|
|
|
|
#include <rtdevice.h>
|
|
|
|
|
|
|
|
#ifdef RT_USING_I2C_BITOPS
|
|
|
|
|
|
|
|
/*user can change this*/
|
|
|
|
#define I2C_BUS_NAME "i2c2"
|
|
|
|
|
|
|
|
/*user should change this to adapt specific board*/
|
|
|
|
#define I2C_SCL_PIN GPIO_PIN_4
|
|
|
|
#define I2C_SCL_PORT GPIOE
|
|
|
|
#define I2C_SCL_CLK RCU_GPIOE
|
|
|
|
#define I2C_SDA_PIN GPIO_PIN_5
|
|
|
|
#define I2C_SDA_PORT GPIOE
|
|
|
|
#define I2C_SDA_CLK RCU_GPIOE
|
|
|
|
|
|
|
|
struct gd32_i2c_bit_data
|
|
|
|
{
|
2018-05-23 23:18:02 +08:00
|
|
|
struct
|
|
|
|
{
|
|
|
|
rcu_periph_enum clk;
|
|
|
|
rt_uint32_t port;
|
|
|
|
rt_uint32_t pin;
|
|
|
|
}scl, sda;
|
2018-05-21 11:13:46 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
static void gpio_set_sda(void *data, rt_int32_t state)
|
|
|
|
{
|
2018-05-23 23:18:02 +08:00
|
|
|
struct gd32_i2c_bit_data* bd = data;
|
|
|
|
|
|
|
|
if (state)
|
|
|
|
{
|
|
|
|
gpio_bit_set(bd->sda.port, bd->sda.pin);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
gpio_bit_reset(bd->sda.port, bd->sda.pin);
|
|
|
|
}
|
2018-05-21 11:13:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void gpio_set_scl(void *data, rt_int32_t state)
|
|
|
|
{
|
2018-05-23 23:18:02 +08:00
|
|
|
struct gd32_i2c_bit_data* bd = data;
|
|
|
|
if (state)
|
|
|
|
{
|
|
|
|
gpio_bit_set(bd->scl.port, bd->scl.pin);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
gpio_bit_reset(bd->scl.port, bd->scl.pin);
|
|
|
|
}
|
2018-05-21 11:13:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static rt_int32_t gpio_get_sda(void *data)
|
|
|
|
{
|
2018-05-23 23:18:02 +08:00
|
|
|
struct gd32_i2c_bit_data* bd = data;
|
2018-05-21 11:13:46 +08:00
|
|
|
|
2018-05-23 23:18:02 +08:00
|
|
|
return gpio_input_bit_get(bd->sda.port, bd->sda.pin);
|
2018-05-21 11:13:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static rt_int32_t gpio_get_scl(void *data)
|
|
|
|
{
|
2018-05-23 23:18:02 +08:00
|
|
|
struct gd32_i2c_bit_data* bd = data;
|
2018-05-21 11:13:46 +08:00
|
|
|
|
2018-05-23 23:18:02 +08:00
|
|
|
return gpio_input_bit_get(bd->scl.port, bd->scl.pin);
|
2018-05-21 11:13:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void gpio_udelay(rt_uint32_t us)
|
|
|
|
{
|
2018-05-23 23:18:02 +08:00
|
|
|
int i = ( rcu_clock_freq_get(CK_SYS) / 4000000 * us);
|
|
|
|
while(i)
|
|
|
|
{
|
|
|
|
i--;
|
|
|
|
}
|
2018-05-21 11:13:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void drv_i2c_gpio_init(const struct gd32_i2c_bit_data* bd)
|
|
|
|
{
|
2018-05-23 23:18:02 +08:00
|
|
|
rcu_periph_clock_enable(bd->sda.clk);
|
|
|
|
rcu_periph_clock_enable(bd->scl.clk);
|
|
|
|
gpio_init(bd->sda.port, GPIO_MODE_OUT_OD, GPIO_OSPEED_10MHZ, bd->sda.pin);
|
|
|
|
gpio_init(bd->scl.port, GPIO_MODE_OUT_OD, GPIO_OSPEED_10MHZ, bd->scl.pin);
|
2018-05-21 11:13:46 +08:00
|
|
|
|
2018-05-23 23:18:02 +08:00
|
|
|
gpio_bit_set(bd->sda.port, bd->sda.pin);
|
|
|
|
gpio_bit_set(bd->scl.port, bd->scl.pin);
|
2018-05-21 11:13:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#else /* use hardware i2c */
|
|
|
|
|
|
|
|
struct gd32_i2c_bus
|
|
|
|
{
|
2018-05-23 23:18:02 +08:00
|
|
|
struct rt_i2c_bus_device parent;
|
|
|
|
rt_uint32_t i2c_periph;
|
2018-05-21 11:13:46 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
static int gd32_i2c_read(rt_uint32_t i2c_periph, rt_uint16_t slave_address, rt_uint8_t* p_buffer, rt_uint16_t data_byte)
|
2018-05-23 23:18:02 +08:00
|
|
|
{
|
2018-05-21 11:13:46 +08:00
|
|
|
/* wait until I2C bus is idle */
|
|
|
|
while(i2c_flag_get(i2c_periph, I2C_FLAG_I2CBSY));
|
2018-05-23 23:18:02 +08:00
|
|
|
|
2018-05-21 11:13:46 +08:00
|
|
|
/* send a start condition to I2C bus */
|
|
|
|
i2c_start_on_bus(i2c_periph);
|
2018-05-23 23:18:02 +08:00
|
|
|
|
2018-05-21 11:13:46 +08:00
|
|
|
/* wait until SBSEND bit is set */
|
|
|
|
while(!i2c_flag_get(i2c_periph, I2C_FLAG_SBSEND));
|
2018-05-23 23:18:02 +08:00
|
|
|
|
2018-05-21 11:13:46 +08:00
|
|
|
/* send slave address to I2C bus */
|
|
|
|
i2c_master_addressing(i2c_periph, slave_address<<1, I2C_RECEIVER);
|
2018-05-23 23:18:02 +08:00
|
|
|
|
2018-05-21 11:13:46 +08:00
|
|
|
/* wait until ADDSEND bit is set */
|
|
|
|
while(!i2c_flag_get(i2c_periph, I2C_FLAG_ADDSEND));
|
2018-05-23 23:18:02 +08:00
|
|
|
|
2018-05-21 11:13:46 +08:00
|
|
|
/* clear the ADDSEND bit */
|
|
|
|
i2c_flag_clear(i2c_periph,I2C_FLAG_ADDSEND);
|
|
|
|
|
2018-05-23 23:18:02 +08:00
|
|
|
if(1 == data_byte){
|
|
|
|
/* disable acknowledge */
|
|
|
|
i2c_ack_config(i2c_periph,I2C_ACK_DISABLE);
|
|
|
|
/* send a stop condition to I2C bus */
|
|
|
|
i2c_stop_on_bus(i2c_periph);
|
|
|
|
}
|
|
|
|
|
2018-05-21 11:13:46 +08:00
|
|
|
/* while there is data to be read */
|
|
|
|
while(data_byte)
|
2018-05-23 23:18:02 +08:00
|
|
|
{
|
2018-05-21 11:13:46 +08:00
|
|
|
/* wait until the RBNE bit is set and clear it */
|
|
|
|
if(i2c_flag_get(i2c_periph, I2C_FLAG_RBNE))
|
|
|
|
{
|
|
|
|
/* read a byte from the EEPROM */
|
|
|
|
*p_buffer = i2c_data_receive(i2c_periph);
|
2018-05-23 23:18:02 +08:00
|
|
|
|
2018-05-21 11:13:46 +08:00
|
|
|
/* point to the next location where the byte read will be saved */
|
|
|
|
p_buffer++;
|
2018-05-23 23:18:02 +08:00
|
|
|
|
2018-05-21 11:13:46 +08:00
|
|
|
/* decrement the read bytes counter */
|
|
|
|
data_byte--;
|
2018-05-23 23:18:02 +08:00
|
|
|
if(1 == data_byte)
|
2018-05-21 11:13:46 +08:00
|
|
|
{
|
2018-05-23 23:18:02 +08:00
|
|
|
/* disable acknowledge */
|
|
|
|
i2c_ack_config(i2c_periph,I2C_ACK_DISABLE);
|
|
|
|
/* send a stop condition to I2C bus */
|
|
|
|
i2c_stop_on_bus(i2c_periph);
|
|
|
|
}
|
2018-05-21 11:13:46 +08:00
|
|
|
}
|
|
|
|
}
|
2018-05-23 23:18:02 +08:00
|
|
|
|
2018-05-21 11:13:46 +08:00
|
|
|
/* wait until the stop condition is finished */
|
|
|
|
while(I2C_CTL0(i2c_periph)&0x0200);
|
2018-05-23 23:18:02 +08:00
|
|
|
|
2018-05-21 11:13:46 +08:00
|
|
|
/* enable acknowledge */
|
|
|
|
i2c_ack_config(i2c_periph,I2C_ACK_ENABLE);
|
|
|
|
|
|
|
|
i2c_ackpos_config(i2c_periph,I2C_ACKPOS_CURRENT);
|
2018-05-23 23:18:02 +08:00
|
|
|
|
2018-05-21 11:13:46 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int gd32_i2c_write(rt_uint32_t i2c_periph, uint16_t slave_address, uint8_t* p_buffer, uint16_t data_byte)
|
2018-05-23 23:18:02 +08:00
|
|
|
{
|
2018-05-21 11:13:46 +08:00
|
|
|
/* wait until I2C bus is idle */
|
|
|
|
while(i2c_flag_get(i2c_periph, I2C_FLAG_I2CBSY));
|
2018-05-23 23:18:02 +08:00
|
|
|
|
2018-05-21 11:13:46 +08:00
|
|
|
/* send a start condition to I2C bus */
|
|
|
|
i2c_start_on_bus(i2c_periph);
|
2018-05-23 23:18:02 +08:00
|
|
|
|
2018-05-21 11:13:46 +08:00
|
|
|
/* wait until SBSEND bit is set */
|
|
|
|
while(!i2c_flag_get(i2c_periph, I2C_FLAG_SBSEND));
|
2018-05-23 23:18:02 +08:00
|
|
|
|
2018-05-21 11:13:46 +08:00
|
|
|
/* send slave address to I2C bus */
|
|
|
|
i2c_master_addressing(i2c_periph, slave_address<<1, I2C_TRANSMITTER);
|
2018-05-23 23:18:02 +08:00
|
|
|
|
2018-05-21 11:13:46 +08:00
|
|
|
/* wait until ADDSEND bit is set */
|
|
|
|
while(!i2c_flag_get(i2c_periph, I2C_FLAG_ADDSEND));
|
2018-05-23 23:18:02 +08:00
|
|
|
|
2018-05-21 11:13:46 +08:00
|
|
|
/* clear the ADDSEND bit */
|
|
|
|
i2c_flag_clear(i2c_periph,I2C_FLAG_ADDSEND);
|
2018-05-23 23:18:02 +08:00
|
|
|
|
2018-05-21 11:13:46 +08:00
|
|
|
/* wait until the transmit data buffer is empty */
|
|
|
|
while(SET != i2c_flag_get( i2c_periph , I2C_FLAG_TBE));
|
2018-05-23 23:18:02 +08:00
|
|
|
|
2018-05-21 11:13:46 +08:00
|
|
|
/* while there is data to be read */
|
|
|
|
while(data_byte)
|
2018-05-23 23:18:02 +08:00
|
|
|
{
|
2018-05-21 11:13:46 +08:00
|
|
|
i2c_data_transmit(i2c_periph, *p_buffer);
|
2018-05-23 23:18:02 +08:00
|
|
|
|
2018-05-21 11:13:46 +08:00
|
|
|
/* point to the next byte to be written */
|
|
|
|
p_buffer++;
|
2018-05-23 23:18:02 +08:00
|
|
|
|
|
|
|
/* decrement the write bytes counter */
|
|
|
|
data_byte --;
|
|
|
|
|
2018-05-21 11:13:46 +08:00
|
|
|
/* wait until BTC bit is set */
|
|
|
|
while(!i2c_flag_get(i2c_periph, I2C_FLAG_BTC));
|
|
|
|
}
|
|
|
|
|
2018-05-23 23:18:02 +08:00
|
|
|
/* send a stop condition to I2C bus */
|
2018-05-21 11:13:46 +08:00
|
|
|
i2c_stop_on_bus(i2c_periph);
|
2018-05-23 23:18:02 +08:00
|
|
|
|
2018-05-21 11:13:46 +08:00
|
|
|
/* wait until the stop condition is finished */
|
|
|
|
while(I2C_CTL0(i2c_periph)&0x0200);
|
2018-05-23 23:18:02 +08:00
|
|
|
|
2018-05-21 11:13:46 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static rt_size_t gd32_i2c_xfer(struct rt_i2c_bus_device *bus, struct rt_i2c_msg msgs[], rt_uint32_t num)
|
|
|
|
{
|
|
|
|
struct rt_i2c_msg *msg;
|
|
|
|
rt_uint32_t i;
|
|
|
|
rt_err_t ret = RT_ERROR;
|
|
|
|
|
|
|
|
struct gd32_i2c_bus *gd32_i2c = (struct gd32_i2c_bus *)bus;
|
|
|
|
|
|
|
|
for (i = 0; i < num; i++)
|
|
|
|
{
|
|
|
|
msg = &msgs[i];
|
|
|
|
|
2018-05-23 23:18:02 +08:00
|
|
|
if (msg->flags & RT_I2C_ADDR_10BIT)
|
|
|
|
{
|
|
|
|
i2c_mode_addr_config(gd32_i2c->i2c_periph,I2C_I2CMODE_ENABLE,I2C_ADDFORMAT_10BITS,0);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
i2c_mode_addr_config(gd32_i2c->i2c_periph,I2C_I2CMODE_ENABLE,I2C_ADDFORMAT_7BITS,0);
|
|
|
|
}
|
2018-05-21 11:13:46 +08:00
|
|
|
if (msg->flags & RT_I2C_RD)
|
|
|
|
{
|
|
|
|
if (gd32_i2c_read(gd32_i2c->i2c_periph, msg->addr, msg->buf, msg->len) != 0)
|
|
|
|
{
|
|
|
|
i2c_dbg("i2c bus write failed,i2c bus stop!\n");
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (gd32_i2c_write(gd32_i2c->i2c_periph, msg->addr, msg->buf, msg->len) != 0)
|
|
|
|
{
|
|
|
|
i2c_dbg("i2c bus write failed,i2c bus stop!\n");
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = i;
|
|
|
|
|
|
|
|
out:
|
|
|
|
i2c_dbg("send stop condition\n");
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct rt_i2c_bus_device_ops i2c_ops =
|
|
|
|
{
|
|
|
|
gd32_i2c_xfer,
|
|
|
|
RT_NULL,
|
2018-05-23 23:18:02 +08:00
|
|
|
RT_NULL
|
2018-05-21 11:13:46 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* RT_USING_I2C_BITOPS */
|
|
|
|
|
|
|
|
int rt_hw_i2c_init(void)
|
|
|
|
{
|
|
|
|
#ifdef RT_USING_I2C_BITOPS
|
2018-05-23 23:18:02 +08:00
|
|
|
{
|
|
|
|
static struct rt_i2c_bus_device i2c_device;
|
|
|
|
static const struct gd32_i2c_bit_data _i2c_bdata =
|
|
|
|
{
|
|
|
|
/* SCL */
|
|
|
|
{ I2C_SCL_CLK, I2C_SCL_PORT, I2C_SCL_PIN},
|
|
|
|
/* SDA */
|
|
|
|
{ I2C_SDA_CLK, I2C_SDA_PORT, I2C_SDA_PIN},
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct rt_i2c_bit_ops _i2c_bit_ops =
|
|
|
|
{
|
|
|
|
(void*)&_i2c_bdata,
|
|
|
|
gpio_set_sda,
|
|
|
|
gpio_set_scl,
|
|
|
|
gpio_get_sda,
|
|
|
|
gpio_get_scl,
|
|
|
|
gpio_udelay,
|
|
|
|
1,
|
|
|
|
100
|
|
|
|
};
|
|
|
|
|
|
|
|
drv_i2c_gpio_init(&_i2c_bdata);
|
|
|
|
|
|
|
|
i2c_device.priv = (void *)&_i2c_bit_ops;
|
|
|
|
rt_i2c_bit_add_bus(&i2c_device, I2C_BUS_NAME);
|
|
|
|
}
|
2018-05-21 11:13:46 +08:00
|
|
|
|
|
|
|
#else /* register hardware I2C */
|
|
|
|
|
|
|
|
#ifdef RT_USING_I2C0
|
|
|
|
#define I2C0_SPEED 100000
|
|
|
|
|
2018-05-23 23:18:02 +08:00
|
|
|
static struct gd32_i2c_bus gd32_i2c0;
|
|
|
|
/* enable GPIOB clock */
|
|
|
|
rcu_periph_clock_enable(RCU_GPIOB);
|
2018-05-21 11:13:46 +08:00
|
|
|
|
2018-05-23 23:18:02 +08:00
|
|
|
/* connect PB6 to I2C0_SCL, PB7 to I2C0_SDA */
|
|
|
|
gpio_init(GPIOB, GPIO_MODE_AF_OD, GPIO_OSPEED_50MHZ, GPIO_PIN_6 | GPIO_PIN_7);
|
2018-05-21 11:13:46 +08:00
|
|
|
|
2018-05-23 23:18:02 +08:00
|
|
|
/* enable I2C clock */
|
|
|
|
rcu_periph_clock_enable(RCU_I2C0);
|
|
|
|
/* configure I2C clock */
|
|
|
|
i2c_clock_config(I2C0,I2C0_SPEED,I2C_DTCY_2);
|
2018-05-21 11:13:46 +08:00
|
|
|
|
2018-05-23 23:18:02 +08:00
|
|
|
i2c_enable(I2C0);
|
|
|
|
/* enable acknowledge */
|
|
|
|
i2c_ack_config(I2C0,I2C_ACK_ENABLE);
|
2018-05-21 11:13:46 +08:00
|
|
|
|
2018-05-23 23:18:02 +08:00
|
|
|
rt_memset((void *)&gd32_i2c0, 0, sizeof(struct gd32_i2c_bus));
|
|
|
|
gd32_i2c0.parent.ops = &i2c_ops;
|
|
|
|
gd32_i2c0.i2c_periph = I2C0;
|
|
|
|
rt_i2c_bus_device_register(&gd32_i2c0.parent, "i2c0");
|
2018-05-21 11:13:46 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef RT_USING_I2C1
|
|
|
|
#define I2C1_SPEED 100000
|
|
|
|
|
2018-05-23 23:18:02 +08:00
|
|
|
static struct gd32_i2c_bus gd32_i2c1;
|
|
|
|
/* enable GPIOB clock */
|
|
|
|
rcu_periph_clock_enable(RCU_GPIOB);
|
2018-05-21 11:13:46 +08:00
|
|
|
|
2018-05-23 23:18:02 +08:00
|
|
|
/* connect PB10 to I2C1_SCL, PB11 to I2C1_SDA */
|
|
|
|
gpio_init(GPIOB, GPIO_MODE_AF_OD, GPIO_OSPEED_50MHZ, GPIO_PIN_10 | GPIO_PIN_11);
|
2018-05-21 11:13:46 +08:00
|
|
|
|
2018-05-23 23:18:02 +08:00
|
|
|
/* enable I2C clock */
|
|
|
|
rcu_periph_clock_enable(RCU_I2C1);
|
|
|
|
/* configure I2C clock */
|
|
|
|
i2c_clock_config(I2C1,I2C1_SPEED,I2C_DTCY_2);
|
2018-05-21 11:13:46 +08:00
|
|
|
|
2018-05-23 23:18:02 +08:00
|
|
|
i2c_enable(I2C1);
|
|
|
|
/* enable acknowledge */
|
|
|
|
i2c_ack_config(I2C1,I2C_ACK_ENABLE);
|
2018-05-21 11:13:46 +08:00
|
|
|
|
2018-05-23 23:18:02 +08:00
|
|
|
rt_memset((void *)&gd32_i2c1, 0, sizeof(struct gd32_i2c_bus));
|
|
|
|
gd32_i2c1.parent.ops = &i2c_ops;
|
|
|
|
gd32_i2c1.i2c_periph = I2C1;
|
|
|
|
rt_i2c_bus_device_register(&gd32_i2c1.parent, "i2c1");
|
2018-05-21 11:13:46 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* RT_USING_I2C_BITOPS */
|
|
|
|
|
2018-05-23 23:18:02 +08:00
|
|
|
return 0;
|
2018-05-21 11:13:46 +08:00
|
|
|
}
|
|
|
|
INIT_DEVICE_EXPORT(rt_hw_i2c_init);
|
|
|
|
|
|
|
|
#endif
|
|
|
|
/* end of i2c driver */
|