blob: 8c632e931c22df5b515c6653c02d1b98cc6735d7 [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>
Linus Walleije98ea772012-04-26 23:57:25 +020027#include <linux/pinctrl/pinctrl.h>
Linus Walleijdbfe8ca2012-05-02 22:56:47 +020028#include <linux/pinctrl/pinmux.h>
29/* Since we request GPIOs from ourself */
30#include <linux/pinctrl/consumer.h>
Alessandro Rubini2ec1d352009-07-02 15:29:12 +010031
Will Deaconadfed152011-02-28 10:12:29 +000032#include <asm/mach/irq.h>
33
Rabin Vincent378be062010-06-02 06:06:29 +010034#include <plat/pincfg.h>
Linus Walleij0f332862011-08-22 08:33:30 +010035#include <plat/gpio-nomadik.h>
Alessandro Rubini2ec1d352009-07-02 15:29:12 +010036
Linus Walleije98ea772012-04-26 23:57:25 +020037#include "pinctrl-nomadik.h"
38
Alessandro Rubini2ec1d352009-07-02 15:29:12 +010039/*
40 * The GPIO module in the Nomadik family of Systems-on-Chip is an
41 * AMBA device, managing 32 pins and alternate functions. The logic block
Jonas Aaberg9c66ee62010-10-13 13:14:17 +020042 * is currently used in the Nomadik and ux500.
Alessandro Rubini2ec1d352009-07-02 15:29:12 +010043 *
44 * Symbols in this file are called "nmk_gpio" for "nomadik gpio"
45 */
46
Rabin Vincent01727e62010-12-13 12:02:40 +053047#define NMK_GPIO_PER_CHIP 32
48
Alessandro Rubini2ec1d352009-07-02 15:29:12 +010049struct nmk_gpio_chip {
50 struct gpio_chip chip;
Lee Jonesa60b57e2012-04-19 21:36:31 +010051 struct irq_domain *domain;
Alessandro Rubini2ec1d352009-07-02 15:29:12 +010052 void __iomem *addr;
Rabin Vincentaf7dc222010-05-06 11:14:17 +010053 struct clk *clk;
Rabin Vincent33b744b2010-10-14 10:38:03 +053054 unsigned int bank;
Alessandro Rubini2ec1d352009-07-02 15:29:12 +010055 unsigned int parent_irq;
Virupax Sadashivpetimath2c8bb0e2010-11-11 14:10:38 +053056 int secondary_parent_irq;
Rabin Vincent33b744b2010-10-14 10:38:03 +053057 u32 (*get_secondary_status)(unsigned int bank);
Rabin Vincent01727e62010-12-13 12:02:40 +053058 void (*set_ioforce)(bool enable);
Rabin Vincentc0fcb8d2010-03-03 04:48:54 +010059 spinlock_t lock;
Linus Walleij33d78642011-06-09 11:08:47 +020060 bool sleepmode;
Alessandro Rubini2ec1d352009-07-02 15:29:12 +010061 /* Keep track of configured edges */
62 u32 edge_rising;
63 u32 edge_falling;
Rabin Vincentb9df4682011-02-10 11:45:58 +053064 u32 real_wake;
65 u32 rwimsc;
66 u32 fwimsc;
Rabin Vincent6c12fe82011-05-23 12:13:33 +053067 u32 rimsc;
68 u32 fimsc;
Rickard Anderssonbc6f5cf2011-05-24 23:07:17 +020069 u32 pull_up;
Rabin Vincentebc61782011-09-28 15:49:11 +053070 u32 lowemi;
Alessandro Rubini2ec1d352009-07-02 15:29:12 +010071};
72
Linus Walleije98ea772012-04-26 23:57:25 +020073struct nmk_pinctrl {
74 struct device *dev;
75 struct pinctrl_dev *pctl;
76 const struct nmk_pinctrl_soc_data *soc;
77};
78
Rabin Vincent01727e62010-12-13 12:02:40 +053079static struct nmk_gpio_chip *
80nmk_gpio_chips[DIV_ROUND_UP(ARCH_NR_GPIOS, NMK_GPIO_PER_CHIP)];
81
82static DEFINE_SPINLOCK(nmk_gpio_slpm_lock);
83
84#define NUM_BANKS ARRAY_SIZE(nmk_gpio_chips)
85
Rabin Vincent6f9a9742010-06-02 05:50:28 +010086static void __nmk_gpio_set_mode(struct nmk_gpio_chip *nmk_chip,
87 unsigned offset, int gpio_mode)
88{
89 u32 bit = 1 << offset;
90 u32 afunc, bfunc;
91
92 afunc = readl(nmk_chip->addr + NMK_GPIO_AFSLA) & ~bit;
93 bfunc = readl(nmk_chip->addr + NMK_GPIO_AFSLB) & ~bit;
94 if (gpio_mode & NMK_GPIO_ALT_A)
95 afunc |= bit;
96 if (gpio_mode & NMK_GPIO_ALT_B)
97 bfunc |= bit;
98 writel(afunc, nmk_chip->addr + NMK_GPIO_AFSLA);
99 writel(bfunc, nmk_chip->addr + NMK_GPIO_AFSLB);
100}
101
Rabin Vincent81a3c292010-05-27 12:39:23 +0100102static void __nmk_gpio_set_slpm(struct nmk_gpio_chip *nmk_chip,
103 unsigned offset, enum nmk_gpio_slpm mode)
104{
105 u32 bit = 1 << offset;
106 u32 slpm;
107
108 slpm = readl(nmk_chip->addr + NMK_GPIO_SLPC);
109 if (mode == NMK_GPIO_SLPM_NOCHANGE)
110 slpm |= bit;
111 else
112 slpm &= ~bit;
113 writel(slpm, nmk_chip->addr + NMK_GPIO_SLPC);
114}
115
Rabin Vincent5b327ed2010-05-27 12:29:50 +0100116static void __nmk_gpio_set_pull(struct nmk_gpio_chip *nmk_chip,
117 unsigned offset, enum nmk_gpio_pull pull)
118{
119 u32 bit = 1 << offset;
120 u32 pdis;
121
122 pdis = readl(nmk_chip->addr + NMK_GPIO_PDIS);
Rickard Anderssonbc6f5cf2011-05-24 23:07:17 +0200123 if (pull == NMK_GPIO_PULL_NONE) {
Rabin Vincent5b327ed2010-05-27 12:29:50 +0100124 pdis |= bit;
Rickard Anderssonbc6f5cf2011-05-24 23:07:17 +0200125 nmk_chip->pull_up &= ~bit;
126 } else {
Rabin Vincent5b327ed2010-05-27 12:29:50 +0100127 pdis &= ~bit;
Rickard Anderssonbc6f5cf2011-05-24 23:07:17 +0200128 }
129
Rabin Vincent5b327ed2010-05-27 12:29:50 +0100130 writel(pdis, nmk_chip->addr + NMK_GPIO_PDIS);
131
Rickard Anderssonbc6f5cf2011-05-24 23:07:17 +0200132 if (pull == NMK_GPIO_PULL_UP) {
133 nmk_chip->pull_up |= bit;
Rabin Vincent5b327ed2010-05-27 12:29:50 +0100134 writel(bit, nmk_chip->addr + NMK_GPIO_DATS);
Rickard Anderssonbc6f5cf2011-05-24 23:07:17 +0200135 } else if (pull == NMK_GPIO_PULL_DOWN) {
136 nmk_chip->pull_up &= ~bit;
Rabin Vincent5b327ed2010-05-27 12:29:50 +0100137 writel(bit, nmk_chip->addr + NMK_GPIO_DATC);
Rickard Anderssonbc6f5cf2011-05-24 23:07:17 +0200138 }
Rabin Vincent5b327ed2010-05-27 12:29:50 +0100139}
140
Rabin Vincentebc61782011-09-28 15:49:11 +0530141static void __nmk_gpio_set_lowemi(struct nmk_gpio_chip *nmk_chip,
142 unsigned offset, bool lowemi)
143{
144 u32 bit = BIT(offset);
145 bool enabled = nmk_chip->lowemi & bit;
146
147 if (lowemi == enabled)
148 return;
149
150 if (lowemi)
151 nmk_chip->lowemi |= bit;
152 else
153 nmk_chip->lowemi &= ~bit;
154
155 writel_relaxed(nmk_chip->lowemi,
156 nmk_chip->addr + NMK_GPIO_LOWEMI);
157}
158
Rabin Vincent378be062010-06-02 06:06:29 +0100159static void __nmk_gpio_make_input(struct nmk_gpio_chip *nmk_chip,
160 unsigned offset)
161{
162 writel(1 << offset, nmk_chip->addr + NMK_GPIO_DIRC);
163}
164
Rabin Vincent6720db72010-09-02 11:28:48 +0100165static void __nmk_gpio_set_output(struct nmk_gpio_chip *nmk_chip,
166 unsigned offset, int val)
167{
168 if (val)
169 writel(1 << offset, nmk_chip->addr + NMK_GPIO_DATS);
170 else
171 writel(1 << offset, nmk_chip->addr + NMK_GPIO_DATC);
172}
173
174static void __nmk_gpio_make_output(struct nmk_gpio_chip *nmk_chip,
175 unsigned offset, int val)
176{
177 writel(1 << offset, nmk_chip->addr + NMK_GPIO_DIRS);
178 __nmk_gpio_set_output(nmk_chip, offset, val);
179}
180
Rabin Vincent01727e62010-12-13 12:02:40 +0530181static void __nmk_gpio_set_mode_safe(struct nmk_gpio_chip *nmk_chip,
182 unsigned offset, int gpio_mode,
183 bool glitch)
184{
Rabin Vincent6c12fe82011-05-23 12:13:33 +0530185 u32 rwimsc = nmk_chip->rwimsc;
186 u32 fwimsc = nmk_chip->fwimsc;
Rabin Vincent01727e62010-12-13 12:02:40 +0530187
188 if (glitch && nmk_chip->set_ioforce) {
189 u32 bit = BIT(offset);
190
Rabin Vincent01727e62010-12-13 12:02:40 +0530191 /* Prevent spurious wakeups */
192 writel(rwimsc & ~bit, nmk_chip->addr + NMK_GPIO_RWIMSC);
193 writel(fwimsc & ~bit, nmk_chip->addr + NMK_GPIO_FWIMSC);
194
195 nmk_chip->set_ioforce(true);
196 }
197
198 __nmk_gpio_set_mode(nmk_chip, offset, gpio_mode);
199
200 if (glitch && nmk_chip->set_ioforce) {
201 nmk_chip->set_ioforce(false);
202
203 writel(rwimsc, nmk_chip->addr + NMK_GPIO_RWIMSC);
204 writel(fwimsc, nmk_chip->addr + NMK_GPIO_FWIMSC);
205 }
206}
207
Rabin Vincent6c42ad12011-05-23 12:22:18 +0530208static void
209nmk_gpio_disable_lazy_irq(struct nmk_gpio_chip *nmk_chip, unsigned offset)
210{
211 u32 falling = nmk_chip->fimsc & BIT(offset);
212 u32 rising = nmk_chip->rimsc & BIT(offset);
213 int gpio = nmk_chip->chip.base + offset;
214 int irq = NOMADIK_GPIO_TO_IRQ(gpio);
215 struct irq_data *d = irq_get_irq_data(irq);
216
217 if (!rising && !falling)
218 return;
219
220 if (!d || !irqd_irq_disabled(d))
221 return;
222
223 if (rising) {
224 nmk_chip->rimsc &= ~BIT(offset);
225 writel_relaxed(nmk_chip->rimsc,
226 nmk_chip->addr + NMK_GPIO_RIMSC);
227 }
228
229 if (falling) {
230 nmk_chip->fimsc &= ~BIT(offset);
231 writel_relaxed(nmk_chip->fimsc,
232 nmk_chip->addr + NMK_GPIO_FIMSC);
233 }
234
235 dev_dbg(nmk_chip->chip.dev, "%d: clearing interrupt mask\n", gpio);
236}
237
Rabin Vincent378be062010-06-02 06:06:29 +0100238static void __nmk_config_pin(struct nmk_gpio_chip *nmk_chip, unsigned offset,
Rabin Vincent01727e62010-12-13 12:02:40 +0530239 pin_cfg_t cfg, bool sleep, unsigned int *slpmregs)
Rabin Vincent378be062010-06-02 06:06:29 +0100240{
241 static const char *afnames[] = {
242 [NMK_GPIO_ALT_GPIO] = "GPIO",
243 [NMK_GPIO_ALT_A] = "A",
244 [NMK_GPIO_ALT_B] = "B",
245 [NMK_GPIO_ALT_C] = "C"
246 };
247 static const char *pullnames[] = {
248 [NMK_GPIO_PULL_NONE] = "none",
249 [NMK_GPIO_PULL_UP] = "up",
250 [NMK_GPIO_PULL_DOWN] = "down",
251 [3] /* illegal */ = "??"
252 };
253 static const char *slpmnames[] = {
Rabin Vincent7e3f7e52010-09-02 11:28:05 +0100254 [NMK_GPIO_SLPM_INPUT] = "input/wakeup",
255 [NMK_GPIO_SLPM_NOCHANGE] = "no-change/no-wakeup",
Rabin Vincent378be062010-06-02 06:06:29 +0100256 };
257
258 int pin = PIN_NUM(cfg);
259 int pull = PIN_PULL(cfg);
260 int af = PIN_ALT(cfg);
261 int slpm = PIN_SLPM(cfg);
Rabin Vincent6720db72010-09-02 11:28:48 +0100262 int output = PIN_DIR(cfg);
263 int val = PIN_VAL(cfg);
Rabin Vincent01727e62010-12-13 12:02:40 +0530264 bool glitch = af == NMK_GPIO_ALT_C;
Rabin Vincent378be062010-06-02 06:06:29 +0100265
Rabin Vincentdacdc962010-12-03 20:35:37 +0530266 dev_dbg(nmk_chip->chip.dev, "pin %d [%#lx]: af %s, pull %s, slpm %s (%s%s)\n",
267 pin, cfg, afnames[af], pullnames[pull], slpmnames[slpm],
Rabin Vincent6720db72010-09-02 11:28:48 +0100268 output ? "output " : "input",
269 output ? (val ? "high" : "low") : "");
Rabin Vincent378be062010-06-02 06:06:29 +0100270
Rabin Vincentdacdc962010-12-03 20:35:37 +0530271 if (sleep) {
272 int slpm_pull = PIN_SLPM_PULL(cfg);
273 int slpm_output = PIN_SLPM_DIR(cfg);
274 int slpm_val = PIN_SLPM_VAL(cfg);
275
Rabin Vincent3546d152010-11-25 11:38:27 +0530276 af = NMK_GPIO_ALT_GPIO;
277
Rabin Vincentdacdc962010-12-03 20:35:37 +0530278 /*
279 * The SLPM_* values are normal values + 1 to allow zero to
280 * mean "same as normal".
281 */
282 if (slpm_pull)
283 pull = slpm_pull - 1;
284 if (slpm_output)
285 output = slpm_output - 1;
286 if (slpm_val)
287 val = slpm_val - 1;
288
289 dev_dbg(nmk_chip->chip.dev, "pin %d: sleep pull %s, dir %s, val %s\n",
290 pin,
291 slpm_pull ? pullnames[pull] : "same",
292 slpm_output ? (output ? "output" : "input") : "same",
293 slpm_val ? (val ? "high" : "low") : "same");
294 }
295
Rabin Vincent6720db72010-09-02 11:28:48 +0100296 if (output)
297 __nmk_gpio_make_output(nmk_chip, offset, val);
298 else {
299 __nmk_gpio_make_input(nmk_chip, offset);
300 __nmk_gpio_set_pull(nmk_chip, offset, pull);
301 }
302
Rabin Vincentebc61782011-09-28 15:49:11 +0530303 __nmk_gpio_set_lowemi(nmk_chip, offset, PIN_LOWEMI(cfg));
304
Rabin Vincent01727e62010-12-13 12:02:40 +0530305 /*
Rabin Vincent6c42ad12011-05-23 12:22:18 +0530306 * If the pin is switching to altfunc, and there was an interrupt
307 * installed on it which has been lazy disabled, actually mask the
308 * interrupt to prevent spurious interrupts that would occur while the
309 * pin is under control of the peripheral. Only SKE does this.
310 */
311 if (af != NMK_GPIO_ALT_GPIO)
312 nmk_gpio_disable_lazy_irq(nmk_chip, offset);
313
314 /*
Rabin Vincent01727e62010-12-13 12:02:40 +0530315 * If we've backed up the SLPM registers (glitch workaround), modify
316 * the backups since they will be restored.
317 */
318 if (slpmregs) {
319 if (slpm == NMK_GPIO_SLPM_NOCHANGE)
320 slpmregs[nmk_chip->bank] |= BIT(offset);
321 else
322 slpmregs[nmk_chip->bank] &= ~BIT(offset);
323 } else
324 __nmk_gpio_set_slpm(nmk_chip, offset, slpm);
325
326 __nmk_gpio_set_mode_safe(nmk_chip, offset, af, glitch);
327}
328
329/*
330 * Safe sequence used to switch IOs between GPIO and Alternate-C mode:
331 * - Save SLPM registers
332 * - Set SLPM=0 for the IOs you want to switch and others to 1
333 * - Configure the GPIO registers for the IOs that are being switched
334 * - Set IOFORCE=1
335 * - Modify the AFLSA/B registers for the IOs that are being switched
336 * - Set IOFORCE=0
337 * - Restore SLPM registers
338 * - Any spurious wake up event during switch sequence to be ignored and
339 * cleared
340 */
341static void nmk_gpio_glitch_slpm_init(unsigned int *slpm)
342{
343 int i;
344
345 for (i = 0; i < NUM_BANKS; i++) {
346 struct nmk_gpio_chip *chip = nmk_gpio_chips[i];
347 unsigned int temp = slpm[i];
348
349 if (!chip)
350 break;
351
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200352 clk_enable(chip->clk);
353
Rabin Vincent01727e62010-12-13 12:02:40 +0530354 slpm[i] = readl(chip->addr + NMK_GPIO_SLPC);
355 writel(temp, chip->addr + NMK_GPIO_SLPC);
356 }
357}
358
359static void nmk_gpio_glitch_slpm_restore(unsigned int *slpm)
360{
361 int i;
362
363 for (i = 0; i < NUM_BANKS; i++) {
364 struct nmk_gpio_chip *chip = nmk_gpio_chips[i];
365
366 if (!chip)
367 break;
368
369 writel(slpm[i], chip->addr + NMK_GPIO_SLPC);
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200370
371 clk_disable(chip->clk);
Rabin Vincent01727e62010-12-13 12:02:40 +0530372 }
373}
374
375static int __nmk_config_pins(pin_cfg_t *cfgs, int num, bool sleep)
376{
377 static unsigned int slpm[NUM_BANKS];
378 unsigned long flags;
379 bool glitch = false;
380 int ret = 0;
381 int i;
382
383 for (i = 0; i < num; i++) {
384 if (PIN_ALT(cfgs[i]) == NMK_GPIO_ALT_C) {
385 glitch = true;
386 break;
387 }
388 }
389
390 spin_lock_irqsave(&nmk_gpio_slpm_lock, flags);
391
392 if (glitch) {
393 memset(slpm, 0xff, sizeof(slpm));
394
395 for (i = 0; i < num; i++) {
396 int pin = PIN_NUM(cfgs[i]);
397 int offset = pin % NMK_GPIO_PER_CHIP;
398
399 if (PIN_ALT(cfgs[i]) == NMK_GPIO_ALT_C)
400 slpm[pin / NMK_GPIO_PER_CHIP] &= ~BIT(offset);
401 }
402
403 nmk_gpio_glitch_slpm_init(slpm);
404 }
405
406 for (i = 0; i < num; i++) {
407 struct nmk_gpio_chip *nmk_chip;
408 int pin = PIN_NUM(cfgs[i]);
409
Lee Jonesa60b57e2012-04-19 21:36:31 +0100410 nmk_chip = nmk_gpio_chips[pin / NMK_GPIO_PER_CHIP];
Rabin Vincent01727e62010-12-13 12:02:40 +0530411 if (!nmk_chip) {
412 ret = -EINVAL;
413 break;
414 }
415
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200416 clk_enable(nmk_chip->clk);
Rabin Vincent01727e62010-12-13 12:02:40 +0530417 spin_lock(&nmk_chip->lock);
Lee Jonesa60b57e2012-04-19 21:36:31 +0100418 __nmk_config_pin(nmk_chip, pin % NMK_GPIO_PER_CHIP,
Rabin Vincent01727e62010-12-13 12:02:40 +0530419 cfgs[i], sleep, glitch ? slpm : NULL);
420 spin_unlock(&nmk_chip->lock);
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200421 clk_disable(nmk_chip->clk);
Rabin Vincent01727e62010-12-13 12:02:40 +0530422 }
423
424 if (glitch)
425 nmk_gpio_glitch_slpm_restore(slpm);
426
427 spin_unlock_irqrestore(&nmk_gpio_slpm_lock, flags);
428
429 return ret;
Rabin Vincent378be062010-06-02 06:06:29 +0100430}
431
432/**
433 * nmk_config_pin - configure a pin's mux attributes
434 * @cfg: pin confguration
435 *
436 * Configures a pin's mode (alternate function or GPIO), its pull up status,
437 * and its sleep mode based on the specified configuration. The @cfg is
438 * usually one of the SoC specific macros defined in mach/<soc>-pins.h. These
439 * are constructed using, and can be further enhanced with, the macros in
440 * plat/pincfg.h.
441 *
442 * If a pin's mode is set to GPIO, it is configured as an input to avoid
443 * side-effects. The gpio can be manipulated later using standard GPIO API
444 * calls.
445 */
Rabin Vincentdacdc962010-12-03 20:35:37 +0530446int nmk_config_pin(pin_cfg_t cfg, bool sleep)
Rabin Vincent378be062010-06-02 06:06:29 +0100447{
Rabin Vincent01727e62010-12-13 12:02:40 +0530448 return __nmk_config_pins(&cfg, 1, sleep);
Rabin Vincent378be062010-06-02 06:06:29 +0100449}
450EXPORT_SYMBOL(nmk_config_pin);
451
452/**
453 * nmk_config_pins - configure several pins at once
454 * @cfgs: array of pin configurations
455 * @num: number of elments in the array
456 *
457 * Configures several pins using nmk_config_pin(). Refer to that function for
458 * further information.
459 */
460int nmk_config_pins(pin_cfg_t *cfgs, int num)
461{
Rabin Vincent01727e62010-12-13 12:02:40 +0530462 return __nmk_config_pins(cfgs, num, false);
Rabin Vincent378be062010-06-02 06:06:29 +0100463}
464EXPORT_SYMBOL(nmk_config_pins);
465
Rabin Vincentdacdc962010-12-03 20:35:37 +0530466int nmk_config_pins_sleep(pin_cfg_t *cfgs, int num)
467{
Rabin Vincent01727e62010-12-13 12:02:40 +0530468 return __nmk_config_pins(cfgs, num, true);
Rabin Vincentdacdc962010-12-03 20:35:37 +0530469}
470EXPORT_SYMBOL(nmk_config_pins_sleep);
471
Rabin Vincent5b327ed2010-05-27 12:29:50 +0100472/**
Rabin Vincent81a3c292010-05-27 12:39:23 +0100473 * nmk_gpio_set_slpm() - configure the sleep mode of a pin
474 * @gpio: pin number
475 * @mode: NMK_GPIO_SLPM_INPUT or NMK_GPIO_SLPM_NOCHANGE,
476 *
Linus Walleij33d78642011-06-09 11:08:47 +0200477 * This register is actually in the pinmux layer, not the GPIO block itself.
478 * The GPIO1B_SLPM register defines the GPIO mode when SLEEP/DEEP-SLEEP
479 * mode is entered (i.e. when signal IOFORCE is HIGH by the platform code).
480 * Each GPIO can be configured to be forced into GPIO mode when IOFORCE is
481 * HIGH, overriding the normal setting defined by GPIO_AFSELx registers.
482 * When IOFORCE returns LOW (by software, after SLEEP/DEEP-SLEEP exit),
483 * the GPIOs return to the normal setting defined by GPIO_AFSELx registers.
Rabin Vincent7e3f7e52010-09-02 11:28:05 +0100484 *
Linus Walleij33d78642011-06-09 11:08:47 +0200485 * If @mode is NMK_GPIO_SLPM_INPUT, the corresponding GPIO is switched to GPIO
486 * mode when signal IOFORCE is HIGH (i.e. when SLEEP/DEEP-SLEEP mode is
487 * entered) regardless of the altfunction selected. Also wake-up detection is
488 * ENABLED.
489 *
490 * If @mode is NMK_GPIO_SLPM_NOCHANGE, the corresponding GPIO remains
491 * controlled by NMK_GPIO_DATC, NMK_GPIO_DATS, NMK_GPIO_DIR, NMK_GPIO_PDIS
492 * (for altfunction GPIO) or respective on-chip peripherals (for other
493 * altfuncs) when IOFORCE is HIGH. Also wake-up detection DISABLED.
494 *
495 * Note that enable_irq_wake() will automatically enable wakeup detection.
Rabin Vincent81a3c292010-05-27 12:39:23 +0100496 */
497int nmk_gpio_set_slpm(int gpio, enum nmk_gpio_slpm mode)
498{
499 struct nmk_gpio_chip *nmk_chip;
500 unsigned long flags;
501
Lee Jonesa60b57e2012-04-19 21:36:31 +0100502 nmk_chip = nmk_gpio_chips[gpio / NMK_GPIO_PER_CHIP];
Rabin Vincent81a3c292010-05-27 12:39:23 +0100503 if (!nmk_chip)
504 return -EINVAL;
505
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200506 clk_enable(nmk_chip->clk);
Rabin Vincent01727e62010-12-13 12:02:40 +0530507 spin_lock_irqsave(&nmk_gpio_slpm_lock, flags);
508 spin_lock(&nmk_chip->lock);
509
Lee Jonesa60b57e2012-04-19 21:36:31 +0100510 __nmk_gpio_set_slpm(nmk_chip, gpio % NMK_GPIO_PER_CHIP, mode);
Rabin Vincent01727e62010-12-13 12:02:40 +0530511
512 spin_unlock(&nmk_chip->lock);
513 spin_unlock_irqrestore(&nmk_gpio_slpm_lock, flags);
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200514 clk_disable(nmk_chip->clk);
Rabin Vincent81a3c292010-05-27 12:39:23 +0100515
516 return 0;
517}
518
519/**
Rabin Vincent5b327ed2010-05-27 12:29:50 +0100520 * nmk_gpio_set_pull() - enable/disable pull up/down on a gpio
521 * @gpio: pin number
522 * @pull: one of NMK_GPIO_PULL_DOWN, NMK_GPIO_PULL_UP, and NMK_GPIO_PULL_NONE
523 *
524 * Enables/disables pull up/down on a specified pin. This only takes effect if
525 * the pin is configured as an input (either explicitly or by the alternate
526 * function).
527 *
528 * NOTE: If enabling the pull up/down, the caller must ensure that the GPIO is
529 * configured as an input. Otherwise, due to the way the controller registers
530 * work, this function will change the value output on the pin.
531 */
532int nmk_gpio_set_pull(int gpio, enum nmk_gpio_pull pull)
533{
534 struct nmk_gpio_chip *nmk_chip;
535 unsigned long flags;
536
Lee Jonesa60b57e2012-04-19 21:36:31 +0100537 nmk_chip = nmk_gpio_chips[gpio / NMK_GPIO_PER_CHIP];
Rabin Vincent5b327ed2010-05-27 12:29:50 +0100538 if (!nmk_chip)
539 return -EINVAL;
540
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200541 clk_enable(nmk_chip->clk);
Rabin Vincent5b327ed2010-05-27 12:29:50 +0100542 spin_lock_irqsave(&nmk_chip->lock, flags);
Lee Jonesa60b57e2012-04-19 21:36:31 +0100543 __nmk_gpio_set_pull(nmk_chip, gpio % NMK_GPIO_PER_CHIP, pull);
Rabin Vincent5b327ed2010-05-27 12:29:50 +0100544 spin_unlock_irqrestore(&nmk_chip->lock, flags);
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200545 clk_disable(nmk_chip->clk);
Rabin Vincent5b327ed2010-05-27 12:29:50 +0100546
547 return 0;
548}
549
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100550/* Mode functions */
Jonas Aaberg9c66ee62010-10-13 13:14:17 +0200551/**
552 * nmk_gpio_set_mode() - set the mux mode of a gpio pin
553 * @gpio: pin number
554 * @gpio_mode: one of NMK_GPIO_ALT_GPIO, NMK_GPIO_ALT_A,
555 * NMK_GPIO_ALT_B, and NMK_GPIO_ALT_C
556 *
557 * Sets the mode of the specified pin to one of the alternate functions or
558 * plain GPIO.
559 */
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100560int nmk_gpio_set_mode(int gpio, int gpio_mode)
561{
562 struct nmk_gpio_chip *nmk_chip;
563 unsigned long flags;
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100564
Lee Jonesa60b57e2012-04-19 21:36:31 +0100565 nmk_chip = nmk_gpio_chips[gpio / NMK_GPIO_PER_CHIP];
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100566 if (!nmk_chip)
567 return -EINVAL;
568
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200569 clk_enable(nmk_chip->clk);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100570 spin_lock_irqsave(&nmk_chip->lock, flags);
Lee Jonesa60b57e2012-04-19 21:36:31 +0100571 __nmk_gpio_set_mode(nmk_chip, gpio % NMK_GPIO_PER_CHIP, gpio_mode);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100572 spin_unlock_irqrestore(&nmk_chip->lock, flags);
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200573 clk_disable(nmk_chip->clk);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100574
575 return 0;
576}
577EXPORT_SYMBOL(nmk_gpio_set_mode);
578
579int nmk_gpio_get_mode(int gpio)
580{
581 struct nmk_gpio_chip *nmk_chip;
582 u32 afunc, bfunc, bit;
583
Lee Jonesa60b57e2012-04-19 21:36:31 +0100584 nmk_chip = nmk_gpio_chips[gpio / NMK_GPIO_PER_CHIP];
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100585 if (!nmk_chip)
586 return -EINVAL;
587
Lee Jonesa60b57e2012-04-19 21:36:31 +0100588 bit = 1 << (gpio % NMK_GPIO_PER_CHIP);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100589
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200590 clk_enable(nmk_chip->clk);
591
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100592 afunc = readl(nmk_chip->addr + NMK_GPIO_AFSLA) & bit;
593 bfunc = readl(nmk_chip->addr + NMK_GPIO_AFSLB) & bit;
594
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200595 clk_disable(nmk_chip->clk);
596
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100597 return (afunc ? NMK_GPIO_ALT_A : 0) | (bfunc ? NMK_GPIO_ALT_B : 0);
598}
599EXPORT_SYMBOL(nmk_gpio_get_mode);
600
601
602/* IRQ functions */
603static inline int nmk_gpio_get_bitmask(int gpio)
604{
Lee Jonesa60b57e2012-04-19 21:36:31 +0100605 return 1 << (gpio % NMK_GPIO_PER_CHIP);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100606}
607
Lennert Buytenhekf272c002010-11-29 11:16:48 +0100608static void nmk_gpio_irq_ack(struct irq_data *d)
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100609{
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100610 struct nmk_gpio_chip *nmk_chip;
611
Lennert Buytenhekf272c002010-11-29 11:16:48 +0100612 nmk_chip = irq_data_get_irq_chip_data(d);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100613 if (!nmk_chip)
614 return;
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200615
616 clk_enable(nmk_chip->clk);
Lee Jonesa60b57e2012-04-19 21:36:31 +0100617 writel(nmk_gpio_get_bitmask(d->hwirq), nmk_chip->addr + NMK_GPIO_IC);
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200618 clk_disable(nmk_chip->clk);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100619}
620
Rabin Vincent4d4e20f2010-06-16 06:09:34 +0100621enum nmk_gpio_irq_type {
622 NORMAL,
623 WAKE,
624};
625
Rabin Vincent040e5ec2010-05-06 10:42:42 +0100626static void __nmk_gpio_irq_modify(struct nmk_gpio_chip *nmk_chip,
Rabin Vincent4d4e20f2010-06-16 06:09:34 +0100627 int gpio, enum nmk_gpio_irq_type which,
628 bool enable)
Rabin Vincent040e5ec2010-05-06 10:42:42 +0100629{
630 u32 bitmask = nmk_gpio_get_bitmask(gpio);
Rabin Vincent6c12fe82011-05-23 12:13:33 +0530631 u32 *rimscval;
632 u32 *fimscval;
633 u32 rimscreg;
634 u32 fimscreg;
635
636 if (which == NORMAL) {
637 rimscreg = NMK_GPIO_RIMSC;
638 fimscreg = NMK_GPIO_FIMSC;
639 rimscval = &nmk_chip->rimsc;
640 fimscval = &nmk_chip->fimsc;
641 } else {
642 rimscreg = NMK_GPIO_RWIMSC;
643 fimscreg = NMK_GPIO_FWIMSC;
644 rimscval = &nmk_chip->rwimsc;
645 fimscval = &nmk_chip->fwimsc;
646 }
Rabin Vincent040e5ec2010-05-06 10:42:42 +0100647
648 /* we must individually set/clear the two edges */
649 if (nmk_chip->edge_rising & bitmask) {
Rabin Vincent040e5ec2010-05-06 10:42:42 +0100650 if (enable)
Rabin Vincent6c12fe82011-05-23 12:13:33 +0530651 *rimscval |= bitmask;
Rabin Vincent040e5ec2010-05-06 10:42:42 +0100652 else
Rabin Vincent6c12fe82011-05-23 12:13:33 +0530653 *rimscval &= ~bitmask;
654 writel(*rimscval, nmk_chip->addr + rimscreg);
Rabin Vincent040e5ec2010-05-06 10:42:42 +0100655 }
656 if (nmk_chip->edge_falling & bitmask) {
Rabin Vincent040e5ec2010-05-06 10:42:42 +0100657 if (enable)
Rabin Vincent6c12fe82011-05-23 12:13:33 +0530658 *fimscval |= bitmask;
Rabin Vincent040e5ec2010-05-06 10:42:42 +0100659 else
Rabin Vincent6c12fe82011-05-23 12:13:33 +0530660 *fimscval &= ~bitmask;
661 writel(*fimscval, nmk_chip->addr + fimscreg);
Rabin Vincent040e5ec2010-05-06 10:42:42 +0100662 }
663}
664
Rabin Vincentb9df4682011-02-10 11:45:58 +0530665static void __nmk_gpio_set_wake(struct nmk_gpio_chip *nmk_chip,
666 int gpio, bool on)
667{
Rabin Vincentb982ff02011-04-26 09:03:27 +0530668 /*
669 * Ensure WAKEUP_ENABLE is on. No need to disable it if wakeup is
670 * disabled, since setting SLPM to 1 increases power consumption, and
671 * wakeup is anyhow controlled by the RIMSC and FIMSC registers.
672 */
673 if (nmk_chip->sleepmode && on) {
Lee Jonesa60b57e2012-04-19 21:36:31 +0100674 __nmk_gpio_set_slpm(nmk_chip, gpio % nmk_chip->chip.base,
Rabin Vincentb982ff02011-04-26 09:03:27 +0530675 NMK_GPIO_SLPM_WAKEUP_ENABLE);
Linus Walleij33d78642011-06-09 11:08:47 +0200676 }
677
Rabin Vincentb9df4682011-02-10 11:45:58 +0530678 __nmk_gpio_irq_modify(nmk_chip, gpio, WAKE, on);
679}
680
681static int nmk_gpio_irq_maskunmask(struct irq_data *d, bool enable)
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100682{
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100683 struct nmk_gpio_chip *nmk_chip;
684 unsigned long flags;
Rabin Vincent040e5ec2010-05-06 10:42:42 +0100685 u32 bitmask;
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100686
Lennert Buytenhekf272c002010-11-29 11:16:48 +0100687 nmk_chip = irq_data_get_irq_chip_data(d);
Lee Jonesa60b57e2012-04-19 21:36:31 +0100688 bitmask = nmk_gpio_get_bitmask(d->hwirq);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100689 if (!nmk_chip)
Rabin Vincent4d4e20f2010-06-16 06:09:34 +0100690 return -EINVAL;
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100691
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200692 clk_enable(nmk_chip->clk);
Rabin Vincentb9df4682011-02-10 11:45:58 +0530693 spin_lock_irqsave(&nmk_gpio_slpm_lock, flags);
694 spin_lock(&nmk_chip->lock);
695
Lee Jonesa60b57e2012-04-19 21:36:31 +0100696 __nmk_gpio_irq_modify(nmk_chip, d->hwirq, NORMAL, enable);
Rabin Vincentb9df4682011-02-10 11:45:58 +0530697
698 if (!(nmk_chip->real_wake & bitmask))
Lee Jonesa60b57e2012-04-19 21:36:31 +0100699 __nmk_gpio_set_wake(nmk_chip, d->hwirq, enable);
Rabin Vincentb9df4682011-02-10 11:45:58 +0530700
701 spin_unlock(&nmk_chip->lock);
702 spin_unlock_irqrestore(&nmk_gpio_slpm_lock, flags);
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200703 clk_disable(nmk_chip->clk);
Rabin Vincent4d4e20f2010-06-16 06:09:34 +0100704
705 return 0;
Rabin Vincent040e5ec2010-05-06 10:42:42 +0100706}
707
Lennert Buytenhekf272c002010-11-29 11:16:48 +0100708static void nmk_gpio_irq_mask(struct irq_data *d)
Rabin Vincent040e5ec2010-05-06 10:42:42 +0100709{
Rabin Vincentb9df4682011-02-10 11:45:58 +0530710 nmk_gpio_irq_maskunmask(d, false);
Rabin Vincent4d4e20f2010-06-16 06:09:34 +0100711}
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100712
Lennert Buytenhekf272c002010-11-29 11:16:48 +0100713static void nmk_gpio_irq_unmask(struct irq_data *d)
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100714{
Rabin Vincentb9df4682011-02-10 11:45:58 +0530715 nmk_gpio_irq_maskunmask(d, true);
Rabin Vincent4d4e20f2010-06-16 06:09:34 +0100716}
717
Lennert Buytenhekf272c002010-11-29 11:16:48 +0100718static int nmk_gpio_irq_set_wake(struct irq_data *d, unsigned int on)
Rabin Vincent4d4e20f2010-06-16 06:09:34 +0100719{
Rabin Vincent7e3f7e52010-09-02 11:28:05 +0100720 struct nmk_gpio_chip *nmk_chip;
721 unsigned long flags;
Rabin Vincentb9df4682011-02-10 11:45:58 +0530722 u32 bitmask;
Rabin Vincent7e3f7e52010-09-02 11:28:05 +0100723
Lennert Buytenhekf272c002010-11-29 11:16:48 +0100724 nmk_chip = irq_data_get_irq_chip_data(d);
Rabin Vincent7e3f7e52010-09-02 11:28:05 +0100725 if (!nmk_chip)
726 return -EINVAL;
Lee Jonesa60b57e2012-04-19 21:36:31 +0100727 bitmask = nmk_gpio_get_bitmask(d->hwirq);
Rabin Vincent7e3f7e52010-09-02 11:28:05 +0100728
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200729 clk_enable(nmk_chip->clk);
Rabin Vincent01727e62010-12-13 12:02:40 +0530730 spin_lock_irqsave(&nmk_gpio_slpm_lock, flags);
731 spin_lock(&nmk_chip->lock);
732
Linus Walleij479a0c72011-09-20 10:50:15 +0200733 if (irqd_irq_disabled(d))
Lee Jonesa60b57e2012-04-19 21:36:31 +0100734 __nmk_gpio_set_wake(nmk_chip, d->hwirq, on);
Rabin Vincentb9df4682011-02-10 11:45:58 +0530735
736 if (on)
737 nmk_chip->real_wake |= bitmask;
738 else
739 nmk_chip->real_wake &= ~bitmask;
Rabin Vincent01727e62010-12-13 12:02:40 +0530740
741 spin_unlock(&nmk_chip->lock);
742 spin_unlock_irqrestore(&nmk_gpio_slpm_lock, flags);
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200743 clk_disable(nmk_chip->clk);
Rabin Vincent7e3f7e52010-09-02 11:28:05 +0100744
745 return 0;
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100746}
747
Lennert Buytenhekf272c002010-11-29 11:16:48 +0100748static int nmk_gpio_irq_set_type(struct irq_data *d, unsigned int type)
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100749{
Linus Walleij479a0c72011-09-20 10:50:15 +0200750 bool enabled = !irqd_irq_disabled(d);
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200751 bool wake = irqd_is_wakeup_set(d);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100752 struct nmk_gpio_chip *nmk_chip;
753 unsigned long flags;
754 u32 bitmask;
755
Lennert Buytenhekf272c002010-11-29 11:16:48 +0100756 nmk_chip = irq_data_get_irq_chip_data(d);
Lee Jonesa60b57e2012-04-19 21:36:31 +0100757 bitmask = nmk_gpio_get_bitmask(d->hwirq);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100758 if (!nmk_chip)
759 return -EINVAL;
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100760 if (type & IRQ_TYPE_LEVEL_HIGH)
761 return -EINVAL;
762 if (type & IRQ_TYPE_LEVEL_LOW)
763 return -EINVAL;
764
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200765 clk_enable(nmk_chip->clk);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100766 spin_lock_irqsave(&nmk_chip->lock, flags);
767
Rabin Vincent7a852d82010-05-06 10:43:55 +0100768 if (enabled)
Lee Jonesa60b57e2012-04-19 21:36:31 +0100769 __nmk_gpio_irq_modify(nmk_chip, d->hwirq, NORMAL, false);
Rabin Vincent4d4e20f2010-06-16 06:09:34 +0100770
Rabin Vincentb9df4682011-02-10 11:45:58 +0530771 if (enabled || wake)
Lee Jonesa60b57e2012-04-19 21:36:31 +0100772 __nmk_gpio_irq_modify(nmk_chip, d->hwirq, WAKE, false);
Rabin Vincent7a852d82010-05-06 10:43:55 +0100773
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100774 nmk_chip->edge_rising &= ~bitmask;
775 if (type & IRQ_TYPE_EDGE_RISING)
776 nmk_chip->edge_rising |= bitmask;
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100777
778 nmk_chip->edge_falling &= ~bitmask;
779 if (type & IRQ_TYPE_EDGE_FALLING)
780 nmk_chip->edge_falling |= bitmask;
Rabin Vincent7a852d82010-05-06 10:43:55 +0100781
782 if (enabled)
Lee Jonesa60b57e2012-04-19 21:36:31 +0100783 __nmk_gpio_irq_modify(nmk_chip, d->hwirq, NORMAL, true);
Rabin Vincent4d4e20f2010-06-16 06:09:34 +0100784
Rabin Vincentb9df4682011-02-10 11:45:58 +0530785 if (enabled || wake)
Lee Jonesa60b57e2012-04-19 21:36:31 +0100786 __nmk_gpio_irq_modify(nmk_chip, d->hwirq, WAKE, true);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100787
788 spin_unlock_irqrestore(&nmk_chip->lock, flags);
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200789 clk_disable(nmk_chip->clk);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100790
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100791 return 0;
792}
793
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200794static unsigned int nmk_gpio_irq_startup(struct irq_data *d)
795{
796 struct nmk_gpio_chip *nmk_chip = irq_data_get_irq_chip_data(d);
797
798 clk_enable(nmk_chip->clk);
799 nmk_gpio_irq_unmask(d);
800 return 0;
801}
802
803static void nmk_gpio_irq_shutdown(struct irq_data *d)
804{
805 struct nmk_gpio_chip *nmk_chip = irq_data_get_irq_chip_data(d);
806
807 nmk_gpio_irq_mask(d);
808 clk_disable(nmk_chip->clk);
809}
810
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100811static struct irq_chip nmk_gpio_irq_chip = {
812 .name = "Nomadik-GPIO",
Lennert Buytenhekf272c002010-11-29 11:16:48 +0100813 .irq_ack = nmk_gpio_irq_ack,
814 .irq_mask = nmk_gpio_irq_mask,
815 .irq_unmask = nmk_gpio_irq_unmask,
816 .irq_set_type = nmk_gpio_irq_set_type,
817 .irq_set_wake = nmk_gpio_irq_set_wake,
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200818 .irq_startup = nmk_gpio_irq_startup,
819 .irq_shutdown = nmk_gpio_irq_shutdown,
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100820};
821
Rabin Vincent33b744b2010-10-14 10:38:03 +0530822static void __nmk_gpio_irq_handler(unsigned int irq, struct irq_desc *desc,
823 u32 status)
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100824{
825 struct nmk_gpio_chip *nmk_chip;
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100826 struct irq_chip *host_chip = irq_get_chip(irq);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100827 unsigned int first_irq;
828
Will Deaconadfed152011-02-28 10:12:29 +0000829 chained_irq_enter(host_chip, desc);
Rabin Vincentaaedaa22010-03-03 04:50:27 +0100830
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100831 nmk_chip = irq_get_handler_data(irq);
Lee Jonesa60b57e2012-04-19 21:36:31 +0100832 first_irq = nmk_chip->domain->revmap_data.legacy.first_irq;
Rabin Vincent33b744b2010-10-14 10:38:03 +0530833 while (status) {
834 int bit = __ffs(status);
835
836 generic_handle_irq(first_irq + bit);
837 status &= ~BIT(bit);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100838 }
Rabin Vincentaaedaa22010-03-03 04:50:27 +0100839
Will Deaconadfed152011-02-28 10:12:29 +0000840 chained_irq_exit(host_chip, desc);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100841}
842
Rabin Vincent33b744b2010-10-14 10:38:03 +0530843static void nmk_gpio_irq_handler(unsigned int irq, struct irq_desc *desc)
844{
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100845 struct nmk_gpio_chip *nmk_chip = irq_get_handler_data(irq);
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200846 u32 status;
847
848 clk_enable(nmk_chip->clk);
849 status = readl(nmk_chip->addr + NMK_GPIO_IS);
850 clk_disable(nmk_chip->clk);
Rabin Vincent33b744b2010-10-14 10:38:03 +0530851
852 __nmk_gpio_irq_handler(irq, desc, status);
853}
854
855static void nmk_gpio_secondary_irq_handler(unsigned int irq,
856 struct irq_desc *desc)
857{
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100858 struct nmk_gpio_chip *nmk_chip = irq_get_handler_data(irq);
Rabin Vincent33b744b2010-10-14 10:38:03 +0530859 u32 status = nmk_chip->get_secondary_status(nmk_chip->bank);
860
861 __nmk_gpio_irq_handler(irq, desc, status);
862}
863
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100864static int nmk_gpio_init_irq(struct nmk_gpio_chip *nmk_chip)
865{
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100866 irq_set_chained_handler(nmk_chip->parent_irq, nmk_gpio_irq_handler);
867 irq_set_handler_data(nmk_chip->parent_irq, nmk_chip);
Rabin Vincent33b744b2010-10-14 10:38:03 +0530868
869 if (nmk_chip->secondary_parent_irq >= 0) {
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100870 irq_set_chained_handler(nmk_chip->secondary_parent_irq,
Rabin Vincent33b744b2010-10-14 10:38:03 +0530871 nmk_gpio_secondary_irq_handler);
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100872 irq_set_handler_data(nmk_chip->secondary_parent_irq, nmk_chip);
Rabin Vincent33b744b2010-10-14 10:38:03 +0530873 }
874
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100875 return 0;
876}
877
878/* I/O Functions */
Linus Walleijdbfe8ca2012-05-02 22:56:47 +0200879
880static int nmk_gpio_request(struct gpio_chip *chip, unsigned offset)
881{
882 /*
883 * Map back to global GPIO space and request muxing, the direction
884 * parameter does not matter for this controller.
885 */
886 int gpio = chip->base + offset;
887
888 return pinctrl_request_gpio(gpio);
889}
890
891static void nmk_gpio_free(struct gpio_chip *chip, unsigned offset)
892{
893 int gpio = chip->base + offset;
894
895 pinctrl_free_gpio(gpio);
896}
897
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100898static int nmk_gpio_make_input(struct gpio_chip *chip, unsigned offset)
899{
900 struct nmk_gpio_chip *nmk_chip =
901 container_of(chip, struct nmk_gpio_chip, chip);
902
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200903 clk_enable(nmk_chip->clk);
904
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100905 writel(1 << offset, nmk_chip->addr + NMK_GPIO_DIRC);
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200906
907 clk_disable(nmk_chip->clk);
908
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100909 return 0;
910}
911
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100912static int nmk_gpio_get_input(struct gpio_chip *chip, unsigned offset)
913{
914 struct nmk_gpio_chip *nmk_chip =
915 container_of(chip, struct nmk_gpio_chip, chip);
916 u32 bit = 1 << offset;
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200917 int value;
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100918
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200919 clk_enable(nmk_chip->clk);
920
921 value = (readl(nmk_chip->addr + NMK_GPIO_DAT) & bit) != 0;
922
923 clk_disable(nmk_chip->clk);
924
925 return value;
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100926}
927
928static void nmk_gpio_set_output(struct gpio_chip *chip, unsigned offset,
929 int val)
930{
931 struct nmk_gpio_chip *nmk_chip =
932 container_of(chip, struct nmk_gpio_chip, chip);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100933
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200934 clk_enable(nmk_chip->clk);
935
Rabin Vincent6720db72010-09-02 11:28:48 +0100936 __nmk_gpio_set_output(nmk_chip, offset, val);
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200937
938 clk_disable(nmk_chip->clk);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100939}
940
Rabin Vincent6647c6c2010-05-27 12:22:42 +0100941static int nmk_gpio_make_output(struct gpio_chip *chip, unsigned offset,
942 int val)
943{
944 struct nmk_gpio_chip *nmk_chip =
945 container_of(chip, struct nmk_gpio_chip, chip);
946
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200947 clk_enable(nmk_chip->clk);
948
Rabin Vincent6720db72010-09-02 11:28:48 +0100949 __nmk_gpio_make_output(nmk_chip, offset, val);
Rabin Vincent6647c6c2010-05-27 12:22:42 +0100950
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200951 clk_disable(nmk_chip->clk);
952
Rabin Vincent6647c6c2010-05-27 12:22:42 +0100953 return 0;
954}
955
Rabin Vincent0d2aec92010-06-16 06:10:43 +0100956static int nmk_gpio_to_irq(struct gpio_chip *chip, unsigned offset)
957{
958 struct nmk_gpio_chip *nmk_chip =
959 container_of(chip, struct nmk_gpio_chip, chip);
960
Lee Jonesa60b57e2012-04-19 21:36:31 +0100961 return irq_find_mapping(nmk_chip->domain, offset);
Rabin Vincent0d2aec92010-06-16 06:10:43 +0100962}
963
Rabin Vincentd0b543c2010-03-04 17:39:05 +0530964#ifdef CONFIG_DEBUG_FS
965
966#include <linux/seq_file.h>
967
Linus Walleij6f4350a2012-05-02 21:06:13 +0200968static void nmk_gpio_dbg_show_one(struct seq_file *s, struct gpio_chip *chip,
969 unsigned offset, unsigned gpio)
Rabin Vincentd0b543c2010-03-04 17:39:05 +0530970{
Linus Walleij6f4350a2012-05-02 21:06:13 +0200971 const char *label = gpiochip_is_requested(chip, offset);
Rabin Vincentd0b543c2010-03-04 17:39:05 +0530972 struct nmk_gpio_chip *nmk_chip =
973 container_of(chip, struct nmk_gpio_chip, chip);
Linus Walleij6f4350a2012-05-02 21:06:13 +0200974 int mode;
975 bool is_out;
976 bool pull;
977 u32 bit = 1 << offset;
Rabin Vincentd0b543c2010-03-04 17:39:05 +0530978 const char *modes[] = {
979 [NMK_GPIO_ALT_GPIO] = "gpio",
980 [NMK_GPIO_ALT_A] = "altA",
981 [NMK_GPIO_ALT_B] = "altB",
982 [NMK_GPIO_ALT_C] = "altC",
983 };
984
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200985 clk_enable(nmk_chip->clk);
Linus Walleij6f4350a2012-05-02 21:06:13 +0200986 is_out = !!(readl(nmk_chip->addr + NMK_GPIO_DIR) & bit);
987 pull = !(readl(nmk_chip->addr + NMK_GPIO_PDIS) & bit);
988 mode = nmk_gpio_get_mode(gpio);
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200989
Linus Walleij6f4350a2012-05-02 21:06:13 +0200990 seq_printf(s, " gpio-%-3d (%-20.20s) %s %s %s %s",
991 gpio, label ?: "(none)",
992 is_out ? "out" : "in ",
993 chip->get
994 ? (chip->get(chip, offset) ? "hi" : "lo")
995 : "? ",
996 (mode < 0) ? "unknown" : modes[mode],
997 pull ? "pull" : "none");
Rabin Vincentd0b543c2010-03-04 17:39:05 +0530998
Linus Walleij6f4350a2012-05-02 21:06:13 +0200999 if (label && !is_out) {
1000 int irq = gpio_to_irq(gpio);
1001 struct irq_desc *desc = irq_to_desc(irq);
Rabin Vincent8ea72a32011-05-24 23:07:09 +02001002
Linus Walleij6f4350a2012-05-02 21:06:13 +02001003 /* This races with request_irq(), set_irq_type(),
1004 * and set_irq_wake() ... but those are "rare".
1005 */
1006 if (irq >= 0 && desc->action) {
1007 char *trigger;
1008 u32 bitmask = nmk_gpio_get_bitmask(gpio);
Rabin Vincent8ea72a32011-05-24 23:07:09 +02001009
Linus Walleij6f4350a2012-05-02 21:06:13 +02001010 if (nmk_chip->edge_rising & bitmask)
1011 trigger = "edge-rising";
1012 else if (nmk_chip->edge_falling & bitmask)
1013 trigger = "edge-falling";
1014 else
1015 trigger = "edge-undefined";
Rabin Vincent8ea72a32011-05-24 23:07:09 +02001016
Linus Walleij6f4350a2012-05-02 21:06:13 +02001017 seq_printf(s, " irq-%d %s%s",
1018 irq, trigger,
1019 irqd_is_wakeup_set(&desc->irq_data)
1020 ? " wakeup" : "");
Rabin Vincent8ea72a32011-05-24 23:07:09 +02001021 }
Rabin Vincentd0b543c2010-03-04 17:39:05 +05301022 }
Rabin Vincent3c0227d2011-09-20 10:50:03 +02001023 clk_disable(nmk_chip->clk);
Rabin Vincentd0b543c2010-03-04 17:39:05 +05301024}
1025
Linus Walleij6f4350a2012-05-02 21:06:13 +02001026static void nmk_gpio_dbg_show(struct seq_file *s, struct gpio_chip *chip)
1027{
1028 unsigned i;
1029 unsigned gpio = chip->base;
1030
1031 for (i = 0; i < chip->ngpio; i++, gpio++) {
1032 nmk_gpio_dbg_show_one(s, chip, i, gpio);
1033 seq_printf(s, "\n");
1034 }
1035}
1036
Rabin Vincentd0b543c2010-03-04 17:39:05 +05301037#else
Linus Walleij6f4350a2012-05-02 21:06:13 +02001038static inline void nmk_gpio_dbg_show_one(struct seq_file *s,
1039 struct gpio_chip *chip,
1040 unsigned offset, unsigned gpio)
1041{
1042}
Rabin Vincentd0b543c2010-03-04 17:39:05 +05301043#define nmk_gpio_dbg_show NULL
1044#endif
1045
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001046/* This structure is replicated for each GPIO block allocated at probe time */
1047static struct gpio_chip nmk_gpio_template = {
Linus Walleijdbfe8ca2012-05-02 22:56:47 +02001048 .request = nmk_gpio_request,
1049 .free = nmk_gpio_free,
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001050 .direction_input = nmk_gpio_make_input,
1051 .get = nmk_gpio_get_input,
1052 .direction_output = nmk_gpio_make_output,
1053 .set = nmk_gpio_set_output,
Rabin Vincent0d2aec92010-06-16 06:10:43 +01001054 .to_irq = nmk_gpio_to_irq,
Rabin Vincentd0b543c2010-03-04 17:39:05 +05301055 .dbg_show = nmk_gpio_dbg_show,
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001056 .can_sleep = 0,
1057};
1058
Rabin Vincent3c0227d2011-09-20 10:50:03 +02001059void nmk_gpio_clocks_enable(void)
1060{
1061 int i;
1062
1063 for (i = 0; i < NUM_BANKS; i++) {
1064 struct nmk_gpio_chip *chip = nmk_gpio_chips[i];
1065
1066 if (!chip)
1067 continue;
1068
1069 clk_enable(chip->clk);
1070 }
1071}
1072
1073void nmk_gpio_clocks_disable(void)
1074{
1075 int i;
1076
1077 for (i = 0; i < NUM_BANKS; i++) {
1078 struct nmk_gpio_chip *chip = nmk_gpio_chips[i];
1079
1080 if (!chip)
1081 continue;
1082
1083 clk_disable(chip->clk);
1084 }
1085}
1086
Rabin Vincentb9df4682011-02-10 11:45:58 +05301087/*
1088 * Called from the suspend/resume path to only keep the real wakeup interrupts
1089 * (those that have had set_irq_wake() called on them) as wakeup interrupts,
1090 * and not the rest of the interrupts which we needed to have as wakeups for
1091 * cpuidle.
1092 *
1093 * PM ops are not used since this needs to be done at the end, after all the
1094 * other drivers are done with their suspend callbacks.
1095 */
1096void nmk_gpio_wakeups_suspend(void)
1097{
1098 int i;
1099
1100 for (i = 0; i < NUM_BANKS; i++) {
1101 struct nmk_gpio_chip *chip = nmk_gpio_chips[i];
1102
1103 if (!chip)
1104 break;
1105
Rabin Vincent3c0227d2011-09-20 10:50:03 +02001106 clk_enable(chip->clk);
1107
Rabin Vincentb9df4682011-02-10 11:45:58 +05301108 writel(chip->rwimsc & chip->real_wake,
1109 chip->addr + NMK_GPIO_RWIMSC);
1110 writel(chip->fwimsc & chip->real_wake,
1111 chip->addr + NMK_GPIO_FWIMSC);
1112
Rabin Vincent3c0227d2011-09-20 10:50:03 +02001113 clk_disable(chip->clk);
Rabin Vincentb9df4682011-02-10 11:45:58 +05301114 }
1115}
1116
1117void nmk_gpio_wakeups_resume(void)
1118{
1119 int i;
1120
1121 for (i = 0; i < NUM_BANKS; i++) {
1122 struct nmk_gpio_chip *chip = nmk_gpio_chips[i];
1123
1124 if (!chip)
1125 break;
1126
Rabin Vincent3c0227d2011-09-20 10:50:03 +02001127 clk_enable(chip->clk);
1128
Rabin Vincentb9df4682011-02-10 11:45:58 +05301129 writel(chip->rwimsc, chip->addr + NMK_GPIO_RWIMSC);
1130 writel(chip->fwimsc, chip->addr + NMK_GPIO_FWIMSC);
1131
Rabin Vincent3c0227d2011-09-20 10:50:03 +02001132 clk_disable(chip->clk);
Rabin Vincentb9df4682011-02-10 11:45:58 +05301133 }
1134}
1135
Rickard Anderssonbc6f5cf2011-05-24 23:07:17 +02001136/*
1137 * Read the pull up/pull down status.
1138 * A bit set in 'pull_up' means that pull up
1139 * is selected if pull is enabled in PDIS register.
1140 * Note: only pull up/down set via this driver can
1141 * be detected due to HW limitations.
1142 */
1143void nmk_gpio_read_pull(int gpio_bank, u32 *pull_up)
1144{
1145 if (gpio_bank < NUM_BANKS) {
1146 struct nmk_gpio_chip *chip = nmk_gpio_chips[gpio_bank];
1147
1148 if (!chip)
1149 return;
1150
1151 *pull_up = chip->pull_up;
1152 }
1153}
1154
Lee Jonesa60b57e2012-04-19 21:36:31 +01001155int nmk_gpio_irq_map(struct irq_domain *d, unsigned int irq,
1156 irq_hw_number_t hwirq)
1157{
1158 struct nmk_gpio_chip *nmk_chip = d->host_data;
1159
1160 if (!nmk_chip)
1161 return -EINVAL;
1162
1163 irq_set_chip_and_handler(irq, &nmk_gpio_irq_chip, handle_edge_irq);
1164 set_irq_flags(irq, IRQF_VALID);
1165 irq_set_chip_data(irq, nmk_chip);
1166 irq_set_irq_type(irq, IRQ_TYPE_EDGE_FALLING);
1167
1168 return 0;
1169}
1170
1171const struct irq_domain_ops nmk_gpio_irq_simple_ops = {
1172 .map = nmk_gpio_irq_map,
1173 .xlate = irq_domain_xlate_twocell,
1174};
1175
Uwe Kleine-Königfd0d67d2010-09-02 16:13:35 +01001176static int __devinit nmk_gpio_probe(struct platform_device *dev)
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001177{
Rabin Vincent3e3c62c2010-03-03 04:52:34 +01001178 struct nmk_gpio_platform_data *pdata = dev->dev.platform_data;
Lee Jones513c27f2012-04-13 15:05:05 +01001179 struct device_node *np = dev->dev.of_node;
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001180 struct nmk_gpio_chip *nmk_chip;
1181 struct gpio_chip *chip;
Rabin Vincent3e3c62c2010-03-03 04:52:34 +01001182 struct resource *res;
Rabin Vincentaf7dc222010-05-06 11:14:17 +01001183 struct clk *clk;
Rabin Vincent33b744b2010-10-14 10:38:03 +05301184 int secondary_irq;
Linus Walleij8d917712012-04-17 10:15:54 +02001185 void __iomem *base;
Rabin Vincent3e3c62c2010-03-03 04:52:34 +01001186 int irq;
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001187 int ret;
1188
Lee Jones513c27f2012-04-13 15:05:05 +01001189 if (!pdata && !np) {
1190 dev_err(&dev->dev, "No platform data or device tree found\n");
Rabin Vincent3e3c62c2010-03-03 04:52:34 +01001191 return -ENODEV;
Lee Jones513c27f2012-04-13 15:05:05 +01001192 }
1193
1194 if (np) {
1195 pdata = kzalloc(sizeof(*pdata), GFP_KERNEL);
1196 if (!pdata)
1197 return -ENOMEM;
1198
1199 if (of_get_property(np, "supports-sleepmode", NULL))
1200 pdata->supports_sleepmode = true;
1201
1202 if (of_property_read_u32(np, "gpio-bank", &dev->id)) {
1203 dev_err(&dev->dev, "gpio-bank property not found\n");
1204 ret = -EINVAL;
Lee Jonesa60b57e2012-04-19 21:36:31 +01001205 goto out;
Lee Jones513c27f2012-04-13 15:05:05 +01001206 }
1207
1208 pdata->first_gpio = dev->id * NMK_GPIO_PER_CHIP;
1209 pdata->num_gpio = NMK_GPIO_PER_CHIP;
1210 }
Rabin Vincent3e3c62c2010-03-03 04:52:34 +01001211
1212 res = platform_get_resource(dev, IORESOURCE_MEM, 0);
1213 if (!res) {
1214 ret = -ENOENT;
1215 goto out;
1216 }
1217
1218 irq = platform_get_irq(dev, 0);
1219 if (irq < 0) {
1220 ret = irq;
1221 goto out;
1222 }
1223
Rabin Vincent33b744b2010-10-14 10:38:03 +05301224 secondary_irq = platform_get_irq(dev, 1);
1225 if (secondary_irq >= 0 && !pdata->get_secondary_status) {
1226 ret = -EINVAL;
1227 goto out;
1228 }
1229
Rabin Vincent3e3c62c2010-03-03 04:52:34 +01001230 if (request_mem_region(res->start, resource_size(res),
1231 dev_name(&dev->dev)) == NULL) {
1232 ret = -EBUSY;
1233 goto out;
1234 }
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001235
Linus Walleij8d917712012-04-17 10:15:54 +02001236 base = ioremap(res->start, resource_size(res));
1237 if (!base) {
1238 ret = -ENOMEM;
1239 goto out_release;
1240 }
1241
Rabin Vincentaf7dc222010-05-06 11:14:17 +01001242 clk = clk_get(&dev->dev, NULL);
1243 if (IS_ERR(clk)) {
1244 ret = PTR_ERR(clk);
Linus Walleij8d917712012-04-17 10:15:54 +02001245 goto out_unmap;
Rabin Vincentaf7dc222010-05-06 11:14:17 +01001246 }
1247
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001248 nmk_chip = kzalloc(sizeof(*nmk_chip), GFP_KERNEL);
1249 if (!nmk_chip) {
1250 ret = -ENOMEM;
Rabin Vincentaf7dc222010-05-06 11:14:17 +01001251 goto out_clk;
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001252 }
Lee Jones513c27f2012-04-13 15:05:05 +01001253
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001254 /*
1255 * The virt address in nmk_chip->addr is in the nomadik register space,
1256 * so we can simply convert the resource address, without remapping
1257 */
Rabin Vincent33b744b2010-10-14 10:38:03 +05301258 nmk_chip->bank = dev->id;
Rabin Vincentaf7dc222010-05-06 11:14:17 +01001259 nmk_chip->clk = clk;
Linus Walleij8d917712012-04-17 10:15:54 +02001260 nmk_chip->addr = base;
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001261 nmk_chip->chip = nmk_gpio_template;
Rabin Vincent3e3c62c2010-03-03 04:52:34 +01001262 nmk_chip->parent_irq = irq;
Rabin Vincent33b744b2010-10-14 10:38:03 +05301263 nmk_chip->secondary_parent_irq = secondary_irq;
1264 nmk_chip->get_secondary_status = pdata->get_secondary_status;
Rabin Vincent01727e62010-12-13 12:02:40 +05301265 nmk_chip->set_ioforce = pdata->set_ioforce;
Linus Walleij33d78642011-06-09 11:08:47 +02001266 nmk_chip->sleepmode = pdata->supports_sleepmode;
Rabin Vincentc0fcb8d2010-03-03 04:48:54 +01001267 spin_lock_init(&nmk_chip->lock);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001268
1269 chip = &nmk_chip->chip;
1270 chip->base = pdata->first_gpio;
Rabin Vincente493e062010-03-18 12:35:22 +05301271 chip->ngpio = pdata->num_gpio;
Rabin Vincent8d568ae2010-12-08 11:07:54 +05301272 chip->label = pdata->name ?: dev_name(&dev->dev);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001273 chip->dev = &dev->dev;
1274 chip->owner = THIS_MODULE;
1275
Rabin Vincentebc61782011-09-28 15:49:11 +05301276 clk_enable(nmk_chip->clk);
1277 nmk_chip->lowemi = readl_relaxed(nmk_chip->addr + NMK_GPIO_LOWEMI);
1278 clk_disable(nmk_chip->clk);
1279
Arnd Bergmann072e82a2012-05-10 13:39:52 +02001280#ifdef CONFIG_OF_GPIO
Lee Jones513c27f2012-04-13 15:05:05 +01001281 chip->of_node = np;
Arnd Bergmann072e82a2012-05-10 13:39:52 +02001282#endif
Lee Jones513c27f2012-04-13 15:05:05 +01001283
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001284 ret = gpiochip_add(&nmk_chip->chip);
1285 if (ret)
1286 goto out_free;
1287
Rabin Vincent01727e62010-12-13 12:02:40 +05301288 BUG_ON(nmk_chip->bank >= ARRAY_SIZE(nmk_gpio_chips));
1289
1290 nmk_gpio_chips[nmk_chip->bank] = nmk_chip;
Lee Jones513c27f2012-04-13 15:05:05 +01001291
Rabin Vincent3e3c62c2010-03-03 04:52:34 +01001292 platform_set_drvdata(dev, nmk_chip);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001293
Lee Jonesa60b57e2012-04-19 21:36:31 +01001294 nmk_chip->domain = irq_domain_add_legacy(np, NMK_GPIO_PER_CHIP,
1295 NOMADIK_GPIO_TO_IRQ(pdata->first_gpio),
1296 0, &nmk_gpio_irq_simple_ops, nmk_chip);
1297 if (!nmk_chip->domain) {
1298 pr_err("%s: Failed to create irqdomain\n", np->full_name);
1299 ret = -ENOSYS;
1300 goto out_free;
1301 }
1302
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001303 nmk_gpio_init_irq(nmk_chip);
1304
Lee Jones513c27f2012-04-13 15:05:05 +01001305 dev_info(&dev->dev, "at address %p\n", nmk_chip->addr);
1306
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001307 return 0;
1308
Rabin Vincent3e3c62c2010-03-03 04:52:34 +01001309out_free:
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001310 kfree(nmk_chip);
Rabin Vincentaf7dc222010-05-06 11:14:17 +01001311out_clk:
1312 clk_disable(clk);
1313 clk_put(clk);
Linus Walleij8d917712012-04-17 10:15:54 +02001314out_unmap:
1315 iounmap(base);
Rabin Vincent3e3c62c2010-03-03 04:52:34 +01001316out_release:
1317 release_mem_region(res->start, resource_size(res));
1318out:
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001319 dev_err(&dev->dev, "Failure %i for GPIO %i-%i\n", ret,
1320 pdata->first_gpio, pdata->first_gpio+31);
Lee Jones513c27f2012-04-13 15:05:05 +01001321 if (np)
1322 kfree(pdata);
1323
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001324 return ret;
1325}
1326
Linus Walleije98ea772012-04-26 23:57:25 +02001327static int nmk_get_groups_cnt(struct pinctrl_dev *pctldev)
1328{
1329 struct nmk_pinctrl *npct = pinctrl_dev_get_drvdata(pctldev);
1330
1331 return npct->soc->ngroups;
1332}
1333
1334static const char *nmk_get_group_name(struct pinctrl_dev *pctldev,
1335 unsigned selector)
1336{
1337 struct nmk_pinctrl *npct = pinctrl_dev_get_drvdata(pctldev);
1338
1339 return npct->soc->groups[selector].name;
1340}
1341
1342static int nmk_get_group_pins(struct pinctrl_dev *pctldev, unsigned selector,
1343 const unsigned **pins,
1344 unsigned *num_pins)
1345{
1346 struct nmk_pinctrl *npct = pinctrl_dev_get_drvdata(pctldev);
1347
1348 *pins = npct->soc->groups[selector].pins;
1349 *num_pins = npct->soc->groups[selector].npins;
1350 return 0;
1351}
1352
Linus Walleij24cbdd72012-05-02 21:28:00 +02001353static struct pinctrl_gpio_range *
1354nmk_match_gpio_range(struct pinctrl_dev *pctldev, unsigned offset)
1355{
1356 struct nmk_pinctrl *npct = pinctrl_dev_get_drvdata(pctldev);
1357 int i;
1358
1359 for (i = 0; i < npct->soc->gpio_num_ranges; i++) {
1360 struct pinctrl_gpio_range *range;
1361
1362 range = &npct->soc->gpio_ranges[i];
1363 if (offset >= range->pin_base &&
1364 offset <= (range->pin_base + range->npins - 1))
1365 return range;
1366 }
1367 return NULL;
1368}
1369
Linus Walleije98ea772012-04-26 23:57:25 +02001370static void nmk_pin_dbg_show(struct pinctrl_dev *pctldev, struct seq_file *s,
1371 unsigned offset)
1372{
Linus Walleij24cbdd72012-05-02 21:28:00 +02001373 struct pinctrl_gpio_range *range;
1374 struct gpio_chip *chip;
1375
1376 range = nmk_match_gpio_range(pctldev, offset);
1377 if (!range || !range->gc) {
1378 seq_printf(s, "invalid pin offset");
1379 return;
1380 }
1381 chip = range->gc;
1382 nmk_gpio_dbg_show_one(s, chip, offset - chip->base, offset);
Linus Walleije98ea772012-04-26 23:57:25 +02001383}
1384
1385static struct pinctrl_ops nmk_pinctrl_ops = {
1386 .get_groups_count = nmk_get_groups_cnt,
1387 .get_group_name = nmk_get_group_name,
1388 .get_group_pins = nmk_get_group_pins,
1389 .pin_dbg_show = nmk_pin_dbg_show,
1390};
1391
Linus Walleijdbfe8ca2012-05-02 22:56:47 +02001392static int nmk_pmx_get_funcs_cnt(struct pinctrl_dev *pctldev)
1393{
1394 struct nmk_pinctrl *npct = pinctrl_dev_get_drvdata(pctldev);
1395
1396 return npct->soc->nfunctions;
1397}
1398
1399static const char *nmk_pmx_get_func_name(struct pinctrl_dev *pctldev,
1400 unsigned function)
1401{
1402 struct nmk_pinctrl *npct = pinctrl_dev_get_drvdata(pctldev);
1403
1404 return npct->soc->functions[function].name;
1405}
1406
1407static int nmk_pmx_get_func_groups(struct pinctrl_dev *pctldev,
1408 unsigned function,
1409 const char * const **groups,
1410 unsigned * const num_groups)
1411{
1412 struct nmk_pinctrl *npct = pinctrl_dev_get_drvdata(pctldev);
1413
1414 *groups = npct->soc->functions[function].groups;
1415 *num_groups = npct->soc->functions[function].ngroups;
1416
1417 return 0;
1418}
1419
1420static int nmk_pmx_enable(struct pinctrl_dev *pctldev, unsigned function,
1421 unsigned group)
1422{
1423 struct nmk_pinctrl *npct = pinctrl_dev_get_drvdata(pctldev);
1424 const struct nmk_pingroup *g;
1425 static unsigned int slpm[NUM_BANKS];
1426 unsigned long flags;
1427 bool glitch;
1428 int ret = -EINVAL;
1429 int i;
1430
1431 g = &npct->soc->groups[group];
1432
1433 if (g->altsetting < 0)
1434 return -EINVAL;
1435
1436 dev_dbg(npct->dev, "enable group %s, %u pins\n", g->name, g->npins);
1437
1438 /* Handle this special glitch on altfunction C */
1439 glitch = (g->altsetting == NMK_GPIO_ALT_C);
1440
1441 if (glitch) {
1442 spin_lock_irqsave(&nmk_gpio_slpm_lock, flags);
1443
1444 /* Initially don't put any pins to sleep when switching */
1445 memset(slpm, 0xff, sizeof(slpm));
1446
1447 /*
1448 * Then mask the pins that need to be sleeping now when we're
1449 * switching to the ALT C function.
1450 */
1451 for (i = 0; i < g->npins; i++)
1452 slpm[g->pins[i] / NMK_GPIO_PER_CHIP] &= ~BIT(g->pins[i]);
1453 nmk_gpio_glitch_slpm_init(slpm);
1454 }
1455
1456 for (i = 0; i < g->npins; i++) {
1457 struct pinctrl_gpio_range *range;
1458 struct nmk_gpio_chip *nmk_chip;
1459 struct gpio_chip *chip;
1460 unsigned bit;
1461
1462 range = nmk_match_gpio_range(pctldev, g->pins[i]);
1463 if (!range) {
1464 dev_err(npct->dev,
1465 "invalid pin offset %d in group %s at index %d\n",
1466 g->pins[i], g->name, i);
1467 goto out_glitch;
1468 }
1469 if (!range->gc) {
1470 dev_err(npct->dev, "GPIO chip missing in range for pin offset %d in group %s at index %d\n",
1471 g->pins[i], g->name, i);
1472 goto out_glitch;
1473 }
1474 chip = range->gc;
1475 nmk_chip = container_of(chip, struct nmk_gpio_chip, chip);
1476 dev_dbg(npct->dev, "setting pin %d to altsetting %d\n", g->pins[i], g->altsetting);
1477
1478 clk_enable(nmk_chip->clk);
1479 bit = g->pins[i] % NMK_GPIO_PER_CHIP;
1480 /*
1481 * If the pin is switching to altfunc, and there was an
1482 * interrupt installed on it which has been lazy disabled,
1483 * actually mask the interrupt to prevent spurious interrupts
1484 * that would occur while the pin is under control of the
1485 * peripheral. Only SKE does this.
1486 */
1487 nmk_gpio_disable_lazy_irq(nmk_chip, bit);
1488
1489 __nmk_gpio_set_mode_safe(nmk_chip, bit, g->altsetting, glitch);
1490 clk_disable(nmk_chip->clk);
1491 }
1492
1493 /* When all pins are successfully reconfigured we get here */
1494 ret = 0;
1495
1496out_glitch:
1497 if (glitch) {
1498 nmk_gpio_glitch_slpm_restore(slpm);
1499 spin_unlock_irqrestore(&nmk_gpio_slpm_lock, flags);
1500 }
1501
1502 return ret;
1503}
1504
1505static void nmk_pmx_disable(struct pinctrl_dev *pctldev,
1506 unsigned function, unsigned group)
1507{
1508 struct nmk_pinctrl *npct = pinctrl_dev_get_drvdata(pctldev);
1509 const struct nmk_pingroup *g;
1510
1511 g = &npct->soc->groups[group];
1512
1513 if (g->altsetting < 0)
1514 return;
1515
1516 /* Poke out the mux, set the pin to some default state? */
1517 dev_dbg(npct->dev, "disable group %s, %u pins\n", g->name, g->npins);
1518}
1519
1520int nmk_gpio_request_enable(struct pinctrl_dev *pctldev,
1521 struct pinctrl_gpio_range *range,
1522 unsigned offset)
1523{
1524 struct nmk_pinctrl *npct = pinctrl_dev_get_drvdata(pctldev);
1525 struct nmk_gpio_chip *nmk_chip;
1526 struct gpio_chip *chip;
1527 unsigned bit;
1528
1529 if (!range) {
1530 dev_err(npct->dev, "invalid range\n");
1531 return -EINVAL;
1532 }
1533 if (!range->gc) {
1534 dev_err(npct->dev, "missing GPIO chip in range\n");
1535 return -EINVAL;
1536 }
1537 chip = range->gc;
1538 nmk_chip = container_of(chip, struct nmk_gpio_chip, chip);
1539
1540 dev_dbg(npct->dev, "enable pin %u as GPIO\n", offset);
1541
1542 clk_enable(nmk_chip->clk);
1543 bit = offset % NMK_GPIO_PER_CHIP;
1544 /* There is no glitch when converting any pin to GPIO */
1545 __nmk_gpio_set_mode(nmk_chip, bit, NMK_GPIO_ALT_GPIO);
1546 clk_disable(nmk_chip->clk);
1547
1548 return 0;
1549}
1550
1551void nmk_gpio_disable_free(struct pinctrl_dev *pctldev,
1552 struct pinctrl_gpio_range *range,
1553 unsigned offset)
1554{
1555 struct nmk_pinctrl *npct = pinctrl_dev_get_drvdata(pctldev);
1556
1557 dev_dbg(npct->dev, "disable pin %u as GPIO\n", offset);
1558 /* Set the pin to some default state, GPIO is usually default */
1559}
1560
1561static struct pinmux_ops nmk_pinmux_ops = {
1562 .get_functions_count = nmk_pmx_get_funcs_cnt,
1563 .get_function_name = nmk_pmx_get_func_name,
1564 .get_function_groups = nmk_pmx_get_func_groups,
1565 .enable = nmk_pmx_enable,
1566 .disable = nmk_pmx_disable,
1567 .gpio_request_enable = nmk_gpio_request_enable,
1568 .gpio_disable_free = nmk_gpio_disable_free,
1569};
1570
Linus Walleije98ea772012-04-26 23:57:25 +02001571static struct pinctrl_desc nmk_pinctrl_desc = {
1572 .name = "pinctrl-nomadik",
1573 .pctlops = &nmk_pinctrl_ops,
Linus Walleijdbfe8ca2012-05-02 22:56:47 +02001574 .pmxops = &nmk_pinmux_ops,
Linus Walleije98ea772012-04-26 23:57:25 +02001575 .owner = THIS_MODULE,
1576};
1577
1578static int __devinit nmk_pinctrl_probe(struct platform_device *pdev)
1579{
1580 const struct platform_device_id *platid = platform_get_device_id(pdev);
1581 struct nmk_pinctrl *npct;
1582 int i;
1583
1584 npct = devm_kzalloc(&pdev->dev, sizeof(*npct), GFP_KERNEL);
1585 if (!npct)
1586 return -ENOMEM;
1587
1588 /* Poke in other ASIC variants here */
1589 if (platid->driver_data == PINCTRL_NMK_DB8500)
1590 nmk_pinctrl_db8500_init(&npct->soc);
1591
1592 /*
1593 * We need all the GPIO drivers to probe FIRST, or we will not be able
1594 * to obtain references to the struct gpio_chip * for them, and we
1595 * need this to proceed.
1596 */
1597 for (i = 0; i < npct->soc->gpio_num_ranges; i++) {
1598 if (!nmk_gpio_chips[i]) {
1599 dev_warn(&pdev->dev, "GPIO chip %d not registered yet\n", i);
1600 devm_kfree(&pdev->dev, npct);
1601 return -EPROBE_DEFER;
1602 }
1603 npct->soc->gpio_ranges[i].gc = &nmk_gpio_chips[i]->chip;
1604 }
1605
1606 nmk_pinctrl_desc.pins = npct->soc->pins;
1607 nmk_pinctrl_desc.npins = npct->soc->npins;
1608 npct->dev = &pdev->dev;
1609 npct->pctl = pinctrl_register(&nmk_pinctrl_desc, &pdev->dev, npct);
1610 if (!npct->pctl) {
1611 dev_err(&pdev->dev, "could not register Nomadik pinctrl driver\n");
1612 return -EINVAL;
1613 }
1614
1615 /* We will handle a range of GPIO pins */
1616 for (i = 0; i < npct->soc->gpio_num_ranges; i++)
1617 pinctrl_add_gpio_range(npct->pctl, &npct->soc->gpio_ranges[i]);
1618
1619 platform_set_drvdata(pdev, npct);
1620 dev_info(&pdev->dev, "initialized Nomadik pin control driver\n");
1621
1622 return 0;
1623}
1624
Lee Jones513c27f2012-04-13 15:05:05 +01001625static const struct of_device_id nmk_gpio_match[] = {
1626 { .compatible = "st,nomadik-gpio", },
1627 {}
1628};
1629
Rabin Vincent3e3c62c2010-03-03 04:52:34 +01001630static struct platform_driver nmk_gpio_driver = {
1631 .driver = {
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001632 .owner = THIS_MODULE,
1633 .name = "gpio",
Lee Jones513c27f2012-04-13 15:05:05 +01001634 .of_match_table = nmk_gpio_match,
Rabin Vincent5317e4d12011-02-10 09:29:53 +05301635 },
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001636 .probe = nmk_gpio_probe,
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001637};
1638
Linus Walleije98ea772012-04-26 23:57:25 +02001639static const struct platform_device_id nmk_pinctrl_id[] = {
1640 { "pinctrl-stn8815", PINCTRL_NMK_STN8815 },
1641 { "pinctrl-db8500", PINCTRL_NMK_DB8500 },
1642};
1643
1644static struct platform_driver nmk_pinctrl_driver = {
1645 .driver = {
1646 .owner = THIS_MODULE,
1647 .name = "pinctrl-nomadik",
1648 },
1649 .probe = nmk_pinctrl_probe,
1650 .id_table = nmk_pinctrl_id,
1651};
1652
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001653static int __init nmk_gpio_init(void)
1654{
Linus Walleije98ea772012-04-26 23:57:25 +02001655 int ret;
1656
1657 ret = platform_driver_register(&nmk_gpio_driver);
1658 if (ret)
1659 return ret;
1660 return platform_driver_register(&nmk_pinctrl_driver);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001661}
1662
Rabin Vincent33f45ea2010-06-02 06:09:52 +01001663core_initcall(nmk_gpio_init);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001664
1665MODULE_AUTHOR("Prafulla WADASKAR and Alessandro Rubini");
1666MODULE_DESCRIPTION("Nomadik GPIO Driver");
1667MODULE_LICENSE("GPL");