1 /* linux/drivers/i2c/busses/i2c-s3c2410.c
3 * Copyright (C) 2004,2005 Simtec Electronics
4 * Ben Dooks <ben@simtec.co.uk>
6 * S3C2410 I2C Controller
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.
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.
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
23 #include <linux/kernel.h>
24 #include <linux/module.h>
26 #include <linux/i2c.h>
27 #include <linux/i2c-id.h>
28 #include <linux/init.h>
29 #include <linux/time.h>
30 #include <linux/interrupt.h>
31 #include <linux/delay.h>
32 #include <linux/errno.h>
33 #include <linux/err.h>
34 #include <linux/platform_device.h>
35 #include <linux/clk.h>
36 #include <linux/cpufreq.h>
38 #include <mach/hardware.h>
42 #include <mach/regs-gpio.h>
43 #include <asm/plat-s3c/regs-iic.h>
44 #include <asm/plat-s3c/iic.h>
46 /* i2c controller state */
48 enum s3c24xx_i2c_state
{
58 wait_queue_head_t wait
;
65 unsigned int tx_setup
;
67 enum s3c24xx_i2c_state state
;
68 unsigned long clkrate
;
74 struct resource
*ioarea
;
75 struct i2c_adapter adap
;
77 #ifdef CONFIG_CPU_FREQ
78 struct notifier_block freq_transition
;
82 /* default platform data to use if not supplied in the platform_device
85 static struct s3c2410_platform_i2c s3c24xx_i2c_default_platform
= {
90 .sda_delay
= S3C2410_IICLC_SDA_DELAY5
| S3C2410_IICLC_FILTER_ON
,
93 /* s3c24xx_i2c_is2440()
95 * return true is this is an s3c2440
98 static inline int s3c24xx_i2c_is2440(struct s3c24xx_i2c
*i2c
)
100 struct platform_device
*pdev
= to_platform_device(i2c
->dev
);
102 return !strcmp(pdev
->name
, "s3c2440-i2c");
106 /* s3c24xx_i2c_get_platformdata
108 * get the platform data associated with the given device, or return
109 * the default if there is none
112 static inline struct s3c2410_platform_i2c
*s3c24xx_i2c_get_platformdata(struct device
*dev
)
114 if (dev
->platform_data
!= NULL
)
115 return (struct s3c2410_platform_i2c
*)dev
->platform_data
;
117 return &s3c24xx_i2c_default_platform
;
120 /* s3c24xx_i2c_master_complete
122 * complete the message and wake up the caller, using the given return code,
123 * or zero to mean ok.
126 static inline void s3c24xx_i2c_master_complete(struct s3c24xx_i2c
*i2c
, int ret
)
128 dev_dbg(i2c
->dev
, "master_complete %d\n", ret
);
140 static inline void s3c24xx_i2c_disable_ack(struct s3c24xx_i2c
*i2c
)
144 tmp
= readl(i2c
->regs
+ S3C2410_IICCON
);
145 writel(tmp
& ~S3C2410_IICCON_ACKEN
, i2c
->regs
+ S3C2410_IICCON
);
149 static inline void s3c24xx_i2c_enable_ack(struct s3c24xx_i2c
*i2c
)
153 tmp
= readl(i2c
->regs
+ S3C2410_IICCON
);
154 writel(tmp
| S3C2410_IICCON_ACKEN
, i2c
->regs
+ S3C2410_IICCON
);
158 /* irq enable/disable functions */
160 static inline void s3c24xx_i2c_disable_irq(struct s3c24xx_i2c
*i2c
)
164 tmp
= readl(i2c
->regs
+ S3C2410_IICCON
);
165 writel(tmp
& ~S3C2410_IICCON_IRQEN
, i2c
->regs
+ S3C2410_IICCON
);
168 static inline void s3c24xx_i2c_enable_irq(struct s3c24xx_i2c
*i2c
)
172 tmp
= readl(i2c
->regs
+ S3C2410_IICCON
);
173 writel(tmp
| S3C2410_IICCON_IRQEN
, i2c
->regs
+ S3C2410_IICCON
);
177 /* s3c24xx_i2c_message_start
179 * put the start of a message onto the bus
182 static void s3c24xx_i2c_message_start(struct s3c24xx_i2c
*i2c
,
185 unsigned int addr
= (msg
->addr
& 0x7f) << 1;
187 unsigned long iiccon
;
190 stat
|= S3C2410_IICSTAT_TXRXEN
;
192 if (msg
->flags
& I2C_M_RD
) {
193 stat
|= S3C2410_IICSTAT_MASTER_RX
;
196 stat
|= S3C2410_IICSTAT_MASTER_TX
;
198 if (msg
->flags
& I2C_M_REV_DIR_ADDR
)
201 // todo - check for wether ack wanted or not
202 s3c24xx_i2c_enable_ack(i2c
);
204 iiccon
= readl(i2c
->regs
+ S3C2410_IICCON
);
205 writel(stat
, i2c
->regs
+ S3C2410_IICSTAT
);
207 dev_dbg(i2c
->dev
, "START: %08lx to IICSTAT, %02x to DS\n", stat
, addr
);
208 writeb(addr
, i2c
->regs
+ S3C2410_IICDS
);
210 /* delay here to ensure the data byte has gotten onto the bus
211 * before the transaction is started */
213 ndelay(i2c
->tx_setup
);
215 dev_dbg(i2c
->dev
, "iiccon, %08lx\n", iiccon
);
216 writel(iiccon
, i2c
->regs
+ S3C2410_IICCON
);
218 stat
|= S3C2410_IICSTAT_START
;
219 writel(stat
, i2c
->regs
+ S3C2410_IICSTAT
);
222 static inline void s3c24xx_i2c_stop(struct s3c24xx_i2c
*i2c
, int ret
)
224 unsigned long iicstat
= readl(i2c
->regs
+ S3C2410_IICSTAT
);
226 dev_dbg(i2c
->dev
, "STOP\n");
228 /* stop the transfer */
229 iicstat
&= ~ S3C2410_IICSTAT_START
;
230 writel(iicstat
, i2c
->regs
+ S3C2410_IICSTAT
);
232 i2c
->state
= STATE_STOP
;
234 s3c24xx_i2c_master_complete(i2c
, ret
);
235 s3c24xx_i2c_disable_irq(i2c
);
238 /* helper functions to determine the current state in the set of
239 * messages we are sending */
243 * returns TRUE if the current message is the last in the set
246 static inline int is_lastmsg(struct s3c24xx_i2c
*i2c
)
248 return i2c
->msg_idx
>= (i2c
->msg_num
- 1);
253 * returns TRUE if we this is the last byte in the current message
256 static inline int is_msglast(struct s3c24xx_i2c
*i2c
)
258 return i2c
->msg_ptr
== i2c
->msg
->len
-1;
263 * returns TRUE if we reached the end of the current message
266 static inline int is_msgend(struct s3c24xx_i2c
*i2c
)
268 return i2c
->msg_ptr
>= i2c
->msg
->len
;
271 /* i2s_s3c_irq_nextbyte
273 * process an interrupt and work out what to do
276 static int i2s_s3c_irq_nextbyte(struct s3c24xx_i2c
*i2c
, unsigned long iicstat
)
282 switch (i2c
->state
) {
285 dev_err(i2c
->dev
, "%s: called in STATE_IDLE\n", __func__
);
290 dev_err(i2c
->dev
, "%s: called in STATE_STOP\n", __func__
);
291 s3c24xx_i2c_disable_irq(i2c
);
295 /* last thing we did was send a start condition on the
296 * bus, or started a new i2c message
299 if (iicstat
& S3C2410_IICSTAT_LASTBIT
&&
300 !(i2c
->msg
->flags
& I2C_M_IGNORE_NAK
)) {
301 /* ack was not received... */
303 dev_dbg(i2c
->dev
, "ack was not received\n");
304 s3c24xx_i2c_stop(i2c
, -ENXIO
);
308 if (i2c
->msg
->flags
& I2C_M_RD
)
309 i2c
->state
= STATE_READ
;
311 i2c
->state
= STATE_WRITE
;
313 /* terminate the transfer if there is nothing to do
314 * as this is used by the i2c probe to find devices. */
316 if (is_lastmsg(i2c
) && i2c
->msg
->len
== 0) {
317 s3c24xx_i2c_stop(i2c
, 0);
321 if (i2c
->state
== STATE_READ
)
324 /* fall through to the write state, as we will need to
325 * send a byte as well */
328 /* we are writing data to the device... check for the
329 * end of the message, and if so, work out what to do
332 if (!(i2c
->msg
->flags
& I2C_M_IGNORE_NAK
)) {
333 if (iicstat
& S3C2410_IICSTAT_LASTBIT
) {
334 dev_dbg(i2c
->dev
, "WRITE: No Ack\n");
336 s3c24xx_i2c_stop(i2c
, -ECONNREFUSED
);
343 if (!is_msgend(i2c
)) {
344 byte
= i2c
->msg
->buf
[i2c
->msg_ptr
++];
345 writeb(byte
, i2c
->regs
+ S3C2410_IICDS
);
347 /* delay after writing the byte to allow the
348 * data setup time on the bus, as writing the
349 * data to the register causes the first bit
350 * to appear on SDA, and SCL will change as
351 * soon as the interrupt is acknowledged */
353 ndelay(i2c
->tx_setup
);
355 } else if (!is_lastmsg(i2c
)) {
356 /* we need to go to the next i2c message */
358 dev_dbg(i2c
->dev
, "WRITE: Next Message\n");
364 /* check to see if we need to do another message */
365 if (i2c
->msg
->flags
& I2C_M_NOSTART
) {
367 if (i2c
->msg
->flags
& I2C_M_RD
) {
368 /* cannot do this, the controller
369 * forces us to send a new START
370 * when we change direction */
372 s3c24xx_i2c_stop(i2c
, -EINVAL
);
378 /* send the new start */
379 s3c24xx_i2c_message_start(i2c
, i2c
->msg
);
380 i2c
->state
= STATE_START
;
386 s3c24xx_i2c_stop(i2c
, 0);
391 /* we have a byte of data in the data register, do
392 * something with it, and then work out wether we are
393 * going to do any more read/write
396 byte
= readb(i2c
->regs
+ S3C2410_IICDS
);
397 i2c
->msg
->buf
[i2c
->msg_ptr
++] = byte
;
400 if (is_msglast(i2c
)) {
401 /* last byte of buffer */
404 s3c24xx_i2c_disable_ack(i2c
);
406 } else if (is_msgend(i2c
)) {
407 /* ok, we've read the entire buffer, see if there
408 * is anything else we need to do */
410 if (is_lastmsg(i2c
)) {
411 /* last message, send stop and complete */
412 dev_dbg(i2c
->dev
, "READ: Send Stop\n");
414 s3c24xx_i2c_stop(i2c
, 0);
416 /* go to the next transfer */
417 dev_dbg(i2c
->dev
, "READ: Next Transfer\n");
428 /* acknowlegde the IRQ and get back on with the work */
431 tmp
= readl(i2c
->regs
+ S3C2410_IICCON
);
432 tmp
&= ~S3C2410_IICCON_IRQPEND
;
433 writel(tmp
, i2c
->regs
+ S3C2410_IICCON
);
440 * top level IRQ servicing routine
443 static irqreturn_t
s3c24xx_i2c_irq(int irqno
, void *dev_id
)
445 struct s3c24xx_i2c
*i2c
= dev_id
;
446 unsigned long status
;
449 status
= readl(i2c
->regs
+ S3C2410_IICSTAT
);
451 if (status
& S3C2410_IICSTAT_ARBITR
) {
452 // deal with arbitration loss
453 dev_err(i2c
->dev
, "deal with arbitration loss\n");
456 if (i2c
->state
== STATE_IDLE
) {
457 dev_dbg(i2c
->dev
, "IRQ: error i2c->state == IDLE\n");
459 tmp
= readl(i2c
->regs
+ S3C2410_IICCON
);
460 tmp
&= ~S3C2410_IICCON_IRQPEND
;
461 writel(tmp
, i2c
->regs
+ S3C2410_IICCON
);
465 /* pretty much this leaves us with the fact that we've
466 * transmitted or received whatever byte we last sent */
468 i2s_s3c_irq_nextbyte(i2c
, status
);
475 /* s3c24xx_i2c_set_master
477 * get the i2c bus for a master transaction
480 static int s3c24xx_i2c_set_master(struct s3c24xx_i2c
*i2c
)
482 unsigned long iicstat
;
485 while (timeout
-- > 0) {
486 iicstat
= readl(i2c
->regs
+ S3C2410_IICSTAT
);
488 if (!(iicstat
& S3C2410_IICSTAT_BUSBUSY
))
494 dev_dbg(i2c
->dev
, "timeout: GPEDAT is %08x\n",
495 __raw_readl(S3C2410_GPEDAT
));
500 /* s3c24xx_i2c_doxfer
502 * this starts an i2c transfer
505 static int s3c24xx_i2c_doxfer(struct s3c24xx_i2c
*i2c
, struct i2c_msg
*msgs
, int num
)
507 unsigned long timeout
;
510 if (!(readl(i2c
->regs
+ S3C2410_IICCON
) & S3C2410_IICCON_IRQEN
))
513 ret
= s3c24xx_i2c_set_master(i2c
);
515 dev_err(i2c
->dev
, "cannot get bus (error %d)\n", ret
);
520 spin_lock_irq(&i2c
->lock
);
526 i2c
->state
= STATE_START
;
528 s3c24xx_i2c_enable_irq(i2c
);
529 s3c24xx_i2c_message_start(i2c
, msgs
);
530 spin_unlock_irq(&i2c
->lock
);
532 timeout
= wait_event_timeout(i2c
->wait
, i2c
->msg_num
== 0, HZ
* 5);
536 /* having these next two as dev_err() makes life very
537 * noisy when doing an i2cdetect */
540 dev_dbg(i2c
->dev
, "timeout\n");
542 dev_dbg(i2c
->dev
, "incomplete xfer (%d)\n", ret
);
544 /* ensure the stop has been through the bus */
554 * first port of call from the i2c bus code when an message needs
555 * transferring across the i2c bus.
558 static int s3c24xx_i2c_xfer(struct i2c_adapter
*adap
,
559 struct i2c_msg
*msgs
, int num
)
561 struct s3c24xx_i2c
*i2c
= (struct s3c24xx_i2c
*)adap
->algo_data
;
565 for (retry
= 0; retry
< adap
->retries
; retry
++) {
567 ret
= s3c24xx_i2c_doxfer(i2c
, msgs
, num
);
572 dev_dbg(i2c
->dev
, "Retrying transmission (%d)\n", retry
);
580 /* declare our i2c functionality */
581 static u32
s3c24xx_i2c_func(struct i2c_adapter
*adap
)
583 return I2C_FUNC_I2C
| I2C_FUNC_SMBUS_EMUL
| I2C_FUNC_PROTOCOL_MANGLING
;
586 /* i2c bus registration info */
588 static const struct i2c_algorithm s3c24xx_i2c_algorithm
= {
589 .master_xfer
= s3c24xx_i2c_xfer
,
590 .functionality
= s3c24xx_i2c_func
,
593 static struct s3c24xx_i2c s3c24xx_i2c
= {
594 .lock
= __SPIN_LOCK_UNLOCKED(s3c24xx_i2c
.lock
),
595 .wait
= __WAIT_QUEUE_HEAD_INITIALIZER(s3c24xx_i2c
.wait
),
598 .name
= "s3c2410-i2c",
599 .owner
= THIS_MODULE
,
600 .algo
= &s3c24xx_i2c_algorithm
,
602 .class = I2C_CLASS_HWMON
| I2C_CLASS_SPD
,
606 /* s3c24xx_i2c_calcdivisor
608 * return the divisor settings for a given frequency
611 static int s3c24xx_i2c_calcdivisor(unsigned long clkin
, unsigned int wanted
,
612 unsigned int *div1
, unsigned int *divs
)
614 unsigned int calc_divs
= clkin
/ wanted
;
615 unsigned int calc_div1
;
617 if (calc_divs
> (16*16))
622 calc_divs
+= calc_div1
-1;
623 calc_divs
/= calc_div1
;
633 return clkin
/ (calc_divs
* calc_div1
);
638 * test wether a frequency is within the acceptable range of error
641 static inline int freq_acceptable(unsigned int freq
, unsigned int wanted
)
643 int diff
= freq
- wanted
;
645 return (diff
>= -2 && diff
<= 2);
648 /* s3c24xx_i2c_clockrate
650 * work out a divisor for the user requested frequency setting,
651 * either by the requested frequency, or scanning the acceptable
652 * range of frequencies until something is found
655 static int s3c24xx_i2c_clockrate(struct s3c24xx_i2c
*i2c
, unsigned int *got
)
657 struct s3c2410_platform_i2c
*pdata
;
658 unsigned long clkin
= clk_get_rate(i2c
->clk
);
659 unsigned int divs
, div1
;
664 i2c
->clkrate
= clkin
;
666 pdata
= s3c24xx_i2c_get_platformdata(i2c
->adap
.dev
.parent
);
667 clkin
/= 1000; /* clkin now in KHz */
669 dev_dbg(i2c
->dev
, "pdata %p, freq %lu %lu..%lu\n",
670 pdata
, pdata
->bus_freq
, pdata
->min_freq
, pdata
->max_freq
);
672 if (pdata
->bus_freq
!= 0) {
673 freq
= s3c24xx_i2c_calcdivisor(clkin
, pdata
->bus_freq
/1000,
675 if (freq_acceptable(freq
, pdata
->bus_freq
/1000))
679 /* ok, we may have to search for something suitable... */
681 start
= (pdata
->max_freq
== 0) ? pdata
->bus_freq
: pdata
->max_freq
;
682 end
= pdata
->min_freq
;
689 for (; start
> end
; start
--) {
690 freq
= s3c24xx_i2c_calcdivisor(clkin
, start
, &div1
, &divs
);
691 if (freq_acceptable(freq
, start
))
695 /* cannot find frequency spec */
702 iiccon
= readl(i2c
->regs
+ S3C2410_IICCON
);
703 iiccon
&= ~(S3C2410_IICCON_SCALEMASK
| S3C2410_IICCON_TXDIV_512
);
707 iiccon
|= S3C2410_IICCON_TXDIV_512
;
709 writel(iiccon
, i2c
->regs
+ S3C2410_IICCON
);
714 #ifdef CONFIG_CPU_FREQ
716 #define freq_to_i2c(_n) container_of(_n, struct s3c24xx_i2c, freq_transition)
718 static int s3c24xx_i2c_cpufreq_transition(struct notifier_block
*nb
,
719 unsigned long val
, void *data
)
721 struct s3c24xx_i2c
*i2c
= freq_to_i2c(nb
);
727 delta_f
= clk_get_rate(i2c
->clk
) - i2c
->clkrate
;
729 /* if we're post-change and the input clock has slowed down
730 * or at pre-change and the clock is about to speed up, then
731 * adjust our clock rate. <0 is slow, >0 speedup.
734 if ((val
== CPUFREQ_POSTCHANGE
&& delta_f
< 0) ||
735 (val
== CPUFREQ_PRECHANGE
&& delta_f
> 0)) {
736 spin_lock_irqsave(&i2c
->lock
, flags
);
737 ret
= s3c24xx_i2c_clockrate(i2c
, &got
);
738 spin_unlock_irqrestore(&i2c
->lock
, flags
);
741 dev_err(i2c
->dev
, "cannot find frequency\n");
743 dev_info(i2c
->dev
, "setting freq %d\n", got
);
749 static inline int s3c24xx_i2c_register_cpufreq(struct s3c24xx_i2c
*i2c
)
751 i2c
->freq_transition
.notifier_call
= s3c24xx_i2c_cpufreq_transition
;
753 return cpufreq_register_notifier(&i2c
->freq_transition
,
754 CPUFREQ_TRANSITION_NOTIFIER
);
757 static inline void s3c24xx_i2c_deregister_cpufreq(struct s3c24xx_i2c
*i2c
)
759 cpufreq_unregister_notifier(&i2c
->freq_transition
,
760 CPUFREQ_TRANSITION_NOTIFIER
);
764 static inline int s3c24xx_i2c_register_cpufreq(struct s3c24xx_i2c
*i2c
)
769 static inline void s3c24xx_i2c_deregister_cpufreq(struct s3c24xx_i2c
*i2c
)
776 * initialise the controller, set the IO lines and frequency
779 static int s3c24xx_i2c_init(struct s3c24xx_i2c
*i2c
)
781 unsigned long iicon
= S3C2410_IICCON_IRQEN
| S3C2410_IICCON_ACKEN
;
782 struct s3c2410_platform_i2c
*pdata
;
785 /* get the plafrom data */
787 pdata
= s3c24xx_i2c_get_platformdata(i2c
->adap
.dev
.parent
);
789 /* inititalise the gpio */
791 s3c2410_gpio_cfgpin(S3C2410_GPE15
, S3C2410_GPE15_IICSDA
);
792 s3c2410_gpio_cfgpin(S3C2410_GPE14
, S3C2410_GPE14_IICSCL
);
794 /* write slave address */
796 writeb(pdata
->slave_addr
, i2c
->regs
+ S3C2410_IICADD
);
798 dev_info(i2c
->dev
, "slave address 0x%02x\n", pdata
->slave_addr
);
800 writel(iicon
, i2c
->regs
+ S3C2410_IICCON
);
802 /* we need to work out the divisors for the clock... */
804 if (s3c24xx_i2c_clockrate(i2c
, &freq
) != 0) {
805 writel(0, i2c
->regs
+ S3C2410_IICCON
);
806 dev_err(i2c
->dev
, "cannot meet bus frequency required\n");
810 /* todo - check that the i2c lines aren't being dragged anywhere */
812 dev_info(i2c
->dev
, "bus frequency set to %d KHz\n", freq
);
813 dev_dbg(i2c
->dev
, "S3C2410_IICCON=0x%02lx\n", iicon
);
815 /* check for s3c2440 i2c controller */
817 if (s3c24xx_i2c_is2440(i2c
)) {
818 dev_dbg(i2c
->dev
, "S3C2440_IICLC=%08x\n", pdata
->sda_delay
);
820 writel(pdata
->sda_delay
, i2c
->regs
+ S3C2440_IICLC
);
828 * called by the bus driver when a suitable device is found
831 static int s3c24xx_i2c_probe(struct platform_device
*pdev
)
833 struct s3c24xx_i2c
*i2c
= &s3c24xx_i2c
;
834 struct s3c2410_platform_i2c
*pdata
;
835 struct resource
*res
;
838 pdata
= s3c24xx_i2c_get_platformdata(&pdev
->dev
);
840 /* find the clock and enable it */
842 i2c
->dev
= &pdev
->dev
;
843 i2c
->clk
= clk_get(&pdev
->dev
, "i2c");
844 if (IS_ERR(i2c
->clk
)) {
845 dev_err(&pdev
->dev
, "cannot get clock\n");
850 dev_dbg(&pdev
->dev
, "clock source %p\n", i2c
->clk
);
852 clk_enable(i2c
->clk
);
854 /* map the registers */
856 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
858 dev_err(&pdev
->dev
, "cannot find IO resource\n");
863 i2c
->ioarea
= request_mem_region(res
->start
, (res
->end
-res
->start
)+1,
866 if (i2c
->ioarea
== NULL
) {
867 dev_err(&pdev
->dev
, "cannot request IO\n");
872 i2c
->regs
= ioremap(res
->start
, (res
->end
-res
->start
)+1);
874 if (i2c
->regs
== NULL
) {
875 dev_err(&pdev
->dev
, "cannot map IO\n");
880 dev_dbg(&pdev
->dev
, "registers %p (%p, %p)\n", i2c
->regs
, i2c
->ioarea
, res
);
882 /* setup info block for the i2c core */
884 i2c
->adap
.algo_data
= i2c
;
885 i2c
->adap
.dev
.parent
= &pdev
->dev
;
887 /* initialise the i2c controller */
889 ret
= s3c24xx_i2c_init(i2c
);
893 /* find the IRQ for this unit (note, this relies on the init call to
894 * ensure no current IRQs pending
897 res
= platform_get_resource(pdev
, IORESOURCE_IRQ
, 0);
899 dev_err(&pdev
->dev
, "cannot find IRQ\n");
904 ret
= request_irq(res
->start
, s3c24xx_i2c_irq
, IRQF_DISABLED
,
908 dev_err(&pdev
->dev
, "cannot claim IRQ\n");
914 dev_dbg(&pdev
->dev
, "irq resource %p (%lu)\n", res
,
915 (unsigned long)res
->start
);
917 ret
= s3c24xx_i2c_register_cpufreq(i2c
);
919 dev_err(&pdev
->dev
, "failed to register cpufreq notifier\n");
923 /* Note, previous versions of the driver used i2c_add_adapter()
924 * to add the bus at any number. We now pass the bus number via
925 * the platform data, so if unset it will now default to always
929 i2c
->adap
.nr
= pdata
->bus_num
;
931 ret
= i2c_add_numbered_adapter(&i2c
->adap
);
933 dev_err(&pdev
->dev
, "failed to add bus to i2c core\n");
937 platform_set_drvdata(pdev
, i2c
);
939 dev_info(&pdev
->dev
, "%s: S3C I2C adapter\n", i2c
->adap
.dev
.bus_id
);
943 s3c24xx_i2c_deregister_cpufreq(i2c
);
946 free_irq(i2c
->irq
->start
, i2c
);
952 release_resource(i2c
->ioarea
);
956 clk_disable(i2c
->clk
);
963 /* s3c24xx_i2c_remove
965 * called when device is removed from the bus
968 static int s3c24xx_i2c_remove(struct platform_device
*pdev
)
970 struct s3c24xx_i2c
*i2c
= platform_get_drvdata(pdev
);
972 s3c24xx_i2c_deregister_cpufreq(i2c
);
974 i2c_del_adapter(&i2c
->adap
);
975 free_irq(i2c
->irq
->start
, i2c
);
977 clk_disable(i2c
->clk
);
982 release_resource(i2c
->ioarea
);
989 static int s3c24xx_i2c_resume(struct platform_device
*dev
)
991 struct s3c24xx_i2c
*i2c
= platform_get_drvdata(dev
);
994 s3c24xx_i2c_init(i2c
);
1000 #define s3c24xx_i2c_resume NULL
1003 /* device driver for platform bus bits */
1005 static struct platform_driver s3c2410_i2c_driver
= {
1006 .probe
= s3c24xx_i2c_probe
,
1007 .remove
= s3c24xx_i2c_remove
,
1008 .resume
= s3c24xx_i2c_resume
,
1010 .owner
= THIS_MODULE
,
1011 .name
= "s3c2410-i2c",
1015 static struct platform_driver s3c2440_i2c_driver
= {
1016 .probe
= s3c24xx_i2c_probe
,
1017 .remove
= s3c24xx_i2c_remove
,
1018 .resume
= s3c24xx_i2c_resume
,
1020 .owner
= THIS_MODULE
,
1021 .name
= "s3c2440-i2c",
1025 static int __init
i2c_adap_s3c_init(void)
1029 ret
= platform_driver_register(&s3c2410_i2c_driver
);
1031 ret
= platform_driver_register(&s3c2440_i2c_driver
);
1033 platform_driver_unregister(&s3c2410_i2c_driver
);
1039 static void __exit
i2c_adap_s3c_exit(void)
1041 platform_driver_unregister(&s3c2410_i2c_driver
);
1042 platform_driver_unregister(&s3c2440_i2c_driver
);
1045 module_init(i2c_adap_s3c_init
);
1046 module_exit(i2c_adap_s3c_exit
);
1048 MODULE_DESCRIPTION("S3C24XX I2C Bus driver");
1049 MODULE_AUTHOR("Ben Dooks, <ben@simtec.co.uk>");
1050 MODULE_LICENSE("GPL");
1051 MODULE_ALIAS("platform:s3c2410-i2c");
1052 MODULE_ALIAS("platform:s3c2440-i2c");