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.
20 * ----------------------------------------------------------------------------
23 #include <linux/kernel.h>
24 #include <linux/module.h>
25 #include <linux/delay.h>
26 #include <linux/i2c.h>
27 #include <linux/clk.h>
28 #include <linux/errno.h>
29 #include <linux/sched.h>
30 #include <linux/err.h>
31 #include <linux/interrupt.h>
32 #include <linux/platform_device.h>
34 #include <linux/slab.h>
35 #include <linux/cpufreq.h>
36 #include <linux/gpio.h>
37 #include <linux/of_device.h>
38 #include <linux/platform_data/i2c-davinci.h>
40 /* ----- global defines ----------------------------------------------- */
42 #define DAVINCI_I2C_TIMEOUT (1*HZ)
43 #define DAVINCI_I2C_MAX_TRIES 2
44 #define DAVINCI_I2C_OWN_ADDRESS 0x08
45 #define I2C_DAVINCI_INTR_ALL (DAVINCI_I2C_IMR_SCD | \
46 DAVINCI_I2C_IMR_ARDY | \
47 DAVINCI_I2C_IMR_NACK | \
50 #define DAVINCI_I2C_OAR_REG 0x00
51 #define DAVINCI_I2C_IMR_REG 0x04
52 #define DAVINCI_I2C_STR_REG 0x08
53 #define DAVINCI_I2C_CLKL_REG 0x0c
54 #define DAVINCI_I2C_CLKH_REG 0x10
55 #define DAVINCI_I2C_CNT_REG 0x14
56 #define DAVINCI_I2C_DRR_REG 0x18
57 #define DAVINCI_I2C_SAR_REG 0x1c
58 #define DAVINCI_I2C_DXR_REG 0x20
59 #define DAVINCI_I2C_MDR_REG 0x24
60 #define DAVINCI_I2C_IVR_REG 0x28
61 #define DAVINCI_I2C_EMDR_REG 0x2c
62 #define DAVINCI_I2C_PSC_REG 0x30
63 #define DAVINCI_I2C_FUNC_REG 0x48
64 #define DAVINCI_I2C_DIR_REG 0x4c
65 #define DAVINCI_I2C_DIN_REG 0x50
66 #define DAVINCI_I2C_DOUT_REG 0x54
67 #define DAVINCI_I2C_DSET_REG 0x58
68 #define DAVINCI_I2C_DCLR_REG 0x5c
70 #define DAVINCI_I2C_IVR_AAS 0x07
71 #define DAVINCI_I2C_IVR_SCD 0x06
72 #define DAVINCI_I2C_IVR_XRDY 0x05
73 #define DAVINCI_I2C_IVR_RDR 0x04
74 #define DAVINCI_I2C_IVR_ARDY 0x03
75 #define DAVINCI_I2C_IVR_NACK 0x02
76 #define DAVINCI_I2C_IVR_AL 0x01
78 #define DAVINCI_I2C_STR_BB BIT(12)
79 #define DAVINCI_I2C_STR_RSFULL BIT(11)
80 #define DAVINCI_I2C_STR_SCD BIT(5)
81 #define DAVINCI_I2C_STR_ARDY BIT(2)
82 #define DAVINCI_I2C_STR_NACK BIT(1)
83 #define DAVINCI_I2C_STR_AL BIT(0)
85 #define DAVINCI_I2C_MDR_NACK BIT(15)
86 #define DAVINCI_I2C_MDR_STT BIT(13)
87 #define DAVINCI_I2C_MDR_STP BIT(11)
88 #define DAVINCI_I2C_MDR_MST BIT(10)
89 #define DAVINCI_I2C_MDR_TRX BIT(9)
90 #define DAVINCI_I2C_MDR_XA BIT(8)
91 #define DAVINCI_I2C_MDR_RM BIT(7)
92 #define DAVINCI_I2C_MDR_IRS BIT(5)
94 #define DAVINCI_I2C_IMR_AAS BIT(6)
95 #define DAVINCI_I2C_IMR_SCD BIT(5)
96 #define DAVINCI_I2C_IMR_XRDY BIT(4)
97 #define DAVINCI_I2C_IMR_RRDY BIT(3)
98 #define DAVINCI_I2C_IMR_ARDY BIT(2)
99 #define DAVINCI_I2C_IMR_NACK BIT(1)
100 #define DAVINCI_I2C_IMR_AL BIT(0)
102 /* set SDA and SCL as GPIO */
103 #define DAVINCI_I2C_FUNC_PFUNC0 BIT(0)
105 /* set SCL as output when used as GPIO*/
106 #define DAVINCI_I2C_DIR_PDIR0 BIT(0)
107 /* set SDA as output when used as GPIO*/
108 #define DAVINCI_I2C_DIR_PDIR1 BIT(1)
110 /* read SCL GPIO level */
111 #define DAVINCI_I2C_DIN_PDIN0 BIT(0)
112 /* read SDA GPIO level */
113 #define DAVINCI_I2C_DIN_PDIN1 BIT(1)
115 /*set the SCL GPIO high */
116 #define DAVINCI_I2C_DSET_PDSET0 BIT(0)
117 /*set the SDA GPIO high */
118 #define DAVINCI_I2C_DSET_PDSET1 BIT(1)
120 /* set the SCL GPIO low */
121 #define DAVINCI_I2C_DCLR_PDCLR0 BIT(0)
122 /* set the SDA GPIO low */
123 #define DAVINCI_I2C_DCLR_PDCLR1 BIT(1)
125 struct davinci_i2c_dev
{
128 struct completion cmd_complete
;
136 struct i2c_adapter adapter
;
137 #ifdef CONFIG_CPU_FREQ
138 struct completion xfr_complete
;
139 struct notifier_block freq_transition
;
141 struct davinci_i2c_platform_data
*pdata
;
144 /* default platform data to use if not supplied in the platform_device */
145 static struct davinci_i2c_platform_data davinci_i2c_platform_data_default
= {
150 static inline void davinci_i2c_write_reg(struct davinci_i2c_dev
*i2c_dev
,
153 writew_relaxed(val
, i2c_dev
->base
+ reg
);
156 static inline u16
davinci_i2c_read_reg(struct davinci_i2c_dev
*i2c_dev
, int reg
)
158 return readw_relaxed(i2c_dev
->base
+ reg
);
161 static inline void davinci_i2c_reset_ctrl(struct davinci_i2c_dev
*i2c_dev
,
166 w
= davinci_i2c_read_reg(i2c_dev
, DAVINCI_I2C_MDR_REG
);
167 if (!val
) /* put I2C into reset */
168 w
&= ~DAVINCI_I2C_MDR_IRS
;
169 else /* take I2C out of reset */
170 w
|= DAVINCI_I2C_MDR_IRS
;
172 davinci_i2c_write_reg(i2c_dev
, DAVINCI_I2C_MDR_REG
, w
);
175 static void i2c_davinci_calc_clk_dividers(struct davinci_i2c_dev
*dev
)
177 struct davinci_i2c_platform_data
*pdata
= dev
->pdata
;
183 u32 input_clock
= clk_get_rate(dev
->clk
);
184 struct device_node
*of_node
= dev
->dev
->of_node
;
186 /* NOTE: I2C Clock divider programming info
187 * As per I2C specs the following formulas provide prescaler
188 * and low/high divider values
189 * input clk --> PSC Div -----------> ICCL/H Div --> output clock
192 * output clk = module clk / (PSC + 1) [ (ICCL + d) + (ICCH + d) ]
195 * (ICCL + ICCH) = clk = (input clk / ((psc +1) * output clk)) - 2d;
197 * where if PSC == 0, d = 7,
202 * d is always 6 on Keystone I2C controller
205 /* get minimum of 7 MHz clock, but max of 12 MHz */
206 psc
= (input_clock
/ 7000000) - 1;
207 if ((input_clock
/ (psc
+ 1)) > 12000000)
208 psc
++; /* better to run under spec than over */
209 d
= (psc
>= 2) ? 5 : 7 - psc
;
211 if (of_node
&& of_device_is_compatible(of_node
, "ti,keystone-i2c"))
214 clk
= ((input_clock
/ (psc
+ 1)) / (pdata
->bus_freq
* 1000));
215 /* Avoid driving the bus too fast because of rounding errors above */
216 if (input_clock
/ (psc
+ 1) / clk
> pdata
->bus_freq
* 1000)
219 * According to I2C-BUS Spec 2.1, in FAST-MODE LOW period should be at
220 * least 1.3uS, which is not the case with 50% duty cycle. Driving HIGH
221 * to LOW ratio as 1 to 2 is more safe.
223 if (pdata
->bus_freq
> 100)
224 clkl
= (clk
<< 1) / 3;
228 * It's not always possible to have 1 to 2 ratio when d=7, so fall back
229 * to minimal possible clkh in this case.
231 if (clk
>= clkl
+ d
) {
232 clkh
= clk
- clkl
- d
;
236 clkl
= clk
- (d
<< 1);
239 davinci_i2c_write_reg(dev
, DAVINCI_I2C_PSC_REG
, psc
);
240 davinci_i2c_write_reg(dev
, DAVINCI_I2C_CLKH_REG
, clkh
);
241 davinci_i2c_write_reg(dev
, DAVINCI_I2C_CLKL_REG
, clkl
);
243 dev_dbg(dev
->dev
, "input_clock = %d, CLK = %d\n", input_clock
, clk
);
247 * This function configures I2C and brings I2C out of reset.
248 * This function is called during I2C init function. This function
249 * also gets called if I2C encounters any errors.
251 static int i2c_davinci_init(struct davinci_i2c_dev
*dev
)
253 struct davinci_i2c_platform_data
*pdata
= dev
->pdata
;
255 /* put I2C into reset */
256 davinci_i2c_reset_ctrl(dev
, 0);
258 /* compute clock dividers */
259 i2c_davinci_calc_clk_dividers(dev
);
261 /* Respond at reserved "SMBus Host" slave address" (and zero);
262 * we seem to have no option to not respond...
264 davinci_i2c_write_reg(dev
, DAVINCI_I2C_OAR_REG
, DAVINCI_I2C_OWN_ADDRESS
);
266 dev_dbg(dev
->dev
, "PSC = %d\n",
267 davinci_i2c_read_reg(dev
, DAVINCI_I2C_PSC_REG
));
268 dev_dbg(dev
->dev
, "CLKL = %d\n",
269 davinci_i2c_read_reg(dev
, DAVINCI_I2C_CLKL_REG
));
270 dev_dbg(dev
->dev
, "CLKH = %d\n",
271 davinci_i2c_read_reg(dev
, DAVINCI_I2C_CLKH_REG
));
272 dev_dbg(dev
->dev
, "bus_freq = %dkHz, bus_delay = %d\n",
273 pdata
->bus_freq
, pdata
->bus_delay
);
276 /* Take the I2C module out of reset: */
277 davinci_i2c_reset_ctrl(dev
, 1);
279 /* Enable interrupts */
280 davinci_i2c_write_reg(dev
, DAVINCI_I2C_IMR_REG
, I2C_DAVINCI_INTR_ALL
);
286 * This routine does i2c bus recovery by using i2c_generic_gpio_recovery
287 * which is provided by I2C Bus recovery infrastructure.
289 static void davinci_i2c_prepare_recovery(struct i2c_adapter
*adap
)
291 struct davinci_i2c_dev
*dev
= i2c_get_adapdata(adap
);
293 /* Disable interrupts */
294 davinci_i2c_write_reg(dev
, DAVINCI_I2C_IMR_REG
, 0);
296 /* put I2C into reset */
297 davinci_i2c_reset_ctrl(dev
, 0);
300 static void davinci_i2c_unprepare_recovery(struct i2c_adapter
*adap
)
302 struct davinci_i2c_dev
*dev
= i2c_get_adapdata(adap
);
304 i2c_davinci_init(dev
);
307 static struct i2c_bus_recovery_info davinci_i2c_gpio_recovery_info
= {
308 .recover_bus
= i2c_generic_gpio_recovery
,
309 .prepare_recovery
= davinci_i2c_prepare_recovery
,
310 .unprepare_recovery
= davinci_i2c_unprepare_recovery
,
313 static void davinci_i2c_set_scl(struct i2c_adapter
*adap
, int val
)
315 struct davinci_i2c_dev
*dev
= i2c_get_adapdata(adap
);
318 davinci_i2c_write_reg(dev
, DAVINCI_I2C_DSET_REG
,
319 DAVINCI_I2C_DSET_PDSET0
);
321 davinci_i2c_write_reg(dev
, DAVINCI_I2C_DCLR_REG
,
322 DAVINCI_I2C_DCLR_PDCLR0
);
325 static int davinci_i2c_get_scl(struct i2c_adapter
*adap
)
327 struct davinci_i2c_dev
*dev
= i2c_get_adapdata(adap
);
330 /* read the state of SCL */
331 val
= davinci_i2c_read_reg(dev
, DAVINCI_I2C_DIN_REG
);
332 return val
& DAVINCI_I2C_DIN_PDIN0
;
335 static int davinci_i2c_get_sda(struct i2c_adapter
*adap
)
337 struct davinci_i2c_dev
*dev
= i2c_get_adapdata(adap
);
340 /* read the state of SDA */
341 val
= davinci_i2c_read_reg(dev
, DAVINCI_I2C_DIN_REG
);
342 return val
& DAVINCI_I2C_DIN_PDIN1
;
345 static void davinci_i2c_scl_prepare_recovery(struct i2c_adapter
*adap
)
347 struct davinci_i2c_dev
*dev
= i2c_get_adapdata(adap
);
349 davinci_i2c_prepare_recovery(adap
);
351 /* SCL output, SDA input */
352 davinci_i2c_write_reg(dev
, DAVINCI_I2C_DIR_REG
, DAVINCI_I2C_DIR_PDIR0
);
354 /* change to GPIO mode */
355 davinci_i2c_write_reg(dev
, DAVINCI_I2C_FUNC_REG
,
356 DAVINCI_I2C_FUNC_PFUNC0
);
359 static void davinci_i2c_scl_unprepare_recovery(struct i2c_adapter
*adap
)
361 struct davinci_i2c_dev
*dev
= i2c_get_adapdata(adap
);
363 /* change back to I2C mode */
364 davinci_i2c_write_reg(dev
, DAVINCI_I2C_FUNC_REG
, 0);
366 davinci_i2c_unprepare_recovery(adap
);
369 static struct i2c_bus_recovery_info davinci_i2c_scl_recovery_info
= {
370 .recover_bus
= i2c_generic_scl_recovery
,
371 .set_scl
= davinci_i2c_set_scl
,
372 .get_scl
= davinci_i2c_get_scl
,
373 .get_sda
= davinci_i2c_get_sda
,
374 .prepare_recovery
= davinci_i2c_scl_prepare_recovery
,
375 .unprepare_recovery
= davinci_i2c_scl_unprepare_recovery
,
379 * Waiting for bus not busy
381 static int i2c_davinci_wait_bus_not_busy(struct davinci_i2c_dev
*dev
)
383 unsigned long timeout
= jiffies
+ dev
->adapter
.timeout
;
386 if (!(davinci_i2c_read_reg(dev
, DAVINCI_I2C_STR_REG
) & DAVINCI_I2C_STR_BB
))
388 schedule_timeout_uninterruptible(1);
389 } while (time_before_eq(jiffies
, timeout
));
391 dev_warn(dev
->dev
, "timeout waiting for bus ready\n");
392 i2c_recover_bus(&dev
->adapter
);
395 * if bus is still "busy" here, it's most probably a HW problem like
398 if (davinci_i2c_read_reg(dev
, DAVINCI_I2C_STR_REG
) & DAVINCI_I2C_STR_BB
)
405 * Low level master read/write transaction. This function is called
406 * from i2c_davinci_xfer.
409 i2c_davinci_xfer_msg(struct i2c_adapter
*adap
, struct i2c_msg
*msg
, int stop
)
411 struct davinci_i2c_dev
*dev
= i2c_get_adapdata(adap
);
412 struct davinci_i2c_platform_data
*pdata
= dev
->pdata
;
415 unsigned long time_left
;
417 if (msg
->addr
== DAVINCI_I2C_OWN_ADDRESS
) {
418 dev_warn(dev
->dev
, "transfer to own address aborted\n");
419 return -EADDRNOTAVAIL
;
422 /* Introduce a delay, required for some boards (e.g Davinci EVM) */
423 if (pdata
->bus_delay
)
424 udelay(pdata
->bus_delay
);
426 /* set the slave address */
427 davinci_i2c_write_reg(dev
, DAVINCI_I2C_SAR_REG
, msg
->addr
);
430 dev
->buf_len
= msg
->len
;
433 davinci_i2c_write_reg(dev
, DAVINCI_I2C_CNT_REG
, dev
->buf_len
);
435 reinit_completion(&dev
->cmd_complete
);
438 /* Take I2C out of reset and configure it as master */
439 flag
= DAVINCI_I2C_MDR_IRS
| DAVINCI_I2C_MDR_MST
;
441 /* if the slave address is ten bit address, enable XA bit */
442 if (msg
->flags
& I2C_M_TEN
)
443 flag
|= DAVINCI_I2C_MDR_XA
;
444 if (!(msg
->flags
& I2C_M_RD
))
445 flag
|= DAVINCI_I2C_MDR_TRX
;
447 flag
|= DAVINCI_I2C_MDR_RM
;
449 /* Enable receive or transmit interrupts */
450 w
= davinci_i2c_read_reg(dev
, DAVINCI_I2C_IMR_REG
);
451 if (msg
->flags
& I2C_M_RD
)
452 w
|= DAVINCI_I2C_IMR_RRDY
;
454 w
|= DAVINCI_I2C_IMR_XRDY
;
455 davinci_i2c_write_reg(dev
, DAVINCI_I2C_IMR_REG
, w
);
460 * Write mode register first as needed for correct behaviour
461 * on OMAP-L138, but don't set STT yet to avoid a race with XRDY
462 * occurring before we have loaded DXR
464 davinci_i2c_write_reg(dev
, DAVINCI_I2C_MDR_REG
, flag
);
467 * First byte should be set here, not after interrupt,
468 * because transmit-data-ready interrupt can come before
469 * NACK-interrupt during sending of previous message and
470 * ICDXR may have wrong data
471 * It also saves us one interrupt, slightly faster
473 if ((!(msg
->flags
& I2C_M_RD
)) && dev
->buf_len
) {
474 davinci_i2c_write_reg(dev
, DAVINCI_I2C_DXR_REG
, *dev
->buf
++);
478 /* Set STT to begin transmit now DXR is loaded */
479 flag
|= DAVINCI_I2C_MDR_STT
;
480 if (stop
&& msg
->len
!= 0)
481 flag
|= DAVINCI_I2C_MDR_STP
;
482 davinci_i2c_write_reg(dev
, DAVINCI_I2C_MDR_REG
, flag
);
484 time_left
= wait_for_completion_timeout(&dev
->cmd_complete
,
485 dev
->adapter
.timeout
);
487 dev_err(dev
->dev
, "controller timed out\n");
488 i2c_recover_bus(adap
);
493 /* This should be 0 if all bytes were transferred
494 * or dev->cmd_err denotes an error.
496 dev_err(dev
->dev
, "abnormal termination buf_len=%i\n",
505 if (likely(!dev
->cmd_err
))
508 /* We have an error */
509 if (dev
->cmd_err
& DAVINCI_I2C_STR_AL
) {
510 i2c_davinci_init(dev
);
514 if (dev
->cmd_err
& DAVINCI_I2C_STR_NACK
) {
515 if (msg
->flags
& I2C_M_IGNORE_NAK
)
517 w
= davinci_i2c_read_reg(dev
, DAVINCI_I2C_MDR_REG
);
518 w
|= DAVINCI_I2C_MDR_STP
;
519 davinci_i2c_write_reg(dev
, DAVINCI_I2C_MDR_REG
, w
);
526 * Prepare controller for a transaction and call i2c_davinci_xfer_msg
529 i2c_davinci_xfer(struct i2c_adapter
*adap
, struct i2c_msg msgs
[], int num
)
531 struct davinci_i2c_dev
*dev
= i2c_get_adapdata(adap
);
535 dev_dbg(dev
->dev
, "%s: msgs: %d\n", __func__
, num
);
537 ret
= i2c_davinci_wait_bus_not_busy(dev
);
539 dev_warn(dev
->dev
, "timeout waiting for bus ready\n");
543 for (i
= 0; i
< num
; i
++) {
544 ret
= i2c_davinci_xfer_msg(adap
, &msgs
[i
], (i
== (num
- 1)));
545 dev_dbg(dev
->dev
, "%s [%d/%d] ret: %d\n", __func__
, i
+ 1, num
,
551 #ifdef CONFIG_CPU_FREQ
552 complete(&dev
->xfr_complete
);
558 static u32
i2c_davinci_func(struct i2c_adapter
*adap
)
560 return I2C_FUNC_I2C
| I2C_FUNC_SMBUS_EMUL
;
563 static void terminate_read(struct davinci_i2c_dev
*dev
)
565 u16 w
= davinci_i2c_read_reg(dev
, DAVINCI_I2C_MDR_REG
);
566 w
|= DAVINCI_I2C_MDR_NACK
;
567 davinci_i2c_write_reg(dev
, DAVINCI_I2C_MDR_REG
, w
);
569 /* Throw away data */
570 davinci_i2c_read_reg(dev
, DAVINCI_I2C_DRR_REG
);
572 dev_err(dev
->dev
, "RDR IRQ while no data requested\n");
574 static void terminate_write(struct davinci_i2c_dev
*dev
)
576 u16 w
= davinci_i2c_read_reg(dev
, DAVINCI_I2C_MDR_REG
);
577 w
|= DAVINCI_I2C_MDR_RM
| DAVINCI_I2C_MDR_STP
;
578 davinci_i2c_write_reg(dev
, DAVINCI_I2C_MDR_REG
, w
);
581 dev_dbg(dev
->dev
, "TDR IRQ while no data to send\n");
585 * Interrupt service routine. This gets called whenever an I2C interrupt
588 static irqreturn_t
i2c_davinci_isr(int this_irq
, void *dev_id
)
590 struct davinci_i2c_dev
*dev
= dev_id
;
595 while ((stat
= davinci_i2c_read_reg(dev
, DAVINCI_I2C_IVR_REG
))) {
596 dev_dbg(dev
->dev
, "%s: stat=0x%x\n", __func__
, stat
);
597 if (count
++ == 100) {
598 dev_warn(dev
->dev
, "Too much work in one IRQ\n");
603 case DAVINCI_I2C_IVR_AL
:
604 /* Arbitration lost, must retry */
605 dev
->cmd_err
|= DAVINCI_I2C_STR_AL
;
607 complete(&dev
->cmd_complete
);
610 case DAVINCI_I2C_IVR_NACK
:
611 dev
->cmd_err
|= DAVINCI_I2C_STR_NACK
;
613 complete(&dev
->cmd_complete
);
616 case DAVINCI_I2C_IVR_ARDY
:
617 davinci_i2c_write_reg(dev
,
618 DAVINCI_I2C_STR_REG
, DAVINCI_I2C_STR_ARDY
);
619 if (((dev
->buf_len
== 0) && (dev
->stop
!= 0)) ||
620 (dev
->cmd_err
& DAVINCI_I2C_STR_NACK
)) {
621 w
= davinci_i2c_read_reg(dev
,
622 DAVINCI_I2C_MDR_REG
);
623 w
|= DAVINCI_I2C_MDR_STP
;
624 davinci_i2c_write_reg(dev
,
625 DAVINCI_I2C_MDR_REG
, w
);
627 complete(&dev
->cmd_complete
);
630 case DAVINCI_I2C_IVR_RDR
:
633 davinci_i2c_read_reg(dev
,
634 DAVINCI_I2C_DRR_REG
);
639 davinci_i2c_write_reg(dev
,
641 DAVINCI_I2C_IMR_RRDY
);
643 /* signal can terminate transfer */
648 case DAVINCI_I2C_IVR_XRDY
:
650 davinci_i2c_write_reg(dev
, DAVINCI_I2C_DXR_REG
,
656 w
= davinci_i2c_read_reg(dev
,
657 DAVINCI_I2C_IMR_REG
);
658 w
&= ~DAVINCI_I2C_IMR_XRDY
;
659 davinci_i2c_write_reg(dev
,
663 /* signal can terminate transfer */
664 terminate_write(dev
);
668 case DAVINCI_I2C_IVR_SCD
:
669 davinci_i2c_write_reg(dev
,
670 DAVINCI_I2C_STR_REG
, DAVINCI_I2C_STR_SCD
);
671 complete(&dev
->cmd_complete
);
674 case DAVINCI_I2C_IVR_AAS
:
675 dev_dbg(dev
->dev
, "Address as slave interrupt\n");
679 dev_warn(dev
->dev
, "Unrecognized irq stat %d\n", stat
);
684 return count
? IRQ_HANDLED
: IRQ_NONE
;
687 #ifdef CONFIG_CPU_FREQ
688 static int i2c_davinci_cpufreq_transition(struct notifier_block
*nb
,
689 unsigned long val
, void *data
)
691 struct davinci_i2c_dev
*dev
;
693 dev
= container_of(nb
, struct davinci_i2c_dev
, freq_transition
);
694 if (val
== CPUFREQ_PRECHANGE
) {
695 wait_for_completion(&dev
->xfr_complete
);
696 davinci_i2c_reset_ctrl(dev
, 0);
697 } else if (val
== CPUFREQ_POSTCHANGE
) {
698 i2c_davinci_calc_clk_dividers(dev
);
699 davinci_i2c_reset_ctrl(dev
, 1);
705 static inline int i2c_davinci_cpufreq_register(struct davinci_i2c_dev
*dev
)
707 dev
->freq_transition
.notifier_call
= i2c_davinci_cpufreq_transition
;
709 return cpufreq_register_notifier(&dev
->freq_transition
,
710 CPUFREQ_TRANSITION_NOTIFIER
);
713 static inline void i2c_davinci_cpufreq_deregister(struct davinci_i2c_dev
*dev
)
715 cpufreq_unregister_notifier(&dev
->freq_transition
,
716 CPUFREQ_TRANSITION_NOTIFIER
);
719 static inline int i2c_davinci_cpufreq_register(struct davinci_i2c_dev
*dev
)
724 static inline void i2c_davinci_cpufreq_deregister(struct davinci_i2c_dev
*dev
)
729 static struct i2c_algorithm i2c_davinci_algo
= {
730 .master_xfer
= i2c_davinci_xfer
,
731 .functionality
= i2c_davinci_func
,
734 static const struct of_device_id davinci_i2c_of_match
[] = {
735 {.compatible
= "ti,davinci-i2c", },
736 {.compatible
= "ti,keystone-i2c", },
739 MODULE_DEVICE_TABLE(of
, davinci_i2c_of_match
);
741 static int davinci_i2c_probe(struct platform_device
*pdev
)
743 struct davinci_i2c_dev
*dev
;
744 struct i2c_adapter
*adap
;
745 struct resource
*mem
;
748 irq
= platform_get_irq(pdev
, 0);
752 if (irq
!= -EPROBE_DEFER
)
754 "can't get irq resource ret=%d\n", irq
);
758 dev
= devm_kzalloc(&pdev
->dev
, sizeof(struct davinci_i2c_dev
),
761 dev_err(&pdev
->dev
, "Memory allocation failed\n");
765 init_completion(&dev
->cmd_complete
);
766 #ifdef CONFIG_CPU_FREQ
767 init_completion(&dev
->xfr_complete
);
769 dev
->dev
= &pdev
->dev
;
771 dev
->pdata
= dev_get_platdata(&pdev
->dev
);
772 platform_set_drvdata(pdev
, dev
);
774 if (!dev
->pdata
&& pdev
->dev
.of_node
) {
777 dev
->pdata
= devm_kzalloc(&pdev
->dev
,
778 sizeof(struct davinci_i2c_platform_data
), GFP_KERNEL
);
782 memcpy(dev
->pdata
, &davinci_i2c_platform_data_default
,
783 sizeof(struct davinci_i2c_platform_data
));
784 if (!of_property_read_u32(pdev
->dev
.of_node
, "clock-frequency",
786 dev
->pdata
->bus_freq
= prop
/ 1000;
788 dev
->pdata
->has_pfunc
=
789 of_property_read_bool(pdev
->dev
.of_node
,
791 } else if (!dev
->pdata
) {
792 dev
->pdata
= &davinci_i2c_platform_data_default
;
795 dev
->clk
= devm_clk_get(&pdev
->dev
, NULL
);
796 if (IS_ERR(dev
->clk
))
798 clk_prepare_enable(dev
->clk
);
800 mem
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
801 dev
->base
= devm_ioremap_resource(&pdev
->dev
, mem
);
802 if (IS_ERR(dev
->base
)) {
803 r
= PTR_ERR(dev
->base
);
804 goto err_unuse_clocks
;
807 i2c_davinci_init(dev
);
809 r
= devm_request_irq(&pdev
->dev
, dev
->irq
, i2c_davinci_isr
, 0,
812 dev_err(&pdev
->dev
, "failure requesting irq %i\n", dev
->irq
);
813 goto err_unuse_clocks
;
816 r
= i2c_davinci_cpufreq_register(dev
);
818 dev_err(&pdev
->dev
, "failed to register cpufreq\n");
819 goto err_unuse_clocks
;
822 adap
= &dev
->adapter
;
823 i2c_set_adapdata(adap
, dev
);
824 adap
->owner
= THIS_MODULE
;
825 adap
->class = I2C_CLASS_DEPRECATED
;
826 strlcpy(adap
->name
, "DaVinci I2C adapter", sizeof(adap
->name
));
827 adap
->algo
= &i2c_davinci_algo
;
828 adap
->dev
.parent
= &pdev
->dev
;
829 adap
->timeout
= DAVINCI_I2C_TIMEOUT
;
830 adap
->dev
.of_node
= pdev
->dev
.of_node
;
832 if (dev
->pdata
->has_pfunc
)
833 adap
->bus_recovery_info
= &davinci_i2c_scl_recovery_info
;
834 else if (dev
->pdata
->scl_pin
) {
835 adap
->bus_recovery_info
= &davinci_i2c_gpio_recovery_info
;
836 adap
->bus_recovery_info
->scl_gpio
= dev
->pdata
->scl_pin
;
837 adap
->bus_recovery_info
->sda_gpio
= dev
->pdata
->sda_pin
;
841 r
= i2c_add_numbered_adapter(adap
);
843 dev_err(&pdev
->dev
, "failure adding adapter\n");
844 goto err_unuse_clocks
;
850 clk_disable_unprepare(dev
->clk
);
855 static int davinci_i2c_remove(struct platform_device
*pdev
)
857 struct davinci_i2c_dev
*dev
= platform_get_drvdata(pdev
);
859 i2c_davinci_cpufreq_deregister(dev
);
861 i2c_del_adapter(&dev
->adapter
);
863 clk_disable_unprepare(dev
->clk
);
866 davinci_i2c_write_reg(dev
, DAVINCI_I2C_MDR_REG
, 0);
872 static int davinci_i2c_suspend(struct device
*dev
)
874 struct platform_device
*pdev
= to_platform_device(dev
);
875 struct davinci_i2c_dev
*i2c_dev
= platform_get_drvdata(pdev
);
877 /* put I2C into reset */
878 davinci_i2c_reset_ctrl(i2c_dev
, 0);
879 clk_disable_unprepare(i2c_dev
->clk
);
884 static int davinci_i2c_resume(struct device
*dev
)
886 struct platform_device
*pdev
= to_platform_device(dev
);
887 struct davinci_i2c_dev
*i2c_dev
= platform_get_drvdata(pdev
);
889 clk_prepare_enable(i2c_dev
->clk
);
890 /* take I2C out of reset */
891 davinci_i2c_reset_ctrl(i2c_dev
, 1);
896 static const struct dev_pm_ops davinci_i2c_pm
= {
897 .suspend
= davinci_i2c_suspend
,
898 .resume
= davinci_i2c_resume
,
901 #define davinci_i2c_pm_ops (&davinci_i2c_pm)
903 #define davinci_i2c_pm_ops NULL
906 /* work with hotplug and coldplug */
907 MODULE_ALIAS("platform:i2c_davinci");
909 static struct platform_driver davinci_i2c_driver
= {
910 .probe
= davinci_i2c_probe
,
911 .remove
= davinci_i2c_remove
,
913 .name
= "i2c_davinci",
914 .pm
= davinci_i2c_pm_ops
,
915 .of_match_table
= davinci_i2c_of_match
,
919 /* I2C may be needed to bring up other drivers */
920 static int __init
davinci_i2c_init_driver(void)
922 return platform_driver_register(&davinci_i2c_driver
);
924 subsys_initcall(davinci_i2c_init_driver
);
926 static void __exit
davinci_i2c_exit_driver(void)
928 platform_driver_unregister(&davinci_i2c_driver
);
930 module_exit(davinci_i2c_exit_driver
);
932 MODULE_AUTHOR("Texas Instruments India");
933 MODULE_DESCRIPTION("TI DaVinci I2C bus adapter");
934 MODULE_LICENSE("GPL");