1 /*
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/err.h>
31 #include <linux/platform_device.h>
32 #include <linux/of.h>
33 #include <linux/of_irq.h>
34 #include <linux/of_gpio.h>
35 #include <linux/of_platform.h>
36 #include <linux/gpio.h>
37 #include <linux/delay.h>
38 #include <linux/i2c.h>
39 #include <linux/regmap.h>
40 #include <linux/mfd/core.h>
41 #include <linux/mfd/twl6040.h>
42 #include <linux/regulator/consumer.h>
43
44 #define VIBRACTRL_MEMBER(reg) ((reg == TWL6040_REG_VIBCTLL) ? 0 : 1)
45 #define TWL6040_NUM_SUPPLIES (2)
46
47 static struct reg_default twl6040_defaults[] = {
48 { 0x01, 0x4B }, /* REG_ASICID (ro) */
49 { 0x02, 0x00 }, /* REG_ASICREV (ro) */
50 { 0x03, 0x00 }, /* REG_INTID */
51 { 0x04, 0x00 }, /* REG_INTMR */
52 { 0x05, 0x00 }, /* REG_NCPCTRL */
53 { 0x06, 0x00 }, /* REG_LDOCTL */
54 { 0x07, 0x60 }, /* REG_HPPLLCTL */
55 { 0x08, 0x00 }, /* REG_LPPLLCTL */
56 { 0x09, 0x4A }, /* REG_LPPLLDIV */
57 { 0x0A, 0x00 }, /* REG_AMICBCTL */
58 { 0x0B, 0x00 }, /* REG_DMICBCTL */
59 { 0x0C, 0x00 }, /* REG_MICLCTL */
60 { 0x0D, 0x00 }, /* REG_MICRCTL */
61 { 0x0E, 0x00 }, /* REG_MICGAIN */
62 { 0x0F, 0x1B }, /* REG_LINEGAIN */
63 { 0x10, 0x00 }, /* REG_HSLCTL */
64 { 0x11, 0x00 }, /* REG_HSRCTL */
65 { 0x12, 0x00 }, /* REG_HSGAIN */
66 { 0x13, 0x00 }, /* REG_EARCTL */
67 { 0x14, 0x00 }, /* REG_HFLCTL */
68 { 0x15, 0x00 }, /* REG_HFLGAIN */
69 { 0x16, 0x00 }, /* REG_HFRCTL */
70 { 0x17, 0x00 }, /* REG_HFRGAIN */
71 { 0x18, 0x00 }, /* REG_VIBCTLL */
72 { 0x19, 0x00 }, /* REG_VIBDATL */
73 { 0x1A, 0x00 }, /* REG_VIBCTLR */
74 { 0x1B, 0x00 }, /* REG_VIBDATR */
75 { 0x1C, 0x00 }, /* REG_HKCTL1 */
76 { 0x1D, 0x00 }, /* REG_HKCTL2 */
77 { 0x1E, 0x00 }, /* REG_GPOCTL */
78 { 0x1F, 0x00 }, /* REG_ALB */
79 { 0x20, 0x00 }, /* REG_DLB */
80 /* 0x28, REG_TRIM1 */
81 /* 0x29, REG_TRIM2 */
82 /* 0x2A, REG_TRIM3 */
83 /* 0x2B, REG_HSOTRIM */
84 /* 0x2C, REG_HFOTRIM */
85 { 0x2D, 0x08 }, /* REG_ACCCTL */
86 { 0x2E, 0x00 }, /* REG_STATUS (ro) */
87 };
88
89 static struct reg_default twl6040_patch[] = {
90 /*
91 * Select I2C bus access to dual access registers
92 * Interrupt register is cleared on read
93 * Select fast mode for i2c (400KHz)
94 */
95 { TWL6040_REG_ACCCTL,
96 TWL6040_I2CSEL | TWL6040_INTCLRMODE | TWL6040_I2CMODE(1) },
97 };
98
99
twl6040_has_vibra(struct device_node * parent)100 static bool twl6040_has_vibra(struct device_node *parent)
101 {
102 struct device_node *node;
103
104 node = of_get_child_by_name(parent, "vibra");
105 if (node) {
106 of_node_put(node);
107 return true;
108 }
109
110 return false;
111 }
112
twl6040_reg_read(struct twl6040 * twl6040,unsigned int reg)113 int twl6040_reg_read(struct twl6040 *twl6040, unsigned int reg)
114 {
115 int ret;
116 unsigned int val;
117
118 ret = regmap_read(twl6040->regmap, reg, &val);
119 if (ret < 0)
120 return ret;
121
122 return val;
123 }
124 EXPORT_SYMBOL(twl6040_reg_read);
125
twl6040_reg_write(struct twl6040 * twl6040,unsigned int reg,u8 val)126 int twl6040_reg_write(struct twl6040 *twl6040, unsigned int reg, u8 val)
127 {
128 int ret;
129
130 ret = regmap_write(twl6040->regmap, reg, val);
131
132 return ret;
133 }
134 EXPORT_SYMBOL(twl6040_reg_write);
135
twl6040_set_bits(struct twl6040 * twl6040,unsigned int reg,u8 mask)136 int twl6040_set_bits(struct twl6040 *twl6040, unsigned int reg, u8 mask)
137 {
138 return regmap_update_bits(twl6040->regmap, reg, mask, mask);
139 }
140 EXPORT_SYMBOL(twl6040_set_bits);
141
twl6040_clear_bits(struct twl6040 * twl6040,unsigned int reg,u8 mask)142 int twl6040_clear_bits(struct twl6040 *twl6040, unsigned int reg, u8 mask)
143 {
144 return regmap_update_bits(twl6040->regmap, reg, mask, 0);
145 }
146 EXPORT_SYMBOL(twl6040_clear_bits);
147
148 /* twl6040 codec manual power-up sequence */
twl6040_power_up_manual(struct twl6040 * twl6040)149 static int twl6040_power_up_manual(struct twl6040 *twl6040)
150 {
151 u8 ldoctl, ncpctl, lppllctl;
152 int ret;
153
154 /* enable high-side LDO, reference system and internal oscillator */
155 ldoctl = TWL6040_HSLDOENA | TWL6040_REFENA | TWL6040_OSCENA;
156 ret = twl6040_reg_write(twl6040, TWL6040_REG_LDOCTL, ldoctl);
157 if (ret)
158 return ret;
159 usleep_range(10000, 10500);
160
161 /* enable negative charge pump */
162 ncpctl = TWL6040_NCPENA;
163 ret = twl6040_reg_write(twl6040, TWL6040_REG_NCPCTL, ncpctl);
164 if (ret)
165 goto ncp_err;
166 usleep_range(1000, 1500);
167
168 /* enable low-side LDO */
169 ldoctl |= TWL6040_LSLDOENA;
170 ret = twl6040_reg_write(twl6040, TWL6040_REG_LDOCTL, ldoctl);
171 if (ret)
172 goto lsldo_err;
173 usleep_range(1000, 1500);
174
175 /* enable low-power PLL */
176 lppllctl = TWL6040_LPLLENA;
177 ret = twl6040_reg_write(twl6040, TWL6040_REG_LPPLLCTL, lppllctl);
178 if (ret)
179 goto lppll_err;
180 usleep_range(5000, 5500);
181
182 /* disable internal oscillator */
183 ldoctl &= ~TWL6040_OSCENA;
184 ret = twl6040_reg_write(twl6040, TWL6040_REG_LDOCTL, ldoctl);
185 if (ret)
186 goto osc_err;
187
188 return 0;
189
190 osc_err:
191 lppllctl &= ~TWL6040_LPLLENA;
192 twl6040_reg_write(twl6040, TWL6040_REG_LPPLLCTL, lppllctl);
193 lppll_err:
194 ldoctl &= ~TWL6040_LSLDOENA;
195 twl6040_reg_write(twl6040, TWL6040_REG_LDOCTL, ldoctl);
196 lsldo_err:
197 ncpctl &= ~TWL6040_NCPENA;
198 twl6040_reg_write(twl6040, TWL6040_REG_NCPCTL, ncpctl);
199 ncp_err:
200 ldoctl &= ~(TWL6040_HSLDOENA | TWL6040_REFENA | TWL6040_OSCENA);
201 twl6040_reg_write(twl6040, TWL6040_REG_LDOCTL, ldoctl);
202
203 dev_err(twl6040->dev, "manual power-up failed\n");
204 return ret;
205 }
206
207 /* twl6040 manual power-down sequence */
twl6040_power_down_manual(struct twl6040 * twl6040)208 static void twl6040_power_down_manual(struct twl6040 *twl6040)
209 {
210 u8 ncpctl, ldoctl, lppllctl;
211
212 ncpctl = twl6040_reg_read(twl6040, TWL6040_REG_NCPCTL);
213 ldoctl = twl6040_reg_read(twl6040, TWL6040_REG_LDOCTL);
214 lppllctl = twl6040_reg_read(twl6040, TWL6040_REG_LPPLLCTL);
215
216 /* enable internal oscillator */
217 ldoctl |= TWL6040_OSCENA;
218 twl6040_reg_write(twl6040, TWL6040_REG_LDOCTL, ldoctl);
219 usleep_range(1000, 1500);
220
221 /* disable low-power PLL */
222 lppllctl &= ~TWL6040_LPLLENA;
223 twl6040_reg_write(twl6040, TWL6040_REG_LPPLLCTL, lppllctl);
224
225 /* disable low-side LDO */
226 ldoctl &= ~TWL6040_LSLDOENA;
227 twl6040_reg_write(twl6040, TWL6040_REG_LDOCTL, ldoctl);
228
229 /* disable negative charge pump */
230 ncpctl &= ~TWL6040_NCPENA;
231 twl6040_reg_write(twl6040, TWL6040_REG_NCPCTL, ncpctl);
232
233 /* disable high-side LDO, reference system and internal oscillator */
234 ldoctl &= ~(TWL6040_HSLDOENA | TWL6040_REFENA | TWL6040_OSCENA);
235 twl6040_reg_write(twl6040, TWL6040_REG_LDOCTL, ldoctl);
236 }
237
twl6040_readyint_handler(int irq,void * data)238 static irqreturn_t twl6040_readyint_handler(int irq, void *data)
239 {
240 struct twl6040 *twl6040 = data;
241
242 complete(&twl6040->ready);
243
244 return IRQ_HANDLED;
245 }
246
twl6040_thint_handler(int irq,void * data)247 static irqreturn_t twl6040_thint_handler(int irq, void *data)
248 {
249 struct twl6040 *twl6040 = data;
250 u8 status;
251
252 status = twl6040_reg_read(twl6040, TWL6040_REG_STATUS);
253 if (status & TWL6040_TSHUTDET) {
254 dev_warn(twl6040->dev, "Thermal shutdown, powering-off");
255 twl6040_power(twl6040, 0);
256 } else {
257 dev_warn(twl6040->dev, "Leaving thermal shutdown, powering-on");
258 twl6040_power(twl6040, 1);
259 }
260
261 return IRQ_HANDLED;
262 }
263
twl6040_power_up_automatic(struct twl6040 * twl6040)264 static int twl6040_power_up_automatic(struct twl6040 *twl6040)
265 {
266 int time_left;
267
268 gpio_set_value(twl6040->audpwron, 1);
269
270 time_left = wait_for_completion_timeout(&twl6040->ready,
271 msecs_to_jiffies(144));
272 if (!time_left) {
273 u8 intid;
274
275 dev_warn(twl6040->dev, "timeout waiting for READYINT\n");
276 intid = twl6040_reg_read(twl6040, TWL6040_REG_INTID);
277 if (!(intid & TWL6040_READYINT)) {
278 dev_err(twl6040->dev, "automatic power-up failed\n");
279 gpio_set_value(twl6040->audpwron, 0);
280 return -ETIMEDOUT;
281 }
282 }
283
284 return 0;
285 }
286
twl6040_power(struct twl6040 * twl6040,int on)287 int twl6040_power(struct twl6040 *twl6040, int on)
288 {
289 int ret = 0;
290
291 mutex_lock(&twl6040->mutex);
292
293 if (on) {
294 /* already powered-up */
295 if (twl6040->power_count++)
296 goto out;
297
298 clk_prepare_enable(twl6040->clk32k);
299
300 /* Allow writes to the chip */
301 regcache_cache_only(twl6040->regmap, false);
302
303 if (gpio_is_valid(twl6040->audpwron)) {
304 /* use automatic power-up sequence */
305 ret = twl6040_power_up_automatic(twl6040);
306 if (ret) {
307 twl6040->power_count = 0;
308 goto out;
309 }
310 } else {
311 /* use manual power-up sequence */
312 ret = twl6040_power_up_manual(twl6040);
313 if (ret) {
314 twl6040->power_count = 0;
315 goto out;
316 }
317 }
318
319 /* Sync with the HW */
320 regcache_sync(twl6040->regmap);
321
322 /* Default PLL configuration after power up */
323 twl6040->pll = TWL6040_SYSCLK_SEL_LPPLL;
324 twl6040->sysclk = 19200000;
325 twl6040->mclk = 32768;
326 } else {
327 /* already powered-down */
328 if (!twl6040->power_count) {
329 dev_err(twl6040->dev,
330 "device is already powered-off\n");
331 ret = -EPERM;
332 goto out;
333 }
334
335 if (--twl6040->power_count)
336 goto out;
337
338 if (gpio_is_valid(twl6040->audpwron)) {
339 /* use AUDPWRON line */
340 gpio_set_value(twl6040->audpwron, 0);
341
342 /* power-down sequence latency */
343 usleep_range(500, 700);
344 } else {
345 /* use manual power-down sequence */
346 twl6040_power_down_manual(twl6040);
347 }
348
349 /* Set regmap to cache only and mark it as dirty */
350 regcache_cache_only(twl6040->regmap, true);
351 regcache_mark_dirty(twl6040->regmap);
352
353 twl6040->sysclk = 0;
354 twl6040->mclk = 0;
355
356 clk_disable_unprepare(twl6040->clk32k);
357 }
358
359 out:
360 mutex_unlock(&twl6040->mutex);
361 return ret;
362 }
363 EXPORT_SYMBOL(twl6040_power);
364
twl6040_set_pll(struct twl6040 * twl6040,int pll_id,unsigned int freq_in,unsigned int freq_out)365 int twl6040_set_pll(struct twl6040 *twl6040, int pll_id,
366 unsigned int freq_in, unsigned int freq_out)
367 {
368 u8 hppllctl, lppllctl;
369 int ret = 0;
370
371 mutex_lock(&twl6040->mutex);
372
373 hppllctl = twl6040_reg_read(twl6040, TWL6040_REG_HPPLLCTL);
374 lppllctl = twl6040_reg_read(twl6040, TWL6040_REG_LPPLLCTL);
375
376 /* Force full reconfiguration when switching between PLL */
377 if (pll_id != twl6040->pll) {
378 twl6040->sysclk = 0;
379 twl6040->mclk = 0;
380 }
381
382 switch (pll_id) {
383 case TWL6040_SYSCLK_SEL_LPPLL:
384 /* low-power PLL divider */
385 /* Change the sysclk configuration only if it has been canged */
386 if (twl6040->sysclk != freq_out) {
387 switch (freq_out) {
388 case 17640000:
389 lppllctl |= TWL6040_LPLLFIN;
390 break;
391 case 19200000:
392 lppllctl &= ~TWL6040_LPLLFIN;
393 break;
394 default:
395 dev_err(twl6040->dev,
396 "freq_out %d not supported\n",
397 freq_out);
398 ret = -EINVAL;
399 goto pll_out;
400 }
401 twl6040_reg_write(twl6040, TWL6040_REG_LPPLLCTL,
402 lppllctl);
403 }
404
405 /* The PLL in use has not been change, we can exit */
406 if (twl6040->pll == pll_id)
407 break;
408
409 switch (freq_in) {
410 case 32768:
411 lppllctl |= TWL6040_LPLLENA;
412 twl6040_reg_write(twl6040, TWL6040_REG_LPPLLCTL,
413 lppllctl);
414 mdelay(5);
415 lppllctl &= ~TWL6040_HPLLSEL;
416 twl6040_reg_write(twl6040, TWL6040_REG_LPPLLCTL,
417 lppllctl);
418 hppllctl &= ~TWL6040_HPLLENA;
419 twl6040_reg_write(twl6040, TWL6040_REG_HPPLLCTL,
420 hppllctl);
421 break;
422 default:
423 dev_err(twl6040->dev,
424 "freq_in %d not supported\n", freq_in);
425 ret = -EINVAL;
426 goto pll_out;
427 }
428 break;
429 case TWL6040_SYSCLK_SEL_HPPLL:
430 /* high-performance PLL can provide only 19.2 MHz */
431 if (freq_out != 19200000) {
432 dev_err(twl6040->dev,
433 "freq_out %d not supported\n", freq_out);
434 ret = -EINVAL;
435 goto pll_out;
436 }
437
438 if (twl6040->mclk != freq_in) {
439 hppllctl &= ~TWL6040_MCLK_MSK;
440
441 switch (freq_in) {
442 case 12000000:
443 /* PLL enabled, active mode */
444 hppllctl |= TWL6040_MCLK_12000KHZ |
445 TWL6040_HPLLENA;
446 break;
447 case 19200000:
448 /* PLL enabled, bypass mode */
449 hppllctl |= TWL6040_MCLK_19200KHZ |
450 TWL6040_HPLLBP | TWL6040_HPLLENA;
451 break;
452 case 26000000:
453 /* PLL enabled, active mode */
454 hppllctl |= TWL6040_MCLK_26000KHZ |
455 TWL6040_HPLLENA;
456 break;
457 case 38400000:
458 /* PLL enabled, bypass mode */
459 hppllctl |= TWL6040_MCLK_38400KHZ |
460 TWL6040_HPLLBP | TWL6040_HPLLENA;
461 break;
462 default:
463 dev_err(twl6040->dev,
464 "freq_in %d not supported\n", freq_in);
465 ret = -EINVAL;
466 goto pll_out;
467 }
468
469 /*
470 * enable clock slicer to ensure input waveform is
471 * square
472 */
473 hppllctl |= TWL6040_HPLLSQRENA;
474
475 twl6040_reg_write(twl6040, TWL6040_REG_HPPLLCTL,
476 hppllctl);
477 usleep_range(500, 700);
478 lppllctl |= TWL6040_HPLLSEL;
479 twl6040_reg_write(twl6040, TWL6040_REG_LPPLLCTL,
480 lppllctl);
481 lppllctl &= ~TWL6040_LPLLENA;
482 twl6040_reg_write(twl6040, TWL6040_REG_LPPLLCTL,
483 lppllctl);
484 }
485 break;
486 default:
487 dev_err(twl6040->dev, "unknown pll id %d\n", pll_id);
488 ret = -EINVAL;
489 goto pll_out;
490 }
491
492 twl6040->sysclk = freq_out;
493 twl6040->mclk = freq_in;
494 twl6040->pll = pll_id;
495
496 pll_out:
497 mutex_unlock(&twl6040->mutex);
498 return ret;
499 }
500 EXPORT_SYMBOL(twl6040_set_pll);
501
twl6040_get_pll(struct twl6040 * twl6040)502 int twl6040_get_pll(struct twl6040 *twl6040)
503 {
504 if (twl6040->power_count)
505 return twl6040->pll;
506 else
507 return -ENODEV;
508 }
509 EXPORT_SYMBOL(twl6040_get_pll);
510
twl6040_get_sysclk(struct twl6040 * twl6040)511 unsigned int twl6040_get_sysclk(struct twl6040 *twl6040)
512 {
513 return twl6040->sysclk;
514 }
515 EXPORT_SYMBOL(twl6040_get_sysclk);
516
517 /* Get the combined status of the vibra control register */
twl6040_get_vibralr_status(struct twl6040 * twl6040)518 int twl6040_get_vibralr_status(struct twl6040 *twl6040)
519 {
520 unsigned int reg;
521 int ret;
522 u8 status;
523
524 ret = regmap_read(twl6040->regmap, TWL6040_REG_VIBCTLL, ®);
525 if (ret != 0)
526 return ret;
527 status = reg;
528
529 ret = regmap_read(twl6040->regmap, TWL6040_REG_VIBCTLR, ®);
530 if (ret != 0)
531 return ret;
532 status |= reg;
533
534 status &= (TWL6040_VIBENA | TWL6040_VIBSEL);
535
536 return status;
537 }
538 EXPORT_SYMBOL(twl6040_get_vibralr_status);
539
540 static struct resource twl6040_vibra_rsrc[] = {
541 {
542 .flags = IORESOURCE_IRQ,
543 },
544 };
545
546 static struct resource twl6040_codec_rsrc[] = {
547 {
548 .flags = IORESOURCE_IRQ,
549 },
550 };
551
twl6040_readable_reg(struct device * dev,unsigned int reg)552 static bool twl6040_readable_reg(struct device *dev, unsigned int reg)
553 {
554 /* Register 0 is not readable */
555 if (!reg)
556 return false;
557 return true;
558 }
559
twl6040_volatile_reg(struct device * dev,unsigned int reg)560 static bool twl6040_volatile_reg(struct device *dev, unsigned int reg)
561 {
562 switch (reg) {
563 case TWL6040_REG_ASICID:
564 case TWL6040_REG_ASICREV:
565 case TWL6040_REG_INTID:
566 case TWL6040_REG_LPPLLCTL:
567 case TWL6040_REG_HPPLLCTL:
568 case TWL6040_REG_STATUS:
569 return true;
570 default:
571 return false;
572 }
573 }
574
twl6040_writeable_reg(struct device * dev,unsigned int reg)575 static bool twl6040_writeable_reg(struct device *dev, unsigned int reg)
576 {
577 switch (reg) {
578 case TWL6040_REG_ASICID:
579 case TWL6040_REG_ASICREV:
580 case TWL6040_REG_STATUS:
581 return false;
582 default:
583 return true;
584 }
585 }
586
587 static struct regmap_config twl6040_regmap_config = {
588 .reg_bits = 8,
589 .val_bits = 8,
590
591 .reg_defaults = twl6040_defaults,
592 .num_reg_defaults = ARRAY_SIZE(twl6040_defaults),
593
594 .max_register = TWL6040_REG_STATUS, /* 0x2e */
595
596 .readable_reg = twl6040_readable_reg,
597 .volatile_reg = twl6040_volatile_reg,
598 .writeable_reg = twl6040_writeable_reg,
599
600 .cache_type = REGCACHE_RBTREE,
601 };
602
603 static const struct regmap_irq twl6040_irqs[] = {
604 { .reg_offset = 0, .mask = TWL6040_THINT, },
605 { .reg_offset = 0, .mask = TWL6040_PLUGINT | TWL6040_UNPLUGINT, },
606 { .reg_offset = 0, .mask = TWL6040_HOOKINT, },
607 { .reg_offset = 0, .mask = TWL6040_HFINT, },
608 { .reg_offset = 0, .mask = TWL6040_VIBINT, },
609 { .reg_offset = 0, .mask = TWL6040_READYINT, },
610 };
611
612 static struct regmap_irq_chip twl6040_irq_chip = {
613 .name = "twl6040",
614 .irqs = twl6040_irqs,
615 .num_irqs = ARRAY_SIZE(twl6040_irqs),
616
617 .num_regs = 1,
618 .status_base = TWL6040_REG_INTID,
619 .mask_base = TWL6040_REG_INTMR,
620 };
621
twl6040_probe(struct i2c_client * client,const struct i2c_device_id * id)622 static int twl6040_probe(struct i2c_client *client,
623 const struct i2c_device_id *id)
624 {
625 struct device_node *node = client->dev.of_node;
626 struct twl6040 *twl6040;
627 struct mfd_cell *cell = NULL;
628 int irq, ret, children = 0;
629
630 if (!node) {
631 dev_err(&client->dev, "of node is missing\n");
632 return -EINVAL;
633 }
634
635 /* In order to operate correctly we need valid interrupt config */
636 if (!client->irq) {
637 dev_err(&client->dev, "Invalid IRQ configuration\n");
638 return -EINVAL;
639 }
640
641 twl6040 = devm_kzalloc(&client->dev, sizeof(struct twl6040),
642 GFP_KERNEL);
643 if (!twl6040)
644 return -ENOMEM;
645
646 twl6040->regmap = devm_regmap_init_i2c(client, &twl6040_regmap_config);
647 if (IS_ERR(twl6040->regmap))
648 return PTR_ERR(twl6040->regmap);
649
650 i2c_set_clientdata(client, twl6040);
651
652 twl6040->clk32k = devm_clk_get(&client->dev, "clk32k");
653 if (IS_ERR(twl6040->clk32k)) {
654 dev_info(&client->dev, "clk32k is not handled\n");
655 twl6040->clk32k = NULL;
656 }
657
658 twl6040->supplies[0].supply = "vio";
659 twl6040->supplies[1].supply = "v2v1";
660 ret = devm_regulator_bulk_get(&client->dev, TWL6040_NUM_SUPPLIES,
661 twl6040->supplies);
662 if (ret != 0) {
663 dev_err(&client->dev, "Failed to get supplies: %d\n", ret);
664 return ret;
665 }
666
667 ret = regulator_bulk_enable(TWL6040_NUM_SUPPLIES, twl6040->supplies);
668 if (ret != 0) {
669 dev_err(&client->dev, "Failed to enable supplies: %d\n", ret);
670 return ret;
671 }
672
673 twl6040->dev = &client->dev;
674 twl6040->irq = client->irq;
675
676 mutex_init(&twl6040->mutex);
677 init_completion(&twl6040->ready);
678
679 regmap_register_patch(twl6040->regmap, twl6040_patch,
680 ARRAY_SIZE(twl6040_patch));
681
682 twl6040->rev = twl6040_reg_read(twl6040, TWL6040_REG_ASICREV);
683 if (twl6040->rev < 0) {
684 dev_err(&client->dev, "Failed to read revision register: %d\n",
685 twl6040->rev);
686 ret = twl6040->rev;
687 goto gpio_err;
688 }
689
690 /* ERRATA: Automatic power-up is not possible in ES1.0 */
691 if (twl6040_get_revid(twl6040) > TWL6040_REV_ES1_0)
692 twl6040->audpwron = of_get_named_gpio(node,
693 "ti,audpwron-gpio", 0);
694 else
695 twl6040->audpwron = -EINVAL;
696
697 if (gpio_is_valid(twl6040->audpwron)) {
698 ret = devm_gpio_request_one(&client->dev, twl6040->audpwron,
699 GPIOF_OUT_INIT_LOW, "audpwron");
700 if (ret)
701 goto gpio_err;
702
703 /* Clear any pending interrupt */
704 twl6040_reg_read(twl6040, TWL6040_REG_INTID);
705 }
706
707 ret = regmap_add_irq_chip(twl6040->regmap, twl6040->irq, IRQF_ONESHOT,
708 0, &twl6040_irq_chip, &twl6040->irq_data);
709 if (ret < 0)
710 goto gpio_err;
711
712 twl6040->irq_ready = regmap_irq_get_virq(twl6040->irq_data,
713 TWL6040_IRQ_READY);
714 twl6040->irq_th = regmap_irq_get_virq(twl6040->irq_data,
715 TWL6040_IRQ_TH);
716
717 ret = devm_request_threaded_irq(twl6040->dev, twl6040->irq_ready, NULL,
718 twl6040_readyint_handler, IRQF_ONESHOT,
719 "twl6040_irq_ready", twl6040);
720 if (ret) {
721 dev_err(twl6040->dev, "READY IRQ request failed: %d\n", ret);
722 goto readyirq_err;
723 }
724
725 ret = devm_request_threaded_irq(twl6040->dev, twl6040->irq_th, NULL,
726 twl6040_thint_handler, IRQF_ONESHOT,
727 "twl6040_irq_th", twl6040);
728 if (ret) {
729 dev_err(twl6040->dev, "Thermal IRQ request failed: %d\n", ret);
730 goto readyirq_err;
731 }
732
733 /*
734 * The main functionality of twl6040 to provide audio on OMAP4+ systems.
735 * We can add the ASoC codec child whenever this driver has been loaded.
736 */
737 irq = regmap_irq_get_virq(twl6040->irq_data, TWL6040_IRQ_PLUG);
738 cell = &twl6040->cells[children];
739 cell->name = "twl6040-codec";
740 twl6040_codec_rsrc[0].start = irq;
741 twl6040_codec_rsrc[0].end = irq;
742 cell->resources = twl6040_codec_rsrc;
743 cell->num_resources = ARRAY_SIZE(twl6040_codec_rsrc);
744 children++;
745
746 /* Vibra input driver support */
747 if (twl6040_has_vibra(node)) {
748 irq = regmap_irq_get_virq(twl6040->irq_data, TWL6040_IRQ_VIB);
749
750 cell = &twl6040->cells[children];
751 cell->name = "twl6040-vibra";
752 twl6040_vibra_rsrc[0].start = irq;
753 twl6040_vibra_rsrc[0].end = irq;
754 cell->resources = twl6040_vibra_rsrc;
755 cell->num_resources = ARRAY_SIZE(twl6040_vibra_rsrc);
756 children++;
757 }
758
759 /* GPO support */
760 cell = &twl6040->cells[children];
761 cell->name = "twl6040-gpo";
762 children++;
763
764 /* The chip is powered down so mark regmap to cache only and dirty */
765 regcache_cache_only(twl6040->regmap, true);
766 regcache_mark_dirty(twl6040->regmap);
767
768 ret = mfd_add_devices(&client->dev, -1, twl6040->cells, children,
769 NULL, 0, NULL);
770 if (ret)
771 goto readyirq_err;
772
773 return 0;
774
775 readyirq_err:
776 regmap_del_irq_chip(twl6040->irq, twl6040->irq_data);
777 gpio_err:
778 regulator_bulk_disable(TWL6040_NUM_SUPPLIES, twl6040->supplies);
779 return ret;
780 }
781
twl6040_remove(struct i2c_client * client)782 static int twl6040_remove(struct i2c_client *client)
783 {
784 struct twl6040 *twl6040 = i2c_get_clientdata(client);
785
786 if (twl6040->power_count)
787 twl6040_power(twl6040, 0);
788
789 regmap_del_irq_chip(twl6040->irq, twl6040->irq_data);
790
791 mfd_remove_devices(&client->dev);
792
793 regulator_bulk_disable(TWL6040_NUM_SUPPLIES, twl6040->supplies);
794
795 return 0;
796 }
797
798 static const struct i2c_device_id twl6040_i2c_id[] = {
799 { "twl6040", 0, },
800 { "twl6041", 0, },
801 { },
802 };
803 MODULE_DEVICE_TABLE(i2c, twl6040_i2c_id);
804
805 static struct i2c_driver twl6040_driver = {
806 .driver = {
807 .name = "twl6040",
808 .owner = THIS_MODULE,
809 },
810 .probe = twl6040_probe,
811 .remove = twl6040_remove,
812 .id_table = twl6040_i2c_id,
813 };
814
815 module_i2c_driver(twl6040_driver);
816
817 MODULE_DESCRIPTION("TWL6040 MFD");
818 MODULE_AUTHOR("Misael Lopez Cruz <misael.lopez@ti.com>");
819 MODULE_AUTHOR("Jorge Eduardo Candelaria <jorge.candelaria@ti.com>");
820 MODULE_LICENSE("GPL");
821 MODULE_ALIAS("platform:twl6040");
822