blob: 9b126b6d79ccc0c29c8aec9748d36bc9136ee695 [file] [log] [blame]
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001/*
2 * Generic GPIO driver for logic cells found in the Nomadik SoC
3 *
4 * Copyright (C) 2008,2009 STMicroelectronics
5 * Copyright (C) 2009 Alessandro Rubini <rubini@unipv.it>
6 * Rewritten based on work by Prafulla WADASKAR <prafulla.wadaskar@st.com>
Linus Walleij33d78642011-06-09 11:08:47 +02007 * Copyright (C) 2011 Linus Walleij <linus.walleij@linaro.org>
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01008 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 */
13#include <linux/kernel.h>
14#include <linux/module.h>
15#include <linux/init.h>
16#include <linux/device.h>
Rabin Vincent3e3c62c2010-03-03 04:52:34 +010017#include <linux/platform_device.h>
Alessandro Rubini2ec1d352009-07-02 15:29:12 +010018#include <linux/io.h>
Rabin Vincentaf7dc222010-05-06 11:14:17 +010019#include <linux/clk.h>
20#include <linux/err.h>
Alessandro Rubini2ec1d352009-07-02 15:29:12 +010021#include <linux/gpio.h>
22#include <linux/spinlock.h>
23#include <linux/interrupt.h>
24#include <linux/irq.h>
Lee Jonesa60b57e2012-04-19 21:36:31 +010025#include <linux/irqdomain.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090026#include <linux/slab.h>
Alessandro Rubini2ec1d352009-07-02 15:29:12 +010027
Will Deaconadfed152011-02-28 10:12:29 +000028#include <asm/mach/irq.h>
29
Rabin Vincent378be062010-06-02 06:06:29 +010030#include <plat/pincfg.h>
Linus Walleij0f332862011-08-22 08:33:30 +010031#include <plat/gpio-nomadik.h>
Alessandro Rubini2ec1d352009-07-02 15:29:12 +010032
33/*
34 * The GPIO module in the Nomadik family of Systems-on-Chip is an
35 * AMBA device, managing 32 pins and alternate functions. The logic block
Jonas Aaberg9c66ee62010-10-13 13:14:17 +020036 * is currently used in the Nomadik and ux500.
Alessandro Rubini2ec1d352009-07-02 15:29:12 +010037 *
38 * Symbols in this file are called "nmk_gpio" for "nomadik gpio"
39 */
40
Rabin Vincent01727e62010-12-13 12:02:40 +053041#define NMK_GPIO_PER_CHIP 32
42
Alessandro Rubini2ec1d352009-07-02 15:29:12 +010043struct nmk_gpio_chip {
44 struct gpio_chip chip;
Lee Jonesa60b57e2012-04-19 21:36:31 +010045 struct irq_domain *domain;
Alessandro Rubini2ec1d352009-07-02 15:29:12 +010046 void __iomem *addr;
Rabin Vincentaf7dc222010-05-06 11:14:17 +010047 struct clk *clk;
Rabin Vincent33b744b2010-10-14 10:38:03 +053048 unsigned int bank;
Alessandro Rubini2ec1d352009-07-02 15:29:12 +010049 unsigned int parent_irq;
Virupax Sadashivpetimath2c8bb0e2010-11-11 14:10:38 +053050 int secondary_parent_irq;
Rabin Vincent33b744b2010-10-14 10:38:03 +053051 u32 (*get_secondary_status)(unsigned int bank);
Rabin Vincent01727e62010-12-13 12:02:40 +053052 void (*set_ioforce)(bool enable);
Rabin Vincentc0fcb8d2010-03-03 04:48:54 +010053 spinlock_t lock;
Linus Walleij33d78642011-06-09 11:08:47 +020054 bool sleepmode;
Alessandro Rubini2ec1d352009-07-02 15:29:12 +010055 /* Keep track of configured edges */
56 u32 edge_rising;
57 u32 edge_falling;
Rabin Vincentb9df4682011-02-10 11:45:58 +053058 u32 real_wake;
59 u32 rwimsc;
60 u32 fwimsc;
Rabin Vincent6c12fe82011-05-23 12:13:33 +053061 u32 rimsc;
62 u32 fimsc;
Rickard Anderssonbc6f5cf2011-05-24 23:07:17 +020063 u32 pull_up;
Rabin Vincentebc61782011-09-28 15:49:11 +053064 u32 lowemi;
Alessandro Rubini2ec1d352009-07-02 15:29:12 +010065};
66
Rabin Vincent01727e62010-12-13 12:02:40 +053067static struct nmk_gpio_chip *
68nmk_gpio_chips[DIV_ROUND_UP(ARCH_NR_GPIOS, NMK_GPIO_PER_CHIP)];
69
70static DEFINE_SPINLOCK(nmk_gpio_slpm_lock);
71
72#define NUM_BANKS ARRAY_SIZE(nmk_gpio_chips)
73
Rabin Vincent6f9a9742010-06-02 05:50:28 +010074static void __nmk_gpio_set_mode(struct nmk_gpio_chip *nmk_chip,
75 unsigned offset, int gpio_mode)
76{
77 u32 bit = 1 << offset;
78 u32 afunc, bfunc;
79
80 afunc = readl(nmk_chip->addr + NMK_GPIO_AFSLA) & ~bit;
81 bfunc = readl(nmk_chip->addr + NMK_GPIO_AFSLB) & ~bit;
82 if (gpio_mode & NMK_GPIO_ALT_A)
83 afunc |= bit;
84 if (gpio_mode & NMK_GPIO_ALT_B)
85 bfunc |= bit;
86 writel(afunc, nmk_chip->addr + NMK_GPIO_AFSLA);
87 writel(bfunc, nmk_chip->addr + NMK_GPIO_AFSLB);
88}
89
Rabin Vincent81a3c292010-05-27 12:39:23 +010090static void __nmk_gpio_set_slpm(struct nmk_gpio_chip *nmk_chip,
91 unsigned offset, enum nmk_gpio_slpm mode)
92{
93 u32 bit = 1 << offset;
94 u32 slpm;
95
96 slpm = readl(nmk_chip->addr + NMK_GPIO_SLPC);
97 if (mode == NMK_GPIO_SLPM_NOCHANGE)
98 slpm |= bit;
99 else
100 slpm &= ~bit;
101 writel(slpm, nmk_chip->addr + NMK_GPIO_SLPC);
102}
103
Rabin Vincent5b327ed2010-05-27 12:29:50 +0100104static void __nmk_gpio_set_pull(struct nmk_gpio_chip *nmk_chip,
105 unsigned offset, enum nmk_gpio_pull pull)
106{
107 u32 bit = 1 << offset;
108 u32 pdis;
109
110 pdis = readl(nmk_chip->addr + NMK_GPIO_PDIS);
Rickard Anderssonbc6f5cf2011-05-24 23:07:17 +0200111 if (pull == NMK_GPIO_PULL_NONE) {
Rabin Vincent5b327ed2010-05-27 12:29:50 +0100112 pdis |= bit;
Rickard Anderssonbc6f5cf2011-05-24 23:07:17 +0200113 nmk_chip->pull_up &= ~bit;
114 } else {
Rabin Vincent5b327ed2010-05-27 12:29:50 +0100115 pdis &= ~bit;
Rickard Anderssonbc6f5cf2011-05-24 23:07:17 +0200116 }
117
Rabin Vincent5b327ed2010-05-27 12:29:50 +0100118 writel(pdis, nmk_chip->addr + NMK_GPIO_PDIS);
119
Rickard Anderssonbc6f5cf2011-05-24 23:07:17 +0200120 if (pull == NMK_GPIO_PULL_UP) {
121 nmk_chip->pull_up |= bit;
Rabin Vincent5b327ed2010-05-27 12:29:50 +0100122 writel(bit, nmk_chip->addr + NMK_GPIO_DATS);
Rickard Anderssonbc6f5cf2011-05-24 23:07:17 +0200123 } else if (pull == NMK_GPIO_PULL_DOWN) {
124 nmk_chip->pull_up &= ~bit;
Rabin Vincent5b327ed2010-05-27 12:29:50 +0100125 writel(bit, nmk_chip->addr + NMK_GPIO_DATC);
Rickard Anderssonbc6f5cf2011-05-24 23:07:17 +0200126 }
Rabin Vincent5b327ed2010-05-27 12:29:50 +0100127}
128
Rabin Vincentebc61782011-09-28 15:49:11 +0530129static void __nmk_gpio_set_lowemi(struct nmk_gpio_chip *nmk_chip,
130 unsigned offset, bool lowemi)
131{
132 u32 bit = BIT(offset);
133 bool enabled = nmk_chip->lowemi & bit;
134
135 if (lowemi == enabled)
136 return;
137
138 if (lowemi)
139 nmk_chip->lowemi |= bit;
140 else
141 nmk_chip->lowemi &= ~bit;
142
143 writel_relaxed(nmk_chip->lowemi,
144 nmk_chip->addr + NMK_GPIO_LOWEMI);
145}
146
Rabin Vincent378be062010-06-02 06:06:29 +0100147static void __nmk_gpio_make_input(struct nmk_gpio_chip *nmk_chip,
148 unsigned offset)
149{
150 writel(1 << offset, nmk_chip->addr + NMK_GPIO_DIRC);
151}
152
Rabin Vincent6720db72010-09-02 11:28:48 +0100153static void __nmk_gpio_set_output(struct nmk_gpio_chip *nmk_chip,
154 unsigned offset, int val)
155{
156 if (val)
157 writel(1 << offset, nmk_chip->addr + NMK_GPIO_DATS);
158 else
159 writel(1 << offset, nmk_chip->addr + NMK_GPIO_DATC);
160}
161
162static void __nmk_gpio_make_output(struct nmk_gpio_chip *nmk_chip,
163 unsigned offset, int val)
164{
165 writel(1 << offset, nmk_chip->addr + NMK_GPIO_DIRS);
166 __nmk_gpio_set_output(nmk_chip, offset, val);
167}
168
Rabin Vincent01727e62010-12-13 12:02:40 +0530169static void __nmk_gpio_set_mode_safe(struct nmk_gpio_chip *nmk_chip,
170 unsigned offset, int gpio_mode,
171 bool glitch)
172{
Rabin Vincent6c12fe82011-05-23 12:13:33 +0530173 u32 rwimsc = nmk_chip->rwimsc;
174 u32 fwimsc = nmk_chip->fwimsc;
Rabin Vincent01727e62010-12-13 12:02:40 +0530175
176 if (glitch && nmk_chip->set_ioforce) {
177 u32 bit = BIT(offset);
178
Rabin Vincent01727e62010-12-13 12:02:40 +0530179 /* Prevent spurious wakeups */
180 writel(rwimsc & ~bit, nmk_chip->addr + NMK_GPIO_RWIMSC);
181 writel(fwimsc & ~bit, nmk_chip->addr + NMK_GPIO_FWIMSC);
182
183 nmk_chip->set_ioforce(true);
184 }
185
186 __nmk_gpio_set_mode(nmk_chip, offset, gpio_mode);
187
188 if (glitch && nmk_chip->set_ioforce) {
189 nmk_chip->set_ioforce(false);
190
191 writel(rwimsc, nmk_chip->addr + NMK_GPIO_RWIMSC);
192 writel(fwimsc, nmk_chip->addr + NMK_GPIO_FWIMSC);
193 }
194}
195
Rabin Vincent6c42ad12011-05-23 12:22:18 +0530196static void
197nmk_gpio_disable_lazy_irq(struct nmk_gpio_chip *nmk_chip, unsigned offset)
198{
199 u32 falling = nmk_chip->fimsc & BIT(offset);
200 u32 rising = nmk_chip->rimsc & BIT(offset);
201 int gpio = nmk_chip->chip.base + offset;
202 int irq = NOMADIK_GPIO_TO_IRQ(gpio);
203 struct irq_data *d = irq_get_irq_data(irq);
204
205 if (!rising && !falling)
206 return;
207
208 if (!d || !irqd_irq_disabled(d))
209 return;
210
211 if (rising) {
212 nmk_chip->rimsc &= ~BIT(offset);
213 writel_relaxed(nmk_chip->rimsc,
214 nmk_chip->addr + NMK_GPIO_RIMSC);
215 }
216
217 if (falling) {
218 nmk_chip->fimsc &= ~BIT(offset);
219 writel_relaxed(nmk_chip->fimsc,
220 nmk_chip->addr + NMK_GPIO_FIMSC);
221 }
222
223 dev_dbg(nmk_chip->chip.dev, "%d: clearing interrupt mask\n", gpio);
224}
225
Rabin Vincent378be062010-06-02 06:06:29 +0100226static void __nmk_config_pin(struct nmk_gpio_chip *nmk_chip, unsigned offset,
Rabin Vincent01727e62010-12-13 12:02:40 +0530227 pin_cfg_t cfg, bool sleep, unsigned int *slpmregs)
Rabin Vincent378be062010-06-02 06:06:29 +0100228{
229 static const char *afnames[] = {
230 [NMK_GPIO_ALT_GPIO] = "GPIO",
231 [NMK_GPIO_ALT_A] = "A",
232 [NMK_GPIO_ALT_B] = "B",
233 [NMK_GPIO_ALT_C] = "C"
234 };
235 static const char *pullnames[] = {
236 [NMK_GPIO_PULL_NONE] = "none",
237 [NMK_GPIO_PULL_UP] = "up",
238 [NMK_GPIO_PULL_DOWN] = "down",
239 [3] /* illegal */ = "??"
240 };
241 static const char *slpmnames[] = {
Rabin Vincent7e3f7e52010-09-02 11:28:05 +0100242 [NMK_GPIO_SLPM_INPUT] = "input/wakeup",
243 [NMK_GPIO_SLPM_NOCHANGE] = "no-change/no-wakeup",
Rabin Vincent378be062010-06-02 06:06:29 +0100244 };
245
246 int pin = PIN_NUM(cfg);
247 int pull = PIN_PULL(cfg);
248 int af = PIN_ALT(cfg);
249 int slpm = PIN_SLPM(cfg);
Rabin Vincent6720db72010-09-02 11:28:48 +0100250 int output = PIN_DIR(cfg);
251 int val = PIN_VAL(cfg);
Rabin Vincent01727e62010-12-13 12:02:40 +0530252 bool glitch = af == NMK_GPIO_ALT_C;
Rabin Vincent378be062010-06-02 06:06:29 +0100253
Rabin Vincentdacdc962010-12-03 20:35:37 +0530254 dev_dbg(nmk_chip->chip.dev, "pin %d [%#lx]: af %s, pull %s, slpm %s (%s%s)\n",
255 pin, cfg, afnames[af], pullnames[pull], slpmnames[slpm],
Rabin Vincent6720db72010-09-02 11:28:48 +0100256 output ? "output " : "input",
257 output ? (val ? "high" : "low") : "");
Rabin Vincent378be062010-06-02 06:06:29 +0100258
Rabin Vincentdacdc962010-12-03 20:35:37 +0530259 if (sleep) {
260 int slpm_pull = PIN_SLPM_PULL(cfg);
261 int slpm_output = PIN_SLPM_DIR(cfg);
262 int slpm_val = PIN_SLPM_VAL(cfg);
263
Rabin Vincent3546d152010-11-25 11:38:27 +0530264 af = NMK_GPIO_ALT_GPIO;
265
Rabin Vincentdacdc962010-12-03 20:35:37 +0530266 /*
267 * The SLPM_* values are normal values + 1 to allow zero to
268 * mean "same as normal".
269 */
270 if (slpm_pull)
271 pull = slpm_pull - 1;
272 if (slpm_output)
273 output = slpm_output - 1;
274 if (slpm_val)
275 val = slpm_val - 1;
276
277 dev_dbg(nmk_chip->chip.dev, "pin %d: sleep pull %s, dir %s, val %s\n",
278 pin,
279 slpm_pull ? pullnames[pull] : "same",
280 slpm_output ? (output ? "output" : "input") : "same",
281 slpm_val ? (val ? "high" : "low") : "same");
282 }
283
Rabin Vincent6720db72010-09-02 11:28:48 +0100284 if (output)
285 __nmk_gpio_make_output(nmk_chip, offset, val);
286 else {
287 __nmk_gpio_make_input(nmk_chip, offset);
288 __nmk_gpio_set_pull(nmk_chip, offset, pull);
289 }
290
Rabin Vincentebc61782011-09-28 15:49:11 +0530291 __nmk_gpio_set_lowemi(nmk_chip, offset, PIN_LOWEMI(cfg));
292
Rabin Vincent01727e62010-12-13 12:02:40 +0530293 /*
Rabin Vincent6c42ad12011-05-23 12:22:18 +0530294 * If the pin is switching to altfunc, and there was an interrupt
295 * installed on it which has been lazy disabled, actually mask the
296 * interrupt to prevent spurious interrupts that would occur while the
297 * pin is under control of the peripheral. Only SKE does this.
298 */
299 if (af != NMK_GPIO_ALT_GPIO)
300 nmk_gpio_disable_lazy_irq(nmk_chip, offset);
301
302 /*
Rabin Vincent01727e62010-12-13 12:02:40 +0530303 * If we've backed up the SLPM registers (glitch workaround), modify
304 * the backups since they will be restored.
305 */
306 if (slpmregs) {
307 if (slpm == NMK_GPIO_SLPM_NOCHANGE)
308 slpmregs[nmk_chip->bank] |= BIT(offset);
309 else
310 slpmregs[nmk_chip->bank] &= ~BIT(offset);
311 } else
312 __nmk_gpio_set_slpm(nmk_chip, offset, slpm);
313
314 __nmk_gpio_set_mode_safe(nmk_chip, offset, af, glitch);
315}
316
317/*
318 * Safe sequence used to switch IOs between GPIO and Alternate-C mode:
319 * - Save SLPM registers
320 * - Set SLPM=0 for the IOs you want to switch and others to 1
321 * - Configure the GPIO registers for the IOs that are being switched
322 * - Set IOFORCE=1
323 * - Modify the AFLSA/B registers for the IOs that are being switched
324 * - Set IOFORCE=0
325 * - Restore SLPM registers
326 * - Any spurious wake up event during switch sequence to be ignored and
327 * cleared
328 */
329static void nmk_gpio_glitch_slpm_init(unsigned int *slpm)
330{
331 int i;
332
333 for (i = 0; i < NUM_BANKS; i++) {
334 struct nmk_gpio_chip *chip = nmk_gpio_chips[i];
335 unsigned int temp = slpm[i];
336
337 if (!chip)
338 break;
339
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200340 clk_enable(chip->clk);
341
Rabin Vincent01727e62010-12-13 12:02:40 +0530342 slpm[i] = readl(chip->addr + NMK_GPIO_SLPC);
343 writel(temp, chip->addr + NMK_GPIO_SLPC);
344 }
345}
346
347static void nmk_gpio_glitch_slpm_restore(unsigned int *slpm)
348{
349 int i;
350
351 for (i = 0; i < NUM_BANKS; i++) {
352 struct nmk_gpio_chip *chip = nmk_gpio_chips[i];
353
354 if (!chip)
355 break;
356
357 writel(slpm[i], chip->addr + NMK_GPIO_SLPC);
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200358
359 clk_disable(chip->clk);
Rabin Vincent01727e62010-12-13 12:02:40 +0530360 }
361}
362
363static int __nmk_config_pins(pin_cfg_t *cfgs, int num, bool sleep)
364{
365 static unsigned int slpm[NUM_BANKS];
366 unsigned long flags;
367 bool glitch = false;
368 int ret = 0;
369 int i;
370
371 for (i = 0; i < num; i++) {
372 if (PIN_ALT(cfgs[i]) == NMK_GPIO_ALT_C) {
373 glitch = true;
374 break;
375 }
376 }
377
378 spin_lock_irqsave(&nmk_gpio_slpm_lock, flags);
379
380 if (glitch) {
381 memset(slpm, 0xff, sizeof(slpm));
382
383 for (i = 0; i < num; i++) {
384 int pin = PIN_NUM(cfgs[i]);
385 int offset = pin % NMK_GPIO_PER_CHIP;
386
387 if (PIN_ALT(cfgs[i]) == NMK_GPIO_ALT_C)
388 slpm[pin / NMK_GPIO_PER_CHIP] &= ~BIT(offset);
389 }
390
391 nmk_gpio_glitch_slpm_init(slpm);
392 }
393
394 for (i = 0; i < num; i++) {
395 struct nmk_gpio_chip *nmk_chip;
396 int pin = PIN_NUM(cfgs[i]);
397
Lee Jonesa60b57e2012-04-19 21:36:31 +0100398 nmk_chip = nmk_gpio_chips[pin / NMK_GPIO_PER_CHIP];
Rabin Vincent01727e62010-12-13 12:02:40 +0530399 if (!nmk_chip) {
400 ret = -EINVAL;
401 break;
402 }
403
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200404 clk_enable(nmk_chip->clk);
Rabin Vincent01727e62010-12-13 12:02:40 +0530405 spin_lock(&nmk_chip->lock);
Lee Jonesa60b57e2012-04-19 21:36:31 +0100406 __nmk_config_pin(nmk_chip, pin % NMK_GPIO_PER_CHIP,
Rabin Vincent01727e62010-12-13 12:02:40 +0530407 cfgs[i], sleep, glitch ? slpm : NULL);
408 spin_unlock(&nmk_chip->lock);
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200409 clk_disable(nmk_chip->clk);
Rabin Vincent01727e62010-12-13 12:02:40 +0530410 }
411
412 if (glitch)
413 nmk_gpio_glitch_slpm_restore(slpm);
414
415 spin_unlock_irqrestore(&nmk_gpio_slpm_lock, flags);
416
417 return ret;
Rabin Vincent378be062010-06-02 06:06:29 +0100418}
419
420/**
421 * nmk_config_pin - configure a pin's mux attributes
422 * @cfg: pin confguration
423 *
424 * Configures a pin's mode (alternate function or GPIO), its pull up status,
425 * and its sleep mode based on the specified configuration. The @cfg is
426 * usually one of the SoC specific macros defined in mach/<soc>-pins.h. These
427 * are constructed using, and can be further enhanced with, the macros in
428 * plat/pincfg.h.
429 *
430 * If a pin's mode is set to GPIO, it is configured as an input to avoid
431 * side-effects. The gpio can be manipulated later using standard GPIO API
432 * calls.
433 */
Rabin Vincentdacdc962010-12-03 20:35:37 +0530434int nmk_config_pin(pin_cfg_t cfg, bool sleep)
Rabin Vincent378be062010-06-02 06:06:29 +0100435{
Rabin Vincent01727e62010-12-13 12:02:40 +0530436 return __nmk_config_pins(&cfg, 1, sleep);
Rabin Vincent378be062010-06-02 06:06:29 +0100437}
438EXPORT_SYMBOL(nmk_config_pin);
439
440/**
441 * nmk_config_pins - configure several pins at once
442 * @cfgs: array of pin configurations
443 * @num: number of elments in the array
444 *
445 * Configures several pins using nmk_config_pin(). Refer to that function for
446 * further information.
447 */
448int nmk_config_pins(pin_cfg_t *cfgs, int num)
449{
Rabin Vincent01727e62010-12-13 12:02:40 +0530450 return __nmk_config_pins(cfgs, num, false);
Rabin Vincent378be062010-06-02 06:06:29 +0100451}
452EXPORT_SYMBOL(nmk_config_pins);
453
Rabin Vincentdacdc962010-12-03 20:35:37 +0530454int nmk_config_pins_sleep(pin_cfg_t *cfgs, int num)
455{
Rabin Vincent01727e62010-12-13 12:02:40 +0530456 return __nmk_config_pins(cfgs, num, true);
Rabin Vincentdacdc962010-12-03 20:35:37 +0530457}
458EXPORT_SYMBOL(nmk_config_pins_sleep);
459
Rabin Vincent5b327ed2010-05-27 12:29:50 +0100460/**
Rabin Vincent81a3c292010-05-27 12:39:23 +0100461 * nmk_gpio_set_slpm() - configure the sleep mode of a pin
462 * @gpio: pin number
463 * @mode: NMK_GPIO_SLPM_INPUT or NMK_GPIO_SLPM_NOCHANGE,
464 *
Linus Walleij33d78642011-06-09 11:08:47 +0200465 * This register is actually in the pinmux layer, not the GPIO block itself.
466 * The GPIO1B_SLPM register defines the GPIO mode when SLEEP/DEEP-SLEEP
467 * mode is entered (i.e. when signal IOFORCE is HIGH by the platform code).
468 * Each GPIO can be configured to be forced into GPIO mode when IOFORCE is
469 * HIGH, overriding the normal setting defined by GPIO_AFSELx registers.
470 * When IOFORCE returns LOW (by software, after SLEEP/DEEP-SLEEP exit),
471 * the GPIOs return to the normal setting defined by GPIO_AFSELx registers.
Rabin Vincent7e3f7e52010-09-02 11:28:05 +0100472 *
Linus Walleij33d78642011-06-09 11:08:47 +0200473 * If @mode is NMK_GPIO_SLPM_INPUT, the corresponding GPIO is switched to GPIO
474 * mode when signal IOFORCE is HIGH (i.e. when SLEEP/DEEP-SLEEP mode is
475 * entered) regardless of the altfunction selected. Also wake-up detection is
476 * ENABLED.
477 *
478 * If @mode is NMK_GPIO_SLPM_NOCHANGE, the corresponding GPIO remains
479 * controlled by NMK_GPIO_DATC, NMK_GPIO_DATS, NMK_GPIO_DIR, NMK_GPIO_PDIS
480 * (for altfunction GPIO) or respective on-chip peripherals (for other
481 * altfuncs) when IOFORCE is HIGH. Also wake-up detection DISABLED.
482 *
483 * Note that enable_irq_wake() will automatically enable wakeup detection.
Rabin Vincent81a3c292010-05-27 12:39:23 +0100484 */
485int nmk_gpio_set_slpm(int gpio, enum nmk_gpio_slpm mode)
486{
487 struct nmk_gpio_chip *nmk_chip;
488 unsigned long flags;
489
Lee Jonesa60b57e2012-04-19 21:36:31 +0100490 nmk_chip = nmk_gpio_chips[gpio / NMK_GPIO_PER_CHIP];
Rabin Vincent81a3c292010-05-27 12:39:23 +0100491 if (!nmk_chip)
492 return -EINVAL;
493
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200494 clk_enable(nmk_chip->clk);
Rabin Vincent01727e62010-12-13 12:02:40 +0530495 spin_lock_irqsave(&nmk_gpio_slpm_lock, flags);
496 spin_lock(&nmk_chip->lock);
497
Lee Jonesa60b57e2012-04-19 21:36:31 +0100498 __nmk_gpio_set_slpm(nmk_chip, gpio % NMK_GPIO_PER_CHIP, mode);
Rabin Vincent01727e62010-12-13 12:02:40 +0530499
500 spin_unlock(&nmk_chip->lock);
501 spin_unlock_irqrestore(&nmk_gpio_slpm_lock, flags);
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200502 clk_disable(nmk_chip->clk);
Rabin Vincent81a3c292010-05-27 12:39:23 +0100503
504 return 0;
505}
506
507/**
Rabin Vincent5b327ed2010-05-27 12:29:50 +0100508 * nmk_gpio_set_pull() - enable/disable pull up/down on a gpio
509 * @gpio: pin number
510 * @pull: one of NMK_GPIO_PULL_DOWN, NMK_GPIO_PULL_UP, and NMK_GPIO_PULL_NONE
511 *
512 * Enables/disables pull up/down on a specified pin. This only takes effect if
513 * the pin is configured as an input (either explicitly or by the alternate
514 * function).
515 *
516 * NOTE: If enabling the pull up/down, the caller must ensure that the GPIO is
517 * configured as an input. Otherwise, due to the way the controller registers
518 * work, this function will change the value output on the pin.
519 */
520int nmk_gpio_set_pull(int gpio, enum nmk_gpio_pull pull)
521{
522 struct nmk_gpio_chip *nmk_chip;
523 unsigned long flags;
524
Lee Jonesa60b57e2012-04-19 21:36:31 +0100525 nmk_chip = nmk_gpio_chips[gpio / NMK_GPIO_PER_CHIP];
Rabin Vincent5b327ed2010-05-27 12:29:50 +0100526 if (!nmk_chip)
527 return -EINVAL;
528
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200529 clk_enable(nmk_chip->clk);
Rabin Vincent5b327ed2010-05-27 12:29:50 +0100530 spin_lock_irqsave(&nmk_chip->lock, flags);
Lee Jonesa60b57e2012-04-19 21:36:31 +0100531 __nmk_gpio_set_pull(nmk_chip, gpio % NMK_GPIO_PER_CHIP, pull);
Rabin Vincent5b327ed2010-05-27 12:29:50 +0100532 spin_unlock_irqrestore(&nmk_chip->lock, flags);
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200533 clk_disable(nmk_chip->clk);
Rabin Vincent5b327ed2010-05-27 12:29:50 +0100534
535 return 0;
536}
537
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100538/* Mode functions */
Jonas Aaberg9c66ee62010-10-13 13:14:17 +0200539/**
540 * nmk_gpio_set_mode() - set the mux mode of a gpio pin
541 * @gpio: pin number
542 * @gpio_mode: one of NMK_GPIO_ALT_GPIO, NMK_GPIO_ALT_A,
543 * NMK_GPIO_ALT_B, and NMK_GPIO_ALT_C
544 *
545 * Sets the mode of the specified pin to one of the alternate functions or
546 * plain GPIO.
547 */
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100548int nmk_gpio_set_mode(int gpio, int gpio_mode)
549{
550 struct nmk_gpio_chip *nmk_chip;
551 unsigned long flags;
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100552
Lee Jonesa60b57e2012-04-19 21:36:31 +0100553 nmk_chip = nmk_gpio_chips[gpio / NMK_GPIO_PER_CHIP];
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100554 if (!nmk_chip)
555 return -EINVAL;
556
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200557 clk_enable(nmk_chip->clk);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100558 spin_lock_irqsave(&nmk_chip->lock, flags);
Lee Jonesa60b57e2012-04-19 21:36:31 +0100559 __nmk_gpio_set_mode(nmk_chip, gpio % NMK_GPIO_PER_CHIP, gpio_mode);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100560 spin_unlock_irqrestore(&nmk_chip->lock, flags);
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200561 clk_disable(nmk_chip->clk);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100562
563 return 0;
564}
565EXPORT_SYMBOL(nmk_gpio_set_mode);
566
567int nmk_gpio_get_mode(int gpio)
568{
569 struct nmk_gpio_chip *nmk_chip;
570 u32 afunc, bfunc, bit;
571
Lee Jonesa60b57e2012-04-19 21:36:31 +0100572 nmk_chip = nmk_gpio_chips[gpio / NMK_GPIO_PER_CHIP];
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100573 if (!nmk_chip)
574 return -EINVAL;
575
Lee Jonesa60b57e2012-04-19 21:36:31 +0100576 bit = 1 << (gpio % NMK_GPIO_PER_CHIP);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100577
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200578 clk_enable(nmk_chip->clk);
579
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100580 afunc = readl(nmk_chip->addr + NMK_GPIO_AFSLA) & bit;
581 bfunc = readl(nmk_chip->addr + NMK_GPIO_AFSLB) & bit;
582
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200583 clk_disable(nmk_chip->clk);
584
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100585 return (afunc ? NMK_GPIO_ALT_A : 0) | (bfunc ? NMK_GPIO_ALT_B : 0);
586}
587EXPORT_SYMBOL(nmk_gpio_get_mode);
588
589
590/* IRQ functions */
591static inline int nmk_gpio_get_bitmask(int gpio)
592{
Lee Jonesa60b57e2012-04-19 21:36:31 +0100593 return 1 << (gpio % NMK_GPIO_PER_CHIP);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100594}
595
Lennert Buytenhekf272c002010-11-29 11:16:48 +0100596static void nmk_gpio_irq_ack(struct irq_data *d)
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100597{
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100598 struct nmk_gpio_chip *nmk_chip;
599
Lennert Buytenhekf272c002010-11-29 11:16:48 +0100600 nmk_chip = irq_data_get_irq_chip_data(d);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100601 if (!nmk_chip)
602 return;
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200603
604 clk_enable(nmk_chip->clk);
Lee Jonesa60b57e2012-04-19 21:36:31 +0100605 writel(nmk_gpio_get_bitmask(d->hwirq), nmk_chip->addr + NMK_GPIO_IC);
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200606 clk_disable(nmk_chip->clk);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100607}
608
Rabin Vincent4d4e20f2010-06-16 06:09:34 +0100609enum nmk_gpio_irq_type {
610 NORMAL,
611 WAKE,
612};
613
Rabin Vincent040e5ec2010-05-06 10:42:42 +0100614static void __nmk_gpio_irq_modify(struct nmk_gpio_chip *nmk_chip,
Rabin Vincent4d4e20f2010-06-16 06:09:34 +0100615 int gpio, enum nmk_gpio_irq_type which,
616 bool enable)
Rabin Vincent040e5ec2010-05-06 10:42:42 +0100617{
618 u32 bitmask = nmk_gpio_get_bitmask(gpio);
Rabin Vincent6c12fe82011-05-23 12:13:33 +0530619 u32 *rimscval;
620 u32 *fimscval;
621 u32 rimscreg;
622 u32 fimscreg;
623
624 if (which == NORMAL) {
625 rimscreg = NMK_GPIO_RIMSC;
626 fimscreg = NMK_GPIO_FIMSC;
627 rimscval = &nmk_chip->rimsc;
628 fimscval = &nmk_chip->fimsc;
629 } else {
630 rimscreg = NMK_GPIO_RWIMSC;
631 fimscreg = NMK_GPIO_FWIMSC;
632 rimscval = &nmk_chip->rwimsc;
633 fimscval = &nmk_chip->fwimsc;
634 }
Rabin Vincent040e5ec2010-05-06 10:42:42 +0100635
636 /* we must individually set/clear the two edges */
637 if (nmk_chip->edge_rising & bitmask) {
Rabin Vincent040e5ec2010-05-06 10:42:42 +0100638 if (enable)
Rabin Vincent6c12fe82011-05-23 12:13:33 +0530639 *rimscval |= bitmask;
Rabin Vincent040e5ec2010-05-06 10:42:42 +0100640 else
Rabin Vincent6c12fe82011-05-23 12:13:33 +0530641 *rimscval &= ~bitmask;
642 writel(*rimscval, nmk_chip->addr + rimscreg);
Rabin Vincent040e5ec2010-05-06 10:42:42 +0100643 }
644 if (nmk_chip->edge_falling & bitmask) {
Rabin Vincent040e5ec2010-05-06 10:42:42 +0100645 if (enable)
Rabin Vincent6c12fe82011-05-23 12:13:33 +0530646 *fimscval |= bitmask;
Rabin Vincent040e5ec2010-05-06 10:42:42 +0100647 else
Rabin Vincent6c12fe82011-05-23 12:13:33 +0530648 *fimscval &= ~bitmask;
649 writel(*fimscval, nmk_chip->addr + fimscreg);
Rabin Vincent040e5ec2010-05-06 10:42:42 +0100650 }
651}
652
Rabin Vincentb9df4682011-02-10 11:45:58 +0530653static void __nmk_gpio_set_wake(struct nmk_gpio_chip *nmk_chip,
654 int gpio, bool on)
655{
Rabin Vincentb982ff02011-04-26 09:03:27 +0530656 /*
657 * Ensure WAKEUP_ENABLE is on. No need to disable it if wakeup is
658 * disabled, since setting SLPM to 1 increases power consumption, and
659 * wakeup is anyhow controlled by the RIMSC and FIMSC registers.
660 */
661 if (nmk_chip->sleepmode && on) {
Lee Jonesa60b57e2012-04-19 21:36:31 +0100662 __nmk_gpio_set_slpm(nmk_chip, gpio % nmk_chip->chip.base,
Rabin Vincentb982ff02011-04-26 09:03:27 +0530663 NMK_GPIO_SLPM_WAKEUP_ENABLE);
Linus Walleij33d78642011-06-09 11:08:47 +0200664 }
665
Rabin Vincentb9df4682011-02-10 11:45:58 +0530666 __nmk_gpio_irq_modify(nmk_chip, gpio, WAKE, on);
667}
668
669static int nmk_gpio_irq_maskunmask(struct irq_data *d, bool enable)
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100670{
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100671 struct nmk_gpio_chip *nmk_chip;
672 unsigned long flags;
Rabin Vincent040e5ec2010-05-06 10:42:42 +0100673 u32 bitmask;
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100674
Lennert Buytenhekf272c002010-11-29 11:16:48 +0100675 nmk_chip = irq_data_get_irq_chip_data(d);
Lee Jonesa60b57e2012-04-19 21:36:31 +0100676 bitmask = nmk_gpio_get_bitmask(d->hwirq);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100677 if (!nmk_chip)
Rabin Vincent4d4e20f2010-06-16 06:09:34 +0100678 return -EINVAL;
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100679
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200680 clk_enable(nmk_chip->clk);
Rabin Vincentb9df4682011-02-10 11:45:58 +0530681 spin_lock_irqsave(&nmk_gpio_slpm_lock, flags);
682 spin_lock(&nmk_chip->lock);
683
Lee Jonesa60b57e2012-04-19 21:36:31 +0100684 __nmk_gpio_irq_modify(nmk_chip, d->hwirq, NORMAL, enable);
Rabin Vincentb9df4682011-02-10 11:45:58 +0530685
686 if (!(nmk_chip->real_wake & bitmask))
Lee Jonesa60b57e2012-04-19 21:36:31 +0100687 __nmk_gpio_set_wake(nmk_chip, d->hwirq, enable);
Rabin Vincentb9df4682011-02-10 11:45:58 +0530688
689 spin_unlock(&nmk_chip->lock);
690 spin_unlock_irqrestore(&nmk_gpio_slpm_lock, flags);
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200691 clk_disable(nmk_chip->clk);
Rabin Vincent4d4e20f2010-06-16 06:09:34 +0100692
693 return 0;
Rabin Vincent040e5ec2010-05-06 10:42:42 +0100694}
695
Lennert Buytenhekf272c002010-11-29 11:16:48 +0100696static void nmk_gpio_irq_mask(struct irq_data *d)
Rabin Vincent040e5ec2010-05-06 10:42:42 +0100697{
Rabin Vincentb9df4682011-02-10 11:45:58 +0530698 nmk_gpio_irq_maskunmask(d, false);
Rabin Vincent4d4e20f2010-06-16 06:09:34 +0100699}
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100700
Lennert Buytenhekf272c002010-11-29 11:16:48 +0100701static void nmk_gpio_irq_unmask(struct irq_data *d)
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100702{
Rabin Vincentb9df4682011-02-10 11:45:58 +0530703 nmk_gpio_irq_maskunmask(d, true);
Rabin Vincent4d4e20f2010-06-16 06:09:34 +0100704}
705
Lennert Buytenhekf272c002010-11-29 11:16:48 +0100706static int nmk_gpio_irq_set_wake(struct irq_data *d, unsigned int on)
Rabin Vincent4d4e20f2010-06-16 06:09:34 +0100707{
Rabin Vincent7e3f7e52010-09-02 11:28:05 +0100708 struct nmk_gpio_chip *nmk_chip;
709 unsigned long flags;
Rabin Vincentb9df4682011-02-10 11:45:58 +0530710 u32 bitmask;
Rabin Vincent7e3f7e52010-09-02 11:28:05 +0100711
Lennert Buytenhekf272c002010-11-29 11:16:48 +0100712 nmk_chip = irq_data_get_irq_chip_data(d);
Rabin Vincent7e3f7e52010-09-02 11:28:05 +0100713 if (!nmk_chip)
714 return -EINVAL;
Lee Jonesa60b57e2012-04-19 21:36:31 +0100715 bitmask = nmk_gpio_get_bitmask(d->hwirq);
Rabin Vincent7e3f7e52010-09-02 11:28:05 +0100716
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200717 clk_enable(nmk_chip->clk);
Rabin Vincent01727e62010-12-13 12:02:40 +0530718 spin_lock_irqsave(&nmk_gpio_slpm_lock, flags);
719 spin_lock(&nmk_chip->lock);
720
Linus Walleij479a0c72011-09-20 10:50:15 +0200721 if (irqd_irq_disabled(d))
Lee Jonesa60b57e2012-04-19 21:36:31 +0100722 __nmk_gpio_set_wake(nmk_chip, d->hwirq, on);
Rabin Vincentb9df4682011-02-10 11:45:58 +0530723
724 if (on)
725 nmk_chip->real_wake |= bitmask;
726 else
727 nmk_chip->real_wake &= ~bitmask;
Rabin Vincent01727e62010-12-13 12:02:40 +0530728
729 spin_unlock(&nmk_chip->lock);
730 spin_unlock_irqrestore(&nmk_gpio_slpm_lock, flags);
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200731 clk_disable(nmk_chip->clk);
Rabin Vincent7e3f7e52010-09-02 11:28:05 +0100732
733 return 0;
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100734}
735
Lennert Buytenhekf272c002010-11-29 11:16:48 +0100736static int nmk_gpio_irq_set_type(struct irq_data *d, unsigned int type)
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100737{
Linus Walleij479a0c72011-09-20 10:50:15 +0200738 bool enabled = !irqd_irq_disabled(d);
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200739 bool wake = irqd_is_wakeup_set(d);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100740 struct nmk_gpio_chip *nmk_chip;
741 unsigned long flags;
742 u32 bitmask;
743
Lennert Buytenhekf272c002010-11-29 11:16:48 +0100744 nmk_chip = irq_data_get_irq_chip_data(d);
Lee Jonesa60b57e2012-04-19 21:36:31 +0100745 bitmask = nmk_gpio_get_bitmask(d->hwirq);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100746 if (!nmk_chip)
747 return -EINVAL;
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100748 if (type & IRQ_TYPE_LEVEL_HIGH)
749 return -EINVAL;
750 if (type & IRQ_TYPE_LEVEL_LOW)
751 return -EINVAL;
752
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200753 clk_enable(nmk_chip->clk);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100754 spin_lock_irqsave(&nmk_chip->lock, flags);
755
Rabin Vincent7a852d82010-05-06 10:43:55 +0100756 if (enabled)
Lee Jonesa60b57e2012-04-19 21:36:31 +0100757 __nmk_gpio_irq_modify(nmk_chip, d->hwirq, NORMAL, false);
Rabin Vincent4d4e20f2010-06-16 06:09:34 +0100758
Rabin Vincentb9df4682011-02-10 11:45:58 +0530759 if (enabled || wake)
Lee Jonesa60b57e2012-04-19 21:36:31 +0100760 __nmk_gpio_irq_modify(nmk_chip, d->hwirq, WAKE, false);
Rabin Vincent7a852d82010-05-06 10:43:55 +0100761
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100762 nmk_chip->edge_rising &= ~bitmask;
763 if (type & IRQ_TYPE_EDGE_RISING)
764 nmk_chip->edge_rising |= bitmask;
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100765
766 nmk_chip->edge_falling &= ~bitmask;
767 if (type & IRQ_TYPE_EDGE_FALLING)
768 nmk_chip->edge_falling |= bitmask;
Rabin Vincent7a852d82010-05-06 10:43:55 +0100769
770 if (enabled)
Lee Jonesa60b57e2012-04-19 21:36:31 +0100771 __nmk_gpio_irq_modify(nmk_chip, d->hwirq, NORMAL, true);
Rabin Vincent4d4e20f2010-06-16 06:09:34 +0100772
Rabin Vincentb9df4682011-02-10 11:45:58 +0530773 if (enabled || wake)
Lee Jonesa60b57e2012-04-19 21:36:31 +0100774 __nmk_gpio_irq_modify(nmk_chip, d->hwirq, WAKE, true);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100775
776 spin_unlock_irqrestore(&nmk_chip->lock, flags);
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200777 clk_disable(nmk_chip->clk);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100778
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100779 return 0;
780}
781
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200782static unsigned int nmk_gpio_irq_startup(struct irq_data *d)
783{
784 struct nmk_gpio_chip *nmk_chip = irq_data_get_irq_chip_data(d);
785
786 clk_enable(nmk_chip->clk);
787 nmk_gpio_irq_unmask(d);
788 return 0;
789}
790
791static void nmk_gpio_irq_shutdown(struct irq_data *d)
792{
793 struct nmk_gpio_chip *nmk_chip = irq_data_get_irq_chip_data(d);
794
795 nmk_gpio_irq_mask(d);
796 clk_disable(nmk_chip->clk);
797}
798
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100799static struct irq_chip nmk_gpio_irq_chip = {
800 .name = "Nomadik-GPIO",
Lennert Buytenhekf272c002010-11-29 11:16:48 +0100801 .irq_ack = nmk_gpio_irq_ack,
802 .irq_mask = nmk_gpio_irq_mask,
803 .irq_unmask = nmk_gpio_irq_unmask,
804 .irq_set_type = nmk_gpio_irq_set_type,
805 .irq_set_wake = nmk_gpio_irq_set_wake,
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200806 .irq_startup = nmk_gpio_irq_startup,
807 .irq_shutdown = nmk_gpio_irq_shutdown,
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100808};
809
Rabin Vincent33b744b2010-10-14 10:38:03 +0530810static void __nmk_gpio_irq_handler(unsigned int irq, struct irq_desc *desc,
811 u32 status)
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100812{
813 struct nmk_gpio_chip *nmk_chip;
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100814 struct irq_chip *host_chip = irq_get_chip(irq);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100815 unsigned int first_irq;
816
Will Deaconadfed152011-02-28 10:12:29 +0000817 chained_irq_enter(host_chip, desc);
Rabin Vincentaaedaa22010-03-03 04:50:27 +0100818
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100819 nmk_chip = irq_get_handler_data(irq);
Lee Jonesa60b57e2012-04-19 21:36:31 +0100820 first_irq = nmk_chip->domain->revmap_data.legacy.first_irq;
Rabin Vincent33b744b2010-10-14 10:38:03 +0530821 while (status) {
822 int bit = __ffs(status);
823
824 generic_handle_irq(first_irq + bit);
825 status &= ~BIT(bit);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100826 }
Rabin Vincentaaedaa22010-03-03 04:50:27 +0100827
Will Deaconadfed152011-02-28 10:12:29 +0000828 chained_irq_exit(host_chip, desc);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100829}
830
Rabin Vincent33b744b2010-10-14 10:38:03 +0530831static void nmk_gpio_irq_handler(unsigned int irq, struct irq_desc *desc)
832{
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100833 struct nmk_gpio_chip *nmk_chip = irq_get_handler_data(irq);
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200834 u32 status;
835
836 clk_enable(nmk_chip->clk);
837 status = readl(nmk_chip->addr + NMK_GPIO_IS);
838 clk_disable(nmk_chip->clk);
Rabin Vincent33b744b2010-10-14 10:38:03 +0530839
840 __nmk_gpio_irq_handler(irq, desc, status);
841}
842
843static void nmk_gpio_secondary_irq_handler(unsigned int irq,
844 struct irq_desc *desc)
845{
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100846 struct nmk_gpio_chip *nmk_chip = irq_get_handler_data(irq);
Rabin Vincent33b744b2010-10-14 10:38:03 +0530847 u32 status = nmk_chip->get_secondary_status(nmk_chip->bank);
848
849 __nmk_gpio_irq_handler(irq, desc, status);
850}
851
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100852static int nmk_gpio_init_irq(struct nmk_gpio_chip *nmk_chip)
853{
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100854 irq_set_chained_handler(nmk_chip->parent_irq, nmk_gpio_irq_handler);
855 irq_set_handler_data(nmk_chip->parent_irq, nmk_chip);
Rabin Vincent33b744b2010-10-14 10:38:03 +0530856
857 if (nmk_chip->secondary_parent_irq >= 0) {
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100858 irq_set_chained_handler(nmk_chip->secondary_parent_irq,
Rabin Vincent33b744b2010-10-14 10:38:03 +0530859 nmk_gpio_secondary_irq_handler);
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100860 irq_set_handler_data(nmk_chip->secondary_parent_irq, nmk_chip);
Rabin Vincent33b744b2010-10-14 10:38:03 +0530861 }
862
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100863 return 0;
864}
865
866/* I/O Functions */
867static int nmk_gpio_make_input(struct gpio_chip *chip, unsigned offset)
868{
869 struct nmk_gpio_chip *nmk_chip =
870 container_of(chip, struct nmk_gpio_chip, chip);
871
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200872 clk_enable(nmk_chip->clk);
873
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100874 writel(1 << offset, nmk_chip->addr + NMK_GPIO_DIRC);
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200875
876 clk_disable(nmk_chip->clk);
877
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100878 return 0;
879}
880
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100881static int nmk_gpio_get_input(struct gpio_chip *chip, unsigned offset)
882{
883 struct nmk_gpio_chip *nmk_chip =
884 container_of(chip, struct nmk_gpio_chip, chip);
885 u32 bit = 1 << offset;
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200886 int value;
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100887
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200888 clk_enable(nmk_chip->clk);
889
890 value = (readl(nmk_chip->addr + NMK_GPIO_DAT) & bit) != 0;
891
892 clk_disable(nmk_chip->clk);
893
894 return value;
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100895}
896
897static void nmk_gpio_set_output(struct gpio_chip *chip, unsigned offset,
898 int val)
899{
900 struct nmk_gpio_chip *nmk_chip =
901 container_of(chip, struct nmk_gpio_chip, chip);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100902
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200903 clk_enable(nmk_chip->clk);
904
Rabin Vincent6720db72010-09-02 11:28:48 +0100905 __nmk_gpio_set_output(nmk_chip, offset, val);
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200906
907 clk_disable(nmk_chip->clk);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100908}
909
Rabin Vincent6647c6c2010-05-27 12:22:42 +0100910static int nmk_gpio_make_output(struct gpio_chip *chip, unsigned offset,
911 int val)
912{
913 struct nmk_gpio_chip *nmk_chip =
914 container_of(chip, struct nmk_gpio_chip, chip);
915
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200916 clk_enable(nmk_chip->clk);
917
Rabin Vincent6720db72010-09-02 11:28:48 +0100918 __nmk_gpio_make_output(nmk_chip, offset, val);
Rabin Vincent6647c6c2010-05-27 12:22:42 +0100919
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200920 clk_disable(nmk_chip->clk);
921
Rabin Vincent6647c6c2010-05-27 12:22:42 +0100922 return 0;
923}
924
Rabin Vincent0d2aec92010-06-16 06:10:43 +0100925static int nmk_gpio_to_irq(struct gpio_chip *chip, unsigned offset)
926{
927 struct nmk_gpio_chip *nmk_chip =
928 container_of(chip, struct nmk_gpio_chip, chip);
929
Lee Jonesa60b57e2012-04-19 21:36:31 +0100930 return irq_find_mapping(nmk_chip->domain, offset);
Rabin Vincent0d2aec92010-06-16 06:10:43 +0100931}
932
Rabin Vincentd0b543c2010-03-04 17:39:05 +0530933#ifdef CONFIG_DEBUG_FS
934
935#include <linux/seq_file.h>
936
937static void nmk_gpio_dbg_show(struct seq_file *s, struct gpio_chip *chip)
938{
939 int mode;
940 unsigned i;
941 unsigned gpio = chip->base;
942 int is_out;
943 struct nmk_gpio_chip *nmk_chip =
944 container_of(chip, struct nmk_gpio_chip, chip);
945 const char *modes[] = {
946 [NMK_GPIO_ALT_GPIO] = "gpio",
947 [NMK_GPIO_ALT_A] = "altA",
948 [NMK_GPIO_ALT_B] = "altB",
949 [NMK_GPIO_ALT_C] = "altC",
950 };
951
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200952 clk_enable(nmk_chip->clk);
953
Rabin Vincentd0b543c2010-03-04 17:39:05 +0530954 for (i = 0; i < chip->ngpio; i++, gpio++) {
955 const char *label = gpiochip_is_requested(chip, i);
956 bool pull;
957 u32 bit = 1 << i;
958
Rabin Vincentd0b543c2010-03-04 17:39:05 +0530959 is_out = readl(nmk_chip->addr + NMK_GPIO_DIR) & bit;
960 pull = !(readl(nmk_chip->addr + NMK_GPIO_PDIS) & bit);
961 mode = nmk_gpio_get_mode(gpio);
962 seq_printf(s, " gpio-%-3d (%-20.20s) %s %s %s %s",
Rabin Vincent8ea72a32011-05-24 23:07:09 +0200963 gpio, label ?: "(none)",
Rabin Vincentd0b543c2010-03-04 17:39:05 +0530964 is_out ? "out" : "in ",
965 chip->get
966 ? (chip->get(chip, i) ? "hi" : "lo")
967 : "? ",
968 (mode < 0) ? "unknown" : modes[mode],
969 pull ? "pull" : "none");
Rabin Vincent8ea72a32011-05-24 23:07:09 +0200970
971 if (label && !is_out) {
972 int irq = gpio_to_irq(gpio);
973 struct irq_desc *desc = irq_to_desc(irq);
974
975 /* This races with request_irq(), set_irq_type(),
976 * and set_irq_wake() ... but those are "rare".
977 */
978 if (irq >= 0 && desc->action) {
979 char *trigger;
980 u32 bitmask = nmk_gpio_get_bitmask(gpio);
981
982 if (nmk_chip->edge_rising & bitmask)
983 trigger = "edge-rising";
984 else if (nmk_chip->edge_falling & bitmask)
985 trigger = "edge-falling";
986 else
987 trigger = "edge-undefined";
988
989 seq_printf(s, " irq-%d %s%s",
990 irq, trigger,
991 irqd_is_wakeup_set(&desc->irq_data)
992 ? " wakeup" : "");
993 }
994 }
995
Rabin Vincentd0b543c2010-03-04 17:39:05 +0530996 seq_printf(s, "\n");
997 }
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200998
999 clk_disable(nmk_chip->clk);
Rabin Vincentd0b543c2010-03-04 17:39:05 +05301000}
1001
1002#else
1003#define nmk_gpio_dbg_show NULL
1004#endif
1005
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001006/* This structure is replicated for each GPIO block allocated at probe time */
1007static struct gpio_chip nmk_gpio_template = {
1008 .direction_input = nmk_gpio_make_input,
1009 .get = nmk_gpio_get_input,
1010 .direction_output = nmk_gpio_make_output,
1011 .set = nmk_gpio_set_output,
Rabin Vincent0d2aec92010-06-16 06:10:43 +01001012 .to_irq = nmk_gpio_to_irq,
Rabin Vincentd0b543c2010-03-04 17:39:05 +05301013 .dbg_show = nmk_gpio_dbg_show,
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001014 .can_sleep = 0,
1015};
1016
Rabin Vincent3c0227d2011-09-20 10:50:03 +02001017void nmk_gpio_clocks_enable(void)
1018{
1019 int i;
1020
1021 for (i = 0; i < NUM_BANKS; i++) {
1022 struct nmk_gpio_chip *chip = nmk_gpio_chips[i];
1023
1024 if (!chip)
1025 continue;
1026
1027 clk_enable(chip->clk);
1028 }
1029}
1030
1031void nmk_gpio_clocks_disable(void)
1032{
1033 int i;
1034
1035 for (i = 0; i < NUM_BANKS; i++) {
1036 struct nmk_gpio_chip *chip = nmk_gpio_chips[i];
1037
1038 if (!chip)
1039 continue;
1040
1041 clk_disable(chip->clk);
1042 }
1043}
1044
Rabin Vincentb9df4682011-02-10 11:45:58 +05301045/*
1046 * Called from the suspend/resume path to only keep the real wakeup interrupts
1047 * (those that have had set_irq_wake() called on them) as wakeup interrupts,
1048 * and not the rest of the interrupts which we needed to have as wakeups for
1049 * cpuidle.
1050 *
1051 * PM ops are not used since this needs to be done at the end, after all the
1052 * other drivers are done with their suspend callbacks.
1053 */
1054void nmk_gpio_wakeups_suspend(void)
1055{
1056 int i;
1057
1058 for (i = 0; i < NUM_BANKS; i++) {
1059 struct nmk_gpio_chip *chip = nmk_gpio_chips[i];
1060
1061 if (!chip)
1062 break;
1063
Rabin Vincent3c0227d2011-09-20 10:50:03 +02001064 clk_enable(chip->clk);
1065
Rabin Vincentb9df4682011-02-10 11:45:58 +05301066 writel(chip->rwimsc & chip->real_wake,
1067 chip->addr + NMK_GPIO_RWIMSC);
1068 writel(chip->fwimsc & chip->real_wake,
1069 chip->addr + NMK_GPIO_FWIMSC);
1070
Rabin Vincent3c0227d2011-09-20 10:50:03 +02001071 clk_disable(chip->clk);
Rabin Vincentb9df4682011-02-10 11:45:58 +05301072 }
1073}
1074
1075void nmk_gpio_wakeups_resume(void)
1076{
1077 int i;
1078
1079 for (i = 0; i < NUM_BANKS; i++) {
1080 struct nmk_gpio_chip *chip = nmk_gpio_chips[i];
1081
1082 if (!chip)
1083 break;
1084
Rabin Vincent3c0227d2011-09-20 10:50:03 +02001085 clk_enable(chip->clk);
1086
Rabin Vincentb9df4682011-02-10 11:45:58 +05301087 writel(chip->rwimsc, chip->addr + NMK_GPIO_RWIMSC);
1088 writel(chip->fwimsc, chip->addr + NMK_GPIO_FWIMSC);
1089
Rabin Vincent3c0227d2011-09-20 10:50:03 +02001090 clk_disable(chip->clk);
Rabin Vincentb9df4682011-02-10 11:45:58 +05301091 }
1092}
1093
Rickard Anderssonbc6f5cf2011-05-24 23:07:17 +02001094/*
1095 * Read the pull up/pull down status.
1096 * A bit set in 'pull_up' means that pull up
1097 * is selected if pull is enabled in PDIS register.
1098 * Note: only pull up/down set via this driver can
1099 * be detected due to HW limitations.
1100 */
1101void nmk_gpio_read_pull(int gpio_bank, u32 *pull_up)
1102{
1103 if (gpio_bank < NUM_BANKS) {
1104 struct nmk_gpio_chip *chip = nmk_gpio_chips[gpio_bank];
1105
1106 if (!chip)
1107 return;
1108
1109 *pull_up = chip->pull_up;
1110 }
1111}
1112
Lee Jonesa60b57e2012-04-19 21:36:31 +01001113int nmk_gpio_irq_map(struct irq_domain *d, unsigned int irq,
1114 irq_hw_number_t hwirq)
1115{
1116 struct nmk_gpio_chip *nmk_chip = d->host_data;
1117
1118 if (!nmk_chip)
1119 return -EINVAL;
1120
1121 irq_set_chip_and_handler(irq, &nmk_gpio_irq_chip, handle_edge_irq);
1122 set_irq_flags(irq, IRQF_VALID);
1123 irq_set_chip_data(irq, nmk_chip);
1124 irq_set_irq_type(irq, IRQ_TYPE_EDGE_FALLING);
1125
1126 return 0;
1127}
1128
1129const struct irq_domain_ops nmk_gpio_irq_simple_ops = {
1130 .map = nmk_gpio_irq_map,
1131 .xlate = irq_domain_xlate_twocell,
1132};
1133
Uwe Kleine-Königfd0d67d2010-09-02 16:13:35 +01001134static int __devinit nmk_gpio_probe(struct platform_device *dev)
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001135{
Rabin Vincent3e3c62c2010-03-03 04:52:34 +01001136 struct nmk_gpio_platform_data *pdata = dev->dev.platform_data;
Lee Jones513c27f2012-04-13 15:05:05 +01001137 struct device_node *np = dev->dev.of_node;
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001138 struct nmk_gpio_chip *nmk_chip;
1139 struct gpio_chip *chip;
Rabin Vincent3e3c62c2010-03-03 04:52:34 +01001140 struct resource *res;
Rabin Vincentaf7dc222010-05-06 11:14:17 +01001141 struct clk *clk;
Rabin Vincent33b744b2010-10-14 10:38:03 +05301142 int secondary_irq;
Linus Walleij8d917712012-04-17 10:15:54 +02001143 void __iomem *base;
Rabin Vincent3e3c62c2010-03-03 04:52:34 +01001144 int irq;
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001145 int ret;
1146
Lee Jones513c27f2012-04-13 15:05:05 +01001147 if (!pdata && !np) {
1148 dev_err(&dev->dev, "No platform data or device tree found\n");
Rabin Vincent3e3c62c2010-03-03 04:52:34 +01001149 return -ENODEV;
Lee Jones513c27f2012-04-13 15:05:05 +01001150 }
1151
1152 if (np) {
1153 pdata = kzalloc(sizeof(*pdata), GFP_KERNEL);
1154 if (!pdata)
1155 return -ENOMEM;
1156
1157 if (of_get_property(np, "supports-sleepmode", NULL))
1158 pdata->supports_sleepmode = true;
1159
1160 if (of_property_read_u32(np, "gpio-bank", &dev->id)) {
1161 dev_err(&dev->dev, "gpio-bank property not found\n");
1162 ret = -EINVAL;
Lee Jonesa60b57e2012-04-19 21:36:31 +01001163 goto out;
Lee Jones513c27f2012-04-13 15:05:05 +01001164 }
1165
1166 pdata->first_gpio = dev->id * NMK_GPIO_PER_CHIP;
1167 pdata->num_gpio = NMK_GPIO_PER_CHIP;
1168 }
Rabin Vincent3e3c62c2010-03-03 04:52:34 +01001169
1170 res = platform_get_resource(dev, IORESOURCE_MEM, 0);
1171 if (!res) {
1172 ret = -ENOENT;
1173 goto out;
1174 }
1175
1176 irq = platform_get_irq(dev, 0);
1177 if (irq < 0) {
1178 ret = irq;
1179 goto out;
1180 }
1181
Rabin Vincent33b744b2010-10-14 10:38:03 +05301182 secondary_irq = platform_get_irq(dev, 1);
1183 if (secondary_irq >= 0 && !pdata->get_secondary_status) {
1184 ret = -EINVAL;
1185 goto out;
1186 }
1187
Rabin Vincent3e3c62c2010-03-03 04:52:34 +01001188 if (request_mem_region(res->start, resource_size(res),
1189 dev_name(&dev->dev)) == NULL) {
1190 ret = -EBUSY;
1191 goto out;
1192 }
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001193
Linus Walleij8d917712012-04-17 10:15:54 +02001194 base = ioremap(res->start, resource_size(res));
1195 if (!base) {
1196 ret = -ENOMEM;
1197 goto out_release;
1198 }
1199
Rabin Vincentaf7dc222010-05-06 11:14:17 +01001200 clk = clk_get(&dev->dev, NULL);
1201 if (IS_ERR(clk)) {
1202 ret = PTR_ERR(clk);
Linus Walleij8d917712012-04-17 10:15:54 +02001203 goto out_unmap;
Rabin Vincentaf7dc222010-05-06 11:14:17 +01001204 }
1205
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001206 nmk_chip = kzalloc(sizeof(*nmk_chip), GFP_KERNEL);
1207 if (!nmk_chip) {
1208 ret = -ENOMEM;
Rabin Vincentaf7dc222010-05-06 11:14:17 +01001209 goto out_clk;
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001210 }
Lee Jones513c27f2012-04-13 15:05:05 +01001211
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001212 /*
1213 * The virt address in nmk_chip->addr is in the nomadik register space,
1214 * so we can simply convert the resource address, without remapping
1215 */
Rabin Vincent33b744b2010-10-14 10:38:03 +05301216 nmk_chip->bank = dev->id;
Rabin Vincentaf7dc222010-05-06 11:14:17 +01001217 nmk_chip->clk = clk;
Linus Walleij8d917712012-04-17 10:15:54 +02001218 nmk_chip->addr = base;
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001219 nmk_chip->chip = nmk_gpio_template;
Rabin Vincent3e3c62c2010-03-03 04:52:34 +01001220 nmk_chip->parent_irq = irq;
Rabin Vincent33b744b2010-10-14 10:38:03 +05301221 nmk_chip->secondary_parent_irq = secondary_irq;
1222 nmk_chip->get_secondary_status = pdata->get_secondary_status;
Rabin Vincent01727e62010-12-13 12:02:40 +05301223 nmk_chip->set_ioforce = pdata->set_ioforce;
Linus Walleij33d78642011-06-09 11:08:47 +02001224 nmk_chip->sleepmode = pdata->supports_sleepmode;
Rabin Vincentc0fcb8d2010-03-03 04:48:54 +01001225 spin_lock_init(&nmk_chip->lock);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001226
1227 chip = &nmk_chip->chip;
1228 chip->base = pdata->first_gpio;
Rabin Vincente493e062010-03-18 12:35:22 +05301229 chip->ngpio = pdata->num_gpio;
Rabin Vincent8d568ae2010-12-08 11:07:54 +05301230 chip->label = pdata->name ?: dev_name(&dev->dev);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001231 chip->dev = &dev->dev;
1232 chip->owner = THIS_MODULE;
1233
Rabin Vincentebc61782011-09-28 15:49:11 +05301234 clk_enable(nmk_chip->clk);
1235 nmk_chip->lowemi = readl_relaxed(nmk_chip->addr + NMK_GPIO_LOWEMI);
1236 clk_disable(nmk_chip->clk);
1237
Lee Jones513c27f2012-04-13 15:05:05 +01001238 chip->of_node = np;
1239
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001240 ret = gpiochip_add(&nmk_chip->chip);
1241 if (ret)
1242 goto out_free;
1243
Rabin Vincent01727e62010-12-13 12:02:40 +05301244 BUG_ON(nmk_chip->bank >= ARRAY_SIZE(nmk_gpio_chips));
1245
1246 nmk_gpio_chips[nmk_chip->bank] = nmk_chip;
Lee Jones513c27f2012-04-13 15:05:05 +01001247
Rabin Vincent3e3c62c2010-03-03 04:52:34 +01001248 platform_set_drvdata(dev, nmk_chip);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001249
Lee Jonesa60b57e2012-04-19 21:36:31 +01001250 nmk_chip->domain = irq_domain_add_legacy(np, NMK_GPIO_PER_CHIP,
1251 NOMADIK_GPIO_TO_IRQ(pdata->first_gpio),
1252 0, &nmk_gpio_irq_simple_ops, nmk_chip);
1253 if (!nmk_chip->domain) {
1254 pr_err("%s: Failed to create irqdomain\n", np->full_name);
1255 ret = -ENOSYS;
1256 goto out_free;
1257 }
1258
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001259 nmk_gpio_init_irq(nmk_chip);
1260
Lee Jones513c27f2012-04-13 15:05:05 +01001261 dev_info(&dev->dev, "at address %p\n", nmk_chip->addr);
1262
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001263 return 0;
1264
Rabin Vincent3e3c62c2010-03-03 04:52:34 +01001265out_free:
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001266 kfree(nmk_chip);
Rabin Vincentaf7dc222010-05-06 11:14:17 +01001267out_clk:
1268 clk_disable(clk);
1269 clk_put(clk);
Linus Walleij8d917712012-04-17 10:15:54 +02001270out_unmap:
1271 iounmap(base);
Rabin Vincent3e3c62c2010-03-03 04:52:34 +01001272out_release:
1273 release_mem_region(res->start, resource_size(res));
1274out:
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001275 dev_err(&dev->dev, "Failure %i for GPIO %i-%i\n", ret,
1276 pdata->first_gpio, pdata->first_gpio+31);
Lee Jones513c27f2012-04-13 15:05:05 +01001277 if (np)
1278 kfree(pdata);
1279
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001280 return ret;
1281}
1282
Lee Jones513c27f2012-04-13 15:05:05 +01001283static const struct of_device_id nmk_gpio_match[] = {
1284 { .compatible = "st,nomadik-gpio", },
1285 {}
1286};
1287
Rabin Vincent3e3c62c2010-03-03 04:52:34 +01001288static struct platform_driver nmk_gpio_driver = {
1289 .driver = {
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001290 .owner = THIS_MODULE,
1291 .name = "gpio",
Lee Jones513c27f2012-04-13 15:05:05 +01001292 .of_match_table = nmk_gpio_match,
Rabin Vincent5317e4d12011-02-10 09:29:53 +05301293 },
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001294 .probe = nmk_gpio_probe,
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001295};
1296
1297static int __init nmk_gpio_init(void)
1298{
Rabin Vincent3e3c62c2010-03-03 04:52:34 +01001299 return platform_driver_register(&nmk_gpio_driver);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001300}
1301
Rabin Vincent33f45ea2010-06-02 06:09:52 +01001302core_initcall(nmk_gpio_init);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001303
1304MODULE_AUTHOR("Prafulla WADASKAR and Alessandro Rubini");
1305MODULE_DESCRIPTION("Nomadik GPIO Driver");
1306MODULE_LICENSE("GPL");