1 /* linux/drivers/i2c/busses/i2c-s3c2410.c
3 * Copyright (C) 2004,2005,2009 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/init.h>
28 #include <linux/time.h>
29 #include <linux/interrupt.h>
30 #include <linux/delay.h>
31 #include <linux/errno.h>
32 #include <linux/err.h>
33 #include <linux/platform_device.h>
34 #include <linux/pm_runtime.h>
35 #include <linux/clk.h>
36 #include <linux/cpufreq.h>
37 #include <linux/slab.h>
39 #include <linux/of_i2c.h>
40 #include <linux/of_gpio.h>
44 #include <plat/regs-iic.h>
47 /* Treat S3C2410 as baseline hardware, anything else is supported via quirks */
48 #define QUIRK_S3C2440 (1 << 0)
49 #define QUIRK_HDMIPHY (1 << 1)
50 #define QUIRK_NO_GPIO (1 << 2)
52 /* i2c controller state */
53 enum s3c24xx_i2c_state
{
63 wait_queue_head_t wait
;
65 unsigned int suspended
:1;
72 unsigned int tx_setup
;
75 enum s3c24xx_i2c_state state
;
76 unsigned long clkrate
;
81 struct resource
*ioarea
;
82 struct i2c_adapter adap
;
84 struct s3c2410_platform_i2c
*pdata
;
86 #ifdef CONFIG_CPU_FREQ
87 struct notifier_block freq_transition
;
91 static struct platform_device_id s3c24xx_driver_ids
[] = {
93 .name
= "s3c2410-i2c",
96 .name
= "s3c2440-i2c",
97 .driver_data
= QUIRK_S3C2440
,
99 .name
= "s3c2440-hdmiphy-i2c",
100 .driver_data
= QUIRK_S3C2440
| QUIRK_HDMIPHY
| QUIRK_NO_GPIO
,
103 MODULE_DEVICE_TABLE(platform
, s3c24xx_driver_ids
);
106 static const struct of_device_id s3c24xx_i2c_match
[] = {
107 { .compatible
= "samsung,s3c2410-i2c", .data
= (void *)0 },
108 { .compatible
= "samsung,s3c2440-i2c", .data
= (void *)QUIRK_S3C2440
},
109 { .compatible
= "samsung,s3c2440-hdmiphy-i2c",
110 .data
= (void *)(QUIRK_S3C2440
| QUIRK_HDMIPHY
| QUIRK_NO_GPIO
) },
113 MODULE_DEVICE_TABLE(of
, s3c24xx_i2c_match
);
116 /* s3c24xx_get_device_quirks
118 * Get controller type either from device tree or platform device variant.
121 static inline unsigned int s3c24xx_get_device_quirks(struct platform_device
*pdev
)
123 if (pdev
->dev
.of_node
) {
124 const struct of_device_id
*match
;
125 match
= of_match_node(&s3c24xx_i2c_match
, pdev
->dev
.of_node
);
126 return (unsigned int)match
->data
;
129 return platform_get_device_id(pdev
)->driver_data
;
132 /* s3c24xx_i2c_master_complete
134 * complete the message and wake up the caller, using the given return code,
135 * or zero to mean ok.
138 static inline void s3c24xx_i2c_master_complete(struct s3c24xx_i2c
*i2c
, int ret
)
140 dev_dbg(i2c
->dev
, "master_complete %d\n", ret
);
152 static inline void s3c24xx_i2c_disable_ack(struct s3c24xx_i2c
*i2c
)
156 tmp
= readl(i2c
->regs
+ S3C2410_IICCON
);
157 writel(tmp
& ~S3C2410_IICCON_ACKEN
, i2c
->regs
+ S3C2410_IICCON
);
160 static inline void s3c24xx_i2c_enable_ack(struct s3c24xx_i2c
*i2c
)
164 tmp
= readl(i2c
->regs
+ S3C2410_IICCON
);
165 writel(tmp
| S3C2410_IICCON_ACKEN
, i2c
->regs
+ S3C2410_IICCON
);
168 /* irq enable/disable functions */
170 static inline void s3c24xx_i2c_disable_irq(struct s3c24xx_i2c
*i2c
)
174 tmp
= readl(i2c
->regs
+ S3C2410_IICCON
);
175 writel(tmp
& ~S3C2410_IICCON_IRQEN
, i2c
->regs
+ S3C2410_IICCON
);
178 static inline void s3c24xx_i2c_enable_irq(struct s3c24xx_i2c
*i2c
)
182 tmp
= readl(i2c
->regs
+ S3C2410_IICCON
);
183 writel(tmp
| S3C2410_IICCON_IRQEN
, i2c
->regs
+ S3C2410_IICCON
);
187 /* s3c24xx_i2c_message_start
189 * put the start of a message onto the bus
192 static void s3c24xx_i2c_message_start(struct s3c24xx_i2c
*i2c
,
195 unsigned int addr
= (msg
->addr
& 0x7f) << 1;
197 unsigned long iiccon
;
200 stat
|= S3C2410_IICSTAT_TXRXEN
;
202 if (msg
->flags
& I2C_M_RD
) {
203 stat
|= S3C2410_IICSTAT_MASTER_RX
;
206 stat
|= S3C2410_IICSTAT_MASTER_TX
;
208 if (msg
->flags
& I2C_M_REV_DIR_ADDR
)
211 /* todo - check for wether ack wanted or not */
212 s3c24xx_i2c_enable_ack(i2c
);
214 iiccon
= readl(i2c
->regs
+ S3C2410_IICCON
);
215 writel(stat
, i2c
->regs
+ S3C2410_IICSTAT
);
217 dev_dbg(i2c
->dev
, "START: %08lx to IICSTAT, %02x to DS\n", stat
, addr
);
218 writeb(addr
, i2c
->regs
+ S3C2410_IICDS
);
220 /* delay here to ensure the data byte has gotten onto the bus
221 * before the transaction is started */
223 ndelay(i2c
->tx_setup
);
225 dev_dbg(i2c
->dev
, "iiccon, %08lx\n", iiccon
);
226 writel(iiccon
, i2c
->regs
+ S3C2410_IICCON
);
228 stat
|= S3C2410_IICSTAT_START
;
229 writel(stat
, i2c
->regs
+ S3C2410_IICSTAT
);
232 static inline void s3c24xx_i2c_stop(struct s3c24xx_i2c
*i2c
, int ret
)
234 unsigned long iicstat
= readl(i2c
->regs
+ S3C2410_IICSTAT
);
236 dev_dbg(i2c
->dev
, "STOP\n");
238 /* stop the transfer */
239 iicstat
&= ~S3C2410_IICSTAT_START
;
240 writel(iicstat
, i2c
->regs
+ S3C2410_IICSTAT
);
242 i2c
->state
= STATE_STOP
;
244 s3c24xx_i2c_master_complete(i2c
, ret
);
245 s3c24xx_i2c_disable_irq(i2c
);
248 /* helper functions to determine the current state in the set of
249 * messages we are sending */
253 * returns TRUE if the current message is the last in the set
256 static inline int is_lastmsg(struct s3c24xx_i2c
*i2c
)
258 return i2c
->msg_idx
>= (i2c
->msg_num
- 1);
263 * returns TRUE if we this is the last byte in the current message
266 static inline int is_msglast(struct s3c24xx_i2c
*i2c
)
268 return i2c
->msg_ptr
== i2c
->msg
->len
-1;
273 * returns TRUE if we reached the end of the current message
276 static inline int is_msgend(struct s3c24xx_i2c
*i2c
)
278 return i2c
->msg_ptr
>= i2c
->msg
->len
;
281 /* i2c_s3c_irq_nextbyte
283 * process an interrupt and work out what to do
286 static int i2c_s3c_irq_nextbyte(struct s3c24xx_i2c
*i2c
, unsigned long iicstat
)
292 switch (i2c
->state
) {
295 dev_err(i2c
->dev
, "%s: called in STATE_IDLE\n", __func__
);
299 dev_err(i2c
->dev
, "%s: called in STATE_STOP\n", __func__
);
300 s3c24xx_i2c_disable_irq(i2c
);
304 /* last thing we did was send a start condition on the
305 * bus, or started a new i2c message
308 if (iicstat
& S3C2410_IICSTAT_LASTBIT
&&
309 !(i2c
->msg
->flags
& I2C_M_IGNORE_NAK
)) {
310 /* ack was not received... */
312 dev_dbg(i2c
->dev
, "ack was not received\n");
313 s3c24xx_i2c_stop(i2c
, -ENXIO
);
317 if (i2c
->msg
->flags
& I2C_M_RD
)
318 i2c
->state
= STATE_READ
;
320 i2c
->state
= STATE_WRITE
;
322 /* terminate the transfer if there is nothing to do
323 * as this is used by the i2c probe to find devices. */
325 if (is_lastmsg(i2c
) && i2c
->msg
->len
== 0) {
326 s3c24xx_i2c_stop(i2c
, 0);
330 if (i2c
->state
== STATE_READ
)
333 /* fall through to the write state, as we will need to
334 * send a byte as well */
337 /* we are writing data to the device... check for the
338 * end of the message, and if so, work out what to do
341 if (!(i2c
->msg
->flags
& I2C_M_IGNORE_NAK
)) {
342 if (iicstat
& S3C2410_IICSTAT_LASTBIT
) {
343 dev_dbg(i2c
->dev
, "WRITE: No Ack\n");
345 s3c24xx_i2c_stop(i2c
, -ECONNREFUSED
);
352 if (!is_msgend(i2c
)) {
353 byte
= i2c
->msg
->buf
[i2c
->msg_ptr
++];
354 writeb(byte
, i2c
->regs
+ S3C2410_IICDS
);
356 /* delay after writing the byte to allow the
357 * data setup time on the bus, as writing the
358 * data to the register causes the first bit
359 * to appear on SDA, and SCL will change as
360 * soon as the interrupt is acknowledged */
362 ndelay(i2c
->tx_setup
);
364 } else if (!is_lastmsg(i2c
)) {
365 /* we need to go to the next i2c message */
367 dev_dbg(i2c
->dev
, "WRITE: Next Message\n");
373 /* check to see if we need to do another message */
374 if (i2c
->msg
->flags
& I2C_M_NOSTART
) {
376 if (i2c
->msg
->flags
& I2C_M_RD
) {
377 /* cannot do this, the controller
378 * forces us to send a new START
379 * when we change direction */
381 s3c24xx_i2c_stop(i2c
, -EINVAL
);
386 /* send the new start */
387 s3c24xx_i2c_message_start(i2c
, i2c
->msg
);
388 i2c
->state
= STATE_START
;
394 s3c24xx_i2c_stop(i2c
, 0);
399 /* we have a byte of data in the data register, do
400 * something with it, and then work out wether we are
401 * going to do any more read/write
404 byte
= readb(i2c
->regs
+ S3C2410_IICDS
);
405 i2c
->msg
->buf
[i2c
->msg_ptr
++] = byte
;
408 if (is_msglast(i2c
)) {
409 /* last byte of buffer */
412 s3c24xx_i2c_disable_ack(i2c
);
414 } else if (is_msgend(i2c
)) {
415 /* ok, we've read the entire buffer, see if there
416 * is anything else we need to do */
418 if (is_lastmsg(i2c
)) {
419 /* last message, send stop and complete */
420 dev_dbg(i2c
->dev
, "READ: Send Stop\n");
422 s3c24xx_i2c_stop(i2c
, 0);
424 /* go to the next transfer */
425 dev_dbg(i2c
->dev
, "READ: Next Transfer\n");
436 /* acknowlegde the IRQ and get back on with the work */
439 tmp
= readl(i2c
->regs
+ S3C2410_IICCON
);
440 tmp
&= ~S3C2410_IICCON_IRQPEND
;
441 writel(tmp
, i2c
->regs
+ S3C2410_IICCON
);
448 * top level IRQ servicing routine
451 static irqreturn_t
s3c24xx_i2c_irq(int irqno
, void *dev_id
)
453 struct s3c24xx_i2c
*i2c
= dev_id
;
454 unsigned long status
;
457 status
= readl(i2c
->regs
+ S3C2410_IICSTAT
);
459 if (status
& S3C2410_IICSTAT_ARBITR
) {
460 /* deal with arbitration loss */
461 dev_err(i2c
->dev
, "deal with arbitration loss\n");
464 if (i2c
->state
== STATE_IDLE
) {
465 dev_dbg(i2c
->dev
, "IRQ: error i2c->state == IDLE\n");
467 tmp
= readl(i2c
->regs
+ S3C2410_IICCON
);
468 tmp
&= ~S3C2410_IICCON_IRQPEND
;
469 writel(tmp
, i2c
->regs
+ S3C2410_IICCON
);
473 /* pretty much this leaves us with the fact that we've
474 * transmitted or received whatever byte we last sent */
476 i2c_s3c_irq_nextbyte(i2c
, status
);
483 /* s3c24xx_i2c_set_master
485 * get the i2c bus for a master transaction
488 static int s3c24xx_i2c_set_master(struct s3c24xx_i2c
*i2c
)
490 unsigned long iicstat
;
493 /* the timeout for HDMIPHY is reduced to 10 ms because
494 * the hangup is expected to happen, so waiting 400 ms
495 * causes only unnecessary system hangup
497 if (i2c
->quirks
& QUIRK_HDMIPHY
)
500 while (timeout
-- > 0) {
501 iicstat
= readl(i2c
->regs
+ S3C2410_IICSTAT
);
503 if (!(iicstat
& S3C2410_IICSTAT_BUSBUSY
))
509 /* hang-up of bus dedicated for HDMIPHY occurred, resetting */
510 if (i2c
->quirks
& QUIRK_HDMIPHY
) {
511 writel(0, i2c
->regs
+ S3C2410_IICCON
);
512 writel(0, i2c
->regs
+ S3C2410_IICSTAT
);
513 writel(0, i2c
->regs
+ S3C2410_IICDS
);
521 /* s3c24xx_i2c_doxfer
523 * this starts an i2c transfer
526 static int s3c24xx_i2c_doxfer(struct s3c24xx_i2c
*i2c
,
527 struct i2c_msg
*msgs
, int num
)
529 unsigned long iicstat
, timeout
;
536 ret
= s3c24xx_i2c_set_master(i2c
);
538 dev_err(i2c
->dev
, "cannot get bus (error %d)\n", ret
);
543 spin_lock_irq(&i2c
->lock
);
549 i2c
->state
= STATE_START
;
551 s3c24xx_i2c_enable_irq(i2c
);
552 s3c24xx_i2c_message_start(i2c
, msgs
);
553 spin_unlock_irq(&i2c
->lock
);
555 timeout
= wait_event_timeout(i2c
->wait
, i2c
->msg_num
== 0, HZ
* 5);
559 /* having these next two as dev_err() makes life very
560 * noisy when doing an i2cdetect */
563 dev_dbg(i2c
->dev
, "timeout\n");
565 dev_dbg(i2c
->dev
, "incomplete xfer (%d)\n", ret
);
567 /* ensure the stop has been through the bus */
569 dev_dbg(i2c
->dev
, "waiting for bus idle\n");
571 /* first, try busy waiting briefly */
574 iicstat
= readl(i2c
->regs
+ S3C2410_IICSTAT
);
575 } while ((iicstat
& S3C2410_IICSTAT_START
) && --spins
);
577 /* if that timed out sleep */
580 iicstat
= readl(i2c
->regs
+ S3C2410_IICSTAT
);
583 if (iicstat
& S3C2410_IICSTAT_START
)
584 dev_warn(i2c
->dev
, "timeout waiting for bus idle\n");
592 * first port of call from the i2c bus code when an message needs
593 * transferring across the i2c bus.
596 static int s3c24xx_i2c_xfer(struct i2c_adapter
*adap
,
597 struct i2c_msg
*msgs
, int num
)
599 struct s3c24xx_i2c
*i2c
= (struct s3c24xx_i2c
*)adap
->algo_data
;
603 pm_runtime_get_sync(&adap
->dev
);
604 clk_enable(i2c
->clk
);
606 for (retry
= 0; retry
< adap
->retries
; retry
++) {
608 ret
= s3c24xx_i2c_doxfer(i2c
, msgs
, num
);
610 if (ret
!= -EAGAIN
) {
611 clk_disable(i2c
->clk
);
612 pm_runtime_put_sync(&adap
->dev
);
616 dev_dbg(i2c
->dev
, "Retrying transmission (%d)\n", retry
);
621 clk_disable(i2c
->clk
);
622 pm_runtime_put_sync(&adap
->dev
);
626 /* declare our i2c functionality */
627 static u32
s3c24xx_i2c_func(struct i2c_adapter
*adap
)
629 return I2C_FUNC_I2C
| I2C_FUNC_SMBUS_EMUL
| I2C_FUNC_NOSTART
|
630 I2C_FUNC_PROTOCOL_MANGLING
;
633 /* i2c bus registration info */
635 static const struct i2c_algorithm s3c24xx_i2c_algorithm
= {
636 .master_xfer
= s3c24xx_i2c_xfer
,
637 .functionality
= s3c24xx_i2c_func
,
640 /* s3c24xx_i2c_calcdivisor
642 * return the divisor settings for a given frequency
645 static int s3c24xx_i2c_calcdivisor(unsigned long clkin
, unsigned int wanted
,
646 unsigned int *div1
, unsigned int *divs
)
648 unsigned int calc_divs
= clkin
/ wanted
;
649 unsigned int calc_div1
;
651 if (calc_divs
> (16*16))
656 calc_divs
+= calc_div1
-1;
657 calc_divs
/= calc_div1
;
667 return clkin
/ (calc_divs
* calc_div1
);
670 /* s3c24xx_i2c_clockrate
672 * work out a divisor for the user requested frequency setting,
673 * either by the requested frequency, or scanning the acceptable
674 * range of frequencies until something is found
677 static int s3c24xx_i2c_clockrate(struct s3c24xx_i2c
*i2c
, unsigned int *got
)
679 struct s3c2410_platform_i2c
*pdata
= i2c
->pdata
;
680 unsigned long clkin
= clk_get_rate(i2c
->clk
);
681 unsigned int divs
, div1
;
682 unsigned long target_frequency
;
686 i2c
->clkrate
= clkin
;
687 clkin
/= 1000; /* clkin now in KHz */
689 dev_dbg(i2c
->dev
, "pdata desired frequency %lu\n", pdata
->frequency
);
691 target_frequency
= pdata
->frequency
? pdata
->frequency
: 100000;
693 target_frequency
/= 1000; /* Target frequency now in KHz */
695 freq
= s3c24xx_i2c_calcdivisor(clkin
, target_frequency
, &div1
, &divs
);
697 if (freq
> target_frequency
) {
699 "Unable to achieve desired frequency %luKHz." \
700 " Lowest achievable %dKHz\n", target_frequency
, freq
);
706 iiccon
= readl(i2c
->regs
+ S3C2410_IICCON
);
707 iiccon
&= ~(S3C2410_IICCON_SCALEMASK
| S3C2410_IICCON_TXDIV_512
);
711 iiccon
|= S3C2410_IICCON_TXDIV_512
;
713 writel(iiccon
, i2c
->regs
+ S3C2410_IICCON
);
715 if (i2c
->quirks
& QUIRK_S3C2440
) {
716 unsigned long sda_delay
;
718 if (pdata
->sda_delay
) {
719 sda_delay
= clkin
* pdata
->sda_delay
;
720 sda_delay
= DIV_ROUND_UP(sda_delay
, 1000000);
721 sda_delay
= DIV_ROUND_UP(sda_delay
, 5);
724 sda_delay
|= S3C2410_IICLC_FILTER_ON
;
728 dev_dbg(i2c
->dev
, "IICLC=%08lx\n", sda_delay
);
729 writel(sda_delay
, i2c
->regs
+ S3C2440_IICLC
);
735 #ifdef CONFIG_CPU_FREQ
737 #define freq_to_i2c(_n) container_of(_n, struct s3c24xx_i2c, freq_transition)
739 static int s3c24xx_i2c_cpufreq_transition(struct notifier_block
*nb
,
740 unsigned long val
, void *data
)
742 struct s3c24xx_i2c
*i2c
= freq_to_i2c(nb
);
748 delta_f
= clk_get_rate(i2c
->clk
) - i2c
->clkrate
;
750 /* if we're post-change and the input clock has slowed down
751 * or at pre-change and the clock is about to speed up, then
752 * adjust our clock rate. <0 is slow, >0 speedup.
755 if ((val
== CPUFREQ_POSTCHANGE
&& delta_f
< 0) ||
756 (val
== CPUFREQ_PRECHANGE
&& delta_f
> 0)) {
757 spin_lock_irqsave(&i2c
->lock
, flags
);
758 ret
= s3c24xx_i2c_clockrate(i2c
, &got
);
759 spin_unlock_irqrestore(&i2c
->lock
, flags
);
762 dev_err(i2c
->dev
, "cannot find frequency\n");
764 dev_info(i2c
->dev
, "setting freq %d\n", got
);
770 static inline int s3c24xx_i2c_register_cpufreq(struct s3c24xx_i2c
*i2c
)
772 i2c
->freq_transition
.notifier_call
= s3c24xx_i2c_cpufreq_transition
;
774 return cpufreq_register_notifier(&i2c
->freq_transition
,
775 CPUFREQ_TRANSITION_NOTIFIER
);
778 static inline void s3c24xx_i2c_deregister_cpufreq(struct s3c24xx_i2c
*i2c
)
780 cpufreq_unregister_notifier(&i2c
->freq_transition
,
781 CPUFREQ_TRANSITION_NOTIFIER
);
785 static inline int s3c24xx_i2c_register_cpufreq(struct s3c24xx_i2c
*i2c
)
790 static inline void s3c24xx_i2c_deregister_cpufreq(struct s3c24xx_i2c
*i2c
)
796 static int s3c24xx_i2c_parse_dt_gpio(struct s3c24xx_i2c
*i2c
)
800 if (i2c
->quirks
& QUIRK_NO_GPIO
)
803 for (idx
= 0; idx
< 2; idx
++) {
804 gpio
= of_get_gpio(i2c
->dev
->of_node
, idx
);
805 if (!gpio_is_valid(gpio
)) {
806 dev_err(i2c
->dev
, "invalid gpio[%d]: %d\n", idx
, gpio
);
810 ret
= gpio_request(gpio
, "i2c-bus");
812 dev_err(i2c
->dev
, "gpio [%d] request failed\n", gpio
);
820 gpio_free(i2c
->gpios
[idx
]);
824 static void s3c24xx_i2c_dt_gpio_free(struct s3c24xx_i2c
*i2c
)
828 if (i2c
->quirks
& QUIRK_NO_GPIO
)
831 for (idx
= 0; idx
< 2; idx
++)
832 gpio_free(i2c
->gpios
[idx
]);
835 static int s3c24xx_i2c_parse_dt_gpio(struct s3c24xx_i2c
*i2c
)
840 static void s3c24xx_i2c_dt_gpio_free(struct s3c24xx_i2c
*i2c
)
847 * initialise the controller, set the IO lines and frequency
850 static int s3c24xx_i2c_init(struct s3c24xx_i2c
*i2c
)
852 unsigned long iicon
= S3C2410_IICCON_IRQEN
| S3C2410_IICCON_ACKEN
;
853 struct s3c2410_platform_i2c
*pdata
;
856 /* get the plafrom data */
860 /* inititalise the gpio */
863 pdata
->cfg_gpio(to_platform_device(i2c
->dev
));
865 if (s3c24xx_i2c_parse_dt_gpio(i2c
))
868 /* write slave address */
870 writeb(pdata
->slave_addr
, i2c
->regs
+ S3C2410_IICADD
);
872 dev_info(i2c
->dev
, "slave address 0x%02x\n", pdata
->slave_addr
);
874 writel(iicon
, i2c
->regs
+ S3C2410_IICCON
);
876 /* we need to work out the divisors for the clock... */
878 if (s3c24xx_i2c_clockrate(i2c
, &freq
) != 0) {
879 writel(0, i2c
->regs
+ S3C2410_IICCON
);
880 dev_err(i2c
->dev
, "cannot meet bus frequency required\n");
884 /* todo - check that the i2c lines aren't being dragged anywhere */
886 dev_info(i2c
->dev
, "bus frequency set to %d KHz\n", freq
);
887 dev_dbg(i2c
->dev
, "S3C2410_IICCON=0x%02lx\n", iicon
);
893 /* s3c24xx_i2c_parse_dt
895 * Parse the device tree node and retreive the platform data.
899 s3c24xx_i2c_parse_dt(struct device_node
*np
, struct s3c24xx_i2c
*i2c
)
901 struct s3c2410_platform_i2c
*pdata
= i2c
->pdata
;
906 pdata
->bus_num
= -1; /* i2c bus number is dynamically assigned */
907 of_property_read_u32(np
, "samsung,i2c-sda-delay", &pdata
->sda_delay
);
908 of_property_read_u32(np
, "samsung,i2c-slave-addr", &pdata
->slave_addr
);
909 of_property_read_u32(np
, "samsung,i2c-max-bus-freq",
910 (u32
*)&pdata
->frequency
);
914 s3c24xx_i2c_parse_dt(struct device_node
*np
, struct s3c24xx_i2c
*i2c
)
922 * called by the bus driver when a suitable device is found
925 static int s3c24xx_i2c_probe(struct platform_device
*pdev
)
927 struct s3c24xx_i2c
*i2c
;
928 struct s3c2410_platform_i2c
*pdata
= NULL
;
929 struct resource
*res
;
932 if (!pdev
->dev
.of_node
) {
933 pdata
= pdev
->dev
.platform_data
;
935 dev_err(&pdev
->dev
, "no platform data\n");
940 i2c
= devm_kzalloc(&pdev
->dev
, sizeof(struct s3c24xx_i2c
), GFP_KERNEL
);
942 dev_err(&pdev
->dev
, "no memory for state\n");
946 i2c
->pdata
= devm_kzalloc(&pdev
->dev
, sizeof(*pdata
), GFP_KERNEL
);
952 i2c
->quirks
= s3c24xx_get_device_quirks(pdev
);
954 memcpy(i2c
->pdata
, pdata
, sizeof(*pdata
));
956 s3c24xx_i2c_parse_dt(pdev
->dev
.of_node
, i2c
);
958 strlcpy(i2c
->adap
.name
, "s3c2410-i2c", sizeof(i2c
->adap
.name
));
959 i2c
->adap
.owner
= THIS_MODULE
;
960 i2c
->adap
.algo
= &s3c24xx_i2c_algorithm
;
961 i2c
->adap
.retries
= 2;
962 i2c
->adap
.class = I2C_CLASS_HWMON
| I2C_CLASS_SPD
;
965 spin_lock_init(&i2c
->lock
);
966 init_waitqueue_head(&i2c
->wait
);
968 /* find the clock and enable it */
970 i2c
->dev
= &pdev
->dev
;
971 i2c
->clk
= clk_get(&pdev
->dev
, "i2c");
972 if (IS_ERR(i2c
->clk
)) {
973 dev_err(&pdev
->dev
, "cannot get clock\n");
978 dev_dbg(&pdev
->dev
, "clock source %p\n", i2c
->clk
);
980 clk_enable(i2c
->clk
);
982 /* map the registers */
984 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
986 dev_err(&pdev
->dev
, "cannot find IO resource\n");
991 i2c
->ioarea
= request_mem_region(res
->start
, resource_size(res
),
994 if (i2c
->ioarea
== NULL
) {
995 dev_err(&pdev
->dev
, "cannot request IO\n");
1000 i2c
->regs
= ioremap(res
->start
, resource_size(res
));
1002 if (i2c
->regs
== NULL
) {
1003 dev_err(&pdev
->dev
, "cannot map IO\n");
1008 dev_dbg(&pdev
->dev
, "registers %p (%p, %p)\n",
1009 i2c
->regs
, i2c
->ioarea
, res
);
1011 /* setup info block for the i2c core */
1013 i2c
->adap
.algo_data
= i2c
;
1014 i2c
->adap
.dev
.parent
= &pdev
->dev
;
1016 /* initialise the i2c controller */
1018 ret
= s3c24xx_i2c_init(i2c
);
1022 /* find the IRQ for this unit (note, this relies on the init call to
1023 * ensure no current IRQs pending
1026 i2c
->irq
= ret
= platform_get_irq(pdev
, 0);
1028 dev_err(&pdev
->dev
, "cannot find IRQ\n");
1032 ret
= request_irq(i2c
->irq
, s3c24xx_i2c_irq
, 0,
1033 dev_name(&pdev
->dev
), i2c
);
1036 dev_err(&pdev
->dev
, "cannot claim IRQ %d\n", i2c
->irq
);
1040 ret
= s3c24xx_i2c_register_cpufreq(i2c
);
1042 dev_err(&pdev
->dev
, "failed to register cpufreq notifier\n");
1046 /* Note, previous versions of the driver used i2c_add_adapter()
1047 * to add the bus at any number. We now pass the bus number via
1048 * the platform data, so if unset it will now default to always
1052 i2c
->adap
.nr
= i2c
->pdata
->bus_num
;
1053 i2c
->adap
.dev
.of_node
= pdev
->dev
.of_node
;
1055 ret
= i2c_add_numbered_adapter(&i2c
->adap
);
1057 dev_err(&pdev
->dev
, "failed to add bus to i2c core\n");
1061 of_i2c_register_devices(&i2c
->adap
);
1062 platform_set_drvdata(pdev
, i2c
);
1064 pm_runtime_enable(&pdev
->dev
);
1065 pm_runtime_enable(&i2c
->adap
.dev
);
1067 dev_info(&pdev
->dev
, "%s: S3C I2C adapter\n", dev_name(&i2c
->adap
.dev
));
1068 clk_disable(i2c
->clk
);
1072 s3c24xx_i2c_deregister_cpufreq(i2c
);
1075 free_irq(i2c
->irq
, i2c
);
1081 release_resource(i2c
->ioarea
);
1085 clk_disable(i2c
->clk
);
1092 /* s3c24xx_i2c_remove
1094 * called when device is removed from the bus
1097 static int s3c24xx_i2c_remove(struct platform_device
*pdev
)
1099 struct s3c24xx_i2c
*i2c
= platform_get_drvdata(pdev
);
1101 pm_runtime_disable(&i2c
->adap
.dev
);
1102 pm_runtime_disable(&pdev
->dev
);
1104 s3c24xx_i2c_deregister_cpufreq(i2c
);
1106 i2c_del_adapter(&i2c
->adap
);
1107 free_irq(i2c
->irq
, i2c
);
1109 clk_disable(i2c
->clk
);
1114 release_resource(i2c
->ioarea
);
1115 s3c24xx_i2c_dt_gpio_free(i2c
);
1122 static int s3c24xx_i2c_suspend_noirq(struct device
*dev
)
1124 struct platform_device
*pdev
= to_platform_device(dev
);
1125 struct s3c24xx_i2c
*i2c
= platform_get_drvdata(pdev
);
1132 static int s3c24xx_i2c_resume(struct device
*dev
)
1134 struct platform_device
*pdev
= to_platform_device(dev
);
1135 struct s3c24xx_i2c
*i2c
= platform_get_drvdata(pdev
);
1138 clk_enable(i2c
->clk
);
1139 s3c24xx_i2c_init(i2c
);
1140 clk_disable(i2c
->clk
);
1145 static const struct dev_pm_ops s3c24xx_i2c_dev_pm_ops
= {
1146 .suspend_noirq
= s3c24xx_i2c_suspend_noirq
,
1147 .resume
= s3c24xx_i2c_resume
,
1150 #define S3C24XX_DEV_PM_OPS (&s3c24xx_i2c_dev_pm_ops)
1152 #define S3C24XX_DEV_PM_OPS NULL
1155 /* device driver for platform bus bits */
1157 static struct platform_driver s3c24xx_i2c_driver
= {
1158 .probe
= s3c24xx_i2c_probe
,
1159 .remove
= s3c24xx_i2c_remove
,
1160 .id_table
= s3c24xx_driver_ids
,
1162 .owner
= THIS_MODULE
,
1164 .pm
= S3C24XX_DEV_PM_OPS
,
1165 .of_match_table
= of_match_ptr(s3c24xx_i2c_match
),
1169 static int __init
i2c_adap_s3c_init(void)
1171 return platform_driver_register(&s3c24xx_i2c_driver
);
1173 subsys_initcall(i2c_adap_s3c_init
);
1175 static void __exit
i2c_adap_s3c_exit(void)
1177 platform_driver_unregister(&s3c24xx_i2c_driver
);
1179 module_exit(i2c_adap_s3c_exit
);
1181 MODULE_DESCRIPTION("S3C24XX I2C Bus driver");
1182 MODULE_AUTHOR("Ben Dooks, <ben@simtec.co.uk>");
1183 MODULE_LICENSE("GPL");