md/bitmap: disable bitmap_resize for file-backed bitmaps.
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / drivers / gpio / gpio-twl4030.c
CommitLineData
e9d35947 1/*
c103de24 2 * Access to GPIOs on TWL4030/TPS659x0 chips
e9d35947
DB
3 *
4 * Copyright (C) 2006-2007 Texas Instruments, Inc.
5 * Copyright (C) 2006 MontaVista Software, Inc.
6 *
7 * Code re-arranged and cleaned up by:
8 * Syed Mohammed Khasim <x0khasim@ti.com>
9 *
10 * Initial Code:
11 * Andy Lowe / Nishanth Menon
12 *
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
17 *
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
22 *
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, write to the Free Software
25 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
26 */
27
28#include <linux/module.h>
29#include <linux/init.h>
30#include <linux/interrupt.h>
31#include <linux/kthread.h>
32#include <linux/irq.h>
33#include <linux/gpio.h>
34#include <linux/platform_device.h>
b8589e2a
BC
35#include <linux/of.h>
36#include <linux/irqdomain.h>
e9d35947 37
b07682b6 38#include <linux/i2c/twl.h>
e9d35947 39
e9d35947
DB
40/*
41 * The GPIO "subchip" supports 18 GPIOs which can be configured as
42 * inputs or outputs, with pullups or pulldowns on each pin. Each
43 * GPIO can trigger interrupts on either or both edges.
44 *
45 * GPIO interrupts can be fed to either of two IRQ lines; this is
46 * intended to support multiple hosts.
47 *
48 * There are also two LED pins used sometimes as output-only GPIOs.
49 */
50
e9d35947
DB
51/* genirq interfaces are not available to modules */
52#ifdef MODULE
53#define is_module() true
54#else
55#define is_module() false
56#endif
57
58/* GPIO_CTRL Fields */
59#define MASK_GPIO_CTRL_GPIO0CD1 BIT(0)
60#define MASK_GPIO_CTRL_GPIO1CD2 BIT(1)
61#define MASK_GPIO_CTRL_GPIO_ON BIT(2)
62
63/* Mask for GPIO registers when aggregated into a 32-bit integer */
64#define GPIO_32_MASK 0x0003ffff
65
72c7901e
PU
66struct gpio_twl4030_priv {
67 struct gpio_chip gpio_chip;
c111feab 68 struct mutex mutex;
72c7901e
PU
69 int irq_base;
70
c111feab 71 /* Bitfields for state caching */
72c7901e 72 unsigned int usage_count;
c111feab
PU
73 unsigned int direction;
74 unsigned int out_state;
72c7901e 75};
e9d35947
DB
76
77/*----------------------------------------------------------------------*/
78
72c7901e
PU
79static inline struct gpio_twl4030_priv *to_gpio_twl4030(struct gpio_chip *chip)
80{
81 return container_of(chip, struct gpio_twl4030_priv, gpio_chip);
82}
83
e9d35947
DB
84/*
85 * To configure TWL4030 GPIO module registers
86 */
87static inline int gpio_twl4030_write(u8 address, u8 data)
88{
fc7b92fc 89 return twl_i2c_write_u8(TWL4030_MODULE_GPIO, data, address);
e9d35947
DB
90}
91
92/*----------------------------------------------------------------------*/
93
94/*
9859eb99 95 * LED register offsets from TWL_MODULE_LED base
e9d35947
DB
96 * PWMs A and B are dedicated to LEDs A and B, respectively.
97 */
98
9859eb99
PU
99#define TWL4030_LED_LEDEN_REG 0x00
100#define TWL4030_PWMAON_REG 0x01
101#define TWL4030_PWMAOFF_REG 0x02
102#define TWL4030_PWMBON_REG 0x03
103#define TWL4030_PWMBOFF_REG 0x04
e9d35947
DB
104
105/* LEDEN bits */
106#define LEDEN_LEDAON BIT(0)
107#define LEDEN_LEDBON BIT(1)
108#define LEDEN_LEDAEXT BIT(2)
109#define LEDEN_LEDBEXT BIT(3)
110#define LEDEN_LEDAPWM BIT(4)
111#define LEDEN_LEDBPWM BIT(5)
112#define LEDEN_PWM_LENGTHA BIT(6)
113#define LEDEN_PWM_LENGTHB BIT(7)
114
e9d35947
DB
115#define PWMxON_LENGTH BIT(7)
116
117/*----------------------------------------------------------------------*/
118
119/*
120 * To read a TWL4030 GPIO module register
121 */
122static inline int gpio_twl4030_read(u8 address)
123{
124 u8 data;
125 int ret = 0;
126
fc7b92fc 127 ret = twl_i2c_read_u8(TWL4030_MODULE_GPIO, &data, address);
e9d35947
DB
128 return (ret < 0) ? ret : data;
129}
130
131/*----------------------------------------------------------------------*/
132
c111feab 133static u8 cached_leden;
e9d35947
DB
134
135/* The LED lines are open drain outputs ... a FET pulls to GND, so an
136 * external pullup is needed. We could also expose the integrated PWM
137 * as a LED brightness control; we initialize it as "always on".
138 */
139static void twl4030_led_set_value(int led, int value)
140{
141 u8 mask = LEDEN_LEDAON | LEDEN_LEDAPWM;
142 int status;
143
144 if (led)
145 mask <<= 1;
146
e9d35947
DB
147 if (value)
148 cached_leden &= ~mask;
149 else
150 cached_leden |= mask;
fc7b92fc 151 status = twl_i2c_write_u8(TWL4030_MODULE_LED, cached_leden,
9859eb99 152 TWL4030_LED_LEDEN_REG);
e9d35947
DB
153}
154
155static int twl4030_set_gpio_direction(int gpio, int is_input)
156{
157 u8 d_bnk = gpio >> 3;
158 u8 d_msk = BIT(gpio & 0x7);
159 u8 reg = 0;
160 u8 base = REG_GPIODATADIR1 + d_bnk;
161 int ret = 0;
162
e9d35947
DB
163 ret = gpio_twl4030_read(base);
164 if (ret >= 0) {
165 if (is_input)
166 reg = ret & ~d_msk;
167 else
168 reg = ret | d_msk;
169
170 ret = gpio_twl4030_write(base, reg);
171 }
e9d35947
DB
172 return ret;
173}
174
175static int twl4030_set_gpio_dataout(int gpio, int enable)
176{
177 u8 d_bnk = gpio >> 3;
178 u8 d_msk = BIT(gpio & 0x7);
179 u8 base = 0;
180
181 if (enable)
182 base = REG_SETGPIODATAOUT1 + d_bnk;
183 else
184 base = REG_CLEARGPIODATAOUT1 + d_bnk;
185
186 return gpio_twl4030_write(base, d_msk);
187}
188
189static int twl4030_get_gpio_datain(int gpio)
190{
191 u8 d_bnk = gpio >> 3;
192 u8 d_off = gpio & 0x7;
193 u8 base = 0;
194 int ret = 0;
195
e9d35947
DB
196 base = REG_GPIODATAIN1 + d_bnk;
197 ret = gpio_twl4030_read(base);
198 if (ret > 0)
199 ret = (ret >> d_off) & 0x1;
200
201 return ret;
202}
203
e9d35947
DB
204/*----------------------------------------------------------------------*/
205
206static int twl_request(struct gpio_chip *chip, unsigned offset)
207{
72c7901e 208 struct gpio_twl4030_priv *priv = to_gpio_twl4030(chip);
e9d35947
DB
209 int status = 0;
210
c111feab 211 mutex_lock(&priv->mutex);
e9d35947
DB
212
213 /* Support the two LED outputs as output-only GPIOs. */
214 if (offset >= TWL4030_GPIO_MAX) {
215 u8 ledclr_mask = LEDEN_LEDAON | LEDEN_LEDAEXT
216 | LEDEN_LEDAPWM | LEDEN_PWM_LENGTHA;
9859eb99 217 u8 reg = TWL4030_PWMAON_REG;
e9d35947
DB
218
219 offset -= TWL4030_GPIO_MAX;
220 if (offset) {
221 ledclr_mask <<= 1;
9859eb99 222 reg = TWL4030_PWMBON_REG;
e9d35947
DB
223 }
224
225 /* initialize PWM to always-drive */
9859eb99
PU
226 /* Configure PWM OFF register first */
227 status = twl_i2c_write_u8(TWL4030_MODULE_LED, 0x7f, reg + 1);
e9d35947
DB
228 if (status < 0)
229 goto done;
9859eb99
PU
230
231 /* Followed by PWM ON register */
232 status = twl_i2c_write_u8(TWL4030_MODULE_LED, 0x7f, reg);
e9d35947
DB
233 if (status < 0)
234 goto done;
235
236 /* init LED to not-driven (high) */
9859eb99
PU
237 status = twl_i2c_read_u8(TWL4030_MODULE_LED, &cached_leden,
238 TWL4030_LED_LEDEN_REG);
e9d35947
DB
239 if (status < 0)
240 goto done;
241 cached_leden &= ~ledclr_mask;
9859eb99
PU
242 status = twl_i2c_write_u8(TWL4030_MODULE_LED, cached_leden,
243 TWL4030_LED_LEDEN_REG);
e9d35947
DB
244 if (status < 0)
245 goto done;
246
247 status = 0;
248 goto done;
249 }
250
251 /* on first use, turn GPIO module "on" */
72c7901e 252 if (!priv->usage_count) {
e9d35947
DB
253 struct twl4030_gpio_platform_data *pdata;
254 u8 value = MASK_GPIO_CTRL_GPIO_ON;
255
256 /* optionally have the first two GPIOs switch vMMC1
257 * and vMMC2 power supplies based on card presence.
258 */
259 pdata = chip->dev->platform_data;
b8589e2a
BC
260 if (pdata)
261 value |= pdata->mmc_cd & 0x03;
e9d35947
DB
262
263 status = gpio_twl4030_write(REG_GPIO_CTRL, value);
264 }
265
72c7901e 266done:
e9d35947 267 if (!status)
72c7901e 268 priv->usage_count |= BIT(offset);
e9d35947 269
c111feab 270 mutex_unlock(&priv->mutex);
e9d35947
DB
271 return status;
272}
273
274static void twl_free(struct gpio_chip *chip, unsigned offset)
275{
72c7901e
PU
276 struct gpio_twl4030_priv *priv = to_gpio_twl4030(chip);
277
c111feab 278 mutex_lock(&priv->mutex);
e9d35947
DB
279 if (offset >= TWL4030_GPIO_MAX) {
280 twl4030_led_set_value(offset - TWL4030_GPIO_MAX, 1);
c111feab 281 goto out;
e9d35947
DB
282 }
283
72c7901e 284 priv->usage_count &= ~BIT(offset);
e9d35947
DB
285
286 /* on last use, switch off GPIO module */
72c7901e 287 if (!priv->usage_count)
e9d35947
DB
288 gpio_twl4030_write(REG_GPIO_CTRL, 0x0);
289
c111feab
PU
290out:
291 mutex_unlock(&priv->mutex);
e9d35947
DB
292}
293
294static int twl_direction_in(struct gpio_chip *chip, unsigned offset)
295{
c111feab
PU
296 struct gpio_twl4030_priv *priv = to_gpio_twl4030(chip);
297 int ret;
298
299 mutex_lock(&priv->mutex);
300 if (offset < TWL4030_GPIO_MAX)
301 ret = twl4030_set_gpio_direction(offset, 1);
302 else
d459f7e3 303 ret = -EINVAL; /* LED outputs can't be set as input */
c111feab
PU
304
305 if (!ret)
306 priv->direction &= ~BIT(offset);
307
308 mutex_unlock(&priv->mutex);
309
310 return ret;
e9d35947
DB
311}
312
313static int twl_get(struct gpio_chip *chip, unsigned offset)
314{
72c7901e 315 struct gpio_twl4030_priv *priv = to_gpio_twl4030(chip);
c111feab 316 int ret;
e9d35947
DB
317 int status = 0;
318
c111feab
PU
319 mutex_lock(&priv->mutex);
320 if (!(priv->usage_count & BIT(offset))) {
321 ret = -EPERM;
322 goto out;
323 }
72c7901e 324
c111feab
PU
325 if (priv->direction & BIT(offset))
326 status = priv->out_state & BIT(offset);
e9d35947 327 else
c111feab 328 status = twl4030_get_gpio_datain(offset);
72c7901e 329
c111feab
PU
330 ret = (status <= 0) ? 0 : 1;
331out:
332 mutex_unlock(&priv->mutex);
333 return ret;
e9d35947
DB
334}
335
c111feab 336static void twl_set(struct gpio_chip *chip, unsigned offset, int value)
e9d35947 337{
c111feab
PU
338 struct gpio_twl4030_priv *priv = to_gpio_twl4030(chip);
339
340 mutex_lock(&priv->mutex);
341 if (offset < TWL4030_GPIO_MAX)
e9d35947 342 twl4030_set_gpio_dataout(offset, value);
c111feab 343 else
e9d35947 344 twl4030_led_set_value(offset - TWL4030_GPIO_MAX, value);
c111feab
PU
345
346 if (value)
347 priv->out_state |= BIT(offset);
348 else
349 priv->out_state &= ~BIT(offset);
350
351 mutex_unlock(&priv->mutex);
e9d35947
DB
352}
353
c111feab 354static int twl_direction_out(struct gpio_chip *chip, unsigned offset, int value)
e9d35947 355{
c111feab 356 struct gpio_twl4030_priv *priv = to_gpio_twl4030(chip);
d459f7e3 357 int ret = 0;
c111feab
PU
358
359 mutex_lock(&priv->mutex);
d459f7e3 360 if (offset < TWL4030_GPIO_MAX) {
af8888ac 361 ret = twl4030_set_gpio_direction(offset, 0);
d459f7e3
RQ
362 if (ret) {
363 mutex_unlock(&priv->mutex);
364 return ret;
365 }
366 }
367
368 /*
369 * LED gpios i.e. offset >= TWL4030_GPIO_MAX are always output
370 */
c111feab
PU
371
372 priv->direction |= BIT(offset);
373 mutex_unlock(&priv->mutex);
374
375 twl_set(chip, offset, value);
376
af8888ac 377 return ret;
e9d35947
DB
378}
379
380static int twl_to_irq(struct gpio_chip *chip, unsigned offset)
381{
72c7901e
PU
382 struct gpio_twl4030_priv *priv = to_gpio_twl4030(chip);
383
384 return (priv->irq_base && (offset < TWL4030_GPIO_MAX))
385 ? (priv->irq_base + offset)
e9d35947
DB
386 : -EINVAL;
387}
388
72c7901e 389static struct gpio_chip template_chip = {
e9d35947
DB
390 .label = "twl4030",
391 .owner = THIS_MODULE,
392 .request = twl_request,
393 .free = twl_free,
394 .direction_input = twl_direction_in,
395 .get = twl_get,
396 .direction_output = twl_direction_out,
397 .set = twl_set,
398 .to_irq = twl_to_irq,
399 .can_sleep = 1,
400};
401
402/*----------------------------------------------------------------------*/
403
3836309d 404static int gpio_twl4030_pulls(u32 ups, u32 downs)
e9d35947 405{
14591d88 406 u8 message[5];
e9d35947
DB
407 unsigned i, gpio_bit;
408
409 /* For most pins, a pulldown was enabled by default.
410 * We should have data that's specific to this board.
411 */
14591d88 412 for (gpio_bit = 1, i = 0; i < 5; i++) {
e9d35947
DB
413 u8 bit_mask;
414 unsigned j;
415
416 for (bit_mask = 0, j = 0; j < 8; j += 2, gpio_bit <<= 1) {
417 if (ups & gpio_bit)
418 bit_mask |= 1 << (j + 1);
419 else if (downs & gpio_bit)
420 bit_mask |= 1 << (j + 0);
421 }
422 message[i] = bit_mask;
423 }
424
fc7b92fc 425 return twl_i2c_write(TWL4030_MODULE_GPIO, message,
e9d35947
DB
426 REG_GPIOPUPDCTR1, 5);
427}
428
3836309d 429static int gpio_twl4030_debounce(u32 debounce, u8 mmc_cd)
cabb3fc4 430{
14591d88 431 u8 message[3];
cabb3fc4
DB
432
433 /* 30 msec of debouncing is always used for MMC card detect,
434 * and is optional for everything else.
435 */
14591d88 436 message[0] = (debounce & 0xff) | (mmc_cd & 0x03);
cabb3fc4 437 debounce >>= 8;
14591d88 438 message[1] = (debounce & 0xff);
cabb3fc4 439 debounce >>= 8;
14591d88 440 message[2] = (debounce & 0x03);
cabb3fc4 441
fc7b92fc 442 return twl_i2c_write(TWL4030_MODULE_GPIO, message,
cabb3fc4
DB
443 REG_GPIO_DEBEN1, 3);
444}
445
e9d35947
DB
446static int gpio_twl4030_remove(struct platform_device *pdev);
447
f74ce8fb
FV
448static struct twl4030_gpio_platform_data *of_gpio_twl4030(struct device *dev)
449{
450 struct twl4030_gpio_platform_data *omap_twl_info;
451
452 omap_twl_info = devm_kzalloc(dev, sizeof(*omap_twl_info), GFP_KERNEL);
453 if (!omap_twl_info)
454 return NULL;
455
f74ce8fb
FV
456 omap_twl_info->use_leds = of_property_read_bool(dev->of_node,
457 "ti,use-leds");
458
459 of_property_read_u32(dev->of_node, "ti,debounce",
460 &omap_twl_info->debounce);
461 of_property_read_u32(dev->of_node, "ti,mmc-cd",
462 (u32 *)&omap_twl_info->mmc_cd);
463 of_property_read_u32(dev->of_node, "ti,pullups",
464 &omap_twl_info->pullups);
465 of_property_read_u32(dev->of_node, "ti,pulldowns",
466 &omap_twl_info->pulldowns);
467
468 return omap_twl_info;
469}
470
3836309d 471static int gpio_twl4030_probe(struct platform_device *pdev)
e9d35947
DB
472{
473 struct twl4030_gpio_platform_data *pdata = pdev->dev.platform_data;
b8589e2a 474 struct device_node *node = pdev->dev.of_node;
72c7901e 475 struct gpio_twl4030_priv *priv;
2d9dd99b 476 int ret, irq_base;
e9d35947 477
72c7901e
PU
478 priv = devm_kzalloc(&pdev->dev, sizeof(struct gpio_twl4030_priv),
479 GFP_KERNEL);
480 if (!priv)
481 return -ENOMEM;
482
e9d35947 483 /* maybe setup IRQs */
2d9dd99b
BC
484 if (is_module()) {
485 dev_err(&pdev->dev, "can't dispatch IRQs from modules\n");
486 goto no_irqs;
487 }
488
489 irq_base = irq_alloc_descs(-1, 0, TWL4030_GPIO_MAX, 0);
490 if (irq_base < 0) {
491 dev_err(&pdev->dev, "Failed to alloc irq_descs\n");
492 return irq_base;
e9d35947
DB
493 }
494
b8589e2a
BC
495 irq_domain_add_legacy(node, TWL4030_GPIO_MAX, irq_base, 0,
496 &irq_domain_simple_ops, NULL);
497
2d9dd99b
BC
498 ret = twl4030_sih_setup(&pdev->dev, TWL4030_MODULE_GPIO, irq_base);
499 if (ret < 0)
500 return ret;
501
72c7901e 502 priv->irq_base = irq_base;
2d9dd99b 503
e9d35947 504no_irqs:
72c7901e
PU
505 priv->gpio_chip = template_chip;
506 priv->gpio_chip.base = -1;
507 priv->gpio_chip.ngpio = TWL4030_GPIO_MAX;
508 priv->gpio_chip.dev = &pdev->dev;
e9d35947 509
c111feab
PU
510 mutex_init(&priv->mutex);
511
f74ce8fb
FV
512 if (node)
513 pdata = of_gpio_twl4030(&pdev->dev);
b8589e2a 514
f74ce8fb
FV
515 if (pdata == NULL) {
516 dev_err(&pdev->dev, "Platform data is missing\n");
517 return -ENXIO;
b8589e2a 518 }
e9d35947 519
f74ce8fb
FV
520 /*
521 * NOTE: boards may waste power if they don't set pullups
522 * and pulldowns correctly ... default for non-ULPI pins is
523 * pulldown, and some other pins may have external pullups
524 * or pulldowns. Careful!
525 */
526 ret = gpio_twl4030_pulls(pdata->pullups, pdata->pulldowns);
527 if (ret)
528 dev_dbg(&pdev->dev, "pullups %.05x %.05x --> %d\n",
529 pdata->pullups, pdata->pulldowns, ret);
530
531 ret = gpio_twl4030_debounce(pdata->debounce, pdata->mmc_cd);
532 if (ret)
533 dev_dbg(&pdev->dev, "debounce %.03x %.01x --> %d\n",
534 pdata->debounce, pdata->mmc_cd, ret);
535
536 /*
537 * NOTE: we assume VIBRA_CTL.VIBRA_EN, in MODULE_AUDIO_VOICE,
538 * is (still) clear if use_leds is set.
539 */
540 if (pdata->use_leds)
72c7901e 541 priv->gpio_chip.ngpio += 2;
f74ce8fb 542
72c7901e 543 ret = gpiochip_add(&priv->gpio_chip);
e9d35947 544 if (ret < 0) {
2d9dd99b 545 dev_err(&pdev->dev, "could not register gpiochip, %d\n", ret);
72c7901e 546 priv->gpio_chip.ngpio = 0;
e9d35947 547 gpio_twl4030_remove(pdev);
a940d9a1
TL
548 goto out;
549 }
550
72c7901e 551 platform_set_drvdata(pdev, priv);
a940d9a1
TL
552
553 if (pdata && pdata->setup) {
e9d35947
DB
554 int status;
555
72c7901e
PU
556 status = pdata->setup(&pdev->dev, priv->gpio_chip.base,
557 TWL4030_GPIO_MAX);
e9d35947
DB
558 if (status)
559 dev_dbg(&pdev->dev, "setup --> %d\n", status);
560 }
561
a940d9a1 562out:
e9d35947
DB
563 return ret;
564}
565
206210ce 566/* Cannot use as gpio_twl4030_probe() calls us */
46c529cf 567static int gpio_twl4030_remove(struct platform_device *pdev)
e9d35947
DB
568{
569 struct twl4030_gpio_platform_data *pdata = pdev->dev.platform_data;
72c7901e 570 struct gpio_twl4030_priv *priv = platform_get_drvdata(pdev);
e9d35947
DB
571 int status;
572
b8589e2a 573 if (pdata && pdata->teardown) {
72c7901e
PU
574 status = pdata->teardown(&pdev->dev, priv->gpio_chip.base,
575 TWL4030_GPIO_MAX);
e9d35947
DB
576 if (status) {
577 dev_dbg(&pdev->dev, "teardown --> %d\n", status);
578 return status;
579 }
580 }
581
72c7901e 582 status = gpiochip_remove(&priv->gpio_chip);
e9d35947
DB
583 if (status < 0)
584 return status;
585
586 if (is_module())
587 return 0;
588
589 /* REVISIT no support yet for deregistering all the IRQs */
590 WARN_ON(1);
591 return -EIO;
592}
593
b8589e2a
BC
594static const struct of_device_id twl_gpio_match[] = {
595 { .compatible = "ti,twl4030-gpio", },
596 { },
597};
598MODULE_DEVICE_TABLE(of, twl_gpio_match);
599
e9d35947
DB
600/* Note: this hardware lives inside an I2C-based multi-function device. */
601MODULE_ALIAS("platform:twl4030_gpio");
602
603static struct platform_driver gpio_twl4030_driver = {
b8589e2a
BC
604 .driver = {
605 .name = "twl4030_gpio",
606 .owner = THIS_MODULE,
607 .of_match_table = of_match_ptr(twl_gpio_match),
608 },
e9d35947 609 .probe = gpio_twl4030_probe,
46c529cf 610 .remove = gpio_twl4030_remove,
e9d35947
DB
611};
612
613static int __init gpio_twl4030_init(void)
614{
615 return platform_driver_register(&gpio_twl4030_driver);
616}
617subsys_initcall(gpio_twl4030_init);
618
619static void __exit gpio_twl4030_exit(void)
620{
621 platform_driver_unregister(&gpio_twl4030_driver);
622}
623module_exit(gpio_twl4030_exit);
624
625MODULE_AUTHOR("Texas Instruments, Inc.");
626MODULE_DESCRIPTION("GPIO interface for TWL4030");
627MODULE_LICENSE("GPL");