blob: 859eb20da4f3bf8fa79335ba6eb8578508f4b9ab [file] [log] [blame]
/*
* Synopsys DesignWare I2C adapter driver (master only).
*
* Based on the TI DAVINCI I2C adapter driver.
*
* Copyright (C) 2006 Texas Instruments.
* Copyright (C) 2007 MontaVista Software Inc.
* Copyright (C) 2009 Provigent 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., 675 Mass Ave, Cambridge, MA 02139, USA.
* ----------------------------------------------------------------------------
*
*/
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/clk.h>
#include <linux/errno.h>
#include <linux/err.h>
#include <linux/i2c.h>
#include <linux/interrupt.h>
#include <linux/io.h>
#include <linux/pm_runtime.h>
#include <linux/nmi.h>
#include <linux/delay.h>
#include <linux/semaphore.h>
#include <linux/slab.h>
#include <linux/fs.h>
#include <linux/acpi.h>
#include "i2c-designware-core.h"
int i2c_dw_init(struct dw_i2c_dev *dev);
int i2c_dw_xfer(struct i2c_adapter *adap, struct i2c_msg msgs[], int num);
u32 i2c_dw_func(struct i2c_adapter *adap);
void i2c_dw_enable(struct dw_i2c_dev *dev);
void i2c_dw_disable(struct dw_i2c_dev *dev);
irqreturn_t i2c_dw_isr(int this_irq, void *dev_id);
void i2c_dw_disable_int(struct dw_i2c_dev *dev);
void i2c_dw_clear_int(struct dw_i2c_dev *dev);
static char *abort_sources[] = {
[ABRT_7B_ADDR_NOACK] =
"slave address not acknowledged (7bit mode)",
[ABRT_10ADDR1_NOACK] =
"first address byte not acknowledged (10bit mode)",
[ABRT_10ADDR2_NOACK] =
"second address byte not acknowledged (10bit mode)",
[ABRT_TXDATA_NOACK] =
"data not acknowledged",
[ABRT_GCALL_NOACK] =
"no acknowledgement for a general call",
[ABRT_GCALL_READ] =
"read after general call",
[ABRT_SBYTE_ACKDET] =
"start byte acknowledged",
[ABRT_SBYTE_NORSTRT] =
"trying to send start byte when restart is disabled",
[ABRT_10B_RD_NORSTRT] =
"trying to read when restart is disabled (10bit mode)",
[ABRT_MASTER_DIS] =
"trying to use disabled adapter",
[ARB_LOST] =
"lost arbitration",
};
u32 dw_readl(struct dw_i2c_dev *dev, int offset)
{
u32 value = readl(dev->base + offset);
if (dev->swab)
return swab32(value);
else
return value;
}
void dw_writel(struct dw_i2c_dev *dev, u32 b, int offset)
{
if (dev->swab)
b = swab32(b);
writel(b, dev->base + offset);
}
static void i2c_dw_dump(struct dw_i2c_dev *dev)
{
u32 value;
dev_err(dev->dev, "===== REGISTER DUMP (i2c) =====\n");
value = dw_readl(dev, DW_IC_CON);
dev_err(dev->dev, "DW_IC_CON: 0x%x\n", value);
value = dw_readl(dev, DW_IC_TAR);
dev_err(dev->dev, "DW_IC_TAR: 0x%x\n", value);
value = dw_readl(dev, DW_IC_SS_SCL_HCNT);
dev_err(dev->dev, "DW_IC_SS_SCL_HCNT: 0x%x\n", value);
value = dw_readl(dev, DW_IC_SS_SCL_LCNT);
dev_err(dev->dev, "DW_IC_SS_SCL_LCNT: 0x%x\n", value);
value = dw_readl(dev, DW_IC_FS_SCL_HCNT);
dev_err(dev->dev, "DW_IC_FS_SCL_HCNT: 0x%x\n", value);
value = dw_readl(dev, DW_IC_FS_SCL_LCNT);
dev_err(dev->dev, "DW_IC_FS_SCL_LCNT: 0x%x\n", value);
value = dw_readl(dev, DW_IC_INTR_STAT);
dev_err(dev->dev, "DW_IC_INTR_STAT: 0x%x\n", value);
value = dw_readl(dev, DW_IC_INTR_MASK);
dev_err(dev->dev, "DW_IC_INTR_MASK: 0x%x\n", value);
value = dw_readl(dev, DW_IC_RAW_INTR_STAT);
dev_err(dev->dev, "DW_IC_RAW_INTR_STAT: 0x%x\n", value);
value = dw_readl(dev, DW_IC_RX_TL);
dev_err(dev->dev, "DW_IC_RX_TL: 0x%x\n", value);
value = dw_readl(dev, DW_IC_TX_TL);
dev_err(dev->dev, "DW_IC_TX_TL: 0x%x\n", value);
value = dw_readl(dev, DW_IC_ENABLE);
dev_err(dev->dev, "DW_IC_ENABLE: 0x%x\n", value);
value = dw_readl(dev, DW_IC_STATUS);
dev_err(dev->dev, "DW_IC_STATUS: 0x%x\n", value);
value = dw_readl(dev, DW_IC_TXFLR);
dev_err(dev->dev, "DW_IC_TXFLR: 0x%x\n", value);
value = dw_readl(dev, DW_IC_RXFLR);
dev_err(dev->dev, "DW_IC_RXFLR: 0x%x\n", value);
value = dw_readl(dev, DW_IC_TX_ABRT_SOURCE);
dev_err(dev->dev, "DW_IC_TX_ABRT_SOURCE: 0x%x\n", value);
value = dw_readl(dev, DW_IC_DATA_CMD);
dev_err(dev->dev, "DW_IC_DATA_CMD: 0x%x\n", value);
dev_err(dev->dev, "===============================\n");
}
/* VLV2 PCI config space memio access to the controller is
* enabled by
* 1. Reset 0x804 and 0x808 offset from base address.
* 2. Set 0x804 offset from base address to 0x3.
*/
static void vlv2_reset(struct dw_i2c_dev *dev)
{
int i;
for (i = 0; i < 10; i++) {
dw_writel(dev, 0, 0x804);
dw_writel(dev, 0, 0x808);
usleep_range(10, 100);
dw_writel(dev, 3, 0x804);
usleep_range(10, 100);
if (dw_readl(dev, DW_IC_COMP_TYPE) != DW_IC_COMP_TYPE_VALUE)
continue;
return;
}
dev_warn(dev->dev, "vlv2 I2C reset failed\n");
}
static int mfld_i2c_scl_cfg(struct dw_i2c_dev *dev)
{
dw_writel(dev, PNW_SS_SCLK_HCNT, DW_IC_SS_SCL_HCNT);
dw_writel(dev, PNW_SS_SCLK_LCNT, DW_IC_SS_SCL_LCNT);
dw_writel(dev, PNW_FS_SCLK_HCNT, DW_IC_FS_SCL_HCNT);
dw_writel(dev, PNW_FS_SCLK_LCNT, DW_IC_FS_SCL_LCNT);
return 0;
}
static int ctp_i2c_scl_cfg(struct dw_i2c_dev *dev)
{
dw_writel(dev, CLV_SS_SCLK_HCNT, DW_IC_SS_SCL_HCNT);
dw_writel(dev, CLV_SS_SCLK_LCNT, DW_IC_SS_SCL_LCNT);
dw_writel(dev, CLV_FS_SCLK_HCNT, DW_IC_FS_SCL_HCNT);
dw_writel(dev, CLV_FS_SCLK_LCNT, DW_IC_FS_SCL_LCNT);
return 0;
}
static int merr_i2c_scl_cfg(struct dw_i2c_dev *dev)
{
dw_writel(dev, MERR_SS_SCLK_HCNT, DW_IC_SS_SCL_HCNT);
dw_writel(dev, MERR_SS_SCLK_LCNT, DW_IC_SS_SCL_LCNT);
dw_writel(dev, MERR_FS_SCLK_HCNT, DW_IC_FS_SCL_HCNT);
dw_writel(dev, MERR_FS_SCLK_LCNT, DW_IC_FS_SCL_LCNT);
dw_writel(dev, MERR_HS_SCLK_HCNT, DW_IC_HS_SCL_HCNT);
dw_writel(dev, MERR_HS_SCLK_LCNT, DW_IC_HS_SCL_LCNT);
return 0;
}
static int vlv2_i2c_scl_cfg(struct dw_i2c_dev *dev)
{
dw_writel(dev, VLV2_SS_SCLK_HCNT, DW_IC_SS_SCL_HCNT);
dw_writel(dev, VLV2_SS_SCLK_LCNT, DW_IC_SS_SCL_LCNT);
dw_writel(dev, VLV2_FS_SCLK_HCNT, DW_IC_FS_SCL_HCNT);
dw_writel(dev, VLV2_FS_SCLK_LCNT, DW_IC_FS_SCL_LCNT);
dw_writel(dev, VLV2_HS_SCLK_HCNT, DW_IC_HS_SCL_HCNT);
dw_writel(dev, VLV2_HS_SCLK_LCNT, DW_IC_HS_SCL_LCNT);
return 0;
}
static struct dw_controller dw_controllers[] = {
[moorestown_0] = {
.bus_num = 0,
.bus_cfg = INTEL_MID_STD_CFG | DW_IC_CON_SPEED_FAST,
.tx_fifo_depth = 32,
.rx_fifo_depth = 32,
.clk_khz = 25000,
},
[moorestown_1] = {
.bus_num = 1,
.bus_cfg = INTEL_MID_STD_CFG | DW_IC_CON_SPEED_FAST,
.tx_fifo_depth = 32,
.rx_fifo_depth = 32,
.clk_khz = 25000,
},
[moorestown_2] = {
.bus_num = 2,
.bus_cfg = INTEL_MID_STD_CFG | DW_IC_CON_SPEED_FAST,
.tx_fifo_depth = 32,
.rx_fifo_depth = 32,
.clk_khz = 25000,
},
[medfield_0] = {
.bus_num = 0,
.bus_cfg = INTEL_MID_STD_CFG | DW_IC_CON_SPEED_FAST,
.tx_fifo_depth = 256,
.rx_fifo_depth = 256,
.clk_khz = 17000,
.scl_cfg = mfld_i2c_scl_cfg,
},
[medfield_1] = {
.bus_num = 1,
.bus_cfg = INTEL_MID_STD_CFG | DW_IC_CON_SPEED_STD,
.tx_fifo_depth = 256,
.rx_fifo_depth = 256,
.clk_khz = 20500,
.scl_cfg = mfld_i2c_scl_cfg,
},
[medfield_2] = {
.bus_num = 2,
.bus_cfg = INTEL_MID_STD_CFG | DW_IC_CON_SPEED_FAST,
.tx_fifo_depth = 256,
.rx_fifo_depth = 256,
.clk_khz = 17000,
.scl_cfg = mfld_i2c_scl_cfg,
},
[medfield_3] = {
.bus_num = 3,
.bus_cfg = INTEL_MID_STD_CFG | DW_IC_CON_SPEED_STD,
.tx_fifo_depth = 256,
.rx_fifo_depth = 256,
.clk_khz = 20500,
.scl_cfg = mfld_i2c_scl_cfg,
},
[medfield_4] = {
.bus_num = 4,
.bus_cfg = INTEL_MID_STD_CFG | DW_IC_CON_SPEED_FAST,
.tx_fifo_depth = 256,
.rx_fifo_depth = 256,
.clk_khz = 17000,
.scl_cfg = mfld_i2c_scl_cfg,
},
[medfield_5] = {
.bus_num = 5,
.bus_cfg = INTEL_MID_STD_CFG | DW_IC_CON_SPEED_FAST,
.tx_fifo_depth = 256,
.rx_fifo_depth = 256,
.clk_khz = 17000,
.scl_cfg = mfld_i2c_scl_cfg,
},
[cloverview_0] = {
.bus_num = 0,
.bus_cfg = INTEL_MID_STD_CFG | DW_IC_CON_SPEED_FAST,
.tx_fifo_depth = 256,
.rx_fifo_depth = 256,
.clk_khz = 17000,
.scl_cfg = ctp_i2c_scl_cfg,
},
[cloverview_1] = {
.bus_num = 1,
.bus_cfg = INTEL_MID_STD_CFG | DW_IC_CON_SPEED_FAST,
.tx_fifo_depth = 256,
.rx_fifo_depth = 256,
.clk_khz = 17000,
.scl_cfg = ctp_i2c_scl_cfg,
},
[cloverview_2] = {
.bus_num = 2,
.bus_cfg = INTEL_MID_STD_CFG | DW_IC_CON_SPEED_FAST,
.tx_fifo_depth = 256,
.rx_fifo_depth = 256,
.clk_khz = 17000,
.scl_cfg = ctp_i2c_scl_cfg,
},
[cloverview_3] = {
.bus_num = 3,
.bus_cfg = INTEL_MID_STD_CFG | DW_IC_CON_SPEED_STD,
.tx_fifo_depth = 256,
.rx_fifo_depth = 256,
.clk_khz = 20500,
.scl_cfg = ctp_i2c_scl_cfg,
},
[cloverview_4] = {
.bus_num = 4,
.bus_cfg = INTEL_MID_STD_CFG | DW_IC_CON_SPEED_FAST,
.tx_fifo_depth = 256,
.rx_fifo_depth = 256,
.clk_khz = 17000,
.scl_cfg = ctp_i2c_scl_cfg,
},
[cloverview_5] = {
.bus_num = 5,
.bus_cfg = INTEL_MID_STD_CFG | DW_IC_CON_SPEED_FAST,
.tx_fifo_depth = 256,
.rx_fifo_depth = 256,
.clk_khz = 17000,
.scl_cfg = ctp_i2c_scl_cfg,
},
[merrifield_0] = {
.bus_num = 1,
.bus_cfg = INTEL_MID_STD_CFG | DW_IC_CON_SPEED_FAST,
.tx_fifo_depth = 64,
.rx_fifo_depth = 64,
.enable_stop = 1,
.scl_cfg = merr_i2c_scl_cfg,
},
[merrifield_1] = {
.bus_num = 2,
.bus_cfg = INTEL_MID_STD_CFG | DW_IC_CON_SPEED_STD,
.tx_fifo_depth = 64,
.rx_fifo_depth = 64,
.enable_stop = 1,
.scl_cfg = merr_i2c_scl_cfg,
},
[merrifield_2] = {
.bus_num = 3,
.bus_cfg = INTEL_MID_STD_CFG | DW_IC_CON_SPEED_FAST,
.tx_fifo_depth = 64,
.rx_fifo_depth = 64,
.enable_stop = 1,
.scl_cfg = merr_i2c_scl_cfg,
},
[merrifield_3] = {
.bus_num = 4,
.bus_cfg = INTEL_MID_STD_CFG | DW_IC_CON_SPEED_FAST,
.tx_fifo_depth = 64,
.rx_fifo_depth = 64,
.enable_stop = 1,
.scl_cfg = merr_i2c_scl_cfg,
},
[merrifield_4] = {
.bus_num = 5,
.bus_cfg = INTEL_MID_STD_CFG | DW_IC_CON_SPEED_FAST,
.tx_fifo_depth = 64,
.rx_fifo_depth = 64,
.enable_stop = 1,
.scl_cfg = merr_i2c_scl_cfg,
},
[merrifield_5] = {
.bus_num = 6,
.bus_cfg = INTEL_MID_STD_CFG | DW_IC_CON_SPEED_FAST,
.tx_fifo_depth = 64,
.rx_fifo_depth = 64,
.enable_stop = 1,
.scl_cfg = merr_i2c_scl_cfg,
},
[merrifield_6] = {
.bus_num = 7,
.bus_cfg = INTEL_MID_STD_CFG | DW_IC_CON_SPEED_FAST,
.tx_fifo_depth = 64,
.rx_fifo_depth = 64,
.enable_stop = 1,
.scl_cfg = merr_i2c_scl_cfg,
},
[valleyview_0] = {
.bus_num = 1,
.bus_cfg = INTEL_MID_STD_CFG | DW_IC_CON_SPEED_FAST,
.tx_fifo_depth = 64,
.rx_fifo_depth = 64,
.enable_stop = 1,
.scl_cfg = vlv2_i2c_scl_cfg,
.reset = vlv2_reset,
.share_irq = 1,
.acpi_name = "\\_SB.I2C1"
},
[valleyview_1] = {
.bus_num = 2,
.bus_cfg = INTEL_MID_STD_CFG | DW_IC_CON_SPEED_FAST,
.tx_fifo_depth = 64,
.rx_fifo_depth = 64,
.enable_stop = 1,
.scl_cfg = vlv2_i2c_scl_cfg,
.reset = vlv2_reset,
.share_irq = 1,
.acpi_name = "\\_SB.I2C2"
},
[valleyview_2] = {
.bus_num = 3,
.bus_cfg = INTEL_MID_STD_CFG | DW_IC_CON_SPEED_FAST,
.tx_fifo_depth = 64,
.rx_fifo_depth = 64,
.enable_stop = 1,
.scl_cfg = vlv2_i2c_scl_cfg,
.reset = vlv2_reset,
.share_irq = 1,
.acpi_name = "\\_SB.I2C3"
},
[valleyview_3] = {
.bus_num = 4,
.bus_cfg = INTEL_MID_STD_CFG | DW_IC_CON_SPEED_FAST,
.tx_fifo_depth = 64,
.rx_fifo_depth = 64,
.enable_stop = 1,
.scl_cfg = vlv2_i2c_scl_cfg,
.reset = vlv2_reset,
.share_irq = 1,
.acpi_name = "\\_SB.I2C4"
},
[valleyview_4] = {
.bus_num = 5,
.bus_cfg = INTEL_MID_STD_CFG | DW_IC_CON_SPEED_FAST,
.tx_fifo_depth = 64,
.rx_fifo_depth = 64,
.enable_stop = 1,
.scl_cfg = vlv2_i2c_scl_cfg,
.reset = vlv2_reset,
.share_irq = 1,
.acpi_name = "\\_SB.I2C5"
},
[valleyview_5] = {
.bus_num = 6,
.bus_cfg = INTEL_MID_STD_CFG | DW_IC_CON_SPEED_FAST,
.tx_fifo_depth = 64,
.rx_fifo_depth = 64,
.enable_stop = 1,
.scl_cfg = vlv2_i2c_scl_cfg,
.reset = vlv2_reset,
.share_irq = 1,
.acpi_name = "\\_SB.I2C6"
},
[valleyview_6] = {
.bus_num = 7,
.bus_cfg = INTEL_MID_STD_CFG | DW_IC_CON_SPEED_FAST,
.tx_fifo_depth = 64,
.rx_fifo_depth = 64,
.enable_stop = 1,
.scl_cfg = vlv2_i2c_scl_cfg,
.reset = vlv2_reset,
.share_irq = 1,
.acpi_name = "\\_SB.I2C7"
}
};
static struct i2c_algorithm i2c_dw_algo = {
.master_xfer = i2c_dw_xfer,
.functionality = i2c_dw_func,
};
int i2c_dw_suspend(struct dw_i2c_dev *dev, bool runtime)
{
if (runtime)
i2c_dw_disable(dev);
else {
if (down_trylock(&dev->lock))
return -EBUSY;
i2c_dw_disable(dev);
dev->status &= ~STATUS_POWERON;
}
return 0;
}
EXPORT_SYMBOL(i2c_dw_suspend);
int i2c_dw_resume(struct dw_i2c_dev *dev, bool runtime)
{
i2c_dw_init(dev);
if (!runtime) {
dev->status |= STATUS_POWERON;
up(&dev->lock);
}
return 0;
}
EXPORT_SYMBOL(i2c_dw_resume);
static u32 i2c_dw_get_clk_rate_khz(struct dw_i2c_dev *dev)
{
return dev->controller->clk_khz;
}
#ifdef CONFIG_I2C_DW_SPEED_MODE_DEBUG
static ssize_t show_bus_num(struct device *dev, struct device_attribute *attr,
char *buf)
{
struct dw_i2c_dev *i2c = dev_get_drvdata(dev);
return snprintf(buf, PAGE_SIZE, "%d\n", i2c->controller->bus_num);
}
#define MODE_NAME_SIZE 10
static ssize_t store_mode(struct device *dev,
struct device_attribute *attr,
const char *buf, size_t size)
{
struct dw_i2c_dev *i2c = dev_get_drvdata(dev);
int ret = 0;
char mode[MODE_NAME_SIZE];
if (sscanf(buf, "%9s", mode) != 1) {
dev_err(dev, "input I2C speed mode: std/fast\n");
return -EINVAL;
}
down(&i2c->lock);
pm_runtime_get_sync(i2c->dev);
if (!strncmp("std", mode, MODE_NAME_SIZE)) {
i2c->master_cfg &= ~DW_IC_SPEED_MASK;
i2c->master_cfg |= DW_IC_CON_SPEED_STD;
} else if (!strncmp("fast", mode, MODE_NAME_SIZE)) {
i2c->master_cfg &= ~DW_IC_SPEED_MASK;
i2c->master_cfg |= DW_IC_CON_SPEED_FAST;
} else if (!strncmp("high", mode, MODE_NAME_SIZE)) {
i2c->master_cfg &= ~DW_IC_SPEED_MASK;
i2c->master_cfg |= DW_IC_CON_SPEED_HIGH;
} else {
ret = -EINVAL;
goto out;
}
/* init to configure the i2c master */
i2c_dw_init(i2c);
dev_info(dev, "I2C speed mode changed to %s\n", mode);
out:
pm_runtime_mark_last_busy(i2c->dev);
pm_runtime_put_autosuspend(i2c->dev);
up(&i2c->lock);
return (ret < 0) ? ret : size;
}
static ssize_t show_mode(struct device *dev,
struct device_attribute *attr,
char *buf)
{
struct dw_i2c_dev *i2c = dev_get_drvdata(dev);
int ret;
switch (i2c->master_cfg & DW_IC_SPEED_MASK) {
case DW_IC_CON_SPEED_STD:
ret = snprintf(buf, PAGE_SIZE, "%s\n", "std");
break;
case DW_IC_CON_SPEED_FAST:
ret = snprintf(buf, PAGE_SIZE, "%s\n", "fast");
break;
case DW_IC_CON_SPEED_HIGH:
ret = snprintf(buf, PAGE_SIZE, "%s\n", "high");
break;
default:
ret = snprintf(buf, PAGE_SIZE, "%s\n", "Not Supported\n");
break;
}
return ret;
}
static DEVICE_ATTR(bus_num, S_IRUGO, show_bus_num, NULL);
static DEVICE_ATTR(mode, S_IRUGO | S_IWUSR, show_mode, store_mode);
static struct attribute *i2c_dw_attrs[] = {
&dev_attr_bus_num.attr,
&dev_attr_mode.attr,
NULL,
};
static struct attribute_group i2c_dw_attr_group = {
.name = "i2c_dw_sysnode",
.attrs = i2c_dw_attrs,
};
#endif
static ssize_t store_lock_xfer(struct device *dev,
struct device_attribute *attr,
const char *buf, size_t size)
{
struct dw_i2c_dev *i2c = dev_get_drvdata(dev->parent);
ssize_t status = -EINVAL;
long lock;
status = kstrtol(buf, 0, &lock);
if (status == 0) {
if (lock && !i2c->lock_flag) {
down(&i2c->lock);
pm_runtime_get_sync(i2c->dev);
i2c->lock_flag = 1;
dev_info(dev, "lock i2c xfer\n");
} else if (!lock && i2c->lock_flag) {
pm_runtime_mark_last_busy(i2c->dev);
pm_runtime_put_autosuspend(i2c->dev);
i2c->lock_flag = 0;
up(&i2c->lock);
dev_info(dev, "unlock i2c xfer\n");
} else
return -EINVAL;
}
return status ? : size;
}
static DEVICE_ATTR(lock_xfer, S_IWUSR, NULL, store_lock_xfer);
struct dw_i2c_dev *i2c_dw_setup(struct device *pdev, int bus_idx,
unsigned long start, unsigned long len, int irq)
{
struct dw_i2c_dev *dev;
struct i2c_adapter *adap;
void __iomem *base;
struct dw_controller *controller;
int r;
if (bus_idx >= ARRAY_SIZE(dw_controllers)) {
dev_err(pdev, "invalid bus index %d\n",
bus_idx);
r = -EINVAL;
goto exit;
}
controller = &dw_controllers[bus_idx];
base = ioremap_nocache(start, len);
if (!base) {
dev_err(pdev, "I/O memory remapping failed\n");
r = -ENOMEM;
goto exit;
}
dev = kzalloc(sizeof(struct dw_i2c_dev), GFP_KERNEL);
if (!dev) {
r = -ENOMEM;
goto err_iounmap;
}
init_completion(&dev->cmd_complete);
sema_init(&dev->lock, 1);
dev->status = STATUS_IDLE;
dev->clk = NULL;
dev->controller = controller;
dev->get_clk_rate_khz = i2c_dw_get_clk_rate_khz;
dev->base = base;
dev->dev = get_device(pdev);
dev->functionality =
I2C_FUNC_I2C |
I2C_FUNC_SMBUS_BYTE |
I2C_FUNC_SMBUS_BYTE_DATA |
I2C_FUNC_SMBUS_WORD_DATA |
I2C_FUNC_SMBUS_I2C_BLOCK;
dev->master_cfg = controller->bus_cfg;
dev->get_scl_cfg = controller->scl_cfg;
dev->enable_stop = controller->enable_stop;
dev->clk_khz = controller->clk_khz;
dev->speed_cfg = dev->master_cfg & DW_IC_SPEED_MASK;
dev->use_dyn_clk = 0;
dev->reset = controller->reset;
dev->irq = irq;
dev->share_irq = controller->share_irq;
dev->abort = intel_mid_dw_i2c_abort;
dev->tx_fifo_depth = controller->tx_fifo_depth;
dev->rx_fifo_depth = controller->rx_fifo_depth;
r = i2c_dw_init(dev);
if (r)
goto err_kfree;
adap = &dev->adapter;
i2c_set_adapdata(adap, dev);
adap->owner = THIS_MODULE;
adap->class = 0;
adap->algo = &i2c_dw_algo;
adap->dev.parent = pdev;
adap->nr = controller->bus_num;
snprintf(adap->name, sizeof(adap->name), "i2c-designware-%d",
adap->nr);
r = request_irq(irq, i2c_dw_isr, IRQF_SHARED, adap->name, dev);
if (r) {
dev_err(pdev, "failure requesting irq %i\n", irq);
goto err_kfree;
}
i2c_dw_disable_int(dev);
i2c_dw_clear_int(dev);
r = i2c_add_numbered_adapter(adap);
if (r) {
dev_err(pdev, "failure adding adapter\n");
goto err_free_irq;
}
#ifdef CONFIG_I2C_DW_SPEED_MODE_DEBUG
r = sysfs_create_group(&pdev->kobj, &i2c_dw_attr_group);
if (r) {
dev_err(pdev,
"Unable to export sysfs interface, error: %d\n", r);
goto err_del_adap;
}
#endif
r = device_create_file(&adap->dev, &dev_attr_lock_xfer);
if (r < 0)
dev_err(&adap->dev,
"Failed to add lock_xfer sysfs files: %d\n", r);
return dev;
#ifdef CONFIG_I2C_DW_SPEED_MODE_DEBUG
err_del_adap:
i2c_del_adapter(&dev->adapter);
#endif
err_free_irq:
free_irq(irq, dev);
err_kfree:
put_device(pdev);
kfree(dev);
err_iounmap:
iounmap(base);
exit:
return ERR_PTR(r);
}
EXPORT_SYMBOL(i2c_dw_setup);
#ifdef CONFIG_ACPI
static int acpi_i2c_get_freq(struct acpi_resource *ares,
void *data)
{
struct dw_i2c_dev *i2c = data;
if (ares->type == ACPI_RESOURCE_TYPE_SERIAL_BUS) {
struct acpi_resource_i2c_serialbus *sb;
sb = &ares->data.i2c_serial_bus;
if (sb->type == ACPI_RESOURCE_SERIAL_TYPE_I2C) {
i2c->freq = sb->connection_speed;
if (i2c->freq == DW_STD_SPEED) {
i2c->master_cfg &= ~DW_IC_SPEED_MASK;
i2c->master_cfg |= DW_IC_CON_SPEED_STD;
} else if (i2c->freq == DW_FAST_SPEED) {
i2c->master_cfg &= ~DW_IC_SPEED_MASK;
i2c->master_cfg |= DW_IC_CON_SPEED_FAST;
} else if (i2c->freq == DW_HIGH_SPEED) {
i2c->master_cfg &= ~DW_IC_SPEED_MASK;
i2c->master_cfg |= DW_IC_CON_SPEED_HIGH;
}
down(&i2c->lock);
i2c_dw_init(i2c);
up(&i2c->lock);
}
}
return 1;
}
static acpi_status acpi_i2c_find_device_speed(acpi_handle handle, u32 level,
void *data, void **return_value)
{
struct dw_i2c_dev *i2c = data;
struct list_head resource_list;
struct acpi_device *adev;
acpi_status status;
unsigned long long sta = 0;
int ret;
if (acpi_bus_get_device(handle, &adev))
return AE_OK;
if (acpi_bus_get_status(adev) || !adev->status.present)
return AE_OK;
INIT_LIST_HEAD(&resource_list);
ret = acpi_dev_get_resources(adev, &resource_list,
acpi_i2c_get_freq, i2c);
acpi_dev_free_resource_list(&resource_list);
if (ret < 0)
return AE_OK;
pr_debug("i2c device: %s, freq: %dkHz\n",
dev_name(&adev->dev), i2c->freq/1000);
return AE_OK;
}
void i2c_acpi_devices_setup(struct device *pdev, struct dw_i2c_dev *dev)
{
acpi_handle pdev_handle = ACPI_HANDLE(pdev);
acpi_handle handle = NULL;
acpi_status status;
if (pdev_handle) {
handle = pdev_handle;
} else if (dev->controller->acpi_name) {
acpi_get_handle(NULL,
dev->controller->acpi_name, &handle);
ACPI_HANDLE_SET(pdev, handle);
}
if (handle == NULL)
return;
acpi_i2c_register_devices(&dev->adapter);
/* Find I2C adapter bus frequency */
status = acpi_walk_namespace(ACPI_TYPE_DEVICE, handle, 1,
acpi_i2c_find_device_speed, NULL,
dev, NULL);
if (ACPI_FAILURE(status))
dev_warn(pdev, "failed to get I2C bus freq\n");
/* Set the handle back to its raw value */
ACPI_HANDLE_SET(pdev, pdev_handle);
}
#else
void i2c_acpi_devices_setup(struct device *pdev, struct dw_i2c_dev *dev) { }
#endif
EXPORT_SYMBOL(i2c_acpi_devices_setup);
void i2c_dw_free(struct device *pdev, struct dw_i2c_dev *dev)
{
struct i2c_adapter *adap = &dev->adapter;
i2c_dw_disable(dev);
device_remove_file(&adap->dev, &dev_attr_lock_xfer);
#ifdef CONFIG_I2C_DW_SPEED_MODE_DEBUG
sysfs_remove_group(&pdev->kobj, &i2c_dw_attr_group);
#endif
i2c_del_adapter(&dev->adapter);
put_device(pdev);
free_irq(dev->irq, dev);
kfree(dev);
}
EXPORT_SYMBOL(i2c_dw_free);
static u32
i2c_dw_scl_hcnt(u32 ic_clk, u32 tSYMBOL, u32 tf, int cond, int offset)
{
/*
* DesignWare I2C core doesn't seem to have solid strategy to meet
* the tHD;STA timing spec. Configuring _HCNT based on tHIGH spec
* will result in violation of the tHD;STA spec.
*/
if (cond)
/*
* Conditional expression:
*
* IC_[FS]S_SCL_HCNT + (1+4+3) >= IC_CLK * tHIGH
*
* This is based on the DW manuals, and represents an ideal
* configuration. The resulting I2C bus speed will be
* faster than any of the others.
*
* If your hardware is free from tHD;STA issue, try this one.
*/
return (ic_clk * tSYMBOL + 5000) / 10000 - 8 + offset;
else
/*
* Conditional expression:
*
* IC_[FS]S_SCL_HCNT + 3 >= IC_CLK * (tHD;STA + tf)
*
* This is just experimental rule; the tHD;STA period turned
* out to be proportinal to (_HCNT + 3). With this setting,
* we could meet both tHIGH and tHD;STA timing specs.
*
* If unsure, you'd better to take this alternative.
*
* The reason why we need to take into account "tf" here,
* is the same as described in i2c_dw_scl_lcnt().
*/
return (ic_clk * (tSYMBOL + tf) + 5000) / 10000 - 3 + offset;
}
static u32 i2c_dw_scl_lcnt(u32 ic_clk, u32 tLOW, u32 tf, int offset)
{
/*
* Conditional expression:
*
* IC_[FS]S_SCL_LCNT + 1 >= IC_CLK * (tLOW + tf)
*
* DW I2C core starts counting the SCL CNTs for the LOW period
* of the SCL clock (tLOW) as soon as it pulls the SCL line.
* In order to meet the tLOW timing spec, we need to take into
* account the fall time of SCL signal (tf). Default tf value
* should be 0.3 us, for safety.
*/
return ((ic_clk * (tLOW + tf) + 5000) / 10000) - 1 + offset;
}
/**
* i2c_dw_init() - initialize the designware i2c master hardware
* @dev: device private data
*
* This functions configures and enables the I2C master.
* This function is called during I2C init function, and in case of timeout at
* run time.
*/
int i2c_dw_init(struct dw_i2c_dev *dev)
{
u32 input_clock_khz;
u32 hcnt, lcnt;
u32 reg;
if (dev->reset)
dev->reset(dev);
input_clock_khz = dev->get_clk_rate_khz(dev);
/* Configure register endianess access */
reg = dw_readl(dev, DW_IC_COMP_TYPE);
if (reg == ___constant_swab32(DW_IC_COMP_TYPE_VALUE)) {
dev->swab = 1;
reg = DW_IC_COMP_TYPE_VALUE;
}
if (reg != DW_IC_COMP_TYPE_VALUE) {
dev_err(dev->dev, "Unknown Synopsys component type: "
"0x%08x\n", reg);
return -ENODEV;
}
/* Disable the adapter */
i2c_dw_disable(dev);
if (dev->get_scl_cfg)
dev->get_scl_cfg(dev);
else {
/* set standard and fast speed deviders for high/low periods */
/* Standard-mode */
hcnt = i2c_dw_scl_hcnt(input_clock_khz,
227, /* tHD;STA = tHIGH = 22.7 us */
3, /* tf = 0.3 us */
0, /* 0: DW default, 1: Ideal */
23); /* offset = 23 */
lcnt = i2c_dw_scl_lcnt(input_clock_khz,
227, /* tLOW = 22.7 us */
3, /* tf = 0.3 us */
28); /* offset = 28 */
dw_writel(dev, hcnt, DW_IC_SS_SCL_HCNT);
dw_writel(dev, lcnt, DW_IC_SS_SCL_LCNT);
dev_dbg(dev->dev, "Standard-mode HCNT:LCNT = %d:%d\n",
hcnt, lcnt);
/* Fast-mode */
hcnt = i2c_dw_scl_hcnt(input_clock_khz,
52, /* tHD;STA = tHIGH = 5.2 us */
3, /* tf = 0.3 us */
0, /* 0: DW default, 1: Ideal */
11); /* offset = 11 */
lcnt = i2c_dw_scl_lcnt(input_clock_khz,
72, /* tLOW = 7.2 us */
3, /* tf = 0.3 us */
12); /* offset = 12 */
dw_writel(dev, hcnt, DW_IC_FS_SCL_HCNT);
dw_writel(dev, lcnt, DW_IC_FS_SCL_LCNT);
dev_dbg(dev->dev, "Fast-mode HCNT:LCNT = %d:%d\n", hcnt, lcnt);
}
/* Configure Tx/Rx FIFO threshold levels */
dw_writel(dev, dev->tx_fifo_depth/2, DW_IC_TX_TL);
dw_writel(dev, dev->rx_fifo_depth/2, DW_IC_RX_TL);
/* configure the i2c master */
dw_writel(dev, dev->master_cfg , DW_IC_CON);
return 0;
}
EXPORT_SYMBOL(i2c_dw_init);
/*
* Waiting for bus not busy
*/
static int i2c_dw_wait_bus_not_busy(struct dw_i2c_dev *dev)
{
int timeout = TIMEOUT;
while (dw_readl(dev, DW_IC_STATUS) & DW_IC_STATUS_ACTIVITY) {
if (timeout <= 0) {
dev_warn(dev->dev, "timeout waiting for bus ready\n");
return -ETIMEDOUT;
}
timeout--;
mdelay(1);
}
return 0;
}
static void i2c_dw_xfer_init(struct dw_i2c_dev *dev)
{
struct i2c_msg *msgs = dev->msgs;
u32 ic_con;
/* Disable the adapter */
i2c_dw_disable(dev);
/* set the slave (target) address */
dw_writel(dev, msgs[dev->msg_write_idx].addr, DW_IC_TAR);
/* if the slave address is ten bit address, enable 10BITADDR */
ic_con = dw_readl(dev, DW_IC_CON);
if (msgs[dev->msg_write_idx].flags & I2C_M_TEN)
ic_con |= DW_IC_CON_10BITADDR_MASTER;
else
ic_con &= ~DW_IC_CON_10BITADDR_MASTER;
dw_writel(dev, ic_con, DW_IC_CON);
/* enforce disabled interrupts (due to HW issues) */
i2c_dw_disable_int(dev);
/* Enable the adapter */
i2c_dw_enable(dev);
/* Clear and enable interrupts */
i2c_dw_clear_int(dev);
dw_writel(dev, DW_IC_INTR_DEFAULT_MASK, DW_IC_INTR_MASK);
}
/*
* Initiate (and continue) low level master read/write transaction.
* This function is only called from i2c_dw_isr, and pumping i2c_msg
* messages into the tx buffer. Even if the size of i2c_msg data is
* longer than the size of the tx buffer, it handles everything.
*/
void
i2c_dw_xfer_msg(struct dw_i2c_dev *dev)
{
struct i2c_msg *msgs = dev->msgs;
u32 intr_mask;
int tx_limit, rx_limit;
int cmd;
u32 addr = msgs[dev->msg_write_idx].addr;
u32 buf_len = dev->tx_buf_len;
u8 *buf = dev->tx_buf;
unsigned long flags;
intr_mask = DW_IC_INTR_DEFAULT_MASK;
raw_local_irq_save(flags);
/* if fifo only has one byte, it is not safe */
if (!dev->enable_stop && (dev->status & STATUS_WRITE_IN_PROGRESS) &&
(dw_readl(dev, DW_IC_TXFLR) < 1)) {
dev_err(dev->dev, "TX FIFO underrun, addr: 0x%x.\n", addr);
dev->msg_err = -EAGAIN;
}
for (; dev->msg_write_idx < dev->msgs_num; dev->msg_write_idx++) {
if (dev->msg_err)
break;
/*
* if target address has changed, we need to
* reprogram the target address in the i2c
* adapter when we are done with this transfer
*/
if (msgs[dev->msg_write_idx].addr != addr) {
dev_err(dev->dev,
"%s: invalid target address\n", __func__);
dev->msg_err = -EINVAL;
break;
}
if (msgs[dev->msg_write_idx].len == 0) {
dev_err(dev->dev,
"%s: invalid message length\n", __func__);
dev->msg_err = -EINVAL;
break;
}
if (!(dev->status & STATUS_WRITE_IN_PROGRESS)) {
/* new i2c_msg */
buf = msgs[dev->msg_write_idx].buf;
buf_len = msgs[dev->msg_write_idx].len;
}
tx_limit = dev->tx_fifo_depth - dw_readl(dev, DW_IC_TXFLR);
rx_limit = dev->rx_fifo_depth - dw_readl(dev, DW_IC_RXFLR);
while (buf_len > 0 && tx_limit > 0 && rx_limit > 0) {
cmd = (dev->enable_stop && buf_len == 1
&& dev->msg_write_idx == dev->msgs_num - 1) ?
DW_IC_CMD_STOP : 0;
if (msgs[dev->msg_write_idx].flags & I2C_M_RD) {
dw_writel(dev, cmd | 0x100, DW_IC_DATA_CMD);
rx_limit--;
} else
dw_writel(dev, cmd | *buf++, DW_IC_DATA_CMD);
tx_limit--; buf_len--;
}
dev->tx_buf = buf;
dev->tx_buf_len = buf_len;
if (buf_len > 0) {
/* more bytes to be written */
dev->status |= STATUS_WRITE_IN_PROGRESS;
break;
} else
dev->status &= ~STATUS_WRITE_IN_PROGRESS;
}
raw_local_irq_restore(flags);
/*
* If i2c_msg index search is completed, we don't need TX_EMPTY
* interrupt any more.
*/
if (dev->msg_write_idx == dev->msgs_num)
intr_mask &= ~DW_IC_INTR_TX_EMPTY;
if (dev->msg_err)
intr_mask = 0;
dw_writel(dev, intr_mask, DW_IC_INTR_MASK);
}
static void
i2c_dw_read(struct dw_i2c_dev *dev)
{
struct i2c_msg *msgs = dev->msgs;
int rx_valid;
for (; dev->msg_read_idx < dev->msgs_num; dev->msg_read_idx++) {
u32 len;
u8 *buf;
if (!(msgs[dev->msg_read_idx].flags & I2C_M_RD))
continue;
if (!(dev->status & STATUS_READ_IN_PROGRESS)) {
len = msgs[dev->msg_read_idx].len;
buf = msgs[dev->msg_read_idx].buf;
} else {
len = dev->rx_buf_len;
buf = dev->rx_buf;
}
rx_valid = dw_readl(dev, DW_IC_RXFLR);
for (; len > 0 && rx_valid > 0; len--, rx_valid--)
*buf++ = dw_readl(dev, DW_IC_DATA_CMD);
if (len > 0) {
dev->status |= STATUS_READ_IN_PROGRESS;
dev->rx_buf_len = len;
dev->rx_buf = buf;
return;
} else
dev->status &= ~STATUS_READ_IN_PROGRESS;
}
}
static int i2c_dw_handle_tx_abort(struct dw_i2c_dev *dev)
{
unsigned long abort_source = dev->abort_source;
int i;
if (abort_source & DW_IC_TX_ABRT_NOACK) {
for_each_set_bit(i, &abort_source, ARRAY_SIZE(abort_sources))
dev_dbg(dev->dev,
"%s: %s\n", __func__, abort_sources[i]);
return -EREMOTEIO;
}
for_each_set_bit(i, &abort_source, ARRAY_SIZE(abort_sources))
dev_err(dev->dev, "%s: %s\n", __func__, abort_sources[i]);
if (abort_source & DW_IC_TX_ARB_LOST)
return -EAGAIN;
else if (abort_source & DW_IC_TX_ABRT_GCALL_READ)
return -EINVAL; /* wrong msgs[] data */
else
return -EIO;
}
/*
* Prepare controller for a transaction and call i2c_dw_xfer_msg
*/
int
i2c_dw_xfer(struct i2c_adapter *adap, struct i2c_msg msgs[], int num)
{
struct dw_i2c_dev *dev = i2c_get_adapdata(adap);
int ret;
unsigned long timeout;
dev_dbg(dev->dev, "%s: msgs: %d\n", __func__, num);
down(&dev->lock);
pm_runtime_get_sync(dev->dev);
INIT_COMPLETION(dev->cmd_complete);
dev->msgs = msgs;
dev->msgs_num = num;
dev->cmd_err = 0;
dev->msg_write_idx = 0;
dev->msg_read_idx = 0;
dev->msg_err = 0;
dev->status = STATUS_IDLE;
dev->abort_source = 0;
ret = i2c_dw_wait_bus_not_busy(dev);
if (ret < 0)
goto done;
/* start the transfers */
i2c_dw_xfer_init(dev);
/* wait for tx to complete */
timeout = wait_for_completion_timeout(&dev->cmd_complete, 3*HZ);
if (timeout == 0) {
dev_WARN(dev->dev, "controller timed out\n");
i2c_dw_dump(dev);
trigger_all_cpu_backtrace();
if (dev->abort)
dev->abort(adap->nr);
i2c_dw_init(dev);
ret = -ETIMEDOUT;
goto done;
}
if (dev->msg_err) {
ret = dev->msg_err;
goto done;
}
/* no error */
if (likely(!dev->cmd_err)) {
/* Disable the adapter */
i2c_dw_disable(dev);
ret = num;
goto done;
}
/* We have an error */
if (dev->cmd_err == DW_IC_ERR_TX_ABRT) {
ret = i2c_dw_handle_tx_abort(dev);
goto done;
}
ret = -EIO;
done:
pm_runtime_mark_last_busy(dev->dev);
pm_runtime_put_autosuspend(dev->dev);
up(&dev->lock);
return ret;
}
u32 i2c_dw_func(struct i2c_adapter *adap)
{
struct dw_i2c_dev *dev = i2c_get_adapdata(adap);
return dev->functionality;
}
static u32 i2c_dw_read_clear_intrbits(struct dw_i2c_dev *dev)
{
u32 stat;
/*
* The IC_INTR_STAT register just indicates "enabled" interrupts.
* Ths unmasked raw version of interrupt status bits are available
* in the IC_RAW_INTR_STAT register.
*
* That is,
* stat = dw_readl(IC_INTR_STAT);
* equals to,
* stat = dw_readl(IC_RAW_INTR_STAT) & dw_readl(IC_INTR_MASK);
*
* The raw version might be useful for debugging purposes.
*/
stat = dw_readl(dev, DW_IC_INTR_STAT);
/*
* Do not use the IC_CLR_INTR register to clear interrupts, or
* you'll miss some interrupts, triggered during the period from
* dw_readl(IC_INTR_STAT) to dw_readl(IC_CLR_INTR).
*
* Instead, use the separately-prepared IC_CLR_* registers.
*/
if (stat & DW_IC_INTR_RX_UNDER)
dw_readl(dev, DW_IC_CLR_RX_UNDER);
if (stat & DW_IC_INTR_RX_OVER)
dw_readl(dev, DW_IC_CLR_RX_OVER);
if (stat & DW_IC_INTR_TX_OVER)
dw_readl(dev, DW_IC_CLR_TX_OVER);
if (stat & DW_IC_INTR_RD_REQ)
dw_readl(dev, DW_IC_CLR_RD_REQ);
if (stat & DW_IC_INTR_TX_ABRT) {
/*
* The IC_TX_ABRT_SOURCE register is cleared whenever
* the IC_CLR_TX_ABRT is read. Preserve it beforehand.
*/
dev->abort_source = dw_readl(dev, DW_IC_TX_ABRT_SOURCE);
dw_readl(dev, DW_IC_CLR_TX_ABRT);
}
if (stat & DW_IC_INTR_RX_DONE)
dw_readl(dev, DW_IC_CLR_RX_DONE);
if (stat & DW_IC_INTR_ACTIVITY)
dw_readl(dev, DW_IC_CLR_ACTIVITY);
if (stat & DW_IC_INTR_STOP_DET)
dw_readl(dev, DW_IC_CLR_STOP_DET);
if (stat & DW_IC_INTR_START_DET)
dw_readl(dev, DW_IC_CLR_START_DET);
if (stat & DW_IC_INTR_GEN_CALL)
dw_readl(dev, DW_IC_CLR_GEN_CALL);
return stat;
}
/*
* Interrupt service routine. This gets called whenever an I2C interrupt
* occurs.
*/
irqreturn_t i2c_dw_isr(int this_irq, void *dev_id)
{
struct dw_i2c_dev *dev = dev_id;
u32 stat, enabled;
pm_runtime_get(dev->dev);
#ifdef CONFIG_PM_RUNTIME
if (!pm_runtime_active(dev->dev)) {
pm_runtime_put_autosuspend(dev->dev);
if (dev->share_irq)
return IRQ_NONE;
else
return IRQ_HANDLED;
}
#endif
enabled = dw_readl(dev, DW_IC_ENABLE);
stat = dw_readl(dev, DW_IC_RAW_INTR_STAT);
dev_dbg(dev->dev, "%s: %s enabled= 0x%x stat=0x%x\n", __func__,
dev->adapter.name, enabled, stat);
if (!enabled || !(stat & ~DW_IC_INTR_ACTIVITY)) {
pm_runtime_put_autosuspend(dev->dev);
if (dev->share_irq)
return IRQ_NONE;
else
return IRQ_HANDLED;
}
stat = i2c_dw_read_clear_intrbits(dev);
if (stat & DW_IC_INTR_RX_OVER)
dev_warn(dev->dev, "RX fifo overrun\n");
if (stat & DW_IC_INTR_TX_ABRT) {
dev->cmd_err |= DW_IC_ERR_TX_ABRT;
dev->status = STATUS_IDLE;
/*
* Anytime TX_ABRT is set, the contents of the tx/rx
* buffers are flushed. Make sure to skip them.
*/
dw_writel(dev, 0, DW_IC_INTR_MASK);
goto tx_aborted;
}
if (stat & DW_IC_INTR_RX_FULL)
i2c_dw_read(dev);
if (stat & DW_IC_INTR_TX_EMPTY)
i2c_dw_xfer_msg(dev);
/*
* No need to modify or disable the interrupt mask here.
* i2c_dw_xfer_msg() will take care of it according to
* the current transmit status.
*/
tx_aborted:
if ((stat & (DW_IC_INTR_TX_ABRT | DW_IC_INTR_STOP_DET))
|| dev->msg_err) {
/*
* Check DW_IC_RXFLR register,
* read from the RX FIFO if it's not empty.
*/
if ((stat & DW_IC_INTR_STOP_DET) &&
dw_readl(dev, DW_IC_RXFLR) > 0)
i2c_dw_read(dev);
complete(&dev->cmd_complete);
}
pm_runtime_put_autosuspend(dev->dev);
return IRQ_HANDLED;
}
u32 i2c_dw_is_enabled(struct dw_i2c_dev *dev)
{
return dw_readl(dev, DW_IC_ENABLE_STATUS);
}
static void __i2c_dw_enable(struct dw_i2c_dev *dev, bool enable)
{
int timeout = 100;
do {
dw_writel(dev, enable, DW_IC_ENABLE);
if (i2c_dw_is_enabled(dev) == enable)
return;
usleep_range(25, 250);
} while (timeout-- > 0);
dev_warn(dev->dev, "timeout in %sabling adapter\n",
enable ? "en" : "dis");
}
void i2c_dw_enable(struct dw_i2c_dev *dev)
{
/* Enable the adapter */
__i2c_dw_enable(dev, true);
}
void i2c_dw_disable(struct dw_i2c_dev *dev)
{
/* Disable controller */
__i2c_dw_enable(dev, false);
/* Disable all interupts */
dw_writel(dev, 0, DW_IC_INTR_MASK);
dw_readl(dev, DW_IC_CLR_INTR);
}
void i2c_dw_clear_int(struct dw_i2c_dev *dev)
{
dw_readl(dev, DW_IC_CLR_INTR);
}
void i2c_dw_disable_int(struct dw_i2c_dev *dev)
{
dw_writel(dev, 0, DW_IC_INTR_MASK);
}
u32 i2c_dw_read_comp_param(struct dw_i2c_dev *dev)
{
return dw_readl(dev, DW_IC_COMP_PARAM_1);
}