]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - drivers/mfd/twl4030-core.c
create twl4030-irq.c
[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 #if defined(CONFIG_RTC_DRV_TWL4030) || defined(CONFIG_RTC_DRV_TWL4030_MODULE)
81 #define twl_has_rtc()   true
82 #else
83 #define twl_has_rtc()   false
84 #endif
85
86 #if defined(CONFIG_TWL4030_USB) || defined(CONFIG_TWL4030_USB_MODULE)
87 #define twl_has_usb()   true
88 #else
89 #define twl_has_usb()   false
90 #endif
91
92
93 /* Triton Core internal information (BEGIN) */
94
95 /* Last - for index max*/
96 #define TWL4030_MODULE_LAST             TWL4030_MODULE_SECURED_REG
97
98 #define TWL4030_NUM_SLAVES              4
99
100
101 /* Base Address defns for twl4030_map[] */
102
103 /* subchip/slave 0 - USB ID */
104 #define TWL4030_BASEADD_USB             0x0000
105
106 /* subchip/slave 1 - AUD ID */
107 #define TWL4030_BASEADD_AUDIO_VOICE     0x0000
108 #define TWL4030_BASEADD_GPIO            0x0098
109 #define TWL4030_BASEADD_INTBR           0x0085
110 #define TWL4030_BASEADD_PIH             0x0080
111 #define TWL4030_BASEADD_TEST            0x004C
112
113 /* subchip/slave 2 - AUX ID */
114 #define TWL4030_BASEADD_INTERRUPTS      0x00B9
115 #define TWL4030_BASEADD_LED             0x00EE
116 #define TWL4030_BASEADD_MADC            0x0000
117 #define TWL4030_BASEADD_MAIN_CHARGE     0x0074
118 #define TWL4030_BASEADD_PRECHARGE       0x00AA
119 #define TWL4030_BASEADD_PWM0            0x00F8
120 #define TWL4030_BASEADD_PWM1            0x00FB
121 #define TWL4030_BASEADD_PWMA            0x00EF
122 #define TWL4030_BASEADD_PWMB            0x00F1
123 #define TWL4030_BASEADD_KEYPAD          0x00D2
124
125 /* subchip/slave 3 - POWER ID */
126 #define TWL4030_BASEADD_BACKUP          0x0014
127 #define TWL4030_BASEADD_INT             0x002E
128 #define TWL4030_BASEADD_PM_MASTER       0x0036
129 #define TWL4030_BASEADD_PM_RECEIVER     0x005B
130 #define TWL4030_BASEADD_RTC             0x001C
131 #define TWL4030_BASEADD_SECURED_REG     0x0000
132
133 /* Triton Core internal information (END) */
134
135
136 /* Few power values */
137 #define R_CFG_BOOT                      0x05
138 #define R_PROTECT_KEY                   0x0E
139
140 /* access control values for R_PROTECT_KEY */
141 #define KEY_UNLOCK1                     0xce
142 #define KEY_UNLOCK2                     0xec
143 #define KEY_LOCK                        0x00
144
145 /* some fields in R_CFG_BOOT */
146 #define HFCLK_FREQ_19p2_MHZ             (1 << 0)
147 #define HFCLK_FREQ_26_MHZ               (2 << 0)
148 #define HFCLK_FREQ_38p4_MHZ             (3 << 0)
149 #define HIGH_PERF_SQ                    (1 << 3)
150
151
152 /*----------------------------------------------------------------------*/
153
154 /* is driver active, bound to a chip? */
155 static bool inuse;
156
157 /* Structure for each TWL4030 Slave */
158 struct twl4030_client {
159         struct i2c_client *client;
160         u8 address;
161
162         /* max numb of i2c_msg required is for read =2 */
163         struct i2c_msg xfer_msg[2];
164
165         /* To lock access to xfer_msg */
166         struct mutex xfer_lock;
167 };
168
169 static struct twl4030_client twl4030_modules[TWL4030_NUM_SLAVES];
170
171
172 /* mapping the module id to slave id and base address */
173 struct twl4030mapping {
174         unsigned char sid;      /* Slave ID */
175         unsigned char base;     /* base address */
176 };
177
178 static struct twl4030mapping twl4030_map[TWL4030_MODULE_LAST + 1] = {
179         /*
180          * NOTE:  don't change this table without updating the
181          * <linux/i2c/twl4030.h> defines for TWL4030_MODULE_*
182          * so they continue to match the order in this table.
183          */
184
185         { 0, TWL4030_BASEADD_USB },
186
187         { 1, TWL4030_BASEADD_AUDIO_VOICE },
188         { 1, TWL4030_BASEADD_GPIO },
189         { 1, TWL4030_BASEADD_INTBR },
190         { 1, TWL4030_BASEADD_PIH },
191         { 1, TWL4030_BASEADD_TEST },
192
193         { 2, TWL4030_BASEADD_KEYPAD },
194         { 2, TWL4030_BASEADD_MADC },
195         { 2, TWL4030_BASEADD_INTERRUPTS },
196         { 2, TWL4030_BASEADD_LED },
197         { 2, TWL4030_BASEADD_MAIN_CHARGE },
198         { 2, TWL4030_BASEADD_PRECHARGE },
199         { 2, TWL4030_BASEADD_PWM0 },
200         { 2, TWL4030_BASEADD_PWM1 },
201         { 2, TWL4030_BASEADD_PWMA },
202         { 2, TWL4030_BASEADD_PWMB },
203
204         { 3, TWL4030_BASEADD_BACKUP },
205         { 3, TWL4030_BASEADD_INT },
206         { 3, TWL4030_BASEADD_PM_MASTER },
207         { 3, TWL4030_BASEADD_PM_RECEIVER },
208         { 3, TWL4030_BASEADD_RTC },
209         { 3, TWL4030_BASEADD_SECURED_REG },
210 };
211
212 /*----------------------------------------------------------------------*/
213
214 /* Exported Functions */
215
216 /**
217  * twl4030_i2c_write - Writes a n bit register in TWL4030
218  * @mod_no: module number
219  * @value: an array of num_bytes+1 containing data to write
220  * @reg: register address (just offset will do)
221  * @num_bytes: number of bytes to transfer
222  *
223  * IMPORTANT: for 'value' parameter: Allocate value num_bytes+1 and
224  * valid data starts at Offset 1.
225  *
226  * Returns the result of operation - 0 is success
227  */
228 int twl4030_i2c_write(u8 mod_no, u8 *value, u8 reg, u8 num_bytes)
229 {
230         int ret;
231         int sid;
232         struct twl4030_client *twl;
233         struct i2c_msg *msg;
234
235         if (unlikely(mod_no > TWL4030_MODULE_LAST)) {
236                 pr_err("%s: invalid module number %d\n", DRIVER_NAME, mod_no);
237                 return -EPERM;
238         }
239         sid = twl4030_map[mod_no].sid;
240         twl = &twl4030_modules[sid];
241
242         if (unlikely(!inuse)) {
243                 pr_err("%s: client %d is not initialized\n", DRIVER_NAME, sid);
244                 return -EPERM;
245         }
246         mutex_lock(&twl->xfer_lock);
247         /*
248          * [MSG1]: fill the register address data
249          * fill the data Tx buffer
250          */
251         msg = &twl->xfer_msg[0];
252         msg->addr = twl->address;
253         msg->len = num_bytes + 1;
254         msg->flags = 0;
255         msg->buf = value;
256         /* over write the first byte of buffer with the register address */
257         *value = twl4030_map[mod_no].base + reg;
258         ret = i2c_transfer(twl->client->adapter, twl->xfer_msg, 1);
259         mutex_unlock(&twl->xfer_lock);
260
261         /* i2cTransfer returns num messages.translate it pls.. */
262         if (ret >= 0)
263                 ret = 0;
264         return ret;
265 }
266 EXPORT_SYMBOL(twl4030_i2c_write);
267
268 /**
269  * twl4030_i2c_read - Reads a n bit register in TWL4030
270  * @mod_no: module number
271  * @value: an array of num_bytes containing data to be read
272  * @reg: register address (just offset will do)
273  * @num_bytes: number of bytes to transfer
274  *
275  * Returns result of operation - num_bytes is success else failure.
276  */
277 int twl4030_i2c_read(u8 mod_no, u8 *value, u8 reg, u8 num_bytes)
278 {
279         int ret;
280         u8 val;
281         int sid;
282         struct twl4030_client *twl;
283         struct i2c_msg *msg;
284
285         if (unlikely(mod_no > TWL4030_MODULE_LAST)) {
286                 pr_err("%s: invalid module number %d\n", DRIVER_NAME, mod_no);
287                 return -EPERM;
288         }
289         sid = twl4030_map[mod_no].sid;
290         twl = &twl4030_modules[sid];
291
292         if (unlikely(!inuse)) {
293                 pr_err("%s: client %d is not initialized\n", DRIVER_NAME, sid);
294                 return -EPERM;
295         }
296         mutex_lock(&twl->xfer_lock);
297         /* [MSG1] fill the register address data */
298         msg = &twl->xfer_msg[0];
299         msg->addr = twl->address;
300         msg->len = 1;
301         msg->flags = 0; /* Read the register value */
302         val = twl4030_map[mod_no].base + reg;
303         msg->buf = &val;
304         /* [MSG2] fill the data rx buffer */
305         msg = &twl->xfer_msg[1];
306         msg->addr = twl->address;
307         msg->flags = I2C_M_RD;  /* Read the register value */
308         msg->len = num_bytes;   /* only n bytes */
309         msg->buf = value;
310         ret = i2c_transfer(twl->client->adapter, twl->xfer_msg, 2);
311         mutex_unlock(&twl->xfer_lock);
312
313         /* i2cTransfer returns num messages.translate it pls.. */
314         if (ret >= 0)
315                 ret = 0;
316         return ret;
317 }
318 EXPORT_SYMBOL(twl4030_i2c_read);
319
320 /**
321  * twl4030_i2c_write_u8 - Writes a 8 bit register in TWL4030
322  * @mod_no: module number
323  * @value: the value to be written 8 bit
324  * @reg: register address (just offset will do)
325  *
326  * Returns result of operation - 0 is success
327  */
328 int twl4030_i2c_write_u8(u8 mod_no, u8 value, u8 reg)
329 {
330
331         /* 2 bytes offset 1 contains the data offset 0 is used by i2c_write */
332         u8 temp_buffer[2] = { 0 };
333         /* offset 1 contains the data */
334         temp_buffer[1] = value;
335         return twl4030_i2c_write(mod_no, temp_buffer, reg, 1);
336 }
337 EXPORT_SYMBOL(twl4030_i2c_write_u8);
338
339 /**
340  * twl4030_i2c_read_u8 - Reads a 8 bit register from TWL4030
341  * @mod_no: module number
342  * @value: the value read 8 bit
343  * @reg: register address (just offset will do)
344  *
345  * Returns result of operation - 0 is success
346  */
347 int twl4030_i2c_read_u8(u8 mod_no, u8 *value, u8 reg)
348 {
349         return twl4030_i2c_read(mod_no, value, reg, 1);
350 }
351 EXPORT_SYMBOL(twl4030_i2c_read_u8);
352
353 /*----------------------------------------------------------------------*/
354
355 static int add_children(struct twl4030_platform_data *pdata)
356 {
357         struct platform_device  *pdev = NULL;
358         struct twl4030_client   *twl = NULL;
359         int                     status = 0;
360
361         if (twl_has_bci() && pdata->bci) {
362                 twl = &twl4030_modules[3];
363
364                 pdev = platform_device_alloc("twl4030_bci", -1);
365                 if (!pdev) {
366                         pr_debug("%s: can't alloc bci dev\n", DRIVER_NAME);
367                         status = -ENOMEM;
368                         goto err;
369                 }
370
371                 if (status == 0) {
372                         pdev->dev.parent = &twl->client->dev;
373                         status = platform_device_add_data(pdev, pdata->bci,
374                                         sizeof(*pdata->bci));
375                         if (status < 0) {
376                                 dev_dbg(&twl->client->dev,
377                                         "can't add bci data, %d\n",
378                                         status);
379                                 goto err;
380                         }
381                 }
382
383                 if (status == 0) {
384                         struct resource r = {
385                                 .start = TWL4030_PWRIRQ_CHG_PRES,
386                                 .flags = IORESOURCE_IRQ,
387                         };
388
389                         status = platform_device_add_resources(pdev, &r, 1);
390                 }
391
392                 if (status == 0)
393                         status = platform_device_add(pdev);
394
395                 if (status < 0) {
396                         platform_device_put(pdev);
397                         dev_dbg(&twl->client->dev,
398                                         "can't create bci dev, %d\n",
399                                         status);
400                         goto err;
401                 }
402         }
403
404         if (twl_has_gpio() && pdata->gpio) {
405                 twl = &twl4030_modules[1];
406
407                 pdev = platform_device_alloc("twl4030_gpio", -1);
408                 if (!pdev) {
409                         pr_debug("%s: can't alloc gpio dev\n", DRIVER_NAME);
410                         status = -ENOMEM;
411                         goto err;
412                 }
413
414                 /* more driver model init */
415                 if (status == 0) {
416                         pdev->dev.parent = &twl->client->dev;
417                         /* device_init_wakeup(&pdev->dev, 1); */
418
419                         status = platform_device_add_data(pdev, pdata->gpio,
420                                         sizeof(*pdata->gpio));
421                         if (status < 0) {
422                                 dev_dbg(&twl->client->dev,
423                                         "can't add gpio data, %d\n",
424                                         status);
425                                 goto err;
426                         }
427                 }
428
429                 /* GPIO module IRQ */
430                 if (status == 0) {
431                         struct resource r = {
432                                 .start = pdata->irq_base + 0,
433                                 .flags = IORESOURCE_IRQ,
434                         };
435
436                         status = platform_device_add_resources(pdev, &r, 1);
437                 }
438
439                 if (status == 0)
440                         status = platform_device_add(pdev);
441
442                 if (status < 0) {
443                         platform_device_put(pdev);
444                         dev_dbg(&twl->client->dev,
445                                         "can't create gpio dev, %d\n",
446                                         status);
447                         goto err;
448                 }
449         }
450
451         if (twl_has_keypad() && pdata->keypad) {
452                 pdev = platform_device_alloc("twl4030_keypad", -1);
453                 if (pdev) {
454                         twl = &twl4030_modules[2];
455                         pdev->dev.parent = &twl->client->dev;
456                         device_init_wakeup(&pdev->dev, 1);
457                         status = platform_device_add_data(pdev, pdata->keypad,
458                                         sizeof(*pdata->keypad));
459                         if (status < 0) {
460                                 dev_dbg(&twl->client->dev,
461                                         "can't add keypad data, %d\n",
462                                         status);
463                                 platform_device_put(pdev);
464                                 goto err;
465                         }
466                         status = platform_device_add(pdev);
467                         if (status < 0) {
468                                 platform_device_put(pdev);
469                                 dev_dbg(&twl->client->dev,
470                                                 "can't create keypad dev, %d\n",
471                                                 status);
472                                 goto err;
473                         }
474                 } else {
475                         pr_debug("%s: can't alloc keypad dev\n", DRIVER_NAME);
476                         status = -ENOMEM;
477                         goto err;
478                 }
479         }
480
481         if (twl_has_madc() && pdata->madc) {
482                 pdev = platform_device_alloc("twl4030_madc", -1);
483                 if (pdev) {
484                         twl = &twl4030_modules[2];
485                         pdev->dev.parent = &twl->client->dev;
486                         device_init_wakeup(&pdev->dev, 1);
487                         status = platform_device_add_data(pdev, pdata->madc,
488                                         sizeof(*pdata->madc));
489                         if (status < 0) {
490                                 platform_device_put(pdev);
491                                 dev_dbg(&twl->client->dev,
492                                         "can't add madc data, %d\n",
493                                         status);
494                                 goto err;
495                         }
496                         status = platform_device_add(pdev);
497                         if (status < 0) {
498                                 platform_device_put(pdev);
499                                 dev_dbg(&twl->client->dev,
500                                                 "can't create madc dev, %d\n",
501                                                 status);
502                                 goto err;
503                         }
504                 } else {
505                         pr_debug("%s: can't alloc madc dev\n", DRIVER_NAME);
506                         status = -ENOMEM;
507                         goto err;
508                 }
509         }
510
511         if (twl_has_rtc()) {
512                 twl = &twl4030_modules[3];
513
514                 pdev = platform_device_alloc("twl4030_rtc", -1);
515                 if (!pdev) {
516                         pr_debug("%s: can't alloc rtc dev\n", DRIVER_NAME);
517                         status = -ENOMEM;
518                 } else {
519                         pdev->dev.parent = &twl->client->dev;
520                         device_init_wakeup(&pdev->dev, 1);
521                 }
522
523                 /*
524                  * REVISIT platform_data here currently might use of
525                  * "msecure" line ... but for now we just expect board
526                  * setup to tell the chip "we are secure" at all times.
527                  * Eventually, Linux might become more aware of such
528                  * HW security concerns, and "least privilege".
529                  */
530
531                 /* RTC module IRQ */
532                 if (status == 0) {
533                         struct resource r = {
534                                 /* REVISIT don't hard-wire this stuff */
535                                 .start = TWL4030_PWRIRQ_RTC,
536                                 .flags = IORESOURCE_IRQ,
537                         };
538
539                         status = platform_device_add_resources(pdev, &r, 1);
540                 }
541
542                 if (status == 0)
543                         status = platform_device_add(pdev);
544
545                 if (status < 0) {
546                         platform_device_put(pdev);
547                         dev_dbg(&twl->client->dev,
548                                         "can't create rtc dev, %d\n",
549                                         status);
550                         goto err;
551                 }
552         }
553
554         if (twl_has_usb() && pdata->usb) {
555                 twl = &twl4030_modules[0];
556
557                 pdev = platform_device_alloc("twl4030_usb", -1);
558                 if (!pdev) {
559                         pr_debug("%s: can't alloc usb dev\n", DRIVER_NAME);
560                         status = -ENOMEM;
561                         goto err;
562                 }
563
564                 if (status == 0) {
565                         pdev->dev.parent = &twl->client->dev;
566                         device_init_wakeup(&pdev->dev, 1);
567                         status = platform_device_add_data(pdev, pdata->usb,
568                                         sizeof(*pdata->usb));
569                         if (status < 0) {
570                                 platform_device_put(pdev);
571                                 dev_dbg(&twl->client->dev,
572                                         "can't add usb data, %d\n",
573                                         status);
574                                 goto err;
575                         }
576                 }
577
578                 if (status == 0) {
579                         struct resource r = {
580                                 .start = TWL4030_PWRIRQ_USB_PRES,
581                                 .flags = IORESOURCE_IRQ,
582                         };
583
584                         status = platform_device_add_resources(pdev, &r, 1);
585                 }
586
587                 if (status == 0)
588                         status = platform_device_add(pdev);
589
590                 if (status < 0) {
591                         platform_device_put(pdev);
592                         dev_dbg(&twl->client->dev,
593                                         "can't create usb dev, %d\n",
594                                         status);
595                 }
596         }
597
598 err:
599         if (status)
600                 pr_err("failed to add twl4030's children (status %d)\n", status);
601         return status;
602 }
603
604 /*----------------------------------------------------------------------*/
605
606 /*
607  * These three functions initialize the on-chip clock framework,
608  * letting it generate the right frequencies for USB, MADC, and
609  * other purposes.
610  */
611 static inline int __init protect_pm_master(void)
612 {
613         int e = 0;
614
615         e = twl4030_i2c_write_u8(TWL4030_MODULE_PM_MASTER, KEY_LOCK,
616                         R_PROTECT_KEY);
617         return e;
618 }
619
620 static inline int __init unprotect_pm_master(void)
621 {
622         int e = 0;
623
624         e |= twl4030_i2c_write_u8(TWL4030_MODULE_PM_MASTER, KEY_UNLOCK1,
625                         R_PROTECT_KEY);
626         e |= twl4030_i2c_write_u8(TWL4030_MODULE_PM_MASTER, KEY_UNLOCK2,
627                         R_PROTECT_KEY);
628         return e;
629 }
630
631 static void __init clocks_init(void)
632 {
633         int e = 0;
634         struct clk *osc;
635         u32 rate;
636         u8 ctrl = HFCLK_FREQ_26_MHZ;
637
638 #if defined(CONFIG_ARCH_OMAP2) || defined(CONFIG_ARCH_OMAP3)
639         if (cpu_is_omap2430())
640                 osc = clk_get(NULL, "osc_ck");
641         else
642                 osc = clk_get(NULL, "osc_sys_ck");
643 #else
644         /* REVISIT for non-OMAP systems, pass the clock rate from
645          * board init code, using platform_data.
646          */
647         osc = ERR_PTR(-EIO);
648 #endif
649         if (IS_ERR(osc)) {
650                 printk(KERN_WARNING "Skipping twl4030 internal clock init and "
651                                 "using bootloader value (unknown osc rate)\n");
652                 return;
653         }
654
655         rate = clk_get_rate(osc);
656         clk_put(osc);
657
658         switch (rate) {
659         case 19200000:
660                 ctrl = HFCLK_FREQ_19p2_MHZ;
661                 break;
662         case 26000000:
663                 ctrl = HFCLK_FREQ_26_MHZ;
664                 break;
665         case 38400000:
666                 ctrl = HFCLK_FREQ_38p4_MHZ;
667                 break;
668         }
669
670         ctrl |= HIGH_PERF_SQ;
671         e |= unprotect_pm_master();
672         /* effect->MADC+USB ck en */
673         e |= twl4030_i2c_write_u8(TWL4030_MODULE_PM_MASTER, ctrl, R_CFG_BOOT);
674         e |= protect_pm_master();
675
676         if (e < 0)
677                 pr_err("%s: clock init err [%d]\n", DRIVER_NAME, e);
678 }
679
680 /*----------------------------------------------------------------------*/
681
682 int twl_init_irq(int irq_num, unsigned irq_base, unsigned irq_end);
683 int twl_exit_irq(void);
684
685 static int twl4030_remove(struct i2c_client *client)
686 {
687         unsigned i;
688         int status;
689
690         status = twl_exit_irq();
691         if (status < 0)
692                 return status;
693
694         for (i = 0; i < TWL4030_NUM_SLAVES; i++) {
695                 struct twl4030_client   *twl = &twl4030_modules[i];
696
697                 if (twl->client && twl->client != client)
698                         i2c_unregister_device(twl->client);
699                 twl4030_modules[i].client = NULL;
700         }
701         inuse = false;
702         return 0;
703 }
704
705 /* NOTE:  this driver only handles a single twl4030/tps659x0 chip */
706 static int
707 twl4030_probe(struct i2c_client *client, const struct i2c_device_id *id)
708 {
709         int                             status;
710         unsigned                        i;
711         struct twl4030_platform_data    *pdata = client->dev.platform_data;
712
713         if (!pdata) {
714                 dev_dbg(&client->dev, "no platform data?\n");
715                 return -EINVAL;
716         }
717
718         if (i2c_check_functionality(client->adapter, I2C_FUNC_I2C) == 0) {
719                 dev_dbg(&client->dev, "can't talk I2C?\n");
720                 return -EIO;
721         }
722
723         if (inuse) {
724                 dev_dbg(&client->dev, "driver is already in use\n");
725                 return -EBUSY;
726         }
727
728         for (i = 0; i < TWL4030_NUM_SLAVES; i++) {
729                 struct twl4030_client   *twl = &twl4030_modules[i];
730
731                 twl->address = client->addr + i;
732                 if (i == 0)
733                         twl->client = client;
734                 else {
735                         twl->client = i2c_new_dummy(client->adapter,
736                                         twl->address);
737                         if (!twl->client) {
738                                 dev_err(&twl->client->dev,
739                                         "can't attach client %d\n", i);
740                                 status = -ENOMEM;
741                                 goto fail;
742                         }
743                         strlcpy(twl->client->name, id->name,
744                                         sizeof(twl->client->name));
745                 }
746                 mutex_init(&twl->xfer_lock);
747         }
748         inuse = true;
749
750         /* setup clock framework */
751         clocks_init();
752
753         /* Maybe init the T2 Interrupt subsystem */
754         if (client->irq
755                         && pdata->irq_base
756                         && pdata->irq_end > pdata->irq_base) {
757                 status = twl_init_irq(client->irq, pdata->irq_base, pdata->irq_end);
758                 if (status < 0)
759                         goto fail;
760                 dev_info(&client->dev, "IRQ %d chains IRQs %d..%d\n",
761                                 client->irq, pdata->irq_base, pdata->irq_end - 1);
762         }
763
764         status = add_children(pdata);
765 fail:
766         if (status < 0)
767                 twl4030_remove(client);
768         return status;
769 }
770
771 static const struct i2c_device_id twl4030_ids[] = {
772         { "twl4030", 0 },       /* "Triton 2" */
773         { "tps65950", 0 },      /* catalog version of twl4030 */
774         { "tps65930", 0 },      /* fewer LDOs and DACs; no charger */
775         { "tps65920", 0 },      /* fewer LDOs; no codec or charger */
776         { "twl5030", 0 },       /* T2 updated */
777         { /* end of list */ },
778 };
779 MODULE_DEVICE_TABLE(i2c, twl4030_ids);
780
781 /* One Client Driver , 4 Clients */
782 static struct i2c_driver twl4030_driver = {
783         .driver.name    = DRIVER_NAME,
784         .id_table       = twl4030_ids,
785         .probe          = twl4030_probe,
786         .remove         = twl4030_remove,
787 };
788
789 static int __init twl4030_init(void)
790 {
791         return i2c_add_driver(&twl4030_driver);
792 }
793 subsys_initcall(twl4030_init);
794
795 static void __exit twl4030_exit(void)
796 {
797         i2c_del_driver(&twl4030_driver);
798 }
799 module_exit(twl4030_exit);
800
801 MODULE_AUTHOR("Texas Instruments, Inc.");
802 MODULE_DESCRIPTION("I2C Core interface for TWL4030");
803 MODULE_LICENSE("GPL");