blob: c2088f4c45472bfc46c2b921e695ede541220ef0 [file] [log] [blame]
Misael Lopez Cruzf19b2822011-04-27 02:14:07 -05001/*
2 * MFD driver for TWL6040 audio device
3 *
4 * Authors: Misael Lopez Cruz <misael.lopez@ti.com>
5 * Jorge Eduardo Candelaria <jorge.candelaria@ti.com>
6 * Peter Ujfalusi <peter.ujfalusi@ti.com>
7 *
8 * Copyright: (C) 2011 Texas Instruments, Inc.
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
13 *
14 * This program is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
22 * 02110-1301 USA
23 *
24 */
25
26#include <linux/module.h>
27#include <linux/types.h>
28#include <linux/slab.h>
29#include <linux/kernel.h>
30#include <linux/platform_device.h>
31#include <linux/gpio.h>
32#include <linux/delay.h>
33#include <linux/i2c/twl.h>
34#include <linux/mfd/core.h>
35#include <linux/mfd/twl6040.h>
36
Peter Ujfalusi31b402e2011-10-12 11:57:54 +030037#define VIBRACTRL_MEMBER(reg) ((reg == TWL6040_REG_VIBCTLL) ? 0 : 1)
38
Misael Lopez Cruzf19b2822011-04-27 02:14:07 -050039int twl6040_reg_read(struct twl6040 *twl6040, unsigned int reg)
40{
41 int ret;
42 u8 val = 0;
43
44 mutex_lock(&twl6040->io_mutex);
Peter Ujfalusi31b402e2011-10-12 11:57:54 +030045 /* Vibra control registers from cache */
46 if (unlikely(reg == TWL6040_REG_VIBCTLL ||
47 reg == TWL6040_REG_VIBCTLR)) {
48 val = twl6040->vibra_ctrl_cache[VIBRACTRL_MEMBER(reg)];
49 } else {
50 ret = twl_i2c_read_u8(TWL_MODULE_AUDIO_VOICE, &val, reg);
51 if (ret < 0) {
52 mutex_unlock(&twl6040->io_mutex);
53 return ret;
54 }
Misael Lopez Cruzf19b2822011-04-27 02:14:07 -050055 }
56 mutex_unlock(&twl6040->io_mutex);
57
58 return val;
59}
60EXPORT_SYMBOL(twl6040_reg_read);
61
62int twl6040_reg_write(struct twl6040 *twl6040, unsigned int reg, u8 val)
63{
64 int ret;
65
66 mutex_lock(&twl6040->io_mutex);
67 ret = twl_i2c_write_u8(TWL_MODULE_AUDIO_VOICE, val, reg);
Peter Ujfalusi31b402e2011-10-12 11:57:54 +030068 /* Cache the vibra control registers */
69 if (reg == TWL6040_REG_VIBCTLL || reg == TWL6040_REG_VIBCTLR)
70 twl6040->vibra_ctrl_cache[VIBRACTRL_MEMBER(reg)] = val;
Misael Lopez Cruzf19b2822011-04-27 02:14:07 -050071 mutex_unlock(&twl6040->io_mutex);
72
73 return ret;
74}
75EXPORT_SYMBOL(twl6040_reg_write);
76
77int twl6040_set_bits(struct twl6040 *twl6040, unsigned int reg, u8 mask)
78{
79 int ret;
80 u8 val;
81
82 mutex_lock(&twl6040->io_mutex);
83 ret = twl_i2c_read_u8(TWL_MODULE_AUDIO_VOICE, &val, reg);
84 if (ret)
85 goto out;
86
87 val |= mask;
88 ret = twl_i2c_write_u8(TWL_MODULE_AUDIO_VOICE, val, reg);
89out:
90 mutex_unlock(&twl6040->io_mutex);
91 return ret;
92}
93EXPORT_SYMBOL(twl6040_set_bits);
94
95int twl6040_clear_bits(struct twl6040 *twl6040, unsigned int reg, u8 mask)
96{
97 int ret;
98 u8 val;
99
100 mutex_lock(&twl6040->io_mutex);
101 ret = twl_i2c_read_u8(TWL_MODULE_AUDIO_VOICE, &val, reg);
102 if (ret)
103 goto out;
104
105 val &= ~mask;
106 ret = twl_i2c_write_u8(TWL_MODULE_AUDIO_VOICE, val, reg);
107out:
108 mutex_unlock(&twl6040->io_mutex);
109 return ret;
110}
111EXPORT_SYMBOL(twl6040_clear_bits);
112
113/* twl6040 codec manual power-up sequence */
114static int twl6040_power_up(struct twl6040 *twl6040)
115{
116 u8 ldoctl, ncpctl, lppllctl;
117 int ret;
118
119 /* enable high-side LDO, reference system and internal oscillator */
120 ldoctl = TWL6040_HSLDOENA | TWL6040_REFENA | TWL6040_OSCENA;
121 ret = twl6040_reg_write(twl6040, TWL6040_REG_LDOCTL, ldoctl);
122 if (ret)
123 return ret;
124 usleep_range(10000, 10500);
125
126 /* enable negative charge pump */
127 ncpctl = TWL6040_NCPENA;
128 ret = twl6040_reg_write(twl6040, TWL6040_REG_NCPCTL, ncpctl);
129 if (ret)
130 goto ncp_err;
131 usleep_range(1000, 1500);
132
133 /* enable low-side LDO */
134 ldoctl |= TWL6040_LSLDOENA;
135 ret = twl6040_reg_write(twl6040, TWL6040_REG_LDOCTL, ldoctl);
136 if (ret)
137 goto lsldo_err;
138 usleep_range(1000, 1500);
139
140 /* enable low-power PLL */
141 lppllctl = TWL6040_LPLLENA;
142 ret = twl6040_reg_write(twl6040, TWL6040_REG_LPPLLCTL, lppllctl);
143 if (ret)
144 goto lppll_err;
145 usleep_range(5000, 5500);
146
147 /* disable internal oscillator */
148 ldoctl &= ~TWL6040_OSCENA;
149 ret = twl6040_reg_write(twl6040, TWL6040_REG_LDOCTL, ldoctl);
150 if (ret)
151 goto osc_err;
152
153 return 0;
154
155osc_err:
156 lppllctl &= ~TWL6040_LPLLENA;
157 twl6040_reg_write(twl6040, TWL6040_REG_LPPLLCTL, lppllctl);
158lppll_err:
159 ldoctl &= ~TWL6040_LSLDOENA;
160 twl6040_reg_write(twl6040, TWL6040_REG_LDOCTL, ldoctl);
161lsldo_err:
162 ncpctl &= ~TWL6040_NCPENA;
163 twl6040_reg_write(twl6040, TWL6040_REG_NCPCTL, ncpctl);
164ncp_err:
165 ldoctl &= ~(TWL6040_HSLDOENA | TWL6040_REFENA | TWL6040_OSCENA);
166 twl6040_reg_write(twl6040, TWL6040_REG_LDOCTL, ldoctl);
167
168 return ret;
169}
170
171/* twl6040 manual power-down sequence */
172static void twl6040_power_down(struct twl6040 *twl6040)
173{
174 u8 ncpctl, ldoctl, lppllctl;
175
176 ncpctl = twl6040_reg_read(twl6040, TWL6040_REG_NCPCTL);
177 ldoctl = twl6040_reg_read(twl6040, TWL6040_REG_LDOCTL);
178 lppllctl = twl6040_reg_read(twl6040, TWL6040_REG_LPPLLCTL);
179
180 /* enable internal oscillator */
181 ldoctl |= TWL6040_OSCENA;
182 twl6040_reg_write(twl6040, TWL6040_REG_LDOCTL, ldoctl);
183 usleep_range(1000, 1500);
184
185 /* disable low-power PLL */
186 lppllctl &= ~TWL6040_LPLLENA;
187 twl6040_reg_write(twl6040, TWL6040_REG_LPPLLCTL, lppllctl);
188
189 /* disable low-side LDO */
190 ldoctl &= ~TWL6040_LSLDOENA;
191 twl6040_reg_write(twl6040, TWL6040_REG_LDOCTL, ldoctl);
192
193 /* disable negative charge pump */
194 ncpctl &= ~TWL6040_NCPENA;
195 twl6040_reg_write(twl6040, TWL6040_REG_NCPCTL, ncpctl);
196
197 /* disable high-side LDO, reference system and internal oscillator */
198 ldoctl &= ~(TWL6040_HSLDOENA | TWL6040_REFENA | TWL6040_OSCENA);
199 twl6040_reg_write(twl6040, TWL6040_REG_LDOCTL, ldoctl);
200}
201
202static irqreturn_t twl6040_naudint_handler(int irq, void *data)
203{
204 struct twl6040 *twl6040 = data;
205 u8 intid, status;
206
207 intid = twl6040_reg_read(twl6040, TWL6040_REG_INTID);
208
209 if (intid & TWL6040_READYINT)
210 complete(&twl6040->ready);
211
212 if (intid & TWL6040_THINT) {
213 status = twl6040_reg_read(twl6040, TWL6040_REG_STATUS);
214 if (status & TWL6040_TSHUTDET) {
Peter Ujfalusi2d7c9572011-09-15 15:39:23 +0300215 dev_warn(twl6040->dev,
Misael Lopez Cruzf19b2822011-04-27 02:14:07 -0500216 "Thermal shutdown, powering-off");
217 twl6040_power(twl6040, 0);
218 } else {
Peter Ujfalusi2d7c9572011-09-15 15:39:23 +0300219 dev_warn(twl6040->dev,
Misael Lopez Cruzf19b2822011-04-27 02:14:07 -0500220 "Leaving thermal shutdown, powering-on");
221 twl6040_power(twl6040, 1);
222 }
223 }
224
225 return IRQ_HANDLED;
226}
227
228static int twl6040_power_up_completion(struct twl6040 *twl6040,
229 int naudint)
230{
231 int time_left;
232 u8 intid;
233
234 time_left = wait_for_completion_timeout(&twl6040->ready,
235 msecs_to_jiffies(144));
236 if (!time_left) {
237 intid = twl6040_reg_read(twl6040, TWL6040_REG_INTID);
238 if (!(intid & TWL6040_READYINT)) {
Peter Ujfalusi2d7c9572011-09-15 15:39:23 +0300239 dev_err(twl6040->dev,
Misael Lopez Cruzf19b2822011-04-27 02:14:07 -0500240 "timeout waiting for READYINT\n");
241 return -ETIMEDOUT;
242 }
243 }
244
245 return 0;
246}
247
248int twl6040_power(struct twl6040 *twl6040, int on)
249{
250 int audpwron = twl6040->audpwron;
251 int naudint = twl6040->irq;
252 int ret = 0;
253
254 mutex_lock(&twl6040->mutex);
255
256 if (on) {
257 /* already powered-up */
258 if (twl6040->power_count++)
259 goto out;
260
261 if (gpio_is_valid(audpwron)) {
262 /* use AUDPWRON line */
263 gpio_set_value(audpwron, 1);
264 /* wait for power-up completion */
265 ret = twl6040_power_up_completion(twl6040, naudint);
266 if (ret) {
Peter Ujfalusi2d7c9572011-09-15 15:39:23 +0300267 dev_err(twl6040->dev,
Misael Lopez Cruzf19b2822011-04-27 02:14:07 -0500268 "automatic power-down failed\n");
269 twl6040->power_count = 0;
270 goto out;
271 }
272 } else {
273 /* use manual power-up sequence */
274 ret = twl6040_power_up(twl6040);
275 if (ret) {
Peter Ujfalusi2d7c9572011-09-15 15:39:23 +0300276 dev_err(twl6040->dev,
Misael Lopez Cruzf19b2822011-04-27 02:14:07 -0500277 "manual power-up failed\n");
278 twl6040->power_count = 0;
279 goto out;
280 }
281 }
Peter Ujfalusicfb7a332011-07-04 10:28:28 +0300282 /* Default PLL configuration after power up */
283 twl6040->pll = TWL6040_SYSCLK_SEL_LPPLL;
Misael Lopez Cruzf19b2822011-04-27 02:14:07 -0500284 twl6040->sysclk = 19200000;
Peter Ujfalusif8447d62012-01-14 20:58:43 +0100285 twl6040->mclk = 32768;
Misael Lopez Cruzf19b2822011-04-27 02:14:07 -0500286 } else {
287 /* already powered-down */
288 if (!twl6040->power_count) {
Peter Ujfalusi2d7c9572011-09-15 15:39:23 +0300289 dev_err(twl6040->dev,
Misael Lopez Cruzf19b2822011-04-27 02:14:07 -0500290 "device is already powered-off\n");
291 ret = -EPERM;
292 goto out;
293 }
294
295 if (--twl6040->power_count)
296 goto out;
297
298 if (gpio_is_valid(audpwron)) {
299 /* use AUDPWRON line */
300 gpio_set_value(audpwron, 0);
301
302 /* power-down sequence latency */
303 usleep_range(500, 700);
304 } else {
305 /* use manual power-down sequence */
306 twl6040_power_down(twl6040);
307 }
Misael Lopez Cruzf19b2822011-04-27 02:14:07 -0500308 twl6040->sysclk = 0;
Peter Ujfalusif8447d62012-01-14 20:58:43 +0100309 twl6040->mclk = 0;
Misael Lopez Cruzf19b2822011-04-27 02:14:07 -0500310 }
311
312out:
313 mutex_unlock(&twl6040->mutex);
314 return ret;
315}
316EXPORT_SYMBOL(twl6040_power);
317
Peter Ujfalusicfb7a332011-07-04 10:28:28 +0300318int twl6040_set_pll(struct twl6040 *twl6040, int pll_id,
Misael Lopez Cruzf19b2822011-04-27 02:14:07 -0500319 unsigned int freq_in, unsigned int freq_out)
320{
321 u8 hppllctl, lppllctl;
322 int ret = 0;
323
324 mutex_lock(&twl6040->mutex);
325
326 hppllctl = twl6040_reg_read(twl6040, TWL6040_REG_HPPLLCTL);
327 lppllctl = twl6040_reg_read(twl6040, TWL6040_REG_LPPLLCTL);
328
Peter Ujfalusicfb7a332011-07-04 10:28:28 +0300329 switch (pll_id) {
330 case TWL6040_SYSCLK_SEL_LPPLL:
Misael Lopez Cruzf19b2822011-04-27 02:14:07 -0500331 /* low-power PLL divider */
332 switch (freq_out) {
333 case 17640000:
334 lppllctl |= TWL6040_LPLLFIN;
335 break;
336 case 19200000:
337 lppllctl &= ~TWL6040_LPLLFIN;
338 break;
339 default:
Peter Ujfalusi2d7c9572011-09-15 15:39:23 +0300340 dev_err(twl6040->dev,
Misael Lopez Cruzf19b2822011-04-27 02:14:07 -0500341 "freq_out %d not supported\n", freq_out);
342 ret = -EINVAL;
343 goto pll_out;
344 }
345 twl6040_reg_write(twl6040, TWL6040_REG_LPPLLCTL, lppllctl);
346
347 switch (freq_in) {
348 case 32768:
349 lppllctl |= TWL6040_LPLLENA;
350 twl6040_reg_write(twl6040, TWL6040_REG_LPPLLCTL,
351 lppllctl);
352 mdelay(5);
353 lppllctl &= ~TWL6040_HPLLSEL;
354 twl6040_reg_write(twl6040, TWL6040_REG_LPPLLCTL,
355 lppllctl);
356 hppllctl &= ~TWL6040_HPLLENA;
357 twl6040_reg_write(twl6040, TWL6040_REG_HPPLLCTL,
358 hppllctl);
359 break;
360 default:
Peter Ujfalusi2d7c9572011-09-15 15:39:23 +0300361 dev_err(twl6040->dev,
Misael Lopez Cruzf19b2822011-04-27 02:14:07 -0500362 "freq_in %d not supported\n", freq_in);
363 ret = -EINVAL;
364 goto pll_out;
365 }
Misael Lopez Cruzf19b2822011-04-27 02:14:07 -0500366 break;
Peter Ujfalusicfb7a332011-07-04 10:28:28 +0300367 case TWL6040_SYSCLK_SEL_HPPLL:
Misael Lopez Cruzf19b2822011-04-27 02:14:07 -0500368 /* high-performance PLL can provide only 19.2 MHz */
369 if (freq_out != 19200000) {
Peter Ujfalusi2d7c9572011-09-15 15:39:23 +0300370 dev_err(twl6040->dev,
Misael Lopez Cruzf19b2822011-04-27 02:14:07 -0500371 "freq_out %d not supported\n", freq_out);
372 ret = -EINVAL;
373 goto pll_out;
374 }
375
376 hppllctl &= ~TWL6040_MCLK_MSK;
377
378 switch (freq_in) {
379 case 12000000:
380 /* PLL enabled, active mode */
381 hppllctl |= TWL6040_MCLK_12000KHZ |
382 TWL6040_HPLLENA;
383 break;
384 case 19200000:
385 /*
386 * PLL disabled
387 * (enable PLL if MCLK jitter quality
388 * doesn't meet specification)
389 */
390 hppllctl |= TWL6040_MCLK_19200KHZ;
391 break;
392 case 26000000:
393 /* PLL enabled, active mode */
394 hppllctl |= TWL6040_MCLK_26000KHZ |
395 TWL6040_HPLLENA;
396 break;
397 case 38400000:
398 /* PLL enabled, active mode */
399 hppllctl |= TWL6040_MCLK_38400KHZ |
400 TWL6040_HPLLENA;
401 break;
402 default:
Peter Ujfalusi2d7c9572011-09-15 15:39:23 +0300403 dev_err(twl6040->dev,
Misael Lopez Cruzf19b2822011-04-27 02:14:07 -0500404 "freq_in %d not supported\n", freq_in);
405 ret = -EINVAL;
406 goto pll_out;
407 }
408
409 /* enable clock slicer to ensure input waveform is square */
410 hppllctl |= TWL6040_HPLLSQRENA;
411
412 twl6040_reg_write(twl6040, TWL6040_REG_HPPLLCTL, hppllctl);
413 usleep_range(500, 700);
414 lppllctl |= TWL6040_HPLLSEL;
415 twl6040_reg_write(twl6040, TWL6040_REG_LPPLLCTL, lppllctl);
416 lppllctl &= ~TWL6040_LPLLENA;
417 twl6040_reg_write(twl6040, TWL6040_REG_LPPLLCTL, lppllctl);
Misael Lopez Cruzf19b2822011-04-27 02:14:07 -0500418 break;
419 default:
Peter Ujfalusi2d7c9572011-09-15 15:39:23 +0300420 dev_err(twl6040->dev, "unknown pll id %d\n", pll_id);
Misael Lopez Cruzf19b2822011-04-27 02:14:07 -0500421 ret = -EINVAL;
422 goto pll_out;
423 }
424
425 twl6040->sysclk = freq_out;
Peter Ujfalusif8447d62012-01-14 20:58:43 +0100426 twl6040->mclk = freq_in;
Peter Ujfalusicfb7a332011-07-04 10:28:28 +0300427 twl6040->pll = pll_id;
Misael Lopez Cruzf19b2822011-04-27 02:14:07 -0500428
429pll_out:
430 mutex_unlock(&twl6040->mutex);
431 return ret;
432}
433EXPORT_SYMBOL(twl6040_set_pll);
434
Peter Ujfalusicfb7a332011-07-04 10:28:28 +0300435int twl6040_get_pll(struct twl6040 *twl6040)
Misael Lopez Cruzf19b2822011-04-27 02:14:07 -0500436{
Peter Ujfalusicfb7a332011-07-04 10:28:28 +0300437 if (twl6040->power_count)
438 return twl6040->pll;
439 else
440 return -ENODEV;
Misael Lopez Cruzf19b2822011-04-27 02:14:07 -0500441}
442EXPORT_SYMBOL(twl6040_get_pll);
443
444unsigned int twl6040_get_sysclk(struct twl6040 *twl6040)
445{
446 return twl6040->sysclk;
447}
448EXPORT_SYMBOL(twl6040_get_sysclk);
449
Peter Ujfalusi70601ec2011-10-12 11:57:55 +0300450/* Get the combined status of the vibra control register */
451int twl6040_get_vibralr_status(struct twl6040 *twl6040)
452{
453 u8 status;
454
455 status = twl6040->vibra_ctrl_cache[0] | twl6040->vibra_ctrl_cache[1];
456 status &= (TWL6040_VIBENA | TWL6040_VIBSEL);
457
458 return status;
459}
460EXPORT_SYMBOL(twl6040_get_vibralr_status);
461
Peter Ujfalusi0f962ae2011-07-05 11:40:33 +0300462static struct resource twl6040_vibra_rsrc[] = {
463 {
464 .flags = IORESOURCE_IRQ,
465 },
466};
467
468static struct resource twl6040_codec_rsrc[] = {
469 {
470 .flags = IORESOURCE_IRQ,
471 },
472};
473
Misael Lopez Cruzf19b2822011-04-27 02:14:07 -0500474static int __devinit twl6040_probe(struct platform_device *pdev)
475{
476 struct twl4030_audio_data *pdata = pdev->dev.platform_data;
477 struct twl6040 *twl6040;
478 struct mfd_cell *cell = NULL;
479 int ret, children = 0;
480
481 if (!pdata) {
482 dev_err(&pdev->dev, "Platform data is missing\n");
483 return -EINVAL;
484 }
485
Peter Ujfalusid20e1d22011-07-04 20:15:19 +0300486 /* In order to operate correctly we need valid interrupt config */
487 if (!pdata->naudint_irq || !pdata->irq_base) {
488 dev_err(&pdev->dev, "Invalid IRQ configuration\n");
489 return -EINVAL;
490 }
491
Misael Lopez Cruzf19b2822011-04-27 02:14:07 -0500492 twl6040 = kzalloc(sizeof(struct twl6040), GFP_KERNEL);
493 if (!twl6040)
494 return -ENOMEM;
495
496 platform_set_drvdata(pdev, twl6040);
497
Misael Lopez Cruzf19b2822011-04-27 02:14:07 -0500498 twl6040->dev = &pdev->dev;
Misael Lopez Cruzf19b2822011-04-27 02:14:07 -0500499 twl6040->irq = pdata->naudint_irq;
500 twl6040->irq_base = pdata->irq_base;
501
502 mutex_init(&twl6040->mutex);
503 mutex_init(&twl6040->io_mutex);
504 init_completion(&twl6040->ready);
505
506 twl6040->rev = twl6040_reg_read(twl6040, TWL6040_REG_ASICREV);
507
Peter Ujfalusi77f63e02011-09-15 15:39:26 +0300508 /* ERRATA: Automatic power-up is not possible in ES1.0 */
509 if (twl6040_get_revid(twl6040) > TWL6040_REV_ES1_0)
510 twl6040->audpwron = pdata->audpwron_gpio;
511 else
512 twl6040->audpwron = -EINVAL;
513
Misael Lopez Cruzf19b2822011-04-27 02:14:07 -0500514 if (gpio_is_valid(twl6040->audpwron)) {
Axel Linb04edb92011-12-01 09:55:07 +0800515 ret = gpio_request_one(twl6040->audpwron, GPIOF_OUT_INIT_LOW,
516 "audpwron");
Misael Lopez Cruzf19b2822011-04-27 02:14:07 -0500517 if (ret)
518 goto gpio1_err;
Misael Lopez Cruzf19b2822011-04-27 02:14:07 -0500519 }
520
Peter Ujfalusid20e1d22011-07-04 20:15:19 +0300521 /* codec interrupt */
522 ret = twl6040_irq_init(twl6040);
523 if (ret)
524 goto gpio2_err;
Misael Lopez Cruzf19b2822011-04-27 02:14:07 -0500525
Peter Ujfalusi1b7c4722011-07-04 20:16:23 +0300526 ret = request_threaded_irq(twl6040->irq_base + TWL6040_IRQ_READY,
527 NULL, twl6040_naudint_handler, 0,
528 "twl6040_irq_ready", twl6040);
Peter Ujfalusid20e1d22011-07-04 20:15:19 +0300529 if (ret) {
530 dev_err(twl6040->dev, "READY IRQ request failed: %d\n",
531 ret);
532 goto irq_err;
Misael Lopez Cruzf19b2822011-04-27 02:14:07 -0500533 }
534
535 /* dual-access registers controlled by I2C only */
536 twl6040_set_bits(twl6040, TWL6040_REG_ACCCTL, TWL6040_I2CSEL);
537
538 if (pdata->codec) {
Peter Ujfalusi0f962ae2011-07-05 11:40:33 +0300539 int irq = twl6040->irq_base + TWL6040_IRQ_PLUG;
540
Misael Lopez Cruzf19b2822011-04-27 02:14:07 -0500541 cell = &twl6040->cells[children];
542 cell->name = "twl6040-codec";
Peter Ujfalusi0f962ae2011-07-05 11:40:33 +0300543 twl6040_codec_rsrc[0].start = irq;
544 twl6040_codec_rsrc[0].end = irq;
545 cell->resources = twl6040_codec_rsrc;
546 cell->num_resources = ARRAY_SIZE(twl6040_codec_rsrc);
Peter Ujfalusi6c448632011-06-01 13:05:10 +0300547 cell->platform_data = pdata->codec;
548 cell->pdata_size = sizeof(*pdata->codec);
Misael Lopez Cruzf19b2822011-04-27 02:14:07 -0500549 children++;
550 }
551
552 if (pdata->vibra) {
Peter Ujfalusi0f962ae2011-07-05 11:40:33 +0300553 int irq = twl6040->irq_base + TWL6040_IRQ_VIB;
554
Misael Lopez Cruzf19b2822011-04-27 02:14:07 -0500555 cell = &twl6040->cells[children];
556 cell->name = "twl6040-vibra";
Peter Ujfalusi0f962ae2011-07-05 11:40:33 +0300557 twl6040_vibra_rsrc[0].start = irq;
558 twl6040_vibra_rsrc[0].end = irq;
559 cell->resources = twl6040_vibra_rsrc;
560 cell->num_resources = ARRAY_SIZE(twl6040_vibra_rsrc);
561
Misael Lopez Cruzf19b2822011-04-27 02:14:07 -0500562 cell->platform_data = pdata->vibra;
563 cell->pdata_size = sizeof(*pdata->vibra);
564 children++;
565 }
566
567 if (children) {
568 ret = mfd_add_devices(&pdev->dev, pdev->id, twl6040->cells,
569 children, NULL, 0);
570 if (ret)
571 goto mfd_err;
572 } else {
573 dev_err(&pdev->dev, "No platform data found for children\n");
574 ret = -ENODEV;
575 goto mfd_err;
576 }
577
578 return 0;
579
580mfd_err:
Peter Ujfalusi1b7c4722011-07-04 20:16:23 +0300581 free_irq(twl6040->irq_base + TWL6040_IRQ_READY, twl6040);
Misael Lopez Cruzf19b2822011-04-27 02:14:07 -0500582irq_err:
Peter Ujfalusid20e1d22011-07-04 20:15:19 +0300583 twl6040_irq_exit(twl6040);
Misael Lopez Cruzf19b2822011-04-27 02:14:07 -0500584gpio2_err:
585 if (gpio_is_valid(twl6040->audpwron))
586 gpio_free(twl6040->audpwron);
587gpio1_err:
588 platform_set_drvdata(pdev, NULL);
589 kfree(twl6040);
Misael Lopez Cruzf19b2822011-04-27 02:14:07 -0500590 return ret;
591}
592
593static int __devexit twl6040_remove(struct platform_device *pdev)
594{
595 struct twl6040 *twl6040 = platform_get_drvdata(pdev);
596
597 if (twl6040->power_count)
598 twl6040_power(twl6040, 0);
599
600 if (gpio_is_valid(twl6040->audpwron))
601 gpio_free(twl6040->audpwron);
602
Peter Ujfalusi1b7c4722011-07-04 20:16:23 +0300603 free_irq(twl6040->irq_base + TWL6040_IRQ_READY, twl6040);
Peter Ujfalusid20e1d22011-07-04 20:15:19 +0300604 twl6040_irq_exit(twl6040);
Misael Lopez Cruzf19b2822011-04-27 02:14:07 -0500605
606 mfd_remove_devices(&pdev->dev);
607 platform_set_drvdata(pdev, NULL);
608 kfree(twl6040);
Misael Lopez Cruzf19b2822011-04-27 02:14:07 -0500609
610 return 0;
611}
612
613static struct platform_driver twl6040_driver = {
614 .probe = twl6040_probe,
615 .remove = __devexit_p(twl6040_remove),
616 .driver = {
617 .owner = THIS_MODULE,
618 .name = "twl6040",
619 },
620};
621
Mark Brown65349d62011-11-23 22:58:34 +0000622module_platform_driver(twl6040_driver);
Misael Lopez Cruzf19b2822011-04-27 02:14:07 -0500623
624MODULE_DESCRIPTION("TWL6040 MFD");
625MODULE_AUTHOR("Misael Lopez Cruz <misael.lopez@ti.com>");
626MODULE_AUTHOR("Jorge Eduardo Candelaria <jorge.candelaria@ti.com>");
627MODULE_LICENSE("GPL");
628MODULE_ALIAS("platform:twl6040");