blob: 628b58494294a97f2e05a18b59b8d3dea4777a25 [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>
13#include <linux/irq.h>
Lee Jonesfc13d5a2012-12-10 10:07:54 +000014#include <linux/irqdomain.h>
Rabin Vincent03f822f2010-07-02 16:52:09 +053015#include <linux/interrupt.h>
Vipul Kumar Samar86605cf2012-11-26 17:06:51 +053016#include <linux/of.h>
Rabin Vincent03f822f2010-07-02 16:52:09 +053017#include <linux/mfd/stmpe.h>
18
19/*
20 * These registers are modified under the irq bus lock and cached to avoid
21 * unnecessary writes in bus_sync_unlock.
22 */
23enum { REG_RE, REG_FE, REG_IE };
24
25#define CACHE_NR_REGS 3
Linus Walleij9e9dc7d2014-05-08 23:16:34 +020026/* No variant has more than 24 GPIOs */
27#define CACHE_NR_BANKS (24 / 8)
Rabin Vincent03f822f2010-07-02 16:52:09 +053028
29struct stmpe_gpio {
30 struct gpio_chip chip;
31 struct stmpe *stmpe;
32 struct device *dev;
33 struct mutex irq_lock;
Lee Jonesfc13d5a2012-12-10 10:07:54 +000034 struct irq_domain *domain;
Wolfram Sangb8e9cf02010-08-16 17:14:44 +020035 unsigned norequest_mask;
Rabin Vincent03f822f2010-07-02 16:52:09 +053036
37 /* Caches of interrupt control registers for bus_lock */
38 u8 regs[CACHE_NR_REGS][CACHE_NR_BANKS];
39 u8 oldregs[CACHE_NR_REGS][CACHE_NR_BANKS];
40};
41
42static inline struct stmpe_gpio *to_stmpe_gpio(struct gpio_chip *chip)
43{
44 return container_of(chip, struct stmpe_gpio, chip);
45}
46
47static int stmpe_gpio_get(struct gpio_chip *chip, unsigned offset)
48{
49 struct stmpe_gpio *stmpe_gpio = to_stmpe_gpio(chip);
50 struct stmpe *stmpe = stmpe_gpio->stmpe;
51 u8 reg = stmpe->regs[STMPE_IDX_GPMR_LSB] - (offset / 8);
52 u8 mask = 1 << (offset % 8);
53 int ret;
54
55 ret = stmpe_reg_read(stmpe, reg);
56 if (ret < 0)
57 return ret;
58
Bhupesh Sharma7535b8b2012-02-27 11:19:43 +053059 return !!(ret & mask);
Rabin Vincent03f822f2010-07-02 16:52:09 +053060}
61
62static void stmpe_gpio_set(struct gpio_chip *chip, unsigned offset, int val)
63{
64 struct stmpe_gpio *stmpe_gpio = to_stmpe_gpio(chip);
65 struct stmpe *stmpe = stmpe_gpio->stmpe;
66 int which = val ? STMPE_IDX_GPSR_LSB : STMPE_IDX_GPCR_LSB;
67 u8 reg = stmpe->regs[which] - (offset / 8);
68 u8 mask = 1 << (offset % 8);
69
Viresh Kumarcccdceb2011-12-14 09:28:27 +053070 /*
71 * Some variants have single register for gpio set/clear functionality.
72 * For them we need to write 0 to clear and 1 to set.
73 */
74 if (stmpe->regs[STMPE_IDX_GPSR_LSB] == stmpe->regs[STMPE_IDX_GPCR_LSB])
75 stmpe_set_bits(stmpe, reg, mask, val ? mask : 0);
76 else
77 stmpe_reg_write(stmpe, reg, mask);
Rabin Vincent03f822f2010-07-02 16:52:09 +053078}
79
80static int stmpe_gpio_direction_output(struct gpio_chip *chip,
81 unsigned offset, int val)
82{
83 struct stmpe_gpio *stmpe_gpio = to_stmpe_gpio(chip);
84 struct stmpe *stmpe = stmpe_gpio->stmpe;
85 u8 reg = stmpe->regs[STMPE_IDX_GPDR_LSB] - (offset / 8);
86 u8 mask = 1 << (offset % 8);
87
88 stmpe_gpio_set(chip, offset, val);
89
90 return stmpe_set_bits(stmpe, reg, mask, mask);
91}
92
93static int stmpe_gpio_direction_input(struct gpio_chip *chip,
94 unsigned offset)
95{
96 struct stmpe_gpio *stmpe_gpio = to_stmpe_gpio(chip);
97 struct stmpe *stmpe = stmpe_gpio->stmpe;
98 u8 reg = stmpe->regs[STMPE_IDX_GPDR_LSB] - (offset / 8);
99 u8 mask = 1 << (offset % 8);
100
101 return stmpe_set_bits(stmpe, reg, mask, 0);
102}
103
104static int stmpe_gpio_to_irq(struct gpio_chip *chip, unsigned offset)
105{
106 struct stmpe_gpio *stmpe_gpio = to_stmpe_gpio(chip);
107
Lee Jonesfc13d5a2012-12-10 10:07:54 +0000108 return irq_create_mapping(stmpe_gpio->domain, offset);
Rabin Vincent03f822f2010-07-02 16:52:09 +0530109}
110
111static int stmpe_gpio_request(struct gpio_chip *chip, unsigned offset)
112{
113 struct stmpe_gpio *stmpe_gpio = to_stmpe_gpio(chip);
114 struct stmpe *stmpe = stmpe_gpio->stmpe;
115
Wolfram Sangb8e9cf02010-08-16 17:14:44 +0200116 if (stmpe_gpio->norequest_mask & (1 << offset))
117 return -EINVAL;
118
Rabin Vincent03f822f2010-07-02 16:52:09 +0530119 return stmpe_set_altfunc(stmpe, 1 << offset, STMPE_BLOCK_GPIO);
120}
121
122static struct gpio_chip template_chip = {
123 .label = "stmpe",
124 .owner = THIS_MODULE,
125 .direction_input = stmpe_gpio_direction_input,
126 .get = stmpe_gpio_get,
127 .direction_output = stmpe_gpio_direction_output,
128 .set = stmpe_gpio_set,
129 .to_irq = stmpe_gpio_to_irq,
130 .request = stmpe_gpio_request,
Linus Walleij9fb1f392013-12-04 14:42:46 +0100131 .can_sleep = true,
Rabin Vincent03f822f2010-07-02 16:52:09 +0530132};
133
Lennert Buytenhek2a866f32011-01-12 17:00:17 -0800134static int stmpe_gpio_irq_set_type(struct irq_data *d, unsigned int type)
Rabin Vincent03f822f2010-07-02 16:52:09 +0530135{
Lennert Buytenhek2a866f32011-01-12 17:00:17 -0800136 struct stmpe_gpio *stmpe_gpio = irq_data_get_irq_chip_data(d);
Lee Jonesfc13d5a2012-12-10 10:07:54 +0000137 int offset = d->hwirq;
Rabin Vincent03f822f2010-07-02 16:52:09 +0530138 int regoffset = offset / 8;
139 int mask = 1 << (offset % 8);
140
141 if (type == IRQ_TYPE_LEVEL_LOW || type == IRQ_TYPE_LEVEL_HIGH)
142 return -EINVAL;
143
Viresh Kumarcccdceb2011-12-14 09:28:27 +0530144 /* STMPE801 doesn't have RE and FE registers */
145 if (stmpe_gpio->stmpe->partnum == STMPE801)
146 return 0;
147
Rabin Vincent03f822f2010-07-02 16:52:09 +0530148 if (type == IRQ_TYPE_EDGE_RISING)
149 stmpe_gpio->regs[REG_RE][regoffset] |= mask;
150 else
151 stmpe_gpio->regs[REG_RE][regoffset] &= ~mask;
152
153 if (type == IRQ_TYPE_EDGE_FALLING)
154 stmpe_gpio->regs[REG_FE][regoffset] |= mask;
155 else
156 stmpe_gpio->regs[REG_FE][regoffset] &= ~mask;
157
158 return 0;
159}
160
Lennert Buytenhek2a866f32011-01-12 17:00:17 -0800161static void stmpe_gpio_irq_lock(struct irq_data *d)
Rabin Vincent03f822f2010-07-02 16:52:09 +0530162{
Lennert Buytenhek2a866f32011-01-12 17:00:17 -0800163 struct stmpe_gpio *stmpe_gpio = irq_data_get_irq_chip_data(d);
Rabin Vincent03f822f2010-07-02 16:52:09 +0530164
165 mutex_lock(&stmpe_gpio->irq_lock);
166}
167
Lennert Buytenhek2a866f32011-01-12 17:00:17 -0800168static void stmpe_gpio_irq_sync_unlock(struct irq_data *d)
Rabin Vincent03f822f2010-07-02 16:52:09 +0530169{
Lennert Buytenhek2a866f32011-01-12 17:00:17 -0800170 struct stmpe_gpio *stmpe_gpio = irq_data_get_irq_chip_data(d);
Rabin Vincent03f822f2010-07-02 16:52:09 +0530171 struct stmpe *stmpe = stmpe_gpio->stmpe;
172 int num_banks = DIV_ROUND_UP(stmpe->num_gpios, 8);
173 static const u8 regmap[] = {
174 [REG_RE] = STMPE_IDX_GPRER_LSB,
175 [REG_FE] = STMPE_IDX_GPFER_LSB,
176 [REG_IE] = STMPE_IDX_IEGPIOR_LSB,
177 };
178 int i, j;
179
180 for (i = 0; i < CACHE_NR_REGS; i++) {
Viresh Kumarcccdceb2011-12-14 09:28:27 +0530181 /* STMPE801 doesn't have RE and FE registers */
182 if ((stmpe->partnum == STMPE801) &&
183 (i != REG_IE))
184 continue;
185
Rabin Vincent03f822f2010-07-02 16:52:09 +0530186 for (j = 0; j < num_banks; j++) {
187 u8 old = stmpe_gpio->oldregs[i][j];
188 u8 new = stmpe_gpio->regs[i][j];
189
190 if (new == old)
191 continue;
192
193 stmpe_gpio->oldregs[i][j] = new;
194 stmpe_reg_write(stmpe, stmpe->regs[regmap[i]] - j, new);
195 }
196 }
197
198 mutex_unlock(&stmpe_gpio->irq_lock);
199}
200
Lennert Buytenhek2a866f32011-01-12 17:00:17 -0800201static void stmpe_gpio_irq_mask(struct irq_data *d)
Rabin Vincent03f822f2010-07-02 16:52:09 +0530202{
Lennert Buytenhek2a866f32011-01-12 17:00:17 -0800203 struct stmpe_gpio *stmpe_gpio = irq_data_get_irq_chip_data(d);
Lee Jonesfc13d5a2012-12-10 10:07:54 +0000204 int offset = d->hwirq;
Rabin Vincent03f822f2010-07-02 16:52:09 +0530205 int regoffset = offset / 8;
206 int mask = 1 << (offset % 8);
207
208 stmpe_gpio->regs[REG_IE][regoffset] &= ~mask;
209}
210
Lennert Buytenhek2a866f32011-01-12 17:00:17 -0800211static void stmpe_gpio_irq_unmask(struct irq_data *d)
Rabin Vincent03f822f2010-07-02 16:52:09 +0530212{
Lennert Buytenhek2a866f32011-01-12 17:00:17 -0800213 struct stmpe_gpio *stmpe_gpio = irq_data_get_irq_chip_data(d);
Lee Jonesfc13d5a2012-12-10 10:07:54 +0000214 int offset = d->hwirq;
Rabin Vincent03f822f2010-07-02 16:52:09 +0530215 int regoffset = offset / 8;
216 int mask = 1 << (offset % 8);
217
218 stmpe_gpio->regs[REG_IE][regoffset] |= mask;
219}
220
221static struct irq_chip stmpe_gpio_irq_chip = {
222 .name = "stmpe-gpio",
Lennert Buytenhek2a866f32011-01-12 17:00:17 -0800223 .irq_bus_lock = stmpe_gpio_irq_lock,
224 .irq_bus_sync_unlock = stmpe_gpio_irq_sync_unlock,
225 .irq_mask = stmpe_gpio_irq_mask,
226 .irq_unmask = stmpe_gpio_irq_unmask,
227 .irq_set_type = stmpe_gpio_irq_set_type,
Rabin Vincent03f822f2010-07-02 16:52:09 +0530228};
229
230static irqreturn_t stmpe_gpio_irq(int irq, void *dev)
231{
232 struct stmpe_gpio *stmpe_gpio = dev;
233 struct stmpe *stmpe = stmpe_gpio->stmpe;
234 u8 statmsbreg = stmpe->regs[STMPE_IDX_ISGPIOR_MSB];
235 int num_banks = DIV_ROUND_UP(stmpe->num_gpios, 8);
236 u8 status[num_banks];
237 int ret;
238 int i;
239
240 ret = stmpe_block_read(stmpe, statmsbreg, num_banks, status);
241 if (ret < 0)
242 return IRQ_NONE;
243
244 for (i = 0; i < num_banks; i++) {
245 int bank = num_banks - i - 1;
246 unsigned int enabled = stmpe_gpio->regs[REG_IE][bank];
247 unsigned int stat = status[i];
248
249 stat &= enabled;
250 if (!stat)
251 continue;
252
253 while (stat) {
254 int bit = __ffs(stat);
255 int line = bank * 8 + bit;
Linus Walleijed05e202013-10-11 19:51:38 +0200256 int child_irq = irq_find_mapping(stmpe_gpio->domain,
257 line);
Rabin Vincent03f822f2010-07-02 16:52:09 +0530258
Linus Walleijed05e202013-10-11 19:51:38 +0200259 handle_nested_irq(child_irq);
Rabin Vincent03f822f2010-07-02 16:52:09 +0530260 stat &= ~(1 << bit);
261 }
262
263 stmpe_reg_write(stmpe, statmsbreg + i, status[i]);
Viresh Kumarcccdceb2011-12-14 09:28:27 +0530264
265 /* Edge detect register is not present on 801 */
266 if (stmpe->partnum != STMPE801)
267 stmpe_reg_write(stmpe, stmpe->regs[STMPE_IDX_GPEDR_MSB]
268 + i, status[i]);
Rabin Vincent03f822f2010-07-02 16:52:09 +0530269 }
270
271 return IRQ_HANDLED;
272}
273
Linus Walleijed05e202013-10-11 19:51:38 +0200274static int stmpe_gpio_irq_map(struct irq_domain *d, unsigned int irq,
Axel Lin8700d0a2013-05-10 17:32:28 +0800275 irq_hw_number_t hwirq)
Rabin Vincent03f822f2010-07-02 16:52:09 +0530276{
Lee Jonesfc13d5a2012-12-10 10:07:54 +0000277 struct stmpe_gpio *stmpe_gpio = d->host_data;
Rabin Vincent03f822f2010-07-02 16:52:09 +0530278
Lee Jonesfc13d5a2012-12-10 10:07:54 +0000279 if (!stmpe_gpio)
280 return -EINVAL;
281
Linus Walleijed05e202013-10-11 19:51:38 +0200282 irq_set_chip_data(irq, stmpe_gpio);
283 irq_set_chip_and_handler(irq, &stmpe_gpio_irq_chip,
Lee Jonesfc13d5a2012-12-10 10:07:54 +0000284 handle_simple_irq);
Linus Walleijed05e202013-10-11 19:51:38 +0200285 irq_set_nested_thread(irq, 1);
Rabin Vincent03f822f2010-07-02 16:52:09 +0530286#ifdef CONFIG_ARM
Linus Walleijed05e202013-10-11 19:51:38 +0200287 set_irq_flags(irq, IRQF_VALID);
Rabin Vincent03f822f2010-07-02 16:52:09 +0530288#else
Linus Walleijed05e202013-10-11 19:51:38 +0200289 irq_set_noprobe(irq);
Rabin Vincent03f822f2010-07-02 16:52:09 +0530290#endif
Rabin Vincent03f822f2010-07-02 16:52:09 +0530291
292 return 0;
293}
294
Linus Walleijed05e202013-10-11 19:51:38 +0200295static void stmpe_gpio_irq_unmap(struct irq_domain *d, unsigned int irq)
Lee Jonesfc13d5a2012-12-10 10:07:54 +0000296{
297#ifdef CONFIG_ARM
Linus Walleijed05e202013-10-11 19:51:38 +0200298 set_irq_flags(irq, 0);
Lee Jonesfc13d5a2012-12-10 10:07:54 +0000299#endif
Linus Walleijed05e202013-10-11 19:51:38 +0200300 irq_set_chip_and_handler(irq, NULL, NULL);
301 irq_set_chip_data(irq, NULL);
Lee Jonesfc13d5a2012-12-10 10:07:54 +0000302}
303
304static const struct irq_domain_ops stmpe_gpio_irq_simple_ops = {
305 .unmap = stmpe_gpio_irq_unmap,
306 .map = stmpe_gpio_irq_map,
307 .xlate = irq_domain_xlate_twocell,
308};
309
Gabriel Fernandez9afd9b72013-03-18 11:45:05 +0100310static int stmpe_gpio_irq_init(struct stmpe_gpio *stmpe_gpio,
311 struct device_node *np)
Rabin Vincent03f822f2010-07-02 16:52:09 +0530312{
Gabriel Fernandez9afd9b72013-03-18 11:45:05 +0100313 stmpe_gpio->domain = irq_domain_add_simple(np,
Linus Walleij9e9dc7d2014-05-08 23:16:34 +0200314 stmpe_gpio->chip.ngpio, 0,
Lee Jonesfc13d5a2012-12-10 10:07:54 +0000315 &stmpe_gpio_irq_simple_ops, stmpe_gpio);
316 if (!stmpe_gpio->domain) {
317 dev_err(stmpe_gpio->dev, "failed to create irqdomain\n");
318 return -ENOSYS;
Rabin Vincent03f822f2010-07-02 16:52:09 +0530319 }
Lee Jonesfc13d5a2012-12-10 10:07:54 +0000320
321 return 0;
Rabin Vincent03f822f2010-07-02 16:52:09 +0530322}
323
Bill Pemberton38363092012-11-19 13:22:34 -0500324static int stmpe_gpio_probe(struct platform_device *pdev)
Rabin Vincent03f822f2010-07-02 16:52:09 +0530325{
326 struct stmpe *stmpe = dev_get_drvdata(pdev->dev.parent);
Vipul Kumar Samar86605cf2012-11-26 17:06:51 +0530327 struct device_node *np = pdev->dev.of_node;
Rabin Vincent03f822f2010-07-02 16:52:09 +0530328 struct stmpe_gpio_platform_data *pdata;
329 struct stmpe_gpio *stmpe_gpio;
330 int ret;
Chris Blair38040c82012-01-26 22:17:15 +0100331 int irq = 0;
Rabin Vincent03f822f2010-07-02 16:52:09 +0530332
333 pdata = stmpe->pdata->gpio;
Rabin Vincent03f822f2010-07-02 16:52:09 +0530334
335 irq = platform_get_irq(pdev, 0);
Rabin Vincent03f822f2010-07-02 16:52:09 +0530336
337 stmpe_gpio = kzalloc(sizeof(struct stmpe_gpio), GFP_KERNEL);
338 if (!stmpe_gpio)
339 return -ENOMEM;
340
341 mutex_init(&stmpe_gpio->irq_lock);
342
343 stmpe_gpio->dev = &pdev->dev;
344 stmpe_gpio->stmpe = stmpe;
Rabin Vincent03f822f2010-07-02 16:52:09 +0530345 stmpe_gpio->chip = template_chip;
346 stmpe_gpio->chip.ngpio = stmpe->num_gpios;
347 stmpe_gpio->chip.dev = &pdev->dev;
Gabriel Fernandez9afd9b72013-03-18 11:45:05 +0100348#ifdef CONFIG_OF
349 stmpe_gpio->chip.of_node = np;
350#endif
Linus Walleij9e9dc7d2014-05-08 23:16:34 +0200351 stmpe_gpio->chip.base = -1;
Rabin Vincent03f822f2010-07-02 16:52:09 +0530352
Vipul Kumar Samar86605cf2012-11-26 17:06:51 +0530353 if (pdata)
354 stmpe_gpio->norequest_mask = pdata->norequest_mask;
355 else if (np)
356 of_property_read_u32(np, "st,norequest-mask",
357 &stmpe_gpio->norequest_mask);
358
Linus Walleij9e9dc7d2014-05-08 23:16:34 +0200359 if (irq < 0)
Chris Blair38040c82012-01-26 22:17:15 +0100360 dev_info(&pdev->dev,
361 "device configured in no-irq mode; "
362 "irqs are not available\n");
Rabin Vincent03f822f2010-07-02 16:52:09 +0530363
364 ret = stmpe_enable(stmpe, STMPE_BLOCK_GPIO);
365 if (ret)
Vasiliy Kulikov02bf0742010-09-12 22:57:19 +0400366 goto out_free;
Rabin Vincent03f822f2010-07-02 16:52:09 +0530367
Chris Blair38040c82012-01-26 22:17:15 +0100368 if (irq >= 0) {
Gabriel Fernandez9afd9b72013-03-18 11:45:05 +0100369 ret = stmpe_gpio_irq_init(stmpe_gpio, np);
Chris Blair38040c82012-01-26 22:17:15 +0100370 if (ret)
371 goto out_disable;
Rabin Vincent03f822f2010-07-02 16:52:09 +0530372
Chris Blair38040c82012-01-26 22:17:15 +0100373 ret = request_threaded_irq(irq, NULL, stmpe_gpio_irq,
374 IRQF_ONESHOT, "stmpe-gpio", stmpe_gpio);
375 if (ret) {
376 dev_err(&pdev->dev, "unable to get irq: %d\n", ret);
Lee Jonesfc13d5a2012-12-10 10:07:54 +0000377 goto out_disable;
Chris Blair38040c82012-01-26 22:17:15 +0100378 }
Rabin Vincent03f822f2010-07-02 16:52:09 +0530379 }
380
381 ret = gpiochip_add(&stmpe_gpio->chip);
382 if (ret) {
383 dev_err(&pdev->dev, "unable to add gpiochip: %d\n", ret);
384 goto out_freeirq;
385 }
386
387 if (pdata && pdata->setup)
388 pdata->setup(stmpe, stmpe_gpio->chip.base);
389
390 platform_set_drvdata(pdev, stmpe_gpio);
391
392 return 0;
393
394out_freeirq:
Chris Blair38040c82012-01-26 22:17:15 +0100395 if (irq >= 0)
396 free_irq(irq, stmpe_gpio);
Vasiliy Kulikov02bf0742010-09-12 22:57:19 +0400397out_disable:
398 stmpe_disable(stmpe, STMPE_BLOCK_GPIO);
Rabin Vincent03f822f2010-07-02 16:52:09 +0530399out_free:
400 kfree(stmpe_gpio);
401 return ret;
402}
403
Bill Pemberton206210c2012-11-19 13:25:50 -0500404static int stmpe_gpio_remove(struct platform_device *pdev)
Rabin Vincent03f822f2010-07-02 16:52:09 +0530405{
406 struct stmpe_gpio *stmpe_gpio = platform_get_drvdata(pdev);
407 struct stmpe *stmpe = stmpe_gpio->stmpe;
408 struct stmpe_gpio_platform_data *pdata = stmpe->pdata->gpio;
409 int irq = platform_get_irq(pdev, 0);
410 int ret;
411
412 if (pdata && pdata->remove)
413 pdata->remove(stmpe, stmpe_gpio->chip.base);
414
415 ret = gpiochip_remove(&stmpe_gpio->chip);
416 if (ret < 0) {
417 dev_err(stmpe_gpio->dev,
418 "unable to remove gpiochip: %d\n", ret);
419 return ret;
420 }
421
422 stmpe_disable(stmpe, STMPE_BLOCK_GPIO);
423
Lee Jonesfc13d5a2012-12-10 10:07:54 +0000424 if (irq >= 0)
Chris Blair38040c82012-01-26 22:17:15 +0100425 free_irq(irq, stmpe_gpio);
Lee Jonesfc13d5a2012-12-10 10:07:54 +0000426
Rabin Vincent03f822f2010-07-02 16:52:09 +0530427 kfree(stmpe_gpio);
428
429 return 0;
430}
431
432static struct platform_driver stmpe_gpio_driver = {
433 .driver.name = "stmpe-gpio",
434 .driver.owner = THIS_MODULE,
435 .probe = stmpe_gpio_probe,
Bill Pemberton8283c4f2012-11-19 13:20:08 -0500436 .remove = stmpe_gpio_remove,
Rabin Vincent03f822f2010-07-02 16:52:09 +0530437};
438
439static int __init stmpe_gpio_init(void)
440{
441 return platform_driver_register(&stmpe_gpio_driver);
442}
443subsys_initcall(stmpe_gpio_init);
444
445static void __exit stmpe_gpio_exit(void)
446{
447 platform_driver_unregister(&stmpe_gpio_driver);
448}
449module_exit(stmpe_gpio_exit);
450
451MODULE_LICENSE("GPL v2");
452MODULE_DESCRIPTION("STMPExxxx GPIO driver");
453MODULE_AUTHOR("Rabin Vincent <rabin.vincent@stericsson.com>");