]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - drivers/mfd/twl4030-core.c
1802870647673b79ea1a0cb538175960541fe7a1
[linux-2.6-omap-h63xx.git] / drivers / mfd / twl4030-core.c
1 /*
2  * twl4030_core.c - driver for TWL4030/TPS659x0 PM and audio CODEC devices
3  *
4  * Copyright (C) 2005-2006 Texas Instruments, Inc.
5  *
6  * Modifications to defer interrupt handling to a kernel thread:
7  * Copyright (C) 2006 MontaVista Software, Inc.
8  *
9  * Based on tlv320aic23.c:
10  * Copyright (c) by Kai Svahn <kai.svahn@nokia.com>
11  *
12  * Code cleanup and modifications to IRQ handler.
13  * by syed khasim <x0khasim@ti.com>
14  *
15  * This program is free software; you can redistribute it and/or modify
16  * it under the terms of the GNU General Public License as published by
17  * the Free Software Foundation; either version 2 of the License, or
18  * (at your option) any later version.
19  *
20  * This program is distributed in the hope that it will be useful,
21  * but WITHOUT ANY WARRANTY; without even the implied warranty of
22  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
23  * GNU General Public License for more details.
24  *
25  * You should have received a copy of the GNU General Public License
26  * along with this program; if not, write to the Free Software
27  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
28  */
29
30 #include <linux/init.h>
31 #include <linux/mutex.h>
32 #include <linux/platform_device.h>
33 #include <linux/clk.h>
34 #include <linux/err.h>
35
36 #include <linux/i2c.h>
37 #include <linux/i2c/twl4030.h>
38
39
40 /*
41  * The TWL4030 "Triton 2" is one of a family of a multi-function "Power
42  * Management and System Companion Device" chips originally designed for
43  * use in OMAP2 and OMAP 3 based systems.  Its control interfaces use I2C,
44  * often at around 3 Mbit/sec, including for interrupt handling.
45  *
46  * This driver core provides genirq support for the interrupts emitted,
47  * by the various modules, and exports register access primitives.
48  *
49  * FIXME this driver currently requires use of the first interrupt line
50  * (and associated registers).
51  */
52
53 #define DRIVER_NAME                     "twl4030"
54
55 #if defined(CONFIG_TWL4030_BCI_BATTERY) || \
56         defined(CONFIG_TWL4030_BCI_BATTERY_MODULE)
57 #define twl_has_bci()           true
58 #else
59 #define twl_has_bci()           false
60 #endif
61
62 #if defined(CONFIG_KEYBOARD_TWL4030) || defined(CONFIG_KEYBOARD_TWL4030_MODULE)
63 #define twl_has_keypad()        true
64 #else
65 #define twl_has_keypad()        false
66 #endif
67
68 #if defined(CONFIG_GPIO_TWL4030) || defined(CONFIG_GPIO_TWL4030_MODULE)
69 #define twl_has_gpio()  true
70 #else
71 #define twl_has_gpio()  false
72 #endif
73
74 #if defined(CONFIG_TWL4030_MADC) || defined(CONFIG_TWL4030_MADC_MODULE)
75 #define twl_has_madc()  true
76 #else
77 #define twl_has_madc()  false
78 #endif
79
80 #ifdef CONFIG_TWL4030_POWER
81 #define twl_has_power()        true
82 #else
83 #define twl_has_power()        false
84 #endif
85
86 #if defined(CONFIG_RTC_DRV_TWL4030) || defined(CONFIG_RTC_DRV_TWL4030_MODULE)
87 #define twl_has_rtc()   true
88 #else
89 #define twl_has_rtc()   false
90 #endif
91
92 #if defined(CONFIG_TWL4030_USB) || defined(CONFIG_TWL4030_USB_MODULE)
93 #define twl_has_usb()   true
94 #else
95 #define twl_has_usb()   false
96 #endif
97
98
99 /* Triton Core internal information (BEGIN) */
100
101 /* Last - for index max*/
102 #define TWL4030_MODULE_LAST             TWL4030_MODULE_SECURED_REG
103
104 #define TWL4030_NUM_SLAVES              4
105
106
107 /* Base Address defns for twl4030_map[] */
108
109 /* subchip/slave 0 - USB ID */
110 #define TWL4030_BASEADD_USB             0x0000
111
112 /* subchip/slave 1 - AUD ID */
113 #define TWL4030_BASEADD_AUDIO_VOICE     0x0000
114 #define TWL4030_BASEADD_GPIO            0x0098
115 #define TWL4030_BASEADD_INTBR           0x0085
116 #define TWL4030_BASEADD_PIH             0x0080
117 #define TWL4030_BASEADD_TEST            0x004C
118
119 /* subchip/slave 2 - AUX ID */
120 #define TWL4030_BASEADD_INTERRUPTS      0x00B9
121 #define TWL4030_BASEADD_LED             0x00EE
122 #define TWL4030_BASEADD_MADC            0x0000
123 #define TWL4030_BASEADD_MAIN_CHARGE     0x0074
124 #define TWL4030_BASEADD_PRECHARGE       0x00AA
125 #define TWL4030_BASEADD_PWM0            0x00F8
126 #define TWL4030_BASEADD_PWM1            0x00FB
127 #define TWL4030_BASEADD_PWMA            0x00EF
128 #define TWL4030_BASEADD_PWMB            0x00F1
129 #define TWL4030_BASEADD_KEYPAD          0x00D2
130
131 /* subchip/slave 3 - POWER ID */
132 #define TWL4030_BASEADD_BACKUP          0x0014
133 #define TWL4030_BASEADD_INT             0x002E
134 #define TWL4030_BASEADD_PM_MASTER       0x0036
135 #define TWL4030_BASEADD_PM_RECEIVER     0x005B
136 #define TWL4030_BASEADD_RTC             0x001C
137 #define TWL4030_BASEADD_SECURED_REG     0x0000
138
139 /* Triton Core internal information (END) */
140
141
142 /* Few power values */
143 #define R_CFG_BOOT                      0x05
144 #define R_PROTECT_KEY                   0x0E
145
146 /* access control values for R_PROTECT_KEY */
147 #define KEY_UNLOCK1                     0xce
148 #define KEY_UNLOCK2                     0xec
149 #define KEY_LOCK                        0x00
150
151 /* some fields in R_CFG_BOOT */
152 #define HFCLK_FREQ_19p2_MHZ             (1 << 0)
153 #define HFCLK_FREQ_26_MHZ               (2 << 0)
154 #define HFCLK_FREQ_38p4_MHZ             (3 << 0)
155 #define HIGH_PERF_SQ                    (1 << 3)
156
157
158 /*----------------------------------------------------------------------*/
159
160 /* is driver active, bound to a chip? */
161 static bool inuse;
162
163 /* Structure for each TWL4030 Slave */
164 struct twl4030_client {
165         struct i2c_client *client;
166         u8 address;
167
168         /* max numb of i2c_msg required is for read =2 */
169         struct i2c_msg xfer_msg[2];
170
171         /* To lock access to xfer_msg */
172         struct mutex xfer_lock;
173 };
174
175 static struct twl4030_client twl4030_modules[TWL4030_NUM_SLAVES];
176
177
178 /* mapping the module id to slave id and base address */
179 struct twl4030mapping {
180         unsigned char sid;      /* Slave ID */
181         unsigned char base;     /* base address */
182 };
183
184 static struct twl4030mapping twl4030_map[TWL4030_MODULE_LAST + 1] = {
185         /*
186          * NOTE:  don't change this table without updating the
187          * <linux/i2c/twl4030.h> defines for TWL4030_MODULE_*
188          * so they continue to match the order in this table.
189          */
190
191         { 0, TWL4030_BASEADD_USB },
192
193         { 1, TWL4030_BASEADD_AUDIO_VOICE },
194         { 1, TWL4030_BASEADD_GPIO },
195         { 1, TWL4030_BASEADD_INTBR },
196         { 1, TWL4030_BASEADD_PIH },
197         { 1, TWL4030_BASEADD_TEST },
198
199         { 2, TWL4030_BASEADD_KEYPAD },
200         { 2, TWL4030_BASEADD_MADC },
201         { 2, TWL4030_BASEADD_INTERRUPTS },
202         { 2, TWL4030_BASEADD_LED },
203         { 2, TWL4030_BASEADD_MAIN_CHARGE },
204         { 2, TWL4030_BASEADD_PRECHARGE },
205         { 2, TWL4030_BASEADD_PWM0 },
206         { 2, TWL4030_BASEADD_PWM1 },
207         { 2, TWL4030_BASEADD_PWMA },
208         { 2, TWL4030_BASEADD_PWMB },
209
210         { 3, TWL4030_BASEADD_BACKUP },
211         { 3, TWL4030_BASEADD_INT },
212         { 3, TWL4030_BASEADD_PM_MASTER },
213         { 3, TWL4030_BASEADD_PM_RECEIVER },
214         { 3, TWL4030_BASEADD_RTC },
215         { 3, TWL4030_BASEADD_SECURED_REG },
216 };
217
218 extern void twl4030_power_init(struct twl4030_power_data *triton2_scripts);
219
220 /*----------------------------------------------------------------------*/
221
222 /* Exported Functions */
223
224 /**
225  * twl4030_i2c_write - Writes a n bit register in TWL4030
226  * @mod_no: module number
227  * @value: an array of num_bytes+1 containing data to write
228  * @reg: register address (just offset will do)
229  * @num_bytes: number of bytes to transfer
230  *
231  * IMPORTANT: for 'value' parameter: Allocate value num_bytes+1 and
232  * valid data starts at Offset 1.
233  *
234  * Returns the result of operation - 0 is success
235  */
236 int twl4030_i2c_write(u8 mod_no, u8 *value, u8 reg, unsigned num_bytes)
237 {
238         int ret;
239         int sid;
240         struct twl4030_client *twl;
241         struct i2c_msg *msg;
242
243         if (unlikely(mod_no > TWL4030_MODULE_LAST)) {
244                 pr_err("%s: invalid module number %d\n", DRIVER_NAME, mod_no);
245                 return -EPERM;
246         }
247         sid = twl4030_map[mod_no].sid;
248         twl = &twl4030_modules[sid];
249
250         if (unlikely(!inuse)) {
251                 pr_err("%s: client %d is not initialized\n", DRIVER_NAME, sid);
252                 return -EPERM;
253         }
254         mutex_lock(&twl->xfer_lock);
255         /*
256          * [MSG1]: fill the register address data
257          * fill the data Tx buffer
258          */
259         msg = &twl->xfer_msg[0];
260         msg->addr = twl->address;
261         msg->len = num_bytes + 1;
262         msg->flags = 0;
263         msg->buf = value;
264         /* over write the first byte of buffer with the register address */
265         *value = twl4030_map[mod_no].base + reg;
266         ret = i2c_transfer(twl->client->adapter, twl->xfer_msg, 1);
267         mutex_unlock(&twl->xfer_lock);
268
269         /* i2cTransfer returns num messages.translate it pls.. */
270         if (ret >= 0)
271                 ret = 0;
272         return ret;
273 }
274 EXPORT_SYMBOL(twl4030_i2c_write);
275
276 /**
277  * twl4030_i2c_read - Reads a n bit register in TWL4030
278  * @mod_no: module number
279  * @value: an array of num_bytes containing data to be read
280  * @reg: register address (just offset will do)
281  * @num_bytes: number of bytes to transfer
282  *
283  * Returns result of operation - num_bytes is success else failure.
284  */
285 int twl4030_i2c_read(u8 mod_no, u8 *value, u8 reg, unsigned num_bytes)
286 {
287         int ret;
288         u8 val;
289         int sid;
290         struct twl4030_client *twl;
291         struct i2c_msg *msg;
292
293         if (unlikely(mod_no > TWL4030_MODULE_LAST)) {
294                 pr_err("%s: invalid module number %d\n", DRIVER_NAME, mod_no);
295                 return -EPERM;
296         }
297         sid = twl4030_map[mod_no].sid;
298         twl = &twl4030_modules[sid];
299
300         if (unlikely(!inuse)) {
301                 pr_err("%s: client %d is not initialized\n", DRIVER_NAME, sid);
302                 return -EPERM;
303         }
304         mutex_lock(&twl->xfer_lock);
305         /* [MSG1] fill the register address data */
306         msg = &twl->xfer_msg[0];
307         msg->addr = twl->address;
308         msg->len = 1;
309         msg->flags = 0; /* Read the register value */
310         val = twl4030_map[mod_no].base + reg;
311         msg->buf = &val;
312         /* [MSG2] fill the data rx buffer */
313         msg = &twl->xfer_msg[1];
314         msg->addr = twl->address;
315         msg->flags = I2C_M_RD;  /* Read the register value */
316         msg->len = num_bytes;   /* only n bytes */
317         msg->buf = value;
318         ret = i2c_transfer(twl->client->adapter, twl->xfer_msg, 2);
319         mutex_unlock(&twl->xfer_lock);
320
321         /* i2cTransfer returns num messages.translate it pls.. */
322         if (ret >= 0)
323                 ret = 0;
324         return ret;
325 }
326 EXPORT_SYMBOL(twl4030_i2c_read);
327
328 /**
329  * twl4030_i2c_write_u8 - Writes a 8 bit register in TWL4030
330  * @mod_no: module number
331  * @value: the value to be written 8 bit
332  * @reg: register address (just offset will do)
333  *
334  * Returns result of operation - 0 is success
335  */
336 int twl4030_i2c_write_u8(u8 mod_no, u8 value, u8 reg)
337 {
338
339         /* 2 bytes offset 1 contains the data offset 0 is used by i2c_write */
340         u8 temp_buffer[2] = { 0 };
341         /* offset 1 contains the data */
342         temp_buffer[1] = value;
343         return twl4030_i2c_write(mod_no, temp_buffer, reg, 1);
344 }
345 EXPORT_SYMBOL(twl4030_i2c_write_u8);
346
347 /**
348  * twl4030_i2c_read_u8 - Reads a 8 bit register from TWL4030
349  * @mod_no: module number
350  * @value: the value read 8 bit
351  * @reg: register address (just offset will do)
352  *
353  * Returns result of operation - 0 is success
354  */
355 int twl4030_i2c_read_u8(u8 mod_no, u8 *value, u8 reg)
356 {
357         return twl4030_i2c_read(mod_no, value, reg, 1);
358 }
359 EXPORT_SYMBOL(twl4030_i2c_read_u8);
360
361 /*----------------------------------------------------------------------*/
362
363 static int add_child(unsigned chip, const char *name,
364                 void *pdata, unsigned pdata_len,
365                 bool can_wakeup, int irq0, int irq1)
366 {
367         struct platform_device  *pdev;
368         struct twl4030_client   *twl = &twl4030_modules[chip];
369         int                     status;
370
371         pdev = platform_device_alloc(name, -1);
372         if (!pdev) {
373                 dev_dbg(&twl->client->dev, "can't alloc dev\n");
374                 status = -ENOMEM;
375                 goto err;
376         }
377
378         device_init_wakeup(&pdev->dev, can_wakeup);
379         pdev->dev.parent = &twl->client->dev;
380
381         if (pdata) {
382                 status = platform_device_add_data(pdev, pdata, pdata_len);
383                 if (status < 0) {
384                         dev_dbg(&pdev->dev, "can't add platform_data\n");
385                         goto err;
386                 }
387         }
388
389         if (irq0) {
390                 struct resource r[2] = {
391                         { .start = irq0, .flags = IORESOURCE_IRQ, },
392                         { .start = irq1, .flags = IORESOURCE_IRQ, },
393                 };
394
395                 status = platform_device_add_resources(pdev, r, irq1 ? 2 : 1);
396                 if (status < 0) {
397                         dev_dbg(&pdev->dev, "can't add irqs\n");
398                         goto err;
399                 }
400         }
401
402         status = platform_device_add(pdev);
403
404 err:
405         if (status < 0) {
406                 platform_device_put(pdev);
407                 dev_err(&twl->client->dev, "can't add %s dev\n", name);
408         }
409         return status;
410 }
411
412 /*
413  * NOTE:  We know the first 8 IRQs after pdata->base_irq are
414  * for the PIH, and the next are for the PWR_INT SIH, since
415  * that's how twl_init_irq() sets things up.
416  */
417
418 static int add_children(struct twl4030_platform_data *pdata)
419 {
420         int                     status;
421
422         if (twl_has_bci() && pdata->bci) {
423                 status = add_child(3, "twl4030_bci",
424                                 pdata->bci, sizeof(*pdata->bci),
425                                 false,
426                                 /* irq0 = CHG_PRES, irq1 = BCI */
427                                 pdata->irq_base + 8 + 1, pdata->irq_base + 2);
428                 if (status < 0)
429                         return status;
430         }
431
432         if (twl_has_gpio() && pdata->gpio) {
433                 status = add_child(1, "twl4030_gpio",
434                                 pdata->gpio, sizeof(*pdata->gpio),
435                                 false, pdata->irq_base + 0, 0);
436                 if (status < 0)
437                         return status;
438         }
439
440         if (twl_has_keypad() && pdata->keypad) {
441                 status = add_child(2, "twl4030_keypad",
442                                 pdata->keypad, sizeof(*pdata->keypad),
443                                 true, pdata->irq_base + 1, 0);
444                 if (status < 0)
445                         return status;
446         }
447
448         if (twl_has_madc() && pdata->madc) {
449                 status = add_child(2, "twl4030_madc",
450                                 pdata->madc, sizeof(*pdata->madc),
451                                 true, pdata->irq_base + 3, 0);
452                 if (status < 0)
453                         return status;
454         }
455
456         if (twl_has_power() && pdata->power)
457                 twl4030_power_init(pdata->power);
458
459         if (twl_has_rtc()) {
460                 /*
461                  * REVISIT platform_data here currently might expose the
462                  * "msecure" line ... but for now we just expect board
463                  * setup to tell the chip "it's always ok to SET_TIME".
464                  * Eventually, Linux might become more aware of such
465                  * HW security concerns, and "least privilege".
466                  */
467                 status = add_child(3, "twl4030_rtc",
468                                 NULL, 0,
469                                 true, pdata->irq_base + 8 + 3, 0);
470                 if (status < 0)
471                         return status;
472         }
473
474         if (twl_has_usb() && pdata->usb) {
475                 status = add_child(0, "twl4030_usb",
476                                 pdata->usb, sizeof(*pdata->usb),
477                                 true,
478                                 /* irq0 = USB_PRES, irq1 = USB */
479                                 pdata->irq_base + 8 + 2, pdata->irq_base + 4);
480                 if (status < 0)
481                         return status;
482         }
483
484         return 0;
485 }
486
487 /*----------------------------------------------------------------------*/
488
489 /*
490  * These three functions initialize the on-chip clock framework,
491  * letting it generate the right frequencies for USB, MADC, and
492  * other purposes.
493  */
494 static inline int __init protect_pm_master(void)
495 {
496         int e = 0;
497
498         e = twl4030_i2c_write_u8(TWL4030_MODULE_PM_MASTER, KEY_LOCK,
499                         R_PROTECT_KEY);
500         return e;
501 }
502
503 static inline int __init unprotect_pm_master(void)
504 {
505         int e = 0;
506
507         e |= twl4030_i2c_write_u8(TWL4030_MODULE_PM_MASTER, KEY_UNLOCK1,
508                         R_PROTECT_KEY);
509         e |= twl4030_i2c_write_u8(TWL4030_MODULE_PM_MASTER, KEY_UNLOCK2,
510                         R_PROTECT_KEY);
511         return e;
512 }
513
514 static void __init clocks_init(void)
515 {
516         int e = 0;
517         struct clk *osc;
518         u32 rate;
519         u8 ctrl = HFCLK_FREQ_26_MHZ;
520
521 #if defined(CONFIG_ARCH_OMAP2) || defined(CONFIG_ARCH_OMAP3)
522         if (cpu_is_omap2430())
523                 osc = clk_get(NULL, "osc_ck");
524         else
525                 osc = clk_get(NULL, "osc_sys_ck");
526 #else
527         /* REVISIT for non-OMAP systems, pass the clock rate from
528          * board init code, using platform_data.
529          */
530         osc = ERR_PTR(-EIO);
531 #endif
532         if (IS_ERR(osc)) {
533                 printk(KERN_WARNING "Skipping twl4030 internal clock init and "
534                                 "using bootloader value (unknown osc rate)\n");
535                 return;
536         }
537
538         rate = clk_get_rate(osc);
539         clk_put(osc);
540
541         switch (rate) {
542         case 19200000:
543                 ctrl = HFCLK_FREQ_19p2_MHZ;
544                 break;
545         case 26000000:
546                 ctrl = HFCLK_FREQ_26_MHZ;
547                 break;
548         case 38400000:
549                 ctrl = HFCLK_FREQ_38p4_MHZ;
550                 break;
551         }
552
553         ctrl |= HIGH_PERF_SQ;
554         e |= unprotect_pm_master();
555         /* effect->MADC+USB ck en */
556         e |= twl4030_i2c_write_u8(TWL4030_MODULE_PM_MASTER, ctrl, R_CFG_BOOT);
557         e |= protect_pm_master();
558
559         if (e < 0)
560                 pr_err("%s: clock init err [%d]\n", DRIVER_NAME, e);
561 }
562
563 /*----------------------------------------------------------------------*/
564
565 int twl_init_irq(int irq_num, unsigned irq_base, unsigned irq_end);
566 int twl_exit_irq(void);
567
568 static int twl4030_remove(struct i2c_client *client)
569 {
570         unsigned i;
571         int status;
572
573         status = twl_exit_irq();
574         if (status < 0)
575                 return status;
576
577         for (i = 0; i < TWL4030_NUM_SLAVES; i++) {
578                 struct twl4030_client   *twl = &twl4030_modules[i];
579
580                 if (twl->client && twl->client != client)
581                         i2c_unregister_device(twl->client);
582                 twl4030_modules[i].client = NULL;
583         }
584         inuse = false;
585         return 0;
586 }
587
588 /* NOTE:  this driver only handles a single twl4030/tps659x0 chip */
589 static int
590 twl4030_probe(struct i2c_client *client, const struct i2c_device_id *id)
591 {
592         int                             status;
593         unsigned                        i;
594         struct twl4030_platform_data    *pdata = client->dev.platform_data;
595
596         if (!pdata) {
597                 dev_dbg(&client->dev, "no platform data?\n");
598                 return -EINVAL;
599         }
600
601         if (i2c_check_functionality(client->adapter, I2C_FUNC_I2C) == 0) {
602                 dev_dbg(&client->dev, "can't talk I2C?\n");
603                 return -EIO;
604         }
605
606         if (inuse) {
607                 dev_dbg(&client->dev, "driver is already in use\n");
608                 return -EBUSY;
609         }
610
611         for (i = 0; i < TWL4030_NUM_SLAVES; i++) {
612                 struct twl4030_client   *twl = &twl4030_modules[i];
613
614                 twl->address = client->addr + i;
615                 if (i == 0)
616                         twl->client = client;
617                 else {
618                         twl->client = i2c_new_dummy(client->adapter,
619                                         twl->address);
620                         if (!twl->client) {
621                                 dev_err(&twl->client->dev,
622                                         "can't attach client %d\n", i);
623                                 status = -ENOMEM;
624                                 goto fail;
625                         }
626                         strlcpy(twl->client->name, id->name,
627                                         sizeof(twl->client->name));
628                 }
629                 mutex_init(&twl->xfer_lock);
630         }
631         inuse = true;
632
633         /* setup clock framework */
634         clocks_init();
635
636         /* Maybe init the T2 Interrupt subsystem */
637         if (client->irq
638                         && pdata->irq_base
639                         && pdata->irq_end > pdata->irq_base) {
640                 status = twl_init_irq(client->irq, pdata->irq_base, pdata->irq_end);
641                 if (status < 0)
642                         goto fail;
643         }
644
645         status = add_children(pdata);
646 fail:
647         if (status < 0)
648                 twl4030_remove(client);
649         return status;
650 }
651
652 static const struct i2c_device_id twl4030_ids[] = {
653         { "twl4030", 0 },       /* "Triton 2" */
654         { "tps65950", 0 },      /* catalog version of twl4030 */
655         { "tps65930", 0 },      /* fewer LDOs and DACs; no charger */
656         { "tps65920", 0 },      /* fewer LDOs; no codec or charger */
657         { "twl5030", 0 },       /* T2 updated */
658         { /* end of list */ },
659 };
660 MODULE_DEVICE_TABLE(i2c, twl4030_ids);
661
662 /* One Client Driver , 4 Clients */
663 static struct i2c_driver twl4030_driver = {
664         .driver.name    = DRIVER_NAME,
665         .id_table       = twl4030_ids,
666         .probe          = twl4030_probe,
667         .remove         = twl4030_remove,
668 };
669
670 static int __init twl4030_init(void)
671 {
672         return i2c_add_driver(&twl4030_driver);
673 }
674 subsys_initcall(twl4030_init);
675
676 static void __exit twl4030_exit(void)
677 {
678         i2c_del_driver(&twl4030_driver);
679 }
680 module_exit(twl4030_exit);
681
682 MODULE_AUTHOR("Texas Instruments, Inc.");
683 MODULE_DESCRIPTION("I2C Core interface for TWL4030");
684 MODULE_LICENSE("GPL");