* Tony Lindgren <tony@atomide.com> and Imre Deak <imre.deak@nokia.com>
* Copyright (C) 2005 Nokia Corporation
*
+ * Cleaned up by Juha Yrjölä <juha.yrjola@nokia.com>
+ *
* ----------------------------------------------------------------------------
* This file was highly leveraged from i2c-elektor.c:
*
* Copyright 1995-97 Simon G. Vogl
* 1998-99 Hans Berglund
*
- * With some changes from Kysti M�kki <kmalkki@cc.hut.fi> and even
+ * With some changes from Kyösti Mälkki <kmalkki@cc.hut.fi> and even
* Frodo Looijaard <frodol@dds.nl>
*
* This program is free software; you can redistribute it and/or modify
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
+// #define DEBUG
+
#include <linux/module.h>
#include <linux/delay.h>
#include <linux/i2c.h>
#include <linux/err.h>
#include <linux/interrupt.h>
+#include <linux/completion.h>
#include <linux/platform_device.h>
#include <asm/io.h>
static const char driver_name[] = "i2c_omap";
#define MODULE_NAME "OMAP I2C"
-#define OMAP_I2C_TIMEOUT (1*HZ) /* timeout waiting for an I2C transaction */
-
-#define pr_err(format, arg...) \
- printk(KERN_ERR MODULE_NAME " ERROR: " format "\n", ## arg )
+#define OMAP_I2C_TIMEOUT (msecs_to_jiffies(500)) /* timeout waiting for the controller to respond */
#define DEFAULT_OWN 1 /* default own I2C address */
#define MAX_MESSAGES 65536 /* max number of messages */
-#define OMAP_I2C_REV 0x00
-#define OMAP_I2C_IE 0x04
-#define OMAP_I2C_STAT 0x08
-#define OMAP_I2C_IV 0x0c
-#define OMAP_I2C_SYSS 0x10
-#define OMAP_I2C_BUF 0x14
-#define OMAP_I2C_CNT 0x18
-#define OMAP_I2C_DATA 0x1c
-#define OMAP_I2C_SYSC 0x20
-#define OMAP_I2C_CON 0x24
-#define OMAP_I2C_OA 0x28
-#define OMAP_I2C_SA 0x2c
-#define OMAP_I2C_PSC 0x30
-#define OMAP_I2C_SCLL 0x34
-#define OMAP_I2C_SCLH 0x38
-#define OMAP_I2C_SYSTEST 0x3c
+#define OMAP_I2C_REV_REG 0x00
+#define OMAP_I2C_IE_REG 0x04
+#define OMAP_I2C_STAT_REG 0x08
+#define OMAP_I2C_IV_REG 0x0c
+#define OMAP_I2C_SYSS_REG 0x10
+#define OMAP_I2C_BUF_REG 0x14
+#define OMAP_I2C_CNT_REG 0x18
+#define OMAP_I2C_DATA_REG 0x1c
+#define OMAP_I2C_SYSC_REG 0x20
+#define OMAP_I2C_CON_REG 0x24
+#define OMAP_I2C_OA_REG 0x28
+#define OMAP_I2C_SA_REG 0x2c
+#define OMAP_I2C_PSC_REG 0x30
+#define OMAP_I2C_SCLL_REG 0x34
+#define OMAP_I2C_SCLH_REG 0x38
+#define OMAP_I2C_SYSTEST_REG 0x3c
/* I2C Interrupt Enable Register (OMAP_I2C_IE): */
-#define OMAP_I2C_IE_XRDY_IE (1 << 4) /* TX data ready int enable */
-#define OMAP_I2C_IE_RRDY_IE (1 << 3) /* RX data ready int enable */
-#define OMAP_I2C_IE_ARDY_IE (1 << 2) /* Access ready int enable */
-#define OMAP_I2C_IE_NACK_IE (1 << 1) /* No ack interrupt enable */
-#define OMAP_I2C_IE_AL_IE (1 << 0) /* Arbitration lost int ena */
+#define OMAP_I2C_IE_XRDY (1 << 4) /* TX data ready int enable */
+#define OMAP_I2C_IE_RRDY (1 << 3) /* RX data ready int enable */
+#define OMAP_I2C_IE_ARDY (1 << 2) /* Access ready int enable */
+#define OMAP_I2C_IE_NACK (1 << 1) /* No ack interrupt enable */
+#define OMAP_I2C_IE_AL (1 << 0) /* Arbitration lost int ena */
/* I2C Status Register (OMAP_I2C_STAT): */
#define OMAP_I2C_STAT_SBD (1 << 15) /* Single byte data */
/* I2C Configuration Register (OMAP_I2C_CON): */
#define OMAP_I2C_CON_EN (1 << 15) /* I2C module enable */
-#define OMAP_I2C_CON_RST (0 << 15) /* I2C module reset */
#define OMAP_I2C_CON_BE (1 << 14) /* Big endian mode */
#define OMAP_I2C_CON_STB (1 << 11) /* Start byte mode (master) */
#define OMAP_I2C_CON_MST (1 << 10) /* Master/slave mode */
/* I2C System Configuration Register (OMAP_I2C_SYSC): */
#define OMAP_I2C_SYSC_SRST (1 << 1) /* Soft Reset */
-/* ------- debugging ---------------------------------------------------*/
-
-#define I2C_OMAP_DEBUG
-#ifdef I2c_OMAP_DEBUG
-static int i2c_debug;
-
-module_param(i2c_debug, int, 0);
-MODULE_PARM_DESC(i2c_debug,
- "debug level - 0 off; 1 normal; 2,3 more verbose; "
- "9 omap-protocol");
-
-#define DEB(level, format, arg...) do { \
- if (i2c_debug >= level) \
- printk(KERN_DEBUG MODULE_NAME " DEBUG: " format "\n", ## arg); \
- } while(0)
-
-#define DEB0(format, arg...) DEB(0, format, arg)
-#define DEB1(format, arg...) DEB(1, format, arg)
-#define DEB2(format, arg...) DEB(2, format, arg)
-#define DEB3(format, arg...) DEB(3, format, arg)
-#define DEB9(format, arg...) DEB(9, format, arg)
-
-#else
-
-#define DEB0(fmt, args...)
-#define DEB1(fmt, args...)
-#define DEB2(fmt, args...)
-#define DEB3(fmt, args...)
-#define DEB9(fmt, args...)
-
-#endif
-
+/* REVISIT: Use platform_data instead of module parameters */
static int clock = 100; /* Default: Fast Mode = 400 KHz, Standard = 100 KHz */
module_param(clock, int, 0);
-MODULE_PARM_DESC(clock, "Set I2C clock in KHz: 100 or 400 (Fast Mode)");
+MODULE_PARM_DESC(clock, "Set I2C clock in kHz: 100 or 400 (Fast Mode)");
static int own;
module_param(own, int, 0);
-MODULE_PARM_DESC(own, "Address of OMAP i2c master (0 for default == 1)");
+MODULE_PARM_DESC(own, "Address of OMAP I2C master (0 for default == 1)");
struct omap_i2c_dev {
struct device *dev;
int irq;
struct clk *iclk; /* Interface clock */
struct clk *fclk; /* Functional clock */
- int cmd_complete, cmd_err;
- wait_queue_head_t cmd_wait;
+ struct completion cmd_complete;
+ u16 cmd_err;
u8 *buf;
size_t buf_len;
struct i2c_adapter adapter;
- int rev1;
+ unsigned rev1:1;
+ u8 own_address;
};
-static void inline omap_i2c_write(struct omap_i2c_dev *i2c_dev,
- int val, int reg)
+static inline void omap_i2c_write_reg(struct omap_i2c_dev *i2c_dev,
+ int reg, u16 val)
{
__raw_writew(val, i2c_dev->base + reg);
}
-static int inline omap_i2c_read(struct omap_i2c_dev *i2c_dev, int reg)
+static inline u16 omap_i2c_read_reg(struct omap_i2c_dev *i2c_dev, int reg)
{
return __raw_readw(i2c_dev->base + reg);
}
-static void omap_i2c_reset(struct omap_i2c_dev *omap_i2c_dev)
+#ifdef CONFIG_ARCH_OMAP24XX
+static int omap_i2c_get_clocks(struct omap_i2c_dev *dev, int bus)
{
- unsigned long timeout;
- u16 psc = 0;
- unsigned long fclk_rate;
+ if (!cpu_is_omap24xx())
+ return 0;
- /* Soft reset, hard reset needed only for rev1 */
- if (!omap_i2c_dev->rev1)
- omap_i2c_write(omap_i2c_dev, OMAP_I2C_SYSC_SRST, OMAP_I2C_SYSC);
- else
- omap_i2c_write(omap_i2c_dev, OMAP_I2C_CON_RST, OMAP_I2C_CON);
+ dev->iclk = clk_get(NULL,
+ bus == 1 ? "i2c1_ick" : "i2c2_ick");
+ if (IS_ERR(dev->iclk)) {
+ return -ENODEV;
+ }
+
+ dev->fclk = clk_get(NULL,
+ bus == 1 ? "i2c1_fck" : "i2c2_fck");
+ if (IS_ERR(dev->fclk)) {
+ clk_put(dev->fclk);
+ return -ENODEV;
+ }
+
+ return 0;
+}
+
+static void omap_i2c_put_clocks(struct omap_i2c_dev *dev)
+{
+ clk_put(dev->fclk);
+ clk_put(dev->iclk);
+}
+
+static void omap_i2c_enable_clocks(struct omap_i2c_dev *dev)
+{
+ clk_enable(dev->iclk);
+ clk_enable(dev->fclk);
+}
+
+static void omap_i2c_disable_clocks(struct omap_i2c_dev *dev)
+{
+ clk_disable(dev->iclk);
+ clk_disable(dev->fclk);
+}
- fclk_rate = 12000000;
+#else
+#define omap_i2c_get_clocks(x, y) 0
+#define omap_i2c_enable_clocks(x, y) do {} while (0)
+#define omap_i2c_disable_clocks(x, y) do {} while (0)
+#define omap_i2c_put_clocks(x) do {} while (0)
+#endif
+
+static void omap_i2c_reset(struct omap_i2c_dev *dev)
+{
+ u16 psc;
+ unsigned long fclk_rate;
+
+ if (!dev->rev1) {
+ omap_i2c_write_reg(dev, OMAP_I2C_SYSC_REG, OMAP_I2C_SYSC_SRST);
+ /* For some reason we need to set the EN bit before the
+ * reset done bit gets set. */
+ omap_i2c_write_reg(dev, OMAP_I2C_CON_REG, OMAP_I2C_CON_EN);
+ while (!(omap_i2c_read_reg(dev, OMAP_I2C_SYSS_REG) & 0x01));
+ }
+ omap_i2c_write_reg(dev, OMAP_I2C_CON_REG, 0);
- if (!cpu_is_omap24xx()) {
+ if (cpu_class_is_omap1()) {
struct clk *armxor_ck;
unsigned long armxor_rate;
if (armxor_rate > 16000000)
psc = (armxor_rate + 8000000) / 12000000;
+ else
+ psc = 0;
fclk_rate = armxor_rate;
+ } else if (cpu_class_is_omap2()) {
+ fclk_rate = 12000000;
+ psc = 0;
}
/* Setup clock prescaler to obtain approx 12MHz I2C module clock: */
- omap_i2c_write(omap_i2c_dev, psc, OMAP_I2C_PSC);
+ omap_i2c_write_reg(dev, OMAP_I2C_PSC_REG, psc);
/* Program desired operating rate */
fclk_rate /= (psc + 1) * 1000;
if (psc > 2)
psc = 2;
- omap_i2c_write(omap_i2c_dev,
- fclk_rate / (clock * 2) - 7 + psc, OMAP_I2C_SCLL);
- omap_i2c_write(omap_i2c_dev,
- fclk_rate / (clock * 2) - 7 + psc, OMAP_I2C_SCLH);
- /* Set Own Address: */
- omap_i2c_write(omap_i2c_dev, own, OMAP_I2C_OA);
+ omap_i2c_write_reg(dev, OMAP_I2C_SCLL_REG,
+ fclk_rate / (clock * 2) - 7 + psc);
+ omap_i2c_write_reg(dev, OMAP_I2C_SCLH_REG,
+ fclk_rate / (clock * 2) - 7 + psc);
- /* Enable interrupts */
- omap_i2c_write(omap_i2c_dev,
- (OMAP_I2C_IE_XRDY_IE | OMAP_I2C_IE_RRDY_IE |
- OMAP_I2C_IE_ARDY_IE | OMAP_I2C_IE_NACK_IE |
- OMAP_I2C_IE_AL_IE),
- OMAP_I2C_IE);
+ /* Set Own Address: */
+ omap_i2c_write_reg(dev, OMAP_I2C_OA_REG, dev->own_address);
/* Take the I2C module out of reset: */
- omap_i2c_write(omap_i2c_dev, OMAP_I2C_CON_EN, OMAP_I2C_CON);
-
- if (!omap_i2c_dev->rev1){
- timeout = jiffies + OMAP_I2C_TIMEOUT;
- while (!(omap_i2c_read(omap_i2c_dev, OMAP_I2C_SYSS) &
- OMAP_I2C_SYSS_RDONE)) {
- if (time_after(jiffies, timeout)) {
- pr_err("timeout waiting for I2C reset");
- break;
- }
- msleep(1);
- }
- }
+ omap_i2c_write_reg(dev, OMAP_I2C_CON_REG, OMAP_I2C_CON_EN);
+
+ /* Enable interrupts */
+ omap_i2c_write_reg(dev, OMAP_I2C_IE_REG,
+ (OMAP_I2C_IE_XRDY | OMAP_I2C_IE_RRDY |
+ OMAP_I2C_IE_ARDY | OMAP_I2C_IE_NACK |
+ OMAP_I2C_IE_AL));
}
/*
* Waiting on Bus Busy
*/
-static int
-omap_i2c_wait_for_bb(struct omap_i2c_dev *omap_i2c_dev, char allow_sleep)
+static int omap_i2c_wait_for_bb(struct omap_i2c_dev *dev)
{
unsigned long timeout;
timeout = jiffies + OMAP_I2C_TIMEOUT;
- while (omap_i2c_read(omap_i2c_dev, OMAP_I2C_STAT) & OMAP_I2C_STAT_BB) {
+ while (omap_i2c_read_reg(dev, OMAP_I2C_STAT_REG) & OMAP_I2C_STAT_BB) {
if (time_after(jiffies, timeout)) {
- printk(KERN_WARNING "timeout waiting for bus ready\n");
+ dev_warn(dev->dev, "timeout waiting for bus ready\n");
return -ETIMEDOUT;
}
- if (allow_sleep)
- msleep(1);
+ msleep(1);
}
return 0;
/*
* Low level master read/write transaction.
*/
-static int
-omap_i2c_xfer_msg(struct i2c_adapter *adap, struct i2c_msg *msg, int stop)
+static int omap_i2c_xfer_msg(struct i2c_adapter *adap,
+ struct i2c_msg *msg, int stop)
{
- struct omap_i2c_dev *omap_i2c_dev = i2c_get_adapdata(adap);
- u8 zero_byte = 0;
+ struct omap_i2c_dev *dev = i2c_get_adapdata(adap);
int r;
u16 w;
+ u8 zero_byte = 0;
- DEB2("addr: 0x%04x, len: %d, flags: 0x%x, stop: %d\n",
- msg->addr, msg->len, msg->flags, stop);
+ dev_dbg(dev->dev, "addr: 0x%04x, len: %d, flags: 0x%x, stop: %d\n",
+ msg->addr, msg->len, msg->flags, stop);
- omap_i2c_write(omap_i2c_dev, msg->addr, OMAP_I2C_SA);
+ omap_i2c_write_reg(dev, OMAP_I2C_SA_REG, msg->addr);
/* Sigh, seems we can't do zero length transactions. Thus, we
* can't probe for devices w/o actually sending/receiving at least
* arbitrary device due to random byte write/read during
* probes.
*/
+ /* REVISIT: Could the STB bit of I2C_CON be used with probing? */
if (msg->len == 0) {
- omap_i2c_dev->buf = &zero_byte;
- omap_i2c_dev->buf_len = 1;
+ dev->buf = &zero_byte;
+ dev->buf_len = 1;
} else {
- omap_i2c_dev->buf = msg->buf;
- omap_i2c_dev->buf_len = msg->len;
+ dev->buf = msg->buf;
+ dev->buf_len = msg->len;
}
- omap_i2c_write(omap_i2c_dev, omap_i2c_dev->buf_len, OMAP_I2C_CNT);
- omap_i2c_dev->cmd_complete = 0;
- omap_i2c_dev->cmd_err = 0;
+ omap_i2c_write_reg(dev, OMAP_I2C_CNT_REG, dev->buf_len);
+
+ init_completion(&dev->cmd_complete);
+ dev->cmd_err = 0;
+
w = OMAP_I2C_CON_EN | OMAP_I2C_CON_MST | OMAP_I2C_CON_STT;
if (msg->flags & I2C_M_TEN)
w |= OMAP_I2C_CON_XA;
w |= OMAP_I2C_CON_TRX;
if (stop)
w |= OMAP_I2C_CON_STP;
- omap_i2c_write(omap_i2c_dev, w, OMAP_I2C_CON);
-
- r = wait_event_interruptible_timeout(omap_i2c_dev->cmd_wait,
- omap_i2c_dev->cmd_complete,
- OMAP_I2C_TIMEOUT);
+ omap_i2c_write_reg(dev, OMAP_I2C_CON_REG, w);
- omap_i2c_dev->buf_len = 0;
+ r = wait_for_completion_interruptible_timeout(&dev->cmd_complete,
+ OMAP_I2C_TIMEOUT);
+ dev->buf_len = 0;
if (r < 0)
return r;
- if (!omap_i2c_dev->cmd_complete) {
- omap_i2c_reset(omap_i2c_dev);
+ if (r == 0) {
+ dev_err(dev->dev, "controller timed out\n");
+ omap_i2c_reset(dev);
return -ETIMEDOUT;
}
- if (!omap_i2c_dev->cmd_err)
- return msg->len;
+
+ if (likely(!dev->cmd_err))
+ return 0;
/* We have an error */
- if (omap_i2c_dev->cmd_err & OMAP_I2C_STAT_NACK) {
+ if (dev->cmd_err & OMAP_I2C_STAT_NACK) {
if (msg->flags & I2C_M_IGNORE_NAK)
- return msg->len;
- if (stop)
- omap_i2c_write(omap_i2c_dev,
- omap_i2c_read(omap_i2c_dev, OMAP_I2C_CON) |
- OMAP_I2C_CON_STP,
- OMAP_I2C_CON);
+ return 0;
+ if (stop) {
+ u16 w;
+
+ w = omap_i2c_read_reg(dev, OMAP_I2C_CON_REG);
+ w |= OMAP_I2C_CON_STP;
+ omap_i2c_write_reg(dev, OMAP_I2C_CON_REG, w);
+ }
return -EREMOTEIO;
}
- if ((OMAP_I2C_STAT_AL | OMAP_I2C_STAT_ROVR | OMAP_I2C_STAT_XUDF)
- & omap_i2c_dev->cmd_err) {
- omap_i2c_reset(omap_i2c_dev);
- return -EIO;
- }
- return msg->len;
+ if (dev->cmd_err & (OMAP_I2C_STAT_AL | OMAP_I2C_STAT_ROVR |
+ OMAP_I2C_STAT_XUDF))
+ omap_i2c_reset(dev);
+ return -EIO;
}
+
/*
* Prepare controller for a transaction and call omap_i2c_xfer_msg
* to do the work during IRQ processing.
static int
omap_i2c_xfer(struct i2c_adapter *adap, struct i2c_msg msgs[], int num)
{
- struct omap_i2c_dev *omap_i2c_dev = i2c_get_adapdata(adap);
+ struct omap_i2c_dev *dev = i2c_get_adapdata(adap);
int i;
int r = 0;
- DEB1("msgs: %d\n", num);
-
if (num < 1 || num > MAX_MESSAGES)
return -EINVAL;
if (msgs[i].buf == NULL)
return -EINVAL;
-// REVISIT: initialize and use adap->retries
+ omap_i2c_enable_clocks(dev);
- if ((r = omap_i2c_wait_for_bb(omap_i2c_dev, 1)) < 0)
- return r;
+ /* REVISIT: initialize and use adap->retries */
+ if ((r = omap_i2c_wait_for_bb(dev)) < 0)
+ goto out;
for (i = 0; i < num; i++) {
- DEB2("msg: %d, addr: 0x%04x, len: %d, flags: 0x%x\n",
- i, msgs[i].addr, msgs[i].len, msgs[i].flags);
-
+ dev_dbg(dev->dev, "msg: %d, addr: 0x%04x, len: %d, flags: 0x%x\n",
+ i, msgs[i].addr, msgs[i].len, msgs[i].flags);
r = omap_i2c_xfer_msg(adap, &msgs[i], (i == (num - 1)));
-
- DEB2("r: %d\n", r);
-
- if (r != msgs[i].len)
+ if (r != 0)
break;
}
- if (r >= 0 && num > 1)
+ if (r == 0 && num > 1)
r = num;
-
- DEB2("r: %d\n", r);
-
+out:
+ omap_i2c_disable_clocks(dev);
return r;
}
}
static inline void
-omap_i2c_complete_cmd(struct omap_i2c_dev *dev)
+omap_i2c_complete_cmd(struct omap_i2c_dev *dev, u16 err)
+{
+ dev->cmd_err |= err;
+ complete(&dev->cmd_complete);
+}
+
+static inline void
+omap_i2c_ack_stat(struct omap_i2c_dev *dev, u16 stat)
{
- dev->cmd_complete = 1;
- wake_up(&dev->cmd_wait);
+ omap_i2c_write_reg(dev, OMAP_I2C_STAT_REG, stat);
}
static irqreturn_t
omap_i2c_isr(int this_irq, void *dev_id, struct pt_regs *regs)
{
- struct omap_i2c_dev *omap_i2c_dev = dev_id;
+ struct omap_i2c_dev *dev = dev_id;
u16 bits;
u16 stat, w;
int count = 0;
u16 iv_read;
- bits = omap_i2c_read(omap_i2c_dev, OMAP_I2C_IE);
- while ((stat = omap_i2c_read(omap_i2c_dev, OMAP_I2C_STAT)) & bits) {
-
+ bits = omap_i2c_read_reg(dev, OMAP_I2C_IE_REG);
+ while ((stat = (omap_i2c_read_reg(dev, OMAP_I2C_STAT_REG))) & bits) {
+ dev_dbg(dev->dev, "IRQ (ISR = 0x%04x)\n", stat);
if (count++ == 100) {
- printk(KERN_WARNING "Too much work in one IRQ\n");
+ dev_warn(dev->dev, "Too much work in one IRQ\n");
break;
}
- omap_i2c_write(omap_i2c_dev, stat, OMAP_I2C_STAT);
+ omap_i2c_write_reg(dev, OMAP_I2C_STAT_REG, stat);
+
if (stat & OMAP_I2C_STAT_ARDY) {
- omap_i2c_complete_cmd(omap_i2c_dev);
- omap_i2c_write(omap_i2c_dev, OMAP_I2C_STAT_ARDY,
- OMAP_I2C_STAT);
- if (omap_i2c_dev->rev1)
- iv_read = omap_i2c_read(omap_i2c_dev,
- OMAP_I2C_IV);
+ omap_i2c_complete_cmd(dev, 0);
+ if (dev->rev1)
+ iv_read = omap_i2c_read_reg(dev, OMAP_I2C_IV_REG);
continue;
}
if (stat & OMAP_I2C_STAT_RRDY) {
- w = omap_i2c_read(omap_i2c_dev, OMAP_I2C_DATA);
- if (omap_i2c_dev->buf_len) {
- *omap_i2c_dev->buf++ = w;
- omap_i2c_dev->buf_len--;
- if (omap_i2c_dev->buf_len) {
- *omap_i2c_dev->buf++ = w >> 8;
- omap_i2c_dev->buf_len--;
+ w = omap_i2c_read_reg(dev, OMAP_I2C_DATA_REG);
+ if (dev->buf_len) {
+ *dev->buf++ = w;
+ dev->buf_len--;
+ if (dev->buf_len) {
+ *dev->buf++ = w >> 8;
+ dev->buf_len--;
}
- if (omap_i2c_dev->rev1 &&
- !omap_i2c_dev->buf_len)
- omap_i2c_complete_cmd(omap_i2c_dev);
+ if (dev->rev1 && !dev->buf_len)
+ omap_i2c_complete_cmd(dev, 0);
} else
- pr_err("RRDY IRQ while no data requested");
- omap_i2c_write(omap_i2c_dev, OMAP_I2C_STAT_RRDY,
- OMAP_I2C_STAT);
- if (omap_i2c_dev->rev1)
- iv_read = omap_i2c_read(omap_i2c_dev,
- OMAP_I2C_IV);
+ dev_err(dev->dev, "RRDY IRQ while no data requested\n");
+ omap_i2c_ack_stat(dev, OMAP_I2C_STAT_RRDY);
+ if (dev->rev1)
+ iv_read = omap_i2c_read_reg(dev, OMAP_I2C_IV_REG);
continue;
}
if (stat & OMAP_I2C_STAT_XRDY) {
+ int bail_out = 0;
+
w = 0;
- if (omap_i2c_dev->buf_len) {
- w = *omap_i2c_dev->buf++;
- omap_i2c_dev->buf_len--;
- if (omap_i2c_dev->buf_len) {
- w |= *omap_i2c_dev->buf++ << 8;
- omap_i2c_dev->buf_len--;
+ if (dev->buf_len) {
+ w = *dev->buf++;
+ dev->buf_len--;
+ if (dev->buf_len) {
+ w |= *dev->buf++ << 8;
+ dev->buf_len--;
}
- } else {
- pr_err("XRDY IRQ while no data to send");
- /* FIXME: shouldn't we bail out here? */
+ } else
+ dev_err(dev->dev, "XRDY IRQ while no data to send\n");
+#if 0
+ if (!(stat & OMAP_I2C_STAT_BB)) {
+ dev_warn(dev->dev, "XRDY while bus not busy\n");
+ bail_out = 1;
}
- omap_i2c_write(omap_i2c_dev, w, OMAP_I2C_DATA);
- /* We have to make sure the XRDY bit is reset */
- omap_i2c_write(omap_i2c_dev, OMAP_I2C_STAT_XRDY,
- OMAP_I2C_STAT);
- if (omap_i2c_dev->rev1) {
- iv_read = omap_i2c_read(omap_i2c_dev,
- OMAP_I2C_IV);
- if (!omap_i2c_dev->buf_len)
- omap_i2c_complete_cmd(omap_i2c_dev);
+#endif
+ omap_i2c_write_reg(dev, OMAP_I2C_DATA_REG, w);
+ omap_i2c_ack_stat(dev, OMAP_I2C_STAT_XRDY);
+ if (dev->rev1) {
+ iv_read = omap_i2c_read_reg(dev, OMAP_I2C_IV_REG);
+ if (!dev->buf_len)
+ omap_i2c_complete_cmd(dev, 0);
}
+ if (bail_out)
+ omap_i2c_complete_cmd(dev, 1 << 15);
continue;
}
if (stat & OMAP_I2C_STAT_ROVR) {
- pr_err("Receive overrun\n");
- omap_i2c_dev->cmd_err |= OMAP_I2C_STAT_ROVR;
+ dev_err(dev->dev, "Receive overrun\n");
+ dev->cmd_err |= OMAP_I2C_STAT_ROVR;
}
if (stat & OMAP_I2C_STAT_XUDF) {
- pr_err("Transmit overflow\n");
- omap_i2c_dev->cmd_err |= OMAP_I2C_STAT_XUDF;
+ dev_err(dev->dev, "Transmit overflow\n");
+ dev->cmd_err |= OMAP_I2C_STAT_XUDF;
}
if (stat & OMAP_I2C_STAT_NACK) {
- omap_i2c_dev->cmd_err |= OMAP_I2C_STAT_NACK;
- omap_i2c_complete_cmd(omap_i2c_dev);
- omap_i2c_write(omap_i2c_dev, OMAP_I2C_CON_STP,
- OMAP_I2C_CON);
+ omap_i2c_complete_cmd(dev, OMAP_I2C_STAT_NACK);
+ omap_i2c_write_reg(dev, OMAP_I2C_CON_REG, OMAP_I2C_CON_STP);
}
if (stat & OMAP_I2C_STAT_AL) {
- pr_err("Arbitration lost\n");
- omap_i2c_dev->cmd_err |= OMAP_I2C_STAT_AL;
- omap_i2c_complete_cmd(omap_i2c_dev);
+ dev_err(dev->dev, "Arbitration lost\n");
+ omap_i2c_complete_cmd(dev, OMAP_I2C_STAT_AL);
}
- if (omap_i2c_dev->rev1)
- iv_read = omap_i2c_read(omap_i2c_dev, OMAP_I2C_IV);
-
+ if (dev->rev1)
+ iv_read = omap_i2c_read_reg(dev, OMAP_I2C_IV_REG);
}
- return IRQ_HANDLED;
+
+ return count ? IRQ_HANDLED : IRQ_NONE;
}
static struct i2c_algorithm omap_i2c_algo = {
.functionality = omap_i2c_func,
};
-#ifdef CONFIG_ARCH_OMAP24XX
-static int omap_i2c_24xx_get_clocks(struct omap_i2c_dev *omap_i2c_dev, int bus)
-{
- if (!cpu_is_omap24xx())
- return 0;
-
- omap_i2c_dev->iclk = clk_get(NULL,
- bus == 1 ? "i2c1_ick" : "i2c2_ick");
- if (IS_ERR(omap_i2c_dev->iclk)) {
- return -ENODEV;
- }
-
- omap_i2c_dev->fclk = clk_get(NULL,
- bus == 1 ? "i2c1_fck" : "i2c2_fck");
- if (IS_ERR(omap_i2c_dev->fclk)) {
- clk_put(omap_i2c_dev->fclk);
- return -ENODEV;
- }
-
- return 0;
-}
-
-static void omap_i2c_24xx_put_clocks(struct omap_i2c_dev *omap_i2c_dev)
-{
- if (cpu_is_omap24xx()) {
- clk_put(omap_i2c_dev->fclk);
- clk_put(omap_i2c_dev->iclk);
- }
-}
-
-static void omap_i2c_24xx_enable_clocks(struct omap_i2c_dev *omap_i2c_dev,
- int enable)
-{
- if (cpu_is_omap24xx()) {
- if (enable) {
- clk_enable(omap_i2c_dev->iclk);
- clk_enable(omap_i2c_dev->fclk);
- } else {
- clk_disable(omap_i2c_dev->iclk);
- clk_disable(omap_i2c_dev->fclk);
- }
- }
-}
-
-#else
-#define omap_i2c_24xx_get_clocks(x, y) 0
-#define omap_i2c_24xx_enable_clocks(x, y) do {} while (0)
-#define omap_i2c_24xx_put_clocks(x) do {} while (0)
-#endif
-
static int
omap_i2c_probe(struct platform_device *pdev)
{
- struct omap_i2c_dev *omap_i2c_dev;
+ struct omap_i2c_dev *dev;
struct i2c_adapter *adap;
struct resource *mem, *irq;
int r;
/* NOTE: driver uses the static register mapping */
mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
if (!mem) {
- pr_err("%s: no mem resource?\n", driver_name);
+ dev_err(&pdev->dev, "no mem resource?\n");
return -ENODEV;
}
irq = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
if (!irq) {
- pr_err("%s: no irq resource?\n", driver_name);
+ dev_err(&pdev->dev, "no irq resource?\n");
return -ENODEV;
}
r = (int) request_mem_region(mem->start, (mem->end - mem->start) + 1,
driver_name);
if (!r) {
- pr_err("%s: I2C region already claimed\n", driver_name);
+ dev_err(&pdev->dev, "I2C region already claimed\n");
return -EBUSY;
}
else
clock = 100; /* Standard mode */
- if (own < 1 || own > 0x7f)
- own = DEFAULT_OWN;
-
- omap_i2c_dev = kzalloc(sizeof(struct omap_i2c_dev), GFP_KERNEL);
- if (!omap_i2c_dev) {
+ dev = kzalloc(sizeof(struct omap_i2c_dev), GFP_KERNEL);
+ if (!dev) {
r = -ENOMEM;
goto do_release_region;
}
- omap_i2c_dev->dev = &pdev->dev;
- omap_i2c_dev->irq = irq->start;
- omap_i2c_dev->base = (void __iomem *)IO_ADDRESS(mem->start);
- platform_set_drvdata(pdev, omap_i2c_dev);
- init_waitqueue_head(&omap_i2c_dev->cmd_wait);
+ /* FIXME: Get own address from platform_data */
+ if (own >= 1 && own < 0x7f)
+ dev->own_address = own;
+ else
+ own = DEFAULT_OWN;
- if ((r = omap_i2c_24xx_get_clocks(omap_i2c_dev, pdev->id)) != 0)
+ dev->dev = &pdev->dev;
+ dev->irq = irq->start;
+ dev->base = (void __iomem *) IO_ADDRESS(mem->start);
+ platform_set_drvdata(pdev, dev);
+
+ if ((r = omap_i2c_get_clocks(dev, pdev->id)) != 0)
goto do_free_mem;
- omap_i2c_24xx_enable_clocks(omap_i2c_dev, 1);
+ omap_i2c_enable_clocks(dev);
#ifdef CONFIG_ARCH_OMAP15XX
- omap_i2c_dev->rev1 = omap_i2c_read(omap_i2c_dev, OMAP_I2C_REV) < 0x20;
+ dev->rev1 = omap_i2c_read_reg(dev, OMAP_I2C_REV_REG) < 0x20;
#endif
/* reset ASAP, clearing any IRQs */
- omap_i2c_reset(omap_i2c_dev);
+ omap_i2c_reset(dev);
- r = request_irq(omap_i2c_dev->irq, omap_i2c_isr, 0,
- driver_name, omap_i2c_dev);
+ r = request_irq(dev->irq, omap_i2c_isr, 0,
+ driver_name, dev);
if (r) {
- pr_err("%s: failure requesting irq %i\n",
- driver_name, omap_i2c_dev->irq);
+ dev_err(dev->dev, "failure requesting irq %i\n", dev->irq);
goto do_unuse_clocks;
}
- r = omap_i2c_read(omap_i2c_dev, OMAP_I2C_REV) & 0xff;
- pr_info("%s: bus %d rev%d.%d at %d KHz\n", driver_name,
- pdev->id - 1, r >> 4, r & 0xf, clock);
+ r = omap_i2c_read_reg(dev, OMAP_I2C_REV_REG) & 0xff;
+ dev_info(dev->dev, "bus %d rev%d.%d at %d kHz\n",
+ pdev->id - 1, r >> 4, r & 0xf, clock);
- adap = &omap_i2c_dev->adapter;
- i2c_set_adapdata(adap, omap_i2c_dev);
+ adap = &dev->adapter;
+ i2c_set_adapdata(adap, dev);
adap->owner = THIS_MODULE;
adap->class = I2C_CLASS_HWMON;
strncpy(adap->name, "OMAP I2C adapter", sizeof(adap->name));
adap->algo = &omap_i2c_algo;
adap->dev.parent = &pdev->dev;
+
/* i2c device drivers may be active on return from add_adapter() */
r = i2c_add_adapter(adap);
if (r) {
- pr_err("%s: failure adding adapter\n", driver_name);
+ dev_err(dev->dev, "failure adding adapter\n");
goto do_free_irq;
}
+ omap_i2c_disable_clocks(dev);
+
return 0;
do_free_irq:
- free_irq(omap_i2c_dev->irq, omap_i2c_dev);
+ free_irq(dev->irq, dev);
do_unuse_clocks:
- omap_i2c_24xx_enable_clocks(omap_i2c_dev, 0);
- omap_i2c_24xx_put_clocks(omap_i2c_dev);
+ omap_i2c_enable_clocks(dev);
+ omap_i2c_put_clocks(dev);
do_free_mem:
- kfree(omap_i2c_dev);
+ kfree(dev);
do_release_region:
- omap_i2c_write(omap_i2c_dev, 0, OMAP_I2C_CON);
+ omap_i2c_write_reg(dev, OMAP_I2C_CON_REG, 0);
release_mem_region(mem->start, (mem->end - mem->start) + 1);
return r;
static int
omap_i2c_remove(struct platform_device *pdev)
{
- struct omap_i2c_dev *omap_i2c_dev = platform_get_drvdata(pdev);
+ struct omap_i2c_dev *dev = platform_get_drvdata(pdev);
struct resource *mem;
- omap_i2c_write(omap_i2c_dev, 0, OMAP_I2C_CON);
- i2c_del_adapter(&omap_i2c_dev->adapter);
- free_irq(omap_i2c_dev->irq, omap_i2c_dev);
- omap_i2c_24xx_enable_clocks(omap_i2c_dev, 0);
- omap_i2c_24xx_put_clocks(omap_i2c_dev);
- kfree(omap_i2c_dev);
+ free_irq(dev->irq, dev);
+ i2c_del_adapter(&dev->adapter);
+ omap_i2c_write_reg(dev, OMAP_I2C_CON_REG, 0);
+ omap_i2c_put_clocks(dev);
+ kfree(dev);
mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
release_mem_region(mem->start, (mem->end - mem->start) + 1);
return 0;
},
};
-/* i2c may be needed to bring up other drivers */
+/* I2C may be needed to bring up other drivers */
static int __init
omap_i2c_init_driver(void)
{