Commit e619a459 authored by Tony Lindgren's avatar Tony Lindgren

ARM: OMAP: Clean up i2c-omap.c and make it work with 24xx

This patch cleans up i2c-omap.c more for inclusion in the mainline kernel,
and adds support for both I2C interfaces on OMAP 24xx.
parent f7fed1b5
...@@ -6,6 +6,10 @@ ...@@ -6,6 +6,10 @@
* Copyright (C) 2003 MontaVista Software, Inc. * Copyright (C) 2003 MontaVista Software, Inc.
* Copyright (C) 2004 Texas Instruments. * Copyright (C) 2004 Texas Instruments.
* *
* Updated to work with multiple I2C interfaces on 24xx by
* Tony Lindgren <tony@atomide.com> and Imre Deak <imre.deak@nokia.com>
* Copyright (C) 2005 Nokia Corporation
*
* ---------------------------------------------------------------------------- * ----------------------------------------------------------------------------
* This file was highly leveraged from i2c-elektor.c: * This file was highly leveraged from i2c-elektor.c:
* *
...@@ -14,7 +18,7 @@ ...@@ -14,7 +18,7 @@
* *
* With some changes from Kysti M�kki <kmalkki@cc.hut.fi> and even * With some changes from Kysti M�kki <kmalkki@cc.hut.fi> and even
* Frodo Looijaard <frodol@dds.nl> * Frodo Looijaard <frodol@dds.nl>
* *
* This program is free software; you can redistribute it and/or modify * 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 * it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or * the Free Software Foundation; either version 2 of the License, or
...@@ -22,166 +26,233 @@ ...@@ -22,166 +26,233 @@
* *
* This program is distributed in the hope that it will be useful, * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software * along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/ */
#include <linux/kernel.h>
#include <linux/module.h> #include <linux/module.h>
#include <linux/init.h>
#include <linux/slab.h>
#include <linux/delay.h> #include <linux/delay.h>
#include <linux/ioport.h>
#include <linux/version.h>
#include <linux/i2c.h> #include <linux/i2c.h>
#include <asm/irq.h>
#include <asm/io.h>
#include <asm/hardware/clock.h>
#include <asm/uaccess.h>
#include <asm/hardware/clock.h>
#include <linux/errno.h>
#include <linux/sched.h>
#include <asm/arch/hardware.h>
#include <linux/interrupt.h>
#include <linux/moduleparam.h>
#include <asm/arch/mux.h>
#include <linux/err.h> #include <linux/err.h>
#include "i2c-omap.h" #include <linux/interrupt.h>
#undef I2C_OMAP_DEBUG #include <asm/io.h>
#include <asm/hardware/clock.h>
/* ----- global defines ----------------------------------------------- */
static const char driver_name[] = "i2c_omap";
/* ----- debug defines ----------------------------------------------- */ #define MODULE_NAME "OMAP I2C"
#define OMAP_I2C_TIMEOUT (1*HZ) /* timeout waiting for an I2C transaction */
#ifdef I2C_OMAP_DEBUG #define pr_err(format, arg...) \
static int i2c_debug = 0; printk(KERN_ERR MODULE_NAME " ERROR: " format "\n", ## arg )
#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
/* 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 */
/* I2C Status Register (OMAP_I2C_STAT): */
#define OMAP_I2C_STAT_SBD (1 << 15) /* Single byte data */
#define OMAP_I2C_STAT_BB (1 << 12) /* Bus busy */
#define OMAP_I2C_STAT_ROVR (1 << 11) /* Receive overrun */
#define OMAP_I2C_STAT_XUDF (1 << 10) /* Transmit underflow */
#define OMAP_I2C_STAT_AAS (1 << 9) /* Address as slave */
#define OMAP_I2C_STAT_AD0 (1 << 8) /* Address zero */
#define OMAP_I2C_STAT_XRDY (1 << 4) /* Transmit data ready */
#define OMAP_I2C_STAT_RRDY (1 << 3) /* Receive data ready */
#define OMAP_I2C_STAT_ARDY (1 << 2) /* Register access ready */
#define OMAP_I2C_STAT_NACK (1 << 1) /* No ack interrupt enable */
#define OMAP_I2C_STAT_AL (1 << 0) /* Arbitration lost int ena */
/* I2C Buffer Configuration Register (OMAP_I2C_BUF): */
#define OMAP_I2C_BUF_RDMA_EN (1 << 15) /* RX DMA channel enable */
#define OMAP_I2C_BUF_XDMA_EN (1 << 7) /* TX DMA channel enable */
/* 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 */
#define OMAP_I2C_CON_TRX (1 << 9) /* TX/RX mode (master only) */
#define OMAP_I2C_CON_XA (1 << 8) /* Expand address */
#define OMAP_I2C_CON_RM (1 << 2) /* Repeat mode (master only) */
#define OMAP_I2C_CON_STP (1 << 1) /* Stop cond (master only) */
#define OMAP_I2C_CON_STT (1 << 0) /* Start condition (master) */
/* I2C System Test Register (OMAP_I2C_SYSTEST): */
#define OMAP_I2C_SYSTEST_ST_EN (1 << 15) /* System test enable */
#define OMAP_I2C_SYSTEST_FREE (1 << 14) /* Free running mode */
#define OMAP_I2C_SYSTEST_TMODE_MASK (3 << 12) /* Test mode select */
#define OMAP_I2C_SYSTEST_TMODE_SHIFT (12) /* Test mode select */
#define OMAP_I2C_SYSTEST_SCL_I (1 << 3) /* SCL line sense in */
#define OMAP_I2C_SYSTEST_SCL_O (1 << 2) /* SCL line drive out */
#define OMAP_I2C_SYSTEST_SDA_I (1 << 1) /* SDA line sense in */
#define OMAP_I2C_SYSTEST_SDA_O (1 << 0) /* SDA line drive out */
/* I2C System Status register (OMAP_I2C_SYSS): */
#define OMAP_I2C_SYSS_RDONE 1 /* Reset Done */
/* 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_param(i2c_debug, int, 0);
MODULE_PARM_DESC(i2c_debug, MODULE_PARM_DESC(i2c_debug,
"debug level - 0 off; 1 normal; 2,3 more verbose; " "debug level - 0 off; 1 normal; 2,3 more verbose; "
"9 omap-protocol"); "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)
#define DEB0(format, arg...) printk(KERN_DEBUG MODULE_NAME " DEBUG: " format "\n", ## arg )
#define DEB1(format, arg...) \
if (i2c_debug>=1) { \
printk(KERN_DEBUG MODULE_NAME " DEBUG: " format "\n", ## arg ); \
}
#define DEB2(format, arg...) \
if (i2c_debug>=2) { \
printk(KERN_DEBUG MODULE_NAME " DEBUG: " format "\n", ## arg ); \
}
#define DEB3(format, arg...) \
if (i2c_debug>=3) { \
printk(KERN_DEBUG MODULE_NAME " DEBUG: " format "\n", ## arg ); \
}
#define DEB9(format, arg...) \
/* debug the protocol by showing transferred bits */ \
if (i2c_debug>=9) { \
printk(KERN_DEBUG MODULE_NAME " DEBUG: " format "\n", ## arg ); \
}
#else #else
#define DEB0(fmt, args...) #define DEB0(fmt, args...)
#define DEB1(fmt, args...) #define DEB1(fmt, args...)
#define DEB2(fmt, args...) #define DEB2(fmt, args...)
#define DEB3(fmt, args...) #define DEB3(fmt, args...)
#define DEB9(fmt, args...) #define DEB9(fmt, args...)
#endif
/* ----- global defines ----------------------------------------------- */
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 err(format, arg...) printk(KERN_ERR MODULE_NAME " ERROR: " format "\n", ## arg )
#ifdef CONFIG_ARCH_OMAP15XX
#define omap_i2c_rev1() (readw(OMAP_I2C_REV) < 0x20)
#else
#define omap_i2c_rev1() 0
#endif #endif
#define DEFAULT_OWN 1 /* default own I2C address */ static int clock = 100; /* Default: Fast Mode = 400 KHz, Standard = 100 KHz */
#define MAX_MESSAGES 65536 /* max number of messages */
static int clock = 100; /* Default: Fast Mode = 400 KHz, Standard Mode = 100 KHz */
module_param(clock, int, 0); module_param(clock, int, 0);
MODULE_PARM_DESC(clock, MODULE_PARM_DESC(clock, "Set I2C clock in KHz: 100 or 400 (Fast Mode)");
"Set I2C clock in KHz: 100 (Standard Mode) or 400 (Fast Mode)");
static int own; static int own;
module_param(own, int, 0); 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;
void __iomem *base; /* virtual */
int irq;
struct clk *iclk; /* Interface clock */
struct clk *fclk; /* Functional clock */
int cmd_complete, cmd_err;
wait_queue_head_t cmd_wait;
u8 *buf;
size_t buf_len;
struct i2c_adapter adapter;
int rev1;
};
static struct omap_i2c_dev { static void inline omap_i2c_write(struct omap_i2c_dev *i2c_dev,
int cmd_complete, cmd_err; int val, int reg)
wait_queue_head_t cmd_wait; {
u8 *buf; __raw_writew(val, i2c_dev->base + reg);
size_t buf_len; }
} omap_i2c_dev;
/* FIXME pass "sparse": convert {read,write}w() with iomapped addresses static int inline omap_i2c_read(struct omap_i2c_dev *i2c_dev, int reg)
* to omap_{read,write}w() with physical addresses. {
*/ return __raw_readw(i2c_dev->base + reg);
}
static void omap_i2c_reset(void) static void omap_i2c_reset(struct omap_i2c_dev *omap_i2c_dev)
{ {
unsigned long timeout; unsigned long timeout;
u16 psc; u16 psc = 0;
struct clk *armxor_ck; unsigned long fclk_rate;
unsigned long armxor_rate;
if (!omap_i2c_rev1()) /* Soft reset, hard reset needed only for rev1 */
writew(OMAP_I2C_SYSC_SRST, OMAP_I2C_SYSC); /*soft reset */ if (!omap_i2c_dev->rev1)
omap_i2c_write(omap_i2c_dev, OMAP_I2C_SYSC_SRST, OMAP_I2C_SYSC);
else else
writew(OMAP_I2C_CON_RST, OMAP_I2C_CON); /* reset */ omap_i2c_write(omap_i2c_dev, OMAP_I2C_CON_RST, OMAP_I2C_CON);
armxor_ck = clk_get(NULL, "armxor_ck"); fclk_rate = 12000000;
if (IS_ERR(armxor_ck)) {
printk(KERN_WARNING "i2c: Could not obtain armxor_ck rate.\n");
armxor_rate = 12000000;
} else {
armxor_rate = clk_get_rate(armxor_ck);
clk_put(armxor_ck);
}
if (armxor_rate <= 16000000) if (!cpu_is_omap24xx()) {
psc = 0; struct clk *armxor_ck;
else unsigned long armxor_rate;
psc = (armxor_rate + 8000000) / 12000000;
armxor_ck = clk_get(NULL, "armxor_ck");
if (IS_ERR(armxor_ck)) {
printk(KERN_WARNING "i2c: Could not get armxor_ck\n");
armxor_rate = 12000000;
} else {
armxor_rate = clk_get_rate(armxor_ck);
clk_put(armxor_ck);
}
if (armxor_rate > 16000000)
psc = (armxor_rate + 8000000) / 12000000;
fclk_rate = armxor_rate;
}
/* Setup clock prescaler to obtain approx 12MHz I2C module clock: */ /* Setup clock prescaler to obtain approx 12MHz I2C module clock: */
writew(psc, OMAP_I2C_PSC); omap_i2c_write(omap_i2c_dev, psc, OMAP_I2C_PSC);
/* Program desired operating rate */ /* Program desired operating rate */
armxor_rate /= (psc + 1) * 1000; fclk_rate /= (psc + 1) * 1000;
if (psc > 2) if (psc > 2)
psc = 2; psc = 2;
writew(armxor_rate / (clock * 2) - 7 + psc, OMAP_I2C_SCLL); omap_i2c_write(omap_i2c_dev,
writew(armxor_rate / (clock * 2) - 7 + psc, OMAP_I2C_SCLH); 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: */ /* Set Own Address: */
writew(own, OMAP_I2C_OA); omap_i2c_write(omap_i2c_dev, own, OMAP_I2C_OA);
/* Enable interrupts */ /* Enable interrupts */
writew((OMAP_I2C_IE_XRDY_IE | OMAP_I2C_IE_RRDY_IE | OMAP_I2C_IE_ARDY_IE | omap_i2c_write(omap_i2c_dev,
OMAP_I2C_IE_NACK_IE | OMAP_I2C_IE_AL_IE), OMAP_I2C_IE); (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);
/* Take the I2C module out of reset: */ /* Take the I2C module out of reset: */
writew(OMAP_I2C_CON_EN, OMAP_I2C_CON); omap_i2c_write(omap_i2c_dev, OMAP_I2C_CON_EN, OMAP_I2C_CON);
if (!omap_i2c_rev1()){ if (!omap_i2c_dev->rev1){
timeout = jiffies + OMAP_I2C_TIMEOUT; timeout = jiffies + OMAP_I2C_TIMEOUT;
while (!(readw(OMAP_I2C_SYSS) & OMAP_I2C_SYSS_RDONE)) { while (!(omap_i2c_read(omap_i2c_dev, OMAP_I2C_SYSS) &
OMAP_I2C_SYSS_RDONE)) {
if (time_after(jiffies, timeout)) { if (time_after(jiffies, timeout)) {
err("timeout waiting for I2C reset complete"); pr_err("timeout waiting for I2C reset");
break; break;
} }
msleep(1); msleep(1);
...@@ -193,18 +264,18 @@ static void omap_i2c_reset(void) ...@@ -193,18 +264,18 @@ static void omap_i2c_reset(void)
* Waiting on Bus Busy * Waiting on Bus Busy
*/ */
static int static int
omap_i2c_wait_for_bb(char allow_sleep) omap_i2c_wait_for_bb(struct omap_i2c_dev *omap_i2c_dev, char allow_sleep)
{ {
unsigned long timeout; unsigned long timeout;
timeout = jiffies + OMAP_I2C_TIMEOUT; timeout = jiffies + OMAP_I2C_TIMEOUT;
while (readw(OMAP_I2C_STAT) & OMAP_I2C_STAT_BB) { while (omap_i2c_read(omap_i2c_dev, OMAP_I2C_STAT) & OMAP_I2C_STAT_BB) {
if (time_after(jiffies, timeout)) { if (time_after(jiffies, timeout)) {
printk(KERN_WARNING "timeout waiting for bus ready\n"); printk(KERN_WARNING "timeout waiting for bus ready\n");
return -ETIMEDOUT; return -ETIMEDOUT;
} }
if (allow_sleep) if (allow_sleep)
schedule_timeout(1); msleep(1);
} }
return 0; return 0;
...@@ -216,15 +287,15 @@ omap_i2c_wait_for_bb(char allow_sleep) ...@@ -216,15 +287,15 @@ omap_i2c_wait_for_bb(char allow_sleep)
static int static int
omap_i2c_xfer_msg(struct i2c_adapter *adap, struct i2c_msg *msg, int stop) omap_i2c_xfer_msg(struct i2c_adapter *adap, struct i2c_msg *msg, int stop)
{ {
struct omap_i2c_dev *dev = i2c_get_adapdata(adap); struct omap_i2c_dev *omap_i2c_dev = i2c_get_adapdata(adap);
u8 zero_byte = 0; u8 zero_byte = 0;
int r; int r;
u16 w; u16 w;
DEB2("addr: 0x%04x, len: %d, flags: 0x%x, stop: %d", DEB2("addr: 0x%04x, len: %d, flags: 0x%x, stop: %d\n",
msg->addr, msg->len, msg->flags, stop); msg->addr, msg->len, msg->flags, stop);
writew(msg->addr, OMAP_I2C_SA); omap_i2c_write(omap_i2c_dev, msg->addr, OMAP_I2C_SA);
/* Sigh, seems we can't do zero length transactions. Thus, we /* Sigh, seems we can't do zero length transactions. Thus, we
* can't probe for devices w/o actually sending/receiving at least * can't probe for devices w/o actually sending/receiving at least
...@@ -234,15 +305,15 @@ omap_i2c_xfer_msg(struct i2c_adapter *adap, struct i2c_msg *msg, int stop) ...@@ -234,15 +305,15 @@ omap_i2c_xfer_msg(struct i2c_adapter *adap, struct i2c_msg *msg, int stop)
* probes. * probes.
*/ */
if (msg->len == 0) { if (msg->len == 0) {
dev->buf = &zero_byte; omap_i2c_dev->buf = &zero_byte;
dev->buf_len = 1; omap_i2c_dev->buf_len = 1;
} else { } else {
dev->buf = msg->buf; omap_i2c_dev->buf = msg->buf;
dev->buf_len = msg->len; omap_i2c_dev->buf_len = msg->len;
} }
writew(dev->buf_len, OMAP_I2C_CNT); omap_i2c_write(omap_i2c_dev, omap_i2c_dev->buf_len, OMAP_I2C_CNT);
dev->cmd_complete = 0; omap_i2c_dev->cmd_complete = 0;
dev->cmd_err = 0; omap_i2c_dev->cmd_err = 0;
w = OMAP_I2C_CON_EN | OMAP_I2C_CON_MST | OMAP_I2C_CON_STT; w = OMAP_I2C_CON_EN | OMAP_I2C_CON_MST | OMAP_I2C_CON_STT;
if (msg->flags & I2C_M_TEN) if (msg->flags & I2C_M_TEN)
w |= OMAP_I2C_CON_XA; w |= OMAP_I2C_CON_XA;
...@@ -250,36 +321,39 @@ omap_i2c_xfer_msg(struct i2c_adapter *adap, struct i2c_msg *msg, int stop) ...@@ -250,36 +321,39 @@ omap_i2c_xfer_msg(struct i2c_adapter *adap, struct i2c_msg *msg, int stop)
w |= OMAP_I2C_CON_TRX; w |= OMAP_I2C_CON_TRX;
if (stop) if (stop)
w |= OMAP_I2C_CON_STP; w |= OMAP_I2C_CON_STP;
writew(w, OMAP_I2C_CON); omap_i2c_write(omap_i2c_dev, w, OMAP_I2C_CON);
r = wait_event_interruptible_timeout(dev->cmd_wait, r = wait_event_interruptible_timeout(omap_i2c_dev->cmd_wait,
dev->cmd_complete, omap_i2c_dev->cmd_complete,
OMAP_I2C_TIMEOUT); OMAP_I2C_TIMEOUT);
dev->buf_len = 0;
omap_i2c_dev->buf_len = 0;
if (r < 0) if (r < 0)
return r; return r;
if (!dev->cmd_complete) { if (!omap_i2c_dev->cmd_complete) {
omap_i2c_reset(); omap_i2c_reset(omap_i2c_dev);
return -ETIMEDOUT; return -ETIMEDOUT;
} }
if (!dev->cmd_err) if (!omap_i2c_dev->cmd_err)
return msg->len; return msg->len;
/* We have an error */ /* We have an error */
if (dev->cmd_err & OMAP_I2C_STAT_NACK) { if (omap_i2c_dev->cmd_err & OMAP_I2C_STAT_NACK) {
if (msg->flags & I2C_M_IGNORE_NAK) if (msg->flags & I2C_M_IGNORE_NAK)
return msg->len; return msg->len;
if (stop) if (stop)
writew(readw(OMAP_I2C_CON) | OMAP_I2C_CON_STP, omap_i2c_write(omap_i2c_dev,
OMAP_I2C_CON); omap_i2c_read(omap_i2c_dev, OMAP_I2C_CON) |
OMAP_I2C_CON_STP,
OMAP_I2C_CON);
return -EREMOTEIO; return -EREMOTEIO;
} }
if ((OMAP_I2C_STAT_AL | OMAP_I2C_STAT_ROVR | OMAP_I2C_STAT_XUDF) if ((OMAP_I2C_STAT_AL | OMAP_I2C_STAT_ROVR | OMAP_I2C_STAT_XUDF)
& dev->cmd_err) { & omap_i2c_dev->cmd_err) {
omap_i2c_reset(); omap_i2c_reset(omap_i2c_dev);
return -EIO; return -EIO;
} }
return msg->len; return msg->len;
} }
/* /*
...@@ -289,10 +363,11 @@ omap_i2c_xfer_msg(struct i2c_adapter *adap, struct i2c_msg *msg, int stop) ...@@ -289,10 +363,11 @@ omap_i2c_xfer_msg(struct i2c_adapter *adap, struct i2c_msg *msg, int stop)
static int static int
omap_i2c_xfer(struct i2c_adapter *adap, struct i2c_msg msgs[], int num) omap_i2c_xfer(struct i2c_adapter *adap, struct i2c_msg msgs[], int num)
{ {
struct omap_i2c_dev *omap_i2c_dev = i2c_get_adapdata(adap);
int i; int i;
int r = 0; int r = 0;
DEB1("msgs: %d", num); DEB1("msgs: %d\n", num);
if (num < 1 || num > MAX_MESSAGES) if (num < 1 || num > MAX_MESSAGES)
return -EINVAL; return -EINVAL;
...@@ -302,18 +377,18 @@ omap_i2c_xfer(struct i2c_adapter *adap, struct i2c_msg msgs[], int num) ...@@ -302,18 +377,18 @@ omap_i2c_xfer(struct i2c_adapter *adap, struct i2c_msg msgs[], int num)
if (msgs[i].buf == NULL) if (msgs[i].buf == NULL)
return -EINVAL; return -EINVAL;
// REVISIT: initialize and use adap->retries // REVISIT: initialize and use adap->retries
if ((r = omap_i2c_wait_for_bb(1)) < 0) if ((r = omap_i2c_wait_for_bb(omap_i2c_dev, 1)) < 0)
return r; return r;
for (i = 0; i < num; i++) { for (i = 0; i < num; i++) {
DEB2("msg: %d, addr: 0x%04x, len: %d, flags: 0x%x", DEB2("msg: %d, addr: 0x%04x, len: %d, flags: 0x%x\n",
i, msgs[i].addr, msgs[i].len, msgs[i].flags); i, msgs[i].addr, msgs[i].len, msgs[i].flags);
r = omap_i2c_xfer_msg(adap, &msgs[i], (i == (num - 1))); r = omap_i2c_xfer_msg(adap, &msgs[i], (i == (num - 1)));
DEB2("r: %d", r); DEB2("r: %d\n", r);
if (r != msgs[i].len) if (r != msgs[i].len)
break; break;
...@@ -322,7 +397,7 @@ omap_i2c_xfer(struct i2c_adapter *adap, struct i2c_msg msgs[], int num) ...@@ -322,7 +397,7 @@ omap_i2c_xfer(struct i2c_adapter *adap, struct i2c_msg msgs[], int num)
if (r >= 0 && num > 1) if (r >= 0 && num > 1)
r = num; r = num;
DEB1("r: %d", r); DEB2("r: %d\n", r);
return r; return r;
} }
...@@ -336,95 +411,104 @@ omap_i2c_func(struct i2c_adapter *adap) ...@@ -336,95 +411,104 @@ omap_i2c_func(struct i2c_adapter *adap)
static inline void static inline void
omap_i2c_complete_cmd(struct omap_i2c_dev *dev) omap_i2c_complete_cmd(struct omap_i2c_dev *dev)
{ {
dev->cmd_complete = 1; dev->cmd_complete = 1;
wake_up(&dev->cmd_wait); wake_up(&dev->cmd_wait);
} }
static irqreturn_t static irqreturn_t
omap_i2c_isr(int this_irq, void *dev_id, struct pt_regs *regs) omap_i2c_isr(int this_irq, void *dev_id, struct pt_regs *regs)
{ {
struct omap_i2c_dev *dev = dev_id; struct omap_i2c_dev *omap_i2c_dev = dev_id;
u16 bits; u16 bits;
u16 stat, w; u16 stat, w;
int count = 0; int count = 0;
u16 iv_read; u16 iv_read;
bits = readw(OMAP_I2C_IE); bits = omap_i2c_read(omap_i2c_dev, OMAP_I2C_IE);
while ((stat = readw(OMAP_I2C_STAT)) & bits) { while ((stat = omap_i2c_read(omap_i2c_dev, OMAP_I2C_STAT)) & bits) {
if (count++ == 100) { if (count++ == 100) {
printk(KERN_WARNING "Too much work in one IRQ\n"); printk(KERN_WARNING "Too much work in one IRQ\n");
break; break;
} }
writew(stat, OMAP_I2C_STAT); omap_i2c_write(omap_i2c_dev, stat, OMAP_I2C_STAT);
if (stat & OMAP_I2C_STAT_ARDY) { if (stat & OMAP_I2C_STAT_ARDY) {
omap_i2c_complete_cmd(dev); omap_i2c_complete_cmd(omap_i2c_dev);
writew(OMAP_I2C_STAT_ARDY, OMAP_I2C_STAT); omap_i2c_write(omap_i2c_dev, OMAP_I2C_STAT_ARDY,
if (omap_i2c_rev1()) OMAP_I2C_STAT);
iv_read = readw(OMAP_I2C_IV); if (omap_i2c_dev->rev1)
iv_read = omap_i2c_read(omap_i2c_dev,
OMAP_I2C_IV);
continue; continue;
} }
if (stat & OMAP_I2C_STAT_RRDY) { if (stat & OMAP_I2C_STAT_RRDY) {
w = readw(OMAP_I2C_DATA); w = omap_i2c_read(omap_i2c_dev, OMAP_I2C_DATA);
if (dev->buf_len) { if (omap_i2c_dev->buf_len) {
*dev->buf++ = w; *omap_i2c_dev->buf++ = w;
dev->buf_len--; omap_i2c_dev->buf_len--;
if (dev->buf_len) { if (omap_i2c_dev->buf_len) {
*dev->buf++ = w >> 8; *omap_i2c_dev->buf++ = w >> 8;
dev->buf_len--; omap_i2c_dev->buf_len--;
} }
if (omap_i2c_rev1() && !dev->buf_len) if (omap_i2c_dev->rev1 &&
omap_i2c_complete_cmd(dev); !omap_i2c_dev->buf_len)
omap_i2c_complete_cmd(omap_i2c_dev);
} else } else
err("RRDY IRQ while no data requested"); pr_err("RRDY IRQ while no data requested");
writew(OMAP_I2C_STAT_RRDY, OMAP_I2C_STAT); omap_i2c_write(omap_i2c_dev, OMAP_I2C_STAT_RRDY,
if (omap_i2c_rev1()) OMAP_I2C_STAT);
iv_read = readw(OMAP_I2C_IV); if (omap_i2c_dev->rev1)
iv_read = omap_i2c_read(omap_i2c_dev,
OMAP_I2C_IV);
continue; continue;
} }
if (stat & OMAP_I2C_STAT_XRDY) { if (stat & OMAP_I2C_STAT_XRDY) {
w = 0; w = 0;
if (dev->buf_len) { if (omap_i2c_dev->buf_len) {
w = *dev->buf++; w = *omap_i2c_dev->buf++;
dev->buf_len--; omap_i2c_dev->buf_len--;
if (dev->buf_len) { if (omap_i2c_dev->buf_len) {
w |= *dev->buf++ << 8; w |= *omap_i2c_dev->buf++ << 8;
dev->buf_len--; omap_i2c_dev->buf_len--;
} }
} else { } else {
err("XRDY IRQ while no data to send"); pr_err("XRDY IRQ while no data to send");
/* FIXME: shouldn't we bail out here? */
} }
writew(w, OMAP_I2C_DATA); omap_i2c_write(omap_i2c_dev, w, OMAP_I2C_DATA);
/* We have to make sure the XRDY bit is reset */ /* We have to make sure the XRDY bit is reset */
writew(OMAP_I2C_STAT_XRDY, OMAP_I2C_STAT); omap_i2c_write(omap_i2c_dev, OMAP_I2C_STAT_XRDY,
if (omap_i2c_rev1()) { OMAP_I2C_STAT);
iv_read = readw(OMAP_I2C_IV); if (omap_i2c_dev->rev1) {
if (!dev->buf_len) iv_read = omap_i2c_read(omap_i2c_dev,
omap_i2c_complete_cmd(dev); OMAP_I2C_IV);
if (!omap_i2c_dev->buf_len)
omap_i2c_complete_cmd(omap_i2c_dev);
} }
continue; continue;
} }
if (stat & OMAP_I2C_STAT_ROVR) { if (stat & OMAP_I2C_STAT_ROVR) {
pr_debug("Receive overrun\n"); pr_err("Receive overrun\n");
dev->cmd_err |= OMAP_I2C_STAT_ROVR; omap_i2c_dev->cmd_err |= OMAP_I2C_STAT_ROVR;
} }
if (stat & OMAP_I2C_STAT_XUDF) { if (stat & OMAP_I2C_STAT_XUDF) {
pr_debug("Transmit overflow\n"); pr_err("Transmit overflow\n");
dev->cmd_err |= OMAP_I2C_STAT_XUDF; omap_i2c_dev->cmd_err |= OMAP_I2C_STAT_XUDF;
} }
if (stat & OMAP_I2C_STAT_NACK) { if (stat & OMAP_I2C_STAT_NACK) {
dev->cmd_err |= OMAP_I2C_STAT_NACK; omap_i2c_dev->cmd_err |= OMAP_I2C_STAT_NACK;
omap_i2c_complete_cmd(dev); omap_i2c_complete_cmd(omap_i2c_dev);
writew(OMAP_I2C_CON_STP, OMAP_I2C_CON); omap_i2c_write(omap_i2c_dev, OMAP_I2C_CON_STP,
OMAP_I2C_CON);
} }
if (stat & OMAP_I2C_STAT_AL) { if (stat & OMAP_I2C_STAT_AL) {
pr_debug("Arbitration lost\n"); pr_err("Arbitration lost\n");
dev->cmd_err |= OMAP_I2C_STAT_AL; omap_i2c_dev->cmd_err |= OMAP_I2C_STAT_AL;
omap_i2c_complete_cmd(dev); omap_i2c_complete_cmd(omap_i2c_dev);
} }
if (omap_i2c_rev1()) if (omap_i2c_dev->rev1)
iv_read = readw(OMAP_I2C_IV); iv_read = omap_i2c_read(omap_i2c_dev, OMAP_I2C_IV);
} }
return IRQ_HANDLED; return IRQ_HANDLED;
...@@ -435,86 +519,171 @@ static struct i2c_algorithm omap_i2c_algo = { ...@@ -435,86 +519,171 @@ static struct i2c_algorithm omap_i2c_algo = {
.functionality = omap_i2c_func, .functionality = omap_i2c_func,
}; };
static struct i2c_adapter omap_i2c_adap = { #ifdef CONFIG_ARCH_OMAP24XX
.owner = THIS_MODULE, static int omap_i2c_24xx_get_clocks(struct omap_i2c_dev *omap_i2c_dev, int bus)
.class = I2C_CLASS_HWMON, {
.name = "OMAP I2C adapter", if (!cpu_is_omap24xx())
.algo = &omap_i2c_algo, return 0;
};
static int __init 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_use(omap_i2c_dev->iclk);
clk_use(omap_i2c_dev->fclk);
} else {
clk_unuse(omap_i2c_dev->iclk);
clk_unuse(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 device *dev) omap_i2c_probe(struct device *dev)
{ {
struct platform_device *pdev = to_platform_device(dev); struct platform_device *pdev = to_platform_device(dev);
struct resource *mem; struct omap_i2c_dev *omap_i2c_dev;
struct i2c_adapter *adap;
struct resource *mem, *irq;
int r; int r;
/* NOTE: driver uses the static register mapping */ /* NOTE: driver uses the static register mapping */
mem = platform_get_resource(pdev, IORESOURCE_MEM, 0); mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
if (!mem) { if (!mem) {
pr_debug("%s: no mem resource?\n", driver_name); pr_err("%s: no mem resource?\n", driver_name);
return -ENODEV;
}
irq = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
if (!irq) {
pr_err("%s: no irq resource?\n", driver_name);
return -ENODEV; return -ENODEV;
} }
r = (int) request_mem_region(mem->start, (mem->end - mem->start) + 1, r = (int) request_mem_region(mem->start, (mem->end - mem->start) + 1,
driver_name); driver_name);
if (!r) { if (!r) {
pr_debug("%s: I2C region already claimed\n", driver_name); pr_err("%s: I2C region already claimed\n", driver_name);
return -EBUSY; return -EBUSY;
} }
if (clock > 200) if (clock > 200)
clock = 400; /*Fast mode */ clock = 400; /* Fast mode */
else else
clock = 100; /*Standard mode */ clock = 100; /* Standard mode */
if (own < 1 || own > 0x7f) if (own < 1 || own > 0x7f)
own = DEFAULT_OWN; own = DEFAULT_OWN;
memset(&omap_i2c_dev, 0, sizeof(omap_i2c_dev)); omap_i2c_dev = kmalloc(sizeof(struct omap_i2c_dev), GFP_KERNEL);
init_waitqueue_head(&omap_i2c_dev.cmd_wait); if (!omap_i2c_dev) {
r = -ENOMEM;
goto do_release_region;
}
memset(omap_i2c_dev, 0, sizeof(struct omap_i2c_dev));
omap_i2c_dev->dev = dev;
omap_i2c_dev->irq = irq->start;
omap_i2c_dev->base = (void __iomem *)IO_ADDRESS(mem->start);
dev_set_drvdata(omap_i2c_dev->dev, omap_i2c_dev);
init_waitqueue_head(&omap_i2c_dev->cmd_wait);
if ((r = omap_i2c_24xx_get_clocks(omap_i2c_dev, pdev->id)) != 0)
goto do_free_mem;
omap_i2c_24xx_enable_clocks(omap_i2c_dev, 1);
#ifdef CONFIG_ARCH_OMAP15XX
omap_i2c_dev->rev1 = omap_i2c_read(omap_i2c_dev, OMAP_I2C_REV) < 0x20;
#endif
/* reset ASAP, clearing any IRQs */ /* reset ASAP, clearing any IRQs */
omap_i2c_reset(); omap_i2c_reset(omap_i2c_dev);
r = request_irq(INT_I2C, omap_i2c_isr, 0, driver_name, &omap_i2c_dev); r = request_irq(omap_i2c_dev->irq, omap_i2c_isr, 0,
driver_name, omap_i2c_dev);
if (r) { if (r) {
pr_debug("%s: failure requesting irq\n", driver_name); pr_err("%s: failure requesting irq %i\n",
goto do_release_region; driver_name, omap_i2c_dev->irq);
goto do_unuse_clocks;
} }
r = omap_i2c_read(omap_i2c_dev, OMAP_I2C_REV) & 0xff;
r = readw(OMAP_I2C_REV) & 0xff; pr_info("%s: bus %d rev%d.%d at %d KHz\n", driver_name,
pr_info("%s: rev%d.%d at %d KHz\n", driver_name, pdev->id - 1, r >> 4, r & 0xf, clock);
r >> 4, r & 0xf, clock);
adap = &omap_i2c_dev->adapter;
i2c_set_adapdata(adap, omap_i2c_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 = dev;
/* i2c device drivers may be active on return from add_adapter() */ /* i2c device drivers may be active on return from add_adapter() */
i2c_set_adapdata(&omap_i2c_adap, &omap_i2c_dev); r = i2c_add_adapter(adap);
omap_i2c_adap.dev.parent = dev;
r = i2c_add_adapter(&omap_i2c_adap);
if (r) { if (r) {
pr_debug("%s: failure adding adapter\n", driver_name); pr_err("%s: failure adding adapter\n", driver_name);
goto do_free_irq; goto do_free_irq;
} }
return 0; return 0;
do_free_irq: do_free_irq:
free_irq(INT_I2C, &omap_i2c_dev); free_irq(omap_i2c_dev->irq, omap_i2c_dev);
do_unuse_clocks:
omap_i2c_24xx_enable_clocks(omap_i2c_dev, 0);
omap_i2c_24xx_put_clocks(omap_i2c_dev);
do_free_mem:
kfree(omap_i2c_dev);
do_release_region: do_release_region:
writew(0, OMAP_I2C_CON); omap_i2c_write(omap_i2c_dev, 0, OMAP_I2C_CON);
release_mem_region(mem->start, (mem->end - mem->start) + 1); release_mem_region(mem->start, (mem->end - mem->start) + 1);
return r; return r;
} }
static int __exit static int
omap_i2c_remove(struct device *dev) omap_i2c_remove(struct device *dev)
{ {
struct platform_device *pdev = to_platform_device(dev); struct platform_device *pdev = to_platform_device(dev);
struct omap_i2c_dev *omap_i2c_dev = dev_get_drvdata(dev);
struct resource *mem; struct resource *mem;
writew(0, OMAP_I2C_CON); omap_i2c_write(omap_i2c_dev, 0, OMAP_I2C_CON);
i2c_del_adapter(&omap_i2c_adap); i2c_del_adapter(&omap_i2c_dev->adapter);
free_irq(INT_I2C, &omap_i2c_dev); 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);
mem = platform_get_resource(pdev, IORESOURCE_MEM, 0); mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
release_mem_region(mem->start, (mem->end - mem->start) + 1); release_mem_region(mem->start, (mem->end - mem->start) + 1);
return 0; return 0;
...@@ -524,7 +693,7 @@ static struct device_driver omap_i2c_driver = { ...@@ -524,7 +693,7 @@ static struct device_driver omap_i2c_driver = {
.name = (char *)driver_name, .name = (char *)driver_name,
.bus = &platform_bus_type, .bus = &platform_bus_type,
.probe = omap_i2c_probe, .probe = omap_i2c_probe,
.remove = __exit_p(omap_i2c_remove), .remove = omap_i2c_remove,
}; };
/* i2c may be needed to bring up other drivers */ /* i2c may be needed to bring up other drivers */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment