xref: /openbmc/linux/drivers/i2c/busses/i2c-davinci.c (revision 6774def6)
1 /*
2  * TI DAVINCI I2C adapter driver.
3  *
4  * Copyright (C) 2006 Texas Instruments.
5  * Copyright (C) 2007 MontaVista Software Inc.
6  *
7  * Updated by Vinod & Sudhakar Feb 2005
8  *
9  * ----------------------------------------------------------------------------
10  *
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.
15  *
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  * ----------------------------------------------------------------------------
21  *
22  */
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>
33 #include <linux/io.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>
39 
40 /* ----- global defines ----------------------------------------------- */
41 
42 #define DAVINCI_I2C_TIMEOUT	(1*HZ)
43 #define DAVINCI_I2C_MAX_TRIES	2
44 #define I2C_DAVINCI_INTR_ALL    (DAVINCI_I2C_IMR_AAS | \
45 				 DAVINCI_I2C_IMR_SCD | \
46 				 DAVINCI_I2C_IMR_ARDY | \
47 				 DAVINCI_I2C_IMR_NACK | \
48 				 DAVINCI_I2C_IMR_AL)
49 
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 
64 #define DAVINCI_I2C_IVR_AAS	0x07
65 #define DAVINCI_I2C_IVR_SCD	0x06
66 #define DAVINCI_I2C_IVR_XRDY	0x05
67 #define DAVINCI_I2C_IVR_RDR	0x04
68 #define DAVINCI_I2C_IVR_ARDY	0x03
69 #define DAVINCI_I2C_IVR_NACK	0x02
70 #define DAVINCI_I2C_IVR_AL	0x01
71 
72 #define DAVINCI_I2C_STR_BB	BIT(12)
73 #define DAVINCI_I2C_STR_RSFULL	BIT(11)
74 #define DAVINCI_I2C_STR_SCD	BIT(5)
75 #define DAVINCI_I2C_STR_ARDY	BIT(2)
76 #define DAVINCI_I2C_STR_NACK	BIT(1)
77 #define DAVINCI_I2C_STR_AL	BIT(0)
78 
79 #define DAVINCI_I2C_MDR_NACK	BIT(15)
80 #define DAVINCI_I2C_MDR_STT	BIT(13)
81 #define DAVINCI_I2C_MDR_STP	BIT(11)
82 #define DAVINCI_I2C_MDR_MST	BIT(10)
83 #define DAVINCI_I2C_MDR_TRX	BIT(9)
84 #define DAVINCI_I2C_MDR_XA	BIT(8)
85 #define DAVINCI_I2C_MDR_RM	BIT(7)
86 #define DAVINCI_I2C_MDR_IRS	BIT(5)
87 
88 #define DAVINCI_I2C_IMR_AAS	BIT(6)
89 #define DAVINCI_I2C_IMR_SCD	BIT(5)
90 #define DAVINCI_I2C_IMR_XRDY	BIT(4)
91 #define DAVINCI_I2C_IMR_RRDY	BIT(3)
92 #define DAVINCI_I2C_IMR_ARDY	BIT(2)
93 #define DAVINCI_I2C_IMR_NACK	BIT(1)
94 #define DAVINCI_I2C_IMR_AL	BIT(0)
95 
96 struct davinci_i2c_dev {
97 	struct device           *dev;
98 	void __iomem		*base;
99 	struct completion	cmd_complete;
100 	struct clk              *clk;
101 	int			cmd_err;
102 	u8			*buf;
103 	size_t			buf_len;
104 	int			irq;
105 	int			stop;
106 	u8			terminate;
107 	struct i2c_adapter	adapter;
108 #ifdef CONFIG_CPU_FREQ
109 	struct completion	xfr_complete;
110 	struct notifier_block	freq_transition;
111 #endif
112 	struct davinci_i2c_platform_data *pdata;
113 };
114 
115 /* default platform data to use if not supplied in the platform_device */
116 static struct davinci_i2c_platform_data davinci_i2c_platform_data_default = {
117 	.bus_freq	= 100,
118 	.bus_delay	= 0,
119 };
120 
121 static inline void davinci_i2c_write_reg(struct davinci_i2c_dev *i2c_dev,
122 					 int reg, u16 val)
123 {
124 	writew_relaxed(val, i2c_dev->base + reg);
125 }
126 
127 static inline u16 davinci_i2c_read_reg(struct davinci_i2c_dev *i2c_dev, int reg)
128 {
129 	return readw_relaxed(i2c_dev->base + reg);
130 }
131 
132 /* Generate a pulse on the i2c clock pin. */
133 static void davinci_i2c_clock_pulse(unsigned int scl_pin)
134 {
135 	u16 i;
136 
137 	if (scl_pin) {
138 		/* Send high and low on the SCL line */
139 		for (i = 0; i < 9; i++) {
140 			gpio_set_value(scl_pin, 0);
141 			udelay(20);
142 			gpio_set_value(scl_pin, 1);
143 			udelay(20);
144 		}
145 	}
146 }
147 
148 /* This routine does i2c bus recovery as specified in the
149  * i2c protocol Rev. 03 section 3.16 titled "Bus clear"
150  */
151 static void davinci_i2c_recover_bus(struct davinci_i2c_dev *dev)
152 {
153 	u32 flag = 0;
154 	struct davinci_i2c_platform_data *pdata = dev->pdata;
155 
156 	dev_err(dev->dev, "initiating i2c bus recovery\n");
157 	/* Send NACK to the slave */
158 	flag = davinci_i2c_read_reg(dev, DAVINCI_I2C_MDR_REG);
159 	flag |=  DAVINCI_I2C_MDR_NACK;
160 	/* write the data into mode register */
161 	davinci_i2c_write_reg(dev, DAVINCI_I2C_MDR_REG, flag);
162 	davinci_i2c_clock_pulse(pdata->scl_pin);
163 	/* Send STOP */
164 	flag = davinci_i2c_read_reg(dev, DAVINCI_I2C_MDR_REG);
165 	flag |= DAVINCI_I2C_MDR_STP;
166 	davinci_i2c_write_reg(dev, DAVINCI_I2C_MDR_REG, flag);
167 }
168 
169 static inline void davinci_i2c_reset_ctrl(struct davinci_i2c_dev *i2c_dev,
170 								int val)
171 {
172 	u16 w;
173 
174 	w = davinci_i2c_read_reg(i2c_dev, DAVINCI_I2C_MDR_REG);
175 	if (!val)	/* put I2C into reset */
176 		w &= ~DAVINCI_I2C_MDR_IRS;
177 	else		/* take I2C out of reset */
178 		w |= DAVINCI_I2C_MDR_IRS;
179 
180 	davinci_i2c_write_reg(i2c_dev, DAVINCI_I2C_MDR_REG, w);
181 }
182 
183 static void i2c_davinci_calc_clk_dividers(struct davinci_i2c_dev *dev)
184 {
185 	struct davinci_i2c_platform_data *pdata = dev->pdata;
186 	u16 psc;
187 	u32 clk;
188 	u32 d;
189 	u32 clkh;
190 	u32 clkl;
191 	u32 input_clock = clk_get_rate(dev->clk);
192 
193 	/* NOTE: I2C Clock divider programming info
194 	 * As per I2C specs the following formulas provide prescaler
195 	 * and low/high divider values
196 	 * input clk --> PSC Div -----------> ICCL/H Div --> output clock
197 	 *                       module clk
198 	 *
199 	 * output clk = module clk / (PSC + 1) [ (ICCL + d) + (ICCH + d) ]
200 	 *
201 	 * Thus,
202 	 * (ICCL + ICCH) = clk = (input clk / ((psc +1) * output clk)) - 2d;
203 	 *
204 	 * where if PSC == 0, d = 7,
205 	 *       if PSC == 1, d = 6
206 	 *       if PSC > 1 , d = 5
207 	 */
208 
209 	/* get minimum of 7 MHz clock, but max of 12 MHz */
210 	psc = (input_clock / 7000000) - 1;
211 	if ((input_clock / (psc + 1)) > 12000000)
212 		psc++;	/* better to run under spec than over */
213 	d = (psc >= 2) ? 5 : 7 - psc;
214 
215 	clk = ((input_clock / (psc + 1)) / (pdata->bus_freq * 1000)) - (d << 1);
216 	clkh = clk >> 1;
217 	clkl = clk - clkh;
218 
219 	davinci_i2c_write_reg(dev, DAVINCI_I2C_PSC_REG, psc);
220 	davinci_i2c_write_reg(dev, DAVINCI_I2C_CLKH_REG, clkh);
221 	davinci_i2c_write_reg(dev, DAVINCI_I2C_CLKL_REG, clkl);
222 
223 	dev_dbg(dev->dev, "input_clock = %d, CLK = %d\n", input_clock, clk);
224 }
225 
226 /*
227  * This function configures I2C and brings I2C out of reset.
228  * This function is called during I2C init function. This function
229  * also gets called if I2C encounters any errors.
230  */
231 static int i2c_davinci_init(struct davinci_i2c_dev *dev)
232 {
233 	struct davinci_i2c_platform_data *pdata = dev->pdata;
234 
235 	/* put I2C into reset */
236 	davinci_i2c_reset_ctrl(dev, 0);
237 
238 	/* compute clock dividers */
239 	i2c_davinci_calc_clk_dividers(dev);
240 
241 	/* Respond at reserved "SMBus Host" slave address" (and zero);
242 	 * we seem to have no option to not respond...
243 	 */
244 	davinci_i2c_write_reg(dev, DAVINCI_I2C_OAR_REG, 0x08);
245 
246 	dev_dbg(dev->dev, "PSC  = %d\n",
247 		davinci_i2c_read_reg(dev, DAVINCI_I2C_PSC_REG));
248 	dev_dbg(dev->dev, "CLKL = %d\n",
249 		davinci_i2c_read_reg(dev, DAVINCI_I2C_CLKL_REG));
250 	dev_dbg(dev->dev, "CLKH = %d\n",
251 		davinci_i2c_read_reg(dev, DAVINCI_I2C_CLKH_REG));
252 	dev_dbg(dev->dev, "bus_freq = %dkHz, bus_delay = %d\n",
253 		pdata->bus_freq, pdata->bus_delay);
254 
255 
256 	/* Take the I2C module out of reset: */
257 	davinci_i2c_reset_ctrl(dev, 1);
258 
259 	/* Enable interrupts */
260 	davinci_i2c_write_reg(dev, DAVINCI_I2C_IMR_REG, I2C_DAVINCI_INTR_ALL);
261 
262 	return 0;
263 }
264 
265 /*
266  * Waiting for bus not busy
267  */
268 static int i2c_davinci_wait_bus_not_busy(struct davinci_i2c_dev *dev,
269 					 char allow_sleep)
270 {
271 	unsigned long timeout;
272 	static u16 to_cnt;
273 
274 	timeout = jiffies + dev->adapter.timeout;
275 	while (davinci_i2c_read_reg(dev, DAVINCI_I2C_STR_REG)
276 	       & DAVINCI_I2C_STR_BB) {
277 		if (to_cnt <= DAVINCI_I2C_MAX_TRIES) {
278 			if (time_after(jiffies, timeout)) {
279 				dev_warn(dev->dev,
280 				"timeout waiting for bus ready\n");
281 				to_cnt++;
282 				return -ETIMEDOUT;
283 			} else {
284 				to_cnt = 0;
285 				davinci_i2c_recover_bus(dev);
286 				i2c_davinci_init(dev);
287 			}
288 		}
289 		if (allow_sleep)
290 			schedule_timeout(1);
291 	}
292 
293 	return 0;
294 }
295 
296 /*
297  * Low level master read/write transaction. This function is called
298  * from i2c_davinci_xfer.
299  */
300 static int
301 i2c_davinci_xfer_msg(struct i2c_adapter *adap, struct i2c_msg *msg, int stop)
302 {
303 	struct davinci_i2c_dev *dev = i2c_get_adapdata(adap);
304 	struct davinci_i2c_platform_data *pdata = dev->pdata;
305 	u32 flag;
306 	u16 w;
307 	int r;
308 
309 	/* Introduce a delay, required for some boards (e.g Davinci EVM) */
310 	if (pdata->bus_delay)
311 		udelay(pdata->bus_delay);
312 
313 	/* set the slave address */
314 	davinci_i2c_write_reg(dev, DAVINCI_I2C_SAR_REG, msg->addr);
315 
316 	dev->buf = msg->buf;
317 	dev->buf_len = msg->len;
318 	dev->stop = stop;
319 
320 	davinci_i2c_write_reg(dev, DAVINCI_I2C_CNT_REG, dev->buf_len);
321 
322 	reinit_completion(&dev->cmd_complete);
323 	dev->cmd_err = 0;
324 
325 	/* Take I2C out of reset and configure it as master */
326 	flag = DAVINCI_I2C_MDR_IRS | DAVINCI_I2C_MDR_MST;
327 
328 	/* if the slave address is ten bit address, enable XA bit */
329 	if (msg->flags & I2C_M_TEN)
330 		flag |= DAVINCI_I2C_MDR_XA;
331 	if (!(msg->flags & I2C_M_RD))
332 		flag |= DAVINCI_I2C_MDR_TRX;
333 	if (msg->len == 0)
334 		flag |= DAVINCI_I2C_MDR_RM;
335 
336 	/* Enable receive or transmit interrupts */
337 	w = davinci_i2c_read_reg(dev, DAVINCI_I2C_IMR_REG);
338 	if (msg->flags & I2C_M_RD)
339 		w |= DAVINCI_I2C_IMR_RRDY;
340 	else
341 		w |= DAVINCI_I2C_IMR_XRDY;
342 	davinci_i2c_write_reg(dev, DAVINCI_I2C_IMR_REG, w);
343 
344 	dev->terminate = 0;
345 
346 	/*
347 	 * Write mode register first as needed for correct behaviour
348 	 * on OMAP-L138, but don't set STT yet to avoid a race with XRDY
349 	 * occurring before we have loaded DXR
350 	 */
351 	davinci_i2c_write_reg(dev, DAVINCI_I2C_MDR_REG, flag);
352 
353 	/*
354 	 * First byte should be set here, not after interrupt,
355 	 * because transmit-data-ready interrupt can come before
356 	 * NACK-interrupt during sending of previous message and
357 	 * ICDXR may have wrong data
358 	 * It also saves us one interrupt, slightly faster
359 	 */
360 	if ((!(msg->flags & I2C_M_RD)) && dev->buf_len) {
361 		davinci_i2c_write_reg(dev, DAVINCI_I2C_DXR_REG, *dev->buf++);
362 		dev->buf_len--;
363 	}
364 
365 	/* Set STT to begin transmit now DXR is loaded */
366 	flag |= DAVINCI_I2C_MDR_STT;
367 	if (stop && msg->len != 0)
368 		flag |= DAVINCI_I2C_MDR_STP;
369 	davinci_i2c_write_reg(dev, DAVINCI_I2C_MDR_REG, flag);
370 
371 	r = wait_for_completion_interruptible_timeout(&dev->cmd_complete,
372 						      dev->adapter.timeout);
373 	if (r == 0) {
374 		dev_err(dev->dev, "controller timed out\n");
375 		davinci_i2c_recover_bus(dev);
376 		i2c_davinci_init(dev);
377 		dev->buf_len = 0;
378 		return -ETIMEDOUT;
379 	}
380 	if (dev->buf_len) {
381 		/* This should be 0 if all bytes were transferred
382 		 * or dev->cmd_err denotes an error.
383 		 * A signal may have aborted the transfer.
384 		 */
385 		if (r >= 0) {
386 			dev_err(dev->dev, "abnormal termination buf_len=%i\n",
387 				dev->buf_len);
388 			r = -EREMOTEIO;
389 		}
390 		dev->terminate = 1;
391 		wmb();
392 		dev->buf_len = 0;
393 	}
394 	if (r < 0)
395 		return r;
396 
397 	/* no error */
398 	if (likely(!dev->cmd_err))
399 		return msg->len;
400 
401 	/* We have an error */
402 	if (dev->cmd_err & DAVINCI_I2C_STR_AL) {
403 		i2c_davinci_init(dev);
404 		return -EIO;
405 	}
406 
407 	if (dev->cmd_err & DAVINCI_I2C_STR_NACK) {
408 		if (msg->flags & I2C_M_IGNORE_NAK)
409 			return msg->len;
410 		if (stop) {
411 			w = davinci_i2c_read_reg(dev, DAVINCI_I2C_MDR_REG);
412 			w |= DAVINCI_I2C_MDR_STP;
413 			davinci_i2c_write_reg(dev, DAVINCI_I2C_MDR_REG, w);
414 		}
415 		return -EREMOTEIO;
416 	}
417 	return -EIO;
418 }
419 
420 /*
421  * Prepare controller for a transaction and call i2c_davinci_xfer_msg
422  */
423 static int
424 i2c_davinci_xfer(struct i2c_adapter *adap, struct i2c_msg msgs[], int num)
425 {
426 	struct davinci_i2c_dev *dev = i2c_get_adapdata(adap);
427 	int i;
428 	int ret;
429 
430 	dev_dbg(dev->dev, "%s: msgs: %d\n", __func__, num);
431 
432 	ret = i2c_davinci_wait_bus_not_busy(dev, 1);
433 	if (ret < 0) {
434 		dev_warn(dev->dev, "timeout waiting for bus ready\n");
435 		return ret;
436 	}
437 
438 	for (i = 0; i < num; i++) {
439 		ret = i2c_davinci_xfer_msg(adap, &msgs[i], (i == (num - 1)));
440 		dev_dbg(dev->dev, "%s [%d/%d] ret: %d\n", __func__, i + 1, num,
441 			ret);
442 		if (ret < 0)
443 			return ret;
444 	}
445 
446 #ifdef CONFIG_CPU_FREQ
447 	complete(&dev->xfr_complete);
448 #endif
449 
450 	return num;
451 }
452 
453 static u32 i2c_davinci_func(struct i2c_adapter *adap)
454 {
455 	return I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL;
456 }
457 
458 static void terminate_read(struct davinci_i2c_dev *dev)
459 {
460 	u16 w = davinci_i2c_read_reg(dev, DAVINCI_I2C_MDR_REG);
461 	w |= DAVINCI_I2C_MDR_NACK;
462 	davinci_i2c_write_reg(dev, DAVINCI_I2C_MDR_REG, w);
463 
464 	/* Throw away data */
465 	davinci_i2c_read_reg(dev, DAVINCI_I2C_DRR_REG);
466 	if (!dev->terminate)
467 		dev_err(dev->dev, "RDR IRQ while no data requested\n");
468 }
469 static void terminate_write(struct davinci_i2c_dev *dev)
470 {
471 	u16 w = davinci_i2c_read_reg(dev, DAVINCI_I2C_MDR_REG);
472 	w |= DAVINCI_I2C_MDR_RM | DAVINCI_I2C_MDR_STP;
473 	davinci_i2c_write_reg(dev, DAVINCI_I2C_MDR_REG, w);
474 
475 	if (!dev->terminate)
476 		dev_dbg(dev->dev, "TDR IRQ while no data to send\n");
477 }
478 
479 /*
480  * Interrupt service routine. This gets called whenever an I2C interrupt
481  * occurs.
482  */
483 static irqreturn_t i2c_davinci_isr(int this_irq, void *dev_id)
484 {
485 	struct davinci_i2c_dev *dev = dev_id;
486 	u32 stat;
487 	int count = 0;
488 	u16 w;
489 
490 	while ((stat = davinci_i2c_read_reg(dev, DAVINCI_I2C_IVR_REG))) {
491 		dev_dbg(dev->dev, "%s: stat=0x%x\n", __func__, stat);
492 		if (count++ == 100) {
493 			dev_warn(dev->dev, "Too much work in one IRQ\n");
494 			break;
495 		}
496 
497 		switch (stat) {
498 		case DAVINCI_I2C_IVR_AL:
499 			/* Arbitration lost, must retry */
500 			dev->cmd_err |= DAVINCI_I2C_STR_AL;
501 			dev->buf_len = 0;
502 			complete(&dev->cmd_complete);
503 			break;
504 
505 		case DAVINCI_I2C_IVR_NACK:
506 			dev->cmd_err |= DAVINCI_I2C_STR_NACK;
507 			dev->buf_len = 0;
508 			complete(&dev->cmd_complete);
509 			break;
510 
511 		case DAVINCI_I2C_IVR_ARDY:
512 			davinci_i2c_write_reg(dev,
513 				DAVINCI_I2C_STR_REG, DAVINCI_I2C_STR_ARDY);
514 			if (((dev->buf_len == 0) && (dev->stop != 0)) ||
515 			    (dev->cmd_err & DAVINCI_I2C_STR_NACK)) {
516 				w = davinci_i2c_read_reg(dev,
517 							 DAVINCI_I2C_MDR_REG);
518 				w |= DAVINCI_I2C_MDR_STP;
519 				davinci_i2c_write_reg(dev,
520 						      DAVINCI_I2C_MDR_REG, w);
521 			}
522 			complete(&dev->cmd_complete);
523 			break;
524 
525 		case DAVINCI_I2C_IVR_RDR:
526 			if (dev->buf_len) {
527 				*dev->buf++ =
528 				    davinci_i2c_read_reg(dev,
529 							 DAVINCI_I2C_DRR_REG);
530 				dev->buf_len--;
531 				if (dev->buf_len)
532 					continue;
533 
534 				davinci_i2c_write_reg(dev,
535 					DAVINCI_I2C_STR_REG,
536 					DAVINCI_I2C_IMR_RRDY);
537 			} else {
538 				/* signal can terminate transfer */
539 				terminate_read(dev);
540 			}
541 			break;
542 
543 		case DAVINCI_I2C_IVR_XRDY:
544 			if (dev->buf_len) {
545 				davinci_i2c_write_reg(dev, DAVINCI_I2C_DXR_REG,
546 						      *dev->buf++);
547 				dev->buf_len--;
548 				if (dev->buf_len)
549 					continue;
550 
551 				w = davinci_i2c_read_reg(dev,
552 							 DAVINCI_I2C_IMR_REG);
553 				w &= ~DAVINCI_I2C_IMR_XRDY;
554 				davinci_i2c_write_reg(dev,
555 						      DAVINCI_I2C_IMR_REG,
556 						      w);
557 			} else {
558 				/* signal can terminate transfer */
559 				terminate_write(dev);
560 			}
561 			break;
562 
563 		case DAVINCI_I2C_IVR_SCD:
564 			davinci_i2c_write_reg(dev,
565 				DAVINCI_I2C_STR_REG, DAVINCI_I2C_STR_SCD);
566 			complete(&dev->cmd_complete);
567 			break;
568 
569 		case DAVINCI_I2C_IVR_AAS:
570 			dev_dbg(dev->dev, "Address as slave interrupt\n");
571 			break;
572 
573 		default:
574 			dev_warn(dev->dev, "Unrecognized irq stat %d\n", stat);
575 			break;
576 		}
577 	}
578 
579 	return count ? IRQ_HANDLED : IRQ_NONE;
580 }
581 
582 #ifdef CONFIG_CPU_FREQ
583 static int i2c_davinci_cpufreq_transition(struct notifier_block *nb,
584 				     unsigned long val, void *data)
585 {
586 	struct davinci_i2c_dev *dev;
587 
588 	dev = container_of(nb, struct davinci_i2c_dev, freq_transition);
589 	if (val == CPUFREQ_PRECHANGE) {
590 		wait_for_completion(&dev->xfr_complete);
591 		davinci_i2c_reset_ctrl(dev, 0);
592 	} else if (val == CPUFREQ_POSTCHANGE) {
593 		i2c_davinci_calc_clk_dividers(dev);
594 		davinci_i2c_reset_ctrl(dev, 1);
595 	}
596 
597 	return 0;
598 }
599 
600 static inline int i2c_davinci_cpufreq_register(struct davinci_i2c_dev *dev)
601 {
602 	dev->freq_transition.notifier_call = i2c_davinci_cpufreq_transition;
603 
604 	return cpufreq_register_notifier(&dev->freq_transition,
605 					 CPUFREQ_TRANSITION_NOTIFIER);
606 }
607 
608 static inline void i2c_davinci_cpufreq_deregister(struct davinci_i2c_dev *dev)
609 {
610 	cpufreq_unregister_notifier(&dev->freq_transition,
611 				    CPUFREQ_TRANSITION_NOTIFIER);
612 }
613 #else
614 static inline int i2c_davinci_cpufreq_register(struct davinci_i2c_dev *dev)
615 {
616 	return 0;
617 }
618 
619 static inline void i2c_davinci_cpufreq_deregister(struct davinci_i2c_dev *dev)
620 {
621 }
622 #endif
623 
624 static struct i2c_algorithm i2c_davinci_algo = {
625 	.master_xfer	= i2c_davinci_xfer,
626 	.functionality	= i2c_davinci_func,
627 };
628 
629 static const struct of_device_id davinci_i2c_of_match[] = {
630 	{.compatible = "ti,davinci-i2c", },
631 	{},
632 };
633 MODULE_DEVICE_TABLE(of, davinci_i2c_of_match);
634 
635 static int davinci_i2c_probe(struct platform_device *pdev)
636 {
637 	struct davinci_i2c_dev *dev;
638 	struct i2c_adapter *adap;
639 	struct resource *mem, *irq;
640 	int r;
641 
642 	irq = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
643 	if (!irq) {
644 		dev_err(&pdev->dev, "no irq resource?\n");
645 		return -ENODEV;
646 	}
647 
648 	dev = devm_kzalloc(&pdev->dev, sizeof(struct davinci_i2c_dev),
649 			GFP_KERNEL);
650 	if (!dev) {
651 		dev_err(&pdev->dev, "Memory allocation failed\n");
652 		return -ENOMEM;
653 	}
654 
655 	init_completion(&dev->cmd_complete);
656 #ifdef CONFIG_CPU_FREQ
657 	init_completion(&dev->xfr_complete);
658 #endif
659 	dev->dev = &pdev->dev;
660 	dev->irq = irq->start;
661 	dev->pdata = dev_get_platdata(&pdev->dev);
662 	platform_set_drvdata(pdev, dev);
663 
664 	if (!dev->pdata && pdev->dev.of_node) {
665 		u32 prop;
666 
667 		dev->pdata = devm_kzalloc(&pdev->dev,
668 			sizeof(struct davinci_i2c_platform_data), GFP_KERNEL);
669 		if (!dev->pdata)
670 			return -ENOMEM;
671 
672 		memcpy(dev->pdata, &davinci_i2c_platform_data_default,
673 			sizeof(struct davinci_i2c_platform_data));
674 		if (!of_property_read_u32(pdev->dev.of_node, "clock-frequency",
675 			&prop))
676 			dev->pdata->bus_freq = prop / 1000;
677 	} else if (!dev->pdata) {
678 		dev->pdata = &davinci_i2c_platform_data_default;
679 	}
680 
681 	dev->clk = devm_clk_get(&pdev->dev, NULL);
682 	if (IS_ERR(dev->clk))
683 		return -ENODEV;
684 	clk_prepare_enable(dev->clk);
685 
686 	mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
687 	dev->base = devm_ioremap_resource(&pdev->dev, mem);
688 	if (IS_ERR(dev->base)) {
689 		r = PTR_ERR(dev->base);
690 		goto err_unuse_clocks;
691 	}
692 
693 	i2c_davinci_init(dev);
694 
695 	r = devm_request_irq(&pdev->dev, dev->irq, i2c_davinci_isr, 0,
696 			pdev->name, dev);
697 	if (r) {
698 		dev_err(&pdev->dev, "failure requesting irq %i\n", dev->irq);
699 		goto err_unuse_clocks;
700 	}
701 
702 	r = i2c_davinci_cpufreq_register(dev);
703 	if (r) {
704 		dev_err(&pdev->dev, "failed to register cpufreq\n");
705 		goto err_unuse_clocks;
706 	}
707 
708 	adap = &dev->adapter;
709 	i2c_set_adapdata(adap, dev);
710 	adap->owner = THIS_MODULE;
711 	adap->class = I2C_CLASS_DEPRECATED;
712 	strlcpy(adap->name, "DaVinci I2C adapter", sizeof(adap->name));
713 	adap->algo = &i2c_davinci_algo;
714 	adap->dev.parent = &pdev->dev;
715 	adap->timeout = DAVINCI_I2C_TIMEOUT;
716 	adap->dev.of_node = pdev->dev.of_node;
717 
718 	adap->nr = pdev->id;
719 	r = i2c_add_numbered_adapter(adap);
720 	if (r) {
721 		dev_err(&pdev->dev, "failure adding adapter\n");
722 		goto err_unuse_clocks;
723 	}
724 
725 	return 0;
726 
727 err_unuse_clocks:
728 	clk_disable_unprepare(dev->clk);
729 	dev->clk = NULL;
730 	return r;
731 }
732 
733 static int davinci_i2c_remove(struct platform_device *pdev)
734 {
735 	struct davinci_i2c_dev *dev = platform_get_drvdata(pdev);
736 
737 	i2c_davinci_cpufreq_deregister(dev);
738 
739 	i2c_del_adapter(&dev->adapter);
740 
741 	clk_disable_unprepare(dev->clk);
742 	dev->clk = NULL;
743 
744 	davinci_i2c_write_reg(dev, DAVINCI_I2C_MDR_REG, 0);
745 
746 	return 0;
747 }
748 
749 #ifdef CONFIG_PM
750 static int davinci_i2c_suspend(struct device *dev)
751 {
752 	struct platform_device *pdev = to_platform_device(dev);
753 	struct davinci_i2c_dev *i2c_dev = platform_get_drvdata(pdev);
754 
755 	/* put I2C into reset */
756 	davinci_i2c_reset_ctrl(i2c_dev, 0);
757 	clk_disable_unprepare(i2c_dev->clk);
758 
759 	return 0;
760 }
761 
762 static int davinci_i2c_resume(struct device *dev)
763 {
764 	struct platform_device *pdev = to_platform_device(dev);
765 	struct davinci_i2c_dev *i2c_dev = platform_get_drvdata(pdev);
766 
767 	clk_prepare_enable(i2c_dev->clk);
768 	/* take I2C out of reset */
769 	davinci_i2c_reset_ctrl(i2c_dev, 1);
770 
771 	return 0;
772 }
773 
774 static const struct dev_pm_ops davinci_i2c_pm = {
775 	.suspend        = davinci_i2c_suspend,
776 	.resume         = davinci_i2c_resume,
777 };
778 
779 #define davinci_i2c_pm_ops (&davinci_i2c_pm)
780 #else
781 #define davinci_i2c_pm_ops NULL
782 #endif
783 
784 /* work with hotplug and coldplug */
785 MODULE_ALIAS("platform:i2c_davinci");
786 
787 static struct platform_driver davinci_i2c_driver = {
788 	.probe		= davinci_i2c_probe,
789 	.remove		= davinci_i2c_remove,
790 	.driver		= {
791 		.name	= "i2c_davinci",
792 		.owner	= THIS_MODULE,
793 		.pm	= davinci_i2c_pm_ops,
794 		.of_match_table = davinci_i2c_of_match,
795 	},
796 };
797 
798 /* I2C may be needed to bring up other drivers */
799 static int __init davinci_i2c_init_driver(void)
800 {
801 	return platform_driver_register(&davinci_i2c_driver);
802 }
803 subsys_initcall(davinci_i2c_init_driver);
804 
805 static void __exit davinci_i2c_exit_driver(void)
806 {
807 	platform_driver_unregister(&davinci_i2c_driver);
808 }
809 module_exit(davinci_i2c_exit_driver);
810 
811 MODULE_AUTHOR("Texas Instruments India");
812 MODULE_DESCRIPTION("TI DaVinci I2C bus adapter");
813 MODULE_LICENSE("GPL");
814