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
206 * Both Davinci and current Keystone User Guides recommend a value
207 * between 7MHz and 12MHz. In reality 7MHz module clock doesn't
208 * always produce enough margin between SDA and SCL transitions.
209 * Measurements show that the higher the module clock is, the
210 * bigger is the margin, providing more reliable communication.
211 * So we better target for 12MHz.
213 psc
= (input_clock
/ 12000000) - 1;
214 if ((input_clock
/ (psc
+ 1)) > 12000000)
215 psc
++; /* better to run under spec than over */
216 d
= (psc
>= 2) ? 5 : 7 - psc
;
218 if (of_node
&& of_device_is_compatible(of_node
, "ti,keystone-i2c"))
221 clk
= ((input_clock
/ (psc
+ 1)) / (pdata
->bus_freq
* 1000));
222 /* Avoid driving the bus too fast because of rounding errors above */
223 if (input_clock
/ (psc
+ 1) / clk
> pdata
->bus_freq
* 1000)
226 * According to I2C-BUS Spec 2.1, in FAST-MODE LOW period should be at
227 * least 1.3uS, which is not the case with 50% duty cycle. Driving HIGH
228 * to LOW ratio as 1 to 2 is more safe.
230 if (pdata
->bus_freq
> 100)
231 clkl
= (clk
<< 1) / 3;
235 * It's not always possible to have 1 to 2 ratio when d=7, so fall back
236 * to minimal possible clkh in this case.
238 if (clk
>= clkl
+ d
) {
239 clkh
= clk
- clkl
- d
;
243 clkl
= clk
- (d
<< 1);
246 davinci_i2c_write_reg(dev
, DAVINCI_I2C_PSC_REG
, psc
);
247 davinci_i2c_write_reg(dev
, DAVINCI_I2C_CLKH_REG
, clkh
);
248 davinci_i2c_write_reg(dev
, DAVINCI_I2C_CLKL_REG
, clkl
);
250 dev_dbg(dev
->dev
, "input_clock = %d, CLK = %d\n", input_clock
, clk
);
254 * This function configures I2C and brings I2C out of reset.
255 * This function is called during I2C init function. This function
256 * also gets called if I2C encounters any errors.
258 static int i2c_davinci_init(struct davinci_i2c_dev
*dev
)
260 struct davinci_i2c_platform_data
*pdata
= dev
->pdata
;
262 /* put I2C into reset */
263 davinci_i2c_reset_ctrl(dev
, 0);
265 /* compute clock dividers */
266 i2c_davinci_calc_clk_dividers(dev
);
268 /* Respond at reserved "SMBus Host" slave address" (and zero);
269 * we seem to have no option to not respond...
271 davinci_i2c_write_reg(dev
, DAVINCI_I2C_OAR_REG
, DAVINCI_I2C_OWN_ADDRESS
);
273 dev_dbg(dev
->dev
, "PSC = %d\n",
274 davinci_i2c_read_reg(dev
, DAVINCI_I2C_PSC_REG
));
275 dev_dbg(dev
->dev
, "CLKL = %d\n",
276 davinci_i2c_read_reg(dev
, DAVINCI_I2C_CLKL_REG
));
277 dev_dbg(dev
->dev
, "CLKH = %d\n",
278 davinci_i2c_read_reg(dev
, DAVINCI_I2C_CLKH_REG
));
279 dev_dbg(dev
->dev
, "bus_freq = %dkHz, bus_delay = %d\n",
280 pdata
->bus_freq
, pdata
->bus_delay
);
283 /* Take the I2C module out of reset: */
284 davinci_i2c_reset_ctrl(dev
, 1);
286 /* Enable interrupts */
287 davinci_i2c_write_reg(dev
, DAVINCI_I2C_IMR_REG
, I2C_DAVINCI_INTR_ALL
);
293 * This routine does i2c bus recovery by using i2c_generic_gpio_recovery
294 * which is provided by I2C Bus recovery infrastructure.
296 static void davinci_i2c_prepare_recovery(struct i2c_adapter
*adap
)
298 struct davinci_i2c_dev
*dev
= i2c_get_adapdata(adap
);
300 /* Disable interrupts */
301 davinci_i2c_write_reg(dev
, DAVINCI_I2C_IMR_REG
, 0);
303 /* put I2C into reset */
304 davinci_i2c_reset_ctrl(dev
, 0);
307 static void davinci_i2c_unprepare_recovery(struct i2c_adapter
*adap
)
309 struct davinci_i2c_dev
*dev
= i2c_get_adapdata(adap
);
311 i2c_davinci_init(dev
);
314 static struct i2c_bus_recovery_info davinci_i2c_gpio_recovery_info
= {
315 .recover_bus
= i2c_generic_gpio_recovery
,
316 .prepare_recovery
= davinci_i2c_prepare_recovery
,
317 .unprepare_recovery
= davinci_i2c_unprepare_recovery
,
320 static void davinci_i2c_set_scl(struct i2c_adapter
*adap
, int val
)
322 struct davinci_i2c_dev
*dev
= i2c_get_adapdata(adap
);
325 davinci_i2c_write_reg(dev
, DAVINCI_I2C_DSET_REG
,
326 DAVINCI_I2C_DSET_PDSET0
);
328 davinci_i2c_write_reg(dev
, DAVINCI_I2C_DCLR_REG
,
329 DAVINCI_I2C_DCLR_PDCLR0
);
332 static int davinci_i2c_get_scl(struct i2c_adapter
*adap
)
334 struct davinci_i2c_dev
*dev
= i2c_get_adapdata(adap
);
337 /* read the state of SCL */
338 val
= davinci_i2c_read_reg(dev
, DAVINCI_I2C_DIN_REG
);
339 return val
& DAVINCI_I2C_DIN_PDIN0
;
342 static int davinci_i2c_get_sda(struct i2c_adapter
*adap
)
344 struct davinci_i2c_dev
*dev
= i2c_get_adapdata(adap
);
347 /* read the state of SDA */
348 val
= davinci_i2c_read_reg(dev
, DAVINCI_I2C_DIN_REG
);
349 return val
& DAVINCI_I2C_DIN_PDIN1
;
352 static void davinci_i2c_scl_prepare_recovery(struct i2c_adapter
*adap
)
354 struct davinci_i2c_dev
*dev
= i2c_get_adapdata(adap
);
356 davinci_i2c_prepare_recovery(adap
);
358 /* SCL output, SDA input */
359 davinci_i2c_write_reg(dev
, DAVINCI_I2C_DIR_REG
, DAVINCI_I2C_DIR_PDIR0
);
361 /* change to GPIO mode */
362 davinci_i2c_write_reg(dev
, DAVINCI_I2C_FUNC_REG
,
363 DAVINCI_I2C_FUNC_PFUNC0
);
366 static void davinci_i2c_scl_unprepare_recovery(struct i2c_adapter
*adap
)
368 struct davinci_i2c_dev
*dev
= i2c_get_adapdata(adap
);
370 /* change back to I2C mode */
371 davinci_i2c_write_reg(dev
, DAVINCI_I2C_FUNC_REG
, 0);
373 davinci_i2c_unprepare_recovery(adap
);
376 static struct i2c_bus_recovery_info davinci_i2c_scl_recovery_info
= {
377 .recover_bus
= i2c_generic_scl_recovery
,
378 .set_scl
= davinci_i2c_set_scl
,
379 .get_scl
= davinci_i2c_get_scl
,
380 .get_sda
= davinci_i2c_get_sda
,
381 .prepare_recovery
= davinci_i2c_scl_prepare_recovery
,
382 .unprepare_recovery
= davinci_i2c_scl_unprepare_recovery
,
386 * Waiting for bus not busy
388 static int i2c_davinci_wait_bus_not_busy(struct davinci_i2c_dev
*dev
)
390 unsigned long timeout
= jiffies
+ dev
->adapter
.timeout
;
393 if (!(davinci_i2c_read_reg(dev
, DAVINCI_I2C_STR_REG
) & DAVINCI_I2C_STR_BB
))
395 schedule_timeout_uninterruptible(1);
396 } while (time_before_eq(jiffies
, timeout
));
398 dev_warn(dev
->dev
, "timeout waiting for bus ready\n");
399 i2c_recover_bus(&dev
->adapter
);
402 * if bus is still "busy" here, it's most probably a HW problem like
405 if (davinci_i2c_read_reg(dev
, DAVINCI_I2C_STR_REG
) & DAVINCI_I2C_STR_BB
)
412 * Low level master read/write transaction. This function is called
413 * from i2c_davinci_xfer.
416 i2c_davinci_xfer_msg(struct i2c_adapter
*adap
, struct i2c_msg
*msg
, int stop
)
418 struct davinci_i2c_dev
*dev
= i2c_get_adapdata(adap
);
419 struct davinci_i2c_platform_data
*pdata
= dev
->pdata
;
422 unsigned long time_left
;
424 if (msg
->addr
== DAVINCI_I2C_OWN_ADDRESS
) {
425 dev_warn(dev
->dev
, "transfer to own address aborted\n");
426 return -EADDRNOTAVAIL
;
429 /* Introduce a delay, required for some boards (e.g Davinci EVM) */
430 if (pdata
->bus_delay
)
431 udelay(pdata
->bus_delay
);
433 /* set the slave address */
434 davinci_i2c_write_reg(dev
, DAVINCI_I2C_SAR_REG
, msg
->addr
);
437 dev
->buf_len
= msg
->len
;
440 davinci_i2c_write_reg(dev
, DAVINCI_I2C_CNT_REG
, dev
->buf_len
);
442 reinit_completion(&dev
->cmd_complete
);
445 /* Take I2C out of reset and configure it as master */
446 flag
= DAVINCI_I2C_MDR_IRS
| DAVINCI_I2C_MDR_MST
;
448 /* if the slave address is ten bit address, enable XA bit */
449 if (msg
->flags
& I2C_M_TEN
)
450 flag
|= DAVINCI_I2C_MDR_XA
;
451 if (!(msg
->flags
& I2C_M_RD
))
452 flag
|= DAVINCI_I2C_MDR_TRX
;
454 flag
|= DAVINCI_I2C_MDR_RM
;
456 /* Enable receive or transmit interrupts */
457 w
= davinci_i2c_read_reg(dev
, DAVINCI_I2C_IMR_REG
);
458 if (msg
->flags
& I2C_M_RD
)
459 w
|= DAVINCI_I2C_IMR_RRDY
;
461 w
|= DAVINCI_I2C_IMR_XRDY
;
462 davinci_i2c_write_reg(dev
, DAVINCI_I2C_IMR_REG
, w
);
467 * Write mode register first as needed for correct behaviour
468 * on OMAP-L138, but don't set STT yet to avoid a race with XRDY
469 * occurring before we have loaded DXR
471 davinci_i2c_write_reg(dev
, DAVINCI_I2C_MDR_REG
, flag
);
474 * First byte should be set here, not after interrupt,
475 * because transmit-data-ready interrupt can come before
476 * NACK-interrupt during sending of previous message and
477 * ICDXR may have wrong data
478 * It also saves us one interrupt, slightly faster
480 if ((!(msg
->flags
& I2C_M_RD
)) && dev
->buf_len
) {
481 davinci_i2c_write_reg(dev
, DAVINCI_I2C_DXR_REG
, *dev
->buf
++);
485 /* Set STT to begin transmit now DXR is loaded */
486 flag
|= DAVINCI_I2C_MDR_STT
;
487 if (stop
&& msg
->len
!= 0)
488 flag
|= DAVINCI_I2C_MDR_STP
;
489 davinci_i2c_write_reg(dev
, DAVINCI_I2C_MDR_REG
, flag
);
491 time_left
= wait_for_completion_timeout(&dev
->cmd_complete
,
492 dev
->adapter
.timeout
);
494 dev_err(dev
->dev
, "controller timed out\n");
495 i2c_recover_bus(adap
);
500 /* This should be 0 if all bytes were transferred
501 * or dev->cmd_err denotes an error.
503 dev_err(dev
->dev
, "abnormal termination buf_len=%i\n",
512 if (likely(!dev
->cmd_err
))
515 /* We have an error */
516 if (dev
->cmd_err
& DAVINCI_I2C_STR_AL
) {
517 i2c_davinci_init(dev
);
521 if (dev
->cmd_err
& DAVINCI_I2C_STR_NACK
) {
522 if (msg
->flags
& I2C_M_IGNORE_NAK
)
524 w
= davinci_i2c_read_reg(dev
, DAVINCI_I2C_MDR_REG
);
525 w
|= DAVINCI_I2C_MDR_STP
;
526 davinci_i2c_write_reg(dev
, DAVINCI_I2C_MDR_REG
, w
);
533 * Prepare controller for a transaction and call i2c_davinci_xfer_msg
536 i2c_davinci_xfer(struct i2c_adapter
*adap
, struct i2c_msg msgs
[], int num
)
538 struct davinci_i2c_dev
*dev
= i2c_get_adapdata(adap
);
542 dev_dbg(dev
->dev
, "%s: msgs: %d\n", __func__
, num
);
544 ret
= i2c_davinci_wait_bus_not_busy(dev
);
546 dev_warn(dev
->dev
, "timeout waiting for bus ready\n");
550 for (i
= 0; i
< num
; i
++) {
551 ret
= i2c_davinci_xfer_msg(adap
, &msgs
[i
], (i
== (num
- 1)));
552 dev_dbg(dev
->dev
, "%s [%d/%d] ret: %d\n", __func__
, i
+ 1, num
,
558 #ifdef CONFIG_CPU_FREQ
559 complete(&dev
->xfr_complete
);
565 static u32
i2c_davinci_func(struct i2c_adapter
*adap
)
567 return I2C_FUNC_I2C
| I2C_FUNC_SMBUS_EMUL
;
570 static void terminate_read(struct davinci_i2c_dev
*dev
)
572 u16 w
= davinci_i2c_read_reg(dev
, DAVINCI_I2C_MDR_REG
);
573 w
|= DAVINCI_I2C_MDR_NACK
;
574 davinci_i2c_write_reg(dev
, DAVINCI_I2C_MDR_REG
, w
);
576 /* Throw away data */
577 davinci_i2c_read_reg(dev
, DAVINCI_I2C_DRR_REG
);
579 dev_err(dev
->dev
, "RDR IRQ while no data requested\n");
581 static void terminate_write(struct davinci_i2c_dev
*dev
)
583 u16 w
= davinci_i2c_read_reg(dev
, DAVINCI_I2C_MDR_REG
);
584 w
|= DAVINCI_I2C_MDR_RM
| DAVINCI_I2C_MDR_STP
;
585 davinci_i2c_write_reg(dev
, DAVINCI_I2C_MDR_REG
, w
);
588 dev_dbg(dev
->dev
, "TDR IRQ while no data to send\n");
592 * Interrupt service routine. This gets called whenever an I2C interrupt
595 static irqreturn_t
i2c_davinci_isr(int this_irq
, void *dev_id
)
597 struct davinci_i2c_dev
*dev
= dev_id
;
602 while ((stat
= davinci_i2c_read_reg(dev
, DAVINCI_I2C_IVR_REG
))) {
603 dev_dbg(dev
->dev
, "%s: stat=0x%x\n", __func__
, stat
);
604 if (count
++ == 100) {
605 dev_warn(dev
->dev
, "Too much work in one IRQ\n");
610 case DAVINCI_I2C_IVR_AL
:
611 /* Arbitration lost, must retry */
612 dev
->cmd_err
|= DAVINCI_I2C_STR_AL
;
614 complete(&dev
->cmd_complete
);
617 case DAVINCI_I2C_IVR_NACK
:
618 dev
->cmd_err
|= DAVINCI_I2C_STR_NACK
;
620 complete(&dev
->cmd_complete
);
623 case DAVINCI_I2C_IVR_ARDY
:
624 davinci_i2c_write_reg(dev
,
625 DAVINCI_I2C_STR_REG
, DAVINCI_I2C_STR_ARDY
);
626 if (((dev
->buf_len
== 0) && (dev
->stop
!= 0)) ||
627 (dev
->cmd_err
& DAVINCI_I2C_STR_NACK
)) {
628 w
= davinci_i2c_read_reg(dev
,
629 DAVINCI_I2C_MDR_REG
);
630 w
|= DAVINCI_I2C_MDR_STP
;
631 davinci_i2c_write_reg(dev
,
632 DAVINCI_I2C_MDR_REG
, w
);
634 complete(&dev
->cmd_complete
);
637 case DAVINCI_I2C_IVR_RDR
:
640 davinci_i2c_read_reg(dev
,
641 DAVINCI_I2C_DRR_REG
);
646 davinci_i2c_write_reg(dev
,
648 DAVINCI_I2C_IMR_RRDY
);
650 /* signal can terminate transfer */
655 case DAVINCI_I2C_IVR_XRDY
:
657 davinci_i2c_write_reg(dev
, DAVINCI_I2C_DXR_REG
,
663 w
= davinci_i2c_read_reg(dev
,
664 DAVINCI_I2C_IMR_REG
);
665 w
&= ~DAVINCI_I2C_IMR_XRDY
;
666 davinci_i2c_write_reg(dev
,
670 /* signal can terminate transfer */
671 terminate_write(dev
);
675 case DAVINCI_I2C_IVR_SCD
:
676 davinci_i2c_write_reg(dev
,
677 DAVINCI_I2C_STR_REG
, DAVINCI_I2C_STR_SCD
);
678 complete(&dev
->cmd_complete
);
681 case DAVINCI_I2C_IVR_AAS
:
682 dev_dbg(dev
->dev
, "Address as slave interrupt\n");
686 dev_warn(dev
->dev
, "Unrecognized irq stat %d\n", stat
);
691 return count
? IRQ_HANDLED
: IRQ_NONE
;
694 #ifdef CONFIG_CPU_FREQ
695 static int i2c_davinci_cpufreq_transition(struct notifier_block
*nb
,
696 unsigned long val
, void *data
)
698 struct davinci_i2c_dev
*dev
;
700 dev
= container_of(nb
, struct davinci_i2c_dev
, freq_transition
);
701 if (val
== CPUFREQ_PRECHANGE
) {
702 wait_for_completion(&dev
->xfr_complete
);
703 davinci_i2c_reset_ctrl(dev
, 0);
704 } else if (val
== CPUFREQ_POSTCHANGE
) {
705 i2c_davinci_calc_clk_dividers(dev
);
706 davinci_i2c_reset_ctrl(dev
, 1);
712 static inline int i2c_davinci_cpufreq_register(struct davinci_i2c_dev
*dev
)
714 dev
->freq_transition
.notifier_call
= i2c_davinci_cpufreq_transition
;
716 return cpufreq_register_notifier(&dev
->freq_transition
,
717 CPUFREQ_TRANSITION_NOTIFIER
);
720 static inline void i2c_davinci_cpufreq_deregister(struct davinci_i2c_dev
*dev
)
722 cpufreq_unregister_notifier(&dev
->freq_transition
,
723 CPUFREQ_TRANSITION_NOTIFIER
);
726 static inline int i2c_davinci_cpufreq_register(struct davinci_i2c_dev
*dev
)
731 static inline void i2c_davinci_cpufreq_deregister(struct davinci_i2c_dev
*dev
)
736 static struct i2c_algorithm i2c_davinci_algo
= {
737 .master_xfer
= i2c_davinci_xfer
,
738 .functionality
= i2c_davinci_func
,
741 static const struct of_device_id davinci_i2c_of_match
[] = {
742 {.compatible
= "ti,davinci-i2c", },
743 {.compatible
= "ti,keystone-i2c", },
746 MODULE_DEVICE_TABLE(of
, davinci_i2c_of_match
);
748 static int davinci_i2c_probe(struct platform_device
*pdev
)
750 struct davinci_i2c_dev
*dev
;
751 struct i2c_adapter
*adap
;
752 struct resource
*mem
;
755 irq
= platform_get_irq(pdev
, 0);
759 if (irq
!= -EPROBE_DEFER
)
761 "can't get irq resource ret=%d\n", irq
);
765 dev
= devm_kzalloc(&pdev
->dev
, sizeof(struct davinci_i2c_dev
),
768 dev_err(&pdev
->dev
, "Memory allocation failed\n");
772 init_completion(&dev
->cmd_complete
);
773 #ifdef CONFIG_CPU_FREQ
774 init_completion(&dev
->xfr_complete
);
776 dev
->dev
= &pdev
->dev
;
778 dev
->pdata
= dev_get_platdata(&pdev
->dev
);
779 platform_set_drvdata(pdev
, dev
);
781 if (!dev
->pdata
&& pdev
->dev
.of_node
) {
784 dev
->pdata
= devm_kzalloc(&pdev
->dev
,
785 sizeof(struct davinci_i2c_platform_data
), GFP_KERNEL
);
789 memcpy(dev
->pdata
, &davinci_i2c_platform_data_default
,
790 sizeof(struct davinci_i2c_platform_data
));
791 if (!of_property_read_u32(pdev
->dev
.of_node
, "clock-frequency",
793 dev
->pdata
->bus_freq
= prop
/ 1000;
795 dev
->pdata
->has_pfunc
=
796 of_property_read_bool(pdev
->dev
.of_node
,
798 } else if (!dev
->pdata
) {
799 dev
->pdata
= &davinci_i2c_platform_data_default
;
802 dev
->clk
= devm_clk_get(&pdev
->dev
, NULL
);
803 if (IS_ERR(dev
->clk
))
805 clk_prepare_enable(dev
->clk
);
807 mem
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
808 dev
->base
= devm_ioremap_resource(&pdev
->dev
, mem
);
809 if (IS_ERR(dev
->base
)) {
810 r
= PTR_ERR(dev
->base
);
811 goto err_unuse_clocks
;
814 i2c_davinci_init(dev
);
816 r
= devm_request_irq(&pdev
->dev
, dev
->irq
, i2c_davinci_isr
, 0,
819 dev_err(&pdev
->dev
, "failure requesting irq %i\n", dev
->irq
);
820 goto err_unuse_clocks
;
823 r
= i2c_davinci_cpufreq_register(dev
);
825 dev_err(&pdev
->dev
, "failed to register cpufreq\n");
826 goto err_unuse_clocks
;
829 adap
= &dev
->adapter
;
830 i2c_set_adapdata(adap
, dev
);
831 adap
->owner
= THIS_MODULE
;
832 adap
->class = I2C_CLASS_DEPRECATED
;
833 strlcpy(adap
->name
, "DaVinci I2C adapter", sizeof(adap
->name
));
834 adap
->algo
= &i2c_davinci_algo
;
835 adap
->dev
.parent
= &pdev
->dev
;
836 adap
->timeout
= DAVINCI_I2C_TIMEOUT
;
837 adap
->dev
.of_node
= pdev
->dev
.of_node
;
839 if (dev
->pdata
->has_pfunc
)
840 adap
->bus_recovery_info
= &davinci_i2c_scl_recovery_info
;
841 else if (dev
->pdata
->scl_pin
) {
842 adap
->bus_recovery_info
= &davinci_i2c_gpio_recovery_info
;
843 adap
->bus_recovery_info
->scl_gpio
= dev
->pdata
->scl_pin
;
844 adap
->bus_recovery_info
->sda_gpio
= dev
->pdata
->sda_pin
;
848 r
= i2c_add_numbered_adapter(adap
);
850 dev_err(&pdev
->dev
, "failure adding adapter\n");
851 goto err_unuse_clocks
;
857 clk_disable_unprepare(dev
->clk
);
862 static int davinci_i2c_remove(struct platform_device
*pdev
)
864 struct davinci_i2c_dev
*dev
= platform_get_drvdata(pdev
);
866 i2c_davinci_cpufreq_deregister(dev
);
868 i2c_del_adapter(&dev
->adapter
);
870 clk_disable_unprepare(dev
->clk
);
873 davinci_i2c_write_reg(dev
, DAVINCI_I2C_MDR_REG
, 0);
879 static int davinci_i2c_suspend(struct device
*dev
)
881 struct platform_device
*pdev
= to_platform_device(dev
);
882 struct davinci_i2c_dev
*i2c_dev
= platform_get_drvdata(pdev
);
884 /* put I2C into reset */
885 davinci_i2c_reset_ctrl(i2c_dev
, 0);
886 clk_disable_unprepare(i2c_dev
->clk
);
891 static int davinci_i2c_resume(struct device
*dev
)
893 struct platform_device
*pdev
= to_platform_device(dev
);
894 struct davinci_i2c_dev
*i2c_dev
= platform_get_drvdata(pdev
);
896 clk_prepare_enable(i2c_dev
->clk
);
897 /* take I2C out of reset */
898 davinci_i2c_reset_ctrl(i2c_dev
, 1);
903 static const struct dev_pm_ops davinci_i2c_pm
= {
904 .suspend
= davinci_i2c_suspend
,
905 .resume
= davinci_i2c_resume
,
908 #define davinci_i2c_pm_ops (&davinci_i2c_pm)
910 #define davinci_i2c_pm_ops NULL
913 /* work with hotplug and coldplug */
914 MODULE_ALIAS("platform:i2c_davinci");
916 static struct platform_driver davinci_i2c_driver
= {
917 .probe
= davinci_i2c_probe
,
918 .remove
= davinci_i2c_remove
,
920 .name
= "i2c_davinci",
921 .pm
= davinci_i2c_pm_ops
,
922 .of_match_table
= davinci_i2c_of_match
,
926 /* I2C may be needed to bring up other drivers */
927 static int __init
davinci_i2c_init_driver(void)
929 return platform_driver_register(&davinci_i2c_driver
);
931 subsys_initcall(davinci_i2c_init_driver
);
933 static void __exit
davinci_i2c_exit_driver(void)
935 platform_driver_unregister(&davinci_i2c_driver
);
937 module_exit(davinci_i2c_exit_driver
);
939 MODULE_AUTHOR("Texas Instruments India");
940 MODULE_DESCRIPTION("TI DaVinci I2C bus adapter");
941 MODULE_LICENSE("GPL");