blob: fbafed29fb8153ba404c27c8ec5183a4e82520ff [file] [log] [blame]
Russell Kingb652b432005-06-15 12:38:14 +01001/*
2 * i2c_adap_pxa.c
3 *
4 * I2C adapter for the PXA I2C bus access.
5 *
6 * Copyright (C) 2002 Intrinsyc Software Inc.
7 * Copyright (C) 2004-2005 Deep Blue Solutions Ltd.
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 *
13 * History:
14 * Apr 2002: Initial version [CS]
Daniel Mack3ad2f3f2010-02-03 08:01:28 +080015 * Jun 2002: Properly separated algo/adap [FB]
Russell Kingb652b432005-06-15 12:38:14 +010016 * Jan 2003: Fixed several bugs concerning interrupt handling [Kai-Uwe Bloem]
17 * Jan 2003: added limited signal handling [Kai-Uwe Bloem]
18 * Sep 2004: Major rework to ensure efficient bus handling [RMK]
19 * Dec 2004: Added support for PXA27x and slave device probing [Liam Girdwood]
20 * Feb 2005: Rework slave mode handling [RMK]
21 */
22#include <linux/kernel.h>
23#include <linux/module.h>
24#include <linux/i2c.h>
Russell Kingb652b432005-06-15 12:38:14 +010025#include <linux/init.h>
26#include <linux/time.h>
27#include <linux/sched.h>
28#include <linux/delay.h>
29#include <linux/errno.h>
30#include <linux/interrupt.h>
31#include <linux/i2c-pxa.h>
Haojian Zhuang63fe1222012-03-01 13:04:44 +080032#include <linux/of.h>
33#include <linux/of_device.h>
Sebastian Andrzej Siewiorbaa8cab2011-02-23 12:38:20 +010034#include <linux/of_i2c.h>
Russell Kingd052d1b2005-10-29 19:07:23 +010035#include <linux/platform_device.h>
Russell Kingc3cef3f2007-08-20 10:19:10 +010036#include <linux/err.h>
37#include <linux/clk.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090038#include <linux/slab.h>
H Hartley Sweeten21782182010-05-21 18:41:01 +020039#include <linux/io.h>
Sebastian Andrzej Siewiorb4593962011-02-23 12:38:16 +010040#include <linux/i2c/pxa-i2c.h>
Russell Kingb652b432005-06-15 12:38:14 +010041
Russell Kingb652b432005-06-15 12:38:14 +010042#include <asm/irq.h>
Eric Miao283afa02008-09-08 14:15:08 +080043
Sebastian Andrzej Siewiord6668c72011-02-23 12:38:15 +010044struct pxa_reg_layout {
45 u32 ibmr;
46 u32 idbr;
47 u32 icr;
48 u32 isr;
49 u32 isar;
50};
51
52enum pxa_i2c_types {
53 REGS_PXA2XX,
54 REGS_PXA3XX,
Sebastian Andrzej Siewior7e94dd12011-03-02 11:26:53 +010055 REGS_CE4100,
Sebastian Andrzej Siewiord6668c72011-02-23 12:38:15 +010056};
57
Eric Miao283afa02008-09-08 14:15:08 +080058/*
Sebastian Andrzej Siewiord6668c72011-02-23 12:38:15 +010059 * I2C registers definitions
Eric Miaof23d4912009-04-13 14:43:25 +080060 */
Sebastian Andrzej Siewiord6668c72011-02-23 12:38:15 +010061static struct pxa_reg_layout pxa_reg_layout[] = {
62 [REGS_PXA2XX] = {
63 .ibmr = 0x00,
Sebastian Andrzej Siewiord6668c72011-02-23 12:38:15 +010064 .idbr = 0x08,
65 .icr = 0x10,
66 .isr = 0x18,
67 .isar = 0x20,
68 },
Vasily Khoruzhick23e74a82011-03-13 15:53:28 +020069 [REGS_PXA3XX] = {
70 .ibmr = 0x00,
71 .idbr = 0x04,
72 .icr = 0x08,
73 .isr = 0x0c,
74 .isar = 0x10,
75 },
Sebastian Andrzej Siewior7e94dd12011-03-02 11:26:53 +010076 [REGS_CE4100] = {
77 .ibmr = 0x14,
78 .idbr = 0x0c,
79 .icr = 0x00,
80 .isr = 0x04,
81 /* no isar register */
82 },
Sebastian Andrzej Siewiord6668c72011-02-23 12:38:15 +010083};
Eric Miaof23d4912009-04-13 14:43:25 +080084
85static const struct platform_device_id i2c_pxa_id_table[] = {
Sebastian Andrzej Siewiord6668c72011-02-23 12:38:15 +010086 { "pxa2xx-i2c", REGS_PXA2XX },
87 { "pxa3xx-pwri2c", REGS_PXA3XX },
Sebastian Andrzej Siewior7e94dd12011-03-02 11:26:53 +010088 { "ce4100-i2c", REGS_CE4100 },
Eric Miaof23d4912009-04-13 14:43:25 +080089 { },
90};
91MODULE_DEVICE_TABLE(platform, i2c_pxa_id_table);
92
93/*
Sebastian Andrzej Siewiord6668c72011-02-23 12:38:15 +010094 * I2C bit definitions
Eric Miao283afa02008-09-08 14:15:08 +080095 */
Eric Miao283afa02008-09-08 14:15:08 +080096
97#define ICR_START (1 << 0) /* start bit */
98#define ICR_STOP (1 << 1) /* stop bit */
99#define ICR_ACKNAK (1 << 2) /* send ACK(0) or NAK(1) */
100#define ICR_TB (1 << 3) /* transfer byte bit */
101#define ICR_MA (1 << 4) /* master abort */
102#define ICR_SCLE (1 << 5) /* master clock enable */
103#define ICR_IUE (1 << 6) /* unit enable */
104#define ICR_GCD (1 << 7) /* general call disable */
105#define ICR_ITEIE (1 << 8) /* enable tx interrupts */
106#define ICR_IRFIE (1 << 9) /* enable rx interrupts */
107#define ICR_BEIE (1 << 10) /* enable bus error ints */
108#define ICR_SSDIE (1 << 11) /* slave STOP detected int enable */
109#define ICR_ALDIE (1 << 12) /* enable arbitration interrupt */
110#define ICR_SADIE (1 << 13) /* slave address detected int enable */
111#define ICR_UR (1 << 14) /* unit reset */
112#define ICR_FM (1 << 15) /* fast mode */
113
114#define ISR_RWM (1 << 0) /* read/write mode */
115#define ISR_ACKNAK (1 << 1) /* ack/nak status */
116#define ISR_UB (1 << 2) /* unit busy */
117#define ISR_IBB (1 << 3) /* bus busy */
118#define ISR_SSD (1 << 4) /* slave stop detected */
119#define ISR_ALD (1 << 5) /* arbitration loss detected */
120#define ISR_ITE (1 << 6) /* tx buffer empty */
121#define ISR_IRF (1 << 7) /* rx buffer full */
122#define ISR_GCAD (1 << 8) /* general call address detected */
123#define ISR_SAD (1 << 9) /* slave address detected */
124#define ISR_BED (1 << 10) /* bus error no ACK/NAK */
Russell Kingb652b432005-06-15 12:38:14 +0100125
126struct pxa_i2c {
127 spinlock_t lock;
128 wait_queue_head_t wait;
129 struct i2c_msg *msg;
130 unsigned int msg_num;
131 unsigned int msg_idx;
132 unsigned int msg_ptr;
133 unsigned int slave_addr;
134
135 struct i2c_adapter adap;
Russell Kingc3cef3f2007-08-20 10:19:10 +0100136 struct clk *clk;
Russell Kingb652b432005-06-15 12:38:14 +0100137#ifdef CONFIG_I2C_PXA_SLAVE
138 struct i2c_slave_client *slave;
139#endif
140
141 unsigned int irqlogidx;
142 u32 isrlog[32];
143 u32 icrlog[32];
Guennadi Liakhovetskia7b4e552007-02-08 09:43:26 +0100144
145 void __iomem *reg_base;
Sebastian Andrzej Siewiord6668c72011-02-23 12:38:15 +0100146 void __iomem *reg_ibmr;
147 void __iomem *reg_idbr;
148 void __iomem *reg_icr;
149 void __iomem *reg_isr;
150 void __iomem *reg_isar;
Guennadi Liakhovetskia7b4e552007-02-08 09:43:26 +0100151
152 unsigned long iobase;
153 unsigned long iosize;
154
155 int irq;
Jonathan Cameronc46c9482008-10-03 15:07:36 +0100156 unsigned int use_pio :1;
157 unsigned int fast_mode :1;
Russell Kingb652b432005-06-15 12:38:14 +0100158};
159
Sebastian Andrzej Siewiord6668c72011-02-23 12:38:15 +0100160#define _IBMR(i2c) ((i2c)->reg_ibmr)
161#define _IDBR(i2c) ((i2c)->reg_idbr)
162#define _ICR(i2c) ((i2c)->reg_icr)
163#define _ISR(i2c) ((i2c)->reg_isr)
164#define _ISAR(i2c) ((i2c)->reg_isar)
Guennadi Liakhovetskia7b4e552007-02-08 09:43:26 +0100165
Russell Kingb652b432005-06-15 12:38:14 +0100166/*
167 * I2C Slave mode address
168 */
169#define I2C_PXA_SLAVE_ADDR 0x1
170
Russell Kingb652b432005-06-15 12:38:14 +0100171#ifdef DEBUG
172
173struct bits {
174 u32 mask;
175 const char *set;
176 const char *unset;
177};
Jiri Slabyed113992007-10-18 23:40:28 -0700178#define PXA_BIT(m, s, u) { .mask = m, .set = s, .unset = u }
Russell Kingb652b432005-06-15 12:38:14 +0100179
180static inline void
181decode_bits(const char *prefix, const struct bits *bits, int num, u32 val)
182{
183 printk("%s %08x: ", prefix, val);
184 while (num--) {
185 const char *str = val & bits->mask ? bits->set : bits->unset;
186 if (str)
187 printk("%s ", str);
188 bits++;
189 }
190}
191
192static const struct bits isr_bits[] = {
Jiri Slabyed113992007-10-18 23:40:28 -0700193 PXA_BIT(ISR_RWM, "RX", "TX"),
194 PXA_BIT(ISR_ACKNAK, "NAK", "ACK"),
195 PXA_BIT(ISR_UB, "Bsy", "Rdy"),
196 PXA_BIT(ISR_IBB, "BusBsy", "BusRdy"),
197 PXA_BIT(ISR_SSD, "SlaveStop", NULL),
198 PXA_BIT(ISR_ALD, "ALD", NULL),
199 PXA_BIT(ISR_ITE, "TxEmpty", NULL),
200 PXA_BIT(ISR_IRF, "RxFull", NULL),
201 PXA_BIT(ISR_GCAD, "GenCall", NULL),
202 PXA_BIT(ISR_SAD, "SlaveAddr", NULL),
203 PXA_BIT(ISR_BED, "BusErr", NULL),
Russell Kingb652b432005-06-15 12:38:14 +0100204};
205
206static void decode_ISR(unsigned int val)
207{
Russell King6fd60fa2005-09-08 21:04:58 +0100208 decode_bits(KERN_DEBUG "ISR", isr_bits, ARRAY_SIZE(isr_bits), val);
Russell Kingb652b432005-06-15 12:38:14 +0100209 printk("\n");
210}
211
212static const struct bits icr_bits[] = {
Jiri Slabyed113992007-10-18 23:40:28 -0700213 PXA_BIT(ICR_START, "START", NULL),
214 PXA_BIT(ICR_STOP, "STOP", NULL),
215 PXA_BIT(ICR_ACKNAK, "ACKNAK", NULL),
216 PXA_BIT(ICR_TB, "TB", NULL),
217 PXA_BIT(ICR_MA, "MA", NULL),
218 PXA_BIT(ICR_SCLE, "SCLE", "scle"),
219 PXA_BIT(ICR_IUE, "IUE", "iue"),
220 PXA_BIT(ICR_GCD, "GCD", NULL),
221 PXA_BIT(ICR_ITEIE, "ITEIE", NULL),
222 PXA_BIT(ICR_IRFIE, "IRFIE", NULL),
223 PXA_BIT(ICR_BEIE, "BEIE", NULL),
224 PXA_BIT(ICR_SSDIE, "SSDIE", NULL),
225 PXA_BIT(ICR_ALDIE, "ALDIE", NULL),
226 PXA_BIT(ICR_SADIE, "SADIE", NULL),
227 PXA_BIT(ICR_UR, "UR", "ur"),
Russell Kingb652b432005-06-15 12:38:14 +0100228};
229
Holger Schurigd6a7b5f2008-02-11 16:51:41 +0100230#ifdef CONFIG_I2C_PXA_SLAVE
Russell Kingb652b432005-06-15 12:38:14 +0100231static void decode_ICR(unsigned int val)
232{
Russell King6fd60fa2005-09-08 21:04:58 +0100233 decode_bits(KERN_DEBUG "ICR", icr_bits, ARRAY_SIZE(icr_bits), val);
Russell Kingb652b432005-06-15 12:38:14 +0100234 printk("\n");
235}
Holger Schurigd6a7b5f2008-02-11 16:51:41 +0100236#endif
Russell Kingb652b432005-06-15 12:38:14 +0100237
238static unsigned int i2c_debug = DEBUG;
239
240static void i2c_pxa_show_state(struct pxa_i2c *i2c, int lno, const char *fname)
241{
Guennadi Liakhovetskia7b4e552007-02-08 09:43:26 +0100242 dev_dbg(&i2c->adap.dev, "state:%s:%d: ISR=%08x, ICR=%08x, IBMR=%02x\n", fname, lno,
243 readl(_ISR(i2c)), readl(_ICR(i2c)), readl(_IBMR(i2c)));
Russell Kingb652b432005-06-15 12:38:14 +0100244}
245
Harvey Harrison08882d22008-04-22 22:16:47 +0200246#define show_state(i2c) i2c_pxa_show_state(i2c, __LINE__, __func__)
Russell Kingb652b432005-06-15 12:38:14 +0100247
248static void i2c_pxa_scream_blue_murder(struct pxa_i2c *i2c, const char *why)
249{
250 unsigned int i;
Frank Seidel154d22b2009-03-28 21:34:42 +0100251 printk(KERN_ERR "i2c: error: %s\n", why);
252 printk(KERN_ERR "i2c: msg_num: %d msg_idx: %d msg_ptr: %d\n",
Russell Kingb652b432005-06-15 12:38:14 +0100253 i2c->msg_num, i2c->msg_idx, i2c->msg_ptr);
Frank Seidel154d22b2009-03-28 21:34:42 +0100254 printk(KERN_ERR "i2c: ICR: %08x ISR: %08x\n",
255 readl(_ICR(i2c)), readl(_ISR(i2c)));
256 printk(KERN_DEBUG "i2c: log: ");
Russell Kingb652b432005-06-15 12:38:14 +0100257 for (i = 0; i < i2c->irqlogidx; i++)
258 printk("[%08x:%08x] ", i2c->isrlog[i], i2c->icrlog[i]);
259 printk("\n");
260}
261
Wolfram Sang0d813d92009-11-03 12:53:41 +0100262#else /* ifdef DEBUG */
263
264#define i2c_debug 0
265
266#define show_state(i2c) do { } while (0)
267#define decode_ISR(val) do { } while (0)
268#define decode_ICR(val) do { } while (0)
269#define i2c_pxa_scream_blue_murder(i2c, why) do { } while (0)
270
271#endif /* ifdef DEBUG / else */
272
273static void i2c_pxa_master_complete(struct pxa_i2c *i2c, int ret);
274static irqreturn_t i2c_pxa_handler(int this_irq, void *dev_id);
275
Russell Kingb652b432005-06-15 12:38:14 +0100276static inline int i2c_pxa_is_slavemode(struct pxa_i2c *i2c)
277{
Guennadi Liakhovetskia7b4e552007-02-08 09:43:26 +0100278 return !(readl(_ICR(i2c)) & ICR_SCLE);
Russell Kingb652b432005-06-15 12:38:14 +0100279}
280
281static void i2c_pxa_abort(struct pxa_i2c *i2c)
282{
Dmitry Baryshkov387fa6a2008-08-18 14:38:48 +0100283 int i = 250;
Russell Kingb652b432005-06-15 12:38:14 +0100284
285 if (i2c_pxa_is_slavemode(i2c)) {
Russell King6fd60fa2005-09-08 21:04:58 +0100286 dev_dbg(&i2c->adap.dev, "%s: called in slave mode\n", __func__);
Russell Kingb652b432005-06-15 12:38:14 +0100287 return;
288 }
289
Dmitry Baryshkov387fa6a2008-08-18 14:38:48 +0100290 while ((i > 0) && (readl(_IBMR(i2c)) & 0x1) == 0) {
Guennadi Liakhovetskia7b4e552007-02-08 09:43:26 +0100291 unsigned long icr = readl(_ICR(i2c));
Russell Kingb652b432005-06-15 12:38:14 +0100292
293 icr &= ~ICR_START;
294 icr |= ICR_ACKNAK | ICR_STOP | ICR_TB;
295
Guennadi Liakhovetskia7b4e552007-02-08 09:43:26 +0100296 writel(icr, _ICR(i2c));
Russell Kingb652b432005-06-15 12:38:14 +0100297
298 show_state(i2c);
299
Dmitry Baryshkov387fa6a2008-08-18 14:38:48 +0100300 mdelay(1);
301 i --;
Russell Kingb652b432005-06-15 12:38:14 +0100302 }
303
Guennadi Liakhovetskia7b4e552007-02-08 09:43:26 +0100304 writel(readl(_ICR(i2c)) & ~(ICR_MA | ICR_START | ICR_STOP),
305 _ICR(i2c));
Russell Kingb652b432005-06-15 12:38:14 +0100306}
307
308static int i2c_pxa_wait_bus_not_busy(struct pxa_i2c *i2c)
309{
310 int timeout = DEF_TIMEOUT;
311
Guennadi Liakhovetskia7b4e552007-02-08 09:43:26 +0100312 while (timeout-- && readl(_ISR(i2c)) & (ISR_IBB | ISR_UB)) {
313 if ((readl(_ISR(i2c)) & ISR_SAD) != 0)
Russell Kingb652b432005-06-15 12:38:14 +0100314 timeout += 4;
315
316 msleep(2);
317 show_state(i2c);
318 }
319
Roel Kluind10db3a2009-04-23 16:27:39 +0200320 if (timeout < 0)
Russell Kingb652b432005-06-15 12:38:14 +0100321 show_state(i2c);
322
Roel Kluind10db3a2009-04-23 16:27:39 +0200323 return timeout < 0 ? I2C_RETRY : 0;
Russell Kingb652b432005-06-15 12:38:14 +0100324}
325
326static int i2c_pxa_wait_master(struct pxa_i2c *i2c)
327{
328 unsigned long timeout = jiffies + HZ*4;
329
330 while (time_before(jiffies, timeout)) {
331 if (i2c_debug > 1)
Russell King6fd60fa2005-09-08 21:04:58 +0100332 dev_dbg(&i2c->adap.dev, "%s: %ld: ISR=%08x, ICR=%08x, IBMR=%02x\n",
Guennadi Liakhovetskia7b4e552007-02-08 09:43:26 +0100333 __func__, (long)jiffies, readl(_ISR(i2c)), readl(_ICR(i2c)), readl(_IBMR(i2c)));
Russell Kingb652b432005-06-15 12:38:14 +0100334
Guennadi Liakhovetskia7b4e552007-02-08 09:43:26 +0100335 if (readl(_ISR(i2c)) & ISR_SAD) {
Russell Kingb652b432005-06-15 12:38:14 +0100336 if (i2c_debug > 0)
Russell King6fd60fa2005-09-08 21:04:58 +0100337 dev_dbg(&i2c->adap.dev, "%s: Slave detected\n", __func__);
Russell Kingb652b432005-06-15 12:38:14 +0100338 goto out;
339 }
340
341 /* wait for unit and bus being not busy, and we also do a
342 * quick check of the i2c lines themselves to ensure they've
343 * gone high...
344 */
Guennadi Liakhovetskia7b4e552007-02-08 09:43:26 +0100345 if ((readl(_ISR(i2c)) & (ISR_UB | ISR_IBB)) == 0 && readl(_IBMR(i2c)) == 3) {
Russell Kingb652b432005-06-15 12:38:14 +0100346 if (i2c_debug > 0)
Russell King6fd60fa2005-09-08 21:04:58 +0100347 dev_dbg(&i2c->adap.dev, "%s: done\n", __func__);
Russell Kingb652b432005-06-15 12:38:14 +0100348 return 1;
349 }
350
351 msleep(1);
352 }
353
354 if (i2c_debug > 0)
Russell King6fd60fa2005-09-08 21:04:58 +0100355 dev_dbg(&i2c->adap.dev, "%s: did not free\n", __func__);
Russell Kingb652b432005-06-15 12:38:14 +0100356 out:
357 return 0;
358}
359
360static int i2c_pxa_set_master(struct pxa_i2c *i2c)
361{
362 if (i2c_debug)
Russell King6fd60fa2005-09-08 21:04:58 +0100363 dev_dbg(&i2c->adap.dev, "setting to bus master\n");
Russell Kingb652b432005-06-15 12:38:14 +0100364
Guennadi Liakhovetskia7b4e552007-02-08 09:43:26 +0100365 if ((readl(_ISR(i2c)) & (ISR_UB | ISR_IBB)) != 0) {
Russell King6fd60fa2005-09-08 21:04:58 +0100366 dev_dbg(&i2c->adap.dev, "%s: unit is busy\n", __func__);
Russell Kingb652b432005-06-15 12:38:14 +0100367 if (!i2c_pxa_wait_master(i2c)) {
Russell King6fd60fa2005-09-08 21:04:58 +0100368 dev_dbg(&i2c->adap.dev, "%s: error: unit busy\n", __func__);
Russell Kingb652b432005-06-15 12:38:14 +0100369 return I2C_RETRY;
370 }
371 }
372
Guennadi Liakhovetskia7b4e552007-02-08 09:43:26 +0100373 writel(readl(_ICR(i2c)) | ICR_SCLE, _ICR(i2c));
Russell Kingb652b432005-06-15 12:38:14 +0100374 return 0;
375}
376
377#ifdef CONFIG_I2C_PXA_SLAVE
378static int i2c_pxa_wait_slave(struct pxa_i2c *i2c)
379{
380 unsigned long timeout = jiffies + HZ*1;
381
382 /* wait for stop */
383
384 show_state(i2c);
385
386 while (time_before(jiffies, timeout)) {
387 if (i2c_debug > 1)
Russell King6fd60fa2005-09-08 21:04:58 +0100388 dev_dbg(&i2c->adap.dev, "%s: %ld: ISR=%08x, ICR=%08x, IBMR=%02x\n",
Guennadi Liakhovetskia7b4e552007-02-08 09:43:26 +0100389 __func__, (long)jiffies, readl(_ISR(i2c)), readl(_ICR(i2c)), readl(_IBMR(i2c)));
Russell Kingb652b432005-06-15 12:38:14 +0100390
Guennadi Liakhovetskia7b4e552007-02-08 09:43:26 +0100391 if ((readl(_ISR(i2c)) & (ISR_UB|ISR_IBB)) == 0 ||
392 (readl(_ISR(i2c)) & ISR_SAD) != 0 ||
393 (readl(_ICR(i2c)) & ICR_SCLE) == 0) {
Russell Kingb652b432005-06-15 12:38:14 +0100394 if (i2c_debug > 1)
Russell King6fd60fa2005-09-08 21:04:58 +0100395 dev_dbg(&i2c->adap.dev, "%s: done\n", __func__);
Russell Kingb652b432005-06-15 12:38:14 +0100396 return 1;
397 }
398
399 msleep(1);
400 }
401
402 if (i2c_debug > 0)
Russell King6fd60fa2005-09-08 21:04:58 +0100403 dev_dbg(&i2c->adap.dev, "%s: did not free\n", __func__);
Russell Kingb652b432005-06-15 12:38:14 +0100404 return 0;
405}
406
407/*
408 * clear the hold on the bus, and take of anything else
409 * that has been configured
410 */
411static void i2c_pxa_set_slave(struct pxa_i2c *i2c, int errcode)
412{
413 show_state(i2c);
414
415 if (errcode < 0) {
416 udelay(100); /* simple delay */
417 } else {
418 /* we need to wait for the stop condition to end */
419
420 /* if we where in stop, then clear... */
Guennadi Liakhovetskia7b4e552007-02-08 09:43:26 +0100421 if (readl(_ICR(i2c)) & ICR_STOP) {
Russell Kingb652b432005-06-15 12:38:14 +0100422 udelay(100);
Guennadi Liakhovetskia7b4e552007-02-08 09:43:26 +0100423 writel(readl(_ICR(i2c)) & ~ICR_STOP, _ICR(i2c));
Russell Kingb652b432005-06-15 12:38:14 +0100424 }
425
426 if (!i2c_pxa_wait_slave(i2c)) {
Russell King6fd60fa2005-09-08 21:04:58 +0100427 dev_err(&i2c->adap.dev, "%s: wait timedout\n",
428 __func__);
Russell Kingb652b432005-06-15 12:38:14 +0100429 return;
430 }
431 }
432
Guennadi Liakhovetskia7b4e552007-02-08 09:43:26 +0100433 writel(readl(_ICR(i2c)) & ~(ICR_STOP|ICR_ACKNAK|ICR_MA), _ICR(i2c));
434 writel(readl(_ICR(i2c)) & ~ICR_SCLE, _ICR(i2c));
Russell Kingb652b432005-06-15 12:38:14 +0100435
436 if (i2c_debug) {
Guennadi Liakhovetskia7b4e552007-02-08 09:43:26 +0100437 dev_dbg(&i2c->adap.dev, "ICR now %08x, ISR %08x\n", readl(_ICR(i2c)), readl(_ISR(i2c)));
438 decode_ICR(readl(_ICR(i2c)));
Russell Kingb652b432005-06-15 12:38:14 +0100439 }
440}
441#else
442#define i2c_pxa_set_slave(i2c, err) do { } while (0)
443#endif
444
445static void i2c_pxa_reset(struct pxa_i2c *i2c)
446{
447 pr_debug("Resetting I2C Controller Unit\n");
448
449 /* abort any transfer currently under way */
450 i2c_pxa_abort(i2c);
451
452 /* reset according to 9.8 */
Guennadi Liakhovetskia7b4e552007-02-08 09:43:26 +0100453 writel(ICR_UR, _ICR(i2c));
454 writel(I2C_ISR_INIT, _ISR(i2c));
455 writel(readl(_ICR(i2c)) & ~ICR_UR, _ICR(i2c));
Russell Kingb652b432005-06-15 12:38:14 +0100456
Sebastian Andrzej Siewior7e94dd12011-03-02 11:26:53 +0100457 if (i2c->reg_isar)
458 writel(i2c->slave_addr, _ISAR(i2c));
Russell Kingb652b432005-06-15 12:38:14 +0100459
460 /* set control register values */
Jonathan Cameronc46c9482008-10-03 15:07:36 +0100461 writel(I2C_ICR_INIT | (i2c->fast_mode ? ICR_FM : 0), _ICR(i2c));
Russell Kingb652b432005-06-15 12:38:14 +0100462
463#ifdef CONFIG_I2C_PXA_SLAVE
Russell King6fd60fa2005-09-08 21:04:58 +0100464 dev_info(&i2c->adap.dev, "Enabling slave mode\n");
Guennadi Liakhovetskia7b4e552007-02-08 09:43:26 +0100465 writel(readl(_ICR(i2c)) | ICR_SADIE | ICR_ALDIE | ICR_SSDIE, _ICR(i2c));
Russell Kingb652b432005-06-15 12:38:14 +0100466#endif
467
468 i2c_pxa_set_slave(i2c, 0);
469
470 /* enable unit */
Guennadi Liakhovetskia7b4e552007-02-08 09:43:26 +0100471 writel(readl(_ICR(i2c)) | ICR_IUE, _ICR(i2c));
Russell Kingb652b432005-06-15 12:38:14 +0100472 udelay(100);
473}
474
475
476#ifdef CONFIG_I2C_PXA_SLAVE
477/*
Russell Kingb652b432005-06-15 12:38:14 +0100478 * PXA I2C Slave mode
479 */
480
481static void i2c_pxa_slave_txempty(struct pxa_i2c *i2c, u32 isr)
482{
483 if (isr & ISR_BED) {
484 /* what should we do here? */
485 } else {
Russell King84b5abe2006-10-28 22:30:17 +0100486 int ret = 0;
487
488 if (i2c->slave != NULL)
489 ret = i2c->slave->read(i2c->slave->data);
Russell Kingb652b432005-06-15 12:38:14 +0100490
Guennadi Liakhovetskia7b4e552007-02-08 09:43:26 +0100491 writel(ret, _IDBR(i2c));
492 writel(readl(_ICR(i2c)) | ICR_TB, _ICR(i2c)); /* allow next byte */
Russell Kingb652b432005-06-15 12:38:14 +0100493 }
494}
495
496static void i2c_pxa_slave_rxfull(struct pxa_i2c *i2c, u32 isr)
497{
Guennadi Liakhovetskia7b4e552007-02-08 09:43:26 +0100498 unsigned int byte = readl(_IDBR(i2c));
Russell Kingb652b432005-06-15 12:38:14 +0100499
500 if (i2c->slave != NULL)
501 i2c->slave->write(i2c->slave->data, byte);
502
Guennadi Liakhovetskia7b4e552007-02-08 09:43:26 +0100503 writel(readl(_ICR(i2c)) | ICR_TB, _ICR(i2c));
Russell Kingb652b432005-06-15 12:38:14 +0100504}
505
506static void i2c_pxa_slave_start(struct pxa_i2c *i2c, u32 isr)
507{
508 int timeout;
509
510 if (i2c_debug > 0)
Russell King6fd60fa2005-09-08 21:04:58 +0100511 dev_dbg(&i2c->adap.dev, "SAD, mode is slave-%cx\n",
Russell Kingb652b432005-06-15 12:38:14 +0100512 (isr & ISR_RWM) ? 'r' : 't');
513
514 if (i2c->slave != NULL)
515 i2c->slave->event(i2c->slave->data,
516 (isr & ISR_RWM) ? I2C_SLAVE_EVENT_START_READ : I2C_SLAVE_EVENT_START_WRITE);
517
518 /*
519 * slave could interrupt in the middle of us generating a
520 * start condition... if this happens, we'd better back off
521 * and stop holding the poor thing up
522 */
Guennadi Liakhovetskia7b4e552007-02-08 09:43:26 +0100523 writel(readl(_ICR(i2c)) & ~(ICR_START|ICR_STOP), _ICR(i2c));
524 writel(readl(_ICR(i2c)) | ICR_TB, _ICR(i2c));
Russell Kingb652b432005-06-15 12:38:14 +0100525
526 timeout = 0x10000;
527
528 while (1) {
Guennadi Liakhovetskia7b4e552007-02-08 09:43:26 +0100529 if ((readl(_IBMR(i2c)) & 2) == 2)
Russell Kingb652b432005-06-15 12:38:14 +0100530 break;
531
532 timeout--;
533
534 if (timeout <= 0) {
Russell King6fd60fa2005-09-08 21:04:58 +0100535 dev_err(&i2c->adap.dev, "timeout waiting for SCL high\n");
Russell Kingb652b432005-06-15 12:38:14 +0100536 break;
537 }
538 }
539
Guennadi Liakhovetskia7b4e552007-02-08 09:43:26 +0100540 writel(readl(_ICR(i2c)) & ~ICR_SCLE, _ICR(i2c));
Russell Kingb652b432005-06-15 12:38:14 +0100541}
542
543static void i2c_pxa_slave_stop(struct pxa_i2c *i2c)
544{
545 if (i2c_debug > 2)
Russell King6fd60fa2005-09-08 21:04:58 +0100546 dev_dbg(&i2c->adap.dev, "ISR: SSD (Slave Stop)\n");
Russell Kingb652b432005-06-15 12:38:14 +0100547
548 if (i2c->slave != NULL)
549 i2c->slave->event(i2c->slave->data, I2C_SLAVE_EVENT_STOP);
550
551 if (i2c_debug > 2)
Russell King6fd60fa2005-09-08 21:04:58 +0100552 dev_dbg(&i2c->adap.dev, "ISR: SSD (Slave Stop) acked\n");
Russell Kingb652b432005-06-15 12:38:14 +0100553
554 /*
555 * If we have a master-mode message waiting,
556 * kick it off now that the slave has completed.
557 */
558 if (i2c->msg)
559 i2c_pxa_master_complete(i2c, I2C_RETRY);
560}
561#else
562static void i2c_pxa_slave_txempty(struct pxa_i2c *i2c, u32 isr)
563{
564 if (isr & ISR_BED) {
565 /* what should we do here? */
566 } else {
Guennadi Liakhovetskia7b4e552007-02-08 09:43:26 +0100567 writel(0, _IDBR(i2c));
568 writel(readl(_ICR(i2c)) | ICR_TB, _ICR(i2c));
Russell Kingb652b432005-06-15 12:38:14 +0100569 }
570}
571
572static void i2c_pxa_slave_rxfull(struct pxa_i2c *i2c, u32 isr)
573{
Guennadi Liakhovetskia7b4e552007-02-08 09:43:26 +0100574 writel(readl(_ICR(i2c)) | ICR_TB | ICR_ACKNAK, _ICR(i2c));
Russell Kingb652b432005-06-15 12:38:14 +0100575}
576
577static void i2c_pxa_slave_start(struct pxa_i2c *i2c, u32 isr)
578{
579 int timeout;
580
581 /*
582 * slave could interrupt in the middle of us generating a
583 * start condition... if this happens, we'd better back off
584 * and stop holding the poor thing up
585 */
Guennadi Liakhovetskia7b4e552007-02-08 09:43:26 +0100586 writel(readl(_ICR(i2c)) & ~(ICR_START|ICR_STOP), _ICR(i2c));
587 writel(readl(_ICR(i2c)) | ICR_TB | ICR_ACKNAK, _ICR(i2c));
Russell Kingb652b432005-06-15 12:38:14 +0100588
589 timeout = 0x10000;
590
591 while (1) {
Guennadi Liakhovetskia7b4e552007-02-08 09:43:26 +0100592 if ((readl(_IBMR(i2c)) & 2) == 2)
Russell Kingb652b432005-06-15 12:38:14 +0100593 break;
594
595 timeout--;
596
597 if (timeout <= 0) {
Russell King6fd60fa2005-09-08 21:04:58 +0100598 dev_err(&i2c->adap.dev, "timeout waiting for SCL high\n");
Russell Kingb652b432005-06-15 12:38:14 +0100599 break;
600 }
601 }
602
Guennadi Liakhovetskia7b4e552007-02-08 09:43:26 +0100603 writel(readl(_ICR(i2c)) & ~ICR_SCLE, _ICR(i2c));
Russell Kingb652b432005-06-15 12:38:14 +0100604}
605
606static void i2c_pxa_slave_stop(struct pxa_i2c *i2c)
607{
608 if (i2c->msg)
609 i2c_pxa_master_complete(i2c, I2C_RETRY);
610}
611#endif
612
613/*
614 * PXA I2C Master mode
615 */
616
617static inline unsigned int i2c_pxa_addr_byte(struct i2c_msg *msg)
618{
619 unsigned int addr = (msg->addr & 0x7f) << 1;
620
621 if (msg->flags & I2C_M_RD)
622 addr |= 1;
623
624 return addr;
625}
626
627static inline void i2c_pxa_start_message(struct pxa_i2c *i2c)
628{
629 u32 icr;
630
631 /*
632 * Step 1: target slave address into IDBR
633 */
Guennadi Liakhovetskia7b4e552007-02-08 09:43:26 +0100634 writel(i2c_pxa_addr_byte(i2c->msg), _IDBR(i2c));
Russell Kingb652b432005-06-15 12:38:14 +0100635
636 /*
637 * Step 2: initiate the write.
638 */
Guennadi Liakhovetskia7b4e552007-02-08 09:43:26 +0100639 icr = readl(_ICR(i2c)) & ~(ICR_STOP | ICR_ALDIE);
640 writel(icr | ICR_START | ICR_TB, _ICR(i2c));
Russell Kingb652b432005-06-15 12:38:14 +0100641}
642
Jean Delvare7d054812007-05-01 23:26:33 +0200643static inline void i2c_pxa_stop_message(struct pxa_i2c *i2c)
644{
645 u32 icr;
646
647 /*
648 * Clear the STOP and ACK flags
649 */
650 icr = readl(_ICR(i2c));
651 icr &= ~(ICR_STOP | ICR_ACKNAK);
Russell King0cfe61e2007-05-10 03:15:32 -0700652 writel(icr, _ICR(i2c));
Jean Delvare7d054812007-05-01 23:26:33 +0200653}
654
Mike Rapoportb7a36702008-01-27 18:14:50 +0100655static int i2c_pxa_pio_set_master(struct pxa_i2c *i2c)
656{
657 /* make timeout the same as for interrupt based functions */
658 long timeout = 2 * DEF_TIMEOUT;
659
660 /*
661 * Wait for the bus to become free.
662 */
663 while (timeout-- && readl(_ISR(i2c)) & (ISR_IBB | ISR_UB)) {
664 udelay(1000);
665 show_state(i2c);
666 }
667
Roel Kluind10db3a2009-04-23 16:27:39 +0200668 if (timeout < 0) {
Mike Rapoportb7a36702008-01-27 18:14:50 +0100669 show_state(i2c);
670 dev_err(&i2c->adap.dev,
671 "i2c_pxa: timeout waiting for bus free\n");
672 return I2C_RETRY;
673 }
674
675 /*
676 * Set master mode.
677 */
678 writel(readl(_ICR(i2c)) | ICR_SCLE, _ICR(i2c));
679
680 return 0;
681}
682
683static int i2c_pxa_do_pio_xfer(struct pxa_i2c *i2c,
684 struct i2c_msg *msg, int num)
685{
686 unsigned long timeout = 500000; /* 5 seconds */
687 int ret = 0;
688
689 ret = i2c_pxa_pio_set_master(i2c);
690 if (ret)
691 goto out;
692
693 i2c->msg = msg;
694 i2c->msg_num = num;
695 i2c->msg_idx = 0;
696 i2c->msg_ptr = 0;
697 i2c->irqlogidx = 0;
698
699 i2c_pxa_start_message(i2c);
700
Roel Kluina746b572009-02-24 19:19:48 +0100701 while (i2c->msg_num > 0 && --timeout) {
Mike Rapoportb7a36702008-01-27 18:14:50 +0100702 i2c_pxa_handler(0, i2c);
703 udelay(10);
704 }
705
706 i2c_pxa_stop_message(i2c);
707
708 /*
709 * We place the return code in i2c->msg_idx.
710 */
711 ret = i2c->msg_idx;
712
713out:
714 if (timeout == 0)
715 i2c_pxa_scream_blue_murder(i2c, "timeout");
716
717 return ret;
718}
719
Russell Kingb652b432005-06-15 12:38:14 +0100720/*
Jean Delvare3fb9a652006-01-18 23:17:01 +0100721 * We are protected by the adapter bus mutex.
Russell Kingb652b432005-06-15 12:38:14 +0100722 */
723static int i2c_pxa_do_xfer(struct pxa_i2c *i2c, struct i2c_msg *msg, int num)
724{
725 long timeout;
726 int ret;
727
728 /*
729 * Wait for the bus to become free.
730 */
731 ret = i2c_pxa_wait_bus_not_busy(i2c);
732 if (ret) {
Russell King6fd60fa2005-09-08 21:04:58 +0100733 dev_err(&i2c->adap.dev, "i2c_pxa: timeout waiting for bus free\n");
Russell Kingb652b432005-06-15 12:38:14 +0100734 goto out;
735 }
736
737 /*
738 * Set master mode.
739 */
740 ret = i2c_pxa_set_master(i2c);
741 if (ret) {
Russell King6fd60fa2005-09-08 21:04:58 +0100742 dev_err(&i2c->adap.dev, "i2c_pxa_set_master: error %d\n", ret);
Russell Kingb652b432005-06-15 12:38:14 +0100743 goto out;
744 }
745
746 spin_lock_irq(&i2c->lock);
747
748 i2c->msg = msg;
749 i2c->msg_num = num;
750 i2c->msg_idx = 0;
751 i2c->msg_ptr = 0;
752 i2c->irqlogidx = 0;
753
754 i2c_pxa_start_message(i2c);
755
756 spin_unlock_irq(&i2c->lock);
757
758 /*
759 * The rest of the processing occurs in the interrupt handler.
760 */
761 timeout = wait_event_timeout(i2c->wait, i2c->msg_num == 0, HZ * 5);
Jean Delvare7d054812007-05-01 23:26:33 +0200762 i2c_pxa_stop_message(i2c);
Russell Kingb652b432005-06-15 12:38:14 +0100763
764 /*
765 * We place the return code in i2c->msg_idx.
766 */
767 ret = i2c->msg_idx;
768
Sebastian Andrzej Siewior93c92cf2011-02-23 12:38:19 +0100769 if (!timeout && i2c->msg_num) {
Russell Kingb652b432005-06-15 12:38:14 +0100770 i2c_pxa_scream_blue_murder(i2c, "timeout");
Sebastian Andrzej Siewior93c92cf2011-02-23 12:38:19 +0100771 ret = I2C_RETRY;
772 }
Russell Kingb652b432005-06-15 12:38:14 +0100773
774 out:
775 return ret;
776}
777
Mike Rapoportb7a36702008-01-27 18:14:50 +0100778static int i2c_pxa_pio_xfer(struct i2c_adapter *adap,
779 struct i2c_msg msgs[], int num)
780{
781 struct pxa_i2c *i2c = adap->algo_data;
782 int ret, i;
783
784 /* If the I2C controller is disabled we need to reset it
785 (probably due to a suspend/resume destroying state). We do
786 this here as we can then avoid worrying about resuming the
787 controller before its users. */
788 if (!(readl(_ICR(i2c)) & ICR_IUE))
789 i2c_pxa_reset(i2c);
790
791 for (i = adap->retries; i >= 0; i--) {
792 ret = i2c_pxa_do_pio_xfer(i2c, msgs, num);
793 if (ret != I2C_RETRY)
794 goto out;
795
796 if (i2c_debug)
797 dev_dbg(&adap->dev, "Retrying transmission\n");
798 udelay(100);
799 }
800 i2c_pxa_scream_blue_murder(i2c, "exhausted retries");
801 ret = -EREMOTEIO;
802 out:
803 i2c_pxa_set_slave(i2c, ret);
804 return ret;
805}
806
Russell Kingb652b432005-06-15 12:38:14 +0100807/*
808 * i2c_pxa_master_complete - complete the message and wake up.
809 */
810static void i2c_pxa_master_complete(struct pxa_i2c *i2c, int ret)
811{
812 i2c->msg_ptr = 0;
813 i2c->msg = NULL;
814 i2c->msg_idx ++;
815 i2c->msg_num = 0;
816 if (ret)
817 i2c->msg_idx = ret;
Mike Rapoportb7a36702008-01-27 18:14:50 +0100818 if (!i2c->use_pio)
819 wake_up(&i2c->wait);
Russell Kingb652b432005-06-15 12:38:14 +0100820}
821
822static void i2c_pxa_irq_txempty(struct pxa_i2c *i2c, u32 isr)
823{
Guennadi Liakhovetskia7b4e552007-02-08 09:43:26 +0100824 u32 icr = readl(_ICR(i2c)) & ~(ICR_START|ICR_STOP|ICR_ACKNAK|ICR_TB);
Russell Kingb652b432005-06-15 12:38:14 +0100825
826 again:
827 /*
828 * If ISR_ALD is set, we lost arbitration.
829 */
830 if (isr & ISR_ALD) {
831 /*
832 * Do we need to do anything here? The PXA docs
833 * are vague about what happens.
834 */
835 i2c_pxa_scream_blue_murder(i2c, "ALD set");
836
837 /*
838 * We ignore this error. We seem to see spurious ALDs
839 * for seemingly no reason. If we handle them as I think
840 * they should, we end up causing an I2C error, which
841 * is painful for some systems.
842 */
843 return; /* ignore */
844 }
845
846 if (isr & ISR_BED) {
847 int ret = BUS_ERROR;
848
849 /*
850 * I2C bus error - either the device NAK'd us, or
851 * something more serious happened. If we were NAK'd
852 * on the initial address phase, we can retry.
853 */
854 if (isr & ISR_ACKNAK) {
855 if (i2c->msg_ptr == 0 && i2c->msg_idx == 0)
856 ret = I2C_RETRY;
857 else
858 ret = XFER_NAKED;
859 }
860 i2c_pxa_master_complete(i2c, ret);
861 } else if (isr & ISR_RWM) {
862 /*
863 * Read mode. We have just sent the address byte, and
864 * now we must initiate the transfer.
865 */
866 if (i2c->msg_ptr == i2c->msg->len - 1 &&
867 i2c->msg_idx == i2c->msg_num - 1)
868 icr |= ICR_STOP | ICR_ACKNAK;
869
870 icr |= ICR_ALDIE | ICR_TB;
871 } else if (i2c->msg_ptr < i2c->msg->len) {
872 /*
873 * Write mode. Write the next data byte.
874 */
Guennadi Liakhovetskia7b4e552007-02-08 09:43:26 +0100875 writel(i2c->msg->buf[i2c->msg_ptr++], _IDBR(i2c));
Russell Kingb652b432005-06-15 12:38:14 +0100876
877 icr |= ICR_ALDIE | ICR_TB;
878
879 /*
880 * If this is the last byte of the last message, send
881 * a STOP.
882 */
883 if (i2c->msg_ptr == i2c->msg->len &&
884 i2c->msg_idx == i2c->msg_num - 1)
885 icr |= ICR_STOP;
886 } else if (i2c->msg_idx < i2c->msg_num - 1) {
887 /*
888 * Next segment of the message.
889 */
890 i2c->msg_ptr = 0;
891 i2c->msg_idx ++;
892 i2c->msg++;
893
894 /*
895 * If we aren't doing a repeated start and address,
896 * go back and try to send the next byte. Note that
897 * we do not support switching the R/W direction here.
898 */
899 if (i2c->msg->flags & I2C_M_NOSTART)
900 goto again;
901
902 /*
903 * Write the next address.
904 */
Guennadi Liakhovetskia7b4e552007-02-08 09:43:26 +0100905 writel(i2c_pxa_addr_byte(i2c->msg), _IDBR(i2c));
Russell Kingb652b432005-06-15 12:38:14 +0100906
907 /*
908 * And trigger a repeated start, and send the byte.
909 */
910 icr &= ~ICR_ALDIE;
911 icr |= ICR_START | ICR_TB;
912 } else {
913 if (i2c->msg->len == 0) {
914 /*
915 * Device probes have a message length of zero
916 * and need the bus to be reset before it can
917 * be used again.
918 */
919 i2c_pxa_reset(i2c);
920 }
921 i2c_pxa_master_complete(i2c, 0);
922 }
923
924 i2c->icrlog[i2c->irqlogidx-1] = icr;
925
Guennadi Liakhovetskia7b4e552007-02-08 09:43:26 +0100926 writel(icr, _ICR(i2c));
Russell Kingb652b432005-06-15 12:38:14 +0100927 show_state(i2c);
928}
929
930static void i2c_pxa_irq_rxfull(struct pxa_i2c *i2c, u32 isr)
931{
Guennadi Liakhovetskia7b4e552007-02-08 09:43:26 +0100932 u32 icr = readl(_ICR(i2c)) & ~(ICR_START|ICR_STOP|ICR_ACKNAK|ICR_TB);
Russell Kingb652b432005-06-15 12:38:14 +0100933
934 /*
935 * Read the byte.
936 */
Guennadi Liakhovetskia7b4e552007-02-08 09:43:26 +0100937 i2c->msg->buf[i2c->msg_ptr++] = readl(_IDBR(i2c));
Russell Kingb652b432005-06-15 12:38:14 +0100938
939 if (i2c->msg_ptr < i2c->msg->len) {
940 /*
941 * If this is the last byte of the last
942 * message, send a STOP.
943 */
944 if (i2c->msg_ptr == i2c->msg->len - 1)
945 icr |= ICR_STOP | ICR_ACKNAK;
946
947 icr |= ICR_ALDIE | ICR_TB;
948 } else {
949 i2c_pxa_master_complete(i2c, 0);
950 }
951
952 i2c->icrlog[i2c->irqlogidx-1] = icr;
953
Guennadi Liakhovetskia7b4e552007-02-08 09:43:26 +0100954 writel(icr, _ICR(i2c));
Russell Kingb652b432005-06-15 12:38:14 +0100955}
956
Sebastian Andrzej Siewiorc66dc522011-02-23 12:38:18 +0100957#define VALID_INT_SOURCE (ISR_SSD | ISR_ALD | ISR_ITE | ISR_IRF | \
958 ISR_SAD | ISR_BED)
David Howells7d12e782006-10-05 14:55:46 +0100959static irqreturn_t i2c_pxa_handler(int this_irq, void *dev_id)
Russell Kingb652b432005-06-15 12:38:14 +0100960{
961 struct pxa_i2c *i2c = dev_id;
Guennadi Liakhovetskia7b4e552007-02-08 09:43:26 +0100962 u32 isr = readl(_ISR(i2c));
Russell Kingb652b432005-06-15 12:38:14 +0100963
Vasily Khoruzhick97491ba2011-03-13 15:53:29 +0200964 if (!(isr & VALID_INT_SOURCE))
Sebastian Andrzej Siewiorc66dc522011-02-23 12:38:18 +0100965 return IRQ_NONE;
966
Russell Kingb652b432005-06-15 12:38:14 +0100967 if (i2c_debug > 2 && 0) {
Russell King6fd60fa2005-09-08 21:04:58 +0100968 dev_dbg(&i2c->adap.dev, "%s: ISR=%08x, ICR=%08x, IBMR=%02x\n",
Guennadi Liakhovetskia7b4e552007-02-08 09:43:26 +0100969 __func__, isr, readl(_ICR(i2c)), readl(_IBMR(i2c)));
Russell Kingb652b432005-06-15 12:38:14 +0100970 decode_ISR(isr);
971 }
972
Tobias Klauser7e3d7db2006-01-09 23:19:51 +0100973 if (i2c->irqlogidx < ARRAY_SIZE(i2c->isrlog))
Russell Kingb652b432005-06-15 12:38:14 +0100974 i2c->isrlog[i2c->irqlogidx++] = isr;
975
976 show_state(i2c);
977
978 /*
979 * Always clear all pending IRQs.
980 */
Vasily Khoruzhick97491ba2011-03-13 15:53:29 +0200981 writel(isr & VALID_INT_SOURCE, _ISR(i2c));
Russell Kingb652b432005-06-15 12:38:14 +0100982
983 if (isr & ISR_SAD)
984 i2c_pxa_slave_start(i2c, isr);
985 if (isr & ISR_SSD)
986 i2c_pxa_slave_stop(i2c);
987
988 if (i2c_pxa_is_slavemode(i2c)) {
989 if (isr & ISR_ITE)
990 i2c_pxa_slave_txempty(i2c, isr);
991 if (isr & ISR_IRF)
992 i2c_pxa_slave_rxfull(i2c, isr);
993 } else if (i2c->msg) {
994 if (isr & ISR_ITE)
995 i2c_pxa_irq_txempty(i2c, isr);
996 if (isr & ISR_IRF)
997 i2c_pxa_irq_rxfull(i2c, isr);
998 } else {
999 i2c_pxa_scream_blue_murder(i2c, "spurious irq");
1000 }
1001
1002 return IRQ_HANDLED;
1003}
1004
1005
1006static int i2c_pxa_xfer(struct i2c_adapter *adap, struct i2c_msg msgs[], int num)
1007{
1008 struct pxa_i2c *i2c = adap->algo_data;
1009 int ret, i;
1010
1011 for (i = adap->retries; i >= 0; i--) {
1012 ret = i2c_pxa_do_xfer(i2c, msgs, num);
1013 if (ret != I2C_RETRY)
1014 goto out;
1015
1016 if (i2c_debug)
Russell King6fd60fa2005-09-08 21:04:58 +01001017 dev_dbg(&adap->dev, "Retrying transmission\n");
Russell Kingb652b432005-06-15 12:38:14 +01001018 udelay(100);
1019 }
1020 i2c_pxa_scream_blue_murder(i2c, "exhausted retries");
1021 ret = -EREMOTEIO;
1022 out:
1023 i2c_pxa_set_slave(i2c, ret);
1024 return ret;
1025}
1026
Russell Kingda16e322005-09-14 22:54:45 +01001027static u32 i2c_pxa_functionality(struct i2c_adapter *adap)
1028{
1029 return I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL;
1030}
1031
Jean Delvare8f9082c2006-09-03 22:39:46 +02001032static const struct i2c_algorithm i2c_pxa_algorithm = {
Russell Kingb652b432005-06-15 12:38:14 +01001033 .master_xfer = i2c_pxa_xfer,
Russell Kingda16e322005-09-14 22:54:45 +01001034 .functionality = i2c_pxa_functionality,
Russell Kingb652b432005-06-15 12:38:14 +01001035};
1036
Mike Rapoportb7a36702008-01-27 18:14:50 +01001037static const struct i2c_algorithm i2c_pxa_pio_algorithm = {
1038 .master_xfer = i2c_pxa_pio_xfer,
1039 .functionality = i2c_pxa_functionality,
1040};
1041
Haojian Zhuang63fe1222012-03-01 13:04:44 +08001042static struct of_device_id i2c_pxa_dt_ids[] = {
1043 { .compatible = "mrvl,pxa-i2c", .data = (void *)REGS_PXA2XX },
1044 { .compatible = "mrvl,pwri2c", .data = (void *)REGS_PXA3XX },
1045 { .compatible = "mrvl,mmp-twsi", .data = (void *)REGS_PXA2XX },
1046 {}
1047};
1048MODULE_DEVICE_TABLE(of, i2c_pxa_dt_ids);
1049
1050static int i2c_pxa_probe_dt(struct platform_device *pdev, struct pxa_i2c *i2c,
1051 enum pxa_i2c_types *i2c_types)
1052{
1053 struct device_node *np = pdev->dev.of_node;
1054 const struct of_device_id *of_id =
1055 of_match_device(i2c_pxa_dt_ids, &pdev->dev);
Haojian Zhuang63fe1222012-03-01 13:04:44 +08001056
1057 if (!of_id)
1058 return 1;
Doug Andersonfe69c552013-03-01 06:57:32 +00001059
1060 /* For device tree we always use the dynamic or alias-assigned ID */
1061 i2c->adap.nr = -1;
1062
Haojian Zhuang63fe1222012-03-01 13:04:44 +08001063 if (of_get_property(np, "mrvl,i2c-polling", NULL))
1064 i2c->use_pio = 1;
1065 if (of_get_property(np, "mrvl,i2c-fast-mode", NULL))
1066 i2c->fast_mode = 1;
1067 *i2c_types = (u32)(of_id->data);
1068 return 0;
1069}
1070
1071static int i2c_pxa_probe_pdata(struct platform_device *pdev,
1072 struct pxa_i2c *i2c,
1073 enum pxa_i2c_types *i2c_types)
1074{
1075 struct i2c_pxa_platform_data *plat = pdev->dev.platform_data;
1076 const struct platform_device_id *id = platform_get_device_id(pdev);
1077
1078 *i2c_types = id->driver_data;
1079 if (plat) {
1080 i2c->use_pio = plat->use_pio;
1081 i2c->fast_mode = plat->fast_mode;
1082 }
1083 return 0;
1084}
1085
Russell King3ae5eae2005-11-09 22:32:44 +00001086static int i2c_pxa_probe(struct platform_device *dev)
Russell Kingb652b432005-06-15 12:38:14 +01001087{
Russell King3ae5eae2005-11-09 22:32:44 +00001088 struct i2c_pxa_platform_data *plat = dev->dev.platform_data;
Haojian Zhuang63fe1222012-03-01 13:04:44 +08001089 enum pxa_i2c_types i2c_type;
1090 struct pxa_i2c *i2c;
1091 struct resource *res = NULL;
1092 int ret, irq;
Guennadi Liakhovetskia7b4e552007-02-08 09:43:26 +01001093
Enrico Scholz6776f3d2007-05-21 12:29:40 +01001094 i2c = kzalloc(sizeof(struct pxa_i2c), GFP_KERNEL);
Guennadi Liakhovetskia7b4e552007-02-08 09:43:26 +01001095 if (!i2c) {
1096 ret = -ENOMEM;
1097 goto emalloc;
1098 }
1099
Doug Andersonfe69c552013-03-01 06:57:32 +00001100 /* Default adapter num to device id; i2c_pxa_probe_dt can override. */
1101 i2c->adap.nr = dev->id;
1102
Haojian Zhuang63fe1222012-03-01 13:04:44 +08001103 ret = i2c_pxa_probe_dt(dev, i2c, &i2c_type);
1104 if (ret > 0)
1105 ret = i2c_pxa_probe_pdata(dev, i2c, &i2c_type);
1106 if (ret < 0)
1107 goto eclk;
1108
1109 res = platform_get_resource(dev, IORESOURCE_MEM, 0);
1110 irq = platform_get_irq(dev, 0);
1111 if (res == NULL || irq < 0) {
1112 ret = -ENODEV;
1113 goto eclk;
1114 }
1115
1116 if (!request_mem_region(res->start, resource_size(res), res->name)) {
1117 ret = -ENOMEM;
1118 goto eclk;
1119 }
1120
Enrico Scholz6776f3d2007-05-21 12:29:40 +01001121 i2c->adap.owner = THIS_MODULE;
Enrico Scholz6776f3d2007-05-21 12:29:40 +01001122 i2c->adap.retries = 5;
1123
1124 spin_lock_init(&i2c->lock);
Guennadi Liakhovetskia7b4e552007-02-08 09:43:26 +01001125 init_waitqueue_head(&i2c->wait);
Enrico Scholz6776f3d2007-05-21 12:29:40 +01001126
Doug Andersonfe69c552013-03-01 06:57:32 +00001127 strlcpy(i2c->adap.name, "pxa_i2c-i2c", sizeof(i2c->adap.name));
Guennadi Liakhovetskia7b4e552007-02-08 09:43:26 +01001128
Russell Kinge0d8b132008-11-11 17:52:32 +00001129 i2c->clk = clk_get(&dev->dev, NULL);
Russell Kingc3cef3f2007-08-20 10:19:10 +01001130 if (IS_ERR(i2c->clk)) {
1131 ret = PTR_ERR(i2c->clk);
1132 goto eclk;
1133 }
1134
Linus Walleijc6ffdde2009-06-14 00:20:36 +02001135 i2c->reg_base = ioremap(res->start, resource_size(res));
Guennadi Liakhovetskia7b4e552007-02-08 09:43:26 +01001136 if (!i2c->reg_base) {
1137 ret = -EIO;
1138 goto eremap;
1139 }
Sebastian Andrzej Siewiord6668c72011-02-23 12:38:15 +01001140
1141 i2c->reg_ibmr = i2c->reg_base + pxa_reg_layout[i2c_type].ibmr;
1142 i2c->reg_idbr = i2c->reg_base + pxa_reg_layout[i2c_type].idbr;
1143 i2c->reg_icr = i2c->reg_base + pxa_reg_layout[i2c_type].icr;
1144 i2c->reg_isr = i2c->reg_base + pxa_reg_layout[i2c_type].isr;
Sebastian Andrzej Siewior7e94dd12011-03-02 11:26:53 +01001145 if (i2c_type != REGS_CE4100)
1146 i2c->reg_isar = i2c->reg_base + pxa_reg_layout[i2c_type].isar;
Guennadi Liakhovetskia7b4e552007-02-08 09:43:26 +01001147
1148 i2c->iobase = res->start;
Linus Walleijc6ffdde2009-06-14 00:20:36 +02001149 i2c->iosize = resource_size(res);
Guennadi Liakhovetskia7b4e552007-02-08 09:43:26 +01001150
1151 i2c->irq = irq;
Russell Kingb652b432005-06-15 12:38:14 +01001152
1153 i2c->slave_addr = I2C_PXA_SLAVE_ADDR;
1154
Russell Kingb652b432005-06-15 12:38:14 +01001155 if (plat) {
Haojian Zhuang63fe1222012-03-01 13:04:44 +08001156#ifdef CONFIG_I2C_PXA_SLAVE
Russell Kingb652b432005-06-15 12:38:14 +01001157 i2c->slave_addr = plat->slave_addr;
Russell Kingbeea4942006-11-07 21:03:20 +00001158 i2c->slave = plat->slave;
Russell Kingb652b432005-06-15 12:38:14 +01001159#endif
Haojian Zhuang63fe1222012-03-01 13:04:44 +08001160 i2c->adap.class = plat->class;
1161 }
Russell Kingb652b432005-06-15 12:38:14 +01001162
Daniel Drake7a10f472013-06-17 11:30:36 -04001163 clk_prepare_enable(i2c->clk);
Guennadi Liakhovetskia7b4e552007-02-08 09:43:26 +01001164
Mike Rapoportb7a36702008-01-27 18:14:50 +01001165 if (i2c->use_pio) {
1166 i2c->adap.algo = &i2c_pxa_pio_algorithm;
1167 } else {
1168 i2c->adap.algo = &i2c_pxa_algorithm;
Sebastian Andrzej Siewiorc66dc522011-02-23 12:38:18 +01001169 ret = request_irq(irq, i2c_pxa_handler, IRQF_SHARED,
Doug Andersonfe69c552013-03-01 06:57:32 +00001170 dev_name(&dev->dev), i2c);
Mike Rapoportb7a36702008-01-27 18:14:50 +01001171 if (ret)
1172 goto ereqirq;
1173 }
Guennadi Liakhovetskia7b4e552007-02-08 09:43:26 +01001174
Russell Kingb652b432005-06-15 12:38:14 +01001175 i2c_pxa_reset(i2c);
1176
1177 i2c->adap.algo_data = i2c;
Russell King3ae5eae2005-11-09 22:32:44 +00001178 i2c->adap.dev.parent = &dev->dev;
Sebastian Andrzej Siewiorbaa8cab2011-02-23 12:38:20 +01001179#ifdef CONFIG_OF
1180 i2c->adap.dev.of_node = dev->dev.of_node;
1181#endif
Russell Kingb652b432005-06-15 12:38:14 +01001182
Grant Likely488bf312011-07-25 17:49:43 +02001183 ret = i2c_add_numbered_adapter(&i2c->adap);
Russell Kingb652b432005-06-15 12:38:14 +01001184 if (ret < 0) {
1185 printk(KERN_INFO "I2C: Failed to add bus\n");
Guennadi Liakhovetskia7b4e552007-02-08 09:43:26 +01001186 goto eadapt;
Russell Kingb652b432005-06-15 12:38:14 +01001187 }
Sebastian Andrzej Siewiorbaa8cab2011-02-23 12:38:20 +01001188 of_i2c_register_devices(&i2c->adap);
Russell Kingb652b432005-06-15 12:38:14 +01001189
Russell King3ae5eae2005-11-09 22:32:44 +00001190 platform_set_drvdata(dev, i2c);
Russell Kingb652b432005-06-15 12:38:14 +01001191
1192#ifdef CONFIG_I2C_PXA_SLAVE
1193 printk(KERN_INFO "I2C: %s: PXA I2C adapter, slave address %d\n",
Jean Delvare22e965c2009-01-07 14:29:16 +01001194 dev_name(&i2c->adap.dev), i2c->slave_addr);
Russell Kingb652b432005-06-15 12:38:14 +01001195#else
1196 printk(KERN_INFO "I2C: %s: PXA I2C adapter\n",
Jean Delvare22e965c2009-01-07 14:29:16 +01001197 dev_name(&i2c->adap.dev));
Russell Kingb652b432005-06-15 12:38:14 +01001198#endif
1199 return 0;
1200
Guennadi Liakhovetskia7b4e552007-02-08 09:43:26 +01001201eadapt:
Mike Rapoportb7a36702008-01-27 18:14:50 +01001202 if (!i2c->use_pio)
1203 free_irq(irq, i2c);
Guennadi Liakhovetskia7b4e552007-02-08 09:43:26 +01001204ereqirq:
Daniel Drake7a10f472013-06-17 11:30:36 -04001205 clk_disable_unprepare(i2c->clk);
Wolfram Sanga92b36e2008-02-24 20:03:42 +01001206 iounmap(i2c->reg_base);
Guennadi Liakhovetskia7b4e552007-02-08 09:43:26 +01001207eremap:
Russell Kingc3cef3f2007-08-20 10:19:10 +01001208 clk_put(i2c->clk);
1209eclk:
Guennadi Liakhovetskia7b4e552007-02-08 09:43:26 +01001210 kfree(i2c);
1211emalloc:
Linus Walleijc6ffdde2009-06-14 00:20:36 +02001212 release_mem_region(res->start, resource_size(res));
Russell Kingb652b432005-06-15 12:38:14 +01001213 return ret;
1214}
1215
Dmitry Torokhov0a6d2242013-02-19 22:50:10 +00001216static int i2c_pxa_remove(struct platform_device *dev)
Russell Kingb652b432005-06-15 12:38:14 +01001217{
Russell King3ae5eae2005-11-09 22:32:44 +00001218 struct pxa_i2c *i2c = platform_get_drvdata(dev);
Russell Kingb652b432005-06-15 12:38:14 +01001219
Russell Kingb652b432005-06-15 12:38:14 +01001220 i2c_del_adapter(&i2c->adap);
Mike Rapoportb7a36702008-01-27 18:14:50 +01001221 if (!i2c->use_pio)
1222 free_irq(i2c->irq, i2c);
Russell Kingc3cef3f2007-08-20 10:19:10 +01001223
Daniel Drake7a10f472013-06-17 11:30:36 -04001224 clk_disable_unprepare(i2c->clk);
Russell Kingc3cef3f2007-08-20 10:19:10 +01001225 clk_put(i2c->clk);
Russell Kingc3cef3f2007-08-20 10:19:10 +01001226
Wolfram Sanga92b36e2008-02-24 20:03:42 +01001227 iounmap(i2c->reg_base);
Guennadi Liakhovetskia7b4e552007-02-08 09:43:26 +01001228 release_mem_region(i2c->iobase, i2c->iosize);
1229 kfree(i2c);
Russell Kingb652b432005-06-15 12:38:14 +01001230
1231 return 0;
1232}
1233
Russell Kinge7d48fa2008-08-26 10:40:50 +01001234#ifdef CONFIG_PM
Magnus Damm57f4d4f2009-07-08 13:22:39 +02001235static int i2c_pxa_suspend_noirq(struct device *dev)
Russell Kinge7d48fa2008-08-26 10:40:50 +01001236{
Magnus Damm57f4d4f2009-07-08 13:22:39 +02001237 struct platform_device *pdev = to_platform_device(dev);
1238 struct pxa_i2c *i2c = platform_get_drvdata(pdev);
1239
Russell Kinge7d48fa2008-08-26 10:40:50 +01001240 clk_disable(i2c->clk);
Magnus Damm57f4d4f2009-07-08 13:22:39 +02001241
Russell Kinge7d48fa2008-08-26 10:40:50 +01001242 return 0;
1243}
1244
Magnus Damm57f4d4f2009-07-08 13:22:39 +02001245static int i2c_pxa_resume_noirq(struct device *dev)
Russell Kinge7d48fa2008-08-26 10:40:50 +01001246{
Magnus Damm57f4d4f2009-07-08 13:22:39 +02001247 struct platform_device *pdev = to_platform_device(dev);
1248 struct pxa_i2c *i2c = platform_get_drvdata(pdev);
Russell Kinge7d48fa2008-08-26 10:40:50 +01001249
1250 clk_enable(i2c->clk);
1251 i2c_pxa_reset(i2c);
1252
1253 return 0;
1254}
Magnus Damm57f4d4f2009-07-08 13:22:39 +02001255
Alexey Dobriyan47145212009-12-14 18:00:08 -08001256static const struct dev_pm_ops i2c_pxa_dev_pm_ops = {
Magnus Damm57f4d4f2009-07-08 13:22:39 +02001257 .suspend_noirq = i2c_pxa_suspend_noirq,
1258 .resume_noirq = i2c_pxa_resume_noirq,
1259};
1260
1261#define I2C_PXA_DEV_PM_OPS (&i2c_pxa_dev_pm_ops)
Russell Kinge7d48fa2008-08-26 10:40:50 +01001262#else
Magnus Damm57f4d4f2009-07-08 13:22:39 +02001263#define I2C_PXA_DEV_PM_OPS NULL
Russell Kinge7d48fa2008-08-26 10:40:50 +01001264#endif
1265
Russell King3ae5eae2005-11-09 22:32:44 +00001266static struct platform_driver i2c_pxa_driver = {
Russell Kingb652b432005-06-15 12:38:14 +01001267 .probe = i2c_pxa_probe,
Dmitry Torokhov0a6d2242013-02-19 22:50:10 +00001268 .remove = i2c_pxa_remove,
Russell King3ae5eae2005-11-09 22:32:44 +00001269 .driver = {
1270 .name = "pxa2xx-i2c",
Wolfram Sanga92b36e2008-02-24 20:03:42 +01001271 .owner = THIS_MODULE,
Magnus Damm57f4d4f2009-07-08 13:22:39 +02001272 .pm = I2C_PXA_DEV_PM_OPS,
Haojian Zhuang63fe1222012-03-01 13:04:44 +08001273 .of_match_table = i2c_pxa_dt_ids,
Russell King3ae5eae2005-11-09 22:32:44 +00001274 },
Eric Miaof23d4912009-04-13 14:43:25 +08001275 .id_table = i2c_pxa_id_table,
Russell Kingb652b432005-06-15 12:38:14 +01001276};
1277
1278static int __init i2c_adap_pxa_init(void)
1279{
Russell King3ae5eae2005-11-09 22:32:44 +00001280 return platform_driver_register(&i2c_pxa_driver);
Russell Kingb652b432005-06-15 12:38:14 +01001281}
1282
Wolfram Sanga92b36e2008-02-24 20:03:42 +01001283static void __exit i2c_adap_pxa_exit(void)
Russell Kingb652b432005-06-15 12:38:14 +01001284{
Holger Schurigd6a7b5f2008-02-11 16:51:41 +01001285 platform_driver_unregister(&i2c_pxa_driver);
Russell Kingb652b432005-06-15 12:38:14 +01001286}
1287
Richard Purdieece5f7b2006-01-12 16:30:23 +00001288MODULE_LICENSE("GPL");
Kay Sieversadd8eda2008-04-22 22:16:49 +02001289MODULE_ALIAS("platform:pxa2xx-i2c");
Richard Purdieece5f7b2006-01-12 16:30:23 +00001290
Uli Luckas47a9b132008-07-14 22:38:30 +02001291subsys_initcall(i2c_adap_pxa_init);
Russell Kingb652b432005-06-15 12:38:14 +01001292module_exit(i2c_adap_pxa_exit);