blob: 208341fd57d27f9f7dc3ed3df63783bac5a09fd1 [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 Walleijf4b3f522013-11-19 23:21:04 +01007 * Copyright (C) 2011-2013 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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090024#include <linux/slab.h>
Lee Jones855f80c2012-05-26 06:09:29 +010025#include <linux/of_device.h>
Lee Jones32e67ee2013-01-11 15:45:29 +000026#include <linux/of_address.h>
Gabriel Fernandeze32af882012-12-17 15:53:24 +010027#include <linux/pinctrl/machine.h>
Linus Walleije98ea772012-04-26 23:57:25 +020028#include <linux/pinctrl/pinctrl.h>
Linus Walleijdbfe8ca2012-05-02 22:56:47 +020029#include <linux/pinctrl/pinmux.h>
Linus Walleijd41af622012-05-03 15:58:12 +020030#include <linux/pinctrl/pinconf.h>
Linus Walleijdbfe8ca2012-05-02 22:56:47 +020031/* Since we request GPIOs from ourself */
32#include <linux/pinctrl/consumer.h>
Linus Walleije98ea772012-04-26 23:57:25 +020033#include "pinctrl-nomadik.h"
Julien Delacou8d99b322012-12-11 09:17:47 +010034#include "core.h"
Linus Walleije98ea772012-04-26 23:57:25 +020035
Alessandro Rubini2ec1d352009-07-02 15:29:12 +010036/*
37 * The GPIO module in the Nomadik family of Systems-on-Chip is an
38 * AMBA device, managing 32 pins and alternate functions. The logic block
Jonas Aaberg9c66ee62010-10-13 13:14:17 +020039 * is currently used in the Nomadik and ux500.
Alessandro Rubini2ec1d352009-07-02 15:29:12 +010040 *
41 * Symbols in this file are called "nmk_gpio" for "nomadik gpio"
42 */
43
Linus Walleij8d993392013-11-19 23:02:11 +010044/*
45 * pin configurations are represented by 32-bit integers:
46 *
47 * bit 0.. 8 - Pin Number (512 Pins Maximum)
48 * bit 9..10 - Alternate Function Selection
49 * bit 11..12 - Pull up/down state
50 * bit 13 - Sleep mode behaviour
51 * bit 14 - Direction
52 * bit 15 - Value (if output)
53 * bit 16..18 - SLPM pull up/down state
54 * bit 19..20 - SLPM direction
55 * bit 21..22 - SLPM Value (if output)
56 * bit 23..25 - PDIS value (if input)
57 * bit 26 - Gpio mode
58 * bit 27 - Sleep mode
59 *
60 * to facilitate the definition, the following macros are provided
61 *
62 * PIN_CFG_DEFAULT - default config (0):
63 * pull up/down = disabled
64 * sleep mode = input/wakeup
65 * direction = input
66 * value = low
67 * SLPM direction = same as normal
68 * SLPM pull = same as normal
69 * SLPM value = same as normal
70 *
71 * PIN_CFG - default config with alternate function
72 */
73
74typedef unsigned long pin_cfg_t;
75
76#define PIN_NUM_MASK 0x1ff
77#define PIN_NUM(x) ((x) & PIN_NUM_MASK)
78
79#define PIN_ALT_SHIFT 9
80#define PIN_ALT_MASK (0x3 << PIN_ALT_SHIFT)
81#define PIN_ALT(x) (((x) & PIN_ALT_MASK) >> PIN_ALT_SHIFT)
82#define PIN_GPIO (NMK_GPIO_ALT_GPIO << PIN_ALT_SHIFT)
83#define PIN_ALT_A (NMK_GPIO_ALT_A << PIN_ALT_SHIFT)
84#define PIN_ALT_B (NMK_GPIO_ALT_B << PIN_ALT_SHIFT)
85#define PIN_ALT_C (NMK_GPIO_ALT_C << PIN_ALT_SHIFT)
86
87#define PIN_PULL_SHIFT 11
88#define PIN_PULL_MASK (0x3 << PIN_PULL_SHIFT)
89#define PIN_PULL(x) (((x) & PIN_PULL_MASK) >> PIN_PULL_SHIFT)
90#define PIN_PULL_NONE (NMK_GPIO_PULL_NONE << PIN_PULL_SHIFT)
91#define PIN_PULL_UP (NMK_GPIO_PULL_UP << PIN_PULL_SHIFT)
92#define PIN_PULL_DOWN (NMK_GPIO_PULL_DOWN << PIN_PULL_SHIFT)
93
94#define PIN_SLPM_SHIFT 13
95#define PIN_SLPM_MASK (0x1 << PIN_SLPM_SHIFT)
96#define PIN_SLPM(x) (((x) & PIN_SLPM_MASK) >> PIN_SLPM_SHIFT)
97#define PIN_SLPM_MAKE_INPUT (NMK_GPIO_SLPM_INPUT << PIN_SLPM_SHIFT)
98#define PIN_SLPM_NOCHANGE (NMK_GPIO_SLPM_NOCHANGE << PIN_SLPM_SHIFT)
99/* These two replace the above in DB8500v2+ */
100#define PIN_SLPM_WAKEUP_ENABLE (NMK_GPIO_SLPM_WAKEUP_ENABLE << PIN_SLPM_SHIFT)
101#define PIN_SLPM_WAKEUP_DISABLE (NMK_GPIO_SLPM_WAKEUP_DISABLE << PIN_SLPM_SHIFT)
102#define PIN_SLPM_USE_MUX_SETTINGS_IN_SLEEP PIN_SLPM_WAKEUP_DISABLE
103
104#define PIN_SLPM_GPIO PIN_SLPM_WAKEUP_ENABLE /* In SLPM, pin is a gpio */
105#define PIN_SLPM_ALTFUNC PIN_SLPM_WAKEUP_DISABLE /* In SLPM, pin is altfunc */
106
107#define PIN_DIR_SHIFT 14
108#define PIN_DIR_MASK (0x1 << PIN_DIR_SHIFT)
109#define PIN_DIR(x) (((x) & PIN_DIR_MASK) >> PIN_DIR_SHIFT)
110#define PIN_DIR_INPUT (0 << PIN_DIR_SHIFT)
111#define PIN_DIR_OUTPUT (1 << PIN_DIR_SHIFT)
112
113#define PIN_VAL_SHIFT 15
114#define PIN_VAL_MASK (0x1 << PIN_VAL_SHIFT)
115#define PIN_VAL(x) (((x) & PIN_VAL_MASK) >> PIN_VAL_SHIFT)
116#define PIN_VAL_LOW (0 << PIN_VAL_SHIFT)
117#define PIN_VAL_HIGH (1 << PIN_VAL_SHIFT)
118
119#define PIN_SLPM_PULL_SHIFT 16
120#define PIN_SLPM_PULL_MASK (0x7 << PIN_SLPM_PULL_SHIFT)
121#define PIN_SLPM_PULL(x) \
122 (((x) & PIN_SLPM_PULL_MASK) >> PIN_SLPM_PULL_SHIFT)
123#define PIN_SLPM_PULL_NONE \
124 ((1 + NMK_GPIO_PULL_NONE) << PIN_SLPM_PULL_SHIFT)
125#define PIN_SLPM_PULL_UP \
126 ((1 + NMK_GPIO_PULL_UP) << PIN_SLPM_PULL_SHIFT)
127#define PIN_SLPM_PULL_DOWN \
128 ((1 + NMK_GPIO_PULL_DOWN) << PIN_SLPM_PULL_SHIFT)
129
130#define PIN_SLPM_DIR_SHIFT 19
131#define PIN_SLPM_DIR_MASK (0x3 << PIN_SLPM_DIR_SHIFT)
132#define PIN_SLPM_DIR(x) \
133 (((x) & PIN_SLPM_DIR_MASK) >> PIN_SLPM_DIR_SHIFT)
134#define PIN_SLPM_DIR_INPUT ((1 + 0) << PIN_SLPM_DIR_SHIFT)
135#define PIN_SLPM_DIR_OUTPUT ((1 + 1) << PIN_SLPM_DIR_SHIFT)
136
137#define PIN_SLPM_VAL_SHIFT 21
138#define PIN_SLPM_VAL_MASK (0x3 << PIN_SLPM_VAL_SHIFT)
139#define PIN_SLPM_VAL(x) \
140 (((x) & PIN_SLPM_VAL_MASK) >> PIN_SLPM_VAL_SHIFT)
141#define PIN_SLPM_VAL_LOW ((1 + 0) << PIN_SLPM_VAL_SHIFT)
142#define PIN_SLPM_VAL_HIGH ((1 + 1) << PIN_SLPM_VAL_SHIFT)
143
144#define PIN_SLPM_PDIS_SHIFT 23
145#define PIN_SLPM_PDIS_MASK (0x3 << PIN_SLPM_PDIS_SHIFT)
146#define PIN_SLPM_PDIS(x) \
147 (((x) & PIN_SLPM_PDIS_MASK) >> PIN_SLPM_PDIS_SHIFT)
148#define PIN_SLPM_PDIS_NO_CHANGE (0 << PIN_SLPM_PDIS_SHIFT)
149#define PIN_SLPM_PDIS_DISABLED (1 << PIN_SLPM_PDIS_SHIFT)
150#define PIN_SLPM_PDIS_ENABLED (2 << PIN_SLPM_PDIS_SHIFT)
151
152#define PIN_LOWEMI_SHIFT 25
153#define PIN_LOWEMI_MASK (0x1 << PIN_LOWEMI_SHIFT)
154#define PIN_LOWEMI(x) (((x) & PIN_LOWEMI_MASK) >> PIN_LOWEMI_SHIFT)
155#define PIN_LOWEMI_DISABLED (0 << PIN_LOWEMI_SHIFT)
156#define PIN_LOWEMI_ENABLED (1 << PIN_LOWEMI_SHIFT)
157
158#define PIN_GPIOMODE_SHIFT 26
159#define PIN_GPIOMODE_MASK (0x1 << PIN_GPIOMODE_SHIFT)
160#define PIN_GPIOMODE(x) (((x) & PIN_GPIOMODE_MASK) >> PIN_GPIOMODE_SHIFT)
161#define PIN_GPIOMODE_DISABLED (0 << PIN_GPIOMODE_SHIFT)
162#define PIN_GPIOMODE_ENABLED (1 << PIN_GPIOMODE_SHIFT)
163
164#define PIN_SLEEPMODE_SHIFT 27
165#define PIN_SLEEPMODE_MASK (0x1 << PIN_SLEEPMODE_SHIFT)
166#define PIN_SLEEPMODE(x) (((x) & PIN_SLEEPMODE_MASK) >> PIN_SLEEPMODE_SHIFT)
167#define PIN_SLEEPMODE_DISABLED (0 << PIN_SLEEPMODE_SHIFT)
168#define PIN_SLEEPMODE_ENABLED (1 << PIN_SLEEPMODE_SHIFT)
169
170
171/* Shortcuts. Use these instead of separate DIR, PULL, and VAL. */
172#define PIN_INPUT_PULLDOWN (PIN_DIR_INPUT | PIN_PULL_DOWN)
173#define PIN_INPUT_PULLUP (PIN_DIR_INPUT | PIN_PULL_UP)
174#define PIN_INPUT_NOPULL (PIN_DIR_INPUT | PIN_PULL_NONE)
175#define PIN_OUTPUT_LOW (PIN_DIR_OUTPUT | PIN_VAL_LOW)
176#define PIN_OUTPUT_HIGH (PIN_DIR_OUTPUT | PIN_VAL_HIGH)
177
178#define PIN_SLPM_INPUT_PULLDOWN (PIN_SLPM_DIR_INPUT | PIN_SLPM_PULL_DOWN)
179#define PIN_SLPM_INPUT_PULLUP (PIN_SLPM_DIR_INPUT | PIN_SLPM_PULL_UP)
180#define PIN_SLPM_INPUT_NOPULL (PIN_SLPM_DIR_INPUT | PIN_SLPM_PULL_NONE)
181#define PIN_SLPM_OUTPUT_LOW (PIN_SLPM_DIR_OUTPUT | PIN_SLPM_VAL_LOW)
182#define PIN_SLPM_OUTPUT_HIGH (PIN_SLPM_DIR_OUTPUT | PIN_SLPM_VAL_HIGH)
183
184#define PIN_CFG_DEFAULT (0)
185
186#define PIN_CFG(num, alt) \
187 (PIN_CFG_DEFAULT |\
188 (PIN_NUM(num) | PIN_##alt))
189
190#define PIN_CFG_INPUT(num, alt, pull) \
191 (PIN_CFG_DEFAULT |\
192 (PIN_NUM(num) | PIN_##alt | PIN_INPUT_##pull))
193
194#define PIN_CFG_OUTPUT(num, alt, val) \
195 (PIN_CFG_DEFAULT |\
196 (PIN_NUM(num) | PIN_##alt | PIN_OUTPUT_##val))
197
198/*
199 * "nmk_gpio" and "NMK_GPIO" stand for "Nomadik GPIO", leaving
200 * the "gpio" namespace for generic and cross-machine functions
201 */
202
203#define GPIO_BLOCK_SHIFT 5
204#define NMK_GPIO_PER_CHIP (1 << GPIO_BLOCK_SHIFT)
205
206/* Register in the logic block */
207#define NMK_GPIO_DAT 0x00
208#define NMK_GPIO_DATS 0x04
209#define NMK_GPIO_DATC 0x08
210#define NMK_GPIO_PDIS 0x0c
211#define NMK_GPIO_DIR 0x10
212#define NMK_GPIO_DIRS 0x14
213#define NMK_GPIO_DIRC 0x18
214#define NMK_GPIO_SLPC 0x1c
215#define NMK_GPIO_AFSLA 0x20
216#define NMK_GPIO_AFSLB 0x24
217#define NMK_GPIO_LOWEMI 0x28
218
219#define NMK_GPIO_RIMSC 0x40
220#define NMK_GPIO_FIMSC 0x44
221#define NMK_GPIO_IS 0x48
222#define NMK_GPIO_IC 0x4c
223#define NMK_GPIO_RWIMSC 0x50
224#define NMK_GPIO_FWIMSC 0x54
225#define NMK_GPIO_WKS 0x58
226/* These appear in DB8540 and later ASICs */
227#define NMK_GPIO_EDGELEVEL 0x5C
228#define NMK_GPIO_LEVEL 0x60
229
230
231/* Pull up/down values */
232enum nmk_gpio_pull {
233 NMK_GPIO_PULL_NONE,
234 NMK_GPIO_PULL_UP,
235 NMK_GPIO_PULL_DOWN,
236};
237
238/* Sleep mode */
239enum nmk_gpio_slpm {
240 NMK_GPIO_SLPM_INPUT,
241 NMK_GPIO_SLPM_WAKEUP_ENABLE = NMK_GPIO_SLPM_INPUT,
242 NMK_GPIO_SLPM_NOCHANGE,
243 NMK_GPIO_SLPM_WAKEUP_DISABLE = NMK_GPIO_SLPM_NOCHANGE,
244};
245
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100246struct nmk_gpio_chip {
247 struct gpio_chip chip;
248 void __iomem *addr;
Rabin Vincentaf7dc222010-05-06 11:14:17 +0100249 struct clk *clk;
Rabin Vincent33b744b2010-10-14 10:38:03 +0530250 unsigned int bank;
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100251 unsigned int parent_irq;
Linus Walleij194e15b2014-03-21 10:24:42 +0100252 int latent_parent_irq;
253 u32 (*get_latent_status)(unsigned int bank);
Rabin Vincent01727e62010-12-13 12:02:40 +0530254 void (*set_ioforce)(bool enable);
Rabin Vincentc0fcb8d2010-03-03 04:48:54 +0100255 spinlock_t lock;
Linus Walleij33d78642011-06-09 11:08:47 +0200256 bool sleepmode;
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100257 /* Keep track of configured edges */
258 u32 edge_rising;
259 u32 edge_falling;
Rabin Vincentb9df4682011-02-10 11:45:58 +0530260 u32 real_wake;
261 u32 rwimsc;
262 u32 fwimsc;
Rabin Vincent6c12fe82011-05-23 12:13:33 +0530263 u32 rimsc;
264 u32 fimsc;
Rickard Anderssonbc6f5cf2011-05-24 23:07:17 +0200265 u32 pull_up;
Rabin Vincentebc61782011-09-28 15:49:11 +0530266 u32 lowemi;
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100267};
268
Jonas Aabergf1671bf2012-10-25 08:40:42 +0200269/**
270 * struct nmk_pinctrl - state container for the Nomadik pin controller
271 * @dev: containing device pointer
272 * @pctl: corresponding pin controller device
273 * @soc: SoC data for this specific chip
274 * @prcm_base: PRCM register range virtual base
275 */
Linus Walleije98ea772012-04-26 23:57:25 +0200276struct nmk_pinctrl {
277 struct device *dev;
278 struct pinctrl_dev *pctl;
279 const struct nmk_pinctrl_soc_data *soc;
Jonas Aabergf1671bf2012-10-25 08:40:42 +0200280 void __iomem *prcm_base;
Linus Walleije98ea772012-04-26 23:57:25 +0200281};
282
Rabin Vincent01727e62010-12-13 12:02:40 +0530283static struct nmk_gpio_chip *
284nmk_gpio_chips[DIV_ROUND_UP(ARCH_NR_GPIOS, NMK_GPIO_PER_CHIP)];
285
286static DEFINE_SPINLOCK(nmk_gpio_slpm_lock);
287
288#define NUM_BANKS ARRAY_SIZE(nmk_gpio_chips)
289
Rabin Vincent6f9a9742010-06-02 05:50:28 +0100290static void __nmk_gpio_set_mode(struct nmk_gpio_chip *nmk_chip,
291 unsigned offset, int gpio_mode)
292{
293 u32 bit = 1 << offset;
294 u32 afunc, bfunc;
295
296 afunc = readl(nmk_chip->addr + NMK_GPIO_AFSLA) & ~bit;
297 bfunc = readl(nmk_chip->addr + NMK_GPIO_AFSLB) & ~bit;
298 if (gpio_mode & NMK_GPIO_ALT_A)
299 afunc |= bit;
300 if (gpio_mode & NMK_GPIO_ALT_B)
301 bfunc |= bit;
302 writel(afunc, nmk_chip->addr + NMK_GPIO_AFSLA);
303 writel(bfunc, nmk_chip->addr + NMK_GPIO_AFSLB);
304}
305
Rabin Vincent81a3c292010-05-27 12:39:23 +0100306static void __nmk_gpio_set_slpm(struct nmk_gpio_chip *nmk_chip,
307 unsigned offset, enum nmk_gpio_slpm mode)
308{
309 u32 bit = 1 << offset;
310 u32 slpm;
311
312 slpm = readl(nmk_chip->addr + NMK_GPIO_SLPC);
313 if (mode == NMK_GPIO_SLPM_NOCHANGE)
314 slpm |= bit;
315 else
316 slpm &= ~bit;
317 writel(slpm, nmk_chip->addr + NMK_GPIO_SLPC);
318}
319
Rabin Vincent5b327ed2010-05-27 12:29:50 +0100320static void __nmk_gpio_set_pull(struct nmk_gpio_chip *nmk_chip,
321 unsigned offset, enum nmk_gpio_pull pull)
322{
323 u32 bit = 1 << offset;
324 u32 pdis;
325
326 pdis = readl(nmk_chip->addr + NMK_GPIO_PDIS);
Rickard Anderssonbc6f5cf2011-05-24 23:07:17 +0200327 if (pull == NMK_GPIO_PULL_NONE) {
Rabin Vincent5b327ed2010-05-27 12:29:50 +0100328 pdis |= bit;
Rickard Anderssonbc6f5cf2011-05-24 23:07:17 +0200329 nmk_chip->pull_up &= ~bit;
330 } else {
Rabin Vincent5b327ed2010-05-27 12:29:50 +0100331 pdis &= ~bit;
Rickard Anderssonbc6f5cf2011-05-24 23:07:17 +0200332 }
333
Rabin Vincent5b327ed2010-05-27 12:29:50 +0100334 writel(pdis, nmk_chip->addr + NMK_GPIO_PDIS);
335
Rickard Anderssonbc6f5cf2011-05-24 23:07:17 +0200336 if (pull == NMK_GPIO_PULL_UP) {
337 nmk_chip->pull_up |= bit;
Rabin Vincent5b327ed2010-05-27 12:29:50 +0100338 writel(bit, nmk_chip->addr + NMK_GPIO_DATS);
Rickard Anderssonbc6f5cf2011-05-24 23:07:17 +0200339 } else if (pull == NMK_GPIO_PULL_DOWN) {
340 nmk_chip->pull_up &= ~bit;
Rabin Vincent5b327ed2010-05-27 12:29:50 +0100341 writel(bit, nmk_chip->addr + NMK_GPIO_DATC);
Rickard Anderssonbc6f5cf2011-05-24 23:07:17 +0200342 }
Rabin Vincent5b327ed2010-05-27 12:29:50 +0100343}
344
Rabin Vincentebc61782011-09-28 15:49:11 +0530345static void __nmk_gpio_set_lowemi(struct nmk_gpio_chip *nmk_chip,
346 unsigned offset, bool lowemi)
347{
348 u32 bit = BIT(offset);
349 bool enabled = nmk_chip->lowemi & bit;
350
351 if (lowemi == enabled)
352 return;
353
354 if (lowemi)
355 nmk_chip->lowemi |= bit;
356 else
357 nmk_chip->lowemi &= ~bit;
358
359 writel_relaxed(nmk_chip->lowemi,
360 nmk_chip->addr + NMK_GPIO_LOWEMI);
361}
362
Rabin Vincent378be062010-06-02 06:06:29 +0100363static void __nmk_gpio_make_input(struct nmk_gpio_chip *nmk_chip,
364 unsigned offset)
365{
366 writel(1 << offset, nmk_chip->addr + NMK_GPIO_DIRC);
367}
368
Rabin Vincent6720db72010-09-02 11:28:48 +0100369static void __nmk_gpio_set_output(struct nmk_gpio_chip *nmk_chip,
370 unsigned offset, int val)
371{
372 if (val)
373 writel(1 << offset, nmk_chip->addr + NMK_GPIO_DATS);
374 else
375 writel(1 << offset, nmk_chip->addr + NMK_GPIO_DATC);
376}
377
378static void __nmk_gpio_make_output(struct nmk_gpio_chip *nmk_chip,
379 unsigned offset, int val)
380{
381 writel(1 << offset, nmk_chip->addr + NMK_GPIO_DIRS);
382 __nmk_gpio_set_output(nmk_chip, offset, val);
383}
384
Rabin Vincent01727e62010-12-13 12:02:40 +0530385static void __nmk_gpio_set_mode_safe(struct nmk_gpio_chip *nmk_chip,
386 unsigned offset, int gpio_mode,
387 bool glitch)
388{
Rabin Vincent6c12fe82011-05-23 12:13:33 +0530389 u32 rwimsc = nmk_chip->rwimsc;
390 u32 fwimsc = nmk_chip->fwimsc;
Rabin Vincent01727e62010-12-13 12:02:40 +0530391
392 if (glitch && nmk_chip->set_ioforce) {
393 u32 bit = BIT(offset);
394
Rabin Vincent01727e62010-12-13 12:02:40 +0530395 /* Prevent spurious wakeups */
396 writel(rwimsc & ~bit, nmk_chip->addr + NMK_GPIO_RWIMSC);
397 writel(fwimsc & ~bit, nmk_chip->addr + NMK_GPIO_FWIMSC);
398
399 nmk_chip->set_ioforce(true);
400 }
401
402 __nmk_gpio_set_mode(nmk_chip, offset, gpio_mode);
403
404 if (glitch && nmk_chip->set_ioforce) {
405 nmk_chip->set_ioforce(false);
406
407 writel(rwimsc, nmk_chip->addr + NMK_GPIO_RWIMSC);
408 writel(fwimsc, nmk_chip->addr + NMK_GPIO_FWIMSC);
409 }
410}
411
Rabin Vincent6c42ad12011-05-23 12:22:18 +0530412static void
413nmk_gpio_disable_lazy_irq(struct nmk_gpio_chip *nmk_chip, unsigned offset)
414{
415 u32 falling = nmk_chip->fimsc & BIT(offset);
416 u32 rising = nmk_chip->rimsc & BIT(offset);
417 int gpio = nmk_chip->chip.base + offset;
Linus Walleije0bc34a2014-03-25 10:44:09 +0100418 int irq = irq_find_mapping(nmk_chip->chip.irqdomain, offset);
Rabin Vincent6c42ad12011-05-23 12:22:18 +0530419 struct irq_data *d = irq_get_irq_data(irq);
420
421 if (!rising && !falling)
422 return;
423
424 if (!d || !irqd_irq_disabled(d))
425 return;
426
427 if (rising) {
428 nmk_chip->rimsc &= ~BIT(offset);
429 writel_relaxed(nmk_chip->rimsc,
430 nmk_chip->addr + NMK_GPIO_RIMSC);
431 }
432
433 if (falling) {
434 nmk_chip->fimsc &= ~BIT(offset);
435 writel_relaxed(nmk_chip->fimsc,
436 nmk_chip->addr + NMK_GPIO_FIMSC);
437 }
438
439 dev_dbg(nmk_chip->chip.dev, "%d: clearing interrupt mask\n", gpio);
440}
441
Jonas Aabergf1671bf2012-10-25 08:40:42 +0200442static void nmk_write_masked(void __iomem *reg, u32 mask, u32 value)
443{
444 u32 val;
445
446 val = readl(reg);
447 val = ((val & ~mask) | (value & mask));
448 writel(val, reg);
449}
450
Jean-Nicolas Grauxc22df082012-09-27 15:38:50 +0200451static void nmk_prcm_altcx_set_mode(struct nmk_pinctrl *npct,
452 unsigned offset, unsigned alt_num)
453{
454 int i;
455 u16 reg;
456 u8 bit;
457 u8 alt_index;
458 const struct prcm_gpiocr_altcx_pin_desc *pin_desc;
459 const u16 *gpiocr_regs;
460
Fabio Baltieri4ca075d2012-12-18 10:12:11 +0100461 if (!npct->prcm_base)
462 return;
463
Jean-Nicolas Grauxc22df082012-09-27 15:38:50 +0200464 if (alt_num > PRCM_IDX_GPIOCR_ALTC_MAX) {
465 dev_err(npct->dev, "PRCM GPIOCR: alternate-C%i is invalid\n",
466 alt_num);
467 return;
468 }
469
470 for (i = 0 ; i < npct->soc->npins_altcx ; i++) {
471 if (npct->soc->altcx_pins[i].pin == offset)
472 break;
473 }
474 if (i == npct->soc->npins_altcx) {
475 dev_dbg(npct->dev, "PRCM GPIOCR: pin %i is not found\n",
476 offset);
477 return;
478 }
479
480 pin_desc = npct->soc->altcx_pins + i;
481 gpiocr_regs = npct->soc->prcm_gpiocr_registers;
482
483 /*
484 * If alt_num is NULL, just clear current ALTCx selection
485 * to make sure we come back to a pure ALTC selection
486 */
487 if (!alt_num) {
488 for (i = 0 ; i < PRCM_IDX_GPIOCR_ALTC_MAX ; i++) {
489 if (pin_desc->altcx[i].used == true) {
490 reg = gpiocr_regs[pin_desc->altcx[i].reg_index];
491 bit = pin_desc->altcx[i].control_bit;
Jonas Aabergf1671bf2012-10-25 08:40:42 +0200492 if (readl(npct->prcm_base + reg) & BIT(bit)) {
493 nmk_write_masked(npct->prcm_base + reg, BIT(bit), 0);
Jean-Nicolas Grauxc22df082012-09-27 15:38:50 +0200494 dev_dbg(npct->dev,
495 "PRCM GPIOCR: pin %i: alternate-C%i has been disabled\n",
496 offset, i+1);
497 }
498 }
499 }
500 return;
501 }
502
503 alt_index = alt_num - 1;
504 if (pin_desc->altcx[alt_index].used == false) {
505 dev_warn(npct->dev,
506 "PRCM GPIOCR: pin %i: alternate-C%i does not exist\n",
507 offset, alt_num);
508 return;
509 }
510
511 /*
512 * Check if any other ALTCx functions are activated on this pin
513 * and disable it first.
514 */
515 for (i = 0 ; i < PRCM_IDX_GPIOCR_ALTC_MAX ; i++) {
516 if (i == alt_index)
517 continue;
518 if (pin_desc->altcx[i].used == true) {
519 reg = gpiocr_regs[pin_desc->altcx[i].reg_index];
520 bit = pin_desc->altcx[i].control_bit;
Jonas Aabergf1671bf2012-10-25 08:40:42 +0200521 if (readl(npct->prcm_base + reg) & BIT(bit)) {
522 nmk_write_masked(npct->prcm_base + reg, BIT(bit), 0);
Jean-Nicolas Grauxc22df082012-09-27 15:38:50 +0200523 dev_dbg(npct->dev,
524 "PRCM GPIOCR: pin %i: alternate-C%i has been disabled\n",
525 offset, i+1);
526 }
527 }
528 }
529
530 reg = gpiocr_regs[pin_desc->altcx[alt_index].reg_index];
531 bit = pin_desc->altcx[alt_index].control_bit;
532 dev_dbg(npct->dev, "PRCM GPIOCR: pin %i: alternate-C%i has been selected\n",
533 offset, alt_index+1);
Jonas Aabergf1671bf2012-10-25 08:40:42 +0200534 nmk_write_masked(npct->prcm_base + reg, BIT(bit), BIT(bit));
Jean-Nicolas Grauxc22df082012-09-27 15:38:50 +0200535}
536
Rabin Vincent01727e62010-12-13 12:02:40 +0530537/*
538 * Safe sequence used to switch IOs between GPIO and Alternate-C mode:
539 * - Save SLPM registers
540 * - Set SLPM=0 for the IOs you want to switch and others to 1
541 * - Configure the GPIO registers for the IOs that are being switched
542 * - Set IOFORCE=1
543 * - Modify the AFLSA/B registers for the IOs that are being switched
544 * - Set IOFORCE=0
545 * - Restore SLPM registers
546 * - Any spurious wake up event during switch sequence to be ignored and
547 * cleared
548 */
549static void nmk_gpio_glitch_slpm_init(unsigned int *slpm)
550{
551 int i;
552
553 for (i = 0; i < NUM_BANKS; i++) {
554 struct nmk_gpio_chip *chip = nmk_gpio_chips[i];
555 unsigned int temp = slpm[i];
556
557 if (!chip)
558 break;
559
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200560 clk_enable(chip->clk);
561
Rabin Vincent01727e62010-12-13 12:02:40 +0530562 slpm[i] = readl(chip->addr + NMK_GPIO_SLPC);
563 writel(temp, chip->addr + NMK_GPIO_SLPC);
564 }
565}
566
567static void nmk_gpio_glitch_slpm_restore(unsigned int *slpm)
568{
569 int i;
570
571 for (i = 0; i < NUM_BANKS; i++) {
572 struct nmk_gpio_chip *chip = nmk_gpio_chips[i];
573
574 if (!chip)
575 break;
576
577 writel(slpm[i], chip->addr + NMK_GPIO_SLPC);
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200578
579 clk_disable(chip->clk);
Rabin Vincent01727e62010-12-13 12:02:40 +0530580 }
581}
582
Arnd Bergmann0fafd502013-01-25 14:14:30 +0000583static int __maybe_unused nmk_prcm_gpiocr_get_mode(struct pinctrl_dev *pctldev, int gpio)
Jean-Nicolas Graux2249b192012-10-15 09:47:05 +0200584{
585 int i;
586 u16 reg;
587 u8 bit;
588 struct nmk_pinctrl *npct = pinctrl_dev_get_drvdata(pctldev);
589 const struct prcm_gpiocr_altcx_pin_desc *pin_desc;
590 const u16 *gpiocr_regs;
591
Fabio Baltieri4ca075d2012-12-18 10:12:11 +0100592 if (!npct->prcm_base)
593 return NMK_GPIO_ALT_C;
594
Jean-Nicolas Graux2249b192012-10-15 09:47:05 +0200595 for (i = 0; i < npct->soc->npins_altcx; i++) {
596 if (npct->soc->altcx_pins[i].pin == gpio)
597 break;
598 }
599 if (i == npct->soc->npins_altcx)
600 return NMK_GPIO_ALT_C;
601
602 pin_desc = npct->soc->altcx_pins + i;
603 gpiocr_regs = npct->soc->prcm_gpiocr_registers;
604 for (i = 0; i < PRCM_IDX_GPIOCR_ALTC_MAX; i++) {
605 if (pin_desc->altcx[i].used == true) {
606 reg = gpiocr_regs[pin_desc->altcx[i].reg_index];
607 bit = pin_desc->altcx[i].control_bit;
Jonas Aabergf1671bf2012-10-25 08:40:42 +0200608 if (readl(npct->prcm_base + reg) & BIT(bit))
Jean-Nicolas Graux2249b192012-10-15 09:47:05 +0200609 return NMK_GPIO_ALT_C+i+1;
610 }
611 }
612 return NMK_GPIO_ALT_C;
613}
614
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100615int nmk_gpio_get_mode(int gpio)
616{
617 struct nmk_gpio_chip *nmk_chip;
618 u32 afunc, bfunc, bit;
619
Lee Jonesa60b57e2012-04-19 21:36:31 +0100620 nmk_chip = nmk_gpio_chips[gpio / NMK_GPIO_PER_CHIP];
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100621 if (!nmk_chip)
622 return -EINVAL;
623
Lee Jonesa60b57e2012-04-19 21:36:31 +0100624 bit = 1 << (gpio % NMK_GPIO_PER_CHIP);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100625
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200626 clk_enable(nmk_chip->clk);
627
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100628 afunc = readl(nmk_chip->addr + NMK_GPIO_AFSLA) & bit;
629 bfunc = readl(nmk_chip->addr + NMK_GPIO_AFSLB) & bit;
630
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200631 clk_disable(nmk_chip->clk);
632
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100633 return (afunc ? NMK_GPIO_ALT_A : 0) | (bfunc ? NMK_GPIO_ALT_B : 0);
634}
635EXPORT_SYMBOL(nmk_gpio_get_mode);
636
637
638/* IRQ functions */
639static inline int nmk_gpio_get_bitmask(int gpio)
640{
Lee Jonesa60b57e2012-04-19 21:36:31 +0100641 return 1 << (gpio % NMK_GPIO_PER_CHIP);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100642}
643
Lennert Buytenhekf272c002010-11-29 11:16:48 +0100644static void nmk_gpio_irq_ack(struct irq_data *d)
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100645{
Linus Walleije0bc34a2014-03-25 10:44:09 +0100646 struct gpio_chip *chip = irq_data_get_irq_chip_data(d);
647 struct nmk_gpio_chip *nmk_chip = container_of(chip, struct nmk_gpio_chip, chip);
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200648
649 clk_enable(nmk_chip->clk);
Lee Jonesa60b57e2012-04-19 21:36:31 +0100650 writel(nmk_gpio_get_bitmask(d->hwirq), nmk_chip->addr + NMK_GPIO_IC);
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200651 clk_disable(nmk_chip->clk);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100652}
653
Rabin Vincent4d4e20f2010-06-16 06:09:34 +0100654enum nmk_gpio_irq_type {
655 NORMAL,
656 WAKE,
657};
658
Rabin Vincent040e5ec2010-05-06 10:42:42 +0100659static void __nmk_gpio_irq_modify(struct nmk_gpio_chip *nmk_chip,
Rabin Vincent4d4e20f2010-06-16 06:09:34 +0100660 int gpio, enum nmk_gpio_irq_type which,
661 bool enable)
Rabin Vincent040e5ec2010-05-06 10:42:42 +0100662{
663 u32 bitmask = nmk_gpio_get_bitmask(gpio);
Rabin Vincent6c12fe82011-05-23 12:13:33 +0530664 u32 *rimscval;
665 u32 *fimscval;
666 u32 rimscreg;
667 u32 fimscreg;
668
669 if (which == NORMAL) {
670 rimscreg = NMK_GPIO_RIMSC;
671 fimscreg = NMK_GPIO_FIMSC;
672 rimscval = &nmk_chip->rimsc;
673 fimscval = &nmk_chip->fimsc;
674 } else {
675 rimscreg = NMK_GPIO_RWIMSC;
676 fimscreg = NMK_GPIO_FWIMSC;
677 rimscval = &nmk_chip->rwimsc;
678 fimscval = &nmk_chip->fwimsc;
679 }
Rabin Vincent040e5ec2010-05-06 10:42:42 +0100680
681 /* we must individually set/clear the two edges */
682 if (nmk_chip->edge_rising & bitmask) {
Rabin Vincent040e5ec2010-05-06 10:42:42 +0100683 if (enable)
Rabin Vincent6c12fe82011-05-23 12:13:33 +0530684 *rimscval |= bitmask;
Rabin Vincent040e5ec2010-05-06 10:42:42 +0100685 else
Rabin Vincent6c12fe82011-05-23 12:13:33 +0530686 *rimscval &= ~bitmask;
687 writel(*rimscval, nmk_chip->addr + rimscreg);
Rabin Vincent040e5ec2010-05-06 10:42:42 +0100688 }
689 if (nmk_chip->edge_falling & bitmask) {
Rabin Vincent040e5ec2010-05-06 10:42:42 +0100690 if (enable)
Rabin Vincent6c12fe82011-05-23 12:13:33 +0530691 *fimscval |= bitmask;
Rabin Vincent040e5ec2010-05-06 10:42:42 +0100692 else
Rabin Vincent6c12fe82011-05-23 12:13:33 +0530693 *fimscval &= ~bitmask;
694 writel(*fimscval, nmk_chip->addr + fimscreg);
Rabin Vincent040e5ec2010-05-06 10:42:42 +0100695 }
696}
697
Rabin Vincentb9df4682011-02-10 11:45:58 +0530698static void __nmk_gpio_set_wake(struct nmk_gpio_chip *nmk_chip,
699 int gpio, bool on)
700{
Rabin Vincentb982ff02011-04-26 09:03:27 +0530701 /*
702 * Ensure WAKEUP_ENABLE is on. No need to disable it if wakeup is
703 * disabled, since setting SLPM to 1 increases power consumption, and
704 * wakeup is anyhow controlled by the RIMSC and FIMSC registers.
705 */
706 if (nmk_chip->sleepmode && on) {
Linus Walleije85bbc12012-06-12 12:43:06 +0200707 __nmk_gpio_set_slpm(nmk_chip, gpio % NMK_GPIO_PER_CHIP,
Rabin Vincentb982ff02011-04-26 09:03:27 +0530708 NMK_GPIO_SLPM_WAKEUP_ENABLE);
Linus Walleij33d78642011-06-09 11:08:47 +0200709 }
710
Rabin Vincentb9df4682011-02-10 11:45:58 +0530711 __nmk_gpio_irq_modify(nmk_chip, gpio, WAKE, on);
712}
713
714static int nmk_gpio_irq_maskunmask(struct irq_data *d, bool enable)
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100715{
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100716 struct nmk_gpio_chip *nmk_chip;
717 unsigned long flags;
Rabin Vincent040e5ec2010-05-06 10:42:42 +0100718 u32 bitmask;
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100719
Lennert Buytenhekf272c002010-11-29 11:16:48 +0100720 nmk_chip = irq_data_get_irq_chip_data(d);
Lee Jonesa60b57e2012-04-19 21:36:31 +0100721 bitmask = nmk_gpio_get_bitmask(d->hwirq);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100722 if (!nmk_chip)
Rabin Vincent4d4e20f2010-06-16 06:09:34 +0100723 return -EINVAL;
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100724
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200725 clk_enable(nmk_chip->clk);
Rabin Vincentb9df4682011-02-10 11:45:58 +0530726 spin_lock_irqsave(&nmk_gpio_slpm_lock, flags);
727 spin_lock(&nmk_chip->lock);
728
Lee Jonesa60b57e2012-04-19 21:36:31 +0100729 __nmk_gpio_irq_modify(nmk_chip, d->hwirq, NORMAL, enable);
Rabin Vincentb9df4682011-02-10 11:45:58 +0530730
731 if (!(nmk_chip->real_wake & bitmask))
Lee Jonesa60b57e2012-04-19 21:36:31 +0100732 __nmk_gpio_set_wake(nmk_chip, d->hwirq, enable);
Rabin Vincentb9df4682011-02-10 11:45:58 +0530733
734 spin_unlock(&nmk_chip->lock);
735 spin_unlock_irqrestore(&nmk_gpio_slpm_lock, flags);
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200736 clk_disable(nmk_chip->clk);
Rabin Vincent4d4e20f2010-06-16 06:09:34 +0100737
738 return 0;
Rabin Vincent040e5ec2010-05-06 10:42:42 +0100739}
740
Lennert Buytenhekf272c002010-11-29 11:16:48 +0100741static void nmk_gpio_irq_mask(struct irq_data *d)
Rabin Vincent040e5ec2010-05-06 10:42:42 +0100742{
Rabin Vincentb9df4682011-02-10 11:45:58 +0530743 nmk_gpio_irq_maskunmask(d, false);
Rabin Vincent4d4e20f2010-06-16 06:09:34 +0100744}
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100745
Lennert Buytenhekf272c002010-11-29 11:16:48 +0100746static void nmk_gpio_irq_unmask(struct irq_data *d)
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100747{
Rabin Vincentb9df4682011-02-10 11:45:58 +0530748 nmk_gpio_irq_maskunmask(d, true);
Rabin Vincent4d4e20f2010-06-16 06:09:34 +0100749}
750
Lennert Buytenhekf272c002010-11-29 11:16:48 +0100751static int nmk_gpio_irq_set_wake(struct irq_data *d, unsigned int on)
Rabin Vincent4d4e20f2010-06-16 06:09:34 +0100752{
Rabin Vincent7e3f7e52010-09-02 11:28:05 +0100753 struct nmk_gpio_chip *nmk_chip;
754 unsigned long flags;
Rabin Vincentb9df4682011-02-10 11:45:58 +0530755 u32 bitmask;
Rabin Vincent7e3f7e52010-09-02 11:28:05 +0100756
Lennert Buytenhekf272c002010-11-29 11:16:48 +0100757 nmk_chip = irq_data_get_irq_chip_data(d);
Rabin Vincent7e3f7e52010-09-02 11:28:05 +0100758 if (!nmk_chip)
759 return -EINVAL;
Lee Jonesa60b57e2012-04-19 21:36:31 +0100760 bitmask = nmk_gpio_get_bitmask(d->hwirq);
Rabin Vincent7e3f7e52010-09-02 11:28:05 +0100761
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200762 clk_enable(nmk_chip->clk);
Rabin Vincent01727e62010-12-13 12:02:40 +0530763 spin_lock_irqsave(&nmk_gpio_slpm_lock, flags);
764 spin_lock(&nmk_chip->lock);
765
Linus Walleij479a0c72011-09-20 10:50:15 +0200766 if (irqd_irq_disabled(d))
Lee Jonesa60b57e2012-04-19 21:36:31 +0100767 __nmk_gpio_set_wake(nmk_chip, d->hwirq, on);
Rabin Vincentb9df4682011-02-10 11:45:58 +0530768
769 if (on)
770 nmk_chip->real_wake |= bitmask;
771 else
772 nmk_chip->real_wake &= ~bitmask;
Rabin Vincent01727e62010-12-13 12:02:40 +0530773
774 spin_unlock(&nmk_chip->lock);
775 spin_unlock_irqrestore(&nmk_gpio_slpm_lock, flags);
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200776 clk_disable(nmk_chip->clk);
Rabin Vincent7e3f7e52010-09-02 11:28:05 +0100777
778 return 0;
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100779}
780
Lennert Buytenhekf272c002010-11-29 11:16:48 +0100781static int nmk_gpio_irq_set_type(struct irq_data *d, unsigned int type)
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100782{
Linus Walleij479a0c72011-09-20 10:50:15 +0200783 bool enabled = !irqd_irq_disabled(d);
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200784 bool wake = irqd_is_wakeup_set(d);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100785 struct nmk_gpio_chip *nmk_chip;
786 unsigned long flags;
787 u32 bitmask;
788
Lennert Buytenhekf272c002010-11-29 11:16:48 +0100789 nmk_chip = irq_data_get_irq_chip_data(d);
Lee Jonesa60b57e2012-04-19 21:36:31 +0100790 bitmask = nmk_gpio_get_bitmask(d->hwirq);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100791 if (!nmk_chip)
792 return -EINVAL;
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100793 if (type & IRQ_TYPE_LEVEL_HIGH)
794 return -EINVAL;
795 if (type & IRQ_TYPE_LEVEL_LOW)
796 return -EINVAL;
797
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200798 clk_enable(nmk_chip->clk);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100799 spin_lock_irqsave(&nmk_chip->lock, flags);
800
Rabin Vincent7a852d82010-05-06 10:43:55 +0100801 if (enabled)
Lee Jonesa60b57e2012-04-19 21:36:31 +0100802 __nmk_gpio_irq_modify(nmk_chip, d->hwirq, NORMAL, false);
Rabin Vincent4d4e20f2010-06-16 06:09:34 +0100803
Rabin Vincentb9df4682011-02-10 11:45:58 +0530804 if (enabled || wake)
Lee Jonesa60b57e2012-04-19 21:36:31 +0100805 __nmk_gpio_irq_modify(nmk_chip, d->hwirq, WAKE, false);
Rabin Vincent7a852d82010-05-06 10:43:55 +0100806
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100807 nmk_chip->edge_rising &= ~bitmask;
808 if (type & IRQ_TYPE_EDGE_RISING)
809 nmk_chip->edge_rising |= bitmask;
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100810
811 nmk_chip->edge_falling &= ~bitmask;
812 if (type & IRQ_TYPE_EDGE_FALLING)
813 nmk_chip->edge_falling |= bitmask;
Rabin Vincent7a852d82010-05-06 10:43:55 +0100814
815 if (enabled)
Lee Jonesa60b57e2012-04-19 21:36:31 +0100816 __nmk_gpio_irq_modify(nmk_chip, d->hwirq, NORMAL, true);
Rabin Vincent4d4e20f2010-06-16 06:09:34 +0100817
Rabin Vincentb9df4682011-02-10 11:45:58 +0530818 if (enabled || wake)
Lee Jonesa60b57e2012-04-19 21:36:31 +0100819 __nmk_gpio_irq_modify(nmk_chip, d->hwirq, WAKE, true);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100820
821 spin_unlock_irqrestore(&nmk_chip->lock, flags);
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200822 clk_disable(nmk_chip->clk);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100823
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100824 return 0;
825}
826
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200827static unsigned int nmk_gpio_irq_startup(struct irq_data *d)
828{
829 struct nmk_gpio_chip *nmk_chip = irq_data_get_irq_chip_data(d);
830
831 clk_enable(nmk_chip->clk);
832 nmk_gpio_irq_unmask(d);
833 return 0;
834}
835
836static void nmk_gpio_irq_shutdown(struct irq_data *d)
837{
838 struct nmk_gpio_chip *nmk_chip = irq_data_get_irq_chip_data(d);
839
840 nmk_gpio_irq_mask(d);
841 clk_disable(nmk_chip->clk);
842}
843
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100844static struct irq_chip nmk_gpio_irq_chip = {
845 .name = "Nomadik-GPIO",
Lennert Buytenhekf272c002010-11-29 11:16:48 +0100846 .irq_ack = nmk_gpio_irq_ack,
847 .irq_mask = nmk_gpio_irq_mask,
848 .irq_unmask = nmk_gpio_irq_unmask,
849 .irq_set_type = nmk_gpio_irq_set_type,
850 .irq_set_wake = nmk_gpio_irq_set_wake,
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200851 .irq_startup = nmk_gpio_irq_startup,
852 .irq_shutdown = nmk_gpio_irq_shutdown,
Etienne Carriere4921e7452012-08-22 10:44:16 +0200853 .flags = IRQCHIP_MASK_ON_SUSPEND,
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100854};
855
Rabin Vincent33b744b2010-10-14 10:38:03 +0530856static void __nmk_gpio_irq_handler(unsigned int irq, struct irq_desc *desc,
857 u32 status)
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100858{
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100859 struct irq_chip *host_chip = irq_get_chip(irq);
Linus Walleije0bc34a2014-03-25 10:44:09 +0100860 struct gpio_chip *chip = irq_desc_get_handler_data(desc);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100861
Will Deaconadfed152011-02-28 10:12:29 +0000862 chained_irq_enter(host_chip, desc);
Rabin Vincentaaedaa22010-03-03 04:50:27 +0100863
Rabin Vincent33b744b2010-10-14 10:38:03 +0530864 while (status) {
865 int bit = __ffs(status);
866
Linus Walleije0bc34a2014-03-25 10:44:09 +0100867 generic_handle_irq(irq_find_mapping(chip->irqdomain, bit));
Rabin Vincent33b744b2010-10-14 10:38:03 +0530868 status &= ~BIT(bit);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100869 }
Rabin Vincentaaedaa22010-03-03 04:50:27 +0100870
Will Deaconadfed152011-02-28 10:12:29 +0000871 chained_irq_exit(host_chip, desc);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100872}
873
Rabin Vincent33b744b2010-10-14 10:38:03 +0530874static void nmk_gpio_irq_handler(unsigned int irq, struct irq_desc *desc)
875{
Linus Walleije0bc34a2014-03-25 10:44:09 +0100876 struct gpio_chip *chip = irq_desc_get_handler_data(desc);
877 struct nmk_gpio_chip *nmk_chip = container_of(chip, struct nmk_gpio_chip, chip);
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200878 u32 status;
879
Linus Walleije0bc34a2014-03-25 10:44:09 +0100880 pr_err("PLONK IRQ %d\n", irq);
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200881 clk_enable(nmk_chip->clk);
882 status = readl(nmk_chip->addr + NMK_GPIO_IS);
883 clk_disable(nmk_chip->clk);
Rabin Vincent33b744b2010-10-14 10:38:03 +0530884
885 __nmk_gpio_irq_handler(irq, desc, status);
886}
887
Linus Walleij194e15b2014-03-21 10:24:42 +0100888static void nmk_gpio_latent_irq_handler(unsigned int irq,
Rabin Vincent33b744b2010-10-14 10:38:03 +0530889 struct irq_desc *desc)
890{
Linus Walleije0bc34a2014-03-25 10:44:09 +0100891 struct gpio_chip *chip = irq_desc_get_handler_data(desc);
892 struct nmk_gpio_chip *nmk_chip = container_of(chip, struct nmk_gpio_chip, chip);
Linus Walleij194e15b2014-03-21 10:24:42 +0100893 u32 status = nmk_chip->get_latent_status(nmk_chip->bank);
Rabin Vincent33b744b2010-10-14 10:38:03 +0530894
895 __nmk_gpio_irq_handler(irq, desc, status);
896}
897
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100898/* I/O Functions */
Linus Walleijdbfe8ca2012-05-02 22:56:47 +0200899
900static int nmk_gpio_request(struct gpio_chip *chip, unsigned offset)
901{
902 /*
903 * Map back to global GPIO space and request muxing, the direction
904 * parameter does not matter for this controller.
905 */
906 int gpio = chip->base + offset;
907
908 return pinctrl_request_gpio(gpio);
909}
910
911static void nmk_gpio_free(struct gpio_chip *chip, unsigned offset)
912{
913 int gpio = chip->base + offset;
914
915 pinctrl_free_gpio(gpio);
916}
917
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100918static int nmk_gpio_make_input(struct gpio_chip *chip, unsigned offset)
919{
920 struct nmk_gpio_chip *nmk_chip =
921 container_of(chip, struct nmk_gpio_chip, chip);
922
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200923 clk_enable(nmk_chip->clk);
924
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100925 writel(1 << offset, nmk_chip->addr + NMK_GPIO_DIRC);
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200926
927 clk_disable(nmk_chip->clk);
928
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100929 return 0;
930}
931
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100932static int nmk_gpio_get_input(struct gpio_chip *chip, unsigned offset)
933{
934 struct nmk_gpio_chip *nmk_chip =
935 container_of(chip, struct nmk_gpio_chip, chip);
936 u32 bit = 1 << offset;
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200937 int value;
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100938
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200939 clk_enable(nmk_chip->clk);
940
941 value = (readl(nmk_chip->addr + NMK_GPIO_DAT) & bit) != 0;
942
943 clk_disable(nmk_chip->clk);
944
945 return value;
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100946}
947
948static void nmk_gpio_set_output(struct gpio_chip *chip, unsigned offset,
949 int val)
950{
951 struct nmk_gpio_chip *nmk_chip =
952 container_of(chip, struct nmk_gpio_chip, chip);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100953
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200954 clk_enable(nmk_chip->clk);
955
Rabin Vincent6720db72010-09-02 11:28:48 +0100956 __nmk_gpio_set_output(nmk_chip, offset, val);
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200957
958 clk_disable(nmk_chip->clk);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100959}
960
Rabin Vincent6647c6c2010-05-27 12:22:42 +0100961static int nmk_gpio_make_output(struct gpio_chip *chip, unsigned offset,
962 int val)
963{
964 struct nmk_gpio_chip *nmk_chip =
965 container_of(chip, struct nmk_gpio_chip, chip);
966
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200967 clk_enable(nmk_chip->clk);
968
Rabin Vincent6720db72010-09-02 11:28:48 +0100969 __nmk_gpio_make_output(nmk_chip, offset, val);
Rabin Vincent6647c6c2010-05-27 12:22:42 +0100970
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200971 clk_disable(nmk_chip->clk);
972
Rabin Vincent6647c6c2010-05-27 12:22:42 +0100973 return 0;
974}
975
Rabin Vincentd0b543c2010-03-04 17:39:05 +0530976#ifdef CONFIG_DEBUG_FS
977
978#include <linux/seq_file.h>
979
Jean-Nicolas Graux2249b192012-10-15 09:47:05 +0200980static void nmk_gpio_dbg_show_one(struct seq_file *s,
981 struct pinctrl_dev *pctldev, struct gpio_chip *chip,
982 unsigned offset, unsigned gpio)
Rabin Vincentd0b543c2010-03-04 17:39:05 +0530983{
Linus Walleij6f4350a2012-05-02 21:06:13 +0200984 const char *label = gpiochip_is_requested(chip, offset);
Rabin Vincentd0b543c2010-03-04 17:39:05 +0530985 struct nmk_gpio_chip *nmk_chip =
986 container_of(chip, struct nmk_gpio_chip, chip);
Linus Walleij6f4350a2012-05-02 21:06:13 +0200987 int mode;
988 bool is_out;
989 bool pull;
990 u32 bit = 1 << offset;
Rabin Vincentd0b543c2010-03-04 17:39:05 +0530991 const char *modes[] = {
992 [NMK_GPIO_ALT_GPIO] = "gpio",
993 [NMK_GPIO_ALT_A] = "altA",
994 [NMK_GPIO_ALT_B] = "altB",
995 [NMK_GPIO_ALT_C] = "altC",
Jean-Nicolas Graux2249b192012-10-15 09:47:05 +0200996 [NMK_GPIO_ALT_C+1] = "altC1",
997 [NMK_GPIO_ALT_C+2] = "altC2",
998 [NMK_GPIO_ALT_C+3] = "altC3",
999 [NMK_GPIO_ALT_C+4] = "altC4",
Rabin Vincentd0b543c2010-03-04 17:39:05 +05301000 };
1001
Rabin Vincent3c0227d2011-09-20 10:50:03 +02001002 clk_enable(nmk_chip->clk);
Linus Walleij6f4350a2012-05-02 21:06:13 +02001003 is_out = !!(readl(nmk_chip->addr + NMK_GPIO_DIR) & bit);
1004 pull = !(readl(nmk_chip->addr + NMK_GPIO_PDIS) & bit);
1005 mode = nmk_gpio_get_mode(gpio);
Jean-Nicolas Graux2249b192012-10-15 09:47:05 +02001006 if ((mode == NMK_GPIO_ALT_C) && pctldev)
1007 mode = nmk_prcm_gpiocr_get_mode(pctldev, gpio);
Rabin Vincent3c0227d2011-09-20 10:50:03 +02001008
Linus Walleij6f4350a2012-05-02 21:06:13 +02001009 seq_printf(s, " gpio-%-3d (%-20.20s) %s %s %s %s",
1010 gpio, label ?: "(none)",
1011 is_out ? "out" : "in ",
1012 chip->get
1013 ? (chip->get(chip, offset) ? "hi" : "lo")
1014 : "? ",
1015 (mode < 0) ? "unknown" : modes[mode],
1016 pull ? "pull" : "none");
Rabin Vincentd0b543c2010-03-04 17:39:05 +05301017
Linus Walleij47058452013-11-14 19:51:18 +01001018 if (!is_out) {
1019 int irq = gpio_to_irq(gpio);
Linus Walleij6f4350a2012-05-02 21:06:13 +02001020 struct irq_desc *desc = irq_to_desc(irq);
Rabin Vincent8ea72a32011-05-24 23:07:09 +02001021
Linus Walleij6f4350a2012-05-02 21:06:13 +02001022 /* This races with request_irq(), set_irq_type(),
1023 * and set_irq_wake() ... but those are "rare".
1024 */
Linus Walleij47058452013-11-14 19:51:18 +01001025 if (irq > 0 && desc && desc->action) {
Linus Walleij6f4350a2012-05-02 21:06:13 +02001026 char *trigger;
1027 u32 bitmask = nmk_gpio_get_bitmask(gpio);
Rabin Vincent8ea72a32011-05-24 23:07:09 +02001028
Linus Walleij6f4350a2012-05-02 21:06:13 +02001029 if (nmk_chip->edge_rising & bitmask)
1030 trigger = "edge-rising";
1031 else if (nmk_chip->edge_falling & bitmask)
1032 trigger = "edge-falling";
1033 else
1034 trigger = "edge-undefined";
Rabin Vincent8ea72a32011-05-24 23:07:09 +02001035
Linus Walleij6f4350a2012-05-02 21:06:13 +02001036 seq_printf(s, " irq-%d %s%s",
1037 irq, trigger,
1038 irqd_is_wakeup_set(&desc->irq_data)
1039 ? " wakeup" : "");
Rabin Vincent8ea72a32011-05-24 23:07:09 +02001040 }
Rabin Vincentd0b543c2010-03-04 17:39:05 +05301041 }
Rabin Vincent3c0227d2011-09-20 10:50:03 +02001042 clk_disable(nmk_chip->clk);
Rabin Vincentd0b543c2010-03-04 17:39:05 +05301043}
1044
Linus Walleij6f4350a2012-05-02 21:06:13 +02001045static void nmk_gpio_dbg_show(struct seq_file *s, struct gpio_chip *chip)
1046{
1047 unsigned i;
1048 unsigned gpio = chip->base;
1049
1050 for (i = 0; i < chip->ngpio; i++, gpio++) {
Jean-Nicolas Graux2249b192012-10-15 09:47:05 +02001051 nmk_gpio_dbg_show_one(s, NULL, chip, i, gpio);
Linus Walleij6f4350a2012-05-02 21:06:13 +02001052 seq_printf(s, "\n");
1053 }
1054}
1055
Rabin Vincentd0b543c2010-03-04 17:39:05 +05301056#else
Linus Walleij6f4350a2012-05-02 21:06:13 +02001057static inline void nmk_gpio_dbg_show_one(struct seq_file *s,
Jean-Nicolas Graux2249b192012-10-15 09:47:05 +02001058 struct pinctrl_dev *pctldev,
Linus Walleij6f4350a2012-05-02 21:06:13 +02001059 struct gpio_chip *chip,
1060 unsigned offset, unsigned gpio)
1061{
1062}
Rabin Vincentd0b543c2010-03-04 17:39:05 +05301063#define nmk_gpio_dbg_show NULL
1064#endif
1065
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001066/* This structure is replicated for each GPIO block allocated at probe time */
1067static struct gpio_chip nmk_gpio_template = {
Linus Walleijdbfe8ca2012-05-02 22:56:47 +02001068 .request = nmk_gpio_request,
1069 .free = nmk_gpio_free,
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001070 .direction_input = nmk_gpio_make_input,
1071 .get = nmk_gpio_get_input,
1072 .direction_output = nmk_gpio_make_output,
1073 .set = nmk_gpio_set_output,
Rabin Vincentd0b543c2010-03-04 17:39:05 +05301074 .dbg_show = nmk_gpio_dbg_show,
Linus Walleij9fb1f392013-12-04 14:42:46 +01001075 .can_sleep = false,
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001076};
1077
Rabin Vincent3c0227d2011-09-20 10:50:03 +02001078void nmk_gpio_clocks_enable(void)
1079{
1080 int i;
1081
1082 for (i = 0; i < NUM_BANKS; i++) {
1083 struct nmk_gpio_chip *chip = nmk_gpio_chips[i];
1084
1085 if (!chip)
1086 continue;
1087
1088 clk_enable(chip->clk);
1089 }
1090}
1091
1092void nmk_gpio_clocks_disable(void)
1093{
1094 int i;
1095
1096 for (i = 0; i < NUM_BANKS; i++) {
1097 struct nmk_gpio_chip *chip = nmk_gpio_chips[i];
1098
1099 if (!chip)
1100 continue;
1101
1102 clk_disable(chip->clk);
1103 }
1104}
1105
Rabin Vincentb9df4682011-02-10 11:45:58 +05301106/*
1107 * Called from the suspend/resume path to only keep the real wakeup interrupts
1108 * (those that have had set_irq_wake() called on them) as wakeup interrupts,
1109 * and not the rest of the interrupts which we needed to have as wakeups for
1110 * cpuidle.
1111 *
1112 * PM ops are not used since this needs to be done at the end, after all the
1113 * other drivers are done with their suspend callbacks.
1114 */
1115void nmk_gpio_wakeups_suspend(void)
1116{
1117 int i;
1118
1119 for (i = 0; i < NUM_BANKS; i++) {
1120 struct nmk_gpio_chip *chip = nmk_gpio_chips[i];
1121
1122 if (!chip)
1123 break;
1124
Rabin Vincent3c0227d2011-09-20 10:50:03 +02001125 clk_enable(chip->clk);
1126
Rabin Vincentb9df4682011-02-10 11:45:58 +05301127 writel(chip->rwimsc & chip->real_wake,
1128 chip->addr + NMK_GPIO_RWIMSC);
1129 writel(chip->fwimsc & chip->real_wake,
1130 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
1136void nmk_gpio_wakeups_resume(void)
1137{
1138 int i;
1139
1140 for (i = 0; i < NUM_BANKS; i++) {
1141 struct nmk_gpio_chip *chip = nmk_gpio_chips[i];
1142
1143 if (!chip)
1144 break;
1145
Rabin Vincent3c0227d2011-09-20 10:50:03 +02001146 clk_enable(chip->clk);
1147
Rabin Vincentb9df4682011-02-10 11:45:58 +05301148 writel(chip->rwimsc, chip->addr + NMK_GPIO_RWIMSC);
1149 writel(chip->fwimsc, chip->addr + NMK_GPIO_FWIMSC);
1150
Rabin Vincent3c0227d2011-09-20 10:50:03 +02001151 clk_disable(chip->clk);
Rabin Vincentb9df4682011-02-10 11:45:58 +05301152 }
1153}
1154
Rickard Anderssonbc6f5cf2011-05-24 23:07:17 +02001155/*
1156 * Read the pull up/pull down status.
1157 * A bit set in 'pull_up' means that pull up
1158 * is selected if pull is enabled in PDIS register.
1159 * Note: only pull up/down set via this driver can
1160 * be detected due to HW limitations.
1161 */
1162void nmk_gpio_read_pull(int gpio_bank, u32 *pull_up)
1163{
1164 if (gpio_bank < NUM_BANKS) {
1165 struct nmk_gpio_chip *chip = nmk_gpio_chips[gpio_bank];
1166
1167 if (!chip)
1168 return;
1169
1170 *pull_up = chip->pull_up;
1171 }
1172}
1173
Greg Kroah-Hartman150632b2012-12-21 13:10:23 -08001174static int nmk_gpio_probe(struct platform_device *dev)
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001175{
Lee Jones513c27f2012-04-13 15:05:05 +01001176 struct device_node *np = dev->dev.of_node;
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001177 struct nmk_gpio_chip *nmk_chip;
1178 struct gpio_chip *chip;
Rabin Vincent3e3c62c2010-03-03 04:52:34 +01001179 struct resource *res;
Rabin Vincentaf7dc222010-05-06 11:14:17 +01001180 struct clk *clk;
Linus Walleij194e15b2014-03-21 10:24:42 +01001181 int latent_irq;
Linus Walleij8f18bcf2014-03-21 10:40:24 +01001182 bool supports_sleepmode;
Linus Walleij8d917712012-04-17 10:15:54 +02001183 void __iomem *base;
Rabin Vincent3e3c62c2010-03-03 04:52:34 +01001184 int irq;
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001185 int ret;
1186
Linus Walleijf4b3f522013-11-19 23:21:04 +01001187 if (of_get_property(np, "st,supports-sleepmode", NULL))
Linus Walleij8f18bcf2014-03-21 10:40:24 +01001188 supports_sleepmode = true;
1189 else
1190 supports_sleepmode = false;
Linus Walleijf4b3f522013-11-19 23:21:04 +01001191
1192 if (of_property_read_u32(np, "gpio-bank", &dev->id)) {
1193 dev_err(&dev->dev, "gpio-bank property not found\n");
1194 return -EINVAL;
Lee Jones513c27f2012-04-13 15:05:05 +01001195 }
1196
Rabin Vincent3e3c62c2010-03-03 04:52:34 +01001197 irq = platform_get_irq(dev, 0);
Linus Walleij50f690d2013-01-07 14:04:56 +01001198 if (irq < 0)
1199 return irq;
Rabin Vincent3e3c62c2010-03-03 04:52:34 +01001200
Linus Walleij8f18bcf2014-03-21 10:40:24 +01001201 /* It's OK for this IRQ not to be present */
Linus Walleij194e15b2014-03-21 10:24:42 +01001202 latent_irq = platform_get_irq(dev, 1);
Rabin Vincent33b744b2010-10-14 10:38:03 +05301203
Julia Lawall690ebab2013-08-14 11:11:05 +02001204 res = platform_get_resource(dev, IORESOURCE_MEM, 0);
Thierry Reding9e0c1fb2013-01-21 11:09:14 +01001205 base = devm_ioremap_resource(&dev->dev, res);
Linus Torvalds06991c22013-02-21 12:05:51 -08001206 if (IS_ERR(base))
1207 return PTR_ERR(base);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001208
Linus Walleij5e754f32012-07-03 23:05:14 +02001209 clk = devm_clk_get(&dev->dev, NULL);
Linus Walleij50f690d2013-01-07 14:04:56 +01001210 if (IS_ERR(clk))
1211 return PTR_ERR(clk);
Linus Walleijefec3812012-06-06 22:50:41 +02001212 clk_prepare(clk);
Rabin Vincentaf7dc222010-05-06 11:14:17 +01001213
Linus Walleij5e754f32012-07-03 23:05:14 +02001214 nmk_chip = devm_kzalloc(&dev->dev, sizeof(*nmk_chip), GFP_KERNEL);
Linus Walleij50f690d2013-01-07 14:04:56 +01001215 if (!nmk_chip)
1216 return -ENOMEM;
Lee Jones513c27f2012-04-13 15:05:05 +01001217
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001218 /*
1219 * The virt address in nmk_chip->addr is in the nomadik register space,
1220 * so we can simply convert the resource address, without remapping
1221 */
Rabin Vincent33b744b2010-10-14 10:38:03 +05301222 nmk_chip->bank = dev->id;
Rabin Vincentaf7dc222010-05-06 11:14:17 +01001223 nmk_chip->clk = clk;
Linus Walleij8d917712012-04-17 10:15:54 +02001224 nmk_chip->addr = base;
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001225 nmk_chip->chip = nmk_gpio_template;
Rabin Vincent3e3c62c2010-03-03 04:52:34 +01001226 nmk_chip->parent_irq = irq;
Linus Walleij194e15b2014-03-21 10:24:42 +01001227 nmk_chip->latent_parent_irq = latent_irq;
Linus Walleij8f18bcf2014-03-21 10:40:24 +01001228 nmk_chip->sleepmode = supports_sleepmode;
Rabin Vincentc0fcb8d2010-03-03 04:48:54 +01001229 spin_lock_init(&nmk_chip->lock);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001230
1231 chip = &nmk_chip->chip;
Linus Walleij8f18bcf2014-03-21 10:40:24 +01001232 chip->base = dev->id * NMK_GPIO_PER_CHIP;
1233 chip->ngpio = NMK_GPIO_PER_CHIP;
1234 chip->label = dev_name(&dev->dev);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001235 chip->dev = &dev->dev;
1236 chip->owner = THIS_MODULE;
1237
Rabin Vincentebc61782011-09-28 15:49:11 +05301238 clk_enable(nmk_chip->clk);
1239 nmk_chip->lowemi = readl_relaxed(nmk_chip->addr + NMK_GPIO_LOWEMI);
1240 clk_disable(nmk_chip->clk);
Lee Jones513c27f2012-04-13 15:05:05 +01001241 chip->of_node = np;
1242
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001243 ret = gpiochip_add(&nmk_chip->chip);
1244 if (ret)
Linus Walleij50f690d2013-01-07 14:04:56 +01001245 return ret;
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001246
Rabin Vincent01727e62010-12-13 12:02:40 +05301247 BUG_ON(nmk_chip->bank >= ARRAY_SIZE(nmk_gpio_chips));
1248
1249 nmk_gpio_chips[nmk_chip->bank] = nmk_chip;
Lee Jones513c27f2012-04-13 15:05:05 +01001250
Rabin Vincent3e3c62c2010-03-03 04:52:34 +01001251 platform_set_drvdata(dev, nmk_chip);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001252
Linus Walleije0bc34a2014-03-25 10:44:09 +01001253 /*
1254 * Let the generic code handle this edge IRQ, the the chained
1255 * handler will perform the actual work of handling the parent
1256 * interrupt.
1257 */
1258 ret = gpiochip_irqchip_add(&nmk_chip->chip,
1259 &nmk_gpio_irq_chip,
1260 0,
1261 handle_edge_irq,
1262 IRQ_TYPE_EDGE_FALLING);
1263 if (ret) {
1264 dev_err(&dev->dev, "could not add irqchip\n");
Linus Walleij50f690d2013-01-07 14:04:56 +01001265 ret = gpiochip_remove(&nmk_chip->chip);
Linus Walleije0bc34a2014-03-25 10:44:09 +01001266 return -ENODEV;
Lee Jonesa60b57e2012-04-19 21:36:31 +01001267 }
Linus Walleije0bc34a2014-03-25 10:44:09 +01001268 /* Then register the chain on the parent IRQ */
1269 gpiochip_set_chained_irqchip(&nmk_chip->chip,
1270 &nmk_gpio_irq_chip,
1271 nmk_chip->parent_irq,
1272 nmk_gpio_irq_handler);
1273 if (nmk_chip->latent_parent_irq > 0)
1274 gpiochip_set_chained_irqchip(&nmk_chip->chip,
1275 &nmk_gpio_irq_chip,
1276 nmk_chip->latent_parent_irq,
1277 nmk_gpio_latent_irq_handler);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001278
Lee Jones513c27f2012-04-13 15:05:05 +01001279 dev_info(&dev->dev, "at address %p\n", nmk_chip->addr);
1280
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001281 return 0;
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001282}
1283
Linus Walleije98ea772012-04-26 23:57:25 +02001284static int nmk_get_groups_cnt(struct pinctrl_dev *pctldev)
1285{
1286 struct nmk_pinctrl *npct = pinctrl_dev_get_drvdata(pctldev);
1287
1288 return npct->soc->ngroups;
1289}
1290
1291static const char *nmk_get_group_name(struct pinctrl_dev *pctldev,
1292 unsigned selector)
1293{
1294 struct nmk_pinctrl *npct = pinctrl_dev_get_drvdata(pctldev);
1295
1296 return npct->soc->groups[selector].name;
1297}
1298
1299static int nmk_get_group_pins(struct pinctrl_dev *pctldev, unsigned selector,
1300 const unsigned **pins,
1301 unsigned *num_pins)
1302{
1303 struct nmk_pinctrl *npct = pinctrl_dev_get_drvdata(pctldev);
1304
1305 *pins = npct->soc->groups[selector].pins;
1306 *num_pins = npct->soc->groups[selector].npins;
1307 return 0;
1308}
1309
Linus Walleij24cbdd72012-05-02 21:28:00 +02001310static struct pinctrl_gpio_range *
1311nmk_match_gpio_range(struct pinctrl_dev *pctldev, unsigned offset)
1312{
1313 struct nmk_pinctrl *npct = pinctrl_dev_get_drvdata(pctldev);
1314 int i;
1315
1316 for (i = 0; i < npct->soc->gpio_num_ranges; i++) {
1317 struct pinctrl_gpio_range *range;
1318
1319 range = &npct->soc->gpio_ranges[i];
1320 if (offset >= range->pin_base &&
1321 offset <= (range->pin_base + range->npins - 1))
1322 return range;
1323 }
1324 return NULL;
1325}
1326
Linus Walleije98ea772012-04-26 23:57:25 +02001327static void nmk_pin_dbg_show(struct pinctrl_dev *pctldev, struct seq_file *s,
1328 unsigned offset)
1329{
Linus Walleij24cbdd72012-05-02 21:28:00 +02001330 struct pinctrl_gpio_range *range;
1331 struct gpio_chip *chip;
1332
1333 range = nmk_match_gpio_range(pctldev, offset);
1334 if (!range || !range->gc) {
1335 seq_printf(s, "invalid pin offset");
1336 return;
1337 }
1338 chip = range->gc;
Jean-Nicolas Graux2249b192012-10-15 09:47:05 +02001339 nmk_gpio_dbg_show_one(s, pctldev, chip, offset - chip->base, offset);
Linus Walleije98ea772012-04-26 23:57:25 +02001340}
1341
Gabriel Fernandeze32af882012-12-17 15:53:24 +01001342static void nmk_pinctrl_dt_free_map(struct pinctrl_dev *pctldev,
1343 struct pinctrl_map *map, unsigned num_maps)
1344{
1345 int i;
1346
1347 for (i = 0; i < num_maps; i++)
1348 if (map[i].type == PIN_MAP_TYPE_CONFIGS_PIN)
1349 kfree(map[i].data.configs.configs);
1350 kfree(map);
1351}
1352
1353static int nmk_dt_reserve_map(struct pinctrl_map **map, unsigned *reserved_maps,
1354 unsigned *num_maps, unsigned reserve)
1355{
1356 unsigned old_num = *reserved_maps;
1357 unsigned new_num = *num_maps + reserve;
1358 struct pinctrl_map *new_map;
1359
1360 if (old_num >= new_num)
1361 return 0;
1362
1363 new_map = krealloc(*map, sizeof(*new_map) * new_num, GFP_KERNEL);
1364 if (!new_map)
1365 return -ENOMEM;
1366
1367 memset(new_map + old_num, 0, (new_num - old_num) * sizeof(*new_map));
1368
1369 *map = new_map;
1370 *reserved_maps = new_num;
1371
1372 return 0;
1373}
1374
1375static int nmk_dt_add_map_mux(struct pinctrl_map **map, unsigned *reserved_maps,
1376 unsigned *num_maps, const char *group,
1377 const char *function)
1378{
1379 if (*num_maps == *reserved_maps)
1380 return -ENOSPC;
1381
1382 (*map)[*num_maps].type = PIN_MAP_TYPE_MUX_GROUP;
1383 (*map)[*num_maps].data.mux.group = group;
1384 (*map)[*num_maps].data.mux.function = function;
1385 (*num_maps)++;
1386
1387 return 0;
1388}
1389
1390static int nmk_dt_add_map_configs(struct pinctrl_map **map,
1391 unsigned *reserved_maps,
1392 unsigned *num_maps, const char *group,
1393 unsigned long *configs, unsigned num_configs)
1394{
1395 unsigned long *dup_configs;
1396
1397 if (*num_maps == *reserved_maps)
1398 return -ENOSPC;
1399
1400 dup_configs = kmemdup(configs, num_configs * sizeof(*dup_configs),
1401 GFP_KERNEL);
1402 if (!dup_configs)
1403 return -ENOMEM;
1404
1405 (*map)[*num_maps].type = PIN_MAP_TYPE_CONFIGS_PIN;
1406
1407 (*map)[*num_maps].data.configs.group_or_pin = group;
1408 (*map)[*num_maps].data.configs.configs = dup_configs;
1409 (*map)[*num_maps].data.configs.num_configs = num_configs;
1410 (*num_maps)++;
1411
1412 return 0;
1413}
1414
Sachin Kamat87ff9342013-03-14 17:24:44 +05301415#define NMK_CONFIG_PIN(x, y) { .property = x, .config = y, }
1416#define NMK_CONFIG_PIN_ARRAY(x, y) { .property = x, .choice = y, \
Gabriel Fernandeze32af882012-12-17 15:53:24 +01001417 .size = ARRAY_SIZE(y), }
1418
1419static const unsigned long nmk_pin_input_modes[] = {
1420 PIN_INPUT_NOPULL,
1421 PIN_INPUT_PULLUP,
1422 PIN_INPUT_PULLDOWN,
1423};
1424
1425static const unsigned long nmk_pin_output_modes[] = {
1426 PIN_OUTPUT_LOW,
1427 PIN_OUTPUT_HIGH,
1428 PIN_DIR_OUTPUT,
1429};
1430
1431static const unsigned long nmk_pin_sleep_modes[] = {
1432 PIN_SLEEPMODE_DISABLED,
1433 PIN_SLEEPMODE_ENABLED,
1434};
1435
1436static const unsigned long nmk_pin_sleep_input_modes[] = {
1437 PIN_SLPM_INPUT_NOPULL,
1438 PIN_SLPM_INPUT_PULLUP,
1439 PIN_SLPM_INPUT_PULLDOWN,
1440 PIN_SLPM_DIR_INPUT,
1441};
1442
1443static const unsigned long nmk_pin_sleep_output_modes[] = {
1444 PIN_SLPM_OUTPUT_LOW,
1445 PIN_SLPM_OUTPUT_HIGH,
1446 PIN_SLPM_DIR_OUTPUT,
1447};
1448
1449static const unsigned long nmk_pin_sleep_wakeup_modes[] = {
1450 PIN_SLPM_WAKEUP_DISABLE,
1451 PIN_SLPM_WAKEUP_ENABLE,
1452};
1453
1454static const unsigned long nmk_pin_gpio_modes[] = {
1455 PIN_GPIOMODE_DISABLED,
1456 PIN_GPIOMODE_ENABLED,
1457};
1458
1459static const unsigned long nmk_pin_sleep_pdis_modes[] = {
1460 PIN_SLPM_PDIS_DISABLED,
1461 PIN_SLPM_PDIS_ENABLED,
1462};
1463
1464struct nmk_cfg_param {
1465 const char *property;
1466 unsigned long config;
1467 const unsigned long *choice;
1468 int size;
1469};
1470
1471static const struct nmk_cfg_param nmk_cfg_params[] = {
1472 NMK_CONFIG_PIN_ARRAY("ste,input", nmk_pin_input_modes),
1473 NMK_CONFIG_PIN_ARRAY("ste,output", nmk_pin_output_modes),
1474 NMK_CONFIG_PIN_ARRAY("ste,sleep", nmk_pin_sleep_modes),
1475 NMK_CONFIG_PIN_ARRAY("ste,sleep-input", nmk_pin_sleep_input_modes),
1476 NMK_CONFIG_PIN_ARRAY("ste,sleep-output", nmk_pin_sleep_output_modes),
1477 NMK_CONFIG_PIN_ARRAY("ste,sleep-wakeup", nmk_pin_sleep_wakeup_modes),
1478 NMK_CONFIG_PIN_ARRAY("ste,gpio", nmk_pin_gpio_modes),
1479 NMK_CONFIG_PIN_ARRAY("ste,sleep-pull-disable", nmk_pin_sleep_pdis_modes),
1480};
1481
1482static int nmk_dt_pin_config(int index, int val, unsigned long *config)
1483{
1484 int ret = 0;
1485
1486 if (nmk_cfg_params[index].choice == NULL)
1487 *config = nmk_cfg_params[index].config;
1488 else {
1489 /* test if out of range */
1490 if (val < nmk_cfg_params[index].size) {
1491 *config = nmk_cfg_params[index].config |
1492 nmk_cfg_params[index].choice[val];
1493 }
1494 }
1495 return ret;
1496}
1497
1498static const char *nmk_find_pin_name(struct pinctrl_dev *pctldev, const char *pin_name)
1499{
1500 int i, pin_number;
1501 struct nmk_pinctrl *npct = pinctrl_dev_get_drvdata(pctldev);
1502
1503 if (sscanf((char *)pin_name, "GPIO%d", &pin_number) == 1)
1504 for (i = 0; i < npct->soc->npins; i++)
1505 if (npct->soc->pins[i].number == pin_number)
1506 return npct->soc->pins[i].name;
1507 return NULL;
1508}
1509
1510static bool nmk_pinctrl_dt_get_config(struct device_node *np,
1511 unsigned long *configs)
1512{
1513 bool has_config = 0;
1514 unsigned long cfg = 0;
1515 int i, val, ret;
1516
1517 for (i = 0; i < ARRAY_SIZE(nmk_cfg_params); i++) {
1518 ret = of_property_read_u32(np,
1519 nmk_cfg_params[i].property, &val);
1520 if (ret != -EINVAL) {
1521 if (nmk_dt_pin_config(i, val, &cfg) == 0) {
1522 *configs |= cfg;
1523 has_config = 1;
1524 }
1525 }
1526 }
1527
1528 return has_config;
1529}
1530
Sachin Kamat2230a36e2013-06-18 14:34:25 +05301531static int nmk_pinctrl_dt_subnode_to_map(struct pinctrl_dev *pctldev,
Gabriel Fernandeze32af882012-12-17 15:53:24 +01001532 struct device_node *np,
1533 struct pinctrl_map **map,
1534 unsigned *reserved_maps,
1535 unsigned *num_maps)
1536{
1537 int ret;
1538 const char *function = NULL;
1539 unsigned long configs = 0;
1540 bool has_config = 0;
1541 unsigned reserve = 0;
1542 struct property *prop;
1543 const char *group, *gpio_name;
1544 struct device_node *np_config;
1545
1546 ret = of_property_read_string(np, "ste,function", &function);
1547 if (ret >= 0)
1548 reserve = 1;
1549
1550 has_config = nmk_pinctrl_dt_get_config(np, &configs);
1551
1552 np_config = of_parse_phandle(np, "ste,config", 0);
1553 if (np_config)
1554 has_config |= nmk_pinctrl_dt_get_config(np_config, &configs);
1555
1556 ret = of_property_count_strings(np, "ste,pins");
1557 if (ret < 0)
1558 goto exit;
1559
1560 if (has_config)
1561 reserve++;
1562
1563 reserve *= ret;
1564
1565 ret = nmk_dt_reserve_map(map, reserved_maps, num_maps, reserve);
1566 if (ret < 0)
1567 goto exit;
1568
1569 of_property_for_each_string(np, "ste,pins", prop, group) {
1570 if (function) {
1571 ret = nmk_dt_add_map_mux(map, reserved_maps, num_maps,
1572 group, function);
1573 if (ret < 0)
1574 goto exit;
1575 }
1576 if (has_config) {
1577 gpio_name = nmk_find_pin_name(pctldev, group);
1578
1579 ret = nmk_dt_add_map_configs(map, reserved_maps, num_maps,
1580 gpio_name, &configs, 1);
1581 if (ret < 0)
1582 goto exit;
1583 }
1584
1585 }
1586exit:
1587 return ret;
1588}
1589
Sachin Kamat2230a36e2013-06-18 14:34:25 +05301590static int nmk_pinctrl_dt_node_to_map(struct pinctrl_dev *pctldev,
Gabriel Fernandeze32af882012-12-17 15:53:24 +01001591 struct device_node *np_config,
1592 struct pinctrl_map **map, unsigned *num_maps)
1593{
1594 unsigned reserved_maps;
1595 struct device_node *np;
1596 int ret;
1597
1598 reserved_maps = 0;
1599 *map = NULL;
1600 *num_maps = 0;
1601
1602 for_each_child_of_node(np_config, np) {
1603 ret = nmk_pinctrl_dt_subnode_to_map(pctldev, np, map,
1604 &reserved_maps, num_maps);
1605 if (ret < 0) {
1606 nmk_pinctrl_dt_free_map(pctldev, *map, *num_maps);
1607 return ret;
1608 }
1609 }
1610
1611 return 0;
1612}
1613
Laurent Pinchart022ab142013-02-16 10:25:07 +01001614static const struct pinctrl_ops nmk_pinctrl_ops = {
Linus Walleije98ea772012-04-26 23:57:25 +02001615 .get_groups_count = nmk_get_groups_cnt,
1616 .get_group_name = nmk_get_group_name,
1617 .get_group_pins = nmk_get_group_pins,
1618 .pin_dbg_show = nmk_pin_dbg_show,
Gabriel Fernandeze32af882012-12-17 15:53:24 +01001619 .dt_node_to_map = nmk_pinctrl_dt_node_to_map,
1620 .dt_free_map = nmk_pinctrl_dt_free_map,
Linus Walleije98ea772012-04-26 23:57:25 +02001621};
1622
Linus Walleijdbfe8ca2012-05-02 22:56:47 +02001623static int nmk_pmx_get_funcs_cnt(struct pinctrl_dev *pctldev)
1624{
1625 struct nmk_pinctrl *npct = pinctrl_dev_get_drvdata(pctldev);
1626
1627 return npct->soc->nfunctions;
1628}
1629
1630static const char *nmk_pmx_get_func_name(struct pinctrl_dev *pctldev,
1631 unsigned function)
1632{
1633 struct nmk_pinctrl *npct = pinctrl_dev_get_drvdata(pctldev);
1634
1635 return npct->soc->functions[function].name;
1636}
1637
1638static int nmk_pmx_get_func_groups(struct pinctrl_dev *pctldev,
1639 unsigned function,
1640 const char * const **groups,
1641 unsigned * const num_groups)
1642{
1643 struct nmk_pinctrl *npct = pinctrl_dev_get_drvdata(pctldev);
1644
1645 *groups = npct->soc->functions[function].groups;
1646 *num_groups = npct->soc->functions[function].ngroups;
1647
1648 return 0;
1649}
1650
1651static int nmk_pmx_enable(struct pinctrl_dev *pctldev, unsigned function,
1652 unsigned group)
1653{
1654 struct nmk_pinctrl *npct = pinctrl_dev_get_drvdata(pctldev);
1655 const struct nmk_pingroup *g;
1656 static unsigned int slpm[NUM_BANKS];
Linus Walleijf84b4172013-08-15 21:26:26 +02001657 unsigned long flags = 0;
Linus Walleijdbfe8ca2012-05-02 22:56:47 +02001658 bool glitch;
1659 int ret = -EINVAL;
1660 int i;
1661
1662 g = &npct->soc->groups[group];
1663
1664 if (g->altsetting < 0)
1665 return -EINVAL;
1666
1667 dev_dbg(npct->dev, "enable group %s, %u pins\n", g->name, g->npins);
1668
Linus Walleijdaf73172012-05-22 11:46:45 +02001669 /*
1670 * If we're setting altfunc C by setting both AFSLA and AFSLB to 1,
1671 * we may pass through an undesired state. In this case we take
1672 * some extra care.
1673 *
1674 * Safe sequence used to switch IOs between GPIO and Alternate-C mode:
1675 * - Save SLPM registers (since we have a shadow register in the
1676 * nmk_chip we're using that as backup)
1677 * - Set SLPM=0 for the IOs you want to switch and others to 1
1678 * - Configure the GPIO registers for the IOs that are being switched
1679 * - Set IOFORCE=1
1680 * - Modify the AFLSA/B registers for the IOs that are being switched
1681 * - Set IOFORCE=0
1682 * - Restore SLPM registers
1683 * - Any spurious wake up event during switch sequence to be ignored
1684 * and cleared
1685 *
1686 * We REALLY need to save ALL slpm registers, because the external
1687 * IOFORCE will switch *all* ports to their sleepmode setting to as
1688 * to avoid glitches. (Not just one port!)
1689 */
Jean-Nicolas Grauxc22df082012-09-27 15:38:50 +02001690 glitch = ((g->altsetting & NMK_GPIO_ALT_C) == NMK_GPIO_ALT_C);
Linus Walleijdbfe8ca2012-05-02 22:56:47 +02001691
1692 if (glitch) {
1693 spin_lock_irqsave(&nmk_gpio_slpm_lock, flags);
1694
1695 /* Initially don't put any pins to sleep when switching */
1696 memset(slpm, 0xff, sizeof(slpm));
1697
1698 /*
1699 * Then mask the pins that need to be sleeping now when we're
1700 * switching to the ALT C function.
1701 */
1702 for (i = 0; i < g->npins; i++)
1703 slpm[g->pins[i] / NMK_GPIO_PER_CHIP] &= ~BIT(g->pins[i]);
1704 nmk_gpio_glitch_slpm_init(slpm);
1705 }
1706
1707 for (i = 0; i < g->npins; i++) {
1708 struct pinctrl_gpio_range *range;
1709 struct nmk_gpio_chip *nmk_chip;
1710 struct gpio_chip *chip;
1711 unsigned bit;
1712
1713 range = nmk_match_gpio_range(pctldev, g->pins[i]);
1714 if (!range) {
1715 dev_err(npct->dev,
1716 "invalid pin offset %d in group %s at index %d\n",
1717 g->pins[i], g->name, i);
1718 goto out_glitch;
1719 }
1720 if (!range->gc) {
1721 dev_err(npct->dev, "GPIO chip missing in range for pin offset %d in group %s at index %d\n",
1722 g->pins[i], g->name, i);
1723 goto out_glitch;
1724 }
1725 chip = range->gc;
1726 nmk_chip = container_of(chip, struct nmk_gpio_chip, chip);
1727 dev_dbg(npct->dev, "setting pin %d to altsetting %d\n", g->pins[i], g->altsetting);
1728
1729 clk_enable(nmk_chip->clk);
1730 bit = g->pins[i] % NMK_GPIO_PER_CHIP;
1731 /*
1732 * If the pin is switching to altfunc, and there was an
1733 * interrupt installed on it which has been lazy disabled,
1734 * actually mask the interrupt to prevent spurious interrupts
1735 * that would occur while the pin is under control of the
1736 * peripheral. Only SKE does this.
1737 */
1738 nmk_gpio_disable_lazy_irq(nmk_chip, bit);
1739
Jean-Nicolas Grauxc22df082012-09-27 15:38:50 +02001740 __nmk_gpio_set_mode_safe(nmk_chip, bit,
1741 (g->altsetting & NMK_GPIO_ALT_C), glitch);
Linus Walleijdbfe8ca2012-05-02 22:56:47 +02001742 clk_disable(nmk_chip->clk);
Jean-Nicolas Grauxc22df082012-09-27 15:38:50 +02001743
1744 /*
1745 * Call PRCM GPIOCR config function in case ALTC
1746 * has been selected:
1747 * - If selection is a ALTCx, some bits in PRCM GPIOCR registers
1748 * must be set.
1749 * - If selection is pure ALTC and previous selection was ALTCx,
1750 * then some bits in PRCM GPIOCR registers must be cleared.
1751 */
1752 if ((g->altsetting & NMK_GPIO_ALT_C) == NMK_GPIO_ALT_C)
1753 nmk_prcm_altcx_set_mode(npct, g->pins[i],
1754 g->altsetting >> NMK_GPIO_ALT_CX_SHIFT);
Linus Walleijdbfe8ca2012-05-02 22:56:47 +02001755 }
1756
1757 /* When all pins are successfully reconfigured we get here */
1758 ret = 0;
1759
1760out_glitch:
1761 if (glitch) {
1762 nmk_gpio_glitch_slpm_restore(slpm);
1763 spin_unlock_irqrestore(&nmk_gpio_slpm_lock, flags);
1764 }
1765
1766 return ret;
1767}
1768
1769static void nmk_pmx_disable(struct pinctrl_dev *pctldev,
1770 unsigned function, unsigned group)
1771{
1772 struct nmk_pinctrl *npct = pinctrl_dev_get_drvdata(pctldev);
1773 const struct nmk_pingroup *g;
1774
1775 g = &npct->soc->groups[group];
1776
1777 if (g->altsetting < 0)
1778 return;
1779
1780 /* Poke out the mux, set the pin to some default state? */
1781 dev_dbg(npct->dev, "disable group %s, %u pins\n", g->name, g->npins);
1782}
1783
Axel Lin5212d092012-11-16 00:01:35 +08001784static int nmk_gpio_request_enable(struct pinctrl_dev *pctldev,
1785 struct pinctrl_gpio_range *range,
1786 unsigned offset)
Linus Walleijdbfe8ca2012-05-02 22:56:47 +02001787{
1788 struct nmk_pinctrl *npct = pinctrl_dev_get_drvdata(pctldev);
1789 struct nmk_gpio_chip *nmk_chip;
1790 struct gpio_chip *chip;
1791 unsigned bit;
1792
1793 if (!range) {
1794 dev_err(npct->dev, "invalid range\n");
1795 return -EINVAL;
1796 }
1797 if (!range->gc) {
1798 dev_err(npct->dev, "missing GPIO chip in range\n");
1799 return -EINVAL;
1800 }
1801 chip = range->gc;
1802 nmk_chip = container_of(chip, struct nmk_gpio_chip, chip);
1803
1804 dev_dbg(npct->dev, "enable pin %u as GPIO\n", offset);
1805
1806 clk_enable(nmk_chip->clk);
1807 bit = offset % NMK_GPIO_PER_CHIP;
1808 /* There is no glitch when converting any pin to GPIO */
1809 __nmk_gpio_set_mode(nmk_chip, bit, NMK_GPIO_ALT_GPIO);
1810 clk_disable(nmk_chip->clk);
1811
1812 return 0;
1813}
1814
Axel Lin5212d092012-11-16 00:01:35 +08001815static void nmk_gpio_disable_free(struct pinctrl_dev *pctldev,
1816 struct pinctrl_gpio_range *range,
1817 unsigned offset)
Linus Walleijdbfe8ca2012-05-02 22:56:47 +02001818{
1819 struct nmk_pinctrl *npct = pinctrl_dev_get_drvdata(pctldev);
1820
1821 dev_dbg(npct->dev, "disable pin %u as GPIO\n", offset);
1822 /* Set the pin to some default state, GPIO is usually default */
1823}
1824
Laurent Pinchart022ab142013-02-16 10:25:07 +01001825static const struct pinmux_ops nmk_pinmux_ops = {
Linus Walleijdbfe8ca2012-05-02 22:56:47 +02001826 .get_functions_count = nmk_pmx_get_funcs_cnt,
1827 .get_function_name = nmk_pmx_get_func_name,
1828 .get_function_groups = nmk_pmx_get_func_groups,
1829 .enable = nmk_pmx_enable,
1830 .disable = nmk_pmx_disable,
1831 .gpio_request_enable = nmk_gpio_request_enable,
1832 .gpio_disable_free = nmk_gpio_disable_free,
1833};
1834
Axel Lin5212d092012-11-16 00:01:35 +08001835static int nmk_pin_config_get(struct pinctrl_dev *pctldev, unsigned pin,
1836 unsigned long *config)
Linus Walleijd41af622012-05-03 15:58:12 +02001837{
1838 /* Not implemented */
1839 return -EINVAL;
1840}
1841
Axel Lin5212d092012-11-16 00:01:35 +08001842static int nmk_pin_config_set(struct pinctrl_dev *pctldev, unsigned pin,
Sherman Yin03b054e2013-08-27 11:32:12 -07001843 unsigned long *configs, unsigned num_configs)
Linus Walleijd41af622012-05-03 15:58:12 +02001844{
1845 static const char *pullnames[] = {
1846 [NMK_GPIO_PULL_NONE] = "none",
1847 [NMK_GPIO_PULL_UP] = "up",
1848 [NMK_GPIO_PULL_DOWN] = "down",
1849 [3] /* illegal */ = "??"
1850 };
1851 static const char *slpmnames[] = {
1852 [NMK_GPIO_SLPM_INPUT] = "input/wakeup",
1853 [NMK_GPIO_SLPM_NOCHANGE] = "no-change/no-wakeup",
1854 };
1855 struct nmk_pinctrl *npct = pinctrl_dev_get_drvdata(pctldev);
1856 struct nmk_gpio_chip *nmk_chip;
1857 struct pinctrl_gpio_range *range;
1858 struct gpio_chip *chip;
1859 unsigned bit;
Sherman Yin03b054e2013-08-27 11:32:12 -07001860 pin_cfg_t cfg;
1861 int pull, slpm, output, val, i;
1862 bool lowemi, gpiomode, sleep;
Linus Walleijd41af622012-05-03 15:58:12 +02001863
1864 range = nmk_match_gpio_range(pctldev, pin);
1865 if (!range) {
1866 dev_err(npct->dev, "invalid pin offset %d\n", pin);
1867 return -EINVAL;
1868 }
1869 if (!range->gc) {
1870 dev_err(npct->dev, "GPIO chip missing in range for pin %d\n",
1871 pin);
1872 return -EINVAL;
1873 }
1874 chip = range->gc;
1875 nmk_chip = container_of(chip, struct nmk_gpio_chip, chip);
1876
Sherman Yin03b054e2013-08-27 11:32:12 -07001877 for (i = 0; i < num_configs; i++) {
Linus Walleijd41af622012-05-03 15:58:12 +02001878 /*
Sherman Yin03b054e2013-08-27 11:32:12 -07001879 * The pin config contains pin number and altfunction fields,
1880 * here we just ignore that part. It's being handled by the
1881 * framework and pinmux callback respectively.
Linus Walleijd41af622012-05-03 15:58:12 +02001882 */
Sherman Yin03b054e2013-08-27 11:32:12 -07001883 cfg = (pin_cfg_t) configs[i];
1884 pull = PIN_PULL(cfg);
1885 slpm = PIN_SLPM(cfg);
1886 output = PIN_DIR(cfg);
1887 val = PIN_VAL(cfg);
1888 lowemi = PIN_LOWEMI(cfg);
1889 gpiomode = PIN_GPIOMODE(cfg);
1890 sleep = PIN_SLEEPMODE(cfg);
Linus Walleijd41af622012-05-03 15:58:12 +02001891
Sherman Yin03b054e2013-08-27 11:32:12 -07001892 if (sleep) {
1893 int slpm_pull = PIN_SLPM_PULL(cfg);
1894 int slpm_output = PIN_SLPM_DIR(cfg);
1895 int slpm_val = PIN_SLPM_VAL(cfg);
Linus Walleijd41af622012-05-03 15:58:12 +02001896
Sherman Yin03b054e2013-08-27 11:32:12 -07001897 /* All pins go into GPIO mode at sleep */
1898 gpiomode = true;
Linus Walleijd41af622012-05-03 15:58:12 +02001899
Sherman Yin03b054e2013-08-27 11:32:12 -07001900 /*
1901 * The SLPM_* values are normal values + 1 to allow zero
1902 * to mean "same as normal".
1903 */
1904 if (slpm_pull)
1905 pull = slpm_pull - 1;
1906 if (slpm_output)
1907 output = slpm_output - 1;
1908 if (slpm_val)
1909 val = slpm_val - 1;
Linus Walleijd41af622012-05-03 15:58:12 +02001910
Sherman Yin03b054e2013-08-27 11:32:12 -07001911 dev_dbg(nmk_chip->chip.dev,
1912 "pin %d: sleep pull %s, dir %s, val %s\n",
1913 pin,
1914 slpm_pull ? pullnames[pull] : "same",
1915 slpm_output ? (output ? "output" : "input")
1916 : "same",
1917 slpm_val ? (val ? "high" : "low") : "same");
1918 }
1919
1920 dev_dbg(nmk_chip->chip.dev,
1921 "pin %d [%#lx]: pull %s, slpm %s (%s%s), lowemi %s\n",
1922 pin, cfg, pullnames[pull], slpmnames[slpm],
1923 output ? "output " : "input",
1924 output ? (val ? "high" : "low") : "",
1925 lowemi ? "on" : "off");
1926
1927 clk_enable(nmk_chip->clk);
1928 bit = pin % NMK_GPIO_PER_CHIP;
1929 if (gpiomode)
1930 /* No glitch when going to GPIO mode */
1931 __nmk_gpio_set_mode(nmk_chip, bit, NMK_GPIO_ALT_GPIO);
1932 if (output)
1933 __nmk_gpio_make_output(nmk_chip, bit, val);
1934 else {
1935 __nmk_gpio_make_input(nmk_chip, bit);
1936 __nmk_gpio_set_pull(nmk_chip, bit, pull);
1937 }
1938 /* TODO: isn't this only applicable on output pins? */
1939 __nmk_gpio_set_lowemi(nmk_chip, bit, lowemi);
1940
1941 __nmk_gpio_set_slpm(nmk_chip, bit, slpm);
1942 clk_disable(nmk_chip->clk);
1943 } /* for each config */
1944
Linus Walleijd41af622012-05-03 15:58:12 +02001945 return 0;
1946}
1947
Laurent Pinchart022ab142013-02-16 10:25:07 +01001948static const struct pinconf_ops nmk_pinconf_ops = {
Linus Walleijd41af622012-05-03 15:58:12 +02001949 .pin_config_get = nmk_pin_config_get,
1950 .pin_config_set = nmk_pin_config_set,
1951};
1952
Linus Walleije98ea772012-04-26 23:57:25 +02001953static struct pinctrl_desc nmk_pinctrl_desc = {
1954 .name = "pinctrl-nomadik",
1955 .pctlops = &nmk_pinctrl_ops,
Linus Walleijdbfe8ca2012-05-02 22:56:47 +02001956 .pmxops = &nmk_pinmux_ops,
Linus Walleijd41af622012-05-03 15:58:12 +02001957 .confops = &nmk_pinconf_ops,
Linus Walleije98ea772012-04-26 23:57:25 +02001958 .owner = THIS_MODULE,
1959};
1960
Lee Jones855f80c2012-05-26 06:09:29 +01001961static const struct of_device_id nmk_pinctrl_match[] = {
1962 {
Lee Jones3fd765a2013-05-22 15:22:59 +01001963 .compatible = "stericsson,stn8815-pinctrl",
Linus Walleij6010d402013-01-05 23:10:09 +01001964 .data = (void *)PINCTRL_NMK_STN8815,
1965 },
1966 {
Lee Jones6b09a832013-05-22 15:23:00 +01001967 .compatible = "stericsson,db8500-pinctrl",
Lee Jones855f80c2012-05-26 06:09:29 +01001968 .data = (void *)PINCTRL_NMK_DB8500,
1969 },
Gabriel Fernandez356d3e42013-01-25 16:39:14 +01001970 {
Lee Jones6b09a832013-05-22 15:23:00 +01001971 .compatible = "stericsson,db8540-pinctrl",
Gabriel Fernandez356d3e42013-01-25 16:39:14 +01001972 .data = (void *)PINCTRL_NMK_DB8540,
1973 },
Lee Jones855f80c2012-05-26 06:09:29 +01001974 {},
1975};
1976
Ulf Hansson131d85b2014-02-12 13:59:38 +01001977#ifdef CONFIG_PM_SLEEP
Ulf Hanssonc003eed2014-02-12 13:59:39 +01001978static int nmk_pinctrl_suspend(struct device *dev)
Julien Delacou8d99b322012-12-11 09:17:47 +01001979{
1980 struct nmk_pinctrl *npct;
1981
Ulf Hanssonc003eed2014-02-12 13:59:39 +01001982 npct = dev_get_drvdata(dev);
Julien Delacou8d99b322012-12-11 09:17:47 +01001983 if (!npct)
1984 return -EINVAL;
1985
1986 return pinctrl_force_sleep(npct->pctl);
1987}
1988
Ulf Hanssonc003eed2014-02-12 13:59:39 +01001989static int nmk_pinctrl_resume(struct device *dev)
Julien Delacou8d99b322012-12-11 09:17:47 +01001990{
1991 struct nmk_pinctrl *npct;
1992
Ulf Hanssonc003eed2014-02-12 13:59:39 +01001993 npct = dev_get_drvdata(dev);
Julien Delacou8d99b322012-12-11 09:17:47 +01001994 if (!npct)
1995 return -EINVAL;
1996
1997 return pinctrl_force_default(npct->pctl);
1998}
Ulf Hansson131d85b2014-02-12 13:59:38 +01001999#endif
Julien Delacou8d99b322012-12-11 09:17:47 +01002000
Greg Kroah-Hartman150632b2012-12-21 13:10:23 -08002001static int nmk_pinctrl_probe(struct platform_device *pdev)
Linus Walleije98ea772012-04-26 23:57:25 +02002002{
Linus Walleijf4b3f522013-11-19 23:21:04 +01002003 const struct of_device_id *match;
Lee Jones855f80c2012-05-26 06:09:29 +01002004 struct device_node *np = pdev->dev.of_node;
Lee Jones32e67ee2013-01-11 15:45:29 +00002005 struct device_node *prcm_np;
Linus Walleije98ea772012-04-26 23:57:25 +02002006 struct nmk_pinctrl *npct;
Lee Jones855f80c2012-05-26 06:09:29 +01002007 unsigned int version = 0;
Linus Walleije98ea772012-04-26 23:57:25 +02002008 int i;
2009
2010 npct = devm_kzalloc(&pdev->dev, sizeof(*npct), GFP_KERNEL);
2011 if (!npct)
2012 return -ENOMEM;
2013
Linus Walleijf4b3f522013-11-19 23:21:04 +01002014 match = of_match_device(nmk_pinctrl_match, &pdev->dev);
2015 if (!match)
2016 return -ENODEV;
2017 version = (unsigned int) match->data;
Lee Jones855f80c2012-05-26 06:09:29 +01002018
Linus Walleije98ea772012-04-26 23:57:25 +02002019 /* Poke in other ASIC variants here */
Linus Walleijf79c5ed2012-08-10 00:43:28 +02002020 if (version == PINCTRL_NMK_STN8815)
2021 nmk_pinctrl_stn8815_init(&npct->soc);
Lee Jones855f80c2012-05-26 06:09:29 +01002022 if (version == PINCTRL_NMK_DB8500)
Linus Walleije98ea772012-04-26 23:57:25 +02002023 nmk_pinctrl_db8500_init(&npct->soc);
Patrice Chotard45a1b532012-07-20 15:45:22 +02002024 if (version == PINCTRL_NMK_DB8540)
2025 nmk_pinctrl_db8540_init(&npct->soc);
Linus Walleije98ea772012-04-26 23:57:25 +02002026
Linus Walleijf4b3f522013-11-19 23:21:04 +01002027 prcm_np = of_parse_phandle(np, "prcm", 0);
2028 if (prcm_np)
2029 npct->prcm_base = of_iomap(prcm_np, 0);
Lee Jones32e67ee2013-01-11 15:45:29 +00002030 if (!npct->prcm_base) {
2031 if (version == PINCTRL_NMK_STN8815) {
2032 dev_info(&pdev->dev,
2033 "No PRCM base, "
2034 "assuming no ALT-Cx control is available\n");
2035 } else {
2036 dev_err(&pdev->dev, "missing PRCM base address\n");
2037 return -EINVAL;
Jonas Aabergf1671bf2012-10-25 08:40:42 +02002038 }
Jonas Aabergf1671bf2012-10-25 08:40:42 +02002039 }
2040
Linus Walleije98ea772012-04-26 23:57:25 +02002041 /*
2042 * We need all the GPIO drivers to probe FIRST, or we will not be able
2043 * to obtain references to the struct gpio_chip * for them, and we
2044 * need this to proceed.
2045 */
2046 for (i = 0; i < npct->soc->gpio_num_ranges; i++) {
Patrice Chotard1d853ca2012-10-08 16:50:24 +02002047 if (!nmk_gpio_chips[npct->soc->gpio_ranges[i].id]) {
Linus Walleije98ea772012-04-26 23:57:25 +02002048 dev_warn(&pdev->dev, "GPIO chip %d not registered yet\n", i);
Linus Walleije98ea772012-04-26 23:57:25 +02002049 return -EPROBE_DEFER;
2050 }
Patrice Chotard1d853ca2012-10-08 16:50:24 +02002051 npct->soc->gpio_ranges[i].gc = &nmk_gpio_chips[npct->soc->gpio_ranges[i].id]->chip;
Linus Walleije98ea772012-04-26 23:57:25 +02002052 }
2053
2054 nmk_pinctrl_desc.pins = npct->soc->pins;
2055 nmk_pinctrl_desc.npins = npct->soc->npins;
2056 npct->dev = &pdev->dev;
Jonas Aabergf1671bf2012-10-25 08:40:42 +02002057
Linus Walleije98ea772012-04-26 23:57:25 +02002058 npct->pctl = pinctrl_register(&nmk_pinctrl_desc, &pdev->dev, npct);
2059 if (!npct->pctl) {
2060 dev_err(&pdev->dev, "could not register Nomadik pinctrl driver\n");
2061 return -EINVAL;
2062 }
2063
2064 /* We will handle a range of GPIO pins */
2065 for (i = 0; i < npct->soc->gpio_num_ranges; i++)
2066 pinctrl_add_gpio_range(npct->pctl, &npct->soc->gpio_ranges[i]);
2067
2068 platform_set_drvdata(pdev, npct);
2069 dev_info(&pdev->dev, "initialized Nomadik pin control driver\n");
2070
2071 return 0;
2072}
2073
Lee Jones513c27f2012-04-13 15:05:05 +01002074static const struct of_device_id nmk_gpio_match[] = {
2075 { .compatible = "st,nomadik-gpio", },
2076 {}
2077};
2078
Rabin Vincent3e3c62c2010-03-03 04:52:34 +01002079static struct platform_driver nmk_gpio_driver = {
2080 .driver = {
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01002081 .owner = THIS_MODULE,
2082 .name = "gpio",
Lee Jones513c27f2012-04-13 15:05:05 +01002083 .of_match_table = nmk_gpio_match,
Rabin Vincent5317e4d12011-02-10 09:29:53 +05302084 },
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01002085 .probe = nmk_gpio_probe,
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01002086};
2087
Ulf Hanssonc003eed2014-02-12 13:59:39 +01002088static SIMPLE_DEV_PM_OPS(nmk_pinctrl_pm_ops,
2089 nmk_pinctrl_suspend,
2090 nmk_pinctrl_resume);
2091
Linus Walleije98ea772012-04-26 23:57:25 +02002092static struct platform_driver nmk_pinctrl_driver = {
2093 .driver = {
2094 .owner = THIS_MODULE,
2095 .name = "pinctrl-nomadik",
Lee Jones855f80c2012-05-26 06:09:29 +01002096 .of_match_table = nmk_pinctrl_match,
Ulf Hanssonc003eed2014-02-12 13:59:39 +01002097 .pm = &nmk_pinctrl_pm_ops,
Linus Walleije98ea772012-04-26 23:57:25 +02002098 },
2099 .probe = nmk_pinctrl_probe,
Linus Walleije98ea772012-04-26 23:57:25 +02002100};
2101
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01002102static int __init nmk_gpio_init(void)
2103{
Linus Walleije98ea772012-04-26 23:57:25 +02002104 int ret;
2105
2106 ret = platform_driver_register(&nmk_gpio_driver);
2107 if (ret)
2108 return ret;
2109 return platform_driver_register(&nmk_pinctrl_driver);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01002110}
2111
Rabin Vincent33f45ea2010-06-02 06:09:52 +01002112core_initcall(nmk_gpio_init);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01002113
2114MODULE_AUTHOR("Prafulla WADASKAR and Alessandro Rubini");
2115MODULE_DESCRIPTION("Nomadik GPIO Driver");
2116MODULE_LICENSE("GPL");