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>
42 #include <mach/hardware.h>
45 /* ----- global defines ----------------------------------------------- */
47 #define DAVINCI_I2C_TIMEOUT (1*HZ)
48 #define DAVINCI_I2C_MAX_TRIES 2
49 #define I2C_DAVINCI_INTR_ALL (DAVINCI_I2C_IMR_AAS | \
50 DAVINCI_I2C_IMR_SCD | \
51 DAVINCI_I2C_IMR_ARDY | \
52 DAVINCI_I2C_IMR_NACK | \
55 #define DAVINCI_I2C_OAR_REG 0x00
56 #define DAVINCI_I2C_IMR_REG 0x04
57 #define DAVINCI_I2C_STR_REG 0x08
58 #define DAVINCI_I2C_CLKL_REG 0x0c
59 #define DAVINCI_I2C_CLKH_REG 0x10
60 #define DAVINCI_I2C_CNT_REG 0x14
61 #define DAVINCI_I2C_DRR_REG 0x18
62 #define DAVINCI_I2C_SAR_REG 0x1c
63 #define DAVINCI_I2C_DXR_REG 0x20
64 #define DAVINCI_I2C_MDR_REG 0x24
65 #define DAVINCI_I2C_IVR_REG 0x28
66 #define DAVINCI_I2C_EMDR_REG 0x2c
67 #define DAVINCI_I2C_PSC_REG 0x30
69 #define DAVINCI_I2C_IVR_AAS 0x07
70 #define DAVINCI_I2C_IVR_SCD 0x06
71 #define DAVINCI_I2C_IVR_XRDY 0x05
72 #define DAVINCI_I2C_IVR_RDR 0x04
73 #define DAVINCI_I2C_IVR_ARDY 0x03
74 #define DAVINCI_I2C_IVR_NACK 0x02
75 #define DAVINCI_I2C_IVR_AL 0x01
77 #define DAVINCI_I2C_STR_BB BIT(12)
78 #define DAVINCI_I2C_STR_RSFULL BIT(11)
79 #define DAVINCI_I2C_STR_SCD BIT(5)
80 #define DAVINCI_I2C_STR_ARDY BIT(2)
81 #define DAVINCI_I2C_STR_NACK BIT(1)
82 #define DAVINCI_I2C_STR_AL BIT(0)
84 #define DAVINCI_I2C_MDR_NACK BIT(15)
85 #define DAVINCI_I2C_MDR_STT BIT(13)
86 #define DAVINCI_I2C_MDR_STP BIT(11)
87 #define DAVINCI_I2C_MDR_MST BIT(10)
88 #define DAVINCI_I2C_MDR_TRX BIT(9)
89 #define DAVINCI_I2C_MDR_XA BIT(8)
90 #define DAVINCI_I2C_MDR_RM BIT(7)
91 #define DAVINCI_I2C_MDR_IRS BIT(5)
93 #define DAVINCI_I2C_IMR_AAS BIT(6)
94 #define DAVINCI_I2C_IMR_SCD BIT(5)
95 #define DAVINCI_I2C_IMR_XRDY BIT(4)
96 #define DAVINCI_I2C_IMR_RRDY BIT(3)
97 #define DAVINCI_I2C_IMR_ARDY BIT(2)
98 #define DAVINCI_I2C_IMR_NACK BIT(1)
99 #define DAVINCI_I2C_IMR_AL BIT(0)
101 struct davinci_i2c_dev
{
104 struct completion cmd_complete
;
112 struct i2c_adapter adapter
;
113 #ifdef CONFIG_CPU_FREQ
114 struct completion xfr_complete
;
115 struct notifier_block freq_transition
;
119 /* default platform data to use if not supplied in the platform_device */
120 static struct davinci_i2c_platform_data davinci_i2c_platform_data_default
= {
125 static inline void davinci_i2c_write_reg(struct davinci_i2c_dev
*i2c_dev
,
128 __raw_writew(val
, i2c_dev
->base
+ reg
);
131 static inline u16
davinci_i2c_read_reg(struct davinci_i2c_dev
*i2c_dev
, int reg
)
133 return __raw_readw(i2c_dev
->base
+ reg
);
136 /* Generate a pulse on the i2c clock pin. */
137 static void generic_i2c_clock_pulse(unsigned int scl_pin
)
142 /* Send high and low on the SCL line */
143 for (i
= 0; i
< 9; i
++) {
144 gpio_set_value(scl_pin
, 0);
146 gpio_set_value(scl_pin
, 1);
152 /* This routine does i2c bus recovery as specified in the
153 * i2c protocol Rev. 03 section 3.16 titled "Bus clear"
155 static void i2c_recover_bus(struct davinci_i2c_dev
*dev
)
158 struct davinci_i2c_platform_data
*pdata
= dev
->dev
->platform_data
;
160 dev_err(dev
->dev
, "initiating i2c bus recovery\n");
161 /* Send NACK to the slave */
162 flag
= davinci_i2c_read_reg(dev
, DAVINCI_I2C_MDR_REG
);
163 flag
|= DAVINCI_I2C_MDR_NACK
;
164 /* write the data into mode register */
165 davinci_i2c_write_reg(dev
, DAVINCI_I2C_MDR_REG
, flag
);
167 generic_i2c_clock_pulse(pdata
->scl_pin
);
169 flag
= davinci_i2c_read_reg(dev
, DAVINCI_I2C_MDR_REG
);
170 flag
|= DAVINCI_I2C_MDR_STP
;
171 davinci_i2c_write_reg(dev
, DAVINCI_I2C_MDR_REG
, flag
);
174 static inline void davinci_i2c_reset_ctrl(struct davinci_i2c_dev
*i2c_dev
,
179 w
= davinci_i2c_read_reg(i2c_dev
, DAVINCI_I2C_MDR_REG
);
180 if (!val
) /* put I2C into reset */
181 w
&= ~DAVINCI_I2C_MDR_IRS
;
182 else /* take I2C out of reset */
183 w
|= DAVINCI_I2C_MDR_IRS
;
185 davinci_i2c_write_reg(i2c_dev
, DAVINCI_I2C_MDR_REG
, w
);
188 static void i2c_davinci_calc_clk_dividers(struct davinci_i2c_dev
*dev
)
190 struct davinci_i2c_platform_data
*pdata
= dev
->dev
->platform_data
;
196 u32 input_clock
= clk_get_rate(dev
->clk
);
198 /* NOTE: I2C Clock divider programming info
199 * As per I2C specs the following formulas provide prescaler
200 * and low/high divider values
201 * input clk --> PSC Div -----------> ICCL/H Div --> output clock
204 * output clk = module clk / (PSC + 1) [ (ICCL + d) + (ICCH + d) ]
207 * (ICCL + ICCH) = clk = (input clk / ((psc +1) * output clk)) - 2d;
209 * where if PSC == 0, d = 7,
214 /* get minimum of 7 MHz clock, but max of 12 MHz */
215 psc
= (input_clock
/ 7000000) - 1;
216 if ((input_clock
/ (psc
+ 1)) > 12000000)
217 psc
++; /* better to run under spec than over */
218 d
= (psc
>= 2) ? 5 : 7 - psc
;
220 clk
= ((input_clock
/ (psc
+ 1)) / (pdata
->bus_freq
* 1000)) - (d
<< 1);
224 davinci_i2c_write_reg(dev
, DAVINCI_I2C_PSC_REG
, psc
);
225 davinci_i2c_write_reg(dev
, DAVINCI_I2C_CLKH_REG
, clkh
);
226 davinci_i2c_write_reg(dev
, DAVINCI_I2C_CLKL_REG
, clkl
);
228 dev_dbg(dev
->dev
, "input_clock = %d, CLK = %d\n", input_clock
, clk
);
232 * This function configures I2C and brings I2C out of reset.
233 * This function is called during I2C init function. This function
234 * also gets called if I2C encounters any errors.
236 static int i2c_davinci_init(struct davinci_i2c_dev
*dev
)
238 struct davinci_i2c_platform_data
*pdata
= dev
->dev
->platform_data
;
241 pdata
= &davinci_i2c_platform_data_default
;
243 /* put I2C into reset */
244 davinci_i2c_reset_ctrl(dev
, 0);
246 /* compute clock dividers */
247 i2c_davinci_calc_clk_dividers(dev
);
249 /* Respond at reserved "SMBus Host" slave address" (and zero);
250 * we seem to have no option to not respond...
252 davinci_i2c_write_reg(dev
, DAVINCI_I2C_OAR_REG
, 0x08);
254 dev_dbg(dev
->dev
, "PSC = %d\n",
255 davinci_i2c_read_reg(dev
, DAVINCI_I2C_PSC_REG
));
256 dev_dbg(dev
->dev
, "CLKL = %d\n",
257 davinci_i2c_read_reg(dev
, DAVINCI_I2C_CLKL_REG
));
258 dev_dbg(dev
->dev
, "CLKH = %d\n",
259 davinci_i2c_read_reg(dev
, DAVINCI_I2C_CLKH_REG
));
260 dev_dbg(dev
->dev
, "bus_freq = %dkHz, bus_delay = %d\n",
261 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
->dev
->platform_data
;
317 pdata
= &davinci_i2c_platform_data_default
;
318 /* Introduce a delay, required for some boards (e.g Davinci EVM) */
319 if (pdata
->bus_delay
)
320 udelay(pdata
->bus_delay
);
322 /* set the slave address */
323 davinci_i2c_write_reg(dev
, DAVINCI_I2C_SAR_REG
, msg
->addr
);
326 dev
->buf_len
= msg
->len
;
329 davinci_i2c_write_reg(dev
, DAVINCI_I2C_CNT_REG
, dev
->buf_len
);
331 INIT_COMPLETION(dev
->cmd_complete
);
334 /* Take I2C out of reset and configure it as master */
335 flag
= DAVINCI_I2C_MDR_IRS
| DAVINCI_I2C_MDR_MST
;
337 /* if the slave address is ten bit address, enable XA bit */
338 if (msg
->flags
& I2C_M_TEN
)
339 flag
|= DAVINCI_I2C_MDR_XA
;
340 if (!(msg
->flags
& I2C_M_RD
))
341 flag
|= DAVINCI_I2C_MDR_TRX
;
343 flag
|= DAVINCI_I2C_MDR_RM
;
345 /* Enable receive or transmit interrupts */
346 w
= davinci_i2c_read_reg(dev
, DAVINCI_I2C_IMR_REG
);
347 if (msg
->flags
& I2C_M_RD
)
348 w
|= DAVINCI_I2C_IMR_RRDY
;
350 w
|= DAVINCI_I2C_IMR_XRDY
;
351 davinci_i2c_write_reg(dev
, DAVINCI_I2C_IMR_REG
, w
);
356 * Write mode register first as needed for correct behaviour
357 * on OMAP-L138, but don't set STT yet to avoid a race with XRDY
358 * occurring before we have loaded DXR
360 davinci_i2c_write_reg(dev
, DAVINCI_I2C_MDR_REG
, flag
);
363 * First byte should be set here, not after interrupt,
364 * because transmit-data-ready interrupt can come before
365 * NACK-interrupt during sending of previous message and
366 * ICDXR may have wrong data
367 * It also saves us one interrupt, slightly faster
369 if ((!(msg
->flags
& I2C_M_RD
)) && dev
->buf_len
) {
370 davinci_i2c_write_reg(dev
, DAVINCI_I2C_DXR_REG
, *dev
->buf
++);
374 /* Set STT to begin transmit now DXR is loaded */
375 flag
|= DAVINCI_I2C_MDR_STT
;
376 if (stop
&& msg
->len
!= 0)
377 flag
|= DAVINCI_I2C_MDR_STP
;
378 davinci_i2c_write_reg(dev
, DAVINCI_I2C_MDR_REG
, flag
);
380 r
= wait_for_completion_interruptible_timeout(&dev
->cmd_complete
,
381 dev
->adapter
.timeout
);
383 dev_err(dev
->dev
, "controller timed out\n");
384 i2c_recover_bus(dev
);
385 i2c_davinci_init(dev
);
390 /* This should be 0 if all bytes were transferred
391 * or dev->cmd_err denotes an error.
392 * A signal may have aborted the transfer.
395 dev_err(dev
->dev
, "abnormal termination buf_len=%i\n",
407 if (likely(!dev
->cmd_err
))
410 /* We have an error */
411 if (dev
->cmd_err
& DAVINCI_I2C_STR_AL
) {
412 i2c_davinci_init(dev
);
416 if (dev
->cmd_err
& DAVINCI_I2C_STR_NACK
) {
417 if (msg
->flags
& I2C_M_IGNORE_NAK
)
420 w
= davinci_i2c_read_reg(dev
, DAVINCI_I2C_MDR_REG
);
421 w
|= DAVINCI_I2C_MDR_STP
;
422 davinci_i2c_write_reg(dev
, DAVINCI_I2C_MDR_REG
, w
);
430 * Prepare controller for a transaction and call i2c_davinci_xfer_msg
433 i2c_davinci_xfer(struct i2c_adapter
*adap
, struct i2c_msg msgs
[], int num
)
435 struct davinci_i2c_dev
*dev
= i2c_get_adapdata(adap
);
439 dev_dbg(dev
->dev
, "%s: msgs: %d\n", __func__
, num
);
441 ret
= i2c_davinci_wait_bus_not_busy(dev
, 1);
443 dev_warn(dev
->dev
, "timeout waiting for bus ready\n");
447 for (i
= 0; i
< num
; i
++) {
448 ret
= i2c_davinci_xfer_msg(adap
, &msgs
[i
], (i
== (num
- 1)));
449 dev_dbg(dev
->dev
, "%s [%d/%d] ret: %d\n", __func__
, i
+ 1, num
,
455 #ifdef CONFIG_CPU_FREQ
456 complete(&dev
->xfr_complete
);
462 static u32
i2c_davinci_func(struct i2c_adapter
*adap
)
464 return I2C_FUNC_I2C
| I2C_FUNC_SMBUS_EMUL
;
467 static void terminate_read(struct davinci_i2c_dev
*dev
)
469 u16 w
= davinci_i2c_read_reg(dev
, DAVINCI_I2C_MDR_REG
);
470 w
|= DAVINCI_I2C_MDR_NACK
;
471 davinci_i2c_write_reg(dev
, DAVINCI_I2C_MDR_REG
, w
);
473 /* Throw away data */
474 davinci_i2c_read_reg(dev
, DAVINCI_I2C_DRR_REG
);
476 dev_err(dev
->dev
, "RDR IRQ while no data requested\n");
478 static void terminate_write(struct davinci_i2c_dev
*dev
)
480 u16 w
= davinci_i2c_read_reg(dev
, DAVINCI_I2C_MDR_REG
);
481 w
|= DAVINCI_I2C_MDR_RM
| DAVINCI_I2C_MDR_STP
;
482 davinci_i2c_write_reg(dev
, DAVINCI_I2C_MDR_REG
, w
);
485 dev_dbg(dev
->dev
, "TDR IRQ while no data to send\n");
489 * Interrupt service routine. This gets called whenever an I2C interrupt
492 static irqreturn_t
i2c_davinci_isr(int this_irq
, void *dev_id
)
494 struct davinci_i2c_dev
*dev
= dev_id
;
499 while ((stat
= davinci_i2c_read_reg(dev
, DAVINCI_I2C_IVR_REG
))) {
500 dev_dbg(dev
->dev
, "%s: stat=0x%x\n", __func__
, stat
);
501 if (count
++ == 100) {
502 dev_warn(dev
->dev
, "Too much work in one IRQ\n");
507 case DAVINCI_I2C_IVR_AL
:
508 /* Arbitration lost, must retry */
509 dev
->cmd_err
|= DAVINCI_I2C_STR_AL
;
511 complete(&dev
->cmd_complete
);
514 case DAVINCI_I2C_IVR_NACK
:
515 dev
->cmd_err
|= DAVINCI_I2C_STR_NACK
;
517 complete(&dev
->cmd_complete
);
520 case DAVINCI_I2C_IVR_ARDY
:
521 davinci_i2c_write_reg(dev
,
522 DAVINCI_I2C_STR_REG
, DAVINCI_I2C_STR_ARDY
);
523 if (((dev
->buf_len
== 0) && (dev
->stop
!= 0)) ||
524 (dev
->cmd_err
& DAVINCI_I2C_STR_NACK
)) {
525 w
= davinci_i2c_read_reg(dev
,
526 DAVINCI_I2C_MDR_REG
);
527 w
|= DAVINCI_I2C_MDR_STP
;
528 davinci_i2c_write_reg(dev
,
529 DAVINCI_I2C_MDR_REG
, w
);
531 complete(&dev
->cmd_complete
);
534 case DAVINCI_I2C_IVR_RDR
:
537 davinci_i2c_read_reg(dev
,
538 DAVINCI_I2C_DRR_REG
);
543 davinci_i2c_write_reg(dev
,
545 DAVINCI_I2C_IMR_RRDY
);
547 /* signal can terminate transfer */
552 case DAVINCI_I2C_IVR_XRDY
:
554 davinci_i2c_write_reg(dev
, DAVINCI_I2C_DXR_REG
,
560 w
= davinci_i2c_read_reg(dev
,
561 DAVINCI_I2C_IMR_REG
);
562 w
&= ~DAVINCI_I2C_IMR_XRDY
;
563 davinci_i2c_write_reg(dev
,
567 /* signal can terminate transfer */
568 terminate_write(dev
);
572 case DAVINCI_I2C_IVR_SCD
:
573 davinci_i2c_write_reg(dev
,
574 DAVINCI_I2C_STR_REG
, DAVINCI_I2C_STR_SCD
);
575 complete(&dev
->cmd_complete
);
578 case DAVINCI_I2C_IVR_AAS
:
579 dev_dbg(dev
->dev
, "Address as slave interrupt\n");
583 dev_warn(dev
->dev
, "Unrecognized irq stat %d\n", stat
);
588 return count
? IRQ_HANDLED
: IRQ_NONE
;
591 #ifdef CONFIG_CPU_FREQ
592 static int i2c_davinci_cpufreq_transition(struct notifier_block
*nb
,
593 unsigned long val
, void *data
)
595 struct davinci_i2c_dev
*dev
;
597 dev
= container_of(nb
, struct davinci_i2c_dev
, freq_transition
);
598 if (val
== CPUFREQ_PRECHANGE
) {
599 wait_for_completion(&dev
->xfr_complete
);
600 davinci_i2c_reset_ctrl(dev
, 0);
601 } else if (val
== CPUFREQ_POSTCHANGE
) {
602 i2c_davinci_calc_clk_dividers(dev
);
603 davinci_i2c_reset_ctrl(dev
, 1);
609 static inline int i2c_davinci_cpufreq_register(struct davinci_i2c_dev
*dev
)
611 dev
->freq_transition
.notifier_call
= i2c_davinci_cpufreq_transition
;
613 return cpufreq_register_notifier(&dev
->freq_transition
,
614 CPUFREQ_TRANSITION_NOTIFIER
);
617 static inline void i2c_davinci_cpufreq_deregister(struct davinci_i2c_dev
*dev
)
619 cpufreq_unregister_notifier(&dev
->freq_transition
,
620 CPUFREQ_TRANSITION_NOTIFIER
);
623 static inline int i2c_davinci_cpufreq_register(struct davinci_i2c_dev
*dev
)
628 static inline void i2c_davinci_cpufreq_deregister(struct davinci_i2c_dev
*dev
)
633 static struct i2c_algorithm i2c_davinci_algo
= {
634 .master_xfer
= i2c_davinci_xfer
,
635 .functionality
= i2c_davinci_func
,
638 static int davinci_i2c_probe(struct platform_device
*pdev
)
640 struct davinci_i2c_dev
*dev
;
641 struct i2c_adapter
*adap
;
642 struct resource
*mem
, *irq
, *ioarea
;
645 /* NOTE: driver uses the static register mapping */
646 mem
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
648 dev_err(&pdev
->dev
, "no mem resource?\n");
652 irq
= platform_get_resource(pdev
, IORESOURCE_IRQ
, 0);
654 dev_err(&pdev
->dev
, "no irq resource?\n");
658 ioarea
= request_mem_region(mem
->start
, resource_size(mem
),
661 dev_err(&pdev
->dev
, "I2C region already claimed\n");
665 dev
= kzalloc(sizeof(struct davinci_i2c_dev
), GFP_KERNEL
);
668 goto err_release_region
;
671 init_completion(&dev
->cmd_complete
);
672 #ifdef CONFIG_CPU_FREQ
673 init_completion(&dev
->xfr_complete
);
675 dev
->dev
= get_device(&pdev
->dev
);
676 dev
->irq
= irq
->start
;
677 platform_set_drvdata(pdev
, dev
);
679 dev
->clk
= clk_get(&pdev
->dev
, NULL
);
680 if (IS_ERR(dev
->clk
)) {
684 clk_enable(dev
->clk
);
686 dev
->base
= ioremap(mem
->start
, resource_size(mem
));
689 goto err_mem_ioremap
;
692 i2c_davinci_init(dev
);
694 r
= request_irq(dev
->irq
, i2c_davinci_isr
, 0, pdev
->name
, dev
);
696 dev_err(&pdev
->dev
, "failure requesting irq %i\n", dev
->irq
);
697 goto err_unuse_clocks
;
700 r
= i2c_davinci_cpufreq_register(dev
);
702 dev_err(&pdev
->dev
, "failed to register cpufreq\n");
706 adap
= &dev
->adapter
;
707 i2c_set_adapdata(adap
, dev
);
708 adap
->owner
= THIS_MODULE
;
709 adap
->class = I2C_CLASS_HWMON
;
710 strlcpy(adap
->name
, "DaVinci I2C adapter", sizeof(adap
->name
));
711 adap
->algo
= &i2c_davinci_algo
;
712 adap
->dev
.parent
= &pdev
->dev
;
713 adap
->timeout
= DAVINCI_I2C_TIMEOUT
;
716 r
= i2c_add_numbered_adapter(adap
);
718 dev_err(&pdev
->dev
, "failure adding adapter\n");
725 free_irq(dev
->irq
, dev
);
729 clk_disable(dev
->clk
);
733 platform_set_drvdata(pdev
, NULL
);
734 put_device(&pdev
->dev
);
737 release_mem_region(mem
->start
, resource_size(mem
));
742 static int davinci_i2c_remove(struct platform_device
*pdev
)
744 struct davinci_i2c_dev
*dev
= platform_get_drvdata(pdev
);
745 struct resource
*mem
;
747 i2c_davinci_cpufreq_deregister(dev
);
749 platform_set_drvdata(pdev
, NULL
);
750 i2c_del_adapter(&dev
->adapter
);
751 put_device(&pdev
->dev
);
753 clk_disable(dev
->clk
);
757 davinci_i2c_write_reg(dev
, DAVINCI_I2C_MDR_REG
, 0);
758 free_irq(IRQ_I2C
, dev
);
762 mem
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
763 release_mem_region(mem
->start
, resource_size(mem
));
768 static int davinci_i2c_suspend(struct device
*dev
)
770 struct platform_device
*pdev
= to_platform_device(dev
);
771 struct davinci_i2c_dev
*i2c_dev
= platform_get_drvdata(pdev
);
773 /* put I2C into reset */
774 davinci_i2c_reset_ctrl(i2c_dev
, 0);
775 clk_disable(i2c_dev
->clk
);
780 static int davinci_i2c_resume(struct device
*dev
)
782 struct platform_device
*pdev
= to_platform_device(dev
);
783 struct davinci_i2c_dev
*i2c_dev
= platform_get_drvdata(pdev
);
785 clk_enable(i2c_dev
->clk
);
786 /* take I2C out of reset */
787 davinci_i2c_reset_ctrl(i2c_dev
, 1);
792 static const struct dev_pm_ops davinci_i2c_pm
= {
793 .suspend
= davinci_i2c_suspend
,
794 .resume
= davinci_i2c_resume
,
797 #define davinci_i2c_pm_ops (&davinci_i2c_pm)
799 #define davinci_i2c_pm_ops NULL
802 /* work with hotplug and coldplug */
803 MODULE_ALIAS("platform:i2c_davinci");
805 static struct platform_driver davinci_i2c_driver
= {
806 .probe
= davinci_i2c_probe
,
807 .remove
= davinci_i2c_remove
,
809 .name
= "i2c_davinci",
810 .owner
= THIS_MODULE
,
811 .pm
= davinci_i2c_pm_ops
,
815 /* I2C may be needed to bring up other drivers */
816 static int __init
davinci_i2c_init_driver(void)
818 return platform_driver_register(&davinci_i2c_driver
);
820 subsys_initcall(davinci_i2c_init_driver
);
822 static void __exit
davinci_i2c_exit_driver(void)
824 platform_driver_unregister(&davinci_i2c_driver
);
826 module_exit(davinci_i2c_exit_driver
);
828 MODULE_AUTHOR("Texas Instruments India");
829 MODULE_DESCRIPTION("TI DaVinci I2C bus adapter");
830 MODULE_LICENSE("GPL");