pinctrl: sh-pfc: r8a7790: Add QSPI pin groups
[linux-2.6-block.git] / drivers / pinctrl / pinctrl-nomadik.c
CommitLineData
2ec1d359
AR
1/*
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>
f4b3f523 7 * Copyright (C) 2011-2013 Linus Walleij <linus.walleij@linaro.org>
2ec1d359
AR
8 *
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>
3e3c62ca 17#include <linux/platform_device.h>
2ec1d359 18#include <linux/io.h>
af7dc228
RV
19#include <linux/clk.h>
20#include <linux/err.h>
2ec1d359
AR
21#include <linux/gpio.h>
22#include <linux/spinlock.h>
23#include <linux/interrupt.h>
24#include <linux/irq.h>
a60b57ed 25#include <linux/irqdomain.h>
de88cbb7 26#include <linux/irqchip/chained_irq.h>
5a0e3ad6 27#include <linux/slab.h>
855f80cd 28#include <linux/of_device.h>
32e67eee 29#include <linux/of_address.h>
e32af889 30#include <linux/pinctrl/machine.h>
e98ea774 31#include <linux/pinctrl/pinctrl.h>
dbfe8ca2 32#include <linux/pinctrl/pinmux.h>
d41af627 33#include <linux/pinctrl/pinconf.h>
dbfe8ca2
LW
34/* Since we request GPIOs from ourself */
35#include <linux/pinctrl/consumer.h>
e98ea774 36#include "pinctrl-nomadik.h"
8d99b32d 37#include "core.h"
e98ea774 38
2ec1d359
AR
39/*
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
9c66ee6f 42 * is currently used in the Nomadik and ux500.
2ec1d359
AR
43 *
44 * Symbols in this file are called "nmk_gpio" for "nomadik gpio"
45 */
46
8d993397
LW
47/*
48 * pin configurations are represented by 32-bit integers:
49 *
50 * bit 0.. 8 - Pin Number (512 Pins Maximum)
51 * bit 9..10 - Alternate Function Selection
52 * bit 11..12 - Pull up/down state
53 * bit 13 - Sleep mode behaviour
54 * bit 14 - Direction
55 * bit 15 - Value (if output)
56 * bit 16..18 - SLPM pull up/down state
57 * bit 19..20 - SLPM direction
58 * bit 21..22 - SLPM Value (if output)
59 * bit 23..25 - PDIS value (if input)
60 * bit 26 - Gpio mode
61 * bit 27 - Sleep mode
62 *
63 * to facilitate the definition, the following macros are provided
64 *
65 * PIN_CFG_DEFAULT - default config (0):
66 * pull up/down = disabled
67 * sleep mode = input/wakeup
68 * direction = input
69 * value = low
70 * SLPM direction = same as normal
71 * SLPM pull = same as normal
72 * SLPM value = same as normal
73 *
74 * PIN_CFG - default config with alternate function
75 */
76
77typedef unsigned long pin_cfg_t;
78
79#define PIN_NUM_MASK 0x1ff
80#define PIN_NUM(x) ((x) & PIN_NUM_MASK)
81
82#define PIN_ALT_SHIFT 9
83#define PIN_ALT_MASK (0x3 << PIN_ALT_SHIFT)
84#define PIN_ALT(x) (((x) & PIN_ALT_MASK) >> PIN_ALT_SHIFT)
85#define PIN_GPIO (NMK_GPIO_ALT_GPIO << PIN_ALT_SHIFT)
86#define PIN_ALT_A (NMK_GPIO_ALT_A << PIN_ALT_SHIFT)
87#define PIN_ALT_B (NMK_GPIO_ALT_B << PIN_ALT_SHIFT)
88#define PIN_ALT_C (NMK_GPIO_ALT_C << PIN_ALT_SHIFT)
89
90#define PIN_PULL_SHIFT 11
91#define PIN_PULL_MASK (0x3 << PIN_PULL_SHIFT)
92#define PIN_PULL(x) (((x) & PIN_PULL_MASK) >> PIN_PULL_SHIFT)
93#define PIN_PULL_NONE (NMK_GPIO_PULL_NONE << PIN_PULL_SHIFT)
94#define PIN_PULL_UP (NMK_GPIO_PULL_UP << PIN_PULL_SHIFT)
95#define PIN_PULL_DOWN (NMK_GPIO_PULL_DOWN << PIN_PULL_SHIFT)
96
97#define PIN_SLPM_SHIFT 13
98#define PIN_SLPM_MASK (0x1 << PIN_SLPM_SHIFT)
99#define PIN_SLPM(x) (((x) & PIN_SLPM_MASK) >> PIN_SLPM_SHIFT)
100#define PIN_SLPM_MAKE_INPUT (NMK_GPIO_SLPM_INPUT << PIN_SLPM_SHIFT)
101#define PIN_SLPM_NOCHANGE (NMK_GPIO_SLPM_NOCHANGE << PIN_SLPM_SHIFT)
102/* These two replace the above in DB8500v2+ */
103#define PIN_SLPM_WAKEUP_ENABLE (NMK_GPIO_SLPM_WAKEUP_ENABLE << PIN_SLPM_SHIFT)
104#define PIN_SLPM_WAKEUP_DISABLE (NMK_GPIO_SLPM_WAKEUP_DISABLE << PIN_SLPM_SHIFT)
105#define PIN_SLPM_USE_MUX_SETTINGS_IN_SLEEP PIN_SLPM_WAKEUP_DISABLE
106
107#define PIN_SLPM_GPIO PIN_SLPM_WAKEUP_ENABLE /* In SLPM, pin is a gpio */
108#define PIN_SLPM_ALTFUNC PIN_SLPM_WAKEUP_DISABLE /* In SLPM, pin is altfunc */
109
110#define PIN_DIR_SHIFT 14
111#define PIN_DIR_MASK (0x1 << PIN_DIR_SHIFT)
112#define PIN_DIR(x) (((x) & PIN_DIR_MASK) >> PIN_DIR_SHIFT)
113#define PIN_DIR_INPUT (0 << PIN_DIR_SHIFT)
114#define PIN_DIR_OUTPUT (1 << PIN_DIR_SHIFT)
115
116#define PIN_VAL_SHIFT 15
117#define PIN_VAL_MASK (0x1 << PIN_VAL_SHIFT)
118#define PIN_VAL(x) (((x) & PIN_VAL_MASK) >> PIN_VAL_SHIFT)
119#define PIN_VAL_LOW (0 << PIN_VAL_SHIFT)
120#define PIN_VAL_HIGH (1 << PIN_VAL_SHIFT)
121
122#define PIN_SLPM_PULL_SHIFT 16
123#define PIN_SLPM_PULL_MASK (0x7 << PIN_SLPM_PULL_SHIFT)
124#define PIN_SLPM_PULL(x) \
125 (((x) & PIN_SLPM_PULL_MASK) >> PIN_SLPM_PULL_SHIFT)
126#define PIN_SLPM_PULL_NONE \
127 ((1 + NMK_GPIO_PULL_NONE) << PIN_SLPM_PULL_SHIFT)
128#define PIN_SLPM_PULL_UP \
129 ((1 + NMK_GPIO_PULL_UP) << PIN_SLPM_PULL_SHIFT)
130#define PIN_SLPM_PULL_DOWN \
131 ((1 + NMK_GPIO_PULL_DOWN) << PIN_SLPM_PULL_SHIFT)
132
133#define PIN_SLPM_DIR_SHIFT 19
134#define PIN_SLPM_DIR_MASK (0x3 << PIN_SLPM_DIR_SHIFT)
135#define PIN_SLPM_DIR(x) \
136 (((x) & PIN_SLPM_DIR_MASK) >> PIN_SLPM_DIR_SHIFT)
137#define PIN_SLPM_DIR_INPUT ((1 + 0) << PIN_SLPM_DIR_SHIFT)
138#define PIN_SLPM_DIR_OUTPUT ((1 + 1) << PIN_SLPM_DIR_SHIFT)
139
140#define PIN_SLPM_VAL_SHIFT 21
141#define PIN_SLPM_VAL_MASK (0x3 << PIN_SLPM_VAL_SHIFT)
142#define PIN_SLPM_VAL(x) \
143 (((x) & PIN_SLPM_VAL_MASK) >> PIN_SLPM_VAL_SHIFT)
144#define PIN_SLPM_VAL_LOW ((1 + 0) << PIN_SLPM_VAL_SHIFT)
145#define PIN_SLPM_VAL_HIGH ((1 + 1) << PIN_SLPM_VAL_SHIFT)
146
147#define PIN_SLPM_PDIS_SHIFT 23
148#define PIN_SLPM_PDIS_MASK (0x3 << PIN_SLPM_PDIS_SHIFT)
149#define PIN_SLPM_PDIS(x) \
150 (((x) & PIN_SLPM_PDIS_MASK) >> PIN_SLPM_PDIS_SHIFT)
151#define PIN_SLPM_PDIS_NO_CHANGE (0 << PIN_SLPM_PDIS_SHIFT)
152#define PIN_SLPM_PDIS_DISABLED (1 << PIN_SLPM_PDIS_SHIFT)
153#define PIN_SLPM_PDIS_ENABLED (2 << PIN_SLPM_PDIS_SHIFT)
154
155#define PIN_LOWEMI_SHIFT 25
156#define PIN_LOWEMI_MASK (0x1 << PIN_LOWEMI_SHIFT)
157#define PIN_LOWEMI(x) (((x) & PIN_LOWEMI_MASK) >> PIN_LOWEMI_SHIFT)
158#define PIN_LOWEMI_DISABLED (0 << PIN_LOWEMI_SHIFT)
159#define PIN_LOWEMI_ENABLED (1 << PIN_LOWEMI_SHIFT)
160
161#define PIN_GPIOMODE_SHIFT 26
162#define PIN_GPIOMODE_MASK (0x1 << PIN_GPIOMODE_SHIFT)
163#define PIN_GPIOMODE(x) (((x) & PIN_GPIOMODE_MASK) >> PIN_GPIOMODE_SHIFT)
164#define PIN_GPIOMODE_DISABLED (0 << PIN_GPIOMODE_SHIFT)
165#define PIN_GPIOMODE_ENABLED (1 << PIN_GPIOMODE_SHIFT)
166
167#define PIN_SLEEPMODE_SHIFT 27
168#define PIN_SLEEPMODE_MASK (0x1 << PIN_SLEEPMODE_SHIFT)
169#define PIN_SLEEPMODE(x) (((x) & PIN_SLEEPMODE_MASK) >> PIN_SLEEPMODE_SHIFT)
170#define PIN_SLEEPMODE_DISABLED (0 << PIN_SLEEPMODE_SHIFT)
171#define PIN_SLEEPMODE_ENABLED (1 << PIN_SLEEPMODE_SHIFT)
172
173
174/* Shortcuts. Use these instead of separate DIR, PULL, and VAL. */
175#define PIN_INPUT_PULLDOWN (PIN_DIR_INPUT | PIN_PULL_DOWN)
176#define PIN_INPUT_PULLUP (PIN_DIR_INPUT | PIN_PULL_UP)
177#define PIN_INPUT_NOPULL (PIN_DIR_INPUT | PIN_PULL_NONE)
178#define PIN_OUTPUT_LOW (PIN_DIR_OUTPUT | PIN_VAL_LOW)
179#define PIN_OUTPUT_HIGH (PIN_DIR_OUTPUT | PIN_VAL_HIGH)
180
181#define PIN_SLPM_INPUT_PULLDOWN (PIN_SLPM_DIR_INPUT | PIN_SLPM_PULL_DOWN)
182#define PIN_SLPM_INPUT_PULLUP (PIN_SLPM_DIR_INPUT | PIN_SLPM_PULL_UP)
183#define PIN_SLPM_INPUT_NOPULL (PIN_SLPM_DIR_INPUT | PIN_SLPM_PULL_NONE)
184#define PIN_SLPM_OUTPUT_LOW (PIN_SLPM_DIR_OUTPUT | PIN_SLPM_VAL_LOW)
185#define PIN_SLPM_OUTPUT_HIGH (PIN_SLPM_DIR_OUTPUT | PIN_SLPM_VAL_HIGH)
186
187#define PIN_CFG_DEFAULT (0)
188
189#define PIN_CFG(num, alt) \
190 (PIN_CFG_DEFAULT |\
191 (PIN_NUM(num) | PIN_##alt))
192
193#define PIN_CFG_INPUT(num, alt, pull) \
194 (PIN_CFG_DEFAULT |\
195 (PIN_NUM(num) | PIN_##alt | PIN_INPUT_##pull))
196
197#define PIN_CFG_OUTPUT(num, alt, val) \
198 (PIN_CFG_DEFAULT |\
199 (PIN_NUM(num) | PIN_##alt | PIN_OUTPUT_##val))
200
201/*
202 * "nmk_gpio" and "NMK_GPIO" stand for "Nomadik GPIO", leaving
203 * the "gpio" namespace for generic and cross-machine functions
204 */
205
206#define GPIO_BLOCK_SHIFT 5
207#define NMK_GPIO_PER_CHIP (1 << GPIO_BLOCK_SHIFT)
208
209/* Register in the logic block */
210#define NMK_GPIO_DAT 0x00
211#define NMK_GPIO_DATS 0x04
212#define NMK_GPIO_DATC 0x08
213#define NMK_GPIO_PDIS 0x0c
214#define NMK_GPIO_DIR 0x10
215#define NMK_GPIO_DIRS 0x14
216#define NMK_GPIO_DIRC 0x18
217#define NMK_GPIO_SLPC 0x1c
218#define NMK_GPIO_AFSLA 0x20
219#define NMK_GPIO_AFSLB 0x24
220#define NMK_GPIO_LOWEMI 0x28
221
222#define NMK_GPIO_RIMSC 0x40
223#define NMK_GPIO_FIMSC 0x44
224#define NMK_GPIO_IS 0x48
225#define NMK_GPIO_IC 0x4c
226#define NMK_GPIO_RWIMSC 0x50
227#define NMK_GPIO_FWIMSC 0x54
228#define NMK_GPIO_WKS 0x58
229/* These appear in DB8540 and later ASICs */
230#define NMK_GPIO_EDGELEVEL 0x5C
231#define NMK_GPIO_LEVEL 0x60
232
233
234/* Pull up/down values */
235enum nmk_gpio_pull {
236 NMK_GPIO_PULL_NONE,
237 NMK_GPIO_PULL_UP,
238 NMK_GPIO_PULL_DOWN,
239};
240
241/* Sleep mode */
242enum nmk_gpio_slpm {
243 NMK_GPIO_SLPM_INPUT,
244 NMK_GPIO_SLPM_WAKEUP_ENABLE = NMK_GPIO_SLPM_INPUT,
245 NMK_GPIO_SLPM_NOCHANGE,
246 NMK_GPIO_SLPM_WAKEUP_DISABLE = NMK_GPIO_SLPM_NOCHANGE,
247};
248
249/*
250 * Platform data to register a block: only the initial gpio/irq number.
251 */
252struct nmk_gpio_platform_data {
253 char *name;
254 int first_gpio;
255 int first_irq;
256 int num_gpio;
257 u32 (*get_secondary_status)(unsigned int bank);
258 void (*set_ioforce)(bool enable);
259 bool supports_sleepmode;
260};
261
2ec1d359
AR
262struct nmk_gpio_chip {
263 struct gpio_chip chip;
a60b57ed 264 struct irq_domain *domain;
2ec1d359 265 void __iomem *addr;
af7dc228 266 struct clk *clk;
33b744b3 267 unsigned int bank;
2ec1d359 268 unsigned int parent_irq;
2c8bb0eb 269 int secondary_parent_irq;
33b744b3 270 u32 (*get_secondary_status)(unsigned int bank);
01727e61 271 void (*set_ioforce)(bool enable);
c0fcb8db 272 spinlock_t lock;
33d78647 273 bool sleepmode;
2ec1d359
AR
274 /* Keep track of configured edges */
275 u32 edge_rising;
276 u32 edge_falling;
b9df468d
RV
277 u32 real_wake;
278 u32 rwimsc;
279 u32 fwimsc;
6c12fe88
RV
280 u32 rimsc;
281 u32 fimsc;
bc6f5cf6 282 u32 pull_up;
ebc6178d 283 u32 lowemi;
2ec1d359
AR
284};
285
f1671bf5
JA
286/**
287 * struct nmk_pinctrl - state container for the Nomadik pin controller
288 * @dev: containing device pointer
289 * @pctl: corresponding pin controller device
290 * @soc: SoC data for this specific chip
291 * @prcm_base: PRCM register range virtual base
292 */
e98ea774
LW
293struct nmk_pinctrl {
294 struct device *dev;
295 struct pinctrl_dev *pctl;
296 const struct nmk_pinctrl_soc_data *soc;
f1671bf5 297 void __iomem *prcm_base;
e98ea774
LW
298};
299
01727e61
RV
300static struct nmk_gpio_chip *
301nmk_gpio_chips[DIV_ROUND_UP(ARCH_NR_GPIOS, NMK_GPIO_PER_CHIP)];
302
303static DEFINE_SPINLOCK(nmk_gpio_slpm_lock);
304
305#define NUM_BANKS ARRAY_SIZE(nmk_gpio_chips)
306
6f9a974c
RV
307static void __nmk_gpio_set_mode(struct nmk_gpio_chip *nmk_chip,
308 unsigned offset, int gpio_mode)
309{
310 u32 bit = 1 << offset;
311 u32 afunc, bfunc;
312
313 afunc = readl(nmk_chip->addr + NMK_GPIO_AFSLA) & ~bit;
314 bfunc = readl(nmk_chip->addr + NMK_GPIO_AFSLB) & ~bit;
315 if (gpio_mode & NMK_GPIO_ALT_A)
316 afunc |= bit;
317 if (gpio_mode & NMK_GPIO_ALT_B)
318 bfunc |= bit;
319 writel(afunc, nmk_chip->addr + NMK_GPIO_AFSLA);
320 writel(bfunc, nmk_chip->addr + NMK_GPIO_AFSLB);
321}
322
81a3c298
RV
323static void __nmk_gpio_set_slpm(struct nmk_gpio_chip *nmk_chip,
324 unsigned offset, enum nmk_gpio_slpm mode)
325{
326 u32 bit = 1 << offset;
327 u32 slpm;
328
329 slpm = readl(nmk_chip->addr + NMK_GPIO_SLPC);
330 if (mode == NMK_GPIO_SLPM_NOCHANGE)
331 slpm |= bit;
332 else
333 slpm &= ~bit;
334 writel(slpm, nmk_chip->addr + NMK_GPIO_SLPC);
335}
336
5b327edf
RV
337static void __nmk_gpio_set_pull(struct nmk_gpio_chip *nmk_chip,
338 unsigned offset, enum nmk_gpio_pull pull)
339{
340 u32 bit = 1 << offset;
341 u32 pdis;
342
343 pdis = readl(nmk_chip->addr + NMK_GPIO_PDIS);
bc6f5cf6 344 if (pull == NMK_GPIO_PULL_NONE) {
5b327edf 345 pdis |= bit;
bc6f5cf6
RA
346 nmk_chip->pull_up &= ~bit;
347 } else {
5b327edf 348 pdis &= ~bit;
bc6f5cf6
RA
349 }
350
5b327edf
RV
351 writel(pdis, nmk_chip->addr + NMK_GPIO_PDIS);
352
bc6f5cf6
RA
353 if (pull == NMK_GPIO_PULL_UP) {
354 nmk_chip->pull_up |= bit;
5b327edf 355 writel(bit, nmk_chip->addr + NMK_GPIO_DATS);
bc6f5cf6
RA
356 } else if (pull == NMK_GPIO_PULL_DOWN) {
357 nmk_chip->pull_up &= ~bit;
5b327edf 358 writel(bit, nmk_chip->addr + NMK_GPIO_DATC);
bc6f5cf6 359 }
5b327edf
RV
360}
361
ebc6178d
RV
362static void __nmk_gpio_set_lowemi(struct nmk_gpio_chip *nmk_chip,
363 unsigned offset, bool lowemi)
364{
365 u32 bit = BIT(offset);
366 bool enabled = nmk_chip->lowemi & bit;
367
368 if (lowemi == enabled)
369 return;
370
371 if (lowemi)
372 nmk_chip->lowemi |= bit;
373 else
374 nmk_chip->lowemi &= ~bit;
375
376 writel_relaxed(nmk_chip->lowemi,
377 nmk_chip->addr + NMK_GPIO_LOWEMI);
378}
379
378be066
RV
380static void __nmk_gpio_make_input(struct nmk_gpio_chip *nmk_chip,
381 unsigned offset)
382{
383 writel(1 << offset, nmk_chip->addr + NMK_GPIO_DIRC);
384}
385
6720db7c
RV
386static void __nmk_gpio_set_output(struct nmk_gpio_chip *nmk_chip,
387 unsigned offset, int val)
388{
389 if (val)
390 writel(1 << offset, nmk_chip->addr + NMK_GPIO_DATS);
391 else
392 writel(1 << offset, nmk_chip->addr + NMK_GPIO_DATC);
393}
394
395static void __nmk_gpio_make_output(struct nmk_gpio_chip *nmk_chip,
396 unsigned offset, int val)
397{
398 writel(1 << offset, nmk_chip->addr + NMK_GPIO_DIRS);
399 __nmk_gpio_set_output(nmk_chip, offset, val);
400}
401
01727e61
RV
402static void __nmk_gpio_set_mode_safe(struct nmk_gpio_chip *nmk_chip,
403 unsigned offset, int gpio_mode,
404 bool glitch)
405{
6c12fe88
RV
406 u32 rwimsc = nmk_chip->rwimsc;
407 u32 fwimsc = nmk_chip->fwimsc;
01727e61
RV
408
409 if (glitch && nmk_chip->set_ioforce) {
410 u32 bit = BIT(offset);
411
01727e61
RV
412 /* Prevent spurious wakeups */
413 writel(rwimsc & ~bit, nmk_chip->addr + NMK_GPIO_RWIMSC);
414 writel(fwimsc & ~bit, nmk_chip->addr + NMK_GPIO_FWIMSC);
415
416 nmk_chip->set_ioforce(true);
417 }
418
419 __nmk_gpio_set_mode(nmk_chip, offset, gpio_mode);
420
421 if (glitch && nmk_chip->set_ioforce) {
422 nmk_chip->set_ioforce(false);
423
424 writel(rwimsc, nmk_chip->addr + NMK_GPIO_RWIMSC);
425 writel(fwimsc, nmk_chip->addr + NMK_GPIO_FWIMSC);
426 }
427}
428
6c42ad1c
RV
429static void
430nmk_gpio_disable_lazy_irq(struct nmk_gpio_chip *nmk_chip, unsigned offset)
431{
432 u32 falling = nmk_chip->fimsc & BIT(offset);
433 u32 rising = nmk_chip->rimsc & BIT(offset);
434 int gpio = nmk_chip->chip.base + offset;
aa6e379a 435 int irq = irq_find_mapping(nmk_chip->domain, offset);
6c42ad1c
RV
436 struct irq_data *d = irq_get_irq_data(irq);
437
438 if (!rising && !falling)
439 return;
440
441 if (!d || !irqd_irq_disabled(d))
442 return;
443
444 if (rising) {
445 nmk_chip->rimsc &= ~BIT(offset);
446 writel_relaxed(nmk_chip->rimsc,
447 nmk_chip->addr + NMK_GPIO_RIMSC);
448 }
449
450 if (falling) {
451 nmk_chip->fimsc &= ~BIT(offset);
452 writel_relaxed(nmk_chip->fimsc,
453 nmk_chip->addr + NMK_GPIO_FIMSC);
454 }
455
456 dev_dbg(nmk_chip->chip.dev, "%d: clearing interrupt mask\n", gpio);
457}
458
f1671bf5
JA
459static void nmk_write_masked(void __iomem *reg, u32 mask, u32 value)
460{
461 u32 val;
462
463 val = readl(reg);
464 val = ((val & ~mask) | (value & mask));
465 writel(val, reg);
466}
467
c22df08c
JNG
468static void nmk_prcm_altcx_set_mode(struct nmk_pinctrl *npct,
469 unsigned offset, unsigned alt_num)
470{
471 int i;
472 u16 reg;
473 u8 bit;
474 u8 alt_index;
475 const struct prcm_gpiocr_altcx_pin_desc *pin_desc;
476 const u16 *gpiocr_regs;
477
4ca075de
FB
478 if (!npct->prcm_base)
479 return;
480
c22df08c
JNG
481 if (alt_num > PRCM_IDX_GPIOCR_ALTC_MAX) {
482 dev_err(npct->dev, "PRCM GPIOCR: alternate-C%i is invalid\n",
483 alt_num);
484 return;
485 }
486
487 for (i = 0 ; i < npct->soc->npins_altcx ; i++) {
488 if (npct->soc->altcx_pins[i].pin == offset)
489 break;
490 }
491 if (i == npct->soc->npins_altcx) {
492 dev_dbg(npct->dev, "PRCM GPIOCR: pin %i is not found\n",
493 offset);
494 return;
495 }
496
497 pin_desc = npct->soc->altcx_pins + i;
498 gpiocr_regs = npct->soc->prcm_gpiocr_registers;
499
500 /*
501 * If alt_num is NULL, just clear current ALTCx selection
502 * to make sure we come back to a pure ALTC selection
503 */
504 if (!alt_num) {
505 for (i = 0 ; i < PRCM_IDX_GPIOCR_ALTC_MAX ; i++) {
506 if (pin_desc->altcx[i].used == true) {
507 reg = gpiocr_regs[pin_desc->altcx[i].reg_index];
508 bit = pin_desc->altcx[i].control_bit;
f1671bf5
JA
509 if (readl(npct->prcm_base + reg) & BIT(bit)) {
510 nmk_write_masked(npct->prcm_base + reg, BIT(bit), 0);
c22df08c
JNG
511 dev_dbg(npct->dev,
512 "PRCM GPIOCR: pin %i: alternate-C%i has been disabled\n",
513 offset, i+1);
514 }
515 }
516 }
517 return;
518 }
519
520 alt_index = alt_num - 1;
521 if (pin_desc->altcx[alt_index].used == false) {
522 dev_warn(npct->dev,
523 "PRCM GPIOCR: pin %i: alternate-C%i does not exist\n",
524 offset, alt_num);
525 return;
526 }
527
528 /*
529 * Check if any other ALTCx functions are activated on this pin
530 * and disable it first.
531 */
532 for (i = 0 ; i < PRCM_IDX_GPIOCR_ALTC_MAX ; i++) {
533 if (i == alt_index)
534 continue;
535 if (pin_desc->altcx[i].used == true) {
536 reg = gpiocr_regs[pin_desc->altcx[i].reg_index];
537 bit = pin_desc->altcx[i].control_bit;
f1671bf5
JA
538 if (readl(npct->prcm_base + reg) & BIT(bit)) {
539 nmk_write_masked(npct->prcm_base + reg, BIT(bit), 0);
c22df08c
JNG
540 dev_dbg(npct->dev,
541 "PRCM GPIOCR: pin %i: alternate-C%i has been disabled\n",
542 offset, i+1);
543 }
544 }
545 }
546
547 reg = gpiocr_regs[pin_desc->altcx[alt_index].reg_index];
548 bit = pin_desc->altcx[alt_index].control_bit;
549 dev_dbg(npct->dev, "PRCM GPIOCR: pin %i: alternate-C%i has been selected\n",
550 offset, alt_index+1);
f1671bf5 551 nmk_write_masked(npct->prcm_base + reg, BIT(bit), BIT(bit));
c22df08c
JNG
552}
553
01727e61
RV
554/*
555 * Safe sequence used to switch IOs between GPIO and Alternate-C mode:
556 * - Save SLPM registers
557 * - Set SLPM=0 for the IOs you want to switch and others to 1
558 * - Configure the GPIO registers for the IOs that are being switched
559 * - Set IOFORCE=1
560 * - Modify the AFLSA/B registers for the IOs that are being switched
561 * - Set IOFORCE=0
562 * - Restore SLPM registers
563 * - Any spurious wake up event during switch sequence to be ignored and
564 * cleared
565 */
566static void nmk_gpio_glitch_slpm_init(unsigned int *slpm)
567{
568 int i;
569
570 for (i = 0; i < NUM_BANKS; i++) {
571 struct nmk_gpio_chip *chip = nmk_gpio_chips[i];
572 unsigned int temp = slpm[i];
573
574 if (!chip)
575 break;
576
3c0227d2
RV
577 clk_enable(chip->clk);
578
01727e61
RV
579 slpm[i] = readl(chip->addr + NMK_GPIO_SLPC);
580 writel(temp, chip->addr + NMK_GPIO_SLPC);
581 }
582}
583
584static void nmk_gpio_glitch_slpm_restore(unsigned int *slpm)
585{
586 int i;
587
588 for (i = 0; i < NUM_BANKS; i++) {
589 struct nmk_gpio_chip *chip = nmk_gpio_chips[i];
590
591 if (!chip)
592 break;
593
594 writel(slpm[i], chip->addr + NMK_GPIO_SLPC);
3c0227d2
RV
595
596 clk_disable(chip->clk);
01727e61
RV
597 }
598}
599
0fafd50e 600static int __maybe_unused nmk_prcm_gpiocr_get_mode(struct pinctrl_dev *pctldev, int gpio)
2249b19f
JNG
601{
602 int i;
603 u16 reg;
604 u8 bit;
605 struct nmk_pinctrl *npct = pinctrl_dev_get_drvdata(pctldev);
606 const struct prcm_gpiocr_altcx_pin_desc *pin_desc;
607 const u16 *gpiocr_regs;
608
4ca075de
FB
609 if (!npct->prcm_base)
610 return NMK_GPIO_ALT_C;
611
2249b19f
JNG
612 for (i = 0; i < npct->soc->npins_altcx; i++) {
613 if (npct->soc->altcx_pins[i].pin == gpio)
614 break;
615 }
616 if (i == npct->soc->npins_altcx)
617 return NMK_GPIO_ALT_C;
618
619 pin_desc = npct->soc->altcx_pins + i;
620 gpiocr_regs = npct->soc->prcm_gpiocr_registers;
621 for (i = 0; i < PRCM_IDX_GPIOCR_ALTC_MAX; i++) {
622 if (pin_desc->altcx[i].used == true) {
623 reg = gpiocr_regs[pin_desc->altcx[i].reg_index];
624 bit = pin_desc->altcx[i].control_bit;
f1671bf5 625 if (readl(npct->prcm_base + reg) & BIT(bit))
2249b19f
JNG
626 return NMK_GPIO_ALT_C+i+1;
627 }
628 }
629 return NMK_GPIO_ALT_C;
630}
631
2ec1d359
AR
632int nmk_gpio_get_mode(int gpio)
633{
634 struct nmk_gpio_chip *nmk_chip;
635 u32 afunc, bfunc, bit;
636
a60b57ed 637 nmk_chip = nmk_gpio_chips[gpio / NMK_GPIO_PER_CHIP];
2ec1d359
AR
638 if (!nmk_chip)
639 return -EINVAL;
640
a60b57ed 641 bit = 1 << (gpio % NMK_GPIO_PER_CHIP);
2ec1d359 642
3c0227d2
RV
643 clk_enable(nmk_chip->clk);
644
2ec1d359
AR
645 afunc = readl(nmk_chip->addr + NMK_GPIO_AFSLA) & bit;
646 bfunc = readl(nmk_chip->addr + NMK_GPIO_AFSLB) & bit;
647
3c0227d2
RV
648 clk_disable(nmk_chip->clk);
649
2ec1d359
AR
650 return (afunc ? NMK_GPIO_ALT_A : 0) | (bfunc ? NMK_GPIO_ALT_B : 0);
651}
652EXPORT_SYMBOL(nmk_gpio_get_mode);
653
654
655/* IRQ functions */
656static inline int nmk_gpio_get_bitmask(int gpio)
657{
a60b57ed 658 return 1 << (gpio % NMK_GPIO_PER_CHIP);
2ec1d359
AR
659}
660
f272c00e 661static void nmk_gpio_irq_ack(struct irq_data *d)
2ec1d359 662{
2ec1d359
AR
663 struct nmk_gpio_chip *nmk_chip;
664
f272c00e 665 nmk_chip = irq_data_get_irq_chip_data(d);
2ec1d359
AR
666 if (!nmk_chip)
667 return;
3c0227d2
RV
668
669 clk_enable(nmk_chip->clk);
a60b57ed 670 writel(nmk_gpio_get_bitmask(d->hwirq), nmk_chip->addr + NMK_GPIO_IC);
3c0227d2 671 clk_disable(nmk_chip->clk);
2ec1d359
AR
672}
673
4d4e20f7
RV
674enum nmk_gpio_irq_type {
675 NORMAL,
676 WAKE,
677};
678
040e5ecd 679static void __nmk_gpio_irq_modify(struct nmk_gpio_chip *nmk_chip,
4d4e20f7
RV
680 int gpio, enum nmk_gpio_irq_type which,
681 bool enable)
2ec1d359 682{
040e5ecd 683 u32 bitmask = nmk_gpio_get_bitmask(gpio);
6c12fe88
RV
684 u32 *rimscval;
685 u32 *fimscval;
686 u32 rimscreg;
687 u32 fimscreg;
688
689 if (which == NORMAL) {
690 rimscreg = NMK_GPIO_RIMSC;
691 fimscreg = NMK_GPIO_FIMSC;
692 rimscval = &nmk_chip->rimsc;
693 fimscval = &nmk_chip->fimsc;
694 } else {
695 rimscreg = NMK_GPIO_RWIMSC;
696 fimscreg = NMK_GPIO_FWIMSC;
697 rimscval = &nmk_chip->rwimsc;
698 fimscval = &nmk_chip->fwimsc;
699 }
2ec1d359 700
040e5ecd 701 /* we must individually set/clear the two edges */
2ec1d359 702 if (nmk_chip->edge_rising & bitmask) {
040e5ecd 703 if (enable)
6c12fe88 704 *rimscval |= bitmask;
040e5ecd 705 else
6c12fe88
RV
706 *rimscval &= ~bitmask;
707 writel(*rimscval, nmk_chip->addr + rimscreg);
2ec1d359
AR
708 }
709 if (nmk_chip->edge_falling & bitmask) {
040e5ecd 710 if (enable)
6c12fe88 711 *fimscval |= bitmask;
040e5ecd 712 else
6c12fe88
RV
713 *fimscval &= ~bitmask;
714 writel(*fimscval, nmk_chip->addr + fimscreg);
2ec1d359 715 }
040e5ecd 716}
2ec1d359 717
b9df468d
RV
718static void __nmk_gpio_set_wake(struct nmk_gpio_chip *nmk_chip,
719 int gpio, bool on)
720{
b982ff0e
RV
721 /*
722 * Ensure WAKEUP_ENABLE is on. No need to disable it if wakeup is
723 * disabled, since setting SLPM to 1 increases power consumption, and
724 * wakeup is anyhow controlled by the RIMSC and FIMSC registers.
725 */
726 if (nmk_chip->sleepmode && on) {
e85bbc19 727 __nmk_gpio_set_slpm(nmk_chip, gpio % NMK_GPIO_PER_CHIP,
b982ff0e 728 NMK_GPIO_SLPM_WAKEUP_ENABLE);
33d78647
LW
729 }
730
b9df468d
RV
731 __nmk_gpio_irq_modify(nmk_chip, gpio, WAKE, on);
732}
733
734static int nmk_gpio_irq_maskunmask(struct irq_data *d, bool enable)
2ec1d359 735{
2ec1d359
AR
736 struct nmk_gpio_chip *nmk_chip;
737 unsigned long flags;
040e5ecd 738 u32 bitmask;
2ec1d359 739
f272c00e 740 nmk_chip = irq_data_get_irq_chip_data(d);
a60b57ed 741 bitmask = nmk_gpio_get_bitmask(d->hwirq);
2ec1d359 742 if (!nmk_chip)
4d4e20f7 743 return -EINVAL;
2ec1d359 744
3c0227d2 745 clk_enable(nmk_chip->clk);
b9df468d
RV
746 spin_lock_irqsave(&nmk_gpio_slpm_lock, flags);
747 spin_lock(&nmk_chip->lock);
748
a60b57ed 749 __nmk_gpio_irq_modify(nmk_chip, d->hwirq, NORMAL, enable);
b9df468d
RV
750
751 if (!(nmk_chip->real_wake & bitmask))
a60b57ed 752 __nmk_gpio_set_wake(nmk_chip, d->hwirq, enable);
b9df468d
RV
753
754 spin_unlock(&nmk_chip->lock);
755 spin_unlock_irqrestore(&nmk_gpio_slpm_lock, flags);
3c0227d2 756 clk_disable(nmk_chip->clk);
4d4e20f7
RV
757
758 return 0;
2ec1d359
AR
759}
760
f272c00e 761static void nmk_gpio_irq_mask(struct irq_data *d)
040e5ecd 762{
b9df468d 763 nmk_gpio_irq_maskunmask(d, false);
4d4e20f7 764}
040e5ecd 765
f272c00e 766static void nmk_gpio_irq_unmask(struct irq_data *d)
040e5ecd 767{
b9df468d 768 nmk_gpio_irq_maskunmask(d, true);
4d4e20f7
RV
769}
770
f272c00e 771static int nmk_gpio_irq_set_wake(struct irq_data *d, unsigned int on)
4d4e20f7 772{
7e3f7e59
RV
773 struct nmk_gpio_chip *nmk_chip;
774 unsigned long flags;
b9df468d 775 u32 bitmask;
7e3f7e59 776
f272c00e 777 nmk_chip = irq_data_get_irq_chip_data(d);
7e3f7e59
RV
778 if (!nmk_chip)
779 return -EINVAL;
a60b57ed 780 bitmask = nmk_gpio_get_bitmask(d->hwirq);
7e3f7e59 781
3c0227d2 782 clk_enable(nmk_chip->clk);
01727e61
RV
783 spin_lock_irqsave(&nmk_gpio_slpm_lock, flags);
784 spin_lock(&nmk_chip->lock);
785
479a0c7e 786 if (irqd_irq_disabled(d))
a60b57ed 787 __nmk_gpio_set_wake(nmk_chip, d->hwirq, on);
b9df468d
RV
788
789 if (on)
790 nmk_chip->real_wake |= bitmask;
791 else
792 nmk_chip->real_wake &= ~bitmask;
01727e61
RV
793
794 spin_unlock(&nmk_chip->lock);
795 spin_unlock_irqrestore(&nmk_gpio_slpm_lock, flags);
3c0227d2 796 clk_disable(nmk_chip->clk);
7e3f7e59
RV
797
798 return 0;
040e5ecd
RV
799}
800
f272c00e 801static int nmk_gpio_irq_set_type(struct irq_data *d, unsigned int type)
2ec1d359 802{
479a0c7e 803 bool enabled = !irqd_irq_disabled(d);
3c0227d2 804 bool wake = irqd_is_wakeup_set(d);
2ec1d359
AR
805 struct nmk_gpio_chip *nmk_chip;
806 unsigned long flags;
807 u32 bitmask;
808
f272c00e 809 nmk_chip = irq_data_get_irq_chip_data(d);
a60b57ed 810 bitmask = nmk_gpio_get_bitmask(d->hwirq);
2ec1d359
AR
811 if (!nmk_chip)
812 return -EINVAL;
2ec1d359
AR
813 if (type & IRQ_TYPE_LEVEL_HIGH)
814 return -EINVAL;
815 if (type & IRQ_TYPE_LEVEL_LOW)
816 return -EINVAL;
817
3c0227d2 818 clk_enable(nmk_chip->clk);
2ec1d359
AR
819 spin_lock_irqsave(&nmk_chip->lock, flags);
820
7a852d80 821 if (enabled)
a60b57ed 822 __nmk_gpio_irq_modify(nmk_chip, d->hwirq, NORMAL, false);
4d4e20f7 823
b9df468d 824 if (enabled || wake)
a60b57ed 825 __nmk_gpio_irq_modify(nmk_chip, d->hwirq, WAKE, false);
7a852d80 826
2ec1d359
AR
827 nmk_chip->edge_rising &= ~bitmask;
828 if (type & IRQ_TYPE_EDGE_RISING)
829 nmk_chip->edge_rising |= bitmask;
2ec1d359
AR
830
831 nmk_chip->edge_falling &= ~bitmask;
832 if (type & IRQ_TYPE_EDGE_FALLING)
833 nmk_chip->edge_falling |= bitmask;
2ec1d359 834
7a852d80 835 if (enabled)
a60b57ed 836 __nmk_gpio_irq_modify(nmk_chip, d->hwirq, NORMAL, true);
4d4e20f7 837
b9df468d 838 if (enabled || wake)
a60b57ed 839 __nmk_gpio_irq_modify(nmk_chip, d->hwirq, WAKE, true);
2ec1d359 840
7a852d80 841 spin_unlock_irqrestore(&nmk_chip->lock, flags);
3c0227d2 842 clk_disable(nmk_chip->clk);
2ec1d359
AR
843
844 return 0;
845}
846
3c0227d2
RV
847static unsigned int nmk_gpio_irq_startup(struct irq_data *d)
848{
849 struct nmk_gpio_chip *nmk_chip = irq_data_get_irq_chip_data(d);
2ec1d359 850
494336f3
LW
851 if (gpio_lock_as_irq(&nmk_chip->chip, d->hwirq))
852 dev_err(nmk_chip->chip.dev,
853 "unable to lock HW IRQ %lu for IRQ\n",
854 d->hwirq);
3c0227d2
RV
855 clk_enable(nmk_chip->clk);
856 nmk_gpio_irq_unmask(d);
2ec1d359
AR
857 return 0;
858}
859
3c0227d2
RV
860static void nmk_gpio_irq_shutdown(struct irq_data *d)
861{
862 struct nmk_gpio_chip *nmk_chip = irq_data_get_irq_chip_data(d);
863
864 nmk_gpio_irq_mask(d);
865 clk_disable(nmk_chip->clk);
494336f3 866 gpio_unlock_as_irq(&nmk_chip->chip, d->hwirq);
3c0227d2
RV
867}
868
2ec1d359
AR
869static struct irq_chip nmk_gpio_irq_chip = {
870 .name = "Nomadik-GPIO",
f272c00e
LB
871 .irq_ack = nmk_gpio_irq_ack,
872 .irq_mask = nmk_gpio_irq_mask,
873 .irq_unmask = nmk_gpio_irq_unmask,
874 .irq_set_type = nmk_gpio_irq_set_type,
875 .irq_set_wake = nmk_gpio_irq_set_wake,
3c0227d2
RV
876 .irq_startup = nmk_gpio_irq_startup,
877 .irq_shutdown = nmk_gpio_irq_shutdown,
4921e745 878 .flags = IRQCHIP_MASK_ON_SUSPEND,
2ec1d359
AR
879};
880
33b744b3
RV
881static void __nmk_gpio_irq_handler(unsigned int irq, struct irq_desc *desc,
882 u32 status)
2ec1d359
AR
883{
884 struct nmk_gpio_chip *nmk_chip;
6845664a 885 struct irq_chip *host_chip = irq_get_chip(irq);
2ec1d359 886
adfed159 887 chained_irq_enter(host_chip, desc);
aaedaa2b 888
6845664a 889 nmk_chip = irq_get_handler_data(irq);
33b744b3
RV
890 while (status) {
891 int bit = __ffs(status);
892
95f0bc9b 893 generic_handle_irq(irq_find_mapping(nmk_chip->domain, bit));
33b744b3 894 status &= ~BIT(bit);
2ec1d359 895 }
aaedaa2b 896
adfed159 897 chained_irq_exit(host_chip, desc);
2ec1d359
AR
898}
899
33b744b3
RV
900static void nmk_gpio_irq_handler(unsigned int irq, struct irq_desc *desc)
901{
6845664a 902 struct nmk_gpio_chip *nmk_chip = irq_get_handler_data(irq);
3c0227d2
RV
903 u32 status;
904
905 clk_enable(nmk_chip->clk);
906 status = readl(nmk_chip->addr + NMK_GPIO_IS);
907 clk_disable(nmk_chip->clk);
33b744b3
RV
908
909 __nmk_gpio_irq_handler(irq, desc, status);
910}
911
912static void nmk_gpio_secondary_irq_handler(unsigned int irq,
913 struct irq_desc *desc)
914{
6845664a 915 struct nmk_gpio_chip *nmk_chip = irq_get_handler_data(irq);
33b744b3
RV
916 u32 status = nmk_chip->get_secondary_status(nmk_chip->bank);
917
918 __nmk_gpio_irq_handler(irq, desc, status);
919}
920
2ec1d359
AR
921static int nmk_gpio_init_irq(struct nmk_gpio_chip *nmk_chip)
922{
6845664a
TG
923 irq_set_chained_handler(nmk_chip->parent_irq, nmk_gpio_irq_handler);
924 irq_set_handler_data(nmk_chip->parent_irq, nmk_chip);
33b744b3
RV
925
926 if (nmk_chip->secondary_parent_irq >= 0) {
6845664a 927 irq_set_chained_handler(nmk_chip->secondary_parent_irq,
33b744b3 928 nmk_gpio_secondary_irq_handler);
6845664a 929 irq_set_handler_data(nmk_chip->secondary_parent_irq, nmk_chip);
33b744b3
RV
930 }
931
2ec1d359
AR
932 return 0;
933}
934
935/* I/O Functions */
dbfe8ca2
LW
936
937static int nmk_gpio_request(struct gpio_chip *chip, unsigned offset)
938{
939 /*
940 * Map back to global GPIO space and request muxing, the direction
941 * parameter does not matter for this controller.
942 */
943 int gpio = chip->base + offset;
944
945 return pinctrl_request_gpio(gpio);
946}
947
948static void nmk_gpio_free(struct gpio_chip *chip, unsigned offset)
949{
950 int gpio = chip->base + offset;
951
952 pinctrl_free_gpio(gpio);
953}
954
2ec1d359
AR
955static int nmk_gpio_make_input(struct gpio_chip *chip, unsigned offset)
956{
957 struct nmk_gpio_chip *nmk_chip =
958 container_of(chip, struct nmk_gpio_chip, chip);
959
3c0227d2
RV
960 clk_enable(nmk_chip->clk);
961
2ec1d359 962 writel(1 << offset, nmk_chip->addr + NMK_GPIO_DIRC);
3c0227d2
RV
963
964 clk_disable(nmk_chip->clk);
965
2ec1d359
AR
966 return 0;
967}
968
2ec1d359
AR
969static int nmk_gpio_get_input(struct gpio_chip *chip, unsigned offset)
970{
971 struct nmk_gpio_chip *nmk_chip =
972 container_of(chip, struct nmk_gpio_chip, chip);
973 u32 bit = 1 << offset;
3c0227d2
RV
974 int value;
975
976 clk_enable(nmk_chip->clk);
2ec1d359 977
3c0227d2 978 value = (readl(nmk_chip->addr + NMK_GPIO_DAT) & bit) != 0;
2ec1d359 979
3c0227d2
RV
980 clk_disable(nmk_chip->clk);
981
982 return value;
2ec1d359
AR
983}
984
985static void nmk_gpio_set_output(struct gpio_chip *chip, unsigned offset,
986 int val)
987{
988 struct nmk_gpio_chip *nmk_chip =
989 container_of(chip, struct nmk_gpio_chip, chip);
2ec1d359 990
3c0227d2
RV
991 clk_enable(nmk_chip->clk);
992
6720db7c 993 __nmk_gpio_set_output(nmk_chip, offset, val);
3c0227d2
RV
994
995 clk_disable(nmk_chip->clk);
2ec1d359
AR
996}
997
6647c6c0
RV
998static int nmk_gpio_make_output(struct gpio_chip *chip, unsigned offset,
999 int val)
1000{
1001 struct nmk_gpio_chip *nmk_chip =
1002 container_of(chip, struct nmk_gpio_chip, chip);
1003
3c0227d2
RV
1004 clk_enable(nmk_chip->clk);
1005
6720db7c 1006 __nmk_gpio_make_output(nmk_chip, offset, val);
6647c6c0 1007
3c0227d2
RV
1008 clk_disable(nmk_chip->clk);
1009
6647c6c0
RV
1010 return 0;
1011}
1012
0d2aec9c
RV
1013static int nmk_gpio_to_irq(struct gpio_chip *chip, unsigned offset)
1014{
1015 struct nmk_gpio_chip *nmk_chip =
1016 container_of(chip, struct nmk_gpio_chip, chip);
1017
268300be 1018 return irq_create_mapping(nmk_chip->domain, offset);
0d2aec9c
RV
1019}
1020
d0b543c7
RV
1021#ifdef CONFIG_DEBUG_FS
1022
1023#include <linux/seq_file.h>
1024
2249b19f
JNG
1025static void nmk_gpio_dbg_show_one(struct seq_file *s,
1026 struct pinctrl_dev *pctldev, struct gpio_chip *chip,
1027 unsigned offset, unsigned gpio)
d0b543c7 1028{
6f4350a6 1029 const char *label = gpiochip_is_requested(chip, offset);
d0b543c7
RV
1030 struct nmk_gpio_chip *nmk_chip =
1031 container_of(chip, struct nmk_gpio_chip, chip);
6f4350a6
LW
1032 int mode;
1033 bool is_out;
1034 bool pull;
1035 u32 bit = 1 << offset;
d0b543c7
RV
1036 const char *modes[] = {
1037 [NMK_GPIO_ALT_GPIO] = "gpio",
1038 [NMK_GPIO_ALT_A] = "altA",
1039 [NMK_GPIO_ALT_B] = "altB",
1040 [NMK_GPIO_ALT_C] = "altC",
2249b19f
JNG
1041 [NMK_GPIO_ALT_C+1] = "altC1",
1042 [NMK_GPIO_ALT_C+2] = "altC2",
1043 [NMK_GPIO_ALT_C+3] = "altC3",
1044 [NMK_GPIO_ALT_C+4] = "altC4",
d0b543c7
RV
1045 };
1046
3c0227d2 1047 clk_enable(nmk_chip->clk);
6f4350a6
LW
1048 is_out = !!(readl(nmk_chip->addr + NMK_GPIO_DIR) & bit);
1049 pull = !(readl(nmk_chip->addr + NMK_GPIO_PDIS) & bit);
1050 mode = nmk_gpio_get_mode(gpio);
2249b19f
JNG
1051 if ((mode == NMK_GPIO_ALT_C) && pctldev)
1052 mode = nmk_prcm_gpiocr_get_mode(pctldev, gpio);
6f4350a6
LW
1053
1054 seq_printf(s, " gpio-%-3d (%-20.20s) %s %s %s %s",
1055 gpio, label ?: "(none)",
1056 is_out ? "out" : "in ",
1057 chip->get
1058 ? (chip->get(chip, offset) ? "hi" : "lo")
1059 : "? ",
1060 (mode < 0) ? "unknown" : modes[mode],
1061 pull ? "pull" : "none");
1062
4705845b
LW
1063 if (!is_out) {
1064 int irq = gpio_to_irq(gpio);
6f4350a6
LW
1065 struct irq_desc *desc = irq_to_desc(irq);
1066
1067 /* This races with request_irq(), set_irq_type(),
1068 * and set_irq_wake() ... but those are "rare".
1069 */
4705845b 1070 if (irq > 0 && desc && desc->action) {
6f4350a6
LW
1071 char *trigger;
1072 u32 bitmask = nmk_gpio_get_bitmask(gpio);
1073
1074 if (nmk_chip->edge_rising & bitmask)
1075 trigger = "edge-rising";
1076 else if (nmk_chip->edge_falling & bitmask)
1077 trigger = "edge-falling";
1078 else
1079 trigger = "edge-undefined";
1080
1081 seq_printf(s, " irq-%d %s%s",
1082 irq, trigger,
1083 irqd_is_wakeup_set(&desc->irq_data)
1084 ? " wakeup" : "");
8ea72a30 1085 }
6f4350a6
LW
1086 }
1087 clk_disable(nmk_chip->clk);
1088}
1089
1090static void nmk_gpio_dbg_show(struct seq_file *s, struct gpio_chip *chip)
1091{
1092 unsigned i;
1093 unsigned gpio = chip->base;
8ea72a30 1094
6f4350a6 1095 for (i = 0; i < chip->ngpio; i++, gpio++) {
2249b19f 1096 nmk_gpio_dbg_show_one(s, NULL, chip, i, gpio);
d0b543c7
RV
1097 seq_printf(s, "\n");
1098 }
1099}
1100
1101#else
6f4350a6 1102static inline void nmk_gpio_dbg_show_one(struct seq_file *s,
2249b19f 1103 struct pinctrl_dev *pctldev,
6f4350a6
LW
1104 struct gpio_chip *chip,
1105 unsigned offset, unsigned gpio)
1106{
1107}
d0b543c7
RV
1108#define nmk_gpio_dbg_show NULL
1109#endif
1110
2ec1d359
AR
1111/* This structure is replicated for each GPIO block allocated at probe time */
1112static struct gpio_chip nmk_gpio_template = {
dbfe8ca2
LW
1113 .request = nmk_gpio_request,
1114 .free = nmk_gpio_free,
2ec1d359
AR
1115 .direction_input = nmk_gpio_make_input,
1116 .get = nmk_gpio_get_input,
1117 .direction_output = nmk_gpio_make_output,
1118 .set = nmk_gpio_set_output,
0d2aec9c 1119 .to_irq = nmk_gpio_to_irq,
d0b543c7 1120 .dbg_show = nmk_gpio_dbg_show,
9fb1f39e 1121 .can_sleep = false,
2ec1d359
AR
1122};
1123
3c0227d2
RV
1124void nmk_gpio_clocks_enable(void)
1125{
1126 int i;
1127
1128 for (i = 0; i < NUM_BANKS; i++) {
1129 struct nmk_gpio_chip *chip = nmk_gpio_chips[i];
1130
1131 if (!chip)
1132 continue;
1133
1134 clk_enable(chip->clk);
1135 }
1136}
1137
1138void nmk_gpio_clocks_disable(void)
1139{
1140 int i;
1141
1142 for (i = 0; i < NUM_BANKS; i++) {
1143 struct nmk_gpio_chip *chip = nmk_gpio_chips[i];
1144
1145 if (!chip)
1146 continue;
1147
1148 clk_disable(chip->clk);
1149 }
1150}
1151
b9df468d
RV
1152/*
1153 * Called from the suspend/resume path to only keep the real wakeup interrupts
1154 * (those that have had set_irq_wake() called on them) as wakeup interrupts,
1155 * and not the rest of the interrupts which we needed to have as wakeups for
1156 * cpuidle.
1157 *
1158 * PM ops are not used since this needs to be done at the end, after all the
1159 * other drivers are done with their suspend callbacks.
1160 */
1161void nmk_gpio_wakeups_suspend(void)
1162{
1163 int i;
1164
1165 for (i = 0; i < NUM_BANKS; i++) {
1166 struct nmk_gpio_chip *chip = nmk_gpio_chips[i];
1167
1168 if (!chip)
1169 break;
1170
3c0227d2
RV
1171 clk_enable(chip->clk);
1172
b9df468d
RV
1173 writel(chip->rwimsc & chip->real_wake,
1174 chip->addr + NMK_GPIO_RWIMSC);
1175 writel(chip->fwimsc & chip->real_wake,
1176 chip->addr + NMK_GPIO_FWIMSC);
1177
3c0227d2 1178 clk_disable(chip->clk);
b9df468d
RV
1179 }
1180}
1181
1182void nmk_gpio_wakeups_resume(void)
1183{
1184 int i;
1185
1186 for (i = 0; i < NUM_BANKS; i++) {
1187 struct nmk_gpio_chip *chip = nmk_gpio_chips[i];
1188
1189 if (!chip)
1190 break;
1191
3c0227d2
RV
1192 clk_enable(chip->clk);
1193
b9df468d
RV
1194 writel(chip->rwimsc, chip->addr + NMK_GPIO_RWIMSC);
1195 writel(chip->fwimsc, chip->addr + NMK_GPIO_FWIMSC);
1196
3c0227d2 1197 clk_disable(chip->clk);
b9df468d
RV
1198 }
1199}
1200
bc6f5cf6
RA
1201/*
1202 * Read the pull up/pull down status.
1203 * A bit set in 'pull_up' means that pull up
1204 * is selected if pull is enabled in PDIS register.
1205 * Note: only pull up/down set via this driver can
1206 * be detected due to HW limitations.
1207 */
1208void nmk_gpio_read_pull(int gpio_bank, u32 *pull_up)
1209{
1210 if (gpio_bank < NUM_BANKS) {
1211 struct nmk_gpio_chip *chip = nmk_gpio_chips[gpio_bank];
1212
1213 if (!chip)
1214 return;
1215
1216 *pull_up = chip->pull_up;
1217 }
1218}
1219
5212d096
AL
1220static int nmk_gpio_irq_map(struct irq_domain *d, unsigned int irq,
1221 irq_hw_number_t hwirq)
a60b57ed
LJ
1222{
1223 struct nmk_gpio_chip *nmk_chip = d->host_data;
1224
1225 if (!nmk_chip)
1226 return -EINVAL;
1227
1228 irq_set_chip_and_handler(irq, &nmk_gpio_irq_chip, handle_edge_irq);
1229 set_irq_flags(irq, IRQF_VALID);
1230 irq_set_chip_data(irq, nmk_chip);
1231 irq_set_irq_type(irq, IRQ_TYPE_EDGE_FALLING);
1232
1233 return 0;
1234}
1235
2230a36e 1236static const struct irq_domain_ops nmk_gpio_irq_simple_ops = {
a60b57ed
LJ
1237 .map = nmk_gpio_irq_map,
1238 .xlate = irq_domain_xlate_twocell,
1239};
1240
150632b0 1241static int nmk_gpio_probe(struct platform_device *dev)
2ec1d359 1242{
f4b3f523 1243 struct nmk_gpio_platform_data *pdata;
513c27f8 1244 struct device_node *np = dev->dev.of_node;
2ec1d359
AR
1245 struct nmk_gpio_chip *nmk_chip;
1246 struct gpio_chip *chip;
3e3c62ca 1247 struct resource *res;
af7dc228 1248 struct clk *clk;
33b744b3 1249 int secondary_irq;
8d91771c 1250 void __iomem *base;
3e3c62ca 1251 int irq;
2ec1d359
AR
1252 int ret;
1253
f4b3f523
LW
1254 pdata = devm_kzalloc(&dev->dev, sizeof(*pdata), GFP_KERNEL);
1255 if (!pdata)
1256 return -ENOMEM;
513c27f8 1257
f4b3f523
LW
1258 if (of_get_property(np, "st,supports-sleepmode", NULL))
1259 pdata->supports_sleepmode = true;
513c27f8 1260
f4b3f523
LW
1261 if (of_property_read_u32(np, "gpio-bank", &dev->id)) {
1262 dev_err(&dev->dev, "gpio-bank property not found\n");
1263 return -EINVAL;
513c27f8 1264 }
3e3c62ca 1265
f4b3f523
LW
1266 pdata->first_gpio = dev->id * NMK_GPIO_PER_CHIP;
1267 pdata->num_gpio = NMK_GPIO_PER_CHIP;
1268
3e3c62ca 1269 irq = platform_get_irq(dev, 0);
50f690d8
LW
1270 if (irq < 0)
1271 return irq;
3e3c62ca 1272
33b744b3 1273 secondary_irq = platform_get_irq(dev, 1);
50f690d8
LW
1274 if (secondary_irq >= 0 && !pdata->get_secondary_status)
1275 return -EINVAL;
33b744b3 1276
690ebabb 1277 res = platform_get_resource(dev, IORESOURCE_MEM, 0);
9e0c1fb2 1278 base = devm_ioremap_resource(&dev->dev, res);
06991c28
LT
1279 if (IS_ERR(base))
1280 return PTR_ERR(base);
8d91771c 1281
5e754f33 1282 clk = devm_clk_get(&dev->dev, NULL);
50f690d8
LW
1283 if (IS_ERR(clk))
1284 return PTR_ERR(clk);
efec381c 1285 clk_prepare(clk);
af7dc228 1286
5e754f33 1287 nmk_chip = devm_kzalloc(&dev->dev, sizeof(*nmk_chip), GFP_KERNEL);
50f690d8
LW
1288 if (!nmk_chip)
1289 return -ENOMEM;
513c27f8 1290
2ec1d359
AR
1291 /*
1292 * The virt address in nmk_chip->addr is in the nomadik register space,
1293 * so we can simply convert the resource address, without remapping
1294 */
33b744b3 1295 nmk_chip->bank = dev->id;
af7dc228 1296 nmk_chip->clk = clk;
8d91771c 1297 nmk_chip->addr = base;
2ec1d359 1298 nmk_chip->chip = nmk_gpio_template;
3e3c62ca 1299 nmk_chip->parent_irq = irq;
33b744b3
RV
1300 nmk_chip->secondary_parent_irq = secondary_irq;
1301 nmk_chip->get_secondary_status = pdata->get_secondary_status;
01727e61 1302 nmk_chip->set_ioforce = pdata->set_ioforce;
33d78647 1303 nmk_chip->sleepmode = pdata->supports_sleepmode;
c0fcb8db 1304 spin_lock_init(&nmk_chip->lock);
2ec1d359
AR
1305
1306 chip = &nmk_chip->chip;
1307 chip->base = pdata->first_gpio;
e493e06f 1308 chip->ngpio = pdata->num_gpio;
8d568ae5 1309 chip->label = pdata->name ?: dev_name(&dev->dev);
2ec1d359
AR
1310 chip->dev = &dev->dev;
1311 chip->owner = THIS_MODULE;
1312
ebc6178d
RV
1313 clk_enable(nmk_chip->clk);
1314 nmk_chip->lowemi = readl_relaxed(nmk_chip->addr + NMK_GPIO_LOWEMI);
1315 clk_disable(nmk_chip->clk);
513c27f8
LJ
1316 chip->of_node = np;
1317
2ec1d359
AR
1318 ret = gpiochip_add(&nmk_chip->chip);
1319 if (ret)
50f690d8 1320 return ret;
2ec1d359 1321
01727e61
RV
1322 BUG_ON(nmk_chip->bank >= ARRAY_SIZE(nmk_gpio_chips));
1323
1324 nmk_gpio_chips[nmk_chip->bank] = nmk_chip;
513c27f8 1325
3e3c62ca 1326 platform_set_drvdata(dev, nmk_chip);
2ec1d359 1327
38843e29 1328 nmk_chip->domain = irq_domain_add_simple(np,
f4b3f523 1329 NMK_GPIO_PER_CHIP, 0,
6054b9ca 1330 &nmk_gpio_irq_simple_ops, nmk_chip);
a60b57ed 1331 if (!nmk_chip->domain) {
2ee38d4d 1332 dev_err(&dev->dev, "failed to create irqdomain\n");
50f690d8
LW
1333 /* Just do this, no matter if it fails */
1334 ret = gpiochip_remove(&nmk_chip->chip);
1335 return -ENOSYS;
a60b57ed
LJ
1336 }
1337
2ec1d359
AR
1338 nmk_gpio_init_irq(nmk_chip);
1339
513c27f8
LJ
1340 dev_info(&dev->dev, "at address %p\n", nmk_chip->addr);
1341
2ec1d359 1342 return 0;
2ec1d359
AR
1343}
1344
e98ea774
LW
1345static int nmk_get_groups_cnt(struct pinctrl_dev *pctldev)
1346{
1347 struct nmk_pinctrl *npct = pinctrl_dev_get_drvdata(pctldev);
1348
1349 return npct->soc->ngroups;
1350}
1351
1352static const char *nmk_get_group_name(struct pinctrl_dev *pctldev,
1353 unsigned selector)
1354{
1355 struct nmk_pinctrl *npct = pinctrl_dev_get_drvdata(pctldev);
1356
1357 return npct->soc->groups[selector].name;
1358}
1359
1360static int nmk_get_group_pins(struct pinctrl_dev *pctldev, unsigned selector,
1361 const unsigned **pins,
1362 unsigned *num_pins)
1363{
1364 struct nmk_pinctrl *npct = pinctrl_dev_get_drvdata(pctldev);
1365
1366 *pins = npct->soc->groups[selector].pins;
1367 *num_pins = npct->soc->groups[selector].npins;
1368 return 0;
1369}
1370
24cbdd75
LW
1371static struct pinctrl_gpio_range *
1372nmk_match_gpio_range(struct pinctrl_dev *pctldev, unsigned offset)
1373{
1374 struct nmk_pinctrl *npct = pinctrl_dev_get_drvdata(pctldev);
1375 int i;
1376
1377 for (i = 0; i < npct->soc->gpio_num_ranges; i++) {
1378 struct pinctrl_gpio_range *range;
1379
1380 range = &npct->soc->gpio_ranges[i];
1381 if (offset >= range->pin_base &&
1382 offset <= (range->pin_base + range->npins - 1))
1383 return range;
1384 }
1385 return NULL;
1386}
1387
e98ea774
LW
1388static void nmk_pin_dbg_show(struct pinctrl_dev *pctldev, struct seq_file *s,
1389 unsigned offset)
1390{
24cbdd75
LW
1391 struct pinctrl_gpio_range *range;
1392 struct gpio_chip *chip;
1393
1394 range = nmk_match_gpio_range(pctldev, offset);
1395 if (!range || !range->gc) {
1396 seq_printf(s, "invalid pin offset");
1397 return;
1398 }
1399 chip = range->gc;
2249b19f 1400 nmk_gpio_dbg_show_one(s, pctldev, chip, offset - chip->base, offset);
e98ea774
LW
1401}
1402
e32af889
GF
1403static void nmk_pinctrl_dt_free_map(struct pinctrl_dev *pctldev,
1404 struct pinctrl_map *map, unsigned num_maps)
1405{
1406 int i;
1407
1408 for (i = 0; i < num_maps; i++)
1409 if (map[i].type == PIN_MAP_TYPE_CONFIGS_PIN)
1410 kfree(map[i].data.configs.configs);
1411 kfree(map);
1412}
1413
1414static int nmk_dt_reserve_map(struct pinctrl_map **map, unsigned *reserved_maps,
1415 unsigned *num_maps, unsigned reserve)
1416{
1417 unsigned old_num = *reserved_maps;
1418 unsigned new_num = *num_maps + reserve;
1419 struct pinctrl_map *new_map;
1420
1421 if (old_num >= new_num)
1422 return 0;
1423
1424 new_map = krealloc(*map, sizeof(*new_map) * new_num, GFP_KERNEL);
1425 if (!new_map)
1426 return -ENOMEM;
1427
1428 memset(new_map + old_num, 0, (new_num - old_num) * sizeof(*new_map));
1429
1430 *map = new_map;
1431 *reserved_maps = new_num;
1432
1433 return 0;
1434}
1435
1436static int nmk_dt_add_map_mux(struct pinctrl_map **map, unsigned *reserved_maps,
1437 unsigned *num_maps, const char *group,
1438 const char *function)
1439{
1440 if (*num_maps == *reserved_maps)
1441 return -ENOSPC;
1442
1443 (*map)[*num_maps].type = PIN_MAP_TYPE_MUX_GROUP;
1444 (*map)[*num_maps].data.mux.group = group;
1445 (*map)[*num_maps].data.mux.function = function;
1446 (*num_maps)++;
1447
1448 return 0;
1449}
1450
1451static int nmk_dt_add_map_configs(struct pinctrl_map **map,
1452 unsigned *reserved_maps,
1453 unsigned *num_maps, const char *group,
1454 unsigned long *configs, unsigned num_configs)
1455{
1456 unsigned long *dup_configs;
1457
1458 if (*num_maps == *reserved_maps)
1459 return -ENOSPC;
1460
1461 dup_configs = kmemdup(configs, num_configs * sizeof(*dup_configs),
1462 GFP_KERNEL);
1463 if (!dup_configs)
1464 return -ENOMEM;
1465
1466 (*map)[*num_maps].type = PIN_MAP_TYPE_CONFIGS_PIN;
1467
1468 (*map)[*num_maps].data.configs.group_or_pin = group;
1469 (*map)[*num_maps].data.configs.configs = dup_configs;
1470 (*map)[*num_maps].data.configs.num_configs = num_configs;
1471 (*num_maps)++;
1472
1473 return 0;
1474}
1475
87ff934a
SK
1476#define NMK_CONFIG_PIN(x, y) { .property = x, .config = y, }
1477#define NMK_CONFIG_PIN_ARRAY(x, y) { .property = x, .choice = y, \
e32af889
GF
1478 .size = ARRAY_SIZE(y), }
1479
1480static const unsigned long nmk_pin_input_modes[] = {
1481 PIN_INPUT_NOPULL,
1482 PIN_INPUT_PULLUP,
1483 PIN_INPUT_PULLDOWN,
1484};
1485
1486static const unsigned long nmk_pin_output_modes[] = {
1487 PIN_OUTPUT_LOW,
1488 PIN_OUTPUT_HIGH,
1489 PIN_DIR_OUTPUT,
1490};
1491
1492static const unsigned long nmk_pin_sleep_modes[] = {
1493 PIN_SLEEPMODE_DISABLED,
1494 PIN_SLEEPMODE_ENABLED,
1495};
1496
1497static const unsigned long nmk_pin_sleep_input_modes[] = {
1498 PIN_SLPM_INPUT_NOPULL,
1499 PIN_SLPM_INPUT_PULLUP,
1500 PIN_SLPM_INPUT_PULLDOWN,
1501 PIN_SLPM_DIR_INPUT,
1502};
1503
1504static const unsigned long nmk_pin_sleep_output_modes[] = {
1505 PIN_SLPM_OUTPUT_LOW,
1506 PIN_SLPM_OUTPUT_HIGH,
1507 PIN_SLPM_DIR_OUTPUT,
1508};
1509
1510static const unsigned long nmk_pin_sleep_wakeup_modes[] = {
1511 PIN_SLPM_WAKEUP_DISABLE,
1512 PIN_SLPM_WAKEUP_ENABLE,
1513};
1514
1515static const unsigned long nmk_pin_gpio_modes[] = {
1516 PIN_GPIOMODE_DISABLED,
1517 PIN_GPIOMODE_ENABLED,
1518};
1519
1520static const unsigned long nmk_pin_sleep_pdis_modes[] = {
1521 PIN_SLPM_PDIS_DISABLED,
1522 PIN_SLPM_PDIS_ENABLED,
1523};
1524
1525struct nmk_cfg_param {
1526 const char *property;
1527 unsigned long config;
1528 const unsigned long *choice;
1529 int size;
1530};
1531
1532static const struct nmk_cfg_param nmk_cfg_params[] = {
1533 NMK_CONFIG_PIN_ARRAY("ste,input", nmk_pin_input_modes),
1534 NMK_CONFIG_PIN_ARRAY("ste,output", nmk_pin_output_modes),
1535 NMK_CONFIG_PIN_ARRAY("ste,sleep", nmk_pin_sleep_modes),
1536 NMK_CONFIG_PIN_ARRAY("ste,sleep-input", nmk_pin_sleep_input_modes),
1537 NMK_CONFIG_PIN_ARRAY("ste,sleep-output", nmk_pin_sleep_output_modes),
1538 NMK_CONFIG_PIN_ARRAY("ste,sleep-wakeup", nmk_pin_sleep_wakeup_modes),
1539 NMK_CONFIG_PIN_ARRAY("ste,gpio", nmk_pin_gpio_modes),
1540 NMK_CONFIG_PIN_ARRAY("ste,sleep-pull-disable", nmk_pin_sleep_pdis_modes),
1541};
1542
1543static int nmk_dt_pin_config(int index, int val, unsigned long *config)
1544{
1545 int ret = 0;
1546
1547 if (nmk_cfg_params[index].choice == NULL)
1548 *config = nmk_cfg_params[index].config;
1549 else {
1550 /* test if out of range */
1551 if (val < nmk_cfg_params[index].size) {
1552 *config = nmk_cfg_params[index].config |
1553 nmk_cfg_params[index].choice[val];
1554 }
1555 }
1556 return ret;
1557}
1558
1559static const char *nmk_find_pin_name(struct pinctrl_dev *pctldev, const char *pin_name)
1560{
1561 int i, pin_number;
1562 struct nmk_pinctrl *npct = pinctrl_dev_get_drvdata(pctldev);
1563
1564 if (sscanf((char *)pin_name, "GPIO%d", &pin_number) == 1)
1565 for (i = 0; i < npct->soc->npins; i++)
1566 if (npct->soc->pins[i].number == pin_number)
1567 return npct->soc->pins[i].name;
1568 return NULL;
1569}
1570
1571static bool nmk_pinctrl_dt_get_config(struct device_node *np,
1572 unsigned long *configs)
1573{
1574 bool has_config = 0;
1575 unsigned long cfg = 0;
1576 int i, val, ret;
1577
1578 for (i = 0; i < ARRAY_SIZE(nmk_cfg_params); i++) {
1579 ret = of_property_read_u32(np,
1580 nmk_cfg_params[i].property, &val);
1581 if (ret != -EINVAL) {
1582 if (nmk_dt_pin_config(i, val, &cfg) == 0) {
1583 *configs |= cfg;
1584 has_config = 1;
1585 }
1586 }
1587 }
1588
1589 return has_config;
1590}
1591
2230a36e 1592static int nmk_pinctrl_dt_subnode_to_map(struct pinctrl_dev *pctldev,
e32af889
GF
1593 struct device_node *np,
1594 struct pinctrl_map **map,
1595 unsigned *reserved_maps,
1596 unsigned *num_maps)
1597{
1598 int ret;
1599 const char *function = NULL;
1600 unsigned long configs = 0;
1601 bool has_config = 0;
1602 unsigned reserve = 0;
1603 struct property *prop;
1604 const char *group, *gpio_name;
1605 struct device_node *np_config;
1606
1607 ret = of_property_read_string(np, "ste,function", &function);
1608 if (ret >= 0)
1609 reserve = 1;
1610
1611 has_config = nmk_pinctrl_dt_get_config(np, &configs);
1612
1613 np_config = of_parse_phandle(np, "ste,config", 0);
1614 if (np_config)
1615 has_config |= nmk_pinctrl_dt_get_config(np_config, &configs);
1616
1617 ret = of_property_count_strings(np, "ste,pins");
1618 if (ret < 0)
1619 goto exit;
1620
1621 if (has_config)
1622 reserve++;
1623
1624 reserve *= ret;
1625
1626 ret = nmk_dt_reserve_map(map, reserved_maps, num_maps, reserve);
1627 if (ret < 0)
1628 goto exit;
1629
1630 of_property_for_each_string(np, "ste,pins", prop, group) {
1631 if (function) {
1632 ret = nmk_dt_add_map_mux(map, reserved_maps, num_maps,
1633 group, function);
1634 if (ret < 0)
1635 goto exit;
1636 }
1637 if (has_config) {
1638 gpio_name = nmk_find_pin_name(pctldev, group);
1639
1640 ret = nmk_dt_add_map_configs(map, reserved_maps, num_maps,
1641 gpio_name, &configs, 1);
1642 if (ret < 0)
1643 goto exit;
1644 }
1645
1646 }
1647exit:
1648 return ret;
1649}
1650
2230a36e 1651static int nmk_pinctrl_dt_node_to_map(struct pinctrl_dev *pctldev,
e32af889
GF
1652 struct device_node *np_config,
1653 struct pinctrl_map **map, unsigned *num_maps)
1654{
1655 unsigned reserved_maps;
1656 struct device_node *np;
1657 int ret;
1658
1659 reserved_maps = 0;
1660 *map = NULL;
1661 *num_maps = 0;
1662
1663 for_each_child_of_node(np_config, np) {
1664 ret = nmk_pinctrl_dt_subnode_to_map(pctldev, np, map,
1665 &reserved_maps, num_maps);
1666 if (ret < 0) {
1667 nmk_pinctrl_dt_free_map(pctldev, *map, *num_maps);
1668 return ret;
1669 }
1670 }
1671
1672 return 0;
1673}
1674
022ab148 1675static const struct pinctrl_ops nmk_pinctrl_ops = {
e98ea774
LW
1676 .get_groups_count = nmk_get_groups_cnt,
1677 .get_group_name = nmk_get_group_name,
1678 .get_group_pins = nmk_get_group_pins,
1679 .pin_dbg_show = nmk_pin_dbg_show,
e32af889
GF
1680 .dt_node_to_map = nmk_pinctrl_dt_node_to_map,
1681 .dt_free_map = nmk_pinctrl_dt_free_map,
e98ea774
LW
1682};
1683
dbfe8ca2
LW
1684static int nmk_pmx_get_funcs_cnt(struct pinctrl_dev *pctldev)
1685{
1686 struct nmk_pinctrl *npct = pinctrl_dev_get_drvdata(pctldev);
1687
1688 return npct->soc->nfunctions;
1689}
1690
1691static const char *nmk_pmx_get_func_name(struct pinctrl_dev *pctldev,
1692 unsigned function)
1693{
1694 struct nmk_pinctrl *npct = pinctrl_dev_get_drvdata(pctldev);
1695
1696 return npct->soc->functions[function].name;
1697}
1698
1699static int nmk_pmx_get_func_groups(struct pinctrl_dev *pctldev,
1700 unsigned function,
1701 const char * const **groups,
1702 unsigned * const num_groups)
1703{
1704 struct nmk_pinctrl *npct = pinctrl_dev_get_drvdata(pctldev);
1705
1706 *groups = npct->soc->functions[function].groups;
1707 *num_groups = npct->soc->functions[function].ngroups;
1708
1709 return 0;
1710}
1711
1712static int nmk_pmx_enable(struct pinctrl_dev *pctldev, unsigned function,
1713 unsigned group)
1714{
1715 struct nmk_pinctrl *npct = pinctrl_dev_get_drvdata(pctldev);
1716 const struct nmk_pingroup *g;
1717 static unsigned int slpm[NUM_BANKS];
f84b4171 1718 unsigned long flags = 0;
dbfe8ca2
LW
1719 bool glitch;
1720 int ret = -EINVAL;
1721 int i;
1722
1723 g = &npct->soc->groups[group];
1724
1725 if (g->altsetting < 0)
1726 return -EINVAL;
1727
1728 dev_dbg(npct->dev, "enable group %s, %u pins\n", g->name, g->npins);
1729
daf73174
LW
1730 /*
1731 * If we're setting altfunc C by setting both AFSLA and AFSLB to 1,
1732 * we may pass through an undesired state. In this case we take
1733 * some extra care.
1734 *
1735 * Safe sequence used to switch IOs between GPIO and Alternate-C mode:
1736 * - Save SLPM registers (since we have a shadow register in the
1737 * nmk_chip we're using that as backup)
1738 * - Set SLPM=0 for the IOs you want to switch and others to 1
1739 * - Configure the GPIO registers for the IOs that are being switched
1740 * - Set IOFORCE=1
1741 * - Modify the AFLSA/B registers for the IOs that are being switched
1742 * - Set IOFORCE=0
1743 * - Restore SLPM registers
1744 * - Any spurious wake up event during switch sequence to be ignored
1745 * and cleared
1746 *
1747 * We REALLY need to save ALL slpm registers, because the external
1748 * IOFORCE will switch *all* ports to their sleepmode setting to as
1749 * to avoid glitches. (Not just one port!)
1750 */
c22df08c 1751 glitch = ((g->altsetting & NMK_GPIO_ALT_C) == NMK_GPIO_ALT_C);
dbfe8ca2
LW
1752
1753 if (glitch) {
1754 spin_lock_irqsave(&nmk_gpio_slpm_lock, flags);
1755
1756 /* Initially don't put any pins to sleep when switching */
1757 memset(slpm, 0xff, sizeof(slpm));
1758
1759 /*
1760 * Then mask the pins that need to be sleeping now when we're
1761 * switching to the ALT C function.
1762 */
1763 for (i = 0; i < g->npins; i++)
1764 slpm[g->pins[i] / NMK_GPIO_PER_CHIP] &= ~BIT(g->pins[i]);
1765 nmk_gpio_glitch_slpm_init(slpm);
1766 }
1767
1768 for (i = 0; i < g->npins; i++) {
1769 struct pinctrl_gpio_range *range;
1770 struct nmk_gpio_chip *nmk_chip;
1771 struct gpio_chip *chip;
1772 unsigned bit;
1773
1774 range = nmk_match_gpio_range(pctldev, g->pins[i]);
1775 if (!range) {
1776 dev_err(npct->dev,
1777 "invalid pin offset %d in group %s at index %d\n",
1778 g->pins[i], g->name, i);
1779 goto out_glitch;
1780 }
1781 if (!range->gc) {
1782 dev_err(npct->dev, "GPIO chip missing in range for pin offset %d in group %s at index %d\n",
1783 g->pins[i], g->name, i);
1784 goto out_glitch;
1785 }
1786 chip = range->gc;
1787 nmk_chip = container_of(chip, struct nmk_gpio_chip, chip);
1788 dev_dbg(npct->dev, "setting pin %d to altsetting %d\n", g->pins[i], g->altsetting);
1789
1790 clk_enable(nmk_chip->clk);
1791 bit = g->pins[i] % NMK_GPIO_PER_CHIP;
1792 /*
1793 * If the pin is switching to altfunc, and there was an
1794 * interrupt installed on it which has been lazy disabled,
1795 * actually mask the interrupt to prevent spurious interrupts
1796 * that would occur while the pin is under control of the
1797 * peripheral. Only SKE does this.
1798 */
1799 nmk_gpio_disable_lazy_irq(nmk_chip, bit);
1800
c22df08c
JNG
1801 __nmk_gpio_set_mode_safe(nmk_chip, bit,
1802 (g->altsetting & NMK_GPIO_ALT_C), glitch);
dbfe8ca2 1803 clk_disable(nmk_chip->clk);
c22df08c
JNG
1804
1805 /*
1806 * Call PRCM GPIOCR config function in case ALTC
1807 * has been selected:
1808 * - If selection is a ALTCx, some bits in PRCM GPIOCR registers
1809 * must be set.
1810 * - If selection is pure ALTC and previous selection was ALTCx,
1811 * then some bits in PRCM GPIOCR registers must be cleared.
1812 */
1813 if ((g->altsetting & NMK_GPIO_ALT_C) == NMK_GPIO_ALT_C)
1814 nmk_prcm_altcx_set_mode(npct, g->pins[i],
1815 g->altsetting >> NMK_GPIO_ALT_CX_SHIFT);
dbfe8ca2
LW
1816 }
1817
1818 /* When all pins are successfully reconfigured we get here */
1819 ret = 0;
1820
1821out_glitch:
1822 if (glitch) {
1823 nmk_gpio_glitch_slpm_restore(slpm);
1824 spin_unlock_irqrestore(&nmk_gpio_slpm_lock, flags);
1825 }
1826
1827 return ret;
1828}
1829
1830static void nmk_pmx_disable(struct pinctrl_dev *pctldev,
1831 unsigned function, unsigned group)
1832{
1833 struct nmk_pinctrl *npct = pinctrl_dev_get_drvdata(pctldev);
1834 const struct nmk_pingroup *g;
1835
1836 g = &npct->soc->groups[group];
1837
1838 if (g->altsetting < 0)
1839 return;
1840
1841 /* Poke out the mux, set the pin to some default state? */
1842 dev_dbg(npct->dev, "disable group %s, %u pins\n", g->name, g->npins);
1843}
1844
5212d096
AL
1845static int nmk_gpio_request_enable(struct pinctrl_dev *pctldev,
1846 struct pinctrl_gpio_range *range,
1847 unsigned offset)
dbfe8ca2
LW
1848{
1849 struct nmk_pinctrl *npct = pinctrl_dev_get_drvdata(pctldev);
1850 struct nmk_gpio_chip *nmk_chip;
1851 struct gpio_chip *chip;
1852 unsigned bit;
1853
1854 if (!range) {
1855 dev_err(npct->dev, "invalid range\n");
1856 return -EINVAL;
1857 }
1858 if (!range->gc) {
1859 dev_err(npct->dev, "missing GPIO chip in range\n");
1860 return -EINVAL;
1861 }
1862 chip = range->gc;
1863 nmk_chip = container_of(chip, struct nmk_gpio_chip, chip);
1864
1865 dev_dbg(npct->dev, "enable pin %u as GPIO\n", offset);
1866
1867 clk_enable(nmk_chip->clk);
1868 bit = offset % NMK_GPIO_PER_CHIP;
1869 /* There is no glitch when converting any pin to GPIO */
1870 __nmk_gpio_set_mode(nmk_chip, bit, NMK_GPIO_ALT_GPIO);
1871 clk_disable(nmk_chip->clk);
1872
1873 return 0;
1874}
1875
5212d096
AL
1876static void nmk_gpio_disable_free(struct pinctrl_dev *pctldev,
1877 struct pinctrl_gpio_range *range,
1878 unsigned offset)
dbfe8ca2
LW
1879{
1880 struct nmk_pinctrl *npct = pinctrl_dev_get_drvdata(pctldev);
1881
1882 dev_dbg(npct->dev, "disable pin %u as GPIO\n", offset);
1883 /* Set the pin to some default state, GPIO is usually default */
1884}
1885
022ab148 1886static const struct pinmux_ops nmk_pinmux_ops = {
dbfe8ca2
LW
1887 .get_functions_count = nmk_pmx_get_funcs_cnt,
1888 .get_function_name = nmk_pmx_get_func_name,
1889 .get_function_groups = nmk_pmx_get_func_groups,
1890 .enable = nmk_pmx_enable,
1891 .disable = nmk_pmx_disable,
1892 .gpio_request_enable = nmk_gpio_request_enable,
1893 .gpio_disable_free = nmk_gpio_disable_free,
1894};
1895
5212d096
AL
1896static int nmk_pin_config_get(struct pinctrl_dev *pctldev, unsigned pin,
1897 unsigned long *config)
d41af627
LW
1898{
1899 /* Not implemented */
1900 return -EINVAL;
1901}
1902
5212d096 1903static int nmk_pin_config_set(struct pinctrl_dev *pctldev, unsigned pin,
03b054e9 1904 unsigned long *configs, unsigned num_configs)
d41af627
LW
1905{
1906 static const char *pullnames[] = {
1907 [NMK_GPIO_PULL_NONE] = "none",
1908 [NMK_GPIO_PULL_UP] = "up",
1909 [NMK_GPIO_PULL_DOWN] = "down",
1910 [3] /* illegal */ = "??"
1911 };
1912 static const char *slpmnames[] = {
1913 [NMK_GPIO_SLPM_INPUT] = "input/wakeup",
1914 [NMK_GPIO_SLPM_NOCHANGE] = "no-change/no-wakeup",
1915 };
1916 struct nmk_pinctrl *npct = pinctrl_dev_get_drvdata(pctldev);
1917 struct nmk_gpio_chip *nmk_chip;
1918 struct pinctrl_gpio_range *range;
1919 struct gpio_chip *chip;
1920 unsigned bit;
03b054e9
SY
1921 pin_cfg_t cfg;
1922 int pull, slpm, output, val, i;
1923 bool lowemi, gpiomode, sleep;
d41af627
LW
1924
1925 range = nmk_match_gpio_range(pctldev, pin);
1926 if (!range) {
1927 dev_err(npct->dev, "invalid pin offset %d\n", pin);
1928 return -EINVAL;
1929 }
1930 if (!range->gc) {
1931 dev_err(npct->dev, "GPIO chip missing in range for pin %d\n",
1932 pin);
1933 return -EINVAL;
1934 }
1935 chip = range->gc;
1936 nmk_chip = container_of(chip, struct nmk_gpio_chip, chip);
1937
03b054e9 1938 for (i = 0; i < num_configs; i++) {
d41af627 1939 /*
03b054e9
SY
1940 * The pin config contains pin number and altfunction fields,
1941 * here we just ignore that part. It's being handled by the
1942 * framework and pinmux callback respectively.
d41af627 1943 */
03b054e9
SY
1944 cfg = (pin_cfg_t) configs[i];
1945 pull = PIN_PULL(cfg);
1946 slpm = PIN_SLPM(cfg);
1947 output = PIN_DIR(cfg);
1948 val = PIN_VAL(cfg);
1949 lowemi = PIN_LOWEMI(cfg);
1950 gpiomode = PIN_GPIOMODE(cfg);
1951 sleep = PIN_SLEEPMODE(cfg);
1952
1953 if (sleep) {
1954 int slpm_pull = PIN_SLPM_PULL(cfg);
1955 int slpm_output = PIN_SLPM_DIR(cfg);
1956 int slpm_val = PIN_SLPM_VAL(cfg);
1957
1958 /* All pins go into GPIO mode at sleep */
1959 gpiomode = true;
1960
1961 /*
1962 * The SLPM_* values are normal values + 1 to allow zero
1963 * to mean "same as normal".
1964 */
1965 if (slpm_pull)
1966 pull = slpm_pull - 1;
1967 if (slpm_output)
1968 output = slpm_output - 1;
1969 if (slpm_val)
1970 val = slpm_val - 1;
1971
1972 dev_dbg(nmk_chip->chip.dev,
1973 "pin %d: sleep pull %s, dir %s, val %s\n",
1974 pin,
1975 slpm_pull ? pullnames[pull] : "same",
1976 slpm_output ? (output ? "output" : "input")
1977 : "same",
1978 slpm_val ? (val ? "high" : "low") : "same");
1979 }
d41af627 1980
03b054e9
SY
1981 dev_dbg(nmk_chip->chip.dev,
1982 "pin %d [%#lx]: pull %s, slpm %s (%s%s), lowemi %s\n",
1983 pin, cfg, pullnames[pull], slpmnames[slpm],
1984 output ? "output " : "input",
1985 output ? (val ? "high" : "low") : "",
1986 lowemi ? "on" : "off");
d41af627 1987
03b054e9
SY
1988 clk_enable(nmk_chip->clk);
1989 bit = pin % NMK_GPIO_PER_CHIP;
1990 if (gpiomode)
1991 /* No glitch when going to GPIO mode */
1992 __nmk_gpio_set_mode(nmk_chip, bit, NMK_GPIO_ALT_GPIO);
1993 if (output)
1994 __nmk_gpio_make_output(nmk_chip, bit, val);
1995 else {
1996 __nmk_gpio_make_input(nmk_chip, bit);
1997 __nmk_gpio_set_pull(nmk_chip, bit, pull);
1998 }
1999 /* TODO: isn't this only applicable on output pins? */
2000 __nmk_gpio_set_lowemi(nmk_chip, bit, lowemi);
2001
2002 __nmk_gpio_set_slpm(nmk_chip, bit, slpm);
2003 clk_disable(nmk_chip->clk);
2004 } /* for each config */
d41af627 2005
d41af627
LW
2006 return 0;
2007}
2008
022ab148 2009static const struct pinconf_ops nmk_pinconf_ops = {
d41af627
LW
2010 .pin_config_get = nmk_pin_config_get,
2011 .pin_config_set = nmk_pin_config_set,
2012};
2013
e98ea774
LW
2014static struct pinctrl_desc nmk_pinctrl_desc = {
2015 .name = "pinctrl-nomadik",
2016 .pctlops = &nmk_pinctrl_ops,
dbfe8ca2 2017 .pmxops = &nmk_pinmux_ops,
d41af627 2018 .confops = &nmk_pinconf_ops,
e98ea774
LW
2019 .owner = THIS_MODULE,
2020};
2021
855f80cd 2022static const struct of_device_id nmk_pinctrl_match[] = {
6010d403 2023 {
3fd765a9 2024 .compatible = "stericsson,stn8815-pinctrl",
6010d403
LW
2025 .data = (void *)PINCTRL_NMK_STN8815,
2026 },
855f80cd 2027 {
6b09a834 2028 .compatible = "stericsson,db8500-pinctrl",
855f80cd
LJ
2029 .data = (void *)PINCTRL_NMK_DB8500,
2030 },
356d3e45 2031 {
6b09a834 2032 .compatible = "stericsson,db8540-pinctrl",
356d3e45
GF
2033 .data = (void *)PINCTRL_NMK_DB8540,
2034 },
855f80cd
LJ
2035 {},
2036};
2037
8d99b32d
JD
2038static int nmk_pinctrl_suspend(struct platform_device *pdev, pm_message_t state)
2039{
2040 struct nmk_pinctrl *npct;
2041
2042 npct = platform_get_drvdata(pdev);
2043 if (!npct)
2044 return -EINVAL;
2045
2046 return pinctrl_force_sleep(npct->pctl);
2047}
2048
2049static int nmk_pinctrl_resume(struct platform_device *pdev)
2050{
2051 struct nmk_pinctrl *npct;
2052
2053 npct = platform_get_drvdata(pdev);
2054 if (!npct)
2055 return -EINVAL;
2056
2057 return pinctrl_force_default(npct->pctl);
2058}
2059
150632b0 2060static int nmk_pinctrl_probe(struct platform_device *pdev)
e98ea774 2061{
f4b3f523 2062 const struct of_device_id *match;
855f80cd 2063 struct device_node *np = pdev->dev.of_node;
32e67eee 2064 struct device_node *prcm_np;
e98ea774 2065 struct nmk_pinctrl *npct;
855f80cd 2066 unsigned int version = 0;
e98ea774
LW
2067 int i;
2068
2069 npct = devm_kzalloc(&pdev->dev, sizeof(*npct), GFP_KERNEL);
2070 if (!npct)
2071 return -ENOMEM;
2072
f4b3f523
LW
2073 match = of_match_device(nmk_pinctrl_match, &pdev->dev);
2074 if (!match)
2075 return -ENODEV;
2076 version = (unsigned int) match->data;
855f80cd 2077
e98ea774 2078 /* Poke in other ASIC variants here */
f79c5ed9
LW
2079 if (version == PINCTRL_NMK_STN8815)
2080 nmk_pinctrl_stn8815_init(&npct->soc);
855f80cd 2081 if (version == PINCTRL_NMK_DB8500)
e98ea774 2082 nmk_pinctrl_db8500_init(&npct->soc);
45a1b531
PC
2083 if (version == PINCTRL_NMK_DB8540)
2084 nmk_pinctrl_db8540_init(&npct->soc);
e98ea774 2085
f4b3f523
LW
2086 prcm_np = of_parse_phandle(np, "prcm", 0);
2087 if (prcm_np)
2088 npct->prcm_base = of_iomap(prcm_np, 0);
32e67eee
LJ
2089 if (!npct->prcm_base) {
2090 if (version == PINCTRL_NMK_STN8815) {
2091 dev_info(&pdev->dev,
2092 "No PRCM base, "
2093 "assuming no ALT-Cx control is available\n");
2094 } else {
2095 dev_err(&pdev->dev, "missing PRCM base address\n");
2096 return -EINVAL;
f1671bf5 2097 }
f1671bf5
JA
2098 }
2099
e98ea774
LW
2100 /*
2101 * We need all the GPIO drivers to probe FIRST, or we will not be able
2102 * to obtain references to the struct gpio_chip * for them, and we
2103 * need this to proceed.
2104 */
2105 for (i = 0; i < npct->soc->gpio_num_ranges; i++) {
1d853ca5 2106 if (!nmk_gpio_chips[npct->soc->gpio_ranges[i].id]) {
e98ea774 2107 dev_warn(&pdev->dev, "GPIO chip %d not registered yet\n", i);
e98ea774
LW
2108 return -EPROBE_DEFER;
2109 }
1d853ca5 2110 npct->soc->gpio_ranges[i].gc = &nmk_gpio_chips[npct->soc->gpio_ranges[i].id]->chip;
e98ea774
LW
2111 }
2112
2113 nmk_pinctrl_desc.pins = npct->soc->pins;
2114 nmk_pinctrl_desc.npins = npct->soc->npins;
2115 npct->dev = &pdev->dev;
f1671bf5 2116
e98ea774
LW
2117 npct->pctl = pinctrl_register(&nmk_pinctrl_desc, &pdev->dev, npct);
2118 if (!npct->pctl) {
2119 dev_err(&pdev->dev, "could not register Nomadik pinctrl driver\n");
2120 return -EINVAL;
2121 }
2122
2123 /* We will handle a range of GPIO pins */
2124 for (i = 0; i < npct->soc->gpio_num_ranges; i++)
2125 pinctrl_add_gpio_range(npct->pctl, &npct->soc->gpio_ranges[i]);
2126
2127 platform_set_drvdata(pdev, npct);
2128 dev_info(&pdev->dev, "initialized Nomadik pin control driver\n");
2129
2130 return 0;
2131}
2132
513c27f8
LJ
2133static const struct of_device_id nmk_gpio_match[] = {
2134 { .compatible = "st,nomadik-gpio", },
2135 {}
2136};
2137
3e3c62ca
RV
2138static struct platform_driver nmk_gpio_driver = {
2139 .driver = {
2ec1d359
AR
2140 .owner = THIS_MODULE,
2141 .name = "gpio",
513c27f8 2142 .of_match_table = nmk_gpio_match,
5317e4d1 2143 },
2ec1d359 2144 .probe = nmk_gpio_probe,
2ec1d359
AR
2145};
2146
e98ea774
LW
2147static struct platform_driver nmk_pinctrl_driver = {
2148 .driver = {
2149 .owner = THIS_MODULE,
2150 .name = "pinctrl-nomadik",
855f80cd 2151 .of_match_table = nmk_pinctrl_match,
e98ea774
LW
2152 },
2153 .probe = nmk_pinctrl_probe,
8d99b32d
JD
2154#ifdef CONFIG_PM
2155 .suspend = nmk_pinctrl_suspend,
2156 .resume = nmk_pinctrl_resume,
2157#endif
e98ea774
LW
2158};
2159
2ec1d359
AR
2160static int __init nmk_gpio_init(void)
2161{
e98ea774
LW
2162 int ret;
2163
2164 ret = platform_driver_register(&nmk_gpio_driver);
2165 if (ret)
2166 return ret;
2167 return platform_driver_register(&nmk_pinctrl_driver);
2ec1d359
AR
2168}
2169
33f45ea9 2170core_initcall(nmk_gpio_init);
2ec1d359
AR
2171
2172MODULE_AUTHOR("Prafulla WADASKAR and Alessandro Rubini");
2173MODULE_DESCRIPTION("Nomadik GPIO Driver");
2174MODULE_LICENSE("GPL");