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 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/slab.h>
27 #include <linux/of_device.h>
28 #include <linux/of_address.h>
29 #include <linux/pinctrl/machine.h>
30 #include <linux/pinctrl/pinctrl.h>
31 #include <linux/pinctrl/pinmux.h>
32 #include <linux/pinctrl/pinconf.h>
33 /* Since we request GPIOs from ourself */
34 #include <linux/pinctrl/consumer.h>
35 #include <linux/platform_data/pinctrl-nomadik.h>
36 #include <asm/mach/irq.h>
37 #include "pinctrl-nomadik.h"
41 * The GPIO module in the Nomadik family of Systems-on-Chip is an
42 * AMBA device, managing 32 pins and alternate functions. The logic block
43 * is currently used in the Nomadik and ux500.
45 * Symbols in this file are called "nmk_gpio" for "nomadik gpio"
48 struct nmk_gpio_chip
{
49 struct gpio_chip chip
;
50 struct irq_domain
*domain
;
54 unsigned int parent_irq
;
55 int secondary_parent_irq
;
56 u32 (*get_secondary_status
)(unsigned int bank
);
57 void (*set_ioforce
)(bool enable
);
60 /* Keep track of configured edges */
73 * struct nmk_pinctrl - state container for the Nomadik pin controller
74 * @dev: containing device pointer
75 * @pctl: corresponding pin controller device
76 * @soc: SoC data for this specific chip
77 * @prcm_base: PRCM register range virtual base
81 struct pinctrl_dev
*pctl
;
82 const struct nmk_pinctrl_soc_data
*soc
;
83 void __iomem
*prcm_base
;
86 static struct nmk_gpio_chip
*
87 nmk_gpio_chips
[DIV_ROUND_UP(ARCH_NR_GPIOS
, NMK_GPIO_PER_CHIP
)];
89 static DEFINE_SPINLOCK(nmk_gpio_slpm_lock
);
91 #define NUM_BANKS ARRAY_SIZE(nmk_gpio_chips)
93 static void __nmk_gpio_set_mode(struct nmk_gpio_chip
*nmk_chip
,
94 unsigned offset
, int gpio_mode
)
96 u32 bit
= 1 << offset
;
99 afunc
= readl(nmk_chip
->addr
+ NMK_GPIO_AFSLA
) & ~bit
;
100 bfunc
= readl(nmk_chip
->addr
+ NMK_GPIO_AFSLB
) & ~bit
;
101 if (gpio_mode
& NMK_GPIO_ALT_A
)
103 if (gpio_mode
& NMK_GPIO_ALT_B
)
105 writel(afunc
, nmk_chip
->addr
+ NMK_GPIO_AFSLA
);
106 writel(bfunc
, nmk_chip
->addr
+ NMK_GPIO_AFSLB
);
109 static void __nmk_gpio_set_slpm(struct nmk_gpio_chip
*nmk_chip
,
110 unsigned offset
, enum nmk_gpio_slpm mode
)
112 u32 bit
= 1 << offset
;
115 slpm
= readl(nmk_chip
->addr
+ NMK_GPIO_SLPC
);
116 if (mode
== NMK_GPIO_SLPM_NOCHANGE
)
120 writel(slpm
, nmk_chip
->addr
+ NMK_GPIO_SLPC
);
123 static void __nmk_gpio_set_pull(struct nmk_gpio_chip
*nmk_chip
,
124 unsigned offset
, enum nmk_gpio_pull pull
)
126 u32 bit
= 1 << offset
;
129 pdis
= readl(nmk_chip
->addr
+ NMK_GPIO_PDIS
);
130 if (pull
== NMK_GPIO_PULL_NONE
) {
132 nmk_chip
->pull_up
&= ~bit
;
137 writel(pdis
, nmk_chip
->addr
+ NMK_GPIO_PDIS
);
139 if (pull
== NMK_GPIO_PULL_UP
) {
140 nmk_chip
->pull_up
|= bit
;
141 writel(bit
, nmk_chip
->addr
+ NMK_GPIO_DATS
);
142 } else if (pull
== NMK_GPIO_PULL_DOWN
) {
143 nmk_chip
->pull_up
&= ~bit
;
144 writel(bit
, nmk_chip
->addr
+ NMK_GPIO_DATC
);
148 static void __nmk_gpio_set_lowemi(struct nmk_gpio_chip
*nmk_chip
,
149 unsigned offset
, bool lowemi
)
151 u32 bit
= BIT(offset
);
152 bool enabled
= nmk_chip
->lowemi
& bit
;
154 if (lowemi
== enabled
)
158 nmk_chip
->lowemi
|= bit
;
160 nmk_chip
->lowemi
&= ~bit
;
162 writel_relaxed(nmk_chip
->lowemi
,
163 nmk_chip
->addr
+ NMK_GPIO_LOWEMI
);
166 static void __nmk_gpio_make_input(struct nmk_gpio_chip
*nmk_chip
,
169 writel(1 << offset
, nmk_chip
->addr
+ NMK_GPIO_DIRC
);
172 static void __nmk_gpio_set_output(struct nmk_gpio_chip
*nmk_chip
,
173 unsigned offset
, int val
)
176 writel(1 << offset
, nmk_chip
->addr
+ NMK_GPIO_DATS
);
178 writel(1 << offset
, nmk_chip
->addr
+ NMK_GPIO_DATC
);
181 static void __nmk_gpio_make_output(struct nmk_gpio_chip
*nmk_chip
,
182 unsigned offset
, int val
)
184 writel(1 << offset
, nmk_chip
->addr
+ NMK_GPIO_DIRS
);
185 __nmk_gpio_set_output(nmk_chip
, offset
, val
);
188 static void __nmk_gpio_set_mode_safe(struct nmk_gpio_chip
*nmk_chip
,
189 unsigned offset
, int gpio_mode
,
192 u32 rwimsc
= nmk_chip
->rwimsc
;
193 u32 fwimsc
= nmk_chip
->fwimsc
;
195 if (glitch
&& nmk_chip
->set_ioforce
) {
196 u32 bit
= BIT(offset
);
198 /* Prevent spurious wakeups */
199 writel(rwimsc
& ~bit
, nmk_chip
->addr
+ NMK_GPIO_RWIMSC
);
200 writel(fwimsc
& ~bit
, nmk_chip
->addr
+ NMK_GPIO_FWIMSC
);
202 nmk_chip
->set_ioforce(true);
205 __nmk_gpio_set_mode(nmk_chip
, offset
, gpio_mode
);
207 if (glitch
&& nmk_chip
->set_ioforce
) {
208 nmk_chip
->set_ioforce(false);
210 writel(rwimsc
, nmk_chip
->addr
+ NMK_GPIO_RWIMSC
);
211 writel(fwimsc
, nmk_chip
->addr
+ NMK_GPIO_FWIMSC
);
216 nmk_gpio_disable_lazy_irq(struct nmk_gpio_chip
*nmk_chip
, unsigned offset
)
218 u32 falling
= nmk_chip
->fimsc
& BIT(offset
);
219 u32 rising
= nmk_chip
->rimsc
& BIT(offset
);
220 int gpio
= nmk_chip
->chip
.base
+ offset
;
221 int irq
= irq_find_mapping(nmk_chip
->domain
, offset
);
222 struct irq_data
*d
= irq_get_irq_data(irq
);
224 if (!rising
&& !falling
)
227 if (!d
|| !irqd_irq_disabled(d
))
231 nmk_chip
->rimsc
&= ~BIT(offset
);
232 writel_relaxed(nmk_chip
->rimsc
,
233 nmk_chip
->addr
+ NMK_GPIO_RIMSC
);
237 nmk_chip
->fimsc
&= ~BIT(offset
);
238 writel_relaxed(nmk_chip
->fimsc
,
239 nmk_chip
->addr
+ NMK_GPIO_FIMSC
);
242 dev_dbg(nmk_chip
->chip
.dev
, "%d: clearing interrupt mask\n", gpio
);
245 static void nmk_write_masked(void __iomem
*reg
, u32 mask
, u32 value
)
250 val
= ((val
& ~mask
) | (value
& mask
));
254 static void nmk_prcm_altcx_set_mode(struct nmk_pinctrl
*npct
,
255 unsigned offset
, unsigned alt_num
)
261 const struct prcm_gpiocr_altcx_pin_desc
*pin_desc
;
262 const u16
*gpiocr_regs
;
264 if (!npct
->prcm_base
)
267 if (alt_num
> PRCM_IDX_GPIOCR_ALTC_MAX
) {
268 dev_err(npct
->dev
, "PRCM GPIOCR: alternate-C%i is invalid\n",
273 for (i
= 0 ; i
< npct
->soc
->npins_altcx
; i
++) {
274 if (npct
->soc
->altcx_pins
[i
].pin
== offset
)
277 if (i
== npct
->soc
->npins_altcx
) {
278 dev_dbg(npct
->dev
, "PRCM GPIOCR: pin %i is not found\n",
283 pin_desc
= npct
->soc
->altcx_pins
+ i
;
284 gpiocr_regs
= npct
->soc
->prcm_gpiocr_registers
;
287 * If alt_num is NULL, just clear current ALTCx selection
288 * to make sure we come back to a pure ALTC selection
291 for (i
= 0 ; i
< PRCM_IDX_GPIOCR_ALTC_MAX
; i
++) {
292 if (pin_desc
->altcx
[i
].used
== true) {
293 reg
= gpiocr_regs
[pin_desc
->altcx
[i
].reg_index
];
294 bit
= pin_desc
->altcx
[i
].control_bit
;
295 if (readl(npct
->prcm_base
+ reg
) & BIT(bit
)) {
296 nmk_write_masked(npct
->prcm_base
+ reg
, BIT(bit
), 0);
298 "PRCM GPIOCR: pin %i: alternate-C%i has been disabled\n",
306 alt_index
= alt_num
- 1;
307 if (pin_desc
->altcx
[alt_index
].used
== false) {
309 "PRCM GPIOCR: pin %i: alternate-C%i does not exist\n",
315 * Check if any other ALTCx functions are activated on this pin
316 * and disable it first.
318 for (i
= 0 ; i
< PRCM_IDX_GPIOCR_ALTC_MAX
; i
++) {
321 if (pin_desc
->altcx
[i
].used
== true) {
322 reg
= gpiocr_regs
[pin_desc
->altcx
[i
].reg_index
];
323 bit
= pin_desc
->altcx
[i
].control_bit
;
324 if (readl(npct
->prcm_base
+ reg
) & BIT(bit
)) {
325 nmk_write_masked(npct
->prcm_base
+ reg
, BIT(bit
), 0);
327 "PRCM GPIOCR: pin %i: alternate-C%i has been disabled\n",
333 reg
= gpiocr_regs
[pin_desc
->altcx
[alt_index
].reg_index
];
334 bit
= pin_desc
->altcx
[alt_index
].control_bit
;
335 dev_dbg(npct
->dev
, "PRCM GPIOCR: pin %i: alternate-C%i has been selected\n",
336 offset
, alt_index
+1);
337 nmk_write_masked(npct
->prcm_base
+ reg
, BIT(bit
), BIT(bit
));
340 static void __nmk_config_pin(struct nmk_gpio_chip
*nmk_chip
, unsigned offset
,
341 pin_cfg_t cfg
, bool sleep
, unsigned int *slpmregs
)
343 static const char *afnames
[] = {
344 [NMK_GPIO_ALT_GPIO
] = "GPIO",
345 [NMK_GPIO_ALT_A
] = "A",
346 [NMK_GPIO_ALT_B
] = "B",
347 [NMK_GPIO_ALT_C
] = "C"
349 static const char *pullnames
[] = {
350 [NMK_GPIO_PULL_NONE
] = "none",
351 [NMK_GPIO_PULL_UP
] = "up",
352 [NMK_GPIO_PULL_DOWN
] = "down",
353 [3] /* illegal */ = "??"
355 static const char *slpmnames
[] = {
356 [NMK_GPIO_SLPM_INPUT
] = "input/wakeup",
357 [NMK_GPIO_SLPM_NOCHANGE
] = "no-change/no-wakeup",
360 int pin
= PIN_NUM(cfg
);
361 int pull
= PIN_PULL(cfg
);
362 int af
= PIN_ALT(cfg
);
363 int slpm
= PIN_SLPM(cfg
);
364 int output
= PIN_DIR(cfg
);
365 int val
= PIN_VAL(cfg
);
366 bool glitch
= af
== NMK_GPIO_ALT_C
;
368 dev_dbg(nmk_chip
->chip
.dev
, "pin %d [%#lx]: af %s, pull %s, slpm %s (%s%s)\n",
369 pin
, cfg
, afnames
[af
], pullnames
[pull
], slpmnames
[slpm
],
370 output
? "output " : "input",
371 output
? (val
? "high" : "low") : "");
374 int slpm_pull
= PIN_SLPM_PULL(cfg
);
375 int slpm_output
= PIN_SLPM_DIR(cfg
);
376 int slpm_val
= PIN_SLPM_VAL(cfg
);
378 af
= NMK_GPIO_ALT_GPIO
;
381 * The SLPM_* values are normal values + 1 to allow zero to
382 * mean "same as normal".
385 pull
= slpm_pull
- 1;
387 output
= slpm_output
- 1;
391 dev_dbg(nmk_chip
->chip
.dev
, "pin %d: sleep pull %s, dir %s, val %s\n",
393 slpm_pull
? pullnames
[pull
] : "same",
394 slpm_output
? (output
? "output" : "input") : "same",
395 slpm_val
? (val
? "high" : "low") : "same");
399 __nmk_gpio_make_output(nmk_chip
, offset
, val
);
401 __nmk_gpio_make_input(nmk_chip
, offset
);
402 __nmk_gpio_set_pull(nmk_chip
, offset
, pull
);
405 __nmk_gpio_set_lowemi(nmk_chip
, offset
, PIN_LOWEMI(cfg
));
408 * If the pin is switching to altfunc, and there was an interrupt
409 * installed on it which has been lazy disabled, actually mask the
410 * interrupt to prevent spurious interrupts that would occur while the
411 * pin is under control of the peripheral. Only SKE does this.
413 if (af
!= NMK_GPIO_ALT_GPIO
)
414 nmk_gpio_disable_lazy_irq(nmk_chip
, offset
);
417 * If we've backed up the SLPM registers (glitch workaround), modify
418 * the backups since they will be restored.
421 if (slpm
== NMK_GPIO_SLPM_NOCHANGE
)
422 slpmregs
[nmk_chip
->bank
] |= BIT(offset
);
424 slpmregs
[nmk_chip
->bank
] &= ~BIT(offset
);
426 __nmk_gpio_set_slpm(nmk_chip
, offset
, slpm
);
428 __nmk_gpio_set_mode_safe(nmk_chip
, offset
, af
, glitch
);
432 * Safe sequence used to switch IOs between GPIO and Alternate-C mode:
433 * - Save SLPM registers
434 * - Set SLPM=0 for the IOs you want to switch and others to 1
435 * - Configure the GPIO registers for the IOs that are being switched
437 * - Modify the AFLSA/B registers for the IOs that are being switched
439 * - Restore SLPM registers
440 * - Any spurious wake up event during switch sequence to be ignored and
443 static void nmk_gpio_glitch_slpm_init(unsigned int *slpm
)
447 for (i
= 0; i
< NUM_BANKS
; i
++) {
448 struct nmk_gpio_chip
*chip
= nmk_gpio_chips
[i
];
449 unsigned int temp
= slpm
[i
];
454 clk_enable(chip
->clk
);
456 slpm
[i
] = readl(chip
->addr
+ NMK_GPIO_SLPC
);
457 writel(temp
, chip
->addr
+ NMK_GPIO_SLPC
);
461 static void nmk_gpio_glitch_slpm_restore(unsigned int *slpm
)
465 for (i
= 0; i
< NUM_BANKS
; i
++) {
466 struct nmk_gpio_chip
*chip
= nmk_gpio_chips
[i
];
471 writel(slpm
[i
], chip
->addr
+ NMK_GPIO_SLPC
);
473 clk_disable(chip
->clk
);
477 static int __nmk_config_pins(pin_cfg_t
*cfgs
, int num
, bool sleep
)
479 static unsigned int slpm
[NUM_BANKS
];
485 for (i
= 0; i
< num
; i
++) {
486 if (PIN_ALT(cfgs
[i
]) == NMK_GPIO_ALT_C
) {
492 spin_lock_irqsave(&nmk_gpio_slpm_lock
, flags
);
495 memset(slpm
, 0xff, sizeof(slpm
));
497 for (i
= 0; i
< num
; i
++) {
498 int pin
= PIN_NUM(cfgs
[i
]);
499 int offset
= pin
% NMK_GPIO_PER_CHIP
;
501 if (PIN_ALT(cfgs
[i
]) == NMK_GPIO_ALT_C
)
502 slpm
[pin
/ NMK_GPIO_PER_CHIP
] &= ~BIT(offset
);
505 nmk_gpio_glitch_slpm_init(slpm
);
508 for (i
= 0; i
< num
; i
++) {
509 struct nmk_gpio_chip
*nmk_chip
;
510 int pin
= PIN_NUM(cfgs
[i
]);
512 nmk_chip
= nmk_gpio_chips
[pin
/ NMK_GPIO_PER_CHIP
];
518 clk_enable(nmk_chip
->clk
);
519 spin_lock(&nmk_chip
->lock
);
520 __nmk_config_pin(nmk_chip
, pin
% NMK_GPIO_PER_CHIP
,
521 cfgs
[i
], sleep
, glitch
? slpm
: NULL
);
522 spin_unlock(&nmk_chip
->lock
);
523 clk_disable(nmk_chip
->clk
);
527 nmk_gpio_glitch_slpm_restore(slpm
);
529 spin_unlock_irqrestore(&nmk_gpio_slpm_lock
, flags
);
535 * nmk_config_pin - configure a pin's mux attributes
536 * @cfg: pin confguration
537 * @sleep: Non-zero to apply the sleep mode configuration
538 * Configures a pin's mode (alternate function or GPIO), its pull up status,
539 * and its sleep mode based on the specified configuration. The @cfg is
540 * usually one of the SoC specific macros defined in mach/<soc>-pins.h. These
541 * are constructed using, and can be further enhanced with, the macros in
542 * <linux/platform_data/pinctrl-nomadik.h>
544 * If a pin's mode is set to GPIO, it is configured as an input to avoid
545 * side-effects. The gpio can be manipulated later using standard GPIO API
548 int nmk_config_pin(pin_cfg_t cfg
, bool sleep
)
550 return __nmk_config_pins(&cfg
, 1, sleep
);
552 EXPORT_SYMBOL(nmk_config_pin
);
555 * nmk_config_pins - configure several pins at once
556 * @cfgs: array of pin configurations
557 * @num: number of elments in the array
559 * Configures several pins using nmk_config_pin(). Refer to that function for
560 * further information.
562 int nmk_config_pins(pin_cfg_t
*cfgs
, int num
)
564 return __nmk_config_pins(cfgs
, num
, false);
566 EXPORT_SYMBOL(nmk_config_pins
);
568 int nmk_config_pins_sleep(pin_cfg_t
*cfgs
, int num
)
570 return __nmk_config_pins(cfgs
, num
, true);
572 EXPORT_SYMBOL(nmk_config_pins_sleep
);
575 * nmk_gpio_set_slpm() - configure the sleep mode of a pin
577 * @mode: NMK_GPIO_SLPM_INPUT or NMK_GPIO_SLPM_NOCHANGE,
579 * This register is actually in the pinmux layer, not the GPIO block itself.
580 * The GPIO1B_SLPM register defines the GPIO mode when SLEEP/DEEP-SLEEP
581 * mode is entered (i.e. when signal IOFORCE is HIGH by the platform code).
582 * Each GPIO can be configured to be forced into GPIO mode when IOFORCE is
583 * HIGH, overriding the normal setting defined by GPIO_AFSELx registers.
584 * When IOFORCE returns LOW (by software, after SLEEP/DEEP-SLEEP exit),
585 * the GPIOs return to the normal setting defined by GPIO_AFSELx registers.
587 * If @mode is NMK_GPIO_SLPM_INPUT, the corresponding GPIO is switched to GPIO
588 * mode when signal IOFORCE is HIGH (i.e. when SLEEP/DEEP-SLEEP mode is
589 * entered) regardless of the altfunction selected. Also wake-up detection is
592 * If @mode is NMK_GPIO_SLPM_NOCHANGE, the corresponding GPIO remains
593 * controlled by NMK_GPIO_DATC, NMK_GPIO_DATS, NMK_GPIO_DIR, NMK_GPIO_PDIS
594 * (for altfunction GPIO) or respective on-chip peripherals (for other
595 * altfuncs) when IOFORCE is HIGH. Also wake-up detection DISABLED.
597 * Note that enable_irq_wake() will automatically enable wakeup detection.
599 int nmk_gpio_set_slpm(int gpio
, enum nmk_gpio_slpm mode
)
601 struct nmk_gpio_chip
*nmk_chip
;
604 nmk_chip
= nmk_gpio_chips
[gpio
/ NMK_GPIO_PER_CHIP
];
608 clk_enable(nmk_chip
->clk
);
609 spin_lock_irqsave(&nmk_gpio_slpm_lock
, flags
);
610 spin_lock(&nmk_chip
->lock
);
612 __nmk_gpio_set_slpm(nmk_chip
, gpio
% NMK_GPIO_PER_CHIP
, mode
);
614 spin_unlock(&nmk_chip
->lock
);
615 spin_unlock_irqrestore(&nmk_gpio_slpm_lock
, flags
);
616 clk_disable(nmk_chip
->clk
);
622 * nmk_gpio_set_pull() - enable/disable pull up/down on a gpio
624 * @pull: one of NMK_GPIO_PULL_DOWN, NMK_GPIO_PULL_UP, and NMK_GPIO_PULL_NONE
626 * Enables/disables pull up/down on a specified pin. This only takes effect if
627 * the pin is configured as an input (either explicitly or by the alternate
630 * NOTE: If enabling the pull up/down, the caller must ensure that the GPIO is
631 * configured as an input. Otherwise, due to the way the controller registers
632 * work, this function will change the value output on the pin.
634 int nmk_gpio_set_pull(int gpio
, enum nmk_gpio_pull pull
)
636 struct nmk_gpio_chip
*nmk_chip
;
639 nmk_chip
= nmk_gpio_chips
[gpio
/ NMK_GPIO_PER_CHIP
];
643 clk_enable(nmk_chip
->clk
);
644 spin_lock_irqsave(&nmk_chip
->lock
, flags
);
645 __nmk_gpio_set_pull(nmk_chip
, gpio
% NMK_GPIO_PER_CHIP
, pull
);
646 spin_unlock_irqrestore(&nmk_chip
->lock
, flags
);
647 clk_disable(nmk_chip
->clk
);
654 * nmk_gpio_set_mode() - set the mux mode of a gpio pin
656 * @gpio_mode: one of NMK_GPIO_ALT_GPIO, NMK_GPIO_ALT_A,
657 * NMK_GPIO_ALT_B, and NMK_GPIO_ALT_C
659 * Sets the mode of the specified pin to one of the alternate functions or
662 int nmk_gpio_set_mode(int gpio
, int gpio_mode
)
664 struct nmk_gpio_chip
*nmk_chip
;
667 nmk_chip
= nmk_gpio_chips
[gpio
/ NMK_GPIO_PER_CHIP
];
671 clk_enable(nmk_chip
->clk
);
672 spin_lock_irqsave(&nmk_chip
->lock
, flags
);
673 __nmk_gpio_set_mode(nmk_chip
, gpio
% NMK_GPIO_PER_CHIP
, gpio_mode
);
674 spin_unlock_irqrestore(&nmk_chip
->lock
, flags
);
675 clk_disable(nmk_chip
->clk
);
679 EXPORT_SYMBOL(nmk_gpio_set_mode
);
681 static int __maybe_unused
nmk_prcm_gpiocr_get_mode(struct pinctrl_dev
*pctldev
, int gpio
)
686 struct nmk_pinctrl
*npct
= pinctrl_dev_get_drvdata(pctldev
);
687 const struct prcm_gpiocr_altcx_pin_desc
*pin_desc
;
688 const u16
*gpiocr_regs
;
690 if (!npct
->prcm_base
)
691 return NMK_GPIO_ALT_C
;
693 for (i
= 0; i
< npct
->soc
->npins_altcx
; i
++) {
694 if (npct
->soc
->altcx_pins
[i
].pin
== gpio
)
697 if (i
== npct
->soc
->npins_altcx
)
698 return NMK_GPIO_ALT_C
;
700 pin_desc
= npct
->soc
->altcx_pins
+ i
;
701 gpiocr_regs
= npct
->soc
->prcm_gpiocr_registers
;
702 for (i
= 0; i
< PRCM_IDX_GPIOCR_ALTC_MAX
; i
++) {
703 if (pin_desc
->altcx
[i
].used
== true) {
704 reg
= gpiocr_regs
[pin_desc
->altcx
[i
].reg_index
];
705 bit
= pin_desc
->altcx
[i
].control_bit
;
706 if (readl(npct
->prcm_base
+ reg
) & BIT(bit
))
707 return NMK_GPIO_ALT_C
+i
+1;
710 return NMK_GPIO_ALT_C
;
713 int nmk_gpio_get_mode(int gpio
)
715 struct nmk_gpio_chip
*nmk_chip
;
716 u32 afunc
, bfunc
, bit
;
718 nmk_chip
= nmk_gpio_chips
[gpio
/ NMK_GPIO_PER_CHIP
];
722 bit
= 1 << (gpio
% NMK_GPIO_PER_CHIP
);
724 clk_enable(nmk_chip
->clk
);
726 afunc
= readl(nmk_chip
->addr
+ NMK_GPIO_AFSLA
) & bit
;
727 bfunc
= readl(nmk_chip
->addr
+ NMK_GPIO_AFSLB
) & bit
;
729 clk_disable(nmk_chip
->clk
);
731 return (afunc
? NMK_GPIO_ALT_A
: 0) | (bfunc
? NMK_GPIO_ALT_B
: 0);
733 EXPORT_SYMBOL(nmk_gpio_get_mode
);
737 static inline int nmk_gpio_get_bitmask(int gpio
)
739 return 1 << (gpio
% NMK_GPIO_PER_CHIP
);
742 static void nmk_gpio_irq_ack(struct irq_data
*d
)
744 struct nmk_gpio_chip
*nmk_chip
;
746 nmk_chip
= irq_data_get_irq_chip_data(d
);
750 clk_enable(nmk_chip
->clk
);
751 writel(nmk_gpio_get_bitmask(d
->hwirq
), nmk_chip
->addr
+ NMK_GPIO_IC
);
752 clk_disable(nmk_chip
->clk
);
755 enum nmk_gpio_irq_type
{
760 static void __nmk_gpio_irq_modify(struct nmk_gpio_chip
*nmk_chip
,
761 int gpio
, enum nmk_gpio_irq_type which
,
764 u32 bitmask
= nmk_gpio_get_bitmask(gpio
);
770 if (which
== NORMAL
) {
771 rimscreg
= NMK_GPIO_RIMSC
;
772 fimscreg
= NMK_GPIO_FIMSC
;
773 rimscval
= &nmk_chip
->rimsc
;
774 fimscval
= &nmk_chip
->fimsc
;
776 rimscreg
= NMK_GPIO_RWIMSC
;
777 fimscreg
= NMK_GPIO_FWIMSC
;
778 rimscval
= &nmk_chip
->rwimsc
;
779 fimscval
= &nmk_chip
->fwimsc
;
782 /* we must individually set/clear the two edges */
783 if (nmk_chip
->edge_rising
& bitmask
) {
785 *rimscval
|= bitmask
;
787 *rimscval
&= ~bitmask
;
788 writel(*rimscval
, nmk_chip
->addr
+ rimscreg
);
790 if (nmk_chip
->edge_falling
& bitmask
) {
792 *fimscval
|= bitmask
;
794 *fimscval
&= ~bitmask
;
795 writel(*fimscval
, nmk_chip
->addr
+ fimscreg
);
799 static void __nmk_gpio_set_wake(struct nmk_gpio_chip
*nmk_chip
,
803 * Ensure WAKEUP_ENABLE is on. No need to disable it if wakeup is
804 * disabled, since setting SLPM to 1 increases power consumption, and
805 * wakeup is anyhow controlled by the RIMSC and FIMSC registers.
807 if (nmk_chip
->sleepmode
&& on
) {
808 __nmk_gpio_set_slpm(nmk_chip
, gpio
% NMK_GPIO_PER_CHIP
,
809 NMK_GPIO_SLPM_WAKEUP_ENABLE
);
812 __nmk_gpio_irq_modify(nmk_chip
, gpio
, WAKE
, on
);
815 static int nmk_gpio_irq_maskunmask(struct irq_data
*d
, bool enable
)
817 struct nmk_gpio_chip
*nmk_chip
;
821 nmk_chip
= irq_data_get_irq_chip_data(d
);
822 bitmask
= nmk_gpio_get_bitmask(d
->hwirq
);
826 clk_enable(nmk_chip
->clk
);
827 spin_lock_irqsave(&nmk_gpio_slpm_lock
, flags
);
828 spin_lock(&nmk_chip
->lock
);
830 __nmk_gpio_irq_modify(nmk_chip
, d
->hwirq
, NORMAL
, enable
);
832 if (!(nmk_chip
->real_wake
& bitmask
))
833 __nmk_gpio_set_wake(nmk_chip
, d
->hwirq
, enable
);
835 spin_unlock(&nmk_chip
->lock
);
836 spin_unlock_irqrestore(&nmk_gpio_slpm_lock
, flags
);
837 clk_disable(nmk_chip
->clk
);
842 static void nmk_gpio_irq_mask(struct irq_data
*d
)
844 nmk_gpio_irq_maskunmask(d
, false);
847 static void nmk_gpio_irq_unmask(struct irq_data
*d
)
849 nmk_gpio_irq_maskunmask(d
, true);
852 static int nmk_gpio_irq_set_wake(struct irq_data
*d
, unsigned int on
)
854 struct nmk_gpio_chip
*nmk_chip
;
858 nmk_chip
= irq_data_get_irq_chip_data(d
);
861 bitmask
= nmk_gpio_get_bitmask(d
->hwirq
);
863 clk_enable(nmk_chip
->clk
);
864 spin_lock_irqsave(&nmk_gpio_slpm_lock
, flags
);
865 spin_lock(&nmk_chip
->lock
);
867 if (irqd_irq_disabled(d
))
868 __nmk_gpio_set_wake(nmk_chip
, d
->hwirq
, on
);
871 nmk_chip
->real_wake
|= bitmask
;
873 nmk_chip
->real_wake
&= ~bitmask
;
875 spin_unlock(&nmk_chip
->lock
);
876 spin_unlock_irqrestore(&nmk_gpio_slpm_lock
, flags
);
877 clk_disable(nmk_chip
->clk
);
882 static int nmk_gpio_irq_set_type(struct irq_data
*d
, unsigned int type
)
884 bool enabled
= !irqd_irq_disabled(d
);
885 bool wake
= irqd_is_wakeup_set(d
);
886 struct nmk_gpio_chip
*nmk_chip
;
890 nmk_chip
= irq_data_get_irq_chip_data(d
);
891 bitmask
= nmk_gpio_get_bitmask(d
->hwirq
);
894 if (type
& IRQ_TYPE_LEVEL_HIGH
)
896 if (type
& IRQ_TYPE_LEVEL_LOW
)
899 clk_enable(nmk_chip
->clk
);
900 spin_lock_irqsave(&nmk_chip
->lock
, flags
);
903 __nmk_gpio_irq_modify(nmk_chip
, d
->hwirq
, NORMAL
, false);
906 __nmk_gpio_irq_modify(nmk_chip
, d
->hwirq
, WAKE
, false);
908 nmk_chip
->edge_rising
&= ~bitmask
;
909 if (type
& IRQ_TYPE_EDGE_RISING
)
910 nmk_chip
->edge_rising
|= bitmask
;
912 nmk_chip
->edge_falling
&= ~bitmask
;
913 if (type
& IRQ_TYPE_EDGE_FALLING
)
914 nmk_chip
->edge_falling
|= bitmask
;
917 __nmk_gpio_irq_modify(nmk_chip
, d
->hwirq
, NORMAL
, true);
920 __nmk_gpio_irq_modify(nmk_chip
, d
->hwirq
, WAKE
, true);
922 spin_unlock_irqrestore(&nmk_chip
->lock
, flags
);
923 clk_disable(nmk_chip
->clk
);
928 static unsigned int nmk_gpio_irq_startup(struct irq_data
*d
)
930 struct nmk_gpio_chip
*nmk_chip
= irq_data_get_irq_chip_data(d
);
932 clk_enable(nmk_chip
->clk
);
933 nmk_gpio_irq_unmask(d
);
937 static void nmk_gpio_irq_shutdown(struct irq_data
*d
)
939 struct nmk_gpio_chip
*nmk_chip
= irq_data_get_irq_chip_data(d
);
941 nmk_gpio_irq_mask(d
);
942 clk_disable(nmk_chip
->clk
);
945 static struct irq_chip nmk_gpio_irq_chip
= {
946 .name
= "Nomadik-GPIO",
947 .irq_ack
= nmk_gpio_irq_ack
,
948 .irq_mask
= nmk_gpio_irq_mask
,
949 .irq_unmask
= nmk_gpio_irq_unmask
,
950 .irq_set_type
= nmk_gpio_irq_set_type
,
951 .irq_set_wake
= nmk_gpio_irq_set_wake
,
952 .irq_startup
= nmk_gpio_irq_startup
,
953 .irq_shutdown
= nmk_gpio_irq_shutdown
,
954 .flags
= IRQCHIP_MASK_ON_SUSPEND
,
957 static void __nmk_gpio_irq_handler(unsigned int irq
, struct irq_desc
*desc
,
960 struct nmk_gpio_chip
*nmk_chip
;
961 struct irq_chip
*host_chip
= irq_get_chip(irq
);
963 chained_irq_enter(host_chip
, desc
);
965 nmk_chip
= irq_get_handler_data(irq
);
967 int bit
= __ffs(status
);
969 generic_handle_irq(irq_find_mapping(nmk_chip
->domain
, bit
));
973 chained_irq_exit(host_chip
, desc
);
976 static void nmk_gpio_irq_handler(unsigned int irq
, struct irq_desc
*desc
)
978 struct nmk_gpio_chip
*nmk_chip
= irq_get_handler_data(irq
);
981 clk_enable(nmk_chip
->clk
);
982 status
= readl(nmk_chip
->addr
+ NMK_GPIO_IS
);
983 clk_disable(nmk_chip
->clk
);
985 __nmk_gpio_irq_handler(irq
, desc
, status
);
988 static void nmk_gpio_secondary_irq_handler(unsigned int irq
,
989 struct irq_desc
*desc
)
991 struct nmk_gpio_chip
*nmk_chip
= irq_get_handler_data(irq
);
992 u32 status
= nmk_chip
->get_secondary_status(nmk_chip
->bank
);
994 __nmk_gpio_irq_handler(irq
, desc
, status
);
997 static int nmk_gpio_init_irq(struct nmk_gpio_chip
*nmk_chip
)
999 irq_set_chained_handler(nmk_chip
->parent_irq
, nmk_gpio_irq_handler
);
1000 irq_set_handler_data(nmk_chip
->parent_irq
, nmk_chip
);
1002 if (nmk_chip
->secondary_parent_irq
>= 0) {
1003 irq_set_chained_handler(nmk_chip
->secondary_parent_irq
,
1004 nmk_gpio_secondary_irq_handler
);
1005 irq_set_handler_data(nmk_chip
->secondary_parent_irq
, nmk_chip
);
1013 static int nmk_gpio_request(struct gpio_chip
*chip
, unsigned offset
)
1016 * Map back to global GPIO space and request muxing, the direction
1017 * parameter does not matter for this controller.
1019 int gpio
= chip
->base
+ offset
;
1021 return pinctrl_request_gpio(gpio
);
1024 static void nmk_gpio_free(struct gpio_chip
*chip
, unsigned offset
)
1026 int gpio
= chip
->base
+ offset
;
1028 pinctrl_free_gpio(gpio
);
1031 static int nmk_gpio_make_input(struct gpio_chip
*chip
, unsigned offset
)
1033 struct nmk_gpio_chip
*nmk_chip
=
1034 container_of(chip
, struct nmk_gpio_chip
, chip
);
1036 clk_enable(nmk_chip
->clk
);
1038 writel(1 << offset
, nmk_chip
->addr
+ NMK_GPIO_DIRC
);
1040 clk_disable(nmk_chip
->clk
);
1045 static int nmk_gpio_get_input(struct gpio_chip
*chip
, unsigned offset
)
1047 struct nmk_gpio_chip
*nmk_chip
=
1048 container_of(chip
, struct nmk_gpio_chip
, chip
);
1049 u32 bit
= 1 << offset
;
1052 clk_enable(nmk_chip
->clk
);
1054 value
= (readl(nmk_chip
->addr
+ NMK_GPIO_DAT
) & bit
) != 0;
1056 clk_disable(nmk_chip
->clk
);
1061 static void nmk_gpio_set_output(struct gpio_chip
*chip
, unsigned offset
,
1064 struct nmk_gpio_chip
*nmk_chip
=
1065 container_of(chip
, struct nmk_gpio_chip
, chip
);
1067 clk_enable(nmk_chip
->clk
);
1069 __nmk_gpio_set_output(nmk_chip
, offset
, val
);
1071 clk_disable(nmk_chip
->clk
);
1074 static int nmk_gpio_make_output(struct gpio_chip
*chip
, unsigned offset
,
1077 struct nmk_gpio_chip
*nmk_chip
=
1078 container_of(chip
, struct nmk_gpio_chip
, chip
);
1080 clk_enable(nmk_chip
->clk
);
1082 __nmk_gpio_make_output(nmk_chip
, offset
, val
);
1084 clk_disable(nmk_chip
->clk
);
1089 static int nmk_gpio_to_irq(struct gpio_chip
*chip
, unsigned offset
)
1091 struct nmk_gpio_chip
*nmk_chip
=
1092 container_of(chip
, struct nmk_gpio_chip
, chip
);
1094 return irq_create_mapping(nmk_chip
->domain
, offset
);
1097 #ifdef CONFIG_DEBUG_FS
1099 #include <linux/seq_file.h>
1101 static void nmk_gpio_dbg_show_one(struct seq_file
*s
,
1102 struct pinctrl_dev
*pctldev
, struct gpio_chip
*chip
,
1103 unsigned offset
, unsigned gpio
)
1105 const char *label
= gpiochip_is_requested(chip
, offset
);
1106 struct nmk_gpio_chip
*nmk_chip
=
1107 container_of(chip
, struct nmk_gpio_chip
, chip
);
1111 u32 bit
= 1 << offset
;
1112 const char *modes
[] = {
1113 [NMK_GPIO_ALT_GPIO
] = "gpio",
1114 [NMK_GPIO_ALT_A
] = "altA",
1115 [NMK_GPIO_ALT_B
] = "altB",
1116 [NMK_GPIO_ALT_C
] = "altC",
1117 [NMK_GPIO_ALT_C
+1] = "altC1",
1118 [NMK_GPIO_ALT_C
+2] = "altC2",
1119 [NMK_GPIO_ALT_C
+3] = "altC3",
1120 [NMK_GPIO_ALT_C
+4] = "altC4",
1123 clk_enable(nmk_chip
->clk
);
1124 is_out
= !!(readl(nmk_chip
->addr
+ NMK_GPIO_DIR
) & bit
);
1125 pull
= !(readl(nmk_chip
->addr
+ NMK_GPIO_PDIS
) & bit
);
1126 mode
= nmk_gpio_get_mode(gpio
);
1127 if ((mode
== NMK_GPIO_ALT_C
) && pctldev
)
1128 mode
= nmk_prcm_gpiocr_get_mode(pctldev
, gpio
);
1130 seq_printf(s
, " gpio-%-3d (%-20.20s) %s %s %s %s",
1131 gpio
, label
?: "(none)",
1132 is_out
? "out" : "in ",
1134 ? (chip
->get(chip
, offset
) ? "hi" : "lo")
1136 (mode
< 0) ? "unknown" : modes
[mode
],
1137 pull
? "pull" : "none");
1139 if (label
&& !is_out
) {
1140 int irq
= gpio_to_irq(gpio
);
1141 struct irq_desc
*desc
= irq_to_desc(irq
);
1143 /* This races with request_irq(), set_irq_type(),
1144 * and set_irq_wake() ... but those are "rare".
1146 if (irq
>= 0 && desc
->action
) {
1148 u32 bitmask
= nmk_gpio_get_bitmask(gpio
);
1150 if (nmk_chip
->edge_rising
& bitmask
)
1151 trigger
= "edge-rising";
1152 else if (nmk_chip
->edge_falling
& bitmask
)
1153 trigger
= "edge-falling";
1155 trigger
= "edge-undefined";
1157 seq_printf(s
, " irq-%d %s%s",
1159 irqd_is_wakeup_set(&desc
->irq_data
)
1163 clk_disable(nmk_chip
->clk
);
1166 static void nmk_gpio_dbg_show(struct seq_file
*s
, struct gpio_chip
*chip
)
1169 unsigned gpio
= chip
->base
;
1171 for (i
= 0; i
< chip
->ngpio
; i
++, gpio
++) {
1172 nmk_gpio_dbg_show_one(s
, NULL
, chip
, i
, gpio
);
1173 seq_printf(s
, "\n");
1178 static inline void nmk_gpio_dbg_show_one(struct seq_file
*s
,
1179 struct pinctrl_dev
*pctldev
,
1180 struct gpio_chip
*chip
,
1181 unsigned offset
, unsigned gpio
)
1184 #define nmk_gpio_dbg_show NULL
1187 /* This structure is replicated for each GPIO block allocated at probe time */
1188 static struct gpio_chip nmk_gpio_template
= {
1189 .request
= nmk_gpio_request
,
1190 .free
= nmk_gpio_free
,
1191 .direction_input
= nmk_gpio_make_input
,
1192 .get
= nmk_gpio_get_input
,
1193 .direction_output
= nmk_gpio_make_output
,
1194 .set
= nmk_gpio_set_output
,
1195 .to_irq
= nmk_gpio_to_irq
,
1196 .dbg_show
= nmk_gpio_dbg_show
,
1200 void nmk_gpio_clocks_enable(void)
1204 for (i
= 0; i
< NUM_BANKS
; i
++) {
1205 struct nmk_gpio_chip
*chip
= nmk_gpio_chips
[i
];
1210 clk_enable(chip
->clk
);
1214 void nmk_gpio_clocks_disable(void)
1218 for (i
= 0; i
< NUM_BANKS
; i
++) {
1219 struct nmk_gpio_chip
*chip
= nmk_gpio_chips
[i
];
1224 clk_disable(chip
->clk
);
1229 * Called from the suspend/resume path to only keep the real wakeup interrupts
1230 * (those that have had set_irq_wake() called on them) as wakeup interrupts,
1231 * and not the rest of the interrupts which we needed to have as wakeups for
1234 * PM ops are not used since this needs to be done at the end, after all the
1235 * other drivers are done with their suspend callbacks.
1237 void nmk_gpio_wakeups_suspend(void)
1241 for (i
= 0; i
< NUM_BANKS
; i
++) {
1242 struct nmk_gpio_chip
*chip
= nmk_gpio_chips
[i
];
1247 clk_enable(chip
->clk
);
1249 writel(chip
->rwimsc
& chip
->real_wake
,
1250 chip
->addr
+ NMK_GPIO_RWIMSC
);
1251 writel(chip
->fwimsc
& chip
->real_wake
,
1252 chip
->addr
+ NMK_GPIO_FWIMSC
);
1254 clk_disable(chip
->clk
);
1258 void nmk_gpio_wakeups_resume(void)
1262 for (i
= 0; i
< NUM_BANKS
; i
++) {
1263 struct nmk_gpio_chip
*chip
= nmk_gpio_chips
[i
];
1268 clk_enable(chip
->clk
);
1270 writel(chip
->rwimsc
, chip
->addr
+ NMK_GPIO_RWIMSC
);
1271 writel(chip
->fwimsc
, chip
->addr
+ NMK_GPIO_FWIMSC
);
1273 clk_disable(chip
->clk
);
1278 * Read the pull up/pull down status.
1279 * A bit set in 'pull_up' means that pull up
1280 * is selected if pull is enabled in PDIS register.
1281 * Note: only pull up/down set via this driver can
1282 * be detected due to HW limitations.
1284 void nmk_gpio_read_pull(int gpio_bank
, u32
*pull_up
)
1286 if (gpio_bank
< NUM_BANKS
) {
1287 struct nmk_gpio_chip
*chip
= nmk_gpio_chips
[gpio_bank
];
1292 *pull_up
= chip
->pull_up
;
1296 static int nmk_gpio_irq_map(struct irq_domain
*d
, unsigned int irq
,
1297 irq_hw_number_t hwirq
)
1299 struct nmk_gpio_chip
*nmk_chip
= d
->host_data
;
1304 irq_set_chip_and_handler(irq
, &nmk_gpio_irq_chip
, handle_edge_irq
);
1305 set_irq_flags(irq
, IRQF_VALID
);
1306 irq_set_chip_data(irq
, nmk_chip
);
1307 irq_set_irq_type(irq
, IRQ_TYPE_EDGE_FALLING
);
1312 const struct irq_domain_ops nmk_gpio_irq_simple_ops
= {
1313 .map
= nmk_gpio_irq_map
,
1314 .xlate
= irq_domain_xlate_twocell
,
1317 static int nmk_gpio_probe(struct platform_device
*dev
)
1319 struct nmk_gpio_platform_data
*pdata
= dev
->dev
.platform_data
;
1320 struct device_node
*np
= dev
->dev
.of_node
;
1321 struct nmk_gpio_chip
*nmk_chip
;
1322 struct gpio_chip
*chip
;
1323 struct resource
*res
;
1331 if (!pdata
&& !np
) {
1332 dev_err(&dev
->dev
, "No platform data or device tree found\n");
1337 pdata
= devm_kzalloc(&dev
->dev
, sizeof(*pdata
), GFP_KERNEL
);
1341 if (of_get_property(np
, "st,supports-sleepmode", NULL
))
1342 pdata
->supports_sleepmode
= true;
1344 if (of_property_read_u32(np
, "gpio-bank", &dev
->id
)) {
1345 dev_err(&dev
->dev
, "gpio-bank property not found\n");
1349 pdata
->first_gpio
= dev
->id
* NMK_GPIO_PER_CHIP
;
1350 pdata
->num_gpio
= NMK_GPIO_PER_CHIP
;
1353 res
= platform_get_resource(dev
, IORESOURCE_MEM
, 0);
1357 irq
= platform_get_irq(dev
, 0);
1361 secondary_irq
= platform_get_irq(dev
, 1);
1362 if (secondary_irq
>= 0 && !pdata
->get_secondary_status
)
1365 base
= devm_request_and_ioremap(&dev
->dev
, res
);
1369 clk
= devm_clk_get(&dev
->dev
, NULL
);
1371 return PTR_ERR(clk
);
1374 nmk_chip
= devm_kzalloc(&dev
->dev
, sizeof(*nmk_chip
), GFP_KERNEL
);
1379 * The virt address in nmk_chip->addr is in the nomadik register space,
1380 * so we can simply convert the resource address, without remapping
1382 nmk_chip
->bank
= dev
->id
;
1383 nmk_chip
->clk
= clk
;
1384 nmk_chip
->addr
= base
;
1385 nmk_chip
->chip
= nmk_gpio_template
;
1386 nmk_chip
->parent_irq
= irq
;
1387 nmk_chip
->secondary_parent_irq
= secondary_irq
;
1388 nmk_chip
->get_secondary_status
= pdata
->get_secondary_status
;
1389 nmk_chip
->set_ioforce
= pdata
->set_ioforce
;
1390 nmk_chip
->sleepmode
= pdata
->supports_sleepmode
;
1391 spin_lock_init(&nmk_chip
->lock
);
1393 chip
= &nmk_chip
->chip
;
1394 chip
->base
= pdata
->first_gpio
;
1395 chip
->ngpio
= pdata
->num_gpio
;
1396 chip
->label
= pdata
->name
?: dev_name(&dev
->dev
);
1397 chip
->dev
= &dev
->dev
;
1398 chip
->owner
= THIS_MODULE
;
1400 clk_enable(nmk_chip
->clk
);
1401 nmk_chip
->lowemi
= readl_relaxed(nmk_chip
->addr
+ NMK_GPIO_LOWEMI
);
1402 clk_disable(nmk_chip
->clk
);
1404 #ifdef CONFIG_OF_GPIO
1408 ret
= gpiochip_add(&nmk_chip
->chip
);
1412 BUG_ON(nmk_chip
->bank
>= ARRAY_SIZE(nmk_gpio_chips
));
1414 nmk_gpio_chips
[nmk_chip
->bank
] = nmk_chip
;
1416 platform_set_drvdata(dev
, nmk_chip
);
1419 irq_start
= pdata
->first_irq
;
1420 nmk_chip
->domain
= irq_domain_add_simple(np
,
1421 NMK_GPIO_PER_CHIP
, irq_start
,
1422 &nmk_gpio_irq_simple_ops
, nmk_chip
);
1423 if (!nmk_chip
->domain
) {
1424 dev_err(&dev
->dev
, "failed to create irqdomain\n");
1425 /* Just do this, no matter if it fails */
1426 ret
= gpiochip_remove(&nmk_chip
->chip
);
1430 nmk_gpio_init_irq(nmk_chip
);
1432 dev_info(&dev
->dev
, "at address %p\n", nmk_chip
->addr
);
1437 static int nmk_get_groups_cnt(struct pinctrl_dev
*pctldev
)
1439 struct nmk_pinctrl
*npct
= pinctrl_dev_get_drvdata(pctldev
);
1441 return npct
->soc
->ngroups
;
1444 static const char *nmk_get_group_name(struct pinctrl_dev
*pctldev
,
1447 struct nmk_pinctrl
*npct
= pinctrl_dev_get_drvdata(pctldev
);
1449 return npct
->soc
->groups
[selector
].name
;
1452 static int nmk_get_group_pins(struct pinctrl_dev
*pctldev
, unsigned selector
,
1453 const unsigned **pins
,
1456 struct nmk_pinctrl
*npct
= pinctrl_dev_get_drvdata(pctldev
);
1458 *pins
= npct
->soc
->groups
[selector
].pins
;
1459 *num_pins
= npct
->soc
->groups
[selector
].npins
;
1463 static struct pinctrl_gpio_range
*
1464 nmk_match_gpio_range(struct pinctrl_dev
*pctldev
, unsigned offset
)
1466 struct nmk_pinctrl
*npct
= pinctrl_dev_get_drvdata(pctldev
);
1469 for (i
= 0; i
< npct
->soc
->gpio_num_ranges
; i
++) {
1470 struct pinctrl_gpio_range
*range
;
1472 range
= &npct
->soc
->gpio_ranges
[i
];
1473 if (offset
>= range
->pin_base
&&
1474 offset
<= (range
->pin_base
+ range
->npins
- 1))
1480 static void nmk_pin_dbg_show(struct pinctrl_dev
*pctldev
, struct seq_file
*s
,
1483 struct pinctrl_gpio_range
*range
;
1484 struct gpio_chip
*chip
;
1486 range
= nmk_match_gpio_range(pctldev
, offset
);
1487 if (!range
|| !range
->gc
) {
1488 seq_printf(s
, "invalid pin offset");
1492 nmk_gpio_dbg_show_one(s
, pctldev
, chip
, offset
- chip
->base
, offset
);
1495 static void nmk_pinctrl_dt_free_map(struct pinctrl_dev
*pctldev
,
1496 struct pinctrl_map
*map
, unsigned num_maps
)
1500 for (i
= 0; i
< num_maps
; i
++)
1501 if (map
[i
].type
== PIN_MAP_TYPE_CONFIGS_PIN
)
1502 kfree(map
[i
].data
.configs
.configs
);
1506 static int nmk_dt_reserve_map(struct pinctrl_map
**map
, unsigned *reserved_maps
,
1507 unsigned *num_maps
, unsigned reserve
)
1509 unsigned old_num
= *reserved_maps
;
1510 unsigned new_num
= *num_maps
+ reserve
;
1511 struct pinctrl_map
*new_map
;
1513 if (old_num
>= new_num
)
1516 new_map
= krealloc(*map
, sizeof(*new_map
) * new_num
, GFP_KERNEL
);
1520 memset(new_map
+ old_num
, 0, (new_num
- old_num
) * sizeof(*new_map
));
1523 *reserved_maps
= new_num
;
1528 static int nmk_dt_add_map_mux(struct pinctrl_map
**map
, unsigned *reserved_maps
,
1529 unsigned *num_maps
, const char *group
,
1530 const char *function
)
1532 if (*num_maps
== *reserved_maps
)
1535 (*map
)[*num_maps
].type
= PIN_MAP_TYPE_MUX_GROUP
;
1536 (*map
)[*num_maps
].data
.mux
.group
= group
;
1537 (*map
)[*num_maps
].data
.mux
.function
= function
;
1543 static int nmk_dt_add_map_configs(struct pinctrl_map
**map
,
1544 unsigned *reserved_maps
,
1545 unsigned *num_maps
, const char *group
,
1546 unsigned long *configs
, unsigned num_configs
)
1548 unsigned long *dup_configs
;
1550 if (*num_maps
== *reserved_maps
)
1553 dup_configs
= kmemdup(configs
, num_configs
* sizeof(*dup_configs
),
1558 (*map
)[*num_maps
].type
= PIN_MAP_TYPE_CONFIGS_PIN
;
1560 (*map
)[*num_maps
].data
.configs
.group_or_pin
= group
;
1561 (*map
)[*num_maps
].data
.configs
.configs
= dup_configs
;
1562 (*map
)[*num_maps
].data
.configs
.num_configs
= num_configs
;
1568 #define NMK_CONFIG_PIN(x,y) { .property = x, .config = y, }
1569 #define NMK_CONFIG_PIN_ARRAY(x,y) { .property = x, .choice = y, \
1570 .size = ARRAY_SIZE(y), }
1572 static const unsigned long nmk_pin_input_modes
[] = {
1578 static const unsigned long nmk_pin_output_modes
[] = {
1584 static const unsigned long nmk_pin_sleep_modes
[] = {
1585 PIN_SLEEPMODE_DISABLED
,
1586 PIN_SLEEPMODE_ENABLED
,
1589 static const unsigned long nmk_pin_sleep_input_modes
[] = {
1590 PIN_SLPM_INPUT_NOPULL
,
1591 PIN_SLPM_INPUT_PULLUP
,
1592 PIN_SLPM_INPUT_PULLDOWN
,
1596 static const unsigned long nmk_pin_sleep_output_modes
[] = {
1597 PIN_SLPM_OUTPUT_LOW
,
1598 PIN_SLPM_OUTPUT_HIGH
,
1599 PIN_SLPM_DIR_OUTPUT
,
1602 static const unsigned long nmk_pin_sleep_wakeup_modes
[] = {
1603 PIN_SLPM_WAKEUP_DISABLE
,
1604 PIN_SLPM_WAKEUP_ENABLE
,
1607 static const unsigned long nmk_pin_gpio_modes
[] = {
1608 PIN_GPIOMODE_DISABLED
,
1609 PIN_GPIOMODE_ENABLED
,
1612 static const unsigned long nmk_pin_sleep_pdis_modes
[] = {
1613 PIN_SLPM_PDIS_DISABLED
,
1614 PIN_SLPM_PDIS_ENABLED
,
1617 struct nmk_cfg_param
{
1618 const char *property
;
1619 unsigned long config
;
1620 const unsigned long *choice
;
1624 static const struct nmk_cfg_param nmk_cfg_params
[] = {
1625 NMK_CONFIG_PIN_ARRAY("ste,input", nmk_pin_input_modes
),
1626 NMK_CONFIG_PIN_ARRAY("ste,output", nmk_pin_output_modes
),
1627 NMK_CONFIG_PIN_ARRAY("ste,sleep", nmk_pin_sleep_modes
),
1628 NMK_CONFIG_PIN_ARRAY("ste,sleep-input", nmk_pin_sleep_input_modes
),
1629 NMK_CONFIG_PIN_ARRAY("ste,sleep-output", nmk_pin_sleep_output_modes
),
1630 NMK_CONFIG_PIN_ARRAY("ste,sleep-wakeup", nmk_pin_sleep_wakeup_modes
),
1631 NMK_CONFIG_PIN_ARRAY("ste,gpio", nmk_pin_gpio_modes
),
1632 NMK_CONFIG_PIN_ARRAY("ste,sleep-pull-disable", nmk_pin_sleep_pdis_modes
),
1635 static int nmk_dt_pin_config(int index
, int val
, unsigned long *config
)
1639 if (nmk_cfg_params
[index
].choice
== NULL
)
1640 *config
= nmk_cfg_params
[index
].config
;
1642 /* test if out of range */
1643 if (val
< nmk_cfg_params
[index
].size
) {
1644 *config
= nmk_cfg_params
[index
].config
|
1645 nmk_cfg_params
[index
].choice
[val
];
1651 static const char *nmk_find_pin_name(struct pinctrl_dev
*pctldev
, const char *pin_name
)
1654 struct nmk_pinctrl
*npct
= pinctrl_dev_get_drvdata(pctldev
);
1656 if (sscanf((char *)pin_name
, "GPIO%d", &pin_number
) == 1)
1657 for (i
= 0; i
< npct
->soc
->npins
; i
++)
1658 if (npct
->soc
->pins
[i
].number
== pin_number
)
1659 return npct
->soc
->pins
[i
].name
;
1663 static bool nmk_pinctrl_dt_get_config(struct device_node
*np
,
1664 unsigned long *configs
)
1666 bool has_config
= 0;
1667 unsigned long cfg
= 0;
1670 for (i
= 0; i
< ARRAY_SIZE(nmk_cfg_params
); i
++) {
1671 ret
= of_property_read_u32(np
,
1672 nmk_cfg_params
[i
].property
, &val
);
1673 if (ret
!= -EINVAL
) {
1674 if (nmk_dt_pin_config(i
, val
, &cfg
) == 0) {
1684 int nmk_pinctrl_dt_subnode_to_map(struct pinctrl_dev
*pctldev
,
1685 struct device_node
*np
,
1686 struct pinctrl_map
**map
,
1687 unsigned *reserved_maps
,
1691 const char *function
= NULL
;
1692 unsigned long configs
= 0;
1693 bool has_config
= 0;
1694 unsigned reserve
= 0;
1695 struct property
*prop
;
1696 const char *group
, *gpio_name
;
1697 struct device_node
*np_config
;
1699 ret
= of_property_read_string(np
, "ste,function", &function
);
1703 has_config
= nmk_pinctrl_dt_get_config(np
, &configs
);
1705 np_config
= of_parse_phandle(np
, "ste,config", 0);
1707 has_config
|= nmk_pinctrl_dt_get_config(np_config
, &configs
);
1709 ret
= of_property_count_strings(np
, "ste,pins");
1718 ret
= nmk_dt_reserve_map(map
, reserved_maps
, num_maps
, reserve
);
1722 of_property_for_each_string(np
, "ste,pins", prop
, group
) {
1724 ret
= nmk_dt_add_map_mux(map
, reserved_maps
, num_maps
,
1730 gpio_name
= nmk_find_pin_name(pctldev
, group
);
1732 ret
= nmk_dt_add_map_configs(map
, reserved_maps
, num_maps
,
1733 gpio_name
, &configs
, 1);
1743 int nmk_pinctrl_dt_node_to_map(struct pinctrl_dev
*pctldev
,
1744 struct device_node
*np_config
,
1745 struct pinctrl_map
**map
, unsigned *num_maps
)
1747 unsigned reserved_maps
;
1748 struct device_node
*np
;
1755 for_each_child_of_node(np_config
, np
) {
1756 ret
= nmk_pinctrl_dt_subnode_to_map(pctldev
, np
, map
,
1757 &reserved_maps
, num_maps
);
1759 nmk_pinctrl_dt_free_map(pctldev
, *map
, *num_maps
);
1767 static struct pinctrl_ops nmk_pinctrl_ops
= {
1768 .get_groups_count
= nmk_get_groups_cnt
,
1769 .get_group_name
= nmk_get_group_name
,
1770 .get_group_pins
= nmk_get_group_pins
,
1771 .pin_dbg_show
= nmk_pin_dbg_show
,
1772 .dt_node_to_map
= nmk_pinctrl_dt_node_to_map
,
1773 .dt_free_map
= nmk_pinctrl_dt_free_map
,
1776 static int nmk_pmx_get_funcs_cnt(struct pinctrl_dev
*pctldev
)
1778 struct nmk_pinctrl
*npct
= pinctrl_dev_get_drvdata(pctldev
);
1780 return npct
->soc
->nfunctions
;
1783 static const char *nmk_pmx_get_func_name(struct pinctrl_dev
*pctldev
,
1786 struct nmk_pinctrl
*npct
= pinctrl_dev_get_drvdata(pctldev
);
1788 return npct
->soc
->functions
[function
].name
;
1791 static int nmk_pmx_get_func_groups(struct pinctrl_dev
*pctldev
,
1793 const char * const **groups
,
1794 unsigned * const num_groups
)
1796 struct nmk_pinctrl
*npct
= pinctrl_dev_get_drvdata(pctldev
);
1798 *groups
= npct
->soc
->functions
[function
].groups
;
1799 *num_groups
= npct
->soc
->functions
[function
].ngroups
;
1804 static int nmk_pmx_enable(struct pinctrl_dev
*pctldev
, unsigned function
,
1807 struct nmk_pinctrl
*npct
= pinctrl_dev_get_drvdata(pctldev
);
1808 const struct nmk_pingroup
*g
;
1809 static unsigned int slpm
[NUM_BANKS
];
1810 unsigned long flags
;
1815 g
= &npct
->soc
->groups
[group
];
1817 if (g
->altsetting
< 0)
1820 dev_dbg(npct
->dev
, "enable group %s, %u pins\n", g
->name
, g
->npins
);
1823 * If we're setting altfunc C by setting both AFSLA and AFSLB to 1,
1824 * we may pass through an undesired state. In this case we take
1827 * Safe sequence used to switch IOs between GPIO and Alternate-C mode:
1828 * - Save SLPM registers (since we have a shadow register in the
1829 * nmk_chip we're using that as backup)
1830 * - Set SLPM=0 for the IOs you want to switch and others to 1
1831 * - Configure the GPIO registers for the IOs that are being switched
1833 * - Modify the AFLSA/B registers for the IOs that are being switched
1835 * - Restore SLPM registers
1836 * - Any spurious wake up event during switch sequence to be ignored
1839 * We REALLY need to save ALL slpm registers, because the external
1840 * IOFORCE will switch *all* ports to their sleepmode setting to as
1841 * to avoid glitches. (Not just one port!)
1843 glitch
= ((g
->altsetting
& NMK_GPIO_ALT_C
) == NMK_GPIO_ALT_C
);
1846 spin_lock_irqsave(&nmk_gpio_slpm_lock
, flags
);
1848 /* Initially don't put any pins to sleep when switching */
1849 memset(slpm
, 0xff, sizeof(slpm
));
1852 * Then mask the pins that need to be sleeping now when we're
1853 * switching to the ALT C function.
1855 for (i
= 0; i
< g
->npins
; i
++)
1856 slpm
[g
->pins
[i
] / NMK_GPIO_PER_CHIP
] &= ~BIT(g
->pins
[i
]);
1857 nmk_gpio_glitch_slpm_init(slpm
);
1860 for (i
= 0; i
< g
->npins
; i
++) {
1861 struct pinctrl_gpio_range
*range
;
1862 struct nmk_gpio_chip
*nmk_chip
;
1863 struct gpio_chip
*chip
;
1866 range
= nmk_match_gpio_range(pctldev
, g
->pins
[i
]);
1869 "invalid pin offset %d in group %s at index %d\n",
1870 g
->pins
[i
], g
->name
, i
);
1874 dev_err(npct
->dev
, "GPIO chip missing in range for pin offset %d in group %s at index %d\n",
1875 g
->pins
[i
], g
->name
, i
);
1879 nmk_chip
= container_of(chip
, struct nmk_gpio_chip
, chip
);
1880 dev_dbg(npct
->dev
, "setting pin %d to altsetting %d\n", g
->pins
[i
], g
->altsetting
);
1882 clk_enable(nmk_chip
->clk
);
1883 bit
= g
->pins
[i
] % NMK_GPIO_PER_CHIP
;
1885 * If the pin is switching to altfunc, and there was an
1886 * interrupt installed on it which has been lazy disabled,
1887 * actually mask the interrupt to prevent spurious interrupts
1888 * that would occur while the pin is under control of the
1889 * peripheral. Only SKE does this.
1891 nmk_gpio_disable_lazy_irq(nmk_chip
, bit
);
1893 __nmk_gpio_set_mode_safe(nmk_chip
, bit
,
1894 (g
->altsetting
& NMK_GPIO_ALT_C
), glitch
);
1895 clk_disable(nmk_chip
->clk
);
1898 * Call PRCM GPIOCR config function in case ALTC
1899 * has been selected:
1900 * - If selection is a ALTCx, some bits in PRCM GPIOCR registers
1902 * - If selection is pure ALTC and previous selection was ALTCx,
1903 * then some bits in PRCM GPIOCR registers must be cleared.
1905 if ((g
->altsetting
& NMK_GPIO_ALT_C
) == NMK_GPIO_ALT_C
)
1906 nmk_prcm_altcx_set_mode(npct
, g
->pins
[i
],
1907 g
->altsetting
>> NMK_GPIO_ALT_CX_SHIFT
);
1910 /* When all pins are successfully reconfigured we get here */
1915 nmk_gpio_glitch_slpm_restore(slpm
);
1916 spin_unlock_irqrestore(&nmk_gpio_slpm_lock
, flags
);
1922 static void nmk_pmx_disable(struct pinctrl_dev
*pctldev
,
1923 unsigned function
, unsigned group
)
1925 struct nmk_pinctrl
*npct
= pinctrl_dev_get_drvdata(pctldev
);
1926 const struct nmk_pingroup
*g
;
1928 g
= &npct
->soc
->groups
[group
];
1930 if (g
->altsetting
< 0)
1933 /* Poke out the mux, set the pin to some default state? */
1934 dev_dbg(npct
->dev
, "disable group %s, %u pins\n", g
->name
, g
->npins
);
1937 static int nmk_gpio_request_enable(struct pinctrl_dev
*pctldev
,
1938 struct pinctrl_gpio_range
*range
,
1941 struct nmk_pinctrl
*npct
= pinctrl_dev_get_drvdata(pctldev
);
1942 struct nmk_gpio_chip
*nmk_chip
;
1943 struct gpio_chip
*chip
;
1947 dev_err(npct
->dev
, "invalid range\n");
1951 dev_err(npct
->dev
, "missing GPIO chip in range\n");
1955 nmk_chip
= container_of(chip
, struct nmk_gpio_chip
, chip
);
1957 dev_dbg(npct
->dev
, "enable pin %u as GPIO\n", offset
);
1959 clk_enable(nmk_chip
->clk
);
1960 bit
= offset
% NMK_GPIO_PER_CHIP
;
1961 /* There is no glitch when converting any pin to GPIO */
1962 __nmk_gpio_set_mode(nmk_chip
, bit
, NMK_GPIO_ALT_GPIO
);
1963 clk_disable(nmk_chip
->clk
);
1968 static void nmk_gpio_disable_free(struct pinctrl_dev
*pctldev
,
1969 struct pinctrl_gpio_range
*range
,
1972 struct nmk_pinctrl
*npct
= pinctrl_dev_get_drvdata(pctldev
);
1974 dev_dbg(npct
->dev
, "disable pin %u as GPIO\n", offset
);
1975 /* Set the pin to some default state, GPIO is usually default */
1978 static struct pinmux_ops nmk_pinmux_ops
= {
1979 .get_functions_count
= nmk_pmx_get_funcs_cnt
,
1980 .get_function_name
= nmk_pmx_get_func_name
,
1981 .get_function_groups
= nmk_pmx_get_func_groups
,
1982 .enable
= nmk_pmx_enable
,
1983 .disable
= nmk_pmx_disable
,
1984 .gpio_request_enable
= nmk_gpio_request_enable
,
1985 .gpio_disable_free
= nmk_gpio_disable_free
,
1988 static int nmk_pin_config_get(struct pinctrl_dev
*pctldev
, unsigned pin
,
1989 unsigned long *config
)
1991 /* Not implemented */
1995 static int nmk_pin_config_set(struct pinctrl_dev
*pctldev
, unsigned pin
,
1996 unsigned long config
)
1998 static const char *pullnames
[] = {
1999 [NMK_GPIO_PULL_NONE
] = "none",
2000 [NMK_GPIO_PULL_UP
] = "up",
2001 [NMK_GPIO_PULL_DOWN
] = "down",
2002 [3] /* illegal */ = "??"
2004 static const char *slpmnames
[] = {
2005 [NMK_GPIO_SLPM_INPUT
] = "input/wakeup",
2006 [NMK_GPIO_SLPM_NOCHANGE
] = "no-change/no-wakeup",
2008 struct nmk_pinctrl
*npct
= pinctrl_dev_get_drvdata(pctldev
);
2009 struct nmk_gpio_chip
*nmk_chip
;
2010 struct pinctrl_gpio_range
*range
;
2011 struct gpio_chip
*chip
;
2015 * The pin config contains pin number and altfunction fields, here
2016 * we just ignore that part. It's being handled by the framework and
2017 * pinmux callback respectively.
2019 pin_cfg_t cfg
= (pin_cfg_t
) config
;
2020 int pull
= PIN_PULL(cfg
);
2021 int slpm
= PIN_SLPM(cfg
);
2022 int output
= PIN_DIR(cfg
);
2023 int val
= PIN_VAL(cfg
);
2024 bool lowemi
= PIN_LOWEMI(cfg
);
2025 bool gpiomode
= PIN_GPIOMODE(cfg
);
2026 bool sleep
= PIN_SLEEPMODE(cfg
);
2028 range
= nmk_match_gpio_range(pctldev
, pin
);
2030 dev_err(npct
->dev
, "invalid pin offset %d\n", pin
);
2034 dev_err(npct
->dev
, "GPIO chip missing in range for pin %d\n",
2039 nmk_chip
= container_of(chip
, struct nmk_gpio_chip
, chip
);
2042 int slpm_pull
= PIN_SLPM_PULL(cfg
);
2043 int slpm_output
= PIN_SLPM_DIR(cfg
);
2044 int slpm_val
= PIN_SLPM_VAL(cfg
);
2046 /* All pins go into GPIO mode at sleep */
2050 * The SLPM_* values are normal values + 1 to allow zero to
2051 * mean "same as normal".
2054 pull
= slpm_pull
- 1;
2056 output
= slpm_output
- 1;
2060 dev_dbg(nmk_chip
->chip
.dev
, "pin %d: sleep pull %s, dir %s, val %s\n",
2062 slpm_pull
? pullnames
[pull
] : "same",
2063 slpm_output
? (output
? "output" : "input") : "same",
2064 slpm_val
? (val
? "high" : "low") : "same");
2067 dev_dbg(nmk_chip
->chip
.dev
, "pin %d [%#lx]: pull %s, slpm %s (%s%s), lowemi %s\n",
2068 pin
, cfg
, pullnames
[pull
], slpmnames
[slpm
],
2069 output
? "output " : "input",
2070 output
? (val
? "high" : "low") : "",
2071 lowemi
? "on" : "off" );
2073 clk_enable(nmk_chip
->clk
);
2074 bit
= pin
% NMK_GPIO_PER_CHIP
;
2076 /* No glitch when going to GPIO mode */
2077 __nmk_gpio_set_mode(nmk_chip
, bit
, NMK_GPIO_ALT_GPIO
);
2079 __nmk_gpio_make_output(nmk_chip
, bit
, val
);
2081 __nmk_gpio_make_input(nmk_chip
, bit
);
2082 __nmk_gpio_set_pull(nmk_chip
, bit
, pull
);
2084 /* TODO: isn't this only applicable on output pins? */
2085 __nmk_gpio_set_lowemi(nmk_chip
, bit
, lowemi
);
2087 __nmk_gpio_set_slpm(nmk_chip
, bit
, slpm
);
2088 clk_disable(nmk_chip
->clk
);
2092 static struct pinconf_ops nmk_pinconf_ops
= {
2093 .pin_config_get
= nmk_pin_config_get
,
2094 .pin_config_set
= nmk_pin_config_set
,
2097 static struct pinctrl_desc nmk_pinctrl_desc
= {
2098 .name
= "pinctrl-nomadik",
2099 .pctlops
= &nmk_pinctrl_ops
,
2100 .pmxops
= &nmk_pinmux_ops
,
2101 .confops
= &nmk_pinconf_ops
,
2102 .owner
= THIS_MODULE
,
2105 static const struct of_device_id nmk_pinctrl_match
[] = {
2107 .compatible
= "stericsson,nmk-pinctrl",
2108 .data
= (void *)PINCTRL_NMK_DB8500
,
2113 static int nmk_pinctrl_suspend(struct platform_device
*pdev
, pm_message_t state
)
2115 struct nmk_pinctrl
*npct
;
2117 npct
= platform_get_drvdata(pdev
);
2121 return pinctrl_force_sleep(npct
->pctl
);
2124 static int nmk_pinctrl_resume(struct platform_device
*pdev
)
2126 struct nmk_pinctrl
*npct
;
2128 npct
= platform_get_drvdata(pdev
);
2132 return pinctrl_force_default(npct
->pctl
);
2135 static int nmk_pinctrl_probe(struct platform_device
*pdev
)
2137 const struct platform_device_id
*platid
= platform_get_device_id(pdev
);
2138 struct device_node
*np
= pdev
->dev
.of_node
;
2139 struct device_node
*prcm_np
;
2140 struct nmk_pinctrl
*npct
;
2141 struct resource
*res
;
2142 unsigned int version
= 0;
2145 npct
= devm_kzalloc(&pdev
->dev
, sizeof(*npct
), GFP_KERNEL
);
2150 version
= platid
->driver_data
;
2152 const struct of_device_id
*match
;
2154 match
= of_match_device(nmk_pinctrl_match
, &pdev
->dev
);
2157 version
= (unsigned int) match
->data
;
2160 /* Poke in other ASIC variants here */
2161 if (version
== PINCTRL_NMK_STN8815
)
2162 nmk_pinctrl_stn8815_init(&npct
->soc
);
2163 if (version
== PINCTRL_NMK_DB8500
)
2164 nmk_pinctrl_db8500_init(&npct
->soc
);
2165 if (version
== PINCTRL_NMK_DB8540
)
2166 nmk_pinctrl_db8540_init(&npct
->soc
);
2169 prcm_np
= of_parse_phandle(np
, "prcm", 0);
2171 npct
->prcm_base
= of_iomap(prcm_np
, 0);
2174 /* Allow platform passed information to over-write DT. */
2175 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
2177 npct
->prcm_base
= devm_ioremap(&pdev
->dev
, res
->start
,
2178 resource_size(res
));
2179 if (!npct
->prcm_base
) {
2180 if (version
== PINCTRL_NMK_STN8815
) {
2181 dev_info(&pdev
->dev
,
2183 "assuming no ALT-Cx control is available\n");
2185 dev_err(&pdev
->dev
, "missing PRCM base address\n");
2191 * We need all the GPIO drivers to probe FIRST, or we will not be able
2192 * to obtain references to the struct gpio_chip * for them, and we
2193 * need this to proceed.
2195 for (i
= 0; i
< npct
->soc
->gpio_num_ranges
; i
++) {
2196 if (!nmk_gpio_chips
[npct
->soc
->gpio_ranges
[i
].id
]) {
2197 dev_warn(&pdev
->dev
, "GPIO chip %d not registered yet\n", i
);
2198 return -EPROBE_DEFER
;
2200 npct
->soc
->gpio_ranges
[i
].gc
= &nmk_gpio_chips
[npct
->soc
->gpio_ranges
[i
].id
]->chip
;
2203 nmk_pinctrl_desc
.pins
= npct
->soc
->pins
;
2204 nmk_pinctrl_desc
.npins
= npct
->soc
->npins
;
2205 npct
->dev
= &pdev
->dev
;
2207 npct
->pctl
= pinctrl_register(&nmk_pinctrl_desc
, &pdev
->dev
, npct
);
2209 dev_err(&pdev
->dev
, "could not register Nomadik pinctrl driver\n");
2213 /* We will handle a range of GPIO pins */
2214 for (i
= 0; i
< npct
->soc
->gpio_num_ranges
; i
++)
2215 pinctrl_add_gpio_range(npct
->pctl
, &npct
->soc
->gpio_ranges
[i
]);
2217 platform_set_drvdata(pdev
, npct
);
2218 dev_info(&pdev
->dev
, "initialized Nomadik pin control driver\n");
2223 static const struct of_device_id nmk_gpio_match
[] = {
2224 { .compatible
= "st,nomadik-gpio", },
2228 static struct platform_driver nmk_gpio_driver
= {
2230 .owner
= THIS_MODULE
,
2232 .of_match_table
= nmk_gpio_match
,
2234 .probe
= nmk_gpio_probe
,
2237 static const struct platform_device_id nmk_pinctrl_id
[] = {
2238 { "pinctrl-stn8815", PINCTRL_NMK_STN8815
},
2239 { "pinctrl-db8500", PINCTRL_NMK_DB8500
},
2240 { "pinctrl-db8540", PINCTRL_NMK_DB8540
},
2244 static struct platform_driver nmk_pinctrl_driver
= {
2246 .owner
= THIS_MODULE
,
2247 .name
= "pinctrl-nomadik",
2248 .of_match_table
= nmk_pinctrl_match
,
2250 .probe
= nmk_pinctrl_probe
,
2251 .id_table
= nmk_pinctrl_id
,
2253 .suspend
= nmk_pinctrl_suspend
,
2254 .resume
= nmk_pinctrl_resume
,
2258 static int __init
nmk_gpio_init(void)
2262 ret
= platform_driver_register(&nmk_gpio_driver
);
2265 return platform_driver_register(&nmk_pinctrl_driver
);
2268 core_initcall(nmk_gpio_init
);
2270 MODULE_AUTHOR("Prafulla WADASKAR and Alessandro Rubini");
2271 MODULE_DESCRIPTION("Nomadik GPIO Driver");
2272 MODULE_LICENSE("GPL");