blob: 85097fdc75e4c7532785eef2251a095955fd4e9a [file] [log] [blame]
Vladimir Barinov95a7f102007-10-13 23:56:30 +02001/*
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 * 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 * ----------------------------------------------------------------------------
25 *
26 */
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>
37#include <linux/io.h>
38
39#include <asm/hardware.h>
40#include <asm/mach-types.h>
41
42#include <asm/arch/i2c.h>
43
44/* ----- global defines ----------------------------------------------- */
45
46#define DAVINCI_I2C_TIMEOUT (1*HZ)
47#define I2C_DAVINCI_INTR_ALL (DAVINCI_I2C_IMR_AAS | \
48 DAVINCI_I2C_IMR_SCD | \
49 DAVINCI_I2C_IMR_ARDY | \
50 DAVINCI_I2C_IMR_NACK | \
51 DAVINCI_I2C_IMR_AL)
52
53#define DAVINCI_I2C_OAR_REG 0x00
54#define DAVINCI_I2C_IMR_REG 0x04
55#define DAVINCI_I2C_STR_REG 0x08
56#define DAVINCI_I2C_CLKL_REG 0x0c
57#define DAVINCI_I2C_CLKH_REG 0x10
58#define DAVINCI_I2C_CNT_REG 0x14
59#define DAVINCI_I2C_DRR_REG 0x18
60#define DAVINCI_I2C_SAR_REG 0x1c
61#define DAVINCI_I2C_DXR_REG 0x20
62#define DAVINCI_I2C_MDR_REG 0x24
63#define DAVINCI_I2C_IVR_REG 0x28
64#define DAVINCI_I2C_EMDR_REG 0x2c
65#define DAVINCI_I2C_PSC_REG 0x30
66
67#define DAVINCI_I2C_IVR_AAS 0x07
68#define DAVINCI_I2C_IVR_SCD 0x06
69#define DAVINCI_I2C_IVR_XRDY 0x05
70#define DAVINCI_I2C_IVR_RDR 0x04
71#define DAVINCI_I2C_IVR_ARDY 0x03
72#define DAVINCI_I2C_IVR_NACK 0x02
73#define DAVINCI_I2C_IVR_AL 0x01
74
75#define DAVINCI_I2C_STR_BB (1 << 12)
76#define DAVINCI_I2C_STR_RSFULL (1 << 11)
77#define DAVINCI_I2C_STR_SCD (1 << 5)
78#define DAVINCI_I2C_STR_ARDY (1 << 2)
79#define DAVINCI_I2C_STR_NACK (1 << 1)
80#define DAVINCI_I2C_STR_AL (1 << 0)
81
82#define DAVINCI_I2C_MDR_NACK (1 << 15)
83#define DAVINCI_I2C_MDR_STT (1 << 13)
84#define DAVINCI_I2C_MDR_STP (1 << 11)
85#define DAVINCI_I2C_MDR_MST (1 << 10)
86#define DAVINCI_I2C_MDR_TRX (1 << 9)
87#define DAVINCI_I2C_MDR_XA (1 << 8)
88#define DAVINCI_I2C_MDR_IRS (1 << 5)
89
90#define DAVINCI_I2C_IMR_AAS (1 << 6)
91#define DAVINCI_I2C_IMR_SCD (1 << 5)
92#define DAVINCI_I2C_IMR_XRDY (1 << 4)
93#define DAVINCI_I2C_IMR_RRDY (1 << 3)
94#define DAVINCI_I2C_IMR_ARDY (1 << 2)
95#define DAVINCI_I2C_IMR_NACK (1 << 1)
96#define DAVINCI_I2C_IMR_AL (1 << 0)
97
98#define MOD_REG_BIT(val, mask, set) do { \
99 if (set) { \
100 val |= mask; \
101 } else { \
102 val &= ~mask; \
103 } \
104} while (0)
105
106struct davinci_i2c_dev {
107 struct device *dev;
108 void __iomem *base;
109 struct completion cmd_complete;
110 struct clk *clk;
111 int cmd_err;
112 u8 *buf;
113 size_t buf_len;
114 int irq;
115 struct i2c_adapter adapter;
116};
117
118/* default platform data to use if not supplied in the platform_device */
119static struct davinci_i2c_platform_data davinci_i2c_platform_data_default = {
120 .bus_freq = 100,
121 .bus_delay = 0,
122};
123
124static inline void davinci_i2c_write_reg(struct davinci_i2c_dev *i2c_dev,
125 int reg, u16 val)
126{
127 __raw_writew(val, i2c_dev->base + reg);
128}
129
130static inline u16 davinci_i2c_read_reg(struct davinci_i2c_dev *i2c_dev, int reg)
131{
132 return __raw_readw(i2c_dev->base + reg);
133}
134
135/*
136 * This functions configures I2C and brings I2C out of reset.
137 * This function is called during I2C init function. This function
138 * also gets called if I2C encounters any errors.
139 */
140static int i2c_davinci_init(struct davinci_i2c_dev *dev)
141{
142 struct davinci_i2c_platform_data *pdata = dev->dev->platform_data;
143 u16 psc;
144 u32 clk;
Troy Kiskycc99ff72008-07-14 22:38:20 +0200145 u32 d;
Vladimir Barinov95a7f102007-10-13 23:56:30 +0200146 u32 clkh;
147 u32 clkl;
148 u32 input_clock = clk_get_rate(dev->clk);
149 u16 w;
150
151 if (!pdata)
152 pdata = &davinci_i2c_platform_data_default;
153
154 /* put I2C into reset */
155 w = davinci_i2c_read_reg(dev, DAVINCI_I2C_MDR_REG);
156 MOD_REG_BIT(w, DAVINCI_I2C_MDR_IRS, 0);
157 davinci_i2c_write_reg(dev, DAVINCI_I2C_MDR_REG, w);
158
159 /* NOTE: I2C Clock divider programming info
160 * As per I2C specs the following formulas provide prescaler
161 * and low/high divider values
162 * input clk --> PSC Div -----------> ICCL/H Div --> output clock
163 * module clk
164 *
165 * output clk = module clk / (PSC + 1) [ (ICCL + d) + (ICCH + d) ]
166 *
167 * Thus,
168 * (ICCL + ICCH) = clk = (input clk / ((psc +1) * output clk)) - 2d;
169 *
170 * where if PSC == 0, d = 7,
171 * if PSC == 1, d = 6
172 * if PSC > 1 , d = 5
173 */
174
Troy Kiskycc99ff72008-07-14 22:38:20 +0200175 /* get minimum of 7 MHz clock, but max of 12 MHz */
176 psc = (input_clock / 7000000) - 1;
177 if ((input_clock / (psc + 1)) > 12000000)
178 psc++; /* better to run under spec than over */
179 d = (psc >= 2) ? 5 : 7 - psc;
Vladimir Barinov95a7f102007-10-13 23:56:30 +0200180
Troy Kiskycc99ff72008-07-14 22:38:20 +0200181 clk = ((input_clock / (psc + 1)) / (pdata->bus_freq * 1000)) - (d << 1);
182 clkh = clk >> 1;
Vladimir Barinov95a7f102007-10-13 23:56:30 +0200183 clkl = clk - clkh;
184
185 davinci_i2c_write_reg(dev, DAVINCI_I2C_PSC_REG, psc);
186 davinci_i2c_write_reg(dev, DAVINCI_I2C_CLKH_REG, clkh);
187 davinci_i2c_write_reg(dev, DAVINCI_I2C_CLKL_REG, clkl);
188
Troy Kiskycc99ff72008-07-14 22:38:20 +0200189 dev_dbg(dev->dev, "input_clock = %d, CLK = %d\n", input_clock, clk);
Vladimir Barinov95a7f102007-10-13 23:56:30 +0200190 dev_dbg(dev->dev, "PSC = %d\n",
191 davinci_i2c_read_reg(dev, DAVINCI_I2C_PSC_REG));
192 dev_dbg(dev->dev, "CLKL = %d\n",
193 davinci_i2c_read_reg(dev, DAVINCI_I2C_CLKL_REG));
194 dev_dbg(dev->dev, "CLKH = %d\n",
195 davinci_i2c_read_reg(dev, DAVINCI_I2C_CLKH_REG));
Troy Kiskycc99ff72008-07-14 22:38:20 +0200196 dev_dbg(dev->dev, "bus_freq = %dkHz, bus_delay = %d\n",
197 pdata->bus_freq, pdata->bus_delay);
Vladimir Barinov95a7f102007-10-13 23:56:30 +0200198
199 /* Take the I2C module out of reset: */
200 w = davinci_i2c_read_reg(dev, DAVINCI_I2C_MDR_REG);
201 MOD_REG_BIT(w, DAVINCI_I2C_MDR_IRS, 1);
202 davinci_i2c_write_reg(dev, DAVINCI_I2C_MDR_REG, w);
203
204 /* Enable interrupts */
205 davinci_i2c_write_reg(dev, DAVINCI_I2C_IMR_REG, I2C_DAVINCI_INTR_ALL);
206
207 return 0;
208}
209
210/*
211 * Waiting for bus not busy
212 */
213static int i2c_davinci_wait_bus_not_busy(struct davinci_i2c_dev *dev,
214 char allow_sleep)
215{
216 unsigned long timeout;
217
218 timeout = jiffies + DAVINCI_I2C_TIMEOUT;
219 while (davinci_i2c_read_reg(dev, DAVINCI_I2C_STR_REG)
220 & DAVINCI_I2C_STR_BB) {
221 if (time_after(jiffies, timeout)) {
222 dev_warn(dev->dev,
223 "timeout waiting for bus ready\n");
224 return -ETIMEDOUT;
225 }
226 if (allow_sleep)
227 schedule_timeout(1);
228 }
229
230 return 0;
231}
232
233/*
234 * Low level master read/write transaction. This function is called
235 * from i2c_davinci_xfer.
236 */
237static int
238i2c_davinci_xfer_msg(struct i2c_adapter *adap, struct i2c_msg *msg, int stop)
239{
240 struct davinci_i2c_dev *dev = i2c_get_adapdata(adap);
241 struct davinci_i2c_platform_data *pdata = dev->dev->platform_data;
242 u32 flag;
243 u32 stat;
244 u16 w;
245 int r;
246
247 if (msg->len == 0)
248 return -EINVAL;
249
250 if (!pdata)
251 pdata = &davinci_i2c_platform_data_default;
252 /* Introduce a delay, required for some boards (e.g Davinci EVM) */
253 if (pdata->bus_delay)
254 udelay(pdata->bus_delay);
255
256 /* set the slave address */
257 davinci_i2c_write_reg(dev, DAVINCI_I2C_SAR_REG, msg->addr);
258
259 dev->buf = msg->buf;
260 dev->buf_len = msg->len;
261
262 davinci_i2c_write_reg(dev, DAVINCI_I2C_CNT_REG, dev->buf_len);
263
264 init_completion(&dev->cmd_complete);
265 dev->cmd_err = 0;
266
267 /* Clear any pending interrupts by reading the IVR */
268 stat = davinci_i2c_read_reg(dev, DAVINCI_I2C_IVR_REG);
269
270 /* Take I2C out of reset, configure it as master and set the
271 * start bit */
272 flag = DAVINCI_I2C_MDR_IRS | DAVINCI_I2C_MDR_MST | DAVINCI_I2C_MDR_STT;
273
274 /* if the slave address is ten bit address, enable XA bit */
275 if (msg->flags & I2C_M_TEN)
276 flag |= DAVINCI_I2C_MDR_XA;
277 if (!(msg->flags & I2C_M_RD))
278 flag |= DAVINCI_I2C_MDR_TRX;
279 if (stop)
280 flag |= DAVINCI_I2C_MDR_STP;
281
282 /* Enable receive or transmit interrupts */
283 w = davinci_i2c_read_reg(dev, DAVINCI_I2C_IMR_REG);
284 if (msg->flags & I2C_M_RD)
285 MOD_REG_BIT(w, DAVINCI_I2C_IMR_RRDY, 1);
286 else
287 MOD_REG_BIT(w, DAVINCI_I2C_IMR_XRDY, 1);
288 davinci_i2c_write_reg(dev, DAVINCI_I2C_IMR_REG, w);
289
290 /* write the data into mode register */
291 davinci_i2c_write_reg(dev, DAVINCI_I2C_MDR_REG, flag);
292
293 r = wait_for_completion_interruptible_timeout(&dev->cmd_complete,
294 DAVINCI_I2C_TIMEOUT);
295 dev->buf_len = 0;
296 if (r < 0)
297 return r;
298
299 if (r == 0) {
300 dev_err(dev->dev, "controller timed out\n");
301 i2c_davinci_init(dev);
302 return -ETIMEDOUT;
303 }
304
305 /* no error */
306 if (likely(!dev->cmd_err))
307 return msg->len;
308
309 /* We have an error */
310 if (dev->cmd_err & DAVINCI_I2C_STR_AL) {
311 i2c_davinci_init(dev);
312 return -EIO;
313 }
314
315 if (dev->cmd_err & DAVINCI_I2C_STR_NACK) {
316 if (msg->flags & I2C_M_IGNORE_NAK)
317 return msg->len;
318 if (stop) {
319 w = davinci_i2c_read_reg(dev, DAVINCI_I2C_MDR_REG);
320 MOD_REG_BIT(w, DAVINCI_I2C_MDR_STP, 1);
321 davinci_i2c_write_reg(dev, DAVINCI_I2C_MDR_REG, w);
322 }
323 return -EREMOTEIO;
324 }
325 return -EIO;
326}
327
328/*
329 * Prepare controller for a transaction and call i2c_davinci_xfer_msg
330 */
331static int
332i2c_davinci_xfer(struct i2c_adapter *adap, struct i2c_msg msgs[], int num)
333{
334 struct davinci_i2c_dev *dev = i2c_get_adapdata(adap);
335 int i;
336 int ret;
337
Harvey Harrison08882d22008-04-22 22:16:47 +0200338 dev_dbg(dev->dev, "%s: msgs: %d\n", __func__, num);
Vladimir Barinov95a7f102007-10-13 23:56:30 +0200339
340 ret = i2c_davinci_wait_bus_not_busy(dev, 1);
341 if (ret < 0) {
342 dev_warn(dev->dev, "timeout waiting for bus ready\n");
343 return ret;
344 }
345
346 for (i = 0; i < num; i++) {
347 ret = i2c_davinci_xfer_msg(adap, &msgs[i], (i == (num - 1)));
Troy Kiskyd868caa2008-07-14 22:38:20 +0200348 dev_dbg(dev->dev, "%s [%d/%d] ret: %d\n", __func__, i + 1, num,
349 ret);
Vladimir Barinov95a7f102007-10-13 23:56:30 +0200350 if (ret < 0)
351 return ret;
352 }
Vladimir Barinov95a7f102007-10-13 23:56:30 +0200353 return num;
354}
355
356static u32 i2c_davinci_func(struct i2c_adapter *adap)
357{
358 return I2C_FUNC_I2C | (I2C_FUNC_SMBUS_EMUL & ~I2C_FUNC_SMBUS_QUICK);
359}
360
361/*
362 * Interrupt service routine. This gets called whenever an I2C interrupt
363 * occurs.
364 */
365static irqreturn_t i2c_davinci_isr(int this_irq, void *dev_id)
366{
367 struct davinci_i2c_dev *dev = dev_id;
368 u32 stat;
369 int count = 0;
370 u16 w;
371
372 while ((stat = davinci_i2c_read_reg(dev, DAVINCI_I2C_IVR_REG))) {
Harvey Harrison08882d22008-04-22 22:16:47 +0200373 dev_dbg(dev->dev, "%s: stat=0x%x\n", __func__, stat);
Vladimir Barinov95a7f102007-10-13 23:56:30 +0200374 if (count++ == 100) {
375 dev_warn(dev->dev, "Too much work in one IRQ\n");
376 break;
377 }
378
379 switch (stat) {
380 case DAVINCI_I2C_IVR_AL:
381 dev->cmd_err |= DAVINCI_I2C_STR_AL;
382 complete(&dev->cmd_complete);
383 break;
384
385 case DAVINCI_I2C_IVR_NACK:
386 dev->cmd_err |= DAVINCI_I2C_STR_NACK;
387 complete(&dev->cmd_complete);
388 break;
389
390 case DAVINCI_I2C_IVR_ARDY:
Troy Kiskyb73a9ae2008-04-11 12:07:05 +0200391 davinci_i2c_write_reg(dev,
392 DAVINCI_I2C_STR_REG, DAVINCI_I2C_STR_ARDY);
Vladimir Barinov95a7f102007-10-13 23:56:30 +0200393 complete(&dev->cmd_complete);
394 break;
395
396 case DAVINCI_I2C_IVR_RDR:
397 if (dev->buf_len) {
398 *dev->buf++ =
399 davinci_i2c_read_reg(dev,
400 DAVINCI_I2C_DRR_REG);
401 dev->buf_len--;
402 if (dev->buf_len)
403 continue;
404
Vladimir Barinov95a7f102007-10-13 23:56:30 +0200405 davinci_i2c_write_reg(dev,
Troy Kiskyb73a9ae2008-04-11 12:07:05 +0200406 DAVINCI_I2C_STR_REG,
407 DAVINCI_I2C_IMR_RRDY);
Vladimir Barinov95a7f102007-10-13 23:56:30 +0200408 } else
Joe Perchesfce3ff02007-12-12 13:45:24 +0100409 dev_err(dev->dev, "RDR IRQ while no "
Vladimir Barinov95a7f102007-10-13 23:56:30 +0200410 "data requested\n");
411 break;
412
413 case DAVINCI_I2C_IVR_XRDY:
414 if (dev->buf_len) {
415 davinci_i2c_write_reg(dev, DAVINCI_I2C_DXR_REG,
416 *dev->buf++);
417 dev->buf_len--;
418 if (dev->buf_len)
419 continue;
420
421 w = davinci_i2c_read_reg(dev,
422 DAVINCI_I2C_IMR_REG);
423 MOD_REG_BIT(w, DAVINCI_I2C_IMR_XRDY, 0);
424 davinci_i2c_write_reg(dev,
425 DAVINCI_I2C_IMR_REG,
426 w);
427 } else
Joe Perchesfce3ff02007-12-12 13:45:24 +0100428 dev_err(dev->dev, "TDR IRQ while no data to "
Vladimir Barinov95a7f102007-10-13 23:56:30 +0200429 "send\n");
430 break;
431
432 case DAVINCI_I2C_IVR_SCD:
Troy Kiskyb73a9ae2008-04-11 12:07:05 +0200433 davinci_i2c_write_reg(dev,
434 DAVINCI_I2C_STR_REG, DAVINCI_I2C_STR_SCD);
Vladimir Barinov95a7f102007-10-13 23:56:30 +0200435 complete(&dev->cmd_complete);
436 break;
437
438 case DAVINCI_I2C_IVR_AAS:
439 dev_warn(dev->dev, "Address as slave interrupt\n");
440 }/* switch */
441 }/* while */
442
443 return count ? IRQ_HANDLED : IRQ_NONE;
444}
445
446static struct i2c_algorithm i2c_davinci_algo = {
447 .master_xfer = i2c_davinci_xfer,
448 .functionality = i2c_davinci_func,
449};
450
451static int davinci_i2c_probe(struct platform_device *pdev)
452{
453 struct davinci_i2c_dev *dev;
454 struct i2c_adapter *adap;
455 struct resource *mem, *irq, *ioarea;
456 int r;
457
458 /* NOTE: driver uses the static register mapping */
459 mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
460 if (!mem) {
461 dev_err(&pdev->dev, "no mem resource?\n");
462 return -ENODEV;
463 }
464
465 irq = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
466 if (!irq) {
467 dev_err(&pdev->dev, "no irq resource?\n");
468 return -ENODEV;
469 }
470
471 ioarea = request_mem_region(mem->start, (mem->end - mem->start) + 1,
472 pdev->name);
473 if (!ioarea) {
474 dev_err(&pdev->dev, "I2C region already claimed\n");
475 return -EBUSY;
476 }
477
478 dev = kzalloc(sizeof(struct davinci_i2c_dev), GFP_KERNEL);
479 if (!dev) {
480 r = -ENOMEM;
481 goto err_release_region;
482 }
483
484 dev->dev = get_device(&pdev->dev);
485 dev->irq = irq->start;
486 platform_set_drvdata(pdev, dev);
487
488 dev->clk = clk_get(&pdev->dev, "I2CCLK");
489 if (IS_ERR(dev->clk)) {
490 r = -ENODEV;
491 goto err_free_mem;
492 }
493 clk_enable(dev->clk);
494
495 dev->base = (void __iomem *)IO_ADDRESS(mem->start);
496 i2c_davinci_init(dev);
497
498 r = request_irq(dev->irq, i2c_davinci_isr, 0, pdev->name, dev);
499 if (r) {
500 dev_err(&pdev->dev, "failure requesting irq %i\n", dev->irq);
501 goto err_unuse_clocks;
502 }
503
504 adap = &dev->adapter;
505 i2c_set_adapdata(adap, dev);
506 adap->owner = THIS_MODULE;
507 adap->class = I2C_CLASS_HWMON;
508 strlcpy(adap->name, "DaVinci I2C adapter", sizeof(adap->name));
509 adap->algo = &i2c_davinci_algo;
510 adap->dev.parent = &pdev->dev;
511
512 /* FIXME */
513 adap->timeout = 1;
Vladimir Barinov95a7f102007-10-13 23:56:30 +0200514
515 adap->nr = pdev->id;
516 r = i2c_add_numbered_adapter(adap);
517 if (r) {
518 dev_err(&pdev->dev, "failure adding adapter\n");
519 goto err_free_irq;
520 }
521
522 return 0;
523
524err_free_irq:
525 free_irq(dev->irq, dev);
526err_unuse_clocks:
527 clk_disable(dev->clk);
528 clk_put(dev->clk);
529 dev->clk = NULL;
530err_free_mem:
531 platform_set_drvdata(pdev, NULL);
532 put_device(&pdev->dev);
533 kfree(dev);
534err_release_region:
535 release_mem_region(mem->start, (mem->end - mem->start) + 1);
536
537 return r;
538}
539
540static int davinci_i2c_remove(struct platform_device *pdev)
541{
542 struct davinci_i2c_dev *dev = platform_get_drvdata(pdev);
543 struct resource *mem;
544
545 platform_set_drvdata(pdev, NULL);
546 i2c_del_adapter(&dev->adapter);
547 put_device(&pdev->dev);
548
549 clk_disable(dev->clk);
550 clk_put(dev->clk);
551 dev->clk = NULL;
552
553 davinci_i2c_write_reg(dev, DAVINCI_I2C_MDR_REG, 0);
554 free_irq(IRQ_I2C, dev);
555 kfree(dev);
556
557 mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
558 release_mem_region(mem->start, (mem->end - mem->start) + 1);
559 return 0;
560}
561
Kay Sieversadd8eda2008-04-22 22:16:49 +0200562/* work with hotplug and coldplug */
563MODULE_ALIAS("platform:i2c_davinci");
564
Vladimir Barinov95a7f102007-10-13 23:56:30 +0200565static struct platform_driver davinci_i2c_driver = {
566 .probe = davinci_i2c_probe,
567 .remove = davinci_i2c_remove,
568 .driver = {
569 .name = "i2c_davinci",
570 .owner = THIS_MODULE,
571 },
572};
573
574/* I2C may be needed to bring up other drivers */
575static int __init davinci_i2c_init_driver(void)
576{
577 return platform_driver_register(&davinci_i2c_driver);
578}
579subsys_initcall(davinci_i2c_init_driver);
580
581static void __exit davinci_i2c_exit_driver(void)
582{
583 platform_driver_unregister(&davinci_i2c_driver);
584}
585module_exit(davinci_i2c_exit_driver);
586
587MODULE_AUTHOR("Texas Instruments India");
588MODULE_DESCRIPTION("TI DaVinci I2C bus adapter");
589MODULE_LICENSE("GPL");