2 * MFD driver for TWL6040 audio device
4 * Authors: Misael Lopez Cruz <misael.lopez@ti.com>
5 * Jorge Eduardo Candelaria <jorge.candelaria@ti.com>
6 * Peter Ujfalusi <peter.ujfalusi@ti.com>
8 * Copyright: (C) 2011 Texas Instruments, Inc.
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.
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.
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
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>
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>
44 #define VIBRACTRL_MEMBER(reg) ((reg == TWL6040_REG_VIBCTLL) ? 0 : 1)
45 #define TWL6040_NUM_SUPPLIES (2)
47 static const 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 */
83 /* 0x2B, REG_HSOTRIM */
84 /* 0x2C, REG_HFOTRIM */
85 { 0x2D, 0x08 }, /* REG_ACCCTL */
86 { 0x2E, 0x00 }, /* REG_STATUS (ro) */
89 static struct reg_sequence twl6040_patch[] = {
91 * Select I2C bus access to dual access registers
92 * Interrupt register is cleared on read
93 * Select fast mode for i2c (400KHz)
96 TWL6040_I2CSEL | TWL6040_INTCLRMODE | TWL6040_I2CMODE(1) },
100 static bool twl6040_has_vibra(struct device_node *parent)
102 struct device_node *node;
104 node = of_get_child_by_name(parent, "vibra");
113 int twl6040_reg_read(struct twl6040 *twl6040, unsigned int reg)
118 ret = regmap_read(twl6040->regmap, reg, &val);
124 EXPORT_SYMBOL(twl6040_reg_read);
126 int twl6040_reg_write(struct twl6040 *twl6040, unsigned int reg, u8 val)
130 ret = regmap_write(twl6040->regmap, reg, val);
134 EXPORT_SYMBOL(twl6040_reg_write);
136 int twl6040_set_bits(struct twl6040 *twl6040, unsigned int reg, u8 mask)
138 return regmap_update_bits(twl6040->regmap, reg, mask, mask);
140 EXPORT_SYMBOL(twl6040_set_bits);
142 int twl6040_clear_bits(struct twl6040 *twl6040, unsigned int reg, u8 mask)
144 return regmap_update_bits(twl6040->regmap, reg, mask, 0);
146 EXPORT_SYMBOL(twl6040_clear_bits);
148 /* twl6040 codec manual power-up sequence */
149 static int twl6040_power_up_manual(struct twl6040 *twl6040)
151 u8 ldoctl, ncpctl, lppllctl;
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);
159 usleep_range(10000, 10500);
161 /* enable negative charge pump */
162 ncpctl = TWL6040_NCPENA;
163 ret = twl6040_reg_write(twl6040, TWL6040_REG_NCPCTL, ncpctl);
166 usleep_range(1000, 1500);
168 /* enable low-side LDO */
169 ldoctl |= TWL6040_LSLDOENA;
170 ret = twl6040_reg_write(twl6040, TWL6040_REG_LDOCTL, ldoctl);
173 usleep_range(1000, 1500);
175 /* enable low-power PLL */
176 lppllctl = TWL6040_LPLLENA;
177 ret = twl6040_reg_write(twl6040, TWL6040_REG_LPPLLCTL, lppllctl);
180 usleep_range(5000, 5500);
182 /* disable internal oscillator */
183 ldoctl &= ~TWL6040_OSCENA;
184 ret = twl6040_reg_write(twl6040, TWL6040_REG_LDOCTL, ldoctl);
191 lppllctl &= ~TWL6040_LPLLENA;
192 twl6040_reg_write(twl6040, TWL6040_REG_LPPLLCTL, lppllctl);
194 ldoctl &= ~TWL6040_LSLDOENA;
195 twl6040_reg_write(twl6040, TWL6040_REG_LDOCTL, ldoctl);
197 ncpctl &= ~TWL6040_NCPENA;
198 twl6040_reg_write(twl6040, TWL6040_REG_NCPCTL, ncpctl);
200 ldoctl &= ~(TWL6040_HSLDOENA | TWL6040_REFENA | TWL6040_OSCENA);
201 twl6040_reg_write(twl6040, TWL6040_REG_LDOCTL, ldoctl);
203 dev_err(twl6040->dev, "manual power-up failed\n");
207 /* twl6040 manual power-down sequence */
208 static void twl6040_power_down_manual(struct twl6040 *twl6040)
210 u8 ncpctl, ldoctl, lppllctl;
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);
216 /* enable internal oscillator */
217 ldoctl |= TWL6040_OSCENA;
218 twl6040_reg_write(twl6040, TWL6040_REG_LDOCTL, ldoctl);
219 usleep_range(1000, 1500);
221 /* disable low-power PLL */
222 lppllctl &= ~TWL6040_LPLLENA;
223 twl6040_reg_write(twl6040, TWL6040_REG_LPPLLCTL, lppllctl);
225 /* disable low-side LDO */
226 ldoctl &= ~TWL6040_LSLDOENA;
227 twl6040_reg_write(twl6040, TWL6040_REG_LDOCTL, ldoctl);
229 /* disable negative charge pump */
230 ncpctl &= ~TWL6040_NCPENA;
231 twl6040_reg_write(twl6040, TWL6040_REG_NCPCTL, ncpctl);
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);
238 static irqreturn_t twl6040_readyint_handler(int irq, void *data)
240 struct twl6040 *twl6040 = data;
242 complete(&twl6040->ready);
247 static irqreturn_t twl6040_thint_handler(int irq, void *data)
249 struct twl6040 *twl6040 = data;
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);
257 dev_warn(twl6040->dev, "Leaving thermal shutdown, powering-on");
258 twl6040_power(twl6040, 1);
264 static int twl6040_power_up_automatic(struct twl6040 *twl6040)
268 gpio_set_value(twl6040->audpwron, 1);
270 time_left = wait_for_completion_timeout(&twl6040->ready,
271 msecs_to_jiffies(144));
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);
287 int twl6040_power(struct twl6040 *twl6040, int on)
291 mutex_lock(&twl6040->mutex);
294 /* already powered-up */
295 if (twl6040->power_count++)
298 clk_prepare_enable(twl6040->clk32k);
300 /* Allow writes to the chip */
301 regcache_cache_only(twl6040->regmap, false);
303 if (gpio_is_valid(twl6040->audpwron)) {
304 /* use automatic power-up sequence */
305 ret = twl6040_power_up_automatic(twl6040);
307 twl6040->power_count = 0;
311 /* use manual power-up sequence */
312 ret = twl6040_power_up_manual(twl6040);
314 twl6040->power_count = 0;
320 * Register access can produce errors after power-up unless we
321 * wait at least 8ms based on measurements on duovero.
323 usleep_range(10000, 12000);
325 /* Sync with the HW */
326 ret = regcache_sync(twl6040->regmap);
328 dev_err(twl6040->dev, "Failed to sync with the HW: %i\n",
333 /* Default PLL configuration after power up */
334 twl6040->pll = TWL6040_SYSCLK_SEL_LPPLL;
335 twl6040->sysclk = 19200000;
336 twl6040->mclk = 32768;
338 /* already powered-down */
339 if (!twl6040->power_count) {
340 dev_err(twl6040->dev,
341 "device is already powered-off\n");
346 if (--twl6040->power_count)
349 if (gpio_is_valid(twl6040->audpwron)) {
350 /* use AUDPWRON line */
351 gpio_set_value(twl6040->audpwron, 0);
353 /* power-down sequence latency */
354 usleep_range(500, 700);
356 /* use manual power-down sequence */
357 twl6040_power_down_manual(twl6040);
360 /* Set regmap to cache only and mark it as dirty */
361 regcache_cache_only(twl6040->regmap, true);
362 regcache_mark_dirty(twl6040->regmap);
367 clk_disable_unprepare(twl6040->clk32k);
371 mutex_unlock(&twl6040->mutex);
374 EXPORT_SYMBOL(twl6040_power);
376 int twl6040_set_pll(struct twl6040 *twl6040, int pll_id,
377 unsigned int freq_in, unsigned int freq_out)
379 u8 hppllctl, lppllctl;
382 mutex_lock(&twl6040->mutex);
384 hppllctl = twl6040_reg_read(twl6040, TWL6040_REG_HPPLLCTL);
385 lppllctl = twl6040_reg_read(twl6040, TWL6040_REG_LPPLLCTL);
387 /* Force full reconfiguration when switching between PLL */
388 if (pll_id != twl6040->pll) {
394 case TWL6040_SYSCLK_SEL_LPPLL:
395 /* low-power PLL divider */
396 /* Change the sysclk configuration only if it has been canged */
397 if (twl6040->sysclk != freq_out) {
400 lppllctl |= TWL6040_LPLLFIN;
403 lppllctl &= ~TWL6040_LPLLFIN;
406 dev_err(twl6040->dev,
407 "freq_out %d not supported\n",
412 twl6040_reg_write(twl6040, TWL6040_REG_LPPLLCTL,
416 /* The PLL in use has not been change, we can exit */
417 if (twl6040->pll == pll_id)
422 lppllctl |= TWL6040_LPLLENA;
423 twl6040_reg_write(twl6040, TWL6040_REG_LPPLLCTL,
426 lppllctl &= ~TWL6040_HPLLSEL;
427 twl6040_reg_write(twl6040, TWL6040_REG_LPPLLCTL,
429 hppllctl &= ~TWL6040_HPLLENA;
430 twl6040_reg_write(twl6040, TWL6040_REG_HPPLLCTL,
434 dev_err(twl6040->dev,
435 "freq_in %d not supported\n", freq_in);
440 case TWL6040_SYSCLK_SEL_HPPLL:
441 /* high-performance PLL can provide only 19.2 MHz */
442 if (freq_out != 19200000) {
443 dev_err(twl6040->dev,
444 "freq_out %d not supported\n", freq_out);
449 if (twl6040->mclk != freq_in) {
450 hppllctl &= ~TWL6040_MCLK_MSK;
454 /* PLL enabled, active mode */
455 hppllctl |= TWL6040_MCLK_12000KHZ |
459 /* PLL enabled, bypass mode */
460 hppllctl |= TWL6040_MCLK_19200KHZ |
461 TWL6040_HPLLBP | TWL6040_HPLLENA;
464 /* PLL enabled, active mode */
465 hppllctl |= TWL6040_MCLK_26000KHZ |
469 /* PLL enabled, bypass mode */
470 hppllctl |= TWL6040_MCLK_38400KHZ |
471 TWL6040_HPLLBP | TWL6040_HPLLENA;
474 dev_err(twl6040->dev,
475 "freq_in %d not supported\n", freq_in);
481 * enable clock slicer to ensure input waveform is
484 hppllctl |= TWL6040_HPLLSQRENA;
486 twl6040_reg_write(twl6040, TWL6040_REG_HPPLLCTL,
488 usleep_range(500, 700);
489 lppllctl |= TWL6040_HPLLSEL;
490 twl6040_reg_write(twl6040, TWL6040_REG_LPPLLCTL,
492 lppllctl &= ~TWL6040_LPLLENA;
493 twl6040_reg_write(twl6040, TWL6040_REG_LPPLLCTL,
498 dev_err(twl6040->dev, "unknown pll id %d\n", pll_id);
503 twl6040->sysclk = freq_out;
504 twl6040->mclk = freq_in;
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;
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_RBTREE,
614 static const struct regmap_irq twl6040_irqs[] = {
615 { .reg_offset = 0, .mask = TWL6040_THINT, },
616 { .reg_offset = 0, .mask = TWL6040_PLUGINT | TWL6040_UNPLUGINT, },
617 { .reg_offset = 0, .mask = TWL6040_HOOKINT, },
618 { .reg_offset = 0, .mask = TWL6040_HFINT, },
619 { .reg_offset = 0, .mask = TWL6040_VIBINT, },
620 { .reg_offset = 0, .mask = TWL6040_READYINT, },
623 static struct regmap_irq_chip twl6040_irq_chip = {
625 .irqs = twl6040_irqs,
626 .num_irqs = ARRAY_SIZE(twl6040_irqs),
629 .status_base = TWL6040_REG_INTID,
630 .mask_base = TWL6040_REG_INTMR,
633 static int twl6040_probe(struct i2c_client *client,
634 const struct i2c_device_id *id)
636 struct device_node *node = client->dev.of_node;
637 struct twl6040 *twl6040;
638 struct mfd_cell *cell = NULL;
639 int irq, ret, children = 0;
642 dev_err(&client->dev, "of node is missing\n");
646 /* In order to operate correctly we need valid interrupt config */
648 dev_err(&client->dev, "Invalid IRQ configuration\n");
652 twl6040 = devm_kzalloc(&client->dev, sizeof(struct twl6040),
657 twl6040->regmap = devm_regmap_init_i2c(client, &twl6040_regmap_config);
658 if (IS_ERR(twl6040->regmap))
659 return PTR_ERR(twl6040->regmap);
661 i2c_set_clientdata(client, twl6040);
663 twl6040->clk32k = devm_clk_get(&client->dev, "clk32k");
664 if (IS_ERR(twl6040->clk32k)) {
665 if (PTR_ERR(twl6040->clk32k) == -EPROBE_DEFER)
666 return -EPROBE_DEFER;
667 dev_info(&client->dev, "clk32k is not handled\n");
668 twl6040->clk32k = NULL;
671 twl6040->supplies[0].supply = "vio";
672 twl6040->supplies[1].supply = "v2v1";
673 ret = devm_regulator_bulk_get(&client->dev, TWL6040_NUM_SUPPLIES,
676 dev_err(&client->dev, "Failed to get supplies: %d\n", ret);
680 ret = regulator_bulk_enable(TWL6040_NUM_SUPPLIES, twl6040->supplies);
682 dev_err(&client->dev, "Failed to enable supplies: %d\n", ret);
686 twl6040->dev = &client->dev;
687 twl6040->irq = client->irq;
689 mutex_init(&twl6040->mutex);
690 init_completion(&twl6040->ready);
692 regmap_register_patch(twl6040->regmap, twl6040_patch,
693 ARRAY_SIZE(twl6040_patch));
695 twl6040->rev = twl6040_reg_read(twl6040, TWL6040_REG_ASICREV);
696 if (twl6040->rev < 0) {
697 dev_err(&client->dev, "Failed to read revision register: %d\n",
703 /* ERRATA: Automatic power-up is not possible in ES1.0 */
704 if (twl6040_get_revid(twl6040) > TWL6040_REV_ES1_0)
705 twl6040->audpwron = of_get_named_gpio(node,
706 "ti,audpwron-gpio", 0);
708 twl6040->audpwron = -EINVAL;
710 if (gpio_is_valid(twl6040->audpwron)) {
711 ret = devm_gpio_request_one(&client->dev, twl6040->audpwron,
712 GPIOF_OUT_INIT_LOW, "audpwron");
716 /* Clear any pending interrupt */
717 twl6040_reg_read(twl6040, TWL6040_REG_INTID);
720 ret = regmap_add_irq_chip(twl6040->regmap, twl6040->irq, IRQF_ONESHOT,
721 0, &twl6040_irq_chip, &twl6040->irq_data);
725 twl6040->irq_ready = regmap_irq_get_virq(twl6040->irq_data,
727 twl6040->irq_th = regmap_irq_get_virq(twl6040->irq_data,
730 ret = devm_request_threaded_irq(twl6040->dev, twl6040->irq_ready, NULL,
731 twl6040_readyint_handler, IRQF_ONESHOT,
732 "twl6040_irq_ready", twl6040);
734 dev_err(twl6040->dev, "READY IRQ request failed: %d\n", ret);
738 ret = devm_request_threaded_irq(twl6040->dev, twl6040->irq_th, NULL,
739 twl6040_thint_handler, IRQF_ONESHOT,
740 "twl6040_irq_th", twl6040);
742 dev_err(twl6040->dev, "Thermal IRQ request failed: %d\n", ret);
747 * The main functionality of twl6040 to provide audio on OMAP4+ systems.
748 * We can add the ASoC codec child whenever this driver has been loaded.
750 irq = regmap_irq_get_virq(twl6040->irq_data, TWL6040_IRQ_PLUG);
751 cell = &twl6040->cells[children];
752 cell->name = "twl6040-codec";
753 twl6040_codec_rsrc[0].start = irq;
754 twl6040_codec_rsrc[0].end = irq;
755 cell->resources = twl6040_codec_rsrc;
756 cell->num_resources = ARRAY_SIZE(twl6040_codec_rsrc);
759 /* Vibra input driver support */
760 if (twl6040_has_vibra(node)) {
761 irq = regmap_irq_get_virq(twl6040->irq_data, TWL6040_IRQ_VIB);
763 cell = &twl6040->cells[children];
764 cell->name = "twl6040-vibra";
765 twl6040_vibra_rsrc[0].start = irq;
766 twl6040_vibra_rsrc[0].end = irq;
767 cell->resources = twl6040_vibra_rsrc;
768 cell->num_resources = ARRAY_SIZE(twl6040_vibra_rsrc);
773 cell = &twl6040->cells[children];
774 cell->name = "twl6040-gpo";
777 /* The chip is powered down so mark regmap to cache only and dirty */
778 regcache_cache_only(twl6040->regmap, true);
779 regcache_mark_dirty(twl6040->regmap);
781 ret = mfd_add_devices(&client->dev, -1, twl6040->cells, children,
789 regmap_del_irq_chip(twl6040->irq, twl6040->irq_data);
791 regulator_bulk_disable(TWL6040_NUM_SUPPLIES, twl6040->supplies);
795 static int twl6040_remove(struct i2c_client *client)
797 struct twl6040 *twl6040 = i2c_get_clientdata(client);
799 if (twl6040->power_count)
800 twl6040_power(twl6040, 0);
802 regmap_del_irq_chip(twl6040->irq, twl6040->irq_data);
804 mfd_remove_devices(&client->dev);
806 regulator_bulk_disable(TWL6040_NUM_SUPPLIES, twl6040->supplies);
811 static const struct i2c_device_id twl6040_i2c_id[] = {
816 MODULE_DEVICE_TABLE(i2c, twl6040_i2c_id);
818 static struct i2c_driver twl6040_driver = {
822 .probe = twl6040_probe,
823 .remove = twl6040_remove,
824 .id_table = twl6040_i2c_id,
827 module_i2c_driver(twl6040_driver);
829 MODULE_DESCRIPTION("TWL6040 MFD");
830 MODULE_AUTHOR("Misael Lopez Cruz <misael.lopez@ti.com>");
831 MODULE_AUTHOR("Jorge Eduardo Candelaria <jorge.candelaria@ti.com>");
832 MODULE_LICENSE("GPL");