blob: 5197edf1acfd5ee7ffc4d7965aa932f3975d22c6 [file] [log] [blame]
Rabin Vincent03f822f2010-07-02 16:52:09 +05301/*
2 * Copyright (C) ST-Ericsson SA 2010
3 *
4 * License Terms: GNU General Public License, version 2
5 * Author: Rabin Vincent <rabin.vincent@stericsson.com> for ST-Ericsson
6 */
7
8#include <linux/module.h>
9#include <linux/init.h>
10#include <linux/platform_device.h>
11#include <linux/slab.h>
12#include <linux/gpio.h>
Rabin Vincent03f822f2010-07-02 16:52:09 +053013#include <linux/interrupt.h>
Vipul Kumar Samar86605cf2012-11-26 17:06:51 +053014#include <linux/of.h>
Rabin Vincent03f822f2010-07-02 16:52:09 +053015#include <linux/mfd/stmpe.h>
Linus Walleij27ec8a92014-10-02 07:55:41 +020016#include <linux/seq_file.h>
Rabin Vincent03f822f2010-07-02 16:52:09 +053017
18/*
19 * These registers are modified under the irq bus lock and cached to avoid
20 * unnecessary writes in bus_sync_unlock.
21 */
22enum { REG_RE, REG_FE, REG_IE };
23
24#define CACHE_NR_REGS 3
Linus Walleij9e9dc7d2014-05-08 23:16:34 +020025/* No variant has more than 24 GPIOs */
26#define CACHE_NR_BANKS (24 / 8)
Rabin Vincent03f822f2010-07-02 16:52:09 +053027
28struct stmpe_gpio {
29 struct gpio_chip chip;
30 struct stmpe *stmpe;
31 struct device *dev;
32 struct mutex irq_lock;
Linus Walleij1dfb4a02015-01-13 08:00:29 +010033 u32 norequest_mask;
Rabin Vincent03f822f2010-07-02 16:52:09 +053034 /* Caches of interrupt control registers for bus_lock */
35 u8 regs[CACHE_NR_REGS][CACHE_NR_BANKS];
36 u8 oldregs[CACHE_NR_REGS][CACHE_NR_BANKS];
37};
38
Rabin Vincent03f822f2010-07-02 16:52:09 +053039static int stmpe_gpio_get(struct gpio_chip *chip, unsigned offset)
40{
Linus Walleijb03c04a2015-12-07 14:32:13 +010041 struct stmpe_gpio *stmpe_gpio = gpiochip_get_data(chip);
Rabin Vincent03f822f2010-07-02 16:52:09 +053042 struct stmpe *stmpe = stmpe_gpio->stmpe;
43 u8 reg = stmpe->regs[STMPE_IDX_GPMR_LSB] - (offset / 8);
44 u8 mask = 1 << (offset % 8);
45 int ret;
46
47 ret = stmpe_reg_read(stmpe, reg);
48 if (ret < 0)
49 return ret;
50
Bhupesh Sharma7535b8b2012-02-27 11:19:43 +053051 return !!(ret & mask);
Rabin Vincent03f822f2010-07-02 16:52:09 +053052}
53
54static void stmpe_gpio_set(struct gpio_chip *chip, unsigned offset, int val)
55{
Linus Walleijb03c04a2015-12-07 14:32:13 +010056 struct stmpe_gpio *stmpe_gpio = gpiochip_get_data(chip);
Rabin Vincent03f822f2010-07-02 16:52:09 +053057 struct stmpe *stmpe = stmpe_gpio->stmpe;
58 int which = val ? STMPE_IDX_GPSR_LSB : STMPE_IDX_GPCR_LSB;
59 u8 reg = stmpe->regs[which] - (offset / 8);
60 u8 mask = 1 << (offset % 8);
61
Viresh Kumarcccdceb2011-12-14 09:28:27 +053062 /*
63 * Some variants have single register for gpio set/clear functionality.
64 * For them we need to write 0 to clear and 1 to set.
65 */
66 if (stmpe->regs[STMPE_IDX_GPSR_LSB] == stmpe->regs[STMPE_IDX_GPCR_LSB])
67 stmpe_set_bits(stmpe, reg, mask, val ? mask : 0);
68 else
69 stmpe_reg_write(stmpe, reg, mask);
Rabin Vincent03f822f2010-07-02 16:52:09 +053070}
71
72static int stmpe_gpio_direction_output(struct gpio_chip *chip,
73 unsigned offset, int val)
74{
Linus Walleijb03c04a2015-12-07 14:32:13 +010075 struct stmpe_gpio *stmpe_gpio = gpiochip_get_data(chip);
Rabin Vincent03f822f2010-07-02 16:52:09 +053076 struct stmpe *stmpe = stmpe_gpio->stmpe;
77 u8 reg = stmpe->regs[STMPE_IDX_GPDR_LSB] - (offset / 8);
78 u8 mask = 1 << (offset % 8);
79
80 stmpe_gpio_set(chip, offset, val);
81
82 return stmpe_set_bits(stmpe, reg, mask, mask);
83}
84
85static int stmpe_gpio_direction_input(struct gpio_chip *chip,
86 unsigned offset)
87{
Linus Walleijb03c04a2015-12-07 14:32:13 +010088 struct stmpe_gpio *stmpe_gpio = gpiochip_get_data(chip);
Rabin Vincent03f822f2010-07-02 16:52:09 +053089 struct stmpe *stmpe = stmpe_gpio->stmpe;
90 u8 reg = stmpe->regs[STMPE_IDX_GPDR_LSB] - (offset / 8);
91 u8 mask = 1 << (offset % 8);
92
93 return stmpe_set_bits(stmpe, reg, mask, 0);
94}
95
Rabin Vincent03f822f2010-07-02 16:52:09 +053096static int stmpe_gpio_request(struct gpio_chip *chip, unsigned offset)
97{
Linus Walleijb03c04a2015-12-07 14:32:13 +010098 struct stmpe_gpio *stmpe_gpio = gpiochip_get_data(chip);
Rabin Vincent03f822f2010-07-02 16:52:09 +053099 struct stmpe *stmpe = stmpe_gpio->stmpe;
100
Wolfram Sangb8e9cf02010-08-16 17:14:44 +0200101 if (stmpe_gpio->norequest_mask & (1 << offset))
102 return -EINVAL;
103
Rabin Vincent03f822f2010-07-02 16:52:09 +0530104 return stmpe_set_altfunc(stmpe, 1 << offset, STMPE_BLOCK_GPIO);
105}
106
107static struct gpio_chip template_chip = {
108 .label = "stmpe",
109 .owner = THIS_MODULE,
110 .direction_input = stmpe_gpio_direction_input,
111 .get = stmpe_gpio_get,
112 .direction_output = stmpe_gpio_direction_output,
113 .set = stmpe_gpio_set,
Rabin Vincent03f822f2010-07-02 16:52:09 +0530114 .request = stmpe_gpio_request,
Linus Walleij9fb1f392013-12-04 14:42:46 +0100115 .can_sleep = true,
Rabin Vincent03f822f2010-07-02 16:52:09 +0530116};
117
Lennert Buytenhek2a866f32011-01-12 17:00:17 -0800118static int stmpe_gpio_irq_set_type(struct irq_data *d, unsigned int type)
Rabin Vincent03f822f2010-07-02 16:52:09 +0530119{
Linus Walleijfe44e702014-04-15 23:38:56 +0200120 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
Linus Walleijb03c04a2015-12-07 14:32:13 +0100121 struct stmpe_gpio *stmpe_gpio = gpiochip_get_data(gc);
Lee Jonesfc13d5a2012-12-10 10:07:54 +0000122 int offset = d->hwirq;
Rabin Vincent03f822f2010-07-02 16:52:09 +0530123 int regoffset = offset / 8;
124 int mask = 1 << (offset % 8);
125
Linus Walleij1fe3bd92014-10-02 07:55:27 +0200126 if (type & IRQ_TYPE_LEVEL_LOW || type & IRQ_TYPE_LEVEL_HIGH)
Rabin Vincent03f822f2010-07-02 16:52:09 +0530127 return -EINVAL;
128
Viresh Kumarcccdceb2011-12-14 09:28:27 +0530129 /* STMPE801 doesn't have RE and FE registers */
130 if (stmpe_gpio->stmpe->partnum == STMPE801)
131 return 0;
132
Linus Walleij1fe3bd92014-10-02 07:55:27 +0200133 if (type & IRQ_TYPE_EDGE_RISING)
Rabin Vincent03f822f2010-07-02 16:52:09 +0530134 stmpe_gpio->regs[REG_RE][regoffset] |= mask;
135 else
136 stmpe_gpio->regs[REG_RE][regoffset] &= ~mask;
137
Linus Walleij1fe3bd92014-10-02 07:55:27 +0200138 if (type & IRQ_TYPE_EDGE_FALLING)
Rabin Vincent03f822f2010-07-02 16:52:09 +0530139 stmpe_gpio->regs[REG_FE][regoffset] |= mask;
140 else
141 stmpe_gpio->regs[REG_FE][regoffset] &= ~mask;
142
143 return 0;
144}
145
Lennert Buytenhek2a866f32011-01-12 17:00:17 -0800146static void stmpe_gpio_irq_lock(struct irq_data *d)
Rabin Vincent03f822f2010-07-02 16:52:09 +0530147{
Linus Walleijfe44e702014-04-15 23:38:56 +0200148 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
Linus Walleijb03c04a2015-12-07 14:32:13 +0100149 struct stmpe_gpio *stmpe_gpio = gpiochip_get_data(gc);
Rabin Vincent03f822f2010-07-02 16:52:09 +0530150
151 mutex_lock(&stmpe_gpio->irq_lock);
152}
153
Lennert Buytenhek2a866f32011-01-12 17:00:17 -0800154static void stmpe_gpio_irq_sync_unlock(struct irq_data *d)
Rabin Vincent03f822f2010-07-02 16:52:09 +0530155{
Linus Walleijfe44e702014-04-15 23:38:56 +0200156 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
Linus Walleijb03c04a2015-12-07 14:32:13 +0100157 struct stmpe_gpio *stmpe_gpio = gpiochip_get_data(gc);
Rabin Vincent03f822f2010-07-02 16:52:09 +0530158 struct stmpe *stmpe = stmpe_gpio->stmpe;
159 int num_banks = DIV_ROUND_UP(stmpe->num_gpios, 8);
160 static const u8 regmap[] = {
161 [REG_RE] = STMPE_IDX_GPRER_LSB,
162 [REG_FE] = STMPE_IDX_GPFER_LSB,
163 [REG_IE] = STMPE_IDX_IEGPIOR_LSB,
164 };
165 int i, j;
166
167 for (i = 0; i < CACHE_NR_REGS; i++) {
Viresh Kumarcccdceb2011-12-14 09:28:27 +0530168 /* STMPE801 doesn't have RE and FE registers */
169 if ((stmpe->partnum == STMPE801) &&
170 (i != REG_IE))
171 continue;
172
Rabin Vincent03f822f2010-07-02 16:52:09 +0530173 for (j = 0; j < num_banks; j++) {
174 u8 old = stmpe_gpio->oldregs[i][j];
175 u8 new = stmpe_gpio->regs[i][j];
176
177 if (new == old)
178 continue;
179
180 stmpe_gpio->oldregs[i][j] = new;
181 stmpe_reg_write(stmpe, stmpe->regs[regmap[i]] - j, new);
182 }
183 }
184
185 mutex_unlock(&stmpe_gpio->irq_lock);
186}
187
Lennert Buytenhek2a866f32011-01-12 17:00:17 -0800188static void stmpe_gpio_irq_mask(struct irq_data *d)
Rabin Vincent03f822f2010-07-02 16:52:09 +0530189{
Linus Walleijfe44e702014-04-15 23:38:56 +0200190 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
Linus Walleijb03c04a2015-12-07 14:32:13 +0100191 struct stmpe_gpio *stmpe_gpio = gpiochip_get_data(gc);
Lee Jonesfc13d5a2012-12-10 10:07:54 +0000192 int offset = d->hwirq;
Rabin Vincent03f822f2010-07-02 16:52:09 +0530193 int regoffset = offset / 8;
194 int mask = 1 << (offset % 8);
195
196 stmpe_gpio->regs[REG_IE][regoffset] &= ~mask;
197}
198
Lennert Buytenhek2a866f32011-01-12 17:00:17 -0800199static void stmpe_gpio_irq_unmask(struct irq_data *d)
Rabin Vincent03f822f2010-07-02 16:52:09 +0530200{
Linus Walleijfe44e702014-04-15 23:38:56 +0200201 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
Linus Walleijb03c04a2015-12-07 14:32:13 +0100202 struct stmpe_gpio *stmpe_gpio = gpiochip_get_data(gc);
Lee Jonesfc13d5a2012-12-10 10:07:54 +0000203 int offset = d->hwirq;
Rabin Vincent03f822f2010-07-02 16:52:09 +0530204 int regoffset = offset / 8;
205 int mask = 1 << (offset % 8);
206
207 stmpe_gpio->regs[REG_IE][regoffset] |= mask;
208}
209
Linus Walleij27ec8a92014-10-02 07:55:41 +0200210static void stmpe_dbg_show_one(struct seq_file *s,
211 struct gpio_chip *gc,
212 unsigned offset, unsigned gpio)
213{
Linus Walleijb03c04a2015-12-07 14:32:13 +0100214 struct stmpe_gpio *stmpe_gpio = gpiochip_get_data(gc);
Linus Walleij27ec8a92014-10-02 07:55:41 +0200215 struct stmpe *stmpe = stmpe_gpio->stmpe;
216 const char *label = gpiochip_is_requested(gc, offset);
217 int num_banks = DIV_ROUND_UP(stmpe->num_gpios, 8);
218 bool val = !!stmpe_gpio_get(gc, offset);
219 u8 dir_reg = stmpe->regs[STMPE_IDX_GPDR_LSB] - (offset / 8);
220 u8 mask = 1 << (offset % 8);
221 int ret;
222 u8 dir;
223
224 ret = stmpe_reg_read(stmpe, dir_reg);
225 if (ret < 0)
226 return;
227 dir = !!(ret & mask);
228
229 if (dir) {
230 seq_printf(s, " gpio-%-3d (%-20.20s) out %s",
231 gpio, label ?: "(none)",
232 val ? "hi" : "lo");
233 } else {
234 u8 edge_det_reg = stmpe->regs[STMPE_IDX_GPEDR_MSB] + num_banks - 1 - (offset / 8);
235 u8 rise_reg = stmpe->regs[STMPE_IDX_GPRER_LSB] - (offset / 8);
236 u8 fall_reg = stmpe->regs[STMPE_IDX_GPFER_LSB] - (offset / 8);
237 u8 irqen_reg = stmpe->regs[STMPE_IDX_IEGPIOR_LSB] - (offset / 8);
238 bool edge_det;
239 bool rise;
240 bool fall;
241 bool irqen;
242
243 ret = stmpe_reg_read(stmpe, edge_det_reg);
244 if (ret < 0)
245 return;
246 edge_det = !!(ret & mask);
247 ret = stmpe_reg_read(stmpe, rise_reg);
248 if (ret < 0)
249 return;
250 rise = !!(ret & mask);
251 ret = stmpe_reg_read(stmpe, fall_reg);
252 if (ret < 0)
253 return;
254 fall = !!(ret & mask);
255 ret = stmpe_reg_read(stmpe, irqen_reg);
256 if (ret < 0)
257 return;
258 irqen = !!(ret & mask);
259
260 seq_printf(s, " gpio-%-3d (%-20.20s) in %s %s %s%s%s",
261 gpio, label ?: "(none)",
262 val ? "hi" : "lo",
263 edge_det ? "edge-asserted" : "edge-inactive",
264 irqen ? "IRQ-enabled" : "",
265 rise ? " rising-edge-detection" : "",
266 fall ? " falling-edge-detection" : "");
267 }
268}
269
270static void stmpe_dbg_show(struct seq_file *s, struct gpio_chip *gc)
271{
272 unsigned i;
273 unsigned gpio = gc->base;
274
275 for (i = 0; i < gc->ngpio; i++, gpio++) {
276 stmpe_dbg_show_one(s, gc, i, gpio);
277 seq_printf(s, "\n");
278 }
279}
280
Rabin Vincent03f822f2010-07-02 16:52:09 +0530281static struct irq_chip stmpe_gpio_irq_chip = {
282 .name = "stmpe-gpio",
Lennert Buytenhek2a866f32011-01-12 17:00:17 -0800283 .irq_bus_lock = stmpe_gpio_irq_lock,
284 .irq_bus_sync_unlock = stmpe_gpio_irq_sync_unlock,
285 .irq_mask = stmpe_gpio_irq_mask,
286 .irq_unmask = stmpe_gpio_irq_unmask,
287 .irq_set_type = stmpe_gpio_irq_set_type,
Rabin Vincent03f822f2010-07-02 16:52:09 +0530288};
289
290static irqreturn_t stmpe_gpio_irq(int irq, void *dev)
291{
292 struct stmpe_gpio *stmpe_gpio = dev;
293 struct stmpe *stmpe = stmpe_gpio->stmpe;
294 u8 statmsbreg = stmpe->regs[STMPE_IDX_ISGPIOR_MSB];
295 int num_banks = DIV_ROUND_UP(stmpe->num_gpios, 8);
296 u8 status[num_banks];
297 int ret;
298 int i;
299
300 ret = stmpe_block_read(stmpe, statmsbreg, num_banks, status);
301 if (ret < 0)
302 return IRQ_NONE;
303
304 for (i = 0; i < num_banks; i++) {
305 int bank = num_banks - i - 1;
306 unsigned int enabled = stmpe_gpio->regs[REG_IE][bank];
307 unsigned int stat = status[i];
308
309 stat &= enabled;
310 if (!stat)
311 continue;
312
313 while (stat) {
314 int bit = __ffs(stat);
315 int line = bank * 8 + bit;
Linus Walleijfe44e702014-04-15 23:38:56 +0200316 int child_irq = irq_find_mapping(stmpe_gpio->chip.irqdomain,
Linus Walleijed05e202013-10-11 19:51:38 +0200317 line);
Rabin Vincent03f822f2010-07-02 16:52:09 +0530318
Linus Walleijed05e202013-10-11 19:51:38 +0200319 handle_nested_irq(child_irq);
Rabin Vincent03f822f2010-07-02 16:52:09 +0530320 stat &= ~(1 << bit);
321 }
322
323 stmpe_reg_write(stmpe, statmsbreg + i, status[i]);
Viresh Kumarcccdceb2011-12-14 09:28:27 +0530324
325 /* Edge detect register is not present on 801 */
326 if (stmpe->partnum != STMPE801)
327 stmpe_reg_write(stmpe, stmpe->regs[STMPE_IDX_GPEDR_MSB]
328 + i, status[i]);
Rabin Vincent03f822f2010-07-02 16:52:09 +0530329 }
330
331 return IRQ_HANDLED;
332}
333
Bill Pemberton38363092012-11-19 13:22:34 -0500334static int stmpe_gpio_probe(struct platform_device *pdev)
Rabin Vincent03f822f2010-07-02 16:52:09 +0530335{
336 struct stmpe *stmpe = dev_get_drvdata(pdev->dev.parent);
Vipul Kumar Samar86605cf2012-11-26 17:06:51 +0530337 struct device_node *np = pdev->dev.of_node;
Rabin Vincent03f822f2010-07-02 16:52:09 +0530338 struct stmpe_gpio *stmpe_gpio;
339 int ret;
Chris Blair38040c82012-01-26 22:17:15 +0100340 int irq = 0;
Rabin Vincent03f822f2010-07-02 16:52:09 +0530341
Rabin Vincent03f822f2010-07-02 16:52:09 +0530342 irq = platform_get_irq(pdev, 0);
Rabin Vincent03f822f2010-07-02 16:52:09 +0530343
344 stmpe_gpio = kzalloc(sizeof(struct stmpe_gpio), GFP_KERNEL);
345 if (!stmpe_gpio)
346 return -ENOMEM;
347
348 mutex_init(&stmpe_gpio->irq_lock);
349
350 stmpe_gpio->dev = &pdev->dev;
351 stmpe_gpio->stmpe = stmpe;
Rabin Vincent03f822f2010-07-02 16:52:09 +0530352 stmpe_gpio->chip = template_chip;
353 stmpe_gpio->chip.ngpio = stmpe->num_gpios;
Linus Walleij58383c72015-11-04 09:56:26 +0100354 stmpe_gpio->chip.parent = &pdev->dev;
Gabriel Fernandez9afd9b72013-03-18 11:45:05 +0100355 stmpe_gpio->chip.of_node = np;
Linus Walleij9e9dc7d2014-05-08 23:16:34 +0200356 stmpe_gpio->chip.base = -1;
Rabin Vincent03f822f2010-07-02 16:52:09 +0530357
Linus Walleij27ec8a92014-10-02 07:55:41 +0200358 if (IS_ENABLED(CONFIG_DEBUG_FS))
359 stmpe_gpio->chip.dbg_show = stmpe_dbg_show;
360
Linus Walleij1dfb4a02015-01-13 08:00:29 +0100361 of_property_read_u32(np, "st,norequest-mask",
362 &stmpe_gpio->norequest_mask);
Vipul Kumar Samar86605cf2012-11-26 17:06:51 +0530363
Linus Walleij9e9dc7d2014-05-08 23:16:34 +0200364 if (irq < 0)
Chris Blair38040c82012-01-26 22:17:15 +0100365 dev_info(&pdev->dev,
Linus Walleijfe44e702014-04-15 23:38:56 +0200366 "device configured in no-irq mode: "
Chris Blair38040c82012-01-26 22:17:15 +0100367 "irqs are not available\n");
Rabin Vincent03f822f2010-07-02 16:52:09 +0530368
369 ret = stmpe_enable(stmpe, STMPE_BLOCK_GPIO);
370 if (ret)
Vasiliy Kulikov02bf0742010-09-12 22:57:19 +0400371 goto out_free;
Rabin Vincent03f822f2010-07-02 16:52:09 +0530372
Linus Walleijb03c04a2015-12-07 14:32:13 +0100373 ret = gpiochip_add_data(&stmpe_gpio->chip, stmpe_gpio);
Linus Walleij3f97d5fc2014-09-26 14:19:52 +0200374 if (ret) {
375 dev_err(&pdev->dev, "unable to add gpiochip: %d\n", ret);
376 goto out_disable;
377 }
378
Linus Walleijfe44e702014-04-15 23:38:56 +0200379 if (irq > 0) {
380 ret = devm_request_threaded_irq(&pdev->dev, irq, NULL,
381 stmpe_gpio_irq, IRQF_ONESHOT,
382 "stmpe-gpio", stmpe_gpio);
Chris Blair38040c82012-01-26 22:17:15 +0100383 if (ret) {
384 dev_err(&pdev->dev, "unable to get irq: %d\n", ret);
Lee Jonesfc13d5a2012-12-10 10:07:54 +0000385 goto out_disable;
Chris Blair38040c82012-01-26 22:17:15 +0100386 }
Linus Walleijfe44e702014-04-15 23:38:56 +0200387 ret = gpiochip_irqchip_add(&stmpe_gpio->chip,
388 &stmpe_gpio_irq_chip,
389 0,
390 handle_simple_irq,
391 IRQ_TYPE_NONE);
392 if (ret) {
393 dev_err(&pdev->dev,
394 "could not connect irqchip to gpiochip\n");
Linus Walleij3f97d5fc2014-09-26 14:19:52 +0200395 goto out_disable;
Linus Walleijfe44e702014-04-15 23:38:56 +0200396 }
Rabin Vincent03f822f2010-07-02 16:52:09 +0530397
Linus Walleij3f97d5fc2014-09-26 14:19:52 +0200398 gpiochip_set_chained_irqchip(&stmpe_gpio->chip,
399 &stmpe_gpio_irq_chip,
400 irq,
401 NULL);
Rabin Vincent03f822f2010-07-02 16:52:09 +0530402 }
403
Rabin Vincent03f822f2010-07-02 16:52:09 +0530404 platform_set_drvdata(pdev, stmpe_gpio);
405
406 return 0;
407
Vasiliy Kulikov02bf0742010-09-12 22:57:19 +0400408out_disable:
409 stmpe_disable(stmpe, STMPE_BLOCK_GPIO);
Linus Walleij3f97d5fc2014-09-26 14:19:52 +0200410 gpiochip_remove(&stmpe_gpio->chip);
Rabin Vincent03f822f2010-07-02 16:52:09 +0530411out_free:
412 kfree(stmpe_gpio);
413 return ret;
414}
415
Bill Pemberton206210c2012-11-19 13:25:50 -0500416static int stmpe_gpio_remove(struct platform_device *pdev)
Rabin Vincent03f822f2010-07-02 16:52:09 +0530417{
418 struct stmpe_gpio *stmpe_gpio = platform_get_drvdata(pdev);
419 struct stmpe *stmpe = stmpe_gpio->stmpe;
Rabin Vincent03f822f2010-07-02 16:52:09 +0530420
abdoulaye berthe9f5132a2014-07-12 22:30:12 +0200421 gpiochip_remove(&stmpe_gpio->chip);
Rabin Vincent03f822f2010-07-02 16:52:09 +0530422 stmpe_disable(stmpe, STMPE_BLOCK_GPIO);
Rabin Vincent03f822f2010-07-02 16:52:09 +0530423 kfree(stmpe_gpio);
424
425 return 0;
426}
427
428static struct platform_driver stmpe_gpio_driver = {
429 .driver.name = "stmpe-gpio",
430 .driver.owner = THIS_MODULE,
431 .probe = stmpe_gpio_probe,
Bill Pemberton8283c4f2012-11-19 13:20:08 -0500432 .remove = stmpe_gpio_remove,
Rabin Vincent03f822f2010-07-02 16:52:09 +0530433};
434
435static int __init stmpe_gpio_init(void)
436{
437 return platform_driver_register(&stmpe_gpio_driver);
438}
439subsys_initcall(stmpe_gpio_init);
440
441static void __exit stmpe_gpio_exit(void)
442{
443 platform_driver_unregister(&stmpe_gpio_driver);
444}
445module_exit(stmpe_gpio_exit);
446
447MODULE_LICENSE("GPL v2");
448MODULE_DESCRIPTION("STMPExxxx GPIO driver");
449MODULE_AUTHOR("Rabin Vincent <rabin.vincent@stericsson.com>");