blob: 8e5f654eeadcb87105fd8d7a53da2811cbeb0dfc [file] [log] [blame]
/*
* Copyright 2014 Rockchip Electronics Co., Ltd.
*
* 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., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
*/
#include <assert.h>
#include <stdint.h>
#include "base/algorithm.h"
#include "base/container_of.h"
#include "base/io.h"
#include "base/time.h"
#include "base/xalloc.h"
#include "drivers/bus/i2c/i2c.h"
#include "drivers/bus/i2c/rockchip.h"
#define i2c_info(x...) do {if(0) printf(x); } while (0)
#define i2c_err(x...) printf(x)
#define I2C_TIMEOUT_US 100000
#define I2C_BUS_MAX 6
#define I2C_NOACK 2
#define I2C_TIMEOUT 3
typedef struct {
uint32_t i2c_con;
uint32_t i2c_clkdiv;
uint32_t i2c_mrxaddr;
uint32_t i2c_mrxraddr;
uint32_t i2c_mtxcnt;
uint32_t i2c_mrxcnt;
uint32_t i2c_ien;
uint32_t i2c_ipd;
uint32_t i2c_fcnt;
uint32_t reserved0[(0x100 - 0x24) / 4];
uint32_t txdata[8];
uint32_t reserved1[(0x200 - 0x120) / 4];
uint32_t rxdata[8];
} RkI2cReg;
/* Con register bits. */
#define I2C_ACT2NAK (1<<6)
#define I2C_NAK (1<<5)
#define I2C_STOP (1<<4)
#define I2C_START (1<<3)
#define I2C_MODE_TX (0<<1)
#define I2C_MODE_TRX (1<<1)
#define I2C_MODE_RX (2<<1)
#define I2C_EN (1<<0)
#define I2C_8BIT (1<<24)
#define I2C_16BIT (3<<24)
#define I2C_24BIT (7<<24)
/* Mtxcnt register bits. */
#define I2C_CNT(cnt) ((cnt) & 0x3F)
#define I2C_NAKRCVI (1<<6)
#define I2C_STOPI (1<<5)
#define I2C_STARTI (1<<4)
#define I2C_MBRFI (1<<3)
#define I2C_MBTFI (1<<2)
#define I2C_BRFI (1<<1)
#define I2C_BTFI (1<<0)
#define I2C_CLEANI 0x7F
static int i2c_send_start(RkI2cReg *reg_addr)
{
int res = 0;
int timeout = I2C_TIMEOUT_US;
i2c_info("I2c Start::Send Start bit\n");
write32(&reg_addr->i2c_ipd, I2C_CLEANI);
write32(&reg_addr->i2c_con, I2C_EN | I2C_START);
while (timeout--) {
if (read32(&reg_addr->i2c_ipd) & I2C_STARTI)
break;
udelay(1);
}
if (timeout <= 0) {
i2c_err("I2C Start::Send Start Bit Timeout\n");
res = I2C_TIMEOUT;
}
return res;
}
static int i2c_send_stop(RkI2cReg *reg_addr)
{
int res = 0;
int timeout = I2C_TIMEOUT_US;
i2c_info("I2c Stop::Send Stop bit\n");
write32(&reg_addr->i2c_ipd, I2C_CLEANI);
write32(&reg_addr->i2c_con, I2C_EN | I2C_STOP);
while (timeout--) {
if (read32(&reg_addr->i2c_ipd) & I2C_STOPI)
break;
udelay(1);
}
write32(&reg_addr->i2c_con, 0);
if (timeout <= 0) {
i2c_err("I2C Stop::Send Stop Bit Timeout\n");
res = I2C_TIMEOUT;
}
return res;
}
static int i2c_read(RkI2cReg *reg_addr, I2cSeg segment)
{
int res = 0;
uint8_t *data = segment.buf;
int timeout = I2C_TIMEOUT_US;
unsigned int bytes_remaining = segment.len;
unsigned int bytes_transfered = 0;
unsigned int words_transfered = 0;
unsigned int rxdata = 0;
unsigned int con = 0;
unsigned int i, j;
write32(&reg_addr->i2c_mrxaddr, I2C_8BIT | segment.chip << 1 | 1);
write32(&reg_addr->i2c_mrxraddr, 0);
con = I2C_MODE_TRX | I2C_EN | I2C_ACT2NAK;
while (bytes_remaining) {
bytes_transfered = MIN(bytes_remaining, 32);
bytes_remaining -= bytes_transfered;
if(!bytes_remaining)
con |= I2C_EN | I2C_NAK;
words_transfered = ALIGN_UP(bytes_transfered, 4) / 4;
write32(&reg_addr->i2c_ipd, I2C_CLEANI);
write32(&reg_addr->i2c_con, con);
write32(&reg_addr->i2c_mrxcnt, bytes_transfered);
timeout = I2C_TIMEOUT_US;
while (timeout--) {
if (read32(&reg_addr->i2c_ipd) & I2C_NAKRCVI) {
write32(&reg_addr->i2c_mrxcnt, 0);
write32(&reg_addr->i2c_con, 0);
return I2C_NOACK;
}
if (read32(&reg_addr->i2c_ipd) & I2C_MBRFI)
break;
udelay(1);
}
if (timeout <= 0) {
i2c_err("I2C Read::Recv Data Timeout\n");
write32(&reg_addr->i2c_mrxcnt, 0);
write32(&reg_addr->i2c_con, 0);
return I2C_TIMEOUT;
}
for (i = 0; i < words_transfered; i++) {
rxdata = read32(&reg_addr->rxdata[i]);
i2c_info("I2c Read::RXDATA[%d] = 0x%x\n", i, rxdata);
for (j = 0; j < 4; j++) {
if ((i * 4 + j) == bytes_transfered)
break;
*data++ = (rxdata >> (j * 8)) & 0xff;
}
}
con = I2C_MODE_RX | I2C_EN | I2C_ACT2NAK;
}
return res;
}
static int i2c_write(RkI2cReg *reg_addr, I2cSeg segment)
{
int res = 0;
uint8_t *data = segment.buf;
int timeout = I2C_TIMEOUT_US;
int bytes_remaining = segment.len + 1;
int bytes_transfered = 0;
int words_transfered = 0;
unsigned int i;
unsigned int j = 1;
uint32_t txdata = 0;
txdata |= (segment.chip << 1);
while (bytes_remaining) {
bytes_transfered = MIN(bytes_remaining, 32);
words_transfered = ALIGN_UP(bytes_transfered, 4) / 4;
for (i = 0; i < words_transfered; i++) {
do {
if ((i * 4 + j) == bytes_transfered)
break;
txdata |= (*data++) << (j * 8);
} while (++j < 4);
write32(&reg_addr->txdata[i], txdata);
j = 0;
i2c_info("I2c Write::TXDATA[%d] = 0x%x\n", i, txdata);
txdata = 0;
}
write32(&reg_addr->i2c_ipd, I2C_CLEANI);
write32(&reg_addr->i2c_con, I2C_EN | I2C_MODE_TX | I2C_ACT2NAK);
write32(&reg_addr->i2c_mtxcnt, bytes_transfered);
timeout = I2C_TIMEOUT_US;
while (timeout--) {
if (read32(&reg_addr->i2c_ipd) & I2C_NAKRCVI) {
write32(&reg_addr->i2c_mtxcnt, 0);
write32(&reg_addr->i2c_con, 0);
return I2C_NOACK;
}
if (read32(&reg_addr->i2c_ipd) & I2C_MBTFI)
break;
udelay(1);
}
if (timeout <= 0) {
i2c_err("I2C Write::Send Data Timeout\n");
write32(&reg_addr->i2c_mtxcnt, 0);
write32(&reg_addr->i2c_con, 0);
return I2C_TIMEOUT;
}
bytes_remaining -= bytes_transfered;
}
return res;
}
static int i2c_do_xfer(void *reg_addr, I2cSeg segment)
{
int res = 0;
if (i2c_send_start(reg_addr))
return I2C_TIMEOUT;
if (segment.read)
res = i2c_read(reg_addr, segment);
else
res = i2c_write(reg_addr, segment);
return i2c_send_stop(reg_addr) || res;
}
static int i2c_transfer(I2cOps *me, I2cSeg *segments, int seg_count)
{
RkI2c *bus = container_of(me, RkI2c, ops);
int res = 0;
int i;
I2cSeg *seg = segments;
for (i = 0; i < seg_count; i++, seg++) {
res = i2c_do_xfer(bus->reg_addr, *seg);
if (res)
break;
}
return res;
}
RkI2c *new_rockchip_i2c(uintptr_t *regs)
{
RkI2c *bus = xzalloc(sizeof(*bus));
bus->reg_addr = regs;
bus->ops.transfer = &i2c_transfer;
return bus;
}