blob: 85e3664f411e03645e925cca1eca4a180679a17a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* linux/drivers/i2c/busses/i2c-s3c2410.c
2 *
Daniel Silverstonec564e6a2009-03-13 13:53:46 +00003 * Copyright (C) 2004,2005,2009 Simtec Electronics
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * Ben Dooks <ben@simtec.co.uk>
5 *
6 * S3C2410 I2C Controller
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21*/
22
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/kernel.h>
24#include <linux/module.h>
25
26#include <linux/i2c.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/init.h>
28#include <linux/time.h>
29#include <linux/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/delay.h>
31#include <linux/errno.h>
32#include <linux/err.h>
Russell Kingd052d1b2005-10-29 19:07:23 +010033#include <linux/platform_device.h>
Mark Brownc62c3ca2012-01-21 13:28:47 +000034#include <linux/pm_runtime.h>
Russell Kingf8ce2542006-01-07 16:15:52 +000035#include <linux/clk.h>
Ben Dooks61c7cff2008-07-28 12:04:07 +010036#include <linux/cpufreq.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090037#include <linux/slab.h>
H Hartley Sweeten21782182010-05-21 18:41:01 +020038#include <linux/io.h>
Thomas Abraham5a5f5082011-09-13 09:46:05 +053039#include <linux/of_i2c.h>
40#include <linux/of_gpio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <asm/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Ben Dooks9498cb72008-10-30 10:14:33 +000044#include <plat/regs-iic.h>
45#include <plat/iic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
47/* i2c controller state */
48
49enum s3c24xx_i2c_state {
50 STATE_IDLE,
51 STATE_START,
52 STATE_READ,
53 STATE_WRITE,
54 STATE_STOP
55};
56
Ben Dooks7d85ccd2009-06-12 10:45:29 +010057enum s3c24xx_i2c_type {
58 TYPE_S3C2410,
59 TYPE_S3C2440,
60};
61
Linus Torvalds1da177e2005-04-16 15:20:36 -070062struct s3c24xx_i2c {
63 spinlock_t lock;
64 wait_queue_head_t wait;
Ben Dooksbe44f012008-10-31 16:10:22 +000065 unsigned int suspended:1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
67 struct i2c_msg *msg;
68 unsigned int msg_num;
69 unsigned int msg_idx;
70 unsigned int msg_ptr;
71
Ben Dookse00a8cd2007-05-01 23:26:35 +020072 unsigned int tx_setup;
Ben Dookse0d1ec92008-10-31 16:10:30 +000073 unsigned int irq;
Ben Dookse00a8cd2007-05-01 23:26:35 +020074
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 enum s3c24xx_i2c_state state;
Ben Dooks61c7cff2008-07-28 12:04:07 +010076 unsigned long clkrate;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
78 void __iomem *regs;
79 struct clk *clk;
80 struct device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 struct resource *ioarea;
82 struct i2c_adapter adap;
Ben Dooks61c7cff2008-07-28 12:04:07 +010083
Thomas Abraham4fd81eb2011-09-13 09:46:04 +053084 struct s3c2410_platform_i2c *pdata;
Thomas Abraham5a5f5082011-09-13 09:46:05 +053085 int gpios[2];
Ben Dooks61c7cff2008-07-28 12:04:07 +010086#ifdef CONFIG_CPU_FREQ
87 struct notifier_block freq_transition;
88#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070089};
90
Ben Dooks6a039ca2008-10-31 16:10:27 +000091/* default platform data removed, dev should always carry data. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
93/* s3c24xx_i2c_is2440()
94 *
95 * return true is this is an s3c2440
96*/
97
98static inline int s3c24xx_i2c_is2440(struct s3c24xx_i2c *i2c)
99{
100 struct platform_device *pdev = to_platform_device(i2c->dev);
Ben Dooks7d85ccd2009-06-12 10:45:29 +0100101 enum s3c24xx_i2c_type type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
Thomas Abraham5a5f5082011-09-13 09:46:05 +0530103#ifdef CONFIG_OF
104 if (i2c->dev->of_node)
105 return of_device_is_compatible(i2c->dev->of_node,
106 "samsung,s3c2440-i2c");
107#endif
108
Ben Dooks7d85ccd2009-06-12 10:45:29 +0100109 type = platform_get_device_id(pdev)->driver_data;
110 return type == TYPE_S3C2440;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111}
112
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113/* s3c24xx_i2c_master_complete
114 *
115 * complete the message and wake up the caller, using the given return code,
116 * or zero to mean ok.
117*/
118
119static inline void s3c24xx_i2c_master_complete(struct s3c24xx_i2c *i2c, int ret)
120{
121 dev_dbg(i2c->dev, "master_complete %d\n", ret);
122
123 i2c->msg_ptr = 0;
124 i2c->msg = NULL;
Ben Dooks3d0911b2008-10-31 16:10:24 +0000125 i2c->msg_idx++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 i2c->msg_num = 0;
127 if (ret)
128 i2c->msg_idx = ret;
129
130 wake_up(&i2c->wait);
131}
132
133static inline void s3c24xx_i2c_disable_ack(struct s3c24xx_i2c *i2c)
134{
135 unsigned long tmp;
Ben Dooks3d0911b2008-10-31 16:10:24 +0000136
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 tmp = readl(i2c->regs + S3C2410_IICCON);
138 writel(tmp & ~S3C2410_IICCON_ACKEN, i2c->regs + S3C2410_IICCON);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139}
140
141static inline void s3c24xx_i2c_enable_ack(struct s3c24xx_i2c *i2c)
142{
143 unsigned long tmp;
Ben Dooks3d0911b2008-10-31 16:10:24 +0000144
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 tmp = readl(i2c->regs + S3C2410_IICCON);
146 writel(tmp | S3C2410_IICCON_ACKEN, i2c->regs + S3C2410_IICCON);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147}
148
149/* irq enable/disable functions */
150
151static inline void s3c24xx_i2c_disable_irq(struct s3c24xx_i2c *i2c)
152{
153 unsigned long tmp;
Ben Dooks3d0911b2008-10-31 16:10:24 +0000154
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 tmp = readl(i2c->regs + S3C2410_IICCON);
156 writel(tmp & ~S3C2410_IICCON_IRQEN, i2c->regs + S3C2410_IICCON);
157}
158
159static inline void s3c24xx_i2c_enable_irq(struct s3c24xx_i2c *i2c)
160{
161 unsigned long tmp;
Ben Dooks3d0911b2008-10-31 16:10:24 +0000162
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 tmp = readl(i2c->regs + S3C2410_IICCON);
164 writel(tmp | S3C2410_IICCON_IRQEN, i2c->regs + S3C2410_IICCON);
165}
166
167
168/* s3c24xx_i2c_message_start
169 *
Ben Dooks3d0911b2008-10-31 16:10:24 +0000170 * put the start of a message onto the bus
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171*/
172
Ben Dooks3d0911b2008-10-31 16:10:24 +0000173static void s3c24xx_i2c_message_start(struct s3c24xx_i2c *i2c,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 struct i2c_msg *msg)
175{
176 unsigned int addr = (msg->addr & 0x7f) << 1;
177 unsigned long stat;
178 unsigned long iiccon;
179
180 stat = 0;
181 stat |= S3C2410_IICSTAT_TXRXEN;
182
183 if (msg->flags & I2C_M_RD) {
184 stat |= S3C2410_IICSTAT_MASTER_RX;
185 addr |= 1;
186 } else
187 stat |= S3C2410_IICSTAT_MASTER_TX;
188
189 if (msg->flags & I2C_M_REV_DIR_ADDR)
190 addr ^= 1;
191
Ben Dooks3d0911b2008-10-31 16:10:24 +0000192 /* todo - check for wether ack wanted or not */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 s3c24xx_i2c_enable_ack(i2c);
194
195 iiccon = readl(i2c->regs + S3C2410_IICCON);
196 writel(stat, i2c->regs + S3C2410_IICSTAT);
Ben Dooks3d0911b2008-10-31 16:10:24 +0000197
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 dev_dbg(i2c->dev, "START: %08lx to IICSTAT, %02x to DS\n", stat, addr);
199 writeb(addr, i2c->regs + S3C2410_IICDS);
Ben Dooks3d0911b2008-10-31 16:10:24 +0000200
Ben Dookse00a8cd2007-05-01 23:26:35 +0200201 /* delay here to ensure the data byte has gotten onto the bus
202 * before the transaction is started */
203
204 ndelay(i2c->tx_setup);
205
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 dev_dbg(i2c->dev, "iiccon, %08lx\n", iiccon);
207 writel(iiccon, i2c->regs + S3C2410_IICCON);
Ben Dooks3d0911b2008-10-31 16:10:24 +0000208
209 stat |= S3C2410_IICSTAT_START;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 writel(stat, i2c->regs + S3C2410_IICSTAT);
211}
212
213static inline void s3c24xx_i2c_stop(struct s3c24xx_i2c *i2c, int ret)
214{
215 unsigned long iicstat = readl(i2c->regs + S3C2410_IICSTAT);
216
217 dev_dbg(i2c->dev, "STOP\n");
218
219 /* stop the transfer */
Ben Dooks3d0911b2008-10-31 16:10:24 +0000220 iicstat &= ~S3C2410_IICSTAT_START;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 writel(iicstat, i2c->regs + S3C2410_IICSTAT);
Ben Dooks3d0911b2008-10-31 16:10:24 +0000222
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 i2c->state = STATE_STOP;
Ben Dooks3d0911b2008-10-31 16:10:24 +0000224
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 s3c24xx_i2c_master_complete(i2c, ret);
226 s3c24xx_i2c_disable_irq(i2c);
227}
228
229/* helper functions to determine the current state in the set of
230 * messages we are sending */
231
232/* is_lastmsg()
233 *
Ben Dooks3d0911b2008-10-31 16:10:24 +0000234 * returns TRUE if the current message is the last in the set
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235*/
236
237static inline int is_lastmsg(struct s3c24xx_i2c *i2c)
238{
239 return i2c->msg_idx >= (i2c->msg_num - 1);
240}
241
242/* is_msglast
243 *
244 * returns TRUE if we this is the last byte in the current message
245*/
246
247static inline int is_msglast(struct s3c24xx_i2c *i2c)
248{
249 return i2c->msg_ptr == i2c->msg->len-1;
250}
251
252/* is_msgend
253 *
254 * returns TRUE if we reached the end of the current message
255*/
256
257static inline int is_msgend(struct s3c24xx_i2c *i2c)
258{
259 return i2c->msg_ptr >= i2c->msg->len;
260}
261
Huisung Kang19820512011-06-23 21:37:33 +0900262/* i2c_s3c_irq_nextbyte
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 *
264 * process an interrupt and work out what to do
265 */
266
Huisung Kang19820512011-06-23 21:37:33 +0900267static int i2c_s3c_irq_nextbyte(struct s3c24xx_i2c *i2c, unsigned long iicstat)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268{
269 unsigned long tmp;
270 unsigned char byte;
271 int ret = 0;
272
273 switch (i2c->state) {
274
275 case STATE_IDLE:
Harvey Harrison08882d22008-04-22 22:16:47 +0200276 dev_err(i2c->dev, "%s: called in STATE_IDLE\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
279 case STATE_STOP:
Harvey Harrison08882d22008-04-22 22:16:47 +0200280 dev_err(i2c->dev, "%s: called in STATE_STOP\n", __func__);
Ben Dooks3d0911b2008-10-31 16:10:24 +0000281 s3c24xx_i2c_disable_irq(i2c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 goto out_ack;
283
284 case STATE_START:
285 /* last thing we did was send a start condition on the
286 * bus, or started a new i2c message
287 */
Ben Dooks3d0911b2008-10-31 16:10:24 +0000288
Ben Dooks63f5c282008-07-01 11:59:42 +0100289 if (iicstat & S3C2410_IICSTAT_LASTBIT &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 !(i2c->msg->flags & I2C_M_IGNORE_NAK)) {
291 /* ack was not received... */
292
293 dev_dbg(i2c->dev, "ack was not received\n");
Ben Dooks63f5c282008-07-01 11:59:42 +0100294 s3c24xx_i2c_stop(i2c, -ENXIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 goto out_ack;
296 }
297
298 if (i2c->msg->flags & I2C_M_RD)
299 i2c->state = STATE_READ;
300 else
301 i2c->state = STATE_WRITE;
302
303 /* terminate the transfer if there is nothing to do
Ben Dooks63f5c282008-07-01 11:59:42 +0100304 * as this is used by the i2c probe to find devices. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
306 if (is_lastmsg(i2c) && i2c->msg->len == 0) {
307 s3c24xx_i2c_stop(i2c, 0);
308 goto out_ack;
309 }
310
311 if (i2c->state == STATE_READ)
312 goto prepare_read;
313
Ben Dooks3d0911b2008-10-31 16:10:24 +0000314 /* fall through to the write state, as we will need to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 * send a byte as well */
316
317 case STATE_WRITE:
318 /* we are writing data to the device... check for the
319 * end of the message, and if so, work out what to do
320 */
321
Ben Dooks27097812008-07-01 11:59:41 +0100322 if (!(i2c->msg->flags & I2C_M_IGNORE_NAK)) {
323 if (iicstat & S3C2410_IICSTAT_LASTBIT) {
324 dev_dbg(i2c->dev, "WRITE: No Ack\n");
325
326 s3c24xx_i2c_stop(i2c, -ECONNREFUSED);
327 goto out_ack;
328 }
329 }
330
Ben Dooks3d0911b2008-10-31 16:10:24 +0000331 retry_write:
Ben Dooks27097812008-07-01 11:59:41 +0100332
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 if (!is_msgend(i2c)) {
334 byte = i2c->msg->buf[i2c->msg_ptr++];
335 writeb(byte, i2c->regs + S3C2410_IICDS);
Ben Dookse00a8cd2007-05-01 23:26:35 +0200336
337 /* delay after writing the byte to allow the
338 * data setup time on the bus, as writing the
339 * data to the register causes the first bit
340 * to appear on SDA, and SCL will change as
341 * soon as the interrupt is acknowledged */
342
343 ndelay(i2c->tx_setup);
344
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 } else if (!is_lastmsg(i2c)) {
346 /* we need to go to the next i2c message */
347
348 dev_dbg(i2c->dev, "WRITE: Next Message\n");
349
350 i2c->msg_ptr = 0;
Ben Dooks3d0911b2008-10-31 16:10:24 +0000351 i2c->msg_idx++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 i2c->msg++;
Ben Dooks3d0911b2008-10-31 16:10:24 +0000353
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 /* check to see if we need to do another message */
355 if (i2c->msg->flags & I2C_M_NOSTART) {
356
357 if (i2c->msg->flags & I2C_M_RD) {
358 /* cannot do this, the controller
359 * forces us to send a new START
360 * when we change direction */
361
362 s3c24xx_i2c_stop(i2c, -EINVAL);
363 }
364
365 goto retry_write;
366 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 /* send the new start */
368 s3c24xx_i2c_message_start(i2c, i2c->msg);
369 i2c->state = STATE_START;
370 }
371
372 } else {
373 /* send stop */
374
375 s3c24xx_i2c_stop(i2c, 0);
376 }
377 break;
378
379 case STATE_READ:
Ben Dooks3d0911b2008-10-31 16:10:24 +0000380 /* we have a byte of data in the data register, do
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 * something with it, and then work out wether we are
382 * going to do any more read/write
383 */
384
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 byte = readb(i2c->regs + S3C2410_IICDS);
386 i2c->msg->buf[i2c->msg_ptr++] = byte;
387
Ben Dooks3d0911b2008-10-31 16:10:24 +0000388 prepare_read:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 if (is_msglast(i2c)) {
390 /* last byte of buffer */
391
392 if (is_lastmsg(i2c))
393 s3c24xx_i2c_disable_ack(i2c);
Ben Dooks3d0911b2008-10-31 16:10:24 +0000394
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 } else if (is_msgend(i2c)) {
396 /* ok, we've read the entire buffer, see if there
397 * is anything else we need to do */
398
399 if (is_lastmsg(i2c)) {
400 /* last message, send stop and complete */
401 dev_dbg(i2c->dev, "READ: Send Stop\n");
402
403 s3c24xx_i2c_stop(i2c, 0);
404 } else {
405 /* go to the next transfer */
406 dev_dbg(i2c->dev, "READ: Next Transfer\n");
407
408 i2c->msg_ptr = 0;
409 i2c->msg_idx++;
410 i2c->msg++;
411 }
412 }
413
414 break;
415 }
416
417 /* acknowlegde the IRQ and get back on with the work */
418
419 out_ack:
Ben Dooks3d0911b2008-10-31 16:10:24 +0000420 tmp = readl(i2c->regs + S3C2410_IICCON);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 tmp &= ~S3C2410_IICCON_IRQPEND;
422 writel(tmp, i2c->regs + S3C2410_IICCON);
423 out:
424 return ret;
425}
426
427/* s3c24xx_i2c_irq
428 *
429 * top level IRQ servicing routine
430*/
431
David Howells7d12e782006-10-05 14:55:46 +0100432static irqreturn_t s3c24xx_i2c_irq(int irqno, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433{
434 struct s3c24xx_i2c *i2c = dev_id;
435 unsigned long status;
436 unsigned long tmp;
437
438 status = readl(i2c->regs + S3C2410_IICSTAT);
439
440 if (status & S3C2410_IICSTAT_ARBITR) {
Ben Dooks3d0911b2008-10-31 16:10:24 +0000441 /* deal with arbitration loss */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 dev_err(i2c->dev, "deal with arbitration loss\n");
443 }
444
445 if (i2c->state == STATE_IDLE) {
446 dev_dbg(i2c->dev, "IRQ: error i2c->state == IDLE\n");
447
Ben Dooks3d0911b2008-10-31 16:10:24 +0000448 tmp = readl(i2c->regs + S3C2410_IICCON);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 tmp &= ~S3C2410_IICCON_IRQPEND;
450 writel(tmp, i2c->regs + S3C2410_IICCON);
451 goto out;
452 }
Ben Dooks3d0911b2008-10-31 16:10:24 +0000453
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 /* pretty much this leaves us with the fact that we've
455 * transmitted or received whatever byte we last sent */
456
Huisung Kang19820512011-06-23 21:37:33 +0900457 i2c_s3c_irq_nextbyte(i2c, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
459 out:
460 return IRQ_HANDLED;
461}
462
463
464/* s3c24xx_i2c_set_master
465 *
466 * get the i2c bus for a master transaction
467*/
468
469static int s3c24xx_i2c_set_master(struct s3c24xx_i2c *i2c)
470{
471 unsigned long iicstat;
472 int timeout = 400;
473
474 while (timeout-- > 0) {
475 iicstat = readl(i2c->regs + S3C2410_IICSTAT);
Ben Dooks3d0911b2008-10-31 16:10:24 +0000476
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 if (!(iicstat & S3C2410_IICSTAT_BUSBUSY))
478 return 0;
479
480 msleep(1);
481 }
482
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 return -ETIMEDOUT;
484}
485
486/* s3c24xx_i2c_doxfer
487 *
488 * this starts an i2c transfer
489*/
490
Ben Dooks3d0911b2008-10-31 16:10:24 +0000491static int s3c24xx_i2c_doxfer(struct s3c24xx_i2c *i2c,
492 struct i2c_msg *msgs, int num)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493{
Mark Brown1bc29622010-04-02 14:15:09 +0100494 unsigned long iicstat, timeout;
495 int spins = 20;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 int ret;
497
Ben Dooksbe44f012008-10-31 16:10:22 +0000498 if (i2c->suspended)
Ben Dooks61c7cff2008-07-28 12:04:07 +0100499 return -EIO;
500
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 ret = s3c24xx_i2c_set_master(i2c);
502 if (ret != 0) {
503 dev_err(i2c->dev, "cannot get bus (error %d)\n", ret);
504 ret = -EAGAIN;
505 goto out;
506 }
507
508 spin_lock_irq(&i2c->lock);
509
510 i2c->msg = msgs;
511 i2c->msg_num = num;
512 i2c->msg_ptr = 0;
513 i2c->msg_idx = 0;
514 i2c->state = STATE_START;
515
516 s3c24xx_i2c_enable_irq(i2c);
517 s3c24xx_i2c_message_start(i2c, msgs);
518 spin_unlock_irq(&i2c->lock);
Ben Dooks3d0911b2008-10-31 16:10:24 +0000519
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 timeout = wait_event_timeout(i2c->wait, i2c->msg_num == 0, HZ * 5);
521
522 ret = i2c->msg_idx;
523
Ben Dooks3d0911b2008-10-31 16:10:24 +0000524 /* having these next two as dev_err() makes life very
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 * noisy when doing an i2cdetect */
526
527 if (timeout == 0)
528 dev_dbg(i2c->dev, "timeout\n");
529 else if (ret != num)
530 dev_dbg(i2c->dev, "incomplete xfer (%d)\n", ret);
531
532 /* ensure the stop has been through the bus */
533
Mark Brown1bc29622010-04-02 14:15:09 +0100534 dev_dbg(i2c->dev, "waiting for bus idle\n");
535
536 /* first, try busy waiting briefly */
537 do {
Mark Brown37de03e2011-12-09 20:55:03 +0800538 cpu_relax();
Mark Brown1bc29622010-04-02 14:15:09 +0100539 iicstat = readl(i2c->regs + S3C2410_IICSTAT);
540 } while ((iicstat & S3C2410_IICSTAT_START) && --spins);
541
542 /* if that timed out sleep */
543 if (!spins) {
544 msleep(1);
545 iicstat = readl(i2c->regs + S3C2410_IICSTAT);
546 }
547
548 if (iicstat & S3C2410_IICSTAT_START)
549 dev_warn(i2c->dev, "timeout waiting for bus idle\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
551 out:
552 return ret;
553}
554
555/* s3c24xx_i2c_xfer
556 *
557 * first port of call from the i2c bus code when an message needs
Steven Cole44bbe872005-05-03 18:21:25 -0600558 * transferring across the i2c bus.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559*/
560
561static int s3c24xx_i2c_xfer(struct i2c_adapter *adap,
562 struct i2c_msg *msgs, int num)
563{
564 struct s3c24xx_i2c *i2c = (struct s3c24xx_i2c *)adap->algo_data;
565 int retry;
566 int ret;
567
Mark Brownc62c3ca2012-01-21 13:28:47 +0000568 pm_runtime_get_sync(&adap->dev);
Arnaud Patard (Rtp)d2360b82010-07-15 15:06:14 +0200569 clk_enable(i2c->clk);
570
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 for (retry = 0; retry < adap->retries; retry++) {
572
573 ret = s3c24xx_i2c_doxfer(i2c, msgs, num);
574
Arnaud Patard (Rtp)d2360b82010-07-15 15:06:14 +0200575 if (ret != -EAGAIN) {
576 clk_disable(i2c->clk);
Mark Brownc62c3ca2012-01-21 13:28:47 +0000577 pm_runtime_put_sync(&adap->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 return ret;
Arnaud Patard (Rtp)d2360b82010-07-15 15:06:14 +0200579 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
581 dev_dbg(i2c->dev, "Retrying transmission (%d)\n", retry);
582
583 udelay(100);
584 }
585
Arnaud Patard (Rtp)d2360b82010-07-15 15:06:14 +0200586 clk_disable(i2c->clk);
Mark Brownc62c3ca2012-01-21 13:28:47 +0000587 pm_runtime_put_sync(&adap->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 return -EREMOTEIO;
589}
590
591/* declare our i2c functionality */
592static u32 s3c24xx_i2c_func(struct i2c_adapter *adap)
593{
594 return I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL | I2C_FUNC_PROTOCOL_MANGLING;
595}
596
597/* i2c bus registration info */
598
Jean Delvare8f9082c2006-09-03 22:39:46 +0200599static const struct i2c_algorithm s3c24xx_i2c_algorithm = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 .master_xfer = s3c24xx_i2c_xfer,
601 .functionality = s3c24xx_i2c_func,
602};
603
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604/* s3c24xx_i2c_calcdivisor
605 *
606 * return the divisor settings for a given frequency
607*/
608
609static int s3c24xx_i2c_calcdivisor(unsigned long clkin, unsigned int wanted,
610 unsigned int *div1, unsigned int *divs)
611{
612 unsigned int calc_divs = clkin / wanted;
613 unsigned int calc_div1;
614
615 if (calc_divs > (16*16))
616 calc_div1 = 512;
617 else
618 calc_div1 = 16;
619
620 calc_divs += calc_div1-1;
621 calc_divs /= calc_div1;
622
623 if (calc_divs == 0)
624 calc_divs = 1;
625 if (calc_divs > 17)
626 calc_divs = 17;
627
628 *divs = calc_divs;
629 *div1 = calc_div1;
630
631 return clkin / (calc_divs * calc_div1);
632}
633
Ben Dooks61c7cff2008-07-28 12:04:07 +0100634/* s3c24xx_i2c_clockrate
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 *
636 * work out a divisor for the user requested frequency setting,
637 * either by the requested frequency, or scanning the acceptable
638 * range of frequencies until something is found
639*/
640
Ben Dooks61c7cff2008-07-28 12:04:07 +0100641static int s3c24xx_i2c_clockrate(struct s3c24xx_i2c *i2c, unsigned int *got)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642{
Thomas Abraham4fd81eb2011-09-13 09:46:04 +0530643 struct s3c2410_platform_i2c *pdata = i2c->pdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 unsigned long clkin = clk_get_rate(i2c->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 unsigned int divs, div1;
Daniel Silverstonec564e6a2009-03-13 13:53:46 +0000646 unsigned long target_frequency;
Ben Dooks61c7cff2008-07-28 12:04:07 +0100647 u32 iiccon;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 int freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
Ben Dooks61c7cff2008-07-28 12:04:07 +0100650 i2c->clkrate = clkin;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 clkin /= 1000; /* clkin now in KHz */
Ben Dooks3d0911b2008-10-31 16:10:24 +0000652
Daniel Silverstonec564e6a2009-03-13 13:53:46 +0000653 dev_dbg(i2c->dev, "pdata desired frequency %lu\n", pdata->frequency);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
Daniel Silverstonec564e6a2009-03-13 13:53:46 +0000655 target_frequency = pdata->frequency ? pdata->frequency : 100000;
656
657 target_frequency /= 1000; /* Target frequency now in KHz */
658
659 freq = s3c24xx_i2c_calcdivisor(clkin, target_frequency, &div1, &divs);
660
661 if (freq > target_frequency) {
662 dev_err(i2c->dev,
663 "Unable to achieve desired frequency %luKHz." \
664 " Lowest achievable %dKHz\n", target_frequency, freq);
665 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 }
667
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 *got = freq;
Ben Dooks61c7cff2008-07-28 12:04:07 +0100669
670 iiccon = readl(i2c->regs + S3C2410_IICCON);
671 iiccon &= ~(S3C2410_IICCON_SCALEMASK | S3C2410_IICCON_TXDIV_512);
672 iiccon |= (divs-1);
673
674 if (div1 == 512)
675 iiccon |= S3C2410_IICCON_TXDIV_512;
676
677 writel(iiccon, i2c->regs + S3C2410_IICCON);
678
Ben Dooksa192f712009-03-27 10:52:13 +0000679 if (s3c24xx_i2c_is2440(i2c)) {
680 unsigned long sda_delay;
681
682 if (pdata->sda_delay) {
MyungJoo Ham7031307a2010-09-30 15:54:46 +0200683 sda_delay = clkin * pdata->sda_delay;
684 sda_delay = DIV_ROUND_UP(sda_delay, 1000000);
Ben Dooksa192f712009-03-27 10:52:13 +0000685 sda_delay = DIV_ROUND_UP(sda_delay, 5);
686 if (sda_delay > 3)
687 sda_delay = 3;
688 sda_delay |= S3C2410_IICLC_FILTER_ON;
689 } else
690 sda_delay = 0;
691
692 dev_dbg(i2c->dev, "IICLC=%08lx\n", sda_delay);
693 writel(sda_delay, i2c->regs + S3C2440_IICLC);
694 }
695
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 return 0;
697}
698
Ben Dooks61c7cff2008-07-28 12:04:07 +0100699#ifdef CONFIG_CPU_FREQ
700
701#define freq_to_i2c(_n) container_of(_n, struct s3c24xx_i2c, freq_transition)
702
703static int s3c24xx_i2c_cpufreq_transition(struct notifier_block *nb,
704 unsigned long val, void *data)
705{
706 struct s3c24xx_i2c *i2c = freq_to_i2c(nb);
707 unsigned long flags;
708 unsigned int got;
709 int delta_f;
710 int ret;
711
712 delta_f = clk_get_rate(i2c->clk) - i2c->clkrate;
713
714 /* if we're post-change and the input clock has slowed down
715 * or at pre-change and the clock is about to speed up, then
716 * adjust our clock rate. <0 is slow, >0 speedup.
717 */
718
719 if ((val == CPUFREQ_POSTCHANGE && delta_f < 0) ||
720 (val == CPUFREQ_PRECHANGE && delta_f > 0)) {
721 spin_lock_irqsave(&i2c->lock, flags);
722 ret = s3c24xx_i2c_clockrate(i2c, &got);
723 spin_unlock_irqrestore(&i2c->lock, flags);
724
725 if (ret < 0)
726 dev_err(i2c->dev, "cannot find frequency\n");
727 else
728 dev_info(i2c->dev, "setting freq %d\n", got);
729 }
730
731 return 0;
732}
733
734static inline int s3c24xx_i2c_register_cpufreq(struct s3c24xx_i2c *i2c)
735{
736 i2c->freq_transition.notifier_call = s3c24xx_i2c_cpufreq_transition;
737
738 return cpufreq_register_notifier(&i2c->freq_transition,
739 CPUFREQ_TRANSITION_NOTIFIER);
740}
741
742static inline void s3c24xx_i2c_deregister_cpufreq(struct s3c24xx_i2c *i2c)
743{
744 cpufreq_unregister_notifier(&i2c->freq_transition,
745 CPUFREQ_TRANSITION_NOTIFIER);
746}
747
748#else
749static inline int s3c24xx_i2c_register_cpufreq(struct s3c24xx_i2c *i2c)
750{
751 return 0;
752}
753
754static inline void s3c24xx_i2c_deregister_cpufreq(struct s3c24xx_i2c *i2c)
755{
756}
757#endif
758
Thomas Abraham5a5f5082011-09-13 09:46:05 +0530759#ifdef CONFIG_OF
760static int s3c24xx_i2c_parse_dt_gpio(struct s3c24xx_i2c *i2c)
761{
762 int idx, gpio, ret;
763
764 for (idx = 0; idx < 2; idx++) {
765 gpio = of_get_gpio(i2c->dev->of_node, idx);
766 if (!gpio_is_valid(gpio)) {
767 dev_err(i2c->dev, "invalid gpio[%d]: %d\n", idx, gpio);
768 goto free_gpio;
769 }
770
771 ret = gpio_request(gpio, "i2c-bus");
772 if (ret) {
773 dev_err(i2c->dev, "gpio [%d] request failed\n", gpio);
774 goto free_gpio;
775 }
776 }
777 return 0;
778
779free_gpio:
780 while (--idx >= 0)
781 gpio_free(i2c->gpios[idx]);
782 return -EINVAL;
783}
784
785static void s3c24xx_i2c_dt_gpio_free(struct s3c24xx_i2c *i2c)
786{
787 unsigned int idx;
788 for (idx = 0; idx < 2; idx++)
789 gpio_free(i2c->gpios[idx]);
790}
791#else
792static int s3c24xx_i2c_parse_dt_gpio(struct s3c24xx_i2c *i2c)
793{
Tushar Behera8ebe6612011-12-09 15:33:55 +0530794 return 0;
Thomas Abraham5a5f5082011-09-13 09:46:05 +0530795}
796
797static void s3c24xx_i2c_dt_gpio_free(struct s3c24xx_i2c *i2c)
798{
799}
800#endif
801
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802/* s3c24xx_i2c_init
803 *
Ben Dooks3d0911b2008-10-31 16:10:24 +0000804 * initialise the controller, set the IO lines and frequency
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805*/
806
807static int s3c24xx_i2c_init(struct s3c24xx_i2c *i2c)
808{
809 unsigned long iicon = S3C2410_IICCON_IRQEN | S3C2410_IICCON_ACKEN;
810 struct s3c2410_platform_i2c *pdata;
811 unsigned int freq;
812
813 /* get the plafrom data */
814
Thomas Abraham4fd81eb2011-09-13 09:46:04 +0530815 pdata = i2c->pdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
817 /* inititalise the gpio */
818
Ben Dooks8be310a2008-10-31 16:10:25 +0000819 if (pdata->cfg_gpio)
820 pdata->cfg_gpio(to_platform_device(i2c->dev));
Thomas Abraham5a5f5082011-09-13 09:46:05 +0530821 else
822 if (s3c24xx_i2c_parse_dt_gpio(i2c))
823 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824
825 /* write slave address */
Ben Dooks3d0911b2008-10-31 16:10:24 +0000826
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 writeb(pdata->slave_addr, i2c->regs + S3C2410_IICADD);
828
829 dev_info(i2c->dev, "slave address 0x%02x\n", pdata->slave_addr);
830
Ben Dooks61c7cff2008-07-28 12:04:07 +0100831 writel(iicon, i2c->regs + S3C2410_IICCON);
832
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 /* we need to work out the divisors for the clock... */
834
Ben Dooks61c7cff2008-07-28 12:04:07 +0100835 if (s3c24xx_i2c_clockrate(i2c, &freq) != 0) {
836 writel(0, i2c->regs + S3C2410_IICCON);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 dev_err(i2c->dev, "cannot meet bus frequency required\n");
838 return -EINVAL;
839 }
840
841 /* todo - check that the i2c lines aren't being dragged anywhere */
842
843 dev_info(i2c->dev, "bus frequency set to %d KHz\n", freq);
844 dev_dbg(i2c->dev, "S3C2410_IICCON=0x%02lx\n", iicon);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 return 0;
847}
848
Thomas Abraham5a5f5082011-09-13 09:46:05 +0530849#ifdef CONFIG_OF
850/* s3c24xx_i2c_parse_dt
851 *
852 * Parse the device tree node and retreive the platform data.
853*/
854
855static void
856s3c24xx_i2c_parse_dt(struct device_node *np, struct s3c24xx_i2c *i2c)
857{
858 struct s3c2410_platform_i2c *pdata = i2c->pdata;
859
860 if (!np)
861 return;
862
863 pdata->bus_num = -1; /* i2c bus number is dynamically assigned */
864 of_property_read_u32(np, "samsung,i2c-sda-delay", &pdata->sda_delay);
865 of_property_read_u32(np, "samsung,i2c-slave-addr", &pdata->slave_addr);
866 of_property_read_u32(np, "samsung,i2c-max-bus-freq",
867 (u32 *)&pdata->frequency);
868}
869#else
870static void
871s3c24xx_i2c_parse_dt(struct device_node *np, struct s3c24xx_i2c *i2c)
872{
873 return;
874}
875#endif
876
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877/* s3c24xx_i2c_probe
878 *
879 * called by the bus driver when a suitable device is found
880*/
881
Russell King3ae5eae2005-11-09 22:32:44 +0000882static int s3c24xx_i2c_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883{
Ben Dooks692acbd2008-10-31 16:10:28 +0000884 struct s3c24xx_i2c *i2c;
Thomas Abraham4fd81eb2011-09-13 09:46:04 +0530885 struct s3c2410_platform_i2c *pdata = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 struct resource *res;
887 int ret;
888
Thomas Abraham5a5f5082011-09-13 09:46:05 +0530889 if (!pdev->dev.of_node) {
890 pdata = pdev->dev.platform_data;
891 if (!pdata) {
892 dev_err(&pdev->dev, "no platform data\n");
893 return -EINVAL;
894 }
Ben Dooks6a039ca2008-10-31 16:10:27 +0000895 }
Ben Dooks399dee22008-07-28 12:04:06 +0100896
Mark Brown4ea15572012-01-21 13:28:46 +0000897 i2c = devm_kzalloc(&pdev->dev, sizeof(struct s3c24xx_i2c), GFP_KERNEL);
Ben Dooks692acbd2008-10-31 16:10:28 +0000898 if (!i2c) {
899 dev_err(&pdev->dev, "no memory for state\n");
900 return -ENOMEM;
901 }
902
Thomas Abraham4fd81eb2011-09-13 09:46:04 +0530903 i2c->pdata = devm_kzalloc(&pdev->dev, sizeof(*pdata), GFP_KERNEL);
904 if (!i2c->pdata) {
905 ret = -ENOMEM;
906 goto err_noclk;
907 }
908
909 if (pdata)
910 memcpy(i2c->pdata, pdata, sizeof(*pdata));
Thomas Abraham5a5f5082011-09-13 09:46:05 +0530911 else
912 s3c24xx_i2c_parse_dt(pdev->dev.of_node, i2c);
Thomas Abraham4fd81eb2011-09-13 09:46:04 +0530913
Ben Dooks692acbd2008-10-31 16:10:28 +0000914 strlcpy(i2c->adap.name, "s3c2410-i2c", sizeof(i2c->adap.name));
915 i2c->adap.owner = THIS_MODULE;
916 i2c->adap.algo = &s3c24xx_i2c_algorithm;
917 i2c->adap.retries = 2;
918 i2c->adap.class = I2C_CLASS_HWMON | I2C_CLASS_SPD;
919 i2c->tx_setup = 50;
920
921 spin_lock_init(&i2c->lock);
922 init_waitqueue_head(&i2c->wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923
924 /* find the clock and enable it */
925
Russell King3ae5eae2005-11-09 22:32:44 +0000926 i2c->dev = &pdev->dev;
927 i2c->clk = clk_get(&pdev->dev, "i2c");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 if (IS_ERR(i2c->clk)) {
Russell King3ae5eae2005-11-09 22:32:44 +0000929 dev_err(&pdev->dev, "cannot get clock\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 ret = -ENOENT;
Ben Dooks5b687902007-05-01 23:26:35 +0200931 goto err_noclk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 }
933
Russell King3ae5eae2005-11-09 22:32:44 +0000934 dev_dbg(&pdev->dev, "clock source %p\n", i2c->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 clk_enable(i2c->clk);
937
938 /* map the registers */
939
940 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
941 if (res == NULL) {
Russell King3ae5eae2005-11-09 22:32:44 +0000942 dev_err(&pdev->dev, "cannot find IO resource\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 ret = -ENOENT;
Ben Dooks5b687902007-05-01 23:26:35 +0200944 goto err_clk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 }
946
Ben Dooks933a2ae2009-06-14 14:04:20 +0100947 i2c->ioarea = request_mem_region(res->start, resource_size(res),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 pdev->name);
949
950 if (i2c->ioarea == NULL) {
Russell King3ae5eae2005-11-09 22:32:44 +0000951 dev_err(&pdev->dev, "cannot request IO\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 ret = -ENXIO;
Ben Dooks5b687902007-05-01 23:26:35 +0200953 goto err_clk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 }
955
Ben Dooks933a2ae2009-06-14 14:04:20 +0100956 i2c->regs = ioremap(res->start, resource_size(res));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957
958 if (i2c->regs == NULL) {
Russell King3ae5eae2005-11-09 22:32:44 +0000959 dev_err(&pdev->dev, "cannot map IO\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 ret = -ENXIO;
Ben Dooks5b687902007-05-01 23:26:35 +0200961 goto err_ioarea;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 }
963
Ben Dooks3d0911b2008-10-31 16:10:24 +0000964 dev_dbg(&pdev->dev, "registers %p (%p, %p)\n",
965 i2c->regs, i2c->ioarea, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966
967 /* setup info block for the i2c core */
968
969 i2c->adap.algo_data = i2c;
Russell King3ae5eae2005-11-09 22:32:44 +0000970 i2c->adap.dev.parent = &pdev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971
972 /* initialise the i2c controller */
973
974 ret = s3c24xx_i2c_init(i2c);
975 if (ret != 0)
Ben Dooks5b687902007-05-01 23:26:35 +0200976 goto err_iomap;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977
978 /* find the IRQ for this unit (note, this relies on the init call to
Ben Dooks3d0911b2008-10-31 16:10:24 +0000979 * ensure no current IRQs pending
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 */
981
Ben Dookse0d1ec92008-10-31 16:10:30 +0000982 i2c->irq = ret = platform_get_irq(pdev, 0);
983 if (ret <= 0) {
Russell King3ae5eae2005-11-09 22:32:44 +0000984 dev_err(&pdev->dev, "cannot find IRQ\n");
Ben Dooks5b687902007-05-01 23:26:35 +0200985 goto err_iomap;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 }
987
Yong Zhang43110512011-09-21 17:28:33 +0800988 ret = request_irq(i2c->irq, s3c24xx_i2c_irq, 0,
Ben Dookse0d1ec92008-10-31 16:10:30 +0000989 dev_name(&pdev->dev), i2c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990
991 if (ret != 0) {
Ben Dookse0d1ec92008-10-31 16:10:30 +0000992 dev_err(&pdev->dev, "cannot claim IRQ %d\n", i2c->irq);
Ben Dooks5b687902007-05-01 23:26:35 +0200993 goto err_iomap;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 }
995
Ben Dooks61c7cff2008-07-28 12:04:07 +0100996 ret = s3c24xx_i2c_register_cpufreq(i2c);
997 if (ret < 0) {
998 dev_err(&pdev->dev, "failed to register cpufreq notifier\n");
999 goto err_irq;
1000 }
1001
Ben Dooks399dee22008-07-28 12:04:06 +01001002 /* Note, previous versions of the driver used i2c_add_adapter()
1003 * to add the bus at any number. We now pass the bus number via
1004 * the platform data, so if unset it will now default to always
1005 * being bus 0.
1006 */
1007
Thomas Abraham4fd81eb2011-09-13 09:46:04 +05301008 i2c->adap.nr = i2c->pdata->bus_num;
Thomas Abraham5a5f5082011-09-13 09:46:05 +05301009 i2c->adap.dev.of_node = pdev->dev.of_node;
Ben Dooks399dee22008-07-28 12:04:06 +01001010
1011 ret = i2c_add_numbered_adapter(&i2c->adap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 if (ret < 0) {
Russell King3ae5eae2005-11-09 22:32:44 +00001013 dev_err(&pdev->dev, "failed to add bus to i2c core\n");
Ben Dooks61c7cff2008-07-28 12:04:07 +01001014 goto err_cpufreq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 }
1016
Thomas Abraham5a5f5082011-09-13 09:46:05 +05301017 of_i2c_register_devices(&i2c->adap);
Russell King3ae5eae2005-11-09 22:32:44 +00001018 platform_set_drvdata(pdev, i2c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019
Mark Brownc62c3ca2012-01-21 13:28:47 +00001020 pm_runtime_enable(&pdev->dev);
1021 pm_runtime_enable(&i2c->adap.dev);
1022
Jean Delvare22e965c2009-01-07 14:29:16 +01001023 dev_info(&pdev->dev, "%s: S3C I2C adapter\n", dev_name(&i2c->adap.dev));
Arnaud Patard (Rtp)d2360b82010-07-15 15:06:14 +02001024 clk_disable(i2c->clk);
Ben Dooks5b687902007-05-01 23:26:35 +02001025 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026
Ben Dooks61c7cff2008-07-28 12:04:07 +01001027 err_cpufreq:
1028 s3c24xx_i2c_deregister_cpufreq(i2c);
1029
Ben Dooks5b687902007-05-01 23:26:35 +02001030 err_irq:
Ben Dookse0d1ec92008-10-31 16:10:30 +00001031 free_irq(i2c->irq, i2c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032
Ben Dooks5b687902007-05-01 23:26:35 +02001033 err_iomap:
1034 iounmap(i2c->regs);
1035
1036 err_ioarea:
1037 release_resource(i2c->ioarea);
1038 kfree(i2c->ioarea);
1039
1040 err_clk:
1041 clk_disable(i2c->clk);
1042 clk_put(i2c->clk);
1043
1044 err_noclk:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 return ret;
1046}
1047
1048/* s3c24xx_i2c_remove
1049 *
1050 * called when device is removed from the bus
1051*/
1052
Russell King3ae5eae2005-11-09 22:32:44 +00001053static int s3c24xx_i2c_remove(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054{
Russell King3ae5eae2005-11-09 22:32:44 +00001055 struct s3c24xx_i2c *i2c = platform_get_drvdata(pdev);
Ben Dooks5b687902007-05-01 23:26:35 +02001056
Mark Brownc62c3ca2012-01-21 13:28:47 +00001057 pm_runtime_disable(&i2c->adap.dev);
1058 pm_runtime_disable(&pdev->dev);
1059
Ben Dooks61c7cff2008-07-28 12:04:07 +01001060 s3c24xx_i2c_deregister_cpufreq(i2c);
1061
Ben Dooks5b687902007-05-01 23:26:35 +02001062 i2c_del_adapter(&i2c->adap);
Ben Dookse0d1ec92008-10-31 16:10:30 +00001063 free_irq(i2c->irq, i2c);
Ben Dooks5b687902007-05-01 23:26:35 +02001064
1065 clk_disable(i2c->clk);
1066 clk_put(i2c->clk);
1067
1068 iounmap(i2c->regs);
1069
1070 release_resource(i2c->ioarea);
Thomas Abraham5a5f5082011-09-13 09:46:05 +05301071 s3c24xx_i2c_dt_gpio_free(i2c);
Ben Dooks5b687902007-05-01 23:26:35 +02001072 kfree(i2c->ioarea);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073
1074 return 0;
1075}
1076
1077#ifdef CONFIG_PM
Magnus Damm6a6c61892009-07-08 13:22:47 +02001078static int s3c24xx_i2c_suspend_noirq(struct device *dev)
Ben Dooksbe44f012008-10-31 16:10:22 +00001079{
Magnus Damm6a6c61892009-07-08 13:22:47 +02001080 struct platform_device *pdev = to_platform_device(dev);
1081 struct s3c24xx_i2c *i2c = platform_get_drvdata(pdev);
1082
Ben Dooksbe44f012008-10-31 16:10:22 +00001083 i2c->suspended = 1;
Magnus Damm6a6c61892009-07-08 13:22:47 +02001084
Ben Dooksbe44f012008-10-31 16:10:22 +00001085 return 0;
1086}
1087
Magnus Damm6a6c61892009-07-08 13:22:47 +02001088static int s3c24xx_i2c_resume(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089{
Magnus Damm6a6c61892009-07-08 13:22:47 +02001090 struct platform_device *pdev = to_platform_device(dev);
1091 struct s3c24xx_i2c *i2c = platform_get_drvdata(pdev);
Russell King9480e302005-10-28 09:52:56 -07001092
Ben Dooksbe44f012008-10-31 16:10:22 +00001093 i2c->suspended = 0;
Arnaud Patard (Rtp)d2360b82010-07-15 15:06:14 +02001094 clk_enable(i2c->clk);
Ben Dooksbe44f012008-10-31 16:10:22 +00001095 s3c24xx_i2c_init(i2c);
Arnaud Patard (Rtp)d2360b82010-07-15 15:06:14 +02001096 clk_disable(i2c->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097
1098 return 0;
1099}
1100
Alexey Dobriyan47145212009-12-14 18:00:08 -08001101static const struct dev_pm_ops s3c24xx_i2c_dev_pm_ops = {
Magnus Damm6a6c61892009-07-08 13:22:47 +02001102 .suspend_noirq = s3c24xx_i2c_suspend_noirq,
1103 .resume = s3c24xx_i2c_resume,
1104};
1105
1106#define S3C24XX_DEV_PM_OPS (&s3c24xx_i2c_dev_pm_ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107#else
Magnus Damm6a6c61892009-07-08 13:22:47 +02001108#define S3C24XX_DEV_PM_OPS NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109#endif
1110
1111/* device driver for platform bus bits */
1112
Ben Dooks7d85ccd2009-06-12 10:45:29 +01001113static struct platform_device_id s3c24xx_driver_ids[] = {
1114 {
1115 .name = "s3c2410-i2c",
1116 .driver_data = TYPE_S3C2410,
1117 }, {
1118 .name = "s3c2440-i2c",
1119 .driver_data = TYPE_S3C2440,
1120 }, { },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121};
Ben Dooks7d85ccd2009-06-12 10:45:29 +01001122MODULE_DEVICE_TABLE(platform, s3c24xx_driver_ids);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123
Thomas Abraham5a5f5082011-09-13 09:46:05 +05301124#ifdef CONFIG_OF
1125static const struct of_device_id s3c24xx_i2c_match[] = {
1126 { .compatible = "samsung,s3c2410-i2c" },
1127 { .compatible = "samsung,s3c2440-i2c" },
1128 {},
1129};
1130MODULE_DEVICE_TABLE(of, s3c24xx_i2c_match);
Thomas Abraham5a5f5082011-09-13 09:46:05 +05301131#endif
1132
Ben Dooks7d85ccd2009-06-12 10:45:29 +01001133static struct platform_driver s3c24xx_i2c_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 .probe = s3c24xx_i2c_probe,
1135 .remove = s3c24xx_i2c_remove,
Ben Dooks7d85ccd2009-06-12 10:45:29 +01001136 .id_table = s3c24xx_driver_ids,
Russell King3ae5eae2005-11-09 22:32:44 +00001137 .driver = {
1138 .owner = THIS_MODULE,
Ben Dooks7d85ccd2009-06-12 10:45:29 +01001139 .name = "s3c-i2c",
Magnus Damm6a6c61892009-07-08 13:22:47 +02001140 .pm = S3C24XX_DEV_PM_OPS,
Karol Lewandowski9df7ead2012-03-21 20:11:51 +01001141 .of_match_table = of_match_ptr(s3c24xx_i2c_match),
Russell King3ae5eae2005-11-09 22:32:44 +00001142 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143};
1144
1145static int __init i2c_adap_s3c_init(void)
1146{
Ben Dooks7d85ccd2009-06-12 10:45:29 +01001147 return platform_driver_register(&s3c24xx_i2c_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148}
Mark Brown18dc83a2009-02-26 16:29:22 +00001149subsys_initcall(i2c_adap_s3c_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150
1151static void __exit i2c_adap_s3c_exit(void)
1152{
Ben Dooks7d85ccd2009-06-12 10:45:29 +01001153 platform_driver_unregister(&s3c24xx_i2c_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155module_exit(i2c_adap_s3c_exit);
1156
1157MODULE_DESCRIPTION("S3C24XX I2C Bus driver");
1158MODULE_AUTHOR("Ben Dooks, <ben@simtec.co.uk>");
1159MODULE_LICENSE("GPL");