2 * TI DAVINCI I2C adapter driver.
4 * Copyright (C) 2006 Texas Instruments.
5 * Copyright (C) 2007 MontaVista Software Inc.
7 * Updated by Vinod & Sudhakar Feb 2005
9 * ----------------------------------------------------------------------------
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24 * ----------------------------------------------------------------------------
27 #include <linux/kernel.h>
28 #include <linux/module.h>
29 #include <linux/delay.h>
30 #include <linux/i2c.h>
31 #include <linux/clk.h>
32 #include <linux/errno.h>
33 #include <linux/sched.h>
34 #include <linux/err.h>
35 #include <linux/interrupt.h>
36 #include <linux/platform_device.h>
38 #include <linux/slab.h>
39 #include <linux/cpufreq.h>
40 #include <linux/gpio.h>
41 #include <linux/of_i2c.h>
42 #include <linux/of_device.h>
44 #include <mach/hardware.h>
45 #include <linux/platform_data/i2c-davinci.h>
47 /* ----- global defines ----------------------------------------------- */
49 #define DAVINCI_I2C_TIMEOUT (1*HZ)
50 #define DAVINCI_I2C_MAX_TRIES 2
51 #define I2C_DAVINCI_INTR_ALL (DAVINCI_I2C_IMR_AAS | \
52 DAVINCI_I2C_IMR_SCD | \
53 DAVINCI_I2C_IMR_ARDY | \
54 DAVINCI_I2C_IMR_NACK | \
57 #define DAVINCI_I2C_OAR_REG 0x00
58 #define DAVINCI_I2C_IMR_REG 0x04
59 #define DAVINCI_I2C_STR_REG 0x08
60 #define DAVINCI_I2C_CLKL_REG 0x0c
61 #define DAVINCI_I2C_CLKH_REG 0x10
62 #define DAVINCI_I2C_CNT_REG 0x14
63 #define DAVINCI_I2C_DRR_REG 0x18
64 #define DAVINCI_I2C_SAR_REG 0x1c
65 #define DAVINCI_I2C_DXR_REG 0x20
66 #define DAVINCI_I2C_MDR_REG 0x24
67 #define DAVINCI_I2C_IVR_REG 0x28
68 #define DAVINCI_I2C_EMDR_REG 0x2c
69 #define DAVINCI_I2C_PSC_REG 0x30
71 #define DAVINCI_I2C_IVR_AAS 0x07
72 #define DAVINCI_I2C_IVR_SCD 0x06
73 #define DAVINCI_I2C_IVR_XRDY 0x05
74 #define DAVINCI_I2C_IVR_RDR 0x04
75 #define DAVINCI_I2C_IVR_ARDY 0x03
76 #define DAVINCI_I2C_IVR_NACK 0x02
77 #define DAVINCI_I2C_IVR_AL 0x01
79 #define DAVINCI_I2C_STR_BB BIT(12)
80 #define DAVINCI_I2C_STR_RSFULL BIT(11)
81 #define DAVINCI_I2C_STR_SCD BIT(5)
82 #define DAVINCI_I2C_STR_ARDY BIT(2)
83 #define DAVINCI_I2C_STR_NACK BIT(1)
84 #define DAVINCI_I2C_STR_AL BIT(0)
86 #define DAVINCI_I2C_MDR_NACK BIT(15)
87 #define DAVINCI_I2C_MDR_STT BIT(13)
88 #define DAVINCI_I2C_MDR_STP BIT(11)
89 #define DAVINCI_I2C_MDR_MST BIT(10)
90 #define DAVINCI_I2C_MDR_TRX BIT(9)
91 #define DAVINCI_I2C_MDR_XA BIT(8)
92 #define DAVINCI_I2C_MDR_RM BIT(7)
93 #define DAVINCI_I2C_MDR_IRS BIT(5)
95 #define DAVINCI_I2C_IMR_AAS BIT(6)
96 #define DAVINCI_I2C_IMR_SCD BIT(5)
97 #define DAVINCI_I2C_IMR_XRDY BIT(4)
98 #define DAVINCI_I2C_IMR_RRDY BIT(3)
99 #define DAVINCI_I2C_IMR_ARDY BIT(2)
100 #define DAVINCI_I2C_IMR_NACK BIT(1)
101 #define DAVINCI_I2C_IMR_AL BIT(0)
103 struct davinci_i2c_dev
{
106 struct completion cmd_complete
;
114 struct i2c_adapter adapter
;
115 #ifdef CONFIG_CPU_FREQ
116 struct completion xfr_complete
;
117 struct notifier_block freq_transition
;
119 struct davinci_i2c_platform_data
*pdata
;
122 /* default platform data to use if not supplied in the platform_device */
123 static struct davinci_i2c_platform_data davinci_i2c_platform_data_default
= {
128 static inline void davinci_i2c_write_reg(struct davinci_i2c_dev
*i2c_dev
,
131 __raw_writew(val
, i2c_dev
->base
+ reg
);
134 static inline u16
davinci_i2c_read_reg(struct davinci_i2c_dev
*i2c_dev
, int reg
)
136 return __raw_readw(i2c_dev
->base
+ reg
);
139 /* Generate a pulse on the i2c clock pin. */
140 static void generic_i2c_clock_pulse(unsigned int scl_pin
)
145 /* Send high and low on the SCL line */
146 for (i
= 0; i
< 9; i
++) {
147 gpio_set_value(scl_pin
, 0);
149 gpio_set_value(scl_pin
, 1);
155 /* This routine does i2c bus recovery as specified in the
156 * i2c protocol Rev. 03 section 3.16 titled "Bus clear"
158 static void i2c_recover_bus(struct davinci_i2c_dev
*dev
)
161 struct davinci_i2c_platform_data
*pdata
= dev
->pdata
;
163 dev_err(dev
->dev
, "initiating i2c bus recovery\n");
164 /* Send NACK to the slave */
165 flag
= davinci_i2c_read_reg(dev
, DAVINCI_I2C_MDR_REG
);
166 flag
|= DAVINCI_I2C_MDR_NACK
;
167 /* write the data into mode register */
168 davinci_i2c_write_reg(dev
, DAVINCI_I2C_MDR_REG
, flag
);
169 generic_i2c_clock_pulse(pdata
->scl_pin
);
171 flag
= davinci_i2c_read_reg(dev
, DAVINCI_I2C_MDR_REG
);
172 flag
|= DAVINCI_I2C_MDR_STP
;
173 davinci_i2c_write_reg(dev
, DAVINCI_I2C_MDR_REG
, flag
);
176 static inline void davinci_i2c_reset_ctrl(struct davinci_i2c_dev
*i2c_dev
,
181 w
= davinci_i2c_read_reg(i2c_dev
, DAVINCI_I2C_MDR_REG
);
182 if (!val
) /* put I2C into reset */
183 w
&= ~DAVINCI_I2C_MDR_IRS
;
184 else /* take I2C out of reset */
185 w
|= DAVINCI_I2C_MDR_IRS
;
187 davinci_i2c_write_reg(i2c_dev
, DAVINCI_I2C_MDR_REG
, w
);
190 static void i2c_davinci_calc_clk_dividers(struct davinci_i2c_dev
*dev
)
192 struct davinci_i2c_platform_data
*pdata
= dev
->pdata
;
198 u32 input_clock
= clk_get_rate(dev
->clk
);
200 /* NOTE: I2C Clock divider programming info
201 * As per I2C specs the following formulas provide prescaler
202 * and low/high divider values
203 * input clk --> PSC Div -----------> ICCL/H Div --> output clock
206 * output clk = module clk / (PSC + 1) [ (ICCL + d) + (ICCH + d) ]
209 * (ICCL + ICCH) = clk = (input clk / ((psc +1) * output clk)) - 2d;
211 * where if PSC == 0, d = 7,
216 /* get minimum of 7 MHz clock, but max of 12 MHz */
217 psc
= (input_clock
/ 7000000) - 1;
218 if ((input_clock
/ (psc
+ 1)) > 12000000)
219 psc
++; /* better to run under spec than over */
220 d
= (psc
>= 2) ? 5 : 7 - psc
;
222 clk
= ((input_clock
/ (psc
+ 1)) / (pdata
->bus_freq
* 1000)) - (d
<< 1);
226 davinci_i2c_write_reg(dev
, DAVINCI_I2C_PSC_REG
, psc
);
227 davinci_i2c_write_reg(dev
, DAVINCI_I2C_CLKH_REG
, clkh
);
228 davinci_i2c_write_reg(dev
, DAVINCI_I2C_CLKL_REG
, clkl
);
230 dev_dbg(dev
->dev
, "input_clock = %d, CLK = %d\n", input_clock
, clk
);
234 * This function configures I2C and brings I2C out of reset.
235 * This function is called during I2C init function. This function
236 * also gets called if I2C encounters any errors.
238 static int i2c_davinci_init(struct davinci_i2c_dev
*dev
)
240 struct davinci_i2c_platform_data
*pdata
= dev
->pdata
;
242 /* put I2C into reset */
243 davinci_i2c_reset_ctrl(dev
, 0);
245 /* compute clock dividers */
246 i2c_davinci_calc_clk_dividers(dev
);
248 /* Respond at reserved "SMBus Host" slave address" (and zero);
249 * we seem to have no option to not respond...
251 davinci_i2c_write_reg(dev
, DAVINCI_I2C_OAR_REG
, 0x08);
253 dev_dbg(dev
->dev
, "PSC = %d\n",
254 davinci_i2c_read_reg(dev
, DAVINCI_I2C_PSC_REG
));
255 dev_dbg(dev
->dev
, "CLKL = %d\n",
256 davinci_i2c_read_reg(dev
, DAVINCI_I2C_CLKL_REG
));
257 dev_dbg(dev
->dev
, "CLKH = %d\n",
258 davinci_i2c_read_reg(dev
, DAVINCI_I2C_CLKH_REG
));
259 dev_dbg(dev
->dev
, "bus_freq = %dkHz, bus_delay = %d\n",
260 pdata
->bus_freq
, pdata
->bus_delay
);
263 /* Take the I2C module out of reset: */
264 davinci_i2c_reset_ctrl(dev
, 1);
266 /* Enable interrupts */
267 davinci_i2c_write_reg(dev
, DAVINCI_I2C_IMR_REG
, I2C_DAVINCI_INTR_ALL
);
273 * Waiting for bus not busy
275 static int i2c_davinci_wait_bus_not_busy(struct davinci_i2c_dev
*dev
,
278 unsigned long timeout
;
281 timeout
= jiffies
+ dev
->adapter
.timeout
;
282 while (davinci_i2c_read_reg(dev
, DAVINCI_I2C_STR_REG
)
283 & DAVINCI_I2C_STR_BB
) {
284 if (to_cnt
<= DAVINCI_I2C_MAX_TRIES
) {
285 if (time_after(jiffies
, timeout
)) {
287 "timeout waiting for bus ready\n");
292 i2c_recover_bus(dev
);
293 i2c_davinci_init(dev
);
304 * Low level master read/write transaction. This function is called
305 * from i2c_davinci_xfer.
308 i2c_davinci_xfer_msg(struct i2c_adapter
*adap
, struct i2c_msg
*msg
, int stop
)
310 struct davinci_i2c_dev
*dev
= i2c_get_adapdata(adap
);
311 struct davinci_i2c_platform_data
*pdata
= dev
->pdata
;
316 /* Introduce a delay, required for some boards (e.g Davinci EVM) */
317 if (pdata
->bus_delay
)
318 udelay(pdata
->bus_delay
);
320 /* set the slave address */
321 davinci_i2c_write_reg(dev
, DAVINCI_I2C_SAR_REG
, msg
->addr
);
324 dev
->buf_len
= msg
->len
;
327 davinci_i2c_write_reg(dev
, DAVINCI_I2C_CNT_REG
, dev
->buf_len
);
329 INIT_COMPLETION(dev
->cmd_complete
);
332 /* Take I2C out of reset and configure it as master */
333 flag
= DAVINCI_I2C_MDR_IRS
| DAVINCI_I2C_MDR_MST
;
335 /* if the slave address is ten bit address, enable XA bit */
336 if (msg
->flags
& I2C_M_TEN
)
337 flag
|= DAVINCI_I2C_MDR_XA
;
338 if (!(msg
->flags
& I2C_M_RD
))
339 flag
|= DAVINCI_I2C_MDR_TRX
;
341 flag
|= DAVINCI_I2C_MDR_RM
;
343 /* Enable receive or transmit interrupts */
344 w
= davinci_i2c_read_reg(dev
, DAVINCI_I2C_IMR_REG
);
345 if (msg
->flags
& I2C_M_RD
)
346 w
|= DAVINCI_I2C_IMR_RRDY
;
348 w
|= DAVINCI_I2C_IMR_XRDY
;
349 davinci_i2c_write_reg(dev
, DAVINCI_I2C_IMR_REG
, w
);
354 * Write mode register first as needed for correct behaviour
355 * on OMAP-L138, but don't set STT yet to avoid a race with XRDY
356 * occurring before we have loaded DXR
358 davinci_i2c_write_reg(dev
, DAVINCI_I2C_MDR_REG
, flag
);
361 * First byte should be set here, not after interrupt,
362 * because transmit-data-ready interrupt can come before
363 * NACK-interrupt during sending of previous message and
364 * ICDXR may have wrong data
365 * It also saves us one interrupt, slightly faster
367 if ((!(msg
->flags
& I2C_M_RD
)) && dev
->buf_len
) {
368 davinci_i2c_write_reg(dev
, DAVINCI_I2C_DXR_REG
, *dev
->buf
++);
372 /* Set STT to begin transmit now DXR is loaded */
373 flag
|= DAVINCI_I2C_MDR_STT
;
374 if (stop
&& msg
->len
!= 0)
375 flag
|= DAVINCI_I2C_MDR_STP
;
376 davinci_i2c_write_reg(dev
, DAVINCI_I2C_MDR_REG
, flag
);
378 r
= wait_for_completion_interruptible_timeout(&dev
->cmd_complete
,
379 dev
->adapter
.timeout
);
381 dev_err(dev
->dev
, "controller timed out\n");
382 i2c_recover_bus(dev
);
383 i2c_davinci_init(dev
);
388 /* This should be 0 if all bytes were transferred
389 * or dev->cmd_err denotes an error.
390 * A signal may have aborted the transfer.
393 dev_err(dev
->dev
, "abnormal termination buf_len=%i\n",
405 if (likely(!dev
->cmd_err
))
408 /* We have an error */
409 if (dev
->cmd_err
& DAVINCI_I2C_STR_AL
) {
410 i2c_davinci_init(dev
);
414 if (dev
->cmd_err
& DAVINCI_I2C_STR_NACK
) {
415 if (msg
->flags
& I2C_M_IGNORE_NAK
)
418 w
= davinci_i2c_read_reg(dev
, DAVINCI_I2C_MDR_REG
);
419 w
|= DAVINCI_I2C_MDR_STP
;
420 davinci_i2c_write_reg(dev
, DAVINCI_I2C_MDR_REG
, w
);
428 * Prepare controller for a transaction and call i2c_davinci_xfer_msg
431 i2c_davinci_xfer(struct i2c_adapter
*adap
, struct i2c_msg msgs
[], int num
)
433 struct davinci_i2c_dev
*dev
= i2c_get_adapdata(adap
);
437 dev_dbg(dev
->dev
, "%s: msgs: %d\n", __func__
, num
);
439 ret
= i2c_davinci_wait_bus_not_busy(dev
, 1);
441 dev_warn(dev
->dev
, "timeout waiting for bus ready\n");
445 for (i
= 0; i
< num
; i
++) {
446 ret
= i2c_davinci_xfer_msg(adap
, &msgs
[i
], (i
== (num
- 1)));
447 dev_dbg(dev
->dev
, "%s [%d/%d] ret: %d\n", __func__
, i
+ 1, num
,
453 #ifdef CONFIG_CPU_FREQ
454 complete(&dev
->xfr_complete
);
460 static u32
i2c_davinci_func(struct i2c_adapter
*adap
)
462 return I2C_FUNC_I2C
| I2C_FUNC_SMBUS_EMUL
;
465 static void terminate_read(struct davinci_i2c_dev
*dev
)
467 u16 w
= davinci_i2c_read_reg(dev
, DAVINCI_I2C_MDR_REG
);
468 w
|= DAVINCI_I2C_MDR_NACK
;
469 davinci_i2c_write_reg(dev
, DAVINCI_I2C_MDR_REG
, w
);
471 /* Throw away data */
472 davinci_i2c_read_reg(dev
, DAVINCI_I2C_DRR_REG
);
474 dev_err(dev
->dev
, "RDR IRQ while no data requested\n");
476 static void terminate_write(struct davinci_i2c_dev
*dev
)
478 u16 w
= davinci_i2c_read_reg(dev
, DAVINCI_I2C_MDR_REG
);
479 w
|= DAVINCI_I2C_MDR_RM
| DAVINCI_I2C_MDR_STP
;
480 davinci_i2c_write_reg(dev
, DAVINCI_I2C_MDR_REG
, w
);
483 dev_dbg(dev
->dev
, "TDR IRQ while no data to send\n");
487 * Interrupt service routine. This gets called whenever an I2C interrupt
490 static irqreturn_t
i2c_davinci_isr(int this_irq
, void *dev_id
)
492 struct davinci_i2c_dev
*dev
= dev_id
;
497 while ((stat
= davinci_i2c_read_reg(dev
, DAVINCI_I2C_IVR_REG
))) {
498 dev_dbg(dev
->dev
, "%s: stat=0x%x\n", __func__
, stat
);
499 if (count
++ == 100) {
500 dev_warn(dev
->dev
, "Too much work in one IRQ\n");
505 case DAVINCI_I2C_IVR_AL
:
506 /* Arbitration lost, must retry */
507 dev
->cmd_err
|= DAVINCI_I2C_STR_AL
;
509 complete(&dev
->cmd_complete
);
512 case DAVINCI_I2C_IVR_NACK
:
513 dev
->cmd_err
|= DAVINCI_I2C_STR_NACK
;
515 complete(&dev
->cmd_complete
);
518 case DAVINCI_I2C_IVR_ARDY
:
519 davinci_i2c_write_reg(dev
,
520 DAVINCI_I2C_STR_REG
, DAVINCI_I2C_STR_ARDY
);
521 if (((dev
->buf_len
== 0) && (dev
->stop
!= 0)) ||
522 (dev
->cmd_err
& DAVINCI_I2C_STR_NACK
)) {
523 w
= davinci_i2c_read_reg(dev
,
524 DAVINCI_I2C_MDR_REG
);
525 w
|= DAVINCI_I2C_MDR_STP
;
526 davinci_i2c_write_reg(dev
,
527 DAVINCI_I2C_MDR_REG
, w
);
529 complete(&dev
->cmd_complete
);
532 case DAVINCI_I2C_IVR_RDR
:
535 davinci_i2c_read_reg(dev
,
536 DAVINCI_I2C_DRR_REG
);
541 davinci_i2c_write_reg(dev
,
543 DAVINCI_I2C_IMR_RRDY
);
545 /* signal can terminate transfer */
550 case DAVINCI_I2C_IVR_XRDY
:
552 davinci_i2c_write_reg(dev
, DAVINCI_I2C_DXR_REG
,
558 w
= davinci_i2c_read_reg(dev
,
559 DAVINCI_I2C_IMR_REG
);
560 w
&= ~DAVINCI_I2C_IMR_XRDY
;
561 davinci_i2c_write_reg(dev
,
565 /* signal can terminate transfer */
566 terminate_write(dev
);
570 case DAVINCI_I2C_IVR_SCD
:
571 davinci_i2c_write_reg(dev
,
572 DAVINCI_I2C_STR_REG
, DAVINCI_I2C_STR_SCD
);
573 complete(&dev
->cmd_complete
);
576 case DAVINCI_I2C_IVR_AAS
:
577 dev_dbg(dev
->dev
, "Address as slave interrupt\n");
581 dev_warn(dev
->dev
, "Unrecognized irq stat %d\n", stat
);
586 return count
? IRQ_HANDLED
: IRQ_NONE
;
589 #ifdef CONFIG_CPU_FREQ
590 static int i2c_davinci_cpufreq_transition(struct notifier_block
*nb
,
591 unsigned long val
, void *data
)
593 struct davinci_i2c_dev
*dev
;
595 dev
= container_of(nb
, struct davinci_i2c_dev
, freq_transition
);
596 if (val
== CPUFREQ_PRECHANGE
) {
597 wait_for_completion(&dev
->xfr_complete
);
598 davinci_i2c_reset_ctrl(dev
, 0);
599 } else if (val
== CPUFREQ_POSTCHANGE
) {
600 i2c_davinci_calc_clk_dividers(dev
);
601 davinci_i2c_reset_ctrl(dev
, 1);
607 static inline int i2c_davinci_cpufreq_register(struct davinci_i2c_dev
*dev
)
609 dev
->freq_transition
.notifier_call
= i2c_davinci_cpufreq_transition
;
611 return cpufreq_register_notifier(&dev
->freq_transition
,
612 CPUFREQ_TRANSITION_NOTIFIER
);
615 static inline void i2c_davinci_cpufreq_deregister(struct davinci_i2c_dev
*dev
)
617 cpufreq_unregister_notifier(&dev
->freq_transition
,
618 CPUFREQ_TRANSITION_NOTIFIER
);
621 static inline int i2c_davinci_cpufreq_register(struct davinci_i2c_dev
*dev
)
626 static inline void i2c_davinci_cpufreq_deregister(struct davinci_i2c_dev
*dev
)
631 static struct i2c_algorithm i2c_davinci_algo
= {
632 .master_xfer
= i2c_davinci_xfer
,
633 .functionality
= i2c_davinci_func
,
636 static const struct of_device_id davinci_i2c_of_match
[] = {
637 {.compatible
= "ti,davinci-i2c", },
640 MODULE_DEVICE_TABLE(of
, davinci_i2c_of_match
);
642 static int davinci_i2c_probe(struct platform_device
*pdev
)
644 struct davinci_i2c_dev
*dev
;
645 struct i2c_adapter
*adap
;
646 struct resource
*mem
, *irq
, *ioarea
;
649 /* NOTE: driver uses the static register mapping */
650 mem
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
652 dev_err(&pdev
->dev
, "no mem resource?\n");
656 irq
= platform_get_resource(pdev
, IORESOURCE_IRQ
, 0);
658 dev_err(&pdev
->dev
, "no irq resource?\n");
662 ioarea
= request_mem_region(mem
->start
, resource_size(mem
),
665 dev_err(&pdev
->dev
, "I2C region already claimed\n");
669 dev
= kzalloc(sizeof(struct davinci_i2c_dev
), GFP_KERNEL
);
672 goto err_release_region
;
675 init_completion(&dev
->cmd_complete
);
676 #ifdef CONFIG_CPU_FREQ
677 init_completion(&dev
->xfr_complete
);
679 dev
->dev
= get_device(&pdev
->dev
);
680 dev
->irq
= irq
->start
;
681 dev
->pdata
= dev
->dev
->platform_data
;
682 platform_set_drvdata(pdev
, dev
);
684 if (!dev
->pdata
&& pdev
->dev
.of_node
) {
687 dev
->pdata
= devm_kzalloc(&pdev
->dev
,
688 sizeof(struct davinci_i2c_platform_data
), GFP_KERNEL
);
693 memcpy(dev
->pdata
, &davinci_i2c_platform_data_default
,
694 sizeof(struct davinci_i2c_platform_data
));
695 if (!of_property_read_u32(pdev
->dev
.of_node
, "clock-frequency",
697 dev
->pdata
->bus_freq
= prop
/ 1000;
698 } else if (!dev
->pdata
) {
699 dev
->pdata
= &davinci_i2c_platform_data_default
;
702 dev
->clk
= clk_get(&pdev
->dev
, NULL
);
703 if (IS_ERR(dev
->clk
)) {
707 clk_prepare_enable(dev
->clk
);
709 dev
->base
= ioremap(mem
->start
, resource_size(mem
));
712 goto err_mem_ioremap
;
715 i2c_davinci_init(dev
);
717 r
= request_irq(dev
->irq
, i2c_davinci_isr
, 0, pdev
->name
, dev
);
719 dev_err(&pdev
->dev
, "failure requesting irq %i\n", dev
->irq
);
720 goto err_unuse_clocks
;
723 r
= i2c_davinci_cpufreq_register(dev
);
725 dev_err(&pdev
->dev
, "failed to register cpufreq\n");
729 adap
= &dev
->adapter
;
730 i2c_set_adapdata(adap
, dev
);
731 adap
->owner
= THIS_MODULE
;
732 adap
->class = I2C_CLASS_HWMON
;
733 strlcpy(adap
->name
, "DaVinci I2C adapter", sizeof(adap
->name
));
734 adap
->algo
= &i2c_davinci_algo
;
735 adap
->dev
.parent
= &pdev
->dev
;
736 adap
->timeout
= DAVINCI_I2C_TIMEOUT
;
737 adap
->dev
.of_node
= pdev
->dev
.of_node
;
740 r
= i2c_add_numbered_adapter(adap
);
742 dev_err(&pdev
->dev
, "failure adding adapter\n");
745 of_i2c_register_devices(adap
);
750 free_irq(dev
->irq
, dev
);
754 clk_disable_unprepare(dev
->clk
);
758 put_device(&pdev
->dev
);
761 release_mem_region(mem
->start
, resource_size(mem
));
766 static int davinci_i2c_remove(struct platform_device
*pdev
)
768 struct davinci_i2c_dev
*dev
= platform_get_drvdata(pdev
);
769 struct resource
*mem
;
771 i2c_davinci_cpufreq_deregister(dev
);
773 i2c_del_adapter(&dev
->adapter
);
774 put_device(&pdev
->dev
);
776 clk_disable_unprepare(dev
->clk
);
780 davinci_i2c_write_reg(dev
, DAVINCI_I2C_MDR_REG
, 0);
781 free_irq(dev
->irq
, dev
);
785 mem
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
786 release_mem_region(mem
->start
, resource_size(mem
));
791 static int davinci_i2c_suspend(struct device
*dev
)
793 struct platform_device
*pdev
= to_platform_device(dev
);
794 struct davinci_i2c_dev
*i2c_dev
= platform_get_drvdata(pdev
);
796 /* put I2C into reset */
797 davinci_i2c_reset_ctrl(i2c_dev
, 0);
798 clk_disable_unprepare(i2c_dev
->clk
);
803 static int davinci_i2c_resume(struct device
*dev
)
805 struct platform_device
*pdev
= to_platform_device(dev
);
806 struct davinci_i2c_dev
*i2c_dev
= platform_get_drvdata(pdev
);
808 clk_prepare_enable(i2c_dev
->clk
);
809 /* take I2C out of reset */
810 davinci_i2c_reset_ctrl(i2c_dev
, 1);
815 static const struct dev_pm_ops davinci_i2c_pm
= {
816 .suspend
= davinci_i2c_suspend
,
817 .resume
= davinci_i2c_resume
,
820 #define davinci_i2c_pm_ops (&davinci_i2c_pm)
822 #define davinci_i2c_pm_ops NULL
825 /* work with hotplug and coldplug */
826 MODULE_ALIAS("platform:i2c_davinci");
828 static struct platform_driver davinci_i2c_driver
= {
829 .probe
= davinci_i2c_probe
,
830 .remove
= davinci_i2c_remove
,
832 .name
= "i2c_davinci",
833 .owner
= THIS_MODULE
,
834 .pm
= davinci_i2c_pm_ops
,
835 .of_match_table
= of_match_ptr(davinci_i2c_of_match
),
839 /* I2C may be needed to bring up other drivers */
840 static int __init
davinci_i2c_init_driver(void)
842 return platform_driver_register(&davinci_i2c_driver
);
844 subsys_initcall(davinci_i2c_init_driver
);
846 static void __exit
davinci_i2c_exit_driver(void)
848 platform_driver_unregister(&davinci_i2c_driver
);
850 module_exit(davinci_i2c_exit_driver
);
852 MODULE_AUTHOR("Texas Instruments India");
853 MODULE_DESCRIPTION("TI DaVinci I2C bus adapter");
854 MODULE_LICENSE("GPL");