2 * Generic GPIO driver for logic cells found in the Nomadik SoC
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>
7 * Copyright (C) 2011-2013 Linus Walleij <linus.walleij@linaro.org>
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.
13 #include <linux/kernel.h>
14 #include <linux/module.h>
15 #include <linux/init.h>
16 #include <linux/device.h>
17 #include <linux/platform_device.h>
19 #include <linux/clk.h>
20 #include <linux/err.h>
21 #include <linux/gpio.h>
22 #include <linux/spinlock.h>
23 #include <linux/interrupt.h>
24 #include <linux/irq.h>
25 #include <linux/irqdomain.h>
26 #include <linux/irqchip/chained_irq.h>
27 #include <linux/slab.h>
28 #include <linux/of_device.h>
29 #include <linux/of_address.h>
30 #include <linux/pinctrl/machine.h>
31 #include <linux/pinctrl/pinctrl.h>
32 #include <linux/pinctrl/pinmux.h>
33 #include <linux/pinctrl/pinconf.h>
34 /* Since we request GPIOs from ourself */
35 #include <linux/pinctrl/consumer.h>
36 #include "pinctrl-nomadik.h"
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
42 * is currently used in the Nomadik and ux500.
44 * Symbols in this file are called "nmk_gpio" for "nomadik gpio"
48 * pin configurations are represented by 32-bit integers:
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
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)
63 * to facilitate the definition, the following macros are provided
65 * PIN_CFG_DEFAULT - default config (0):
66 * pull up/down = disabled
67 * sleep mode = input/wakeup
70 * SLPM direction = same as normal
71 * SLPM pull = same as normal
72 * SLPM value = same as normal
74 * PIN_CFG - default config with alternate function
77 typedef unsigned long pin_cfg_t
;
79 #define PIN_NUM_MASK 0x1ff
80 #define PIN_NUM(x) ((x) & PIN_NUM_MASK)
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)
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)
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
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 */
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)
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)
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)
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)
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)
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)
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)
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)
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)
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)
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)
187 #define PIN_CFG_DEFAULT (0)
189 #define PIN_CFG(num, alt) \
191 (PIN_NUM(num) | PIN_##alt))
193 #define PIN_CFG_INPUT(num, alt, pull) \
195 (PIN_NUM(num) | PIN_##alt | PIN_INPUT_##pull))
197 #define PIN_CFG_OUTPUT(num, alt, val) \
199 (PIN_NUM(num) | PIN_##alt | PIN_OUTPUT_##val))
202 * "nmk_gpio" and "NMK_GPIO" stand for "Nomadik GPIO", leaving
203 * the "gpio" namespace for generic and cross-machine functions
206 #define GPIO_BLOCK_SHIFT 5
207 #define NMK_GPIO_PER_CHIP (1 << GPIO_BLOCK_SHIFT)
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
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
234 /* Pull up/down values */
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
,
250 * Platform data to register a block: only the initial gpio/irq number.
252 struct nmk_gpio_platform_data
{
257 u32 (*get_secondary_status
)(unsigned int bank
);
258 void (*set_ioforce
)(bool enable
);
259 bool supports_sleepmode
;
262 struct nmk_gpio_chip
{
263 struct gpio_chip chip
;
264 struct irq_domain
*domain
;
268 unsigned int parent_irq
;
269 int secondary_parent_irq
;
270 u32 (*get_secondary_status
)(unsigned int bank
);
271 void (*set_ioforce
)(bool enable
);
274 /* Keep track of configured edges */
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
295 struct pinctrl_dev
*pctl
;
296 const struct nmk_pinctrl_soc_data
*soc
;
297 void __iomem
*prcm_base
;
300 static struct nmk_gpio_chip
*
301 nmk_gpio_chips
[DIV_ROUND_UP(ARCH_NR_GPIOS
, NMK_GPIO_PER_CHIP
)];
303 static DEFINE_SPINLOCK(nmk_gpio_slpm_lock
);
305 #define NUM_BANKS ARRAY_SIZE(nmk_gpio_chips)
307 static void __nmk_gpio_set_mode(struct nmk_gpio_chip
*nmk_chip
,
308 unsigned offset
, int gpio_mode
)
310 u32 bit
= 1 << offset
;
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
)
317 if (gpio_mode
& NMK_GPIO_ALT_B
)
319 writel(afunc
, nmk_chip
->addr
+ NMK_GPIO_AFSLA
);
320 writel(bfunc
, nmk_chip
->addr
+ NMK_GPIO_AFSLB
);
323 static void __nmk_gpio_set_slpm(struct nmk_gpio_chip
*nmk_chip
,
324 unsigned offset
, enum nmk_gpio_slpm mode
)
326 u32 bit
= 1 << offset
;
329 slpm
= readl(nmk_chip
->addr
+ NMK_GPIO_SLPC
);
330 if (mode
== NMK_GPIO_SLPM_NOCHANGE
)
334 writel(slpm
, nmk_chip
->addr
+ NMK_GPIO_SLPC
);
337 static void __nmk_gpio_set_pull(struct nmk_gpio_chip
*nmk_chip
,
338 unsigned offset
, enum nmk_gpio_pull pull
)
340 u32 bit
= 1 << offset
;
343 pdis
= readl(nmk_chip
->addr
+ NMK_GPIO_PDIS
);
344 if (pull
== NMK_GPIO_PULL_NONE
) {
346 nmk_chip
->pull_up
&= ~bit
;
351 writel(pdis
, nmk_chip
->addr
+ NMK_GPIO_PDIS
);
353 if (pull
== NMK_GPIO_PULL_UP
) {
354 nmk_chip
->pull_up
|= bit
;
355 writel(bit
, nmk_chip
->addr
+ NMK_GPIO_DATS
);
356 } else if (pull
== NMK_GPIO_PULL_DOWN
) {
357 nmk_chip
->pull_up
&= ~bit
;
358 writel(bit
, nmk_chip
->addr
+ NMK_GPIO_DATC
);
362 static void __nmk_gpio_set_lowemi(struct nmk_gpio_chip
*nmk_chip
,
363 unsigned offset
, bool lowemi
)
365 u32 bit
= BIT(offset
);
366 bool enabled
= nmk_chip
->lowemi
& bit
;
368 if (lowemi
== enabled
)
372 nmk_chip
->lowemi
|= bit
;
374 nmk_chip
->lowemi
&= ~bit
;
376 writel_relaxed(nmk_chip
->lowemi
,
377 nmk_chip
->addr
+ NMK_GPIO_LOWEMI
);
380 static void __nmk_gpio_make_input(struct nmk_gpio_chip
*nmk_chip
,
383 writel(1 << offset
, nmk_chip
->addr
+ NMK_GPIO_DIRC
);
386 static void __nmk_gpio_set_output(struct nmk_gpio_chip
*nmk_chip
,
387 unsigned offset
, int val
)
390 writel(1 << offset
, nmk_chip
->addr
+ NMK_GPIO_DATS
);
392 writel(1 << offset
, nmk_chip
->addr
+ NMK_GPIO_DATC
);
395 static void __nmk_gpio_make_output(struct nmk_gpio_chip
*nmk_chip
,
396 unsigned offset
, int val
)
398 writel(1 << offset
, nmk_chip
->addr
+ NMK_GPIO_DIRS
);
399 __nmk_gpio_set_output(nmk_chip
, offset
, val
);
402 static void __nmk_gpio_set_mode_safe(struct nmk_gpio_chip
*nmk_chip
,
403 unsigned offset
, int gpio_mode
,
406 u32 rwimsc
= nmk_chip
->rwimsc
;
407 u32 fwimsc
= nmk_chip
->fwimsc
;
409 if (glitch
&& nmk_chip
->set_ioforce
) {
410 u32 bit
= BIT(offset
);
412 /* Prevent spurious wakeups */
413 writel(rwimsc
& ~bit
, nmk_chip
->addr
+ NMK_GPIO_RWIMSC
);
414 writel(fwimsc
& ~bit
, nmk_chip
->addr
+ NMK_GPIO_FWIMSC
);
416 nmk_chip
->set_ioforce(true);
419 __nmk_gpio_set_mode(nmk_chip
, offset
, gpio_mode
);
421 if (glitch
&& nmk_chip
->set_ioforce
) {
422 nmk_chip
->set_ioforce(false);
424 writel(rwimsc
, nmk_chip
->addr
+ NMK_GPIO_RWIMSC
);
425 writel(fwimsc
, nmk_chip
->addr
+ NMK_GPIO_FWIMSC
);
430 nmk_gpio_disable_lazy_irq(struct nmk_gpio_chip
*nmk_chip
, unsigned offset
)
432 u32 falling
= nmk_chip
->fimsc
& BIT(offset
);
433 u32 rising
= nmk_chip
->rimsc
& BIT(offset
);
434 int gpio
= nmk_chip
->chip
.base
+ offset
;
435 int irq
= irq_find_mapping(nmk_chip
->domain
, offset
);
436 struct irq_data
*d
= irq_get_irq_data(irq
);
438 if (!rising
&& !falling
)
441 if (!d
|| !irqd_irq_disabled(d
))
445 nmk_chip
->rimsc
&= ~BIT(offset
);
446 writel_relaxed(nmk_chip
->rimsc
,
447 nmk_chip
->addr
+ NMK_GPIO_RIMSC
);
451 nmk_chip
->fimsc
&= ~BIT(offset
);
452 writel_relaxed(nmk_chip
->fimsc
,
453 nmk_chip
->addr
+ NMK_GPIO_FIMSC
);
456 dev_dbg(nmk_chip
->chip
.dev
, "%d: clearing interrupt mask\n", gpio
);
459 static void nmk_write_masked(void __iomem
*reg
, u32 mask
, u32 value
)
464 val
= ((val
& ~mask
) | (value
& mask
));
468 static void nmk_prcm_altcx_set_mode(struct nmk_pinctrl
*npct
,
469 unsigned offset
, unsigned alt_num
)
475 const struct prcm_gpiocr_altcx_pin_desc
*pin_desc
;
476 const u16
*gpiocr_regs
;
478 if (!npct
->prcm_base
)
481 if (alt_num
> PRCM_IDX_GPIOCR_ALTC_MAX
) {
482 dev_err(npct
->dev
, "PRCM GPIOCR: alternate-C%i is invalid\n",
487 for (i
= 0 ; i
< npct
->soc
->npins_altcx
; i
++) {
488 if (npct
->soc
->altcx_pins
[i
].pin
== offset
)
491 if (i
== npct
->soc
->npins_altcx
) {
492 dev_dbg(npct
->dev
, "PRCM GPIOCR: pin %i is not found\n",
497 pin_desc
= npct
->soc
->altcx_pins
+ i
;
498 gpiocr_regs
= npct
->soc
->prcm_gpiocr_registers
;
501 * If alt_num is NULL, just clear current ALTCx selection
502 * to make sure we come back to a pure ALTC selection
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
;
509 if (readl(npct
->prcm_base
+ reg
) & BIT(bit
)) {
510 nmk_write_masked(npct
->prcm_base
+ reg
, BIT(bit
), 0);
512 "PRCM GPIOCR: pin %i: alternate-C%i has been disabled\n",
520 alt_index
= alt_num
- 1;
521 if (pin_desc
->altcx
[alt_index
].used
== false) {
523 "PRCM GPIOCR: pin %i: alternate-C%i does not exist\n",
529 * Check if any other ALTCx functions are activated on this pin
530 * and disable it first.
532 for (i
= 0 ; i
< PRCM_IDX_GPIOCR_ALTC_MAX
; i
++) {
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
;
538 if (readl(npct
->prcm_base
+ reg
) & BIT(bit
)) {
539 nmk_write_masked(npct
->prcm_base
+ reg
, BIT(bit
), 0);
541 "PRCM GPIOCR: pin %i: alternate-C%i has been disabled\n",
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);
551 nmk_write_masked(npct
->prcm_base
+ reg
, BIT(bit
), BIT(bit
));
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
560 * - Modify the AFLSA/B registers for the IOs that are being switched
562 * - Restore SLPM registers
563 * - Any spurious wake up event during switch sequence to be ignored and
566 static void nmk_gpio_glitch_slpm_init(unsigned int *slpm
)
570 for (i
= 0; i
< NUM_BANKS
; i
++) {
571 struct nmk_gpio_chip
*chip
= nmk_gpio_chips
[i
];
572 unsigned int temp
= slpm
[i
];
577 clk_enable(chip
->clk
);
579 slpm
[i
] = readl(chip
->addr
+ NMK_GPIO_SLPC
);
580 writel(temp
, chip
->addr
+ NMK_GPIO_SLPC
);
584 static void nmk_gpio_glitch_slpm_restore(unsigned int *slpm
)
588 for (i
= 0; i
< NUM_BANKS
; i
++) {
589 struct nmk_gpio_chip
*chip
= nmk_gpio_chips
[i
];
594 writel(slpm
[i
], chip
->addr
+ NMK_GPIO_SLPC
);
596 clk_disable(chip
->clk
);
600 static int __maybe_unused
nmk_prcm_gpiocr_get_mode(struct pinctrl_dev
*pctldev
, int gpio
)
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
;
609 if (!npct
->prcm_base
)
610 return NMK_GPIO_ALT_C
;
612 for (i
= 0; i
< npct
->soc
->npins_altcx
; i
++) {
613 if (npct
->soc
->altcx_pins
[i
].pin
== gpio
)
616 if (i
== npct
->soc
->npins_altcx
)
617 return NMK_GPIO_ALT_C
;
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
;
625 if (readl(npct
->prcm_base
+ reg
) & BIT(bit
))
626 return NMK_GPIO_ALT_C
+i
+1;
629 return NMK_GPIO_ALT_C
;
632 int nmk_gpio_get_mode(int gpio
)
634 struct nmk_gpio_chip
*nmk_chip
;
635 u32 afunc
, bfunc
, bit
;
637 nmk_chip
= nmk_gpio_chips
[gpio
/ NMK_GPIO_PER_CHIP
];
641 bit
= 1 << (gpio
% NMK_GPIO_PER_CHIP
);
643 clk_enable(nmk_chip
->clk
);
645 afunc
= readl(nmk_chip
->addr
+ NMK_GPIO_AFSLA
) & bit
;
646 bfunc
= readl(nmk_chip
->addr
+ NMK_GPIO_AFSLB
) & bit
;
648 clk_disable(nmk_chip
->clk
);
650 return (afunc
? NMK_GPIO_ALT_A
: 0) | (bfunc
? NMK_GPIO_ALT_B
: 0);
652 EXPORT_SYMBOL(nmk_gpio_get_mode
);
656 static inline int nmk_gpio_get_bitmask(int gpio
)
658 return 1 << (gpio
% NMK_GPIO_PER_CHIP
);
661 static void nmk_gpio_irq_ack(struct irq_data
*d
)
663 struct nmk_gpio_chip
*nmk_chip
;
665 nmk_chip
= irq_data_get_irq_chip_data(d
);
669 clk_enable(nmk_chip
->clk
);
670 writel(nmk_gpio_get_bitmask(d
->hwirq
), nmk_chip
->addr
+ NMK_GPIO_IC
);
671 clk_disable(nmk_chip
->clk
);
674 enum nmk_gpio_irq_type
{
679 static void __nmk_gpio_irq_modify(struct nmk_gpio_chip
*nmk_chip
,
680 int gpio
, enum nmk_gpio_irq_type which
,
683 u32 bitmask
= nmk_gpio_get_bitmask(gpio
);
689 if (which
== NORMAL
) {
690 rimscreg
= NMK_GPIO_RIMSC
;
691 fimscreg
= NMK_GPIO_FIMSC
;
692 rimscval
= &nmk_chip
->rimsc
;
693 fimscval
= &nmk_chip
->fimsc
;
695 rimscreg
= NMK_GPIO_RWIMSC
;
696 fimscreg
= NMK_GPIO_FWIMSC
;
697 rimscval
= &nmk_chip
->rwimsc
;
698 fimscval
= &nmk_chip
->fwimsc
;
701 /* we must individually set/clear the two edges */
702 if (nmk_chip
->edge_rising
& bitmask
) {
704 *rimscval
|= bitmask
;
706 *rimscval
&= ~bitmask
;
707 writel(*rimscval
, nmk_chip
->addr
+ rimscreg
);
709 if (nmk_chip
->edge_falling
& bitmask
) {
711 *fimscval
|= bitmask
;
713 *fimscval
&= ~bitmask
;
714 writel(*fimscval
, nmk_chip
->addr
+ fimscreg
);
718 static void __nmk_gpio_set_wake(struct nmk_gpio_chip
*nmk_chip
,
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.
726 if (nmk_chip
->sleepmode
&& on
) {
727 __nmk_gpio_set_slpm(nmk_chip
, gpio
% NMK_GPIO_PER_CHIP
,
728 NMK_GPIO_SLPM_WAKEUP_ENABLE
);
731 __nmk_gpio_irq_modify(nmk_chip
, gpio
, WAKE
, on
);
734 static int nmk_gpio_irq_maskunmask(struct irq_data
*d
, bool enable
)
736 struct nmk_gpio_chip
*nmk_chip
;
740 nmk_chip
= irq_data_get_irq_chip_data(d
);
741 bitmask
= nmk_gpio_get_bitmask(d
->hwirq
);
745 clk_enable(nmk_chip
->clk
);
746 spin_lock_irqsave(&nmk_gpio_slpm_lock
, flags
);
747 spin_lock(&nmk_chip
->lock
);
749 __nmk_gpio_irq_modify(nmk_chip
, d
->hwirq
, NORMAL
, enable
);
751 if (!(nmk_chip
->real_wake
& bitmask
))
752 __nmk_gpio_set_wake(nmk_chip
, d
->hwirq
, enable
);
754 spin_unlock(&nmk_chip
->lock
);
755 spin_unlock_irqrestore(&nmk_gpio_slpm_lock
, flags
);
756 clk_disable(nmk_chip
->clk
);
761 static void nmk_gpio_irq_mask(struct irq_data
*d
)
763 nmk_gpio_irq_maskunmask(d
, false);
766 static void nmk_gpio_irq_unmask(struct irq_data
*d
)
768 nmk_gpio_irq_maskunmask(d
, true);
771 static int nmk_gpio_irq_set_wake(struct irq_data
*d
, unsigned int on
)
773 struct nmk_gpio_chip
*nmk_chip
;
777 nmk_chip
= irq_data_get_irq_chip_data(d
);
780 bitmask
= nmk_gpio_get_bitmask(d
->hwirq
);
782 clk_enable(nmk_chip
->clk
);
783 spin_lock_irqsave(&nmk_gpio_slpm_lock
, flags
);
784 spin_lock(&nmk_chip
->lock
);
786 if (irqd_irq_disabled(d
))
787 __nmk_gpio_set_wake(nmk_chip
, d
->hwirq
, on
);
790 nmk_chip
->real_wake
|= bitmask
;
792 nmk_chip
->real_wake
&= ~bitmask
;
794 spin_unlock(&nmk_chip
->lock
);
795 spin_unlock_irqrestore(&nmk_gpio_slpm_lock
, flags
);
796 clk_disable(nmk_chip
->clk
);
801 static int nmk_gpio_irq_set_type(struct irq_data
*d
, unsigned int type
)
803 bool enabled
= !irqd_irq_disabled(d
);
804 bool wake
= irqd_is_wakeup_set(d
);
805 struct nmk_gpio_chip
*nmk_chip
;
809 nmk_chip
= irq_data_get_irq_chip_data(d
);
810 bitmask
= nmk_gpio_get_bitmask(d
->hwirq
);
813 if (type
& IRQ_TYPE_LEVEL_HIGH
)
815 if (type
& IRQ_TYPE_LEVEL_LOW
)
818 clk_enable(nmk_chip
->clk
);
819 spin_lock_irqsave(&nmk_chip
->lock
, flags
);
822 __nmk_gpio_irq_modify(nmk_chip
, d
->hwirq
, NORMAL
, false);
825 __nmk_gpio_irq_modify(nmk_chip
, d
->hwirq
, WAKE
, false);
827 nmk_chip
->edge_rising
&= ~bitmask
;
828 if (type
& IRQ_TYPE_EDGE_RISING
)
829 nmk_chip
->edge_rising
|= bitmask
;
831 nmk_chip
->edge_falling
&= ~bitmask
;
832 if (type
& IRQ_TYPE_EDGE_FALLING
)
833 nmk_chip
->edge_falling
|= bitmask
;
836 __nmk_gpio_irq_modify(nmk_chip
, d
->hwirq
, NORMAL
, true);
839 __nmk_gpio_irq_modify(nmk_chip
, d
->hwirq
, WAKE
, true);
841 spin_unlock_irqrestore(&nmk_chip
->lock
, flags
);
842 clk_disable(nmk_chip
->clk
);
847 static unsigned int nmk_gpio_irq_startup(struct irq_data
*d
)
849 struct nmk_gpio_chip
*nmk_chip
= irq_data_get_irq_chip_data(d
);
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",
855 clk_enable(nmk_chip
->clk
);
856 nmk_gpio_irq_unmask(d
);
860 static void nmk_gpio_irq_shutdown(struct irq_data
*d
)
862 struct nmk_gpio_chip
*nmk_chip
= irq_data_get_irq_chip_data(d
);
864 nmk_gpio_irq_mask(d
);
865 clk_disable(nmk_chip
->clk
);
866 gpio_unlock_as_irq(&nmk_chip
->chip
, d
->hwirq
);
869 static struct irq_chip nmk_gpio_irq_chip
= {
870 .name
= "Nomadik-GPIO",
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
,
876 .irq_startup
= nmk_gpio_irq_startup
,
877 .irq_shutdown
= nmk_gpio_irq_shutdown
,
878 .flags
= IRQCHIP_MASK_ON_SUSPEND
,
881 static void __nmk_gpio_irq_handler(unsigned int irq
, struct irq_desc
*desc
,
884 struct nmk_gpio_chip
*nmk_chip
;
885 struct irq_chip
*host_chip
= irq_get_chip(irq
);
887 chained_irq_enter(host_chip
, desc
);
889 nmk_chip
= irq_get_handler_data(irq
);
891 int bit
= __ffs(status
);
893 generic_handle_irq(irq_find_mapping(nmk_chip
->domain
, bit
));
897 chained_irq_exit(host_chip
, desc
);
900 static void nmk_gpio_irq_handler(unsigned int irq
, struct irq_desc
*desc
)
902 struct nmk_gpio_chip
*nmk_chip
= irq_get_handler_data(irq
);
905 clk_enable(nmk_chip
->clk
);
906 status
= readl(nmk_chip
->addr
+ NMK_GPIO_IS
);
907 clk_disable(nmk_chip
->clk
);
909 __nmk_gpio_irq_handler(irq
, desc
, status
);
912 static void nmk_gpio_secondary_irq_handler(unsigned int irq
,
913 struct irq_desc
*desc
)
915 struct nmk_gpio_chip
*nmk_chip
= irq_get_handler_data(irq
);
916 u32 status
= nmk_chip
->get_secondary_status(nmk_chip
->bank
);
918 __nmk_gpio_irq_handler(irq
, desc
, status
);
921 static int nmk_gpio_init_irq(struct nmk_gpio_chip
*nmk_chip
)
923 irq_set_chained_handler(nmk_chip
->parent_irq
, nmk_gpio_irq_handler
);
924 irq_set_handler_data(nmk_chip
->parent_irq
, nmk_chip
);
926 if (nmk_chip
->secondary_parent_irq
>= 0) {
927 irq_set_chained_handler(nmk_chip
->secondary_parent_irq
,
928 nmk_gpio_secondary_irq_handler
);
929 irq_set_handler_data(nmk_chip
->secondary_parent_irq
, nmk_chip
);
937 static int nmk_gpio_request(struct gpio_chip
*chip
, unsigned offset
)
940 * Map back to global GPIO space and request muxing, the direction
941 * parameter does not matter for this controller.
943 int gpio
= chip
->base
+ offset
;
945 return pinctrl_request_gpio(gpio
);
948 static void nmk_gpio_free(struct gpio_chip
*chip
, unsigned offset
)
950 int gpio
= chip
->base
+ offset
;
952 pinctrl_free_gpio(gpio
);
955 static int nmk_gpio_make_input(struct gpio_chip
*chip
, unsigned offset
)
957 struct nmk_gpio_chip
*nmk_chip
=
958 container_of(chip
, struct nmk_gpio_chip
, chip
);
960 clk_enable(nmk_chip
->clk
);
962 writel(1 << offset
, nmk_chip
->addr
+ NMK_GPIO_DIRC
);
964 clk_disable(nmk_chip
->clk
);
969 static int nmk_gpio_get_input(struct gpio_chip
*chip
, unsigned offset
)
971 struct nmk_gpio_chip
*nmk_chip
=
972 container_of(chip
, struct nmk_gpio_chip
, chip
);
973 u32 bit
= 1 << offset
;
976 clk_enable(nmk_chip
->clk
);
978 value
= (readl(nmk_chip
->addr
+ NMK_GPIO_DAT
) & bit
) != 0;
980 clk_disable(nmk_chip
->clk
);
985 static void nmk_gpio_set_output(struct gpio_chip
*chip
, unsigned offset
,
988 struct nmk_gpio_chip
*nmk_chip
=
989 container_of(chip
, struct nmk_gpio_chip
, chip
);
991 clk_enable(nmk_chip
->clk
);
993 __nmk_gpio_set_output(nmk_chip
, offset
, val
);
995 clk_disable(nmk_chip
->clk
);
998 static int nmk_gpio_make_output(struct gpio_chip
*chip
, unsigned offset
,
1001 struct nmk_gpio_chip
*nmk_chip
=
1002 container_of(chip
, struct nmk_gpio_chip
, chip
);
1004 clk_enable(nmk_chip
->clk
);
1006 __nmk_gpio_make_output(nmk_chip
, offset
, val
);
1008 clk_disable(nmk_chip
->clk
);
1013 static int nmk_gpio_to_irq(struct gpio_chip
*chip
, unsigned offset
)
1015 struct nmk_gpio_chip
*nmk_chip
=
1016 container_of(chip
, struct nmk_gpio_chip
, chip
);
1018 return irq_create_mapping(nmk_chip
->domain
, offset
);
1021 #ifdef CONFIG_DEBUG_FS
1023 #include <linux/seq_file.h>
1025 static void nmk_gpio_dbg_show_one(struct seq_file
*s
,
1026 struct pinctrl_dev
*pctldev
, struct gpio_chip
*chip
,
1027 unsigned offset
, unsigned gpio
)
1029 const char *label
= gpiochip_is_requested(chip
, offset
);
1030 struct nmk_gpio_chip
*nmk_chip
=
1031 container_of(chip
, struct nmk_gpio_chip
, chip
);
1035 u32 bit
= 1 << offset
;
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",
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",
1047 clk_enable(nmk_chip
->clk
);
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
);
1051 if ((mode
== NMK_GPIO_ALT_C
) && pctldev
)
1052 mode
= nmk_prcm_gpiocr_get_mode(pctldev
, gpio
);
1054 seq_printf(s
, " gpio-%-3d (%-20.20s) %s %s %s %s",
1055 gpio
, label
?: "(none)",
1056 is_out
? "out" : "in ",
1058 ? (chip
->get(chip
, offset
) ? "hi" : "lo")
1060 (mode
< 0) ? "unknown" : modes
[mode
],
1061 pull
? "pull" : "none");
1064 int irq
= gpio_to_irq(gpio
);
1065 struct irq_desc
*desc
= irq_to_desc(irq
);
1067 /* This races with request_irq(), set_irq_type(),
1068 * and set_irq_wake() ... but those are "rare".
1070 if (irq
> 0 && desc
&& desc
->action
) {
1072 u32 bitmask
= nmk_gpio_get_bitmask(gpio
);
1074 if (nmk_chip
->edge_rising
& bitmask
)
1075 trigger
= "edge-rising";
1076 else if (nmk_chip
->edge_falling
& bitmask
)
1077 trigger
= "edge-falling";
1079 trigger
= "edge-undefined";
1081 seq_printf(s
, " irq-%d %s%s",
1083 irqd_is_wakeup_set(&desc
->irq_data
)
1087 clk_disable(nmk_chip
->clk
);
1090 static void nmk_gpio_dbg_show(struct seq_file
*s
, struct gpio_chip
*chip
)
1093 unsigned gpio
= chip
->base
;
1095 for (i
= 0; i
< chip
->ngpio
; i
++, gpio
++) {
1096 nmk_gpio_dbg_show_one(s
, NULL
, chip
, i
, gpio
);
1097 seq_printf(s
, "\n");
1102 static inline void nmk_gpio_dbg_show_one(struct seq_file
*s
,
1103 struct pinctrl_dev
*pctldev
,
1104 struct gpio_chip
*chip
,
1105 unsigned offset
, unsigned gpio
)
1108 #define nmk_gpio_dbg_show NULL
1111 /* This structure is replicated for each GPIO block allocated at probe time */
1112 static struct gpio_chip nmk_gpio_template
= {
1113 .request
= nmk_gpio_request
,
1114 .free
= nmk_gpio_free
,
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
,
1119 .to_irq
= nmk_gpio_to_irq
,
1120 .dbg_show
= nmk_gpio_dbg_show
,
1124 void nmk_gpio_clocks_enable(void)
1128 for (i
= 0; i
< NUM_BANKS
; i
++) {
1129 struct nmk_gpio_chip
*chip
= nmk_gpio_chips
[i
];
1134 clk_enable(chip
->clk
);
1138 void nmk_gpio_clocks_disable(void)
1142 for (i
= 0; i
< NUM_BANKS
; i
++) {
1143 struct nmk_gpio_chip
*chip
= nmk_gpio_chips
[i
];
1148 clk_disable(chip
->clk
);
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
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.
1161 void nmk_gpio_wakeups_suspend(void)
1165 for (i
= 0; i
< NUM_BANKS
; i
++) {
1166 struct nmk_gpio_chip
*chip
= nmk_gpio_chips
[i
];
1171 clk_enable(chip
->clk
);
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
);
1178 clk_disable(chip
->clk
);
1182 void nmk_gpio_wakeups_resume(void)
1186 for (i
= 0; i
< NUM_BANKS
; i
++) {
1187 struct nmk_gpio_chip
*chip
= nmk_gpio_chips
[i
];
1192 clk_enable(chip
->clk
);
1194 writel(chip
->rwimsc
, chip
->addr
+ NMK_GPIO_RWIMSC
);
1195 writel(chip
->fwimsc
, chip
->addr
+ NMK_GPIO_FWIMSC
);
1197 clk_disable(chip
->clk
);
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.
1208 void nmk_gpio_read_pull(int gpio_bank
, u32
*pull_up
)
1210 if (gpio_bank
< NUM_BANKS
) {
1211 struct nmk_gpio_chip
*chip
= nmk_gpio_chips
[gpio_bank
];
1216 *pull_up
= chip
->pull_up
;
1220 static int nmk_gpio_irq_map(struct irq_domain
*d
, unsigned int irq
,
1221 irq_hw_number_t hwirq
)
1223 struct nmk_gpio_chip
*nmk_chip
= d
->host_data
;
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
);
1236 static const struct irq_domain_ops nmk_gpio_irq_simple_ops
= {
1237 .map
= nmk_gpio_irq_map
,
1238 .xlate
= irq_domain_xlate_twocell
,
1241 static int nmk_gpio_probe(struct platform_device
*dev
)
1243 struct nmk_gpio_platform_data
*pdata
;
1244 struct device_node
*np
= dev
->dev
.of_node
;
1245 struct nmk_gpio_chip
*nmk_chip
;
1246 struct gpio_chip
*chip
;
1247 struct resource
*res
;
1254 pdata
= devm_kzalloc(&dev
->dev
, sizeof(*pdata
), GFP_KERNEL
);
1258 if (of_get_property(np
, "st,supports-sleepmode", NULL
))
1259 pdata
->supports_sleepmode
= true;
1261 if (of_property_read_u32(np
, "gpio-bank", &dev
->id
)) {
1262 dev_err(&dev
->dev
, "gpio-bank property not found\n");
1266 pdata
->first_gpio
= dev
->id
* NMK_GPIO_PER_CHIP
;
1267 pdata
->num_gpio
= NMK_GPIO_PER_CHIP
;
1269 irq
= platform_get_irq(dev
, 0);
1273 secondary_irq
= platform_get_irq(dev
, 1);
1274 if (secondary_irq
>= 0 && !pdata
->get_secondary_status
)
1277 res
= platform_get_resource(dev
, IORESOURCE_MEM
, 0);
1278 base
= devm_ioremap_resource(&dev
->dev
, res
);
1280 return PTR_ERR(base
);
1282 clk
= devm_clk_get(&dev
->dev
, NULL
);
1284 return PTR_ERR(clk
);
1287 nmk_chip
= devm_kzalloc(&dev
->dev
, sizeof(*nmk_chip
), GFP_KERNEL
);
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
1295 nmk_chip
->bank
= dev
->id
;
1296 nmk_chip
->clk
= clk
;
1297 nmk_chip
->addr
= base
;
1298 nmk_chip
->chip
= nmk_gpio_template
;
1299 nmk_chip
->parent_irq
= irq
;
1300 nmk_chip
->secondary_parent_irq
= secondary_irq
;
1301 nmk_chip
->get_secondary_status
= pdata
->get_secondary_status
;
1302 nmk_chip
->set_ioforce
= pdata
->set_ioforce
;
1303 nmk_chip
->sleepmode
= pdata
->supports_sleepmode
;
1304 spin_lock_init(&nmk_chip
->lock
);
1306 chip
= &nmk_chip
->chip
;
1307 chip
->base
= pdata
->first_gpio
;
1308 chip
->ngpio
= pdata
->num_gpio
;
1309 chip
->label
= pdata
->name
?: dev_name(&dev
->dev
);
1310 chip
->dev
= &dev
->dev
;
1311 chip
->owner
= THIS_MODULE
;
1313 clk_enable(nmk_chip
->clk
);
1314 nmk_chip
->lowemi
= readl_relaxed(nmk_chip
->addr
+ NMK_GPIO_LOWEMI
);
1315 clk_disable(nmk_chip
->clk
);
1318 ret
= gpiochip_add(&nmk_chip
->chip
);
1322 BUG_ON(nmk_chip
->bank
>= ARRAY_SIZE(nmk_gpio_chips
));
1324 nmk_gpio_chips
[nmk_chip
->bank
] = nmk_chip
;
1326 platform_set_drvdata(dev
, nmk_chip
);
1328 nmk_chip
->domain
= irq_domain_add_simple(np
,
1329 NMK_GPIO_PER_CHIP
, 0,
1330 &nmk_gpio_irq_simple_ops
, nmk_chip
);
1331 if (!nmk_chip
->domain
) {
1332 dev_err(&dev
->dev
, "failed to create irqdomain\n");
1333 /* Just do this, no matter if it fails */
1334 ret
= gpiochip_remove(&nmk_chip
->chip
);
1338 nmk_gpio_init_irq(nmk_chip
);
1340 dev_info(&dev
->dev
, "at address %p\n", nmk_chip
->addr
);
1345 static int nmk_get_groups_cnt(struct pinctrl_dev
*pctldev
)
1347 struct nmk_pinctrl
*npct
= pinctrl_dev_get_drvdata(pctldev
);
1349 return npct
->soc
->ngroups
;
1352 static const char *nmk_get_group_name(struct pinctrl_dev
*pctldev
,
1355 struct nmk_pinctrl
*npct
= pinctrl_dev_get_drvdata(pctldev
);
1357 return npct
->soc
->groups
[selector
].name
;
1360 static int nmk_get_group_pins(struct pinctrl_dev
*pctldev
, unsigned selector
,
1361 const unsigned **pins
,
1364 struct nmk_pinctrl
*npct
= pinctrl_dev_get_drvdata(pctldev
);
1366 *pins
= npct
->soc
->groups
[selector
].pins
;
1367 *num_pins
= npct
->soc
->groups
[selector
].npins
;
1371 static struct pinctrl_gpio_range
*
1372 nmk_match_gpio_range(struct pinctrl_dev
*pctldev
, unsigned offset
)
1374 struct nmk_pinctrl
*npct
= pinctrl_dev_get_drvdata(pctldev
);
1377 for (i
= 0; i
< npct
->soc
->gpio_num_ranges
; i
++) {
1378 struct pinctrl_gpio_range
*range
;
1380 range
= &npct
->soc
->gpio_ranges
[i
];
1381 if (offset
>= range
->pin_base
&&
1382 offset
<= (range
->pin_base
+ range
->npins
- 1))
1388 static void nmk_pin_dbg_show(struct pinctrl_dev
*pctldev
, struct seq_file
*s
,
1391 struct pinctrl_gpio_range
*range
;
1392 struct gpio_chip
*chip
;
1394 range
= nmk_match_gpio_range(pctldev
, offset
);
1395 if (!range
|| !range
->gc
) {
1396 seq_printf(s
, "invalid pin offset");
1400 nmk_gpio_dbg_show_one(s
, pctldev
, chip
, offset
- chip
->base
, offset
);
1403 static void nmk_pinctrl_dt_free_map(struct pinctrl_dev
*pctldev
,
1404 struct pinctrl_map
*map
, unsigned num_maps
)
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
);
1414 static int nmk_dt_reserve_map(struct pinctrl_map
**map
, unsigned *reserved_maps
,
1415 unsigned *num_maps
, unsigned reserve
)
1417 unsigned old_num
= *reserved_maps
;
1418 unsigned new_num
= *num_maps
+ reserve
;
1419 struct pinctrl_map
*new_map
;
1421 if (old_num
>= new_num
)
1424 new_map
= krealloc(*map
, sizeof(*new_map
) * new_num
, GFP_KERNEL
);
1428 memset(new_map
+ old_num
, 0, (new_num
- old_num
) * sizeof(*new_map
));
1431 *reserved_maps
= new_num
;
1436 static int nmk_dt_add_map_mux(struct pinctrl_map
**map
, unsigned *reserved_maps
,
1437 unsigned *num_maps
, const char *group
,
1438 const char *function
)
1440 if (*num_maps
== *reserved_maps
)
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
;
1451 static 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
)
1456 unsigned long *dup_configs
;
1458 if (*num_maps
== *reserved_maps
)
1461 dup_configs
= kmemdup(configs
, num_configs
* sizeof(*dup_configs
),
1466 (*map
)[*num_maps
].type
= PIN_MAP_TYPE_CONFIGS_PIN
;
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
;
1476 #define NMK_CONFIG_PIN(x, y) { .property = x, .config = y, }
1477 #define NMK_CONFIG_PIN_ARRAY(x, y) { .property = x, .choice = y, \
1478 .size = ARRAY_SIZE(y), }
1480 static const unsigned long nmk_pin_input_modes
[] = {
1486 static const unsigned long nmk_pin_output_modes
[] = {
1492 static const unsigned long nmk_pin_sleep_modes
[] = {
1493 PIN_SLEEPMODE_DISABLED
,
1494 PIN_SLEEPMODE_ENABLED
,
1497 static const unsigned long nmk_pin_sleep_input_modes
[] = {
1498 PIN_SLPM_INPUT_NOPULL
,
1499 PIN_SLPM_INPUT_PULLUP
,
1500 PIN_SLPM_INPUT_PULLDOWN
,
1504 static const unsigned long nmk_pin_sleep_output_modes
[] = {
1505 PIN_SLPM_OUTPUT_LOW
,
1506 PIN_SLPM_OUTPUT_HIGH
,
1507 PIN_SLPM_DIR_OUTPUT
,
1510 static const unsigned long nmk_pin_sleep_wakeup_modes
[] = {
1511 PIN_SLPM_WAKEUP_DISABLE
,
1512 PIN_SLPM_WAKEUP_ENABLE
,
1515 static const unsigned long nmk_pin_gpio_modes
[] = {
1516 PIN_GPIOMODE_DISABLED
,
1517 PIN_GPIOMODE_ENABLED
,
1520 static const unsigned long nmk_pin_sleep_pdis_modes
[] = {
1521 PIN_SLPM_PDIS_DISABLED
,
1522 PIN_SLPM_PDIS_ENABLED
,
1525 struct nmk_cfg_param
{
1526 const char *property
;
1527 unsigned long config
;
1528 const unsigned long *choice
;
1532 static 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
),
1543 static int nmk_dt_pin_config(int index
, int val
, unsigned long *config
)
1547 if (nmk_cfg_params
[index
].choice
== NULL
)
1548 *config
= nmk_cfg_params
[index
].config
;
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
];
1559 static const char *nmk_find_pin_name(struct pinctrl_dev
*pctldev
, const char *pin_name
)
1562 struct nmk_pinctrl
*npct
= pinctrl_dev_get_drvdata(pctldev
);
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
;
1571 static bool nmk_pinctrl_dt_get_config(struct device_node
*np
,
1572 unsigned long *configs
)
1574 bool has_config
= 0;
1575 unsigned long cfg
= 0;
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) {
1592 static int nmk_pinctrl_dt_subnode_to_map(struct pinctrl_dev
*pctldev
,
1593 struct device_node
*np
,
1594 struct pinctrl_map
**map
,
1595 unsigned *reserved_maps
,
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
;
1607 ret
= of_property_read_string(np
, "ste,function", &function
);
1611 has_config
= nmk_pinctrl_dt_get_config(np
, &configs
);
1613 np_config
= of_parse_phandle(np
, "ste,config", 0);
1615 has_config
|= nmk_pinctrl_dt_get_config(np_config
, &configs
);
1617 ret
= of_property_count_strings(np
, "ste,pins");
1626 ret
= nmk_dt_reserve_map(map
, reserved_maps
, num_maps
, reserve
);
1630 of_property_for_each_string(np
, "ste,pins", prop
, group
) {
1632 ret
= nmk_dt_add_map_mux(map
, reserved_maps
, num_maps
,
1638 gpio_name
= nmk_find_pin_name(pctldev
, group
);
1640 ret
= nmk_dt_add_map_configs(map
, reserved_maps
, num_maps
,
1641 gpio_name
, &configs
, 1);
1651 static int nmk_pinctrl_dt_node_to_map(struct pinctrl_dev
*pctldev
,
1652 struct device_node
*np_config
,
1653 struct pinctrl_map
**map
, unsigned *num_maps
)
1655 unsigned reserved_maps
;
1656 struct device_node
*np
;
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
);
1667 nmk_pinctrl_dt_free_map(pctldev
, *map
, *num_maps
);
1675 static const struct pinctrl_ops nmk_pinctrl_ops
= {
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
,
1680 .dt_node_to_map
= nmk_pinctrl_dt_node_to_map
,
1681 .dt_free_map
= nmk_pinctrl_dt_free_map
,
1684 static int nmk_pmx_get_funcs_cnt(struct pinctrl_dev
*pctldev
)
1686 struct nmk_pinctrl
*npct
= pinctrl_dev_get_drvdata(pctldev
);
1688 return npct
->soc
->nfunctions
;
1691 static const char *nmk_pmx_get_func_name(struct pinctrl_dev
*pctldev
,
1694 struct nmk_pinctrl
*npct
= pinctrl_dev_get_drvdata(pctldev
);
1696 return npct
->soc
->functions
[function
].name
;
1699 static int nmk_pmx_get_func_groups(struct pinctrl_dev
*pctldev
,
1701 const char * const **groups
,
1702 unsigned * const num_groups
)
1704 struct nmk_pinctrl
*npct
= pinctrl_dev_get_drvdata(pctldev
);
1706 *groups
= npct
->soc
->functions
[function
].groups
;
1707 *num_groups
= npct
->soc
->functions
[function
].ngroups
;
1712 static int nmk_pmx_enable(struct pinctrl_dev
*pctldev
, unsigned function
,
1715 struct nmk_pinctrl
*npct
= pinctrl_dev_get_drvdata(pctldev
);
1716 const struct nmk_pingroup
*g
;
1717 static unsigned int slpm
[NUM_BANKS
];
1718 unsigned long flags
= 0;
1723 g
= &npct
->soc
->groups
[group
];
1725 if (g
->altsetting
< 0)
1728 dev_dbg(npct
->dev
, "enable group %s, %u pins\n", g
->name
, g
->npins
);
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
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
1741 * - Modify the AFLSA/B registers for the IOs that are being switched
1743 * - Restore SLPM registers
1744 * - Any spurious wake up event during switch sequence to be ignored
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!)
1751 glitch
= ((g
->altsetting
& NMK_GPIO_ALT_C
) == NMK_GPIO_ALT_C
);
1754 spin_lock_irqsave(&nmk_gpio_slpm_lock
, flags
);
1756 /* Initially don't put any pins to sleep when switching */
1757 memset(slpm
, 0xff, sizeof(slpm
));
1760 * Then mask the pins that need to be sleeping now when we're
1761 * switching to the ALT C function.
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
);
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
;
1774 range
= nmk_match_gpio_range(pctldev
, g
->pins
[i
]);
1777 "invalid pin offset %d in group %s at index %d\n",
1778 g
->pins
[i
], g
->name
, i
);
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
);
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
);
1790 clk_enable(nmk_chip
->clk
);
1791 bit
= g
->pins
[i
] % NMK_GPIO_PER_CHIP
;
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.
1799 nmk_gpio_disable_lazy_irq(nmk_chip
, bit
);
1801 __nmk_gpio_set_mode_safe(nmk_chip
, bit
,
1802 (g
->altsetting
& NMK_GPIO_ALT_C
), glitch
);
1803 clk_disable(nmk_chip
->clk
);
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
1810 * - If selection is pure ALTC and previous selection was ALTCx,
1811 * then some bits in PRCM GPIOCR registers must be cleared.
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
);
1818 /* When all pins are successfully reconfigured we get here */
1823 nmk_gpio_glitch_slpm_restore(slpm
);
1824 spin_unlock_irqrestore(&nmk_gpio_slpm_lock
, flags
);
1830 static void nmk_pmx_disable(struct pinctrl_dev
*pctldev
,
1831 unsigned function
, unsigned group
)
1833 struct nmk_pinctrl
*npct
= pinctrl_dev_get_drvdata(pctldev
);
1834 const struct nmk_pingroup
*g
;
1836 g
= &npct
->soc
->groups
[group
];
1838 if (g
->altsetting
< 0)
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
);
1845 static int nmk_gpio_request_enable(struct pinctrl_dev
*pctldev
,
1846 struct pinctrl_gpio_range
*range
,
1849 struct nmk_pinctrl
*npct
= pinctrl_dev_get_drvdata(pctldev
);
1850 struct nmk_gpio_chip
*nmk_chip
;
1851 struct gpio_chip
*chip
;
1855 dev_err(npct
->dev
, "invalid range\n");
1859 dev_err(npct
->dev
, "missing GPIO chip in range\n");
1863 nmk_chip
= container_of(chip
, struct nmk_gpio_chip
, chip
);
1865 dev_dbg(npct
->dev
, "enable pin %u as GPIO\n", offset
);
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
);
1876 static void nmk_gpio_disable_free(struct pinctrl_dev
*pctldev
,
1877 struct pinctrl_gpio_range
*range
,
1880 struct nmk_pinctrl
*npct
= pinctrl_dev_get_drvdata(pctldev
);
1882 dev_dbg(npct
->dev
, "disable pin %u as GPIO\n", offset
);
1883 /* Set the pin to some default state, GPIO is usually default */
1886 static const struct pinmux_ops nmk_pinmux_ops
= {
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
,
1896 static int nmk_pin_config_get(struct pinctrl_dev
*pctldev
, unsigned pin
,
1897 unsigned long *config
)
1899 /* Not implemented */
1903 static int nmk_pin_config_set(struct pinctrl_dev
*pctldev
, unsigned pin
,
1904 unsigned long *configs
, unsigned num_configs
)
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 */ = "??"
1912 static const char *slpmnames
[] = {
1913 [NMK_GPIO_SLPM_INPUT
] = "input/wakeup",
1914 [NMK_GPIO_SLPM_NOCHANGE
] = "no-change/no-wakeup",
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
;
1922 int pull
, slpm
, output
, val
, i
;
1923 bool lowemi
, gpiomode
, sleep
;
1925 range
= nmk_match_gpio_range(pctldev
, pin
);
1927 dev_err(npct
->dev
, "invalid pin offset %d\n", pin
);
1931 dev_err(npct
->dev
, "GPIO chip missing in range for pin %d\n",
1936 nmk_chip
= container_of(chip
, struct nmk_gpio_chip
, chip
);
1938 for (i
= 0; i
< num_configs
; i
++) {
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.
1944 cfg
= (pin_cfg_t
) configs
[i
];
1945 pull
= PIN_PULL(cfg
);
1946 slpm
= PIN_SLPM(cfg
);
1947 output
= PIN_DIR(cfg
);
1949 lowemi
= PIN_LOWEMI(cfg
);
1950 gpiomode
= PIN_GPIOMODE(cfg
);
1951 sleep
= PIN_SLEEPMODE(cfg
);
1954 int slpm_pull
= PIN_SLPM_PULL(cfg
);
1955 int slpm_output
= PIN_SLPM_DIR(cfg
);
1956 int slpm_val
= PIN_SLPM_VAL(cfg
);
1958 /* All pins go into GPIO mode at sleep */
1962 * The SLPM_* values are normal values + 1 to allow zero
1963 * to mean "same as normal".
1966 pull
= slpm_pull
- 1;
1968 output
= slpm_output
- 1;
1972 dev_dbg(nmk_chip
->chip
.dev
,
1973 "pin %d: sleep pull %s, dir %s, val %s\n",
1975 slpm_pull
? pullnames
[pull
] : "same",
1976 slpm_output
? (output
? "output" : "input")
1978 slpm_val
? (val
? "high" : "low") : "same");
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");
1988 clk_enable(nmk_chip
->clk
);
1989 bit
= pin
% NMK_GPIO_PER_CHIP
;
1991 /* No glitch when going to GPIO mode */
1992 __nmk_gpio_set_mode(nmk_chip
, bit
, NMK_GPIO_ALT_GPIO
);
1994 __nmk_gpio_make_output(nmk_chip
, bit
, val
);
1996 __nmk_gpio_make_input(nmk_chip
, bit
);
1997 __nmk_gpio_set_pull(nmk_chip
, bit
, pull
);
1999 /* TODO: isn't this only applicable on output pins? */
2000 __nmk_gpio_set_lowemi(nmk_chip
, bit
, lowemi
);
2002 __nmk_gpio_set_slpm(nmk_chip
, bit
, slpm
);
2003 clk_disable(nmk_chip
->clk
);
2004 } /* for each config */
2009 static const struct pinconf_ops nmk_pinconf_ops
= {
2010 .pin_config_get
= nmk_pin_config_get
,
2011 .pin_config_set
= nmk_pin_config_set
,
2014 static struct pinctrl_desc nmk_pinctrl_desc
= {
2015 .name
= "pinctrl-nomadik",
2016 .pctlops
= &nmk_pinctrl_ops
,
2017 .pmxops
= &nmk_pinmux_ops
,
2018 .confops
= &nmk_pinconf_ops
,
2019 .owner
= THIS_MODULE
,
2022 static const struct of_device_id nmk_pinctrl_match
[] = {
2024 .compatible
= "stericsson,stn8815-pinctrl",
2025 .data
= (void *)PINCTRL_NMK_STN8815
,
2028 .compatible
= "stericsson,db8500-pinctrl",
2029 .data
= (void *)PINCTRL_NMK_DB8500
,
2032 .compatible
= "stericsson,db8540-pinctrl",
2033 .data
= (void *)PINCTRL_NMK_DB8540
,
2038 static int nmk_pinctrl_suspend(struct platform_device
*pdev
, pm_message_t state
)
2040 struct nmk_pinctrl
*npct
;
2042 npct
= platform_get_drvdata(pdev
);
2046 return pinctrl_force_sleep(npct
->pctl
);
2049 static int nmk_pinctrl_resume(struct platform_device
*pdev
)
2051 struct nmk_pinctrl
*npct
;
2053 npct
= platform_get_drvdata(pdev
);
2057 return pinctrl_force_default(npct
->pctl
);
2060 static int nmk_pinctrl_probe(struct platform_device
*pdev
)
2062 const struct of_device_id
*match
;
2063 struct device_node
*np
= pdev
->dev
.of_node
;
2064 struct device_node
*prcm_np
;
2065 struct nmk_pinctrl
*npct
;
2066 unsigned int version
= 0;
2069 npct
= devm_kzalloc(&pdev
->dev
, sizeof(*npct
), GFP_KERNEL
);
2073 match
= of_match_device(nmk_pinctrl_match
, &pdev
->dev
);
2076 version
= (unsigned int) match
->data
;
2078 /* Poke in other ASIC variants here */
2079 if (version
== PINCTRL_NMK_STN8815
)
2080 nmk_pinctrl_stn8815_init(&npct
->soc
);
2081 if (version
== PINCTRL_NMK_DB8500
)
2082 nmk_pinctrl_db8500_init(&npct
->soc
);
2083 if (version
== PINCTRL_NMK_DB8540
)
2084 nmk_pinctrl_db8540_init(&npct
->soc
);
2086 prcm_np
= of_parse_phandle(np
, "prcm", 0);
2088 npct
->prcm_base
= of_iomap(prcm_np
, 0);
2089 if (!npct
->prcm_base
) {
2090 if (version
== PINCTRL_NMK_STN8815
) {
2091 dev_info(&pdev
->dev
,
2093 "assuming no ALT-Cx control is available\n");
2095 dev_err(&pdev
->dev
, "missing PRCM base address\n");
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.
2105 for (i
= 0; i
< npct
->soc
->gpio_num_ranges
; i
++) {
2106 if (!nmk_gpio_chips
[npct
->soc
->gpio_ranges
[i
].id
]) {
2107 dev_warn(&pdev
->dev
, "GPIO chip %d not registered yet\n", i
);
2108 return -EPROBE_DEFER
;
2110 npct
->soc
->gpio_ranges
[i
].gc
= &nmk_gpio_chips
[npct
->soc
->gpio_ranges
[i
].id
]->chip
;
2113 nmk_pinctrl_desc
.pins
= npct
->soc
->pins
;
2114 nmk_pinctrl_desc
.npins
= npct
->soc
->npins
;
2115 npct
->dev
= &pdev
->dev
;
2117 npct
->pctl
= pinctrl_register(&nmk_pinctrl_desc
, &pdev
->dev
, npct
);
2119 dev_err(&pdev
->dev
, "could not register Nomadik pinctrl driver\n");
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
]);
2127 platform_set_drvdata(pdev
, npct
);
2128 dev_info(&pdev
->dev
, "initialized Nomadik pin control driver\n");
2133 static const struct of_device_id nmk_gpio_match
[] = {
2134 { .compatible
= "st,nomadik-gpio", },
2138 static struct platform_driver nmk_gpio_driver
= {
2140 .owner
= THIS_MODULE
,
2142 .of_match_table
= nmk_gpio_match
,
2144 .probe
= nmk_gpio_probe
,
2147 static struct platform_driver nmk_pinctrl_driver
= {
2149 .owner
= THIS_MODULE
,
2150 .name
= "pinctrl-nomadik",
2151 .of_match_table
= nmk_pinctrl_match
,
2153 .probe
= nmk_pinctrl_probe
,
2155 .suspend
= nmk_pinctrl_suspend
,
2156 .resume
= nmk_pinctrl_resume
,
2160 static int __init
nmk_gpio_init(void)
2164 ret
= platform_driver_register(&nmk_gpio_driver
);
2167 return platform_driver_register(&nmk_pinctrl_driver
);
2170 core_initcall(nmk_gpio_init
);
2172 MODULE_AUTHOR("Prafulla WADASKAR and Alessandro Rubini");
2173 MODULE_DESCRIPTION("Nomadik GPIO Driver");
2174 MODULE_LICENSE("GPL");