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