1 // SPDX-License-Identifier: GPL-2.0-only
3 * MFD driver for TWL6040 audio device
5 * Authors: Misael Lopez Cruz <misael.lopez@ti.com>
6 * Jorge Eduardo Candelaria <jorge.candelaria@ti.com>
7 * Peter Ujfalusi <peter.ujfalusi@ti.com>
9 * Copyright: (C) 2011 Texas Instruments, Inc.
12 #include <linux/module.h>
13 #include <linux/types.h>
14 #include <linux/slab.h>
15 #include <linux/kernel.h>
16 #include <linux/err.h>
17 #include <linux/platform_device.h>
19 #include <linux/of_irq.h>
20 #include <linux/of_platform.h>
21 #include <linux/gpio/consumer.h>
22 #include <linux/delay.h>
23 #include <linux/i2c.h>
24 #include <linux/regmap.h>
25 #include <linux/mfd/core.h>
26 #include <linux/mfd/twl6040.h>
27 #include <linux/regulator/consumer.h>
29 #define VIBRACTRL_MEMBER(reg) ((reg == TWL6040_REG_VIBCTLL) ? 0 : 1)
30 #define TWL6040_NUM_SUPPLIES (2)
32 static const struct reg_default twl6040_defaults[] = {
33 { 0x01, 0x4B }, /* REG_ASICID (ro) */
34 { 0x02, 0x00 }, /* REG_ASICREV (ro) */
35 { 0x03, 0x00 }, /* REG_INTID */
36 { 0x04, 0x00 }, /* REG_INTMR */
37 { 0x05, 0x00 }, /* REG_NCPCTRL */
38 { 0x06, 0x00 }, /* REG_LDOCTL */
39 { 0x07, 0x60 }, /* REG_HPPLLCTL */
40 { 0x08, 0x00 }, /* REG_LPPLLCTL */
41 { 0x09, 0x4A }, /* REG_LPPLLDIV */
42 { 0x0A, 0x00 }, /* REG_AMICBCTL */
43 { 0x0B, 0x00 }, /* REG_DMICBCTL */
44 { 0x0C, 0x00 }, /* REG_MICLCTL */
45 { 0x0D, 0x00 }, /* REG_MICRCTL */
46 { 0x0E, 0x00 }, /* REG_MICGAIN */
47 { 0x0F, 0x1B }, /* REG_LINEGAIN */
48 { 0x10, 0x00 }, /* REG_HSLCTL */
49 { 0x11, 0x00 }, /* REG_HSRCTL */
50 { 0x12, 0x00 }, /* REG_HSGAIN */
51 { 0x13, 0x00 }, /* REG_EARCTL */
52 { 0x14, 0x00 }, /* REG_HFLCTL */
53 { 0x15, 0x00 }, /* REG_HFLGAIN */
54 { 0x16, 0x00 }, /* REG_HFRCTL */
55 { 0x17, 0x00 }, /* REG_HFRGAIN */
56 { 0x18, 0x00 }, /* REG_VIBCTLL */
57 { 0x19, 0x00 }, /* REG_VIBDATL */
58 { 0x1A, 0x00 }, /* REG_VIBCTLR */
59 { 0x1B, 0x00 }, /* REG_VIBDATR */
60 { 0x1C, 0x00 }, /* REG_HKCTL1 */
61 { 0x1D, 0x00 }, /* REG_HKCTL2 */
62 { 0x1E, 0x00 }, /* REG_GPOCTL */
63 { 0x1F, 0x00 }, /* REG_ALB */
64 { 0x20, 0x00 }, /* REG_DLB */
68 /* 0x2B, REG_HSOTRIM */
69 /* 0x2C, REG_HFOTRIM */
70 { 0x2D, 0x08 }, /* REG_ACCCTL */
71 { 0x2E, 0x00 }, /* REG_STATUS (ro) */
74 static struct reg_sequence twl6040_patch[] = {
76 * Select I2C bus access to dual access registers
77 * Interrupt register is cleared on read
78 * Select fast mode for i2c (400KHz)
81 TWL6040_I2CSEL | TWL6040_INTCLRMODE | TWL6040_I2CMODE(1) },
85 static bool twl6040_has_vibra(struct device_node *parent)
87 struct device_node *node;
89 node = of_get_child_by_name(parent, "vibra");
98 int twl6040_reg_read(struct twl6040 *twl6040, unsigned int reg)
103 ret = regmap_read(twl6040->regmap, reg, &val);
109 EXPORT_SYMBOL(twl6040_reg_read);
111 int twl6040_reg_write(struct twl6040 *twl6040, unsigned int reg, u8 val)
115 ret = regmap_write(twl6040->regmap, reg, val);
119 EXPORT_SYMBOL(twl6040_reg_write);
121 int twl6040_set_bits(struct twl6040 *twl6040, unsigned int reg, u8 mask)
123 return regmap_update_bits(twl6040->regmap, reg, mask, mask);
125 EXPORT_SYMBOL(twl6040_set_bits);
127 int twl6040_clear_bits(struct twl6040 *twl6040, unsigned int reg, u8 mask)
129 return regmap_update_bits(twl6040->regmap, reg, mask, 0);
131 EXPORT_SYMBOL(twl6040_clear_bits);
133 /* twl6040 codec manual power-up sequence */
134 static int twl6040_power_up_manual(struct twl6040 *twl6040)
136 u8 ldoctl, ncpctl, lppllctl;
139 /* enable high-side LDO, reference system and internal oscillator */
140 ldoctl = TWL6040_HSLDOENA | TWL6040_REFENA | TWL6040_OSCENA;
141 ret = twl6040_reg_write(twl6040, TWL6040_REG_LDOCTL, ldoctl);
144 usleep_range(10000, 10500);
146 /* enable negative charge pump */
147 ncpctl = TWL6040_NCPENA;
148 ret = twl6040_reg_write(twl6040, TWL6040_REG_NCPCTL, ncpctl);
151 usleep_range(1000, 1500);
153 /* enable low-side LDO */
154 ldoctl |= TWL6040_LSLDOENA;
155 ret = twl6040_reg_write(twl6040, TWL6040_REG_LDOCTL, ldoctl);
158 usleep_range(1000, 1500);
160 /* enable low-power PLL */
161 lppllctl = TWL6040_LPLLENA;
162 ret = twl6040_reg_write(twl6040, TWL6040_REG_LPPLLCTL, lppllctl);
165 usleep_range(5000, 5500);
167 /* disable internal oscillator */
168 ldoctl &= ~TWL6040_OSCENA;
169 ret = twl6040_reg_write(twl6040, TWL6040_REG_LDOCTL, ldoctl);
176 lppllctl &= ~TWL6040_LPLLENA;
177 twl6040_reg_write(twl6040, TWL6040_REG_LPPLLCTL, lppllctl);
179 ldoctl &= ~TWL6040_LSLDOENA;
180 twl6040_reg_write(twl6040, TWL6040_REG_LDOCTL, ldoctl);
182 ncpctl &= ~TWL6040_NCPENA;
183 twl6040_reg_write(twl6040, TWL6040_REG_NCPCTL, ncpctl);
185 ldoctl &= ~(TWL6040_HSLDOENA | TWL6040_REFENA | TWL6040_OSCENA);
186 twl6040_reg_write(twl6040, TWL6040_REG_LDOCTL, ldoctl);
188 dev_err(twl6040->dev, "manual power-up failed\n");
192 /* twl6040 manual power-down sequence */
193 static void twl6040_power_down_manual(struct twl6040 *twl6040)
195 u8 ncpctl, ldoctl, lppllctl;
197 ncpctl = twl6040_reg_read(twl6040, TWL6040_REG_NCPCTL);
198 ldoctl = twl6040_reg_read(twl6040, TWL6040_REG_LDOCTL);
199 lppllctl = twl6040_reg_read(twl6040, TWL6040_REG_LPPLLCTL);
201 /* enable internal oscillator */
202 ldoctl |= TWL6040_OSCENA;
203 twl6040_reg_write(twl6040, TWL6040_REG_LDOCTL, ldoctl);
204 usleep_range(1000, 1500);
206 /* disable low-power PLL */
207 lppllctl &= ~TWL6040_LPLLENA;
208 twl6040_reg_write(twl6040, TWL6040_REG_LPPLLCTL, lppllctl);
210 /* disable low-side LDO */
211 ldoctl &= ~TWL6040_LSLDOENA;
212 twl6040_reg_write(twl6040, TWL6040_REG_LDOCTL, ldoctl);
214 /* disable negative charge pump */
215 ncpctl &= ~TWL6040_NCPENA;
216 twl6040_reg_write(twl6040, TWL6040_REG_NCPCTL, ncpctl);
218 /* disable high-side LDO, reference system and internal oscillator */
219 ldoctl &= ~(TWL6040_HSLDOENA | TWL6040_REFENA | TWL6040_OSCENA);
220 twl6040_reg_write(twl6040, TWL6040_REG_LDOCTL, ldoctl);
223 static irqreturn_t twl6040_readyint_handler(int irq, void *data)
225 struct twl6040 *twl6040 = data;
227 complete(&twl6040->ready);
232 static irqreturn_t twl6040_thint_handler(int irq, void *data)
234 struct twl6040 *twl6040 = data;
237 status = twl6040_reg_read(twl6040, TWL6040_REG_STATUS);
238 if (status & TWL6040_TSHUTDET) {
239 dev_warn(twl6040->dev, "Thermal shutdown, powering-off");
240 twl6040_power(twl6040, 0);
242 dev_warn(twl6040->dev, "Leaving thermal shutdown, powering-on");
243 twl6040_power(twl6040, 1);
249 static int twl6040_power_up_automatic(struct twl6040 *twl6040)
253 gpiod_set_value_cansleep(twl6040->audpwron, 1);
255 time_left = wait_for_completion_timeout(&twl6040->ready,
256 msecs_to_jiffies(144));
260 dev_warn(twl6040->dev, "timeout waiting for READYINT\n");
261 intid = twl6040_reg_read(twl6040, TWL6040_REG_INTID);
262 if (!(intid & TWL6040_READYINT)) {
263 dev_err(twl6040->dev, "automatic power-up failed\n");
264 gpiod_set_value_cansleep(twl6040->audpwron, 0);
272 int twl6040_power(struct twl6040 *twl6040, int on)
276 mutex_lock(&twl6040->mutex);
279 /* already powered-up */
280 if (twl6040->power_count++)
283 ret = clk_prepare_enable(twl6040->clk32k);
285 twl6040->power_count = 0;
289 /* Allow writes to the chip */
290 regcache_cache_only(twl6040->regmap, false);
292 if (twl6040->audpwron) {
293 /* use automatic power-up sequence */
294 ret = twl6040_power_up_automatic(twl6040);
296 clk_disable_unprepare(twl6040->clk32k);
297 twl6040->power_count = 0;
301 /* use manual power-up sequence */
302 ret = twl6040_power_up_manual(twl6040);
304 clk_disable_unprepare(twl6040->clk32k);
305 twl6040->power_count = 0;
311 * Register access can produce errors after power-up unless we
312 * wait at least 8ms based on measurements on duovero.
314 usleep_range(10000, 12000);
316 /* Sync with the HW */
317 ret = regcache_sync(twl6040->regmap);
319 dev_err(twl6040->dev, "Failed to sync with the HW: %i\n",
324 /* Default PLL configuration after power up */
325 twl6040->pll = TWL6040_SYSCLK_SEL_LPPLL;
326 twl6040->sysclk_rate = 19200000;
328 /* already powered-down */
329 if (!twl6040->power_count) {
330 dev_err(twl6040->dev,
331 "device is already powered-off\n");
336 if (--twl6040->power_count)
339 if (twl6040->audpwron) {
340 /* use AUDPWRON line */
341 gpiod_set_value_cansleep(twl6040->audpwron, 0);
343 /* power-down sequence latency */
344 usleep_range(500, 700);
346 /* use manual power-down sequence */
347 twl6040_power_down_manual(twl6040);
350 /* Set regmap to cache only and mark it as dirty */
351 regcache_cache_only(twl6040->regmap, true);
352 regcache_mark_dirty(twl6040->regmap);
354 twl6040->sysclk_rate = 0;
356 if (twl6040->pll == TWL6040_SYSCLK_SEL_HPPLL) {
357 clk_disable_unprepare(twl6040->mclk);
358 twl6040->mclk_rate = 0;
361 clk_disable_unprepare(twl6040->clk32k);
365 mutex_unlock(&twl6040->mutex);
368 EXPORT_SYMBOL(twl6040_power);
370 int twl6040_set_pll(struct twl6040 *twl6040, int pll_id,
371 unsigned int freq_in, unsigned int freq_out)
373 u8 hppllctl, lppllctl;
376 mutex_lock(&twl6040->mutex);
378 hppllctl = twl6040_reg_read(twl6040, TWL6040_REG_HPPLLCTL);
379 lppllctl = twl6040_reg_read(twl6040, TWL6040_REG_LPPLLCTL);
381 /* Force full reconfiguration when switching between PLL */
382 if (pll_id != twl6040->pll) {
383 twl6040->sysclk_rate = 0;
384 twl6040->mclk_rate = 0;
388 case TWL6040_SYSCLK_SEL_LPPLL:
389 /* low-power PLL divider */
390 /* Change the sysclk configuration only if it has been canged */
391 if (twl6040->sysclk_rate != freq_out) {
394 lppllctl |= TWL6040_LPLLFIN;
397 lppllctl &= ~TWL6040_LPLLFIN;
400 dev_err(twl6040->dev,
401 "freq_out %d not supported\n",
406 twl6040_reg_write(twl6040, TWL6040_REG_LPPLLCTL,
410 /* The PLL in use has not been change, we can exit */
411 if (twl6040->pll == pll_id)
416 lppllctl |= TWL6040_LPLLENA;
417 twl6040_reg_write(twl6040, TWL6040_REG_LPPLLCTL,
420 lppllctl &= ~TWL6040_HPLLSEL;
421 twl6040_reg_write(twl6040, TWL6040_REG_LPPLLCTL,
423 hppllctl &= ~TWL6040_HPLLENA;
424 twl6040_reg_write(twl6040, TWL6040_REG_HPPLLCTL,
428 dev_err(twl6040->dev,
429 "freq_in %d not supported\n", freq_in);
434 clk_disable_unprepare(twl6040->mclk);
436 case TWL6040_SYSCLK_SEL_HPPLL:
437 /* high-performance PLL can provide only 19.2 MHz */
438 if (freq_out != 19200000) {
439 dev_err(twl6040->dev,
440 "freq_out %d not supported\n", freq_out);
445 if (twl6040->mclk_rate != freq_in) {
446 hppllctl &= ~TWL6040_MCLK_MSK;
450 /* PLL enabled, active mode */
451 hppllctl |= TWL6040_MCLK_12000KHZ |
455 /* PLL enabled, bypass mode */
456 hppllctl |= TWL6040_MCLK_19200KHZ |
457 TWL6040_HPLLBP | TWL6040_HPLLENA;
460 /* PLL enabled, active mode */
461 hppllctl |= TWL6040_MCLK_26000KHZ |
465 /* PLL enabled, bypass mode */
466 hppllctl |= TWL6040_MCLK_38400KHZ |
467 TWL6040_HPLLBP | TWL6040_HPLLENA;
470 dev_err(twl6040->dev,
471 "freq_in %d not supported\n", freq_in);
476 /* When switching to HPPLL, enable the mclk first */
477 if (pll_id != twl6040->pll)
478 clk_prepare_enable(twl6040->mclk);
480 * enable clock slicer to ensure input waveform is
483 hppllctl |= TWL6040_HPLLSQRENA;
485 twl6040_reg_write(twl6040, TWL6040_REG_HPPLLCTL,
487 usleep_range(500, 700);
488 lppllctl |= TWL6040_HPLLSEL;
489 twl6040_reg_write(twl6040, TWL6040_REG_LPPLLCTL,
491 lppllctl &= ~TWL6040_LPLLENA;
492 twl6040_reg_write(twl6040, TWL6040_REG_LPPLLCTL,
495 twl6040->mclk_rate = freq_in;
499 dev_err(twl6040->dev, "unknown pll id %d\n", pll_id);
504 twl6040->sysclk_rate = freq_out;
505 twl6040->pll = pll_id;
508 mutex_unlock(&twl6040->mutex);
511 EXPORT_SYMBOL(twl6040_set_pll);
513 int twl6040_get_pll(struct twl6040 *twl6040)
515 if (twl6040->power_count)
520 EXPORT_SYMBOL(twl6040_get_pll);
522 unsigned int twl6040_get_sysclk(struct twl6040 *twl6040)
524 return twl6040->sysclk_rate;
526 EXPORT_SYMBOL(twl6040_get_sysclk);
528 /* Get the combined status of the vibra control register */
529 int twl6040_get_vibralr_status(struct twl6040 *twl6040)
535 ret = regmap_read(twl6040->regmap, TWL6040_REG_VIBCTLL, ®);
540 ret = regmap_read(twl6040->regmap, TWL6040_REG_VIBCTLR, ®);
545 status &= (TWL6040_VIBENA | TWL6040_VIBSEL);
549 EXPORT_SYMBOL(twl6040_get_vibralr_status);
551 static struct resource twl6040_vibra_rsrc[] = {
553 .flags = IORESOURCE_IRQ,
557 static struct resource twl6040_codec_rsrc[] = {
559 .flags = IORESOURCE_IRQ,
563 static bool twl6040_readable_reg(struct device *dev, unsigned int reg)
565 /* Register 0 is not readable */
571 static bool twl6040_volatile_reg(struct device *dev, unsigned int reg)
574 case TWL6040_REG_ASICID:
575 case TWL6040_REG_ASICREV:
576 case TWL6040_REG_INTID:
577 case TWL6040_REG_LPPLLCTL:
578 case TWL6040_REG_HPPLLCTL:
579 case TWL6040_REG_STATUS:
586 static bool twl6040_writeable_reg(struct device *dev, unsigned int reg)
589 case TWL6040_REG_ASICID:
590 case TWL6040_REG_ASICREV:
591 case TWL6040_REG_STATUS:
598 static const struct regmap_config twl6040_regmap_config = {
602 .reg_defaults = twl6040_defaults,
603 .num_reg_defaults = ARRAY_SIZE(twl6040_defaults),
605 .max_register = TWL6040_REG_STATUS, /* 0x2e */
607 .readable_reg = twl6040_readable_reg,
608 .volatile_reg = twl6040_volatile_reg,
609 .writeable_reg = twl6040_writeable_reg,
611 .cache_type = REGCACHE_MAPLE,
612 .use_single_read = true,
613 .use_single_write = true,
616 static const struct regmap_irq twl6040_irqs[] = {
617 { .reg_offset = 0, .mask = TWL6040_THINT, },
618 { .reg_offset = 0, .mask = TWL6040_PLUGINT | TWL6040_UNPLUGINT, },
619 { .reg_offset = 0, .mask = TWL6040_HOOKINT, },
620 { .reg_offset = 0, .mask = TWL6040_HFINT, },
621 { .reg_offset = 0, .mask = TWL6040_VIBINT, },
622 { .reg_offset = 0, .mask = TWL6040_READYINT, },
625 static struct regmap_irq_chip twl6040_irq_chip = {
627 .irqs = twl6040_irqs,
628 .num_irqs = ARRAY_SIZE(twl6040_irqs),
631 .status_base = TWL6040_REG_INTID,
632 .mask_base = TWL6040_REG_INTMR,
635 static int twl6040_probe(struct i2c_client *client)
637 struct device_node *node = client->dev.of_node;
638 struct twl6040 *twl6040;
639 struct mfd_cell *cell = NULL;
640 int irq, ret, children = 0;
643 dev_err(&client->dev, "of node is missing\n");
647 /* In order to operate correctly we need valid interrupt config */
649 dev_err(&client->dev, "Invalid IRQ configuration\n");
653 twl6040 = devm_kzalloc(&client->dev, sizeof(struct twl6040),
658 twl6040->regmap = devm_regmap_init_i2c(client, &twl6040_regmap_config);
659 if (IS_ERR(twl6040->regmap))
660 return PTR_ERR(twl6040->regmap);
662 i2c_set_clientdata(client, twl6040);
664 twl6040->clk32k = devm_clk_get(&client->dev, "clk32k");
665 if (IS_ERR(twl6040->clk32k)) {
666 if (PTR_ERR(twl6040->clk32k) == -EPROBE_DEFER)
667 return -EPROBE_DEFER;
668 dev_dbg(&client->dev, "clk32k is not handled\n");
669 twl6040->clk32k = NULL;
672 twl6040->mclk = devm_clk_get(&client->dev, "mclk");
673 if (IS_ERR(twl6040->mclk)) {
674 if (PTR_ERR(twl6040->mclk) == -EPROBE_DEFER)
675 return -EPROBE_DEFER;
676 dev_dbg(&client->dev, "mclk is not handled\n");
677 twl6040->mclk = NULL;
680 twl6040->supplies[0].supply = "vio";
681 twl6040->supplies[1].supply = "v2v1";
682 ret = devm_regulator_bulk_get(&client->dev, TWL6040_NUM_SUPPLIES,
685 dev_err(&client->dev, "Failed to get supplies: %d\n", ret);
689 ret = regulator_bulk_enable(TWL6040_NUM_SUPPLIES, twl6040->supplies);
691 dev_err(&client->dev, "Failed to enable supplies: %d\n", ret);
695 twl6040->dev = &client->dev;
696 twl6040->irq = client->irq;
698 mutex_init(&twl6040->mutex);
699 init_completion(&twl6040->ready);
701 regmap_register_patch(twl6040->regmap, twl6040_patch,
702 ARRAY_SIZE(twl6040_patch));
704 twl6040->rev = twl6040_reg_read(twl6040, TWL6040_REG_ASICREV);
705 if (twl6040->rev < 0) {
706 dev_err(&client->dev, "Failed to read revision register: %d\n",
712 /* ERRATA: Automatic power-up is not possible in ES1.0 */
713 if (twl6040_get_revid(twl6040) > TWL6040_REV_ES1_0) {
714 twl6040->audpwron = devm_gpiod_get_optional(&client->dev,
717 ret = PTR_ERR_OR_ZERO(twl6040->audpwron);
721 gpiod_set_consumer_name(twl6040->audpwron, "audpwron");
723 /* Clear any pending interrupt */
724 twl6040_reg_read(twl6040, TWL6040_REG_INTID);
727 ret = regmap_add_irq_chip(twl6040->regmap, twl6040->irq, IRQF_ONESHOT,
728 0, &twl6040_irq_chip, &twl6040->irq_data);
732 twl6040->irq_ready = regmap_irq_get_virq(twl6040->irq_data,
734 twl6040->irq_th = regmap_irq_get_virq(twl6040->irq_data,
737 ret = devm_request_threaded_irq(twl6040->dev, twl6040->irq_ready, NULL,
738 twl6040_readyint_handler, IRQF_ONESHOT,
739 "twl6040_irq_ready", twl6040);
741 dev_err(twl6040->dev, "READY IRQ request failed: %d\n", ret);
745 ret = devm_request_threaded_irq(twl6040->dev, twl6040->irq_th, NULL,
746 twl6040_thint_handler, IRQF_ONESHOT,
747 "twl6040_irq_th", twl6040);
749 dev_err(twl6040->dev, "Thermal IRQ request failed: %d\n", ret);
754 * The main functionality of twl6040 to provide audio on OMAP4+ systems.
755 * We can add the ASoC codec child whenever this driver has been loaded.
757 irq = regmap_irq_get_virq(twl6040->irq_data, TWL6040_IRQ_PLUG);
758 cell = &twl6040->cells[children];
759 cell->name = "twl6040-codec";
760 twl6040_codec_rsrc[0].start = irq;
761 twl6040_codec_rsrc[0].end = irq;
762 cell->resources = twl6040_codec_rsrc;
763 cell->num_resources = ARRAY_SIZE(twl6040_codec_rsrc);
766 /* Vibra input driver support */
767 if (twl6040_has_vibra(node)) {
768 irq = regmap_irq_get_virq(twl6040->irq_data, TWL6040_IRQ_VIB);
770 cell = &twl6040->cells[children];
771 cell->name = "twl6040-vibra";
772 twl6040_vibra_rsrc[0].start = irq;
773 twl6040_vibra_rsrc[0].end = irq;
774 cell->resources = twl6040_vibra_rsrc;
775 cell->num_resources = ARRAY_SIZE(twl6040_vibra_rsrc);
780 cell = &twl6040->cells[children];
781 cell->name = "twl6040-gpo";
784 /* PDM clock support */
785 cell = &twl6040->cells[children];
786 cell->name = "twl6040-pdmclk";
789 /* The chip is powered down so mark regmap to cache only and dirty */
790 regcache_cache_only(twl6040->regmap, true);
791 regcache_mark_dirty(twl6040->regmap);
793 ret = mfd_add_devices(&client->dev, -1, twl6040->cells, children,
801 regmap_del_irq_chip(twl6040->irq, twl6040->irq_data);
803 regulator_bulk_disable(TWL6040_NUM_SUPPLIES, twl6040->supplies);
807 static void twl6040_remove(struct i2c_client *client)
809 struct twl6040 *twl6040 = i2c_get_clientdata(client);
811 if (twl6040->power_count)
812 twl6040_power(twl6040, 0);
814 regmap_del_irq_chip(twl6040->irq, twl6040->irq_data);
816 mfd_remove_devices(&client->dev);
818 regulator_bulk_disable(TWL6040_NUM_SUPPLIES, twl6040->supplies);
821 static const struct i2c_device_id twl6040_i2c_id[] = {
826 MODULE_DEVICE_TABLE(i2c, twl6040_i2c_id);
828 static struct i2c_driver twl6040_driver = {
832 .probe = twl6040_probe,
833 .remove = twl6040_remove,
834 .id_table = twl6040_i2c_id,
837 module_i2c_driver(twl6040_driver);
839 MODULE_DESCRIPTION("TWL6040 MFD");
840 MODULE_AUTHOR("Misael Lopez Cruz <misael.lopez@ti.com>");
841 MODULE_AUTHOR("Jorge Eduardo Candelaria <jorge.candelaria@ti.com>");