blob: 58cfd3111ef62fac86eadd283b437018995bd4b4 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* linux/drivers/i2c/busses/i2c-s3c2410.c
2 *
3 * Copyright (C) 2004,2005 Simtec Electronics
4 * 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
Alexey Dobriyanf0bb60e2005-04-16 18:10:02 +000023#include <linux/config.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/kernel.h>
25#include <linux/module.h>
26
27#include <linux/i2c.h>
28#include <linux/i2c-id.h>
29#include <linux/init.h>
30#include <linux/time.h>
31#include <linux/interrupt.h>
32#include <linux/sched.h>
33#include <linux/delay.h>
34#include <linux/errno.h>
35#include <linux/err.h>
Russell Kingd052d1b2005-10-29 19:07:23 +010036#include <linux/platform_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38#include <asm/hardware.h>
39#include <asm/irq.h>
40#include <asm/io.h>
41
42#include <asm/hardware/clock.h>
43#include <asm/arch/regs-gpio.h>
44#include <asm/arch/regs-iic.h>
45#include <asm/arch/iic.h>
46
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
57struct s3c24xx_i2c {
58 spinlock_t lock;
59 wait_queue_head_t wait;
60
61 struct i2c_msg *msg;
62 unsigned int msg_num;
63 unsigned int msg_idx;
64 unsigned int msg_ptr;
65
66 enum s3c24xx_i2c_state state;
67
68 void __iomem *regs;
69 struct clk *clk;
70 struct device *dev;
71 struct resource *irq;
72 struct resource *ioarea;
73 struct i2c_adapter adap;
74};
75
76/* default platform data to use if not supplied in the platform_device
77*/
78
79static struct s3c2410_platform_i2c s3c24xx_i2c_default_platform = {
80 .flags = 0,
81 .slave_addr = 0x10,
82 .bus_freq = 100*1000,
83 .max_freq = 400*1000,
84 .sda_delay = S3C2410_IICLC_SDA_DELAY5 | S3C2410_IICLC_FILTER_ON,
85};
86
87/* s3c24xx_i2c_is2440()
88 *
89 * return true is this is an s3c2440
90*/
91
92static inline int s3c24xx_i2c_is2440(struct s3c24xx_i2c *i2c)
93{
94 struct platform_device *pdev = to_platform_device(i2c->dev);
95
96 return !strcmp(pdev->name, "s3c2440-i2c");
97}
98
99
100/* s3c24xx_i2c_get_platformdata
101 *
102 * get the platform data associated with the given device, or return
103 * the default if there is none
104*/
105
106static inline struct s3c2410_platform_i2c *s3c24xx_i2c_get_platformdata(struct device *dev)
107{
108 if (dev->platform_data != NULL)
109 return (struct s3c2410_platform_i2c *)dev->platform_data;
110
111 return &s3c24xx_i2c_default_platform;
112}
113
114/* s3c24xx_i2c_master_complete
115 *
116 * complete the message and wake up the caller, using the given return code,
117 * or zero to mean ok.
118*/
119
120static inline void s3c24xx_i2c_master_complete(struct s3c24xx_i2c *i2c, int ret)
121{
122 dev_dbg(i2c->dev, "master_complete %d\n", ret);
123
124 i2c->msg_ptr = 0;
125 i2c->msg = NULL;
126 i2c->msg_idx ++;
127 i2c->msg_num = 0;
128 if (ret)
129 i2c->msg_idx = ret;
130
131 wake_up(&i2c->wait);
132}
133
134static inline void s3c24xx_i2c_disable_ack(struct s3c24xx_i2c *i2c)
135{
136 unsigned long tmp;
137
138 tmp = readl(i2c->regs + S3C2410_IICCON);
139 writel(tmp & ~S3C2410_IICCON_ACKEN, i2c->regs + S3C2410_IICCON);
140
141}
142
143static inline void s3c24xx_i2c_enable_ack(struct s3c24xx_i2c *i2c)
144{
145 unsigned long tmp;
146
147 tmp = readl(i2c->regs + S3C2410_IICCON);
148 writel(tmp | S3C2410_IICCON_ACKEN, i2c->regs + S3C2410_IICCON);
149
150}
151
152/* irq enable/disable functions */
153
154static inline void s3c24xx_i2c_disable_irq(struct s3c24xx_i2c *i2c)
155{
156 unsigned long tmp;
157
158 tmp = readl(i2c->regs + S3C2410_IICCON);
159 writel(tmp & ~S3C2410_IICCON_IRQEN, i2c->regs + S3C2410_IICCON);
160}
161
162static inline void s3c24xx_i2c_enable_irq(struct s3c24xx_i2c *i2c)
163{
164 unsigned long tmp;
165
166 tmp = readl(i2c->regs + S3C2410_IICCON);
167 writel(tmp | S3C2410_IICCON_IRQEN, i2c->regs + S3C2410_IICCON);
168}
169
170
171/* s3c24xx_i2c_message_start
172 *
173 * put the start of a message onto the bus
174*/
175
176static void s3c24xx_i2c_message_start(struct s3c24xx_i2c *i2c,
177 struct i2c_msg *msg)
178{
179 unsigned int addr = (msg->addr & 0x7f) << 1;
180 unsigned long stat;
181 unsigned long iiccon;
182
183 stat = 0;
184 stat |= S3C2410_IICSTAT_TXRXEN;
185
186 if (msg->flags & I2C_M_RD) {
187 stat |= S3C2410_IICSTAT_MASTER_RX;
188 addr |= 1;
189 } else
190 stat |= S3C2410_IICSTAT_MASTER_TX;
191
192 if (msg->flags & I2C_M_REV_DIR_ADDR)
193 addr ^= 1;
194
195 // todo - check for wether ack wanted or not
196 s3c24xx_i2c_enable_ack(i2c);
197
198 iiccon = readl(i2c->regs + S3C2410_IICCON);
199 writel(stat, i2c->regs + S3C2410_IICSTAT);
200
201 dev_dbg(i2c->dev, "START: %08lx to IICSTAT, %02x to DS\n", stat, addr);
202 writeb(addr, i2c->regs + S3C2410_IICDS);
203
204 // delay a bit and reset iiccon before setting start (per samsung)
205 udelay(1);
206 dev_dbg(i2c->dev, "iiccon, %08lx\n", iiccon);
207 writel(iiccon, i2c->regs + S3C2410_IICCON);
208
209 stat |= S3C2410_IICSTAT_START;
210 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 */
220 iicstat &= ~ S3C2410_IICSTAT_START;
221 writel(iicstat, i2c->regs + S3C2410_IICSTAT);
222
223 i2c->state = STATE_STOP;
224
225 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 *
234 * returns TRUE if the current message is the last in the set
235*/
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
262/* i2s_s3c_irq_nextbyte
263 *
264 * process an interrupt and work out what to do
265 */
266
267static int i2s_s3c_irq_nextbyte(struct s3c24xx_i2c *i2c, unsigned long iicstat)
268{
269 unsigned long tmp;
270 unsigned char byte;
271 int ret = 0;
272
273 switch (i2c->state) {
274
275 case STATE_IDLE:
276 dev_err(i2c->dev, "%s: called in STATE_IDLE\n", __FUNCTION__);
277 goto out;
278 break;
279
280 case STATE_STOP:
281 dev_err(i2c->dev, "%s: called in STATE_STOP\n", __FUNCTION__);
282 s3c24xx_i2c_disable_irq(i2c);
283 goto out_ack;
284
285 case STATE_START:
286 /* last thing we did was send a start condition on the
287 * bus, or started a new i2c message
288 */
289
290 if (iicstat & S3C2410_IICSTAT_LASTBIT &&
291 !(i2c->msg->flags & I2C_M_IGNORE_NAK)) {
292 /* ack was not received... */
293
294 dev_dbg(i2c->dev, "ack was not received\n");
295 s3c24xx_i2c_stop(i2c, -EREMOTEIO);
296 goto out_ack;
297 }
298
299 if (i2c->msg->flags & I2C_M_RD)
300 i2c->state = STATE_READ;
301 else
302 i2c->state = STATE_WRITE;
303
304 /* terminate the transfer if there is nothing to do
305 * (used by the i2c probe to find devices */
306
307 if (is_lastmsg(i2c) && i2c->msg->len == 0) {
308 s3c24xx_i2c_stop(i2c, 0);
309 goto out_ack;
310 }
311
312 if (i2c->state == STATE_READ)
313 goto prepare_read;
314
315 /* fall through to the write state, as we will need to
316 * send a byte as well */
317
318 case STATE_WRITE:
319 /* we are writing data to the device... check for the
320 * end of the message, and if so, work out what to do
321 */
322
323 retry_write:
324 if (!is_msgend(i2c)) {
325 byte = i2c->msg->buf[i2c->msg_ptr++];
326 writeb(byte, i2c->regs + S3C2410_IICDS);
327
328 } else if (!is_lastmsg(i2c)) {
329 /* we need to go to the next i2c message */
330
331 dev_dbg(i2c->dev, "WRITE: Next Message\n");
332
333 i2c->msg_ptr = 0;
334 i2c->msg_idx ++;
335 i2c->msg++;
336
337 /* check to see if we need to do another message */
338 if (i2c->msg->flags & I2C_M_NOSTART) {
339
340 if (i2c->msg->flags & I2C_M_RD) {
341 /* cannot do this, the controller
342 * forces us to send a new START
343 * when we change direction */
344
345 s3c24xx_i2c_stop(i2c, -EINVAL);
346 }
347
348 goto retry_write;
349 } else {
350
351 /* send the new start */
352 s3c24xx_i2c_message_start(i2c, i2c->msg);
353 i2c->state = STATE_START;
354 }
355
356 } else {
357 /* send stop */
358
359 s3c24xx_i2c_stop(i2c, 0);
360 }
361 break;
362
363 case STATE_READ:
364 /* we have a byte of data in the data register, do
365 * something with it, and then work out wether we are
366 * going to do any more read/write
367 */
368
369 if (!(i2c->msg->flags & I2C_M_IGNORE_NAK) &&
370 !(is_msglast(i2c) && is_lastmsg(i2c))) {
371
372 if (iicstat & S3C2410_IICSTAT_LASTBIT) {
373 dev_dbg(i2c->dev, "READ: No Ack\n");
374
375 s3c24xx_i2c_stop(i2c, -ECONNREFUSED);
376 goto out_ack;
377 }
378 }
379
380 byte = readb(i2c->regs + S3C2410_IICDS);
381 i2c->msg->buf[i2c->msg_ptr++] = byte;
382
383 prepare_read:
384 if (is_msglast(i2c)) {
385 /* last byte of buffer */
386
387 if (is_lastmsg(i2c))
388 s3c24xx_i2c_disable_ack(i2c);
389
390 } else if (is_msgend(i2c)) {
391 /* ok, we've read the entire buffer, see if there
392 * is anything else we need to do */
393
394 if (is_lastmsg(i2c)) {
395 /* last message, send stop and complete */
396 dev_dbg(i2c->dev, "READ: Send Stop\n");
397
398 s3c24xx_i2c_stop(i2c, 0);
399 } else {
400 /* go to the next transfer */
401 dev_dbg(i2c->dev, "READ: Next Transfer\n");
402
403 i2c->msg_ptr = 0;
404 i2c->msg_idx++;
405 i2c->msg++;
406 }
407 }
408
409 break;
410 }
411
412 /* acknowlegde the IRQ and get back on with the work */
413
414 out_ack:
415 tmp = readl(i2c->regs + S3C2410_IICCON);
416 tmp &= ~S3C2410_IICCON_IRQPEND;
417 writel(tmp, i2c->regs + S3C2410_IICCON);
418 out:
419 return ret;
420}
421
422/* s3c24xx_i2c_irq
423 *
424 * top level IRQ servicing routine
425*/
426
427static irqreturn_t s3c24xx_i2c_irq(int irqno, void *dev_id,
428 struct pt_regs *regs)
429{
430 struct s3c24xx_i2c *i2c = dev_id;
431 unsigned long status;
432 unsigned long tmp;
433
434 status = readl(i2c->regs + S3C2410_IICSTAT);
435
436 if (status & S3C2410_IICSTAT_ARBITR) {
437 // deal with arbitration loss
438 dev_err(i2c->dev, "deal with arbitration loss\n");
439 }
440
441 if (i2c->state == STATE_IDLE) {
442 dev_dbg(i2c->dev, "IRQ: error i2c->state == IDLE\n");
443
444 tmp = readl(i2c->regs + S3C2410_IICCON);
445 tmp &= ~S3C2410_IICCON_IRQPEND;
446 writel(tmp, i2c->regs + S3C2410_IICCON);
447 goto out;
448 }
449
450 /* pretty much this leaves us with the fact that we've
451 * transmitted or received whatever byte we last sent */
452
453 i2s_s3c_irq_nextbyte(i2c, status);
454
455 out:
456 return IRQ_HANDLED;
457}
458
459
460/* s3c24xx_i2c_set_master
461 *
462 * get the i2c bus for a master transaction
463*/
464
465static int s3c24xx_i2c_set_master(struct s3c24xx_i2c *i2c)
466{
467 unsigned long iicstat;
468 int timeout = 400;
469
470 while (timeout-- > 0) {
471 iicstat = readl(i2c->regs + S3C2410_IICSTAT);
472
473 if (!(iicstat & S3C2410_IICSTAT_BUSBUSY))
474 return 0;
475
476 msleep(1);
477 }
478
479 dev_dbg(i2c->dev, "timeout: GPEDAT is %08x\n",
480 __raw_readl(S3C2410_GPEDAT));
481
482 return -ETIMEDOUT;
483}
484
485/* s3c24xx_i2c_doxfer
486 *
487 * this starts an i2c transfer
488*/
489
490static int s3c24xx_i2c_doxfer(struct s3c24xx_i2c *i2c, struct i2c_msg *msgs, int num)
491{
492 unsigned long timeout;
493 int ret;
494
495 ret = s3c24xx_i2c_set_master(i2c);
496 if (ret != 0) {
497 dev_err(i2c->dev, "cannot get bus (error %d)\n", ret);
498 ret = -EAGAIN;
499 goto out;
500 }
501
502 spin_lock_irq(&i2c->lock);
503
504 i2c->msg = msgs;
505 i2c->msg_num = num;
506 i2c->msg_ptr = 0;
507 i2c->msg_idx = 0;
508 i2c->state = STATE_START;
509
510 s3c24xx_i2c_enable_irq(i2c);
511 s3c24xx_i2c_message_start(i2c, msgs);
512 spin_unlock_irq(&i2c->lock);
513
514 timeout = wait_event_timeout(i2c->wait, i2c->msg_num == 0, HZ * 5);
515
516 ret = i2c->msg_idx;
517
518 /* having these next two as dev_err() makes life very
519 * noisy when doing an i2cdetect */
520
521 if (timeout == 0)
522 dev_dbg(i2c->dev, "timeout\n");
523 else if (ret != num)
524 dev_dbg(i2c->dev, "incomplete xfer (%d)\n", ret);
525
526 /* ensure the stop has been through the bus */
527
528 msleep(1);
529
530 out:
531 return ret;
532}
533
534/* s3c24xx_i2c_xfer
535 *
536 * first port of call from the i2c bus code when an message needs
Steven Cole44bbe872005-05-03 18:21:25 -0600537 * transferring across the i2c bus.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538*/
539
540static int s3c24xx_i2c_xfer(struct i2c_adapter *adap,
541 struct i2c_msg *msgs, int num)
542{
543 struct s3c24xx_i2c *i2c = (struct s3c24xx_i2c *)adap->algo_data;
544 int retry;
545 int ret;
546
547 for (retry = 0; retry < adap->retries; retry++) {
548
549 ret = s3c24xx_i2c_doxfer(i2c, msgs, num);
550
551 if (ret != -EAGAIN)
552 return ret;
553
554 dev_dbg(i2c->dev, "Retrying transmission (%d)\n", retry);
555
556 udelay(100);
557 }
558
559 return -EREMOTEIO;
560}
561
562/* declare our i2c functionality */
563static u32 s3c24xx_i2c_func(struct i2c_adapter *adap)
564{
565 return I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL | I2C_FUNC_PROTOCOL_MANGLING;
566}
567
568/* i2c bus registration info */
569
570static struct i2c_algorithm s3c24xx_i2c_algorithm = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 .master_xfer = s3c24xx_i2c_xfer,
572 .functionality = s3c24xx_i2c_func,
573};
574
575static struct s3c24xx_i2c s3c24xx_i2c = {
576 .lock = SPIN_LOCK_UNLOCKED,
577 .wait = __WAIT_QUEUE_HEAD_INITIALIZER(s3c24xx_i2c.wait),
578 .adap = {
579 .name = "s3c2410-i2c",
580 .owner = THIS_MODULE,
581 .algo = &s3c24xx_i2c_algorithm,
582 .retries = 2,
583 .class = I2C_CLASS_HWMON,
584 },
585};
586
587/* s3c24xx_i2c_calcdivisor
588 *
589 * return the divisor settings for a given frequency
590*/
591
592static int s3c24xx_i2c_calcdivisor(unsigned long clkin, unsigned int wanted,
593 unsigned int *div1, unsigned int *divs)
594{
595 unsigned int calc_divs = clkin / wanted;
596 unsigned int calc_div1;
597
598 if (calc_divs > (16*16))
599 calc_div1 = 512;
600 else
601 calc_div1 = 16;
602
603 calc_divs += calc_div1-1;
604 calc_divs /= calc_div1;
605
606 if (calc_divs == 0)
607 calc_divs = 1;
608 if (calc_divs > 17)
609 calc_divs = 17;
610
611 *divs = calc_divs;
612 *div1 = calc_div1;
613
614 return clkin / (calc_divs * calc_div1);
615}
616
617/* freq_acceptable
618 *
619 * test wether a frequency is within the acceptable range of error
620*/
621
622static inline int freq_acceptable(unsigned int freq, unsigned int wanted)
623{
624 int diff = freq - wanted;
625
626 return (diff >= -2 && diff <= 2);
627}
628
629/* s3c24xx_i2c_getdivisor
630 *
631 * work out a divisor for the user requested frequency setting,
632 * either by the requested frequency, or scanning the acceptable
633 * range of frequencies until something is found
634*/
635
636static int s3c24xx_i2c_getdivisor(struct s3c24xx_i2c *i2c,
637 struct s3c2410_platform_i2c *pdata,
638 unsigned long *iicon,
639 unsigned int *got)
640{
641 unsigned long clkin = clk_get_rate(i2c->clk);
642
643 unsigned int divs, div1;
644 int freq;
645 int start, end;
646
647 clkin /= 1000; /* clkin now in KHz */
648
649 dev_dbg(i2c->dev, "pdata %p, freq %lu %lu..%lu\n",
650 pdata, pdata->bus_freq, pdata->min_freq, pdata->max_freq);
651
652 if (pdata->bus_freq != 0) {
653 freq = s3c24xx_i2c_calcdivisor(clkin, pdata->bus_freq/1000,
654 &div1, &divs);
655 if (freq_acceptable(freq, pdata->bus_freq/1000))
656 goto found;
657 }
658
659 /* ok, we may have to search for something suitable... */
660
661 start = (pdata->max_freq == 0) ? pdata->bus_freq : pdata->max_freq;
662 end = pdata->min_freq;
663
664 start /= 1000;
665 end /= 1000;
666
667 /* search loop... */
668
669 for (; start > end; start--) {
670 freq = s3c24xx_i2c_calcdivisor(clkin, start, &div1, &divs);
671 if (freq_acceptable(freq, start))
672 goto found;
673 }
674
675 /* cannot find frequency spec */
676
677 return -EINVAL;
678
679 found:
680 *got = freq;
681 *iicon |= (divs-1);
682 *iicon |= (div1 == 512) ? S3C2410_IICCON_TXDIV_512 : 0;
683 return 0;
684}
685
686/* s3c24xx_i2c_init
687 *
688 * initialise the controller, set the IO lines and frequency
689*/
690
691static int s3c24xx_i2c_init(struct s3c24xx_i2c *i2c)
692{
693 unsigned long iicon = S3C2410_IICCON_IRQEN | S3C2410_IICCON_ACKEN;
694 struct s3c2410_platform_i2c *pdata;
695 unsigned int freq;
696
697 /* get the plafrom data */
698
699 pdata = s3c24xx_i2c_get_platformdata(i2c->adap.dev.parent);
700
701 /* inititalise the gpio */
702
703 s3c2410_gpio_cfgpin(S3C2410_GPE15, S3C2410_GPE15_IICSDA);
704 s3c2410_gpio_cfgpin(S3C2410_GPE14, S3C2410_GPE14_IICSCL);
705
706 /* write slave address */
707
708 writeb(pdata->slave_addr, i2c->regs + S3C2410_IICADD);
709
710 dev_info(i2c->dev, "slave address 0x%02x\n", pdata->slave_addr);
711
712 /* we need to work out the divisors for the clock... */
713
714 if (s3c24xx_i2c_getdivisor(i2c, pdata, &iicon, &freq) != 0) {
715 dev_err(i2c->dev, "cannot meet bus frequency required\n");
716 return -EINVAL;
717 }
718
719 /* todo - check that the i2c lines aren't being dragged anywhere */
720
721 dev_info(i2c->dev, "bus frequency set to %d KHz\n", freq);
722 dev_dbg(i2c->dev, "S3C2410_IICCON=0x%02lx\n", iicon);
723
724 writel(iicon, i2c->regs + S3C2410_IICCON);
725
726 /* check for s3c2440 i2c controller */
727
728 if (s3c24xx_i2c_is2440(i2c)) {
729 dev_dbg(i2c->dev, "S3C2440_IICLC=%08x\n", pdata->sda_delay);
730
731 writel(pdata->sda_delay, i2c->regs + S3C2440_IICLC);
732 }
733
734 return 0;
735}
736
737static void s3c24xx_i2c_free(struct s3c24xx_i2c *i2c)
738{
739 if (i2c->clk != NULL && !IS_ERR(i2c->clk)) {
740 clk_disable(i2c->clk);
741 clk_unuse(i2c->clk);
742 clk_put(i2c->clk);
743 i2c->clk = NULL;
744 }
745
746 if (i2c->regs != NULL) {
747 iounmap(i2c->regs);
748 i2c->regs = NULL;
749 }
750
751 if (i2c->ioarea != NULL) {
752 release_resource(i2c->ioarea);
753 kfree(i2c->ioarea);
754 i2c->ioarea = NULL;
755 }
756}
757
758/* s3c24xx_i2c_probe
759 *
760 * called by the bus driver when a suitable device is found
761*/
762
Russell King3ae5eae2005-11-09 22:32:44 +0000763static int s3c24xx_i2c_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 struct s3c24xx_i2c *i2c = &s3c24xx_i2c;
766 struct resource *res;
767 int ret;
768
769 /* find the clock and enable it */
770
Russell King3ae5eae2005-11-09 22:32:44 +0000771 i2c->dev = &pdev->dev;
772 i2c->clk = clk_get(&pdev->dev, "i2c");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 if (IS_ERR(i2c->clk)) {
Russell King3ae5eae2005-11-09 22:32:44 +0000774 dev_err(&pdev->dev, "cannot get clock\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 ret = -ENOENT;
776 goto out;
777 }
778
Russell King3ae5eae2005-11-09 22:32:44 +0000779 dev_dbg(&pdev->dev, "clock source %p\n", i2c->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780
781 clk_use(i2c->clk);
782 clk_enable(i2c->clk);
783
784 /* map the registers */
785
786 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
787 if (res == NULL) {
Russell King3ae5eae2005-11-09 22:32:44 +0000788 dev_err(&pdev->dev, "cannot find IO resource\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 ret = -ENOENT;
790 goto out;
791 }
792
793 i2c->ioarea = request_mem_region(res->start, (res->end-res->start)+1,
794 pdev->name);
795
796 if (i2c->ioarea == NULL) {
Russell King3ae5eae2005-11-09 22:32:44 +0000797 dev_err(&pdev->dev, "cannot request IO\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 ret = -ENXIO;
799 goto out;
800 }
801
802 i2c->regs = ioremap(res->start, (res->end-res->start)+1);
803
804 if (i2c->regs == NULL) {
Russell King3ae5eae2005-11-09 22:32:44 +0000805 dev_err(&pdev->dev, "cannot map IO\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 ret = -ENXIO;
807 goto out;
808 }
809
Russell King3ae5eae2005-11-09 22:32:44 +0000810 dev_dbg(&pdev->dev, "registers %p (%p, %p)\n", i2c->regs, i2c->ioarea, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811
812 /* setup info block for the i2c core */
813
814 i2c->adap.algo_data = i2c;
Russell King3ae5eae2005-11-09 22:32:44 +0000815 i2c->adap.dev.parent = &pdev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
817 /* initialise the i2c controller */
818
819 ret = s3c24xx_i2c_init(i2c);
820 if (ret != 0)
821 goto out;
822
823 /* find the IRQ for this unit (note, this relies on the init call to
824 * ensure no current IRQs pending
825 */
826
827 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
828 if (res == NULL) {
Russell King3ae5eae2005-11-09 22:32:44 +0000829 dev_err(&pdev->dev, "cannot find IRQ\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 ret = -ENOENT;
831 goto out;
832 }
833
834 ret = request_irq(res->start, s3c24xx_i2c_irq, SA_INTERRUPT,
835 pdev->name, i2c);
836
837 if (ret != 0) {
Russell King3ae5eae2005-11-09 22:32:44 +0000838 dev_err(&pdev->dev, "cannot claim IRQ\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 goto out;
840 }
841
842 i2c->irq = res;
843
Russell King3ae5eae2005-11-09 22:32:44 +0000844 dev_dbg(&pdev->dev, "irq resource %p (%ld)\n", res, res->start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845
846 ret = i2c_add_adapter(&i2c->adap);
847 if (ret < 0) {
Russell King3ae5eae2005-11-09 22:32:44 +0000848 dev_err(&pdev->dev, "failed to add bus to i2c core\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 goto out;
850 }
851
Russell King3ae5eae2005-11-09 22:32:44 +0000852 platform_set_drvdata(pdev, i2c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853
Russell King3ae5eae2005-11-09 22:32:44 +0000854 dev_info(&pdev->dev, "%s: S3C I2C adapter\n", i2c->adap.dev.bus_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855
856 out:
857 if (ret < 0)
858 s3c24xx_i2c_free(i2c);
859
860 return ret;
861}
862
863/* s3c24xx_i2c_remove
864 *
865 * called when device is removed from the bus
866*/
867
Russell King3ae5eae2005-11-09 22:32:44 +0000868static int s3c24xx_i2c_remove(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869{
Russell King3ae5eae2005-11-09 22:32:44 +0000870 struct s3c24xx_i2c *i2c = platform_get_drvdata(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871
872 if (i2c != NULL) {
873 s3c24xx_i2c_free(i2c);
Russell King3ae5eae2005-11-09 22:32:44 +0000874 platform_set_drvdata(pdev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 }
876
877 return 0;
878}
879
880#ifdef CONFIG_PM
Russell King3ae5eae2005-11-09 22:32:44 +0000881static int s3c24xx_i2c_resume(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882{
Russell King3ae5eae2005-11-09 22:32:44 +0000883 struct s3c24xx_i2c *i2c = platform_get_drvdata(dev);
Russell King9480e302005-10-28 09:52:56 -0700884
885 if (i2c != NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 s3c24xx_i2c_init(i2c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887
888 return 0;
889}
890
891#else
892#define s3c24xx_i2c_resume NULL
893#endif
894
895/* device driver for platform bus bits */
896
Russell King3ae5eae2005-11-09 22:32:44 +0000897static struct platform_driver s3c2410_i2c_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 .probe = s3c24xx_i2c_probe,
899 .remove = s3c24xx_i2c_remove,
900 .resume = s3c24xx_i2c_resume,
Russell King3ae5eae2005-11-09 22:32:44 +0000901 .driver = {
902 .owner = THIS_MODULE,
903 .name = "s3c2410-i2c",
904 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905};
906
Russell King3ae5eae2005-11-09 22:32:44 +0000907static struct platform_driver s3c2440_i2c_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 .probe = s3c24xx_i2c_probe,
909 .remove = s3c24xx_i2c_remove,
910 .resume = s3c24xx_i2c_resume,
Russell King3ae5eae2005-11-09 22:32:44 +0000911 .driver = {
912 .owner = THIS_MODULE,
913 .name = "s3c2440-i2c",
914 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915};
916
917static int __init i2c_adap_s3c_init(void)
918{
919 int ret;
920
Russell King3ae5eae2005-11-09 22:32:44 +0000921 ret = platform_driver_register(&s3c2410_i2c_driver);
Russell Kinge32e28e2005-10-30 16:32:27 +0000922 if (ret == 0) {
Russell King3ae5eae2005-11-09 22:32:44 +0000923 ret = platform_driver_register(&s3c2440_i2c_driver);
Russell Kinge32e28e2005-10-30 16:32:27 +0000924 if (ret)
Russell King3ae5eae2005-11-09 22:32:44 +0000925 platform_driver_unregister(&s3c2410_i2c_driver);
Russell Kinge32e28e2005-10-30 16:32:27 +0000926 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927
928 return ret;
929}
930
931static void __exit i2c_adap_s3c_exit(void)
932{
Russell King3ae5eae2005-11-09 22:32:44 +0000933 platform_driver_unregister(&s3c2410_i2c_driver);
934 platform_driver_unregister(&s3c2440_i2c_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935}
936
937module_init(i2c_adap_s3c_init);
938module_exit(i2c_adap_s3c_exit);
939
940MODULE_DESCRIPTION("S3C24XX I2C Bus driver");
941MODULE_AUTHOR("Ben Dooks, <ben@simtec.co.uk>");
942MODULE_LICENSE("GPL");