2 * Marvell 37xx SoC pinctrl driver
4 * Copyright (C) 2017 Marvell
6 * Gregory CLEMENT <gregory.clement@free-electrons.com>
8 * This file is licensed under the terms of the GNU General Public
9 * License version 2 or later. This program is licensed "as is"
10 * without any warranty of any kind, whether express or implied.
13 #include <linux/gpio/driver.h>
14 #include <linux/mfd/syscon.h>
16 #include <linux/of_irq.h>
17 #include <linux/pinctrl/pinconf-generic.h>
18 #include <linux/pinctrl/pinconf.h>
19 #include <linux/pinctrl/pinctrl.h>
20 #include <linux/pinctrl/pinmux.h>
21 #include <linux/platform_device.h>
22 #include <linux/property.h>
23 #include <linux/regmap.h>
24 #include <linux/seq_file.h>
25 #include <linux/slab.h>
26 #include <linux/string_helpers.h>
28 #include "../pinctrl-utils.h"
31 #define INPUT_VAL 0x10
32 #define OUTPUT_VAL 0x18
33 #define OUTPUT_CTL 0x20
34 #define SELECTION 0x30
38 #define IRQ_STATUS 0x10
42 #define GPIO_PER_REG 32
45 * struct armada_37xx_pin_group: represents group of pins of a pinmux function.
46 * The pins of a pinmux groups are composed of one or two groups of contiguous
48 * @name: Name of the pin group, used to lookup the group.
49 * @start_pin: Index of the first pin of the main range of pins belonging to
51 * @npins: Number of pins included in the first range
52 * @reg_mask: Bit mask matching the group in the selection register
53 * @val: Value to write to the registers for a given function
54 * @extra_pin: Index of the first pin of the optional second range of pins
55 * belonging to the group
56 * @extra_npins:Number of pins included in the second optional range
57 * @funcs: A list of pinmux functions that can be selected for this group.
58 * @pins: List of the pins included in the group
60 struct armada_37xx_pin_group
{
62 unsigned int start_pin
;
66 unsigned int extra_pin
;
67 unsigned int extra_npins
;
68 const char *funcs
[NB_FUNCS
];
72 struct armada_37xx_pin_data
{
75 struct armada_37xx_pin_group
*groups
;
79 struct armada_37xx_pmx_func
{
85 struct armada_37xx_pm_state
{
97 struct armada_37xx_pinctrl
{
98 struct regmap
*regmap
;
100 const struct armada_37xx_pin_data
*data
;
102 struct gpio_chip gpio_chip
;
103 raw_spinlock_t irq_lock
;
104 struct pinctrl_desc pctl
;
105 struct pinctrl_dev
*pctl_dev
;
106 struct armada_37xx_pin_group
*groups
;
107 unsigned int ngroups
;
108 struct armada_37xx_pmx_func
*funcs
;
110 struct armada_37xx_pm_state pm
;
113 #define PIN_GRP_GPIO_0(_name, _start, _nr) \
116 .start_pin = _start, \
123 #define PIN_GRP_GPIO(_name, _start, _nr, _mask, _func1) \
126 .start_pin = _start, \
130 .funcs = {_func1, "gpio"} \
133 #define PIN_GRP_GPIO_2(_name, _start, _nr, _mask, _val1, _val2, _func1) \
136 .start_pin = _start, \
139 .val = {_val1, _val2}, \
140 .funcs = {_func1, "gpio"} \
143 #define PIN_GRP_GPIO_3(_name, _start, _nr, _mask, _v1, _v2, _v3, _f1, _f2) \
146 .start_pin = _start, \
149 .val = {_v1, _v2, _v3}, \
150 .funcs = {_f1, _f2, "gpio"} \
153 #define PIN_GRP_EXTRA(_name, _start, _nr, _mask, _v1, _v2, _start2, _nr2, \
157 .start_pin = _start, \
161 .extra_pin = _start2, \
162 .extra_npins = _nr2, \
163 .funcs = {_f1, _f2} \
166 static struct armada_37xx_pin_group armada_37xx_nb_groups
[] = {
167 PIN_GRP_GPIO("jtag", 20, 5, BIT(0), "jtag"),
168 PIN_GRP_GPIO("sdio0", 8, 3, BIT(1), "sdio"),
169 PIN_GRP_GPIO("emmc_nb", 27, 9, BIT(2), "emmc"),
170 PIN_GRP_GPIO_3("pwm0", 11, 1, BIT(3) | BIT(20), 0, BIT(20), BIT(3),
172 PIN_GRP_GPIO_3("pwm1", 12, 1, BIT(4) | BIT(21), 0, BIT(21), BIT(4),
174 PIN_GRP_GPIO_3("pwm2", 13, 1, BIT(5) | BIT(22), 0, BIT(22), BIT(5),
176 PIN_GRP_GPIO_3("pwm3", 14, 1, BIT(6) | BIT(23), 0, BIT(23), BIT(6),
178 PIN_GRP_GPIO("pmic1", 7, 1, BIT(7), "pmic"),
179 PIN_GRP_GPIO("pmic0", 6, 1, BIT(8), "pmic"),
180 PIN_GRP_GPIO_0("gpio1_5", 5, 1),
181 PIN_GRP_GPIO("i2c2", 2, 2, BIT(9), "i2c"),
182 PIN_GRP_GPIO("i2c1", 0, 2, BIT(10), "i2c"),
183 PIN_GRP_GPIO("spi_cs1", 17, 1, BIT(12), "spi"),
184 PIN_GRP_GPIO_2("spi_cs2", 18, 1, BIT(13) | BIT(19), 0, BIT(13), "spi"),
185 PIN_GRP_GPIO_2("spi_cs3", 19, 1, BIT(14) | BIT(19), 0, BIT(14), "spi"),
186 PIN_GRP_GPIO("onewire", 4, 1, BIT(16), "onewire"),
187 PIN_GRP_GPIO("uart1", 25, 2, BIT(17), "uart"),
188 PIN_GRP_GPIO("spi_quad", 15, 2, BIT(18), "spi"),
189 PIN_GRP_EXTRA("uart2", 9, 2, BIT(1) | BIT(13) | BIT(14) | BIT(19),
190 BIT(1) | BIT(13) | BIT(14), BIT(1) | BIT(19),
191 18, 2, "gpio", "uart"),
194 static struct armada_37xx_pin_group armada_37xx_sb_groups
[] = {
195 PIN_GRP_GPIO("usb32_drvvbus0", 0, 1, BIT(0), "drvbus"),
196 PIN_GRP_GPIO("usb2_drvvbus1", 1, 1, BIT(1), "drvbus"),
197 PIN_GRP_GPIO_0("gpio2_2", 2, 1),
198 PIN_GRP_GPIO("sdio_sb", 24, 6, BIT(2), "sdio"),
199 PIN_GRP_GPIO("rgmii", 6, 12, BIT(3), "mii"),
200 PIN_GRP_GPIO("smi", 18, 2, BIT(4), "smi"),
201 PIN_GRP_GPIO("pcie1", 3, 1, BIT(5), "pcie"), /* this actually controls "pcie1_reset" */
202 PIN_GRP_GPIO("pcie1_clkreq", 4, 1, BIT(9), "pcie"),
203 PIN_GRP_GPIO("pcie1_wakeup", 5, 1, BIT(10), "pcie"),
204 PIN_GRP_GPIO("ptp", 20, 1, BIT(11), "ptp"),
205 PIN_GRP_GPIO_3("ptp_clk", 21, 1, BIT(6) | BIT(12), 0, BIT(6), BIT(12),
207 PIN_GRP_GPIO_3("ptp_trig", 22, 1, BIT(7) | BIT(13), 0, BIT(7), BIT(13),
209 PIN_GRP_GPIO_3("mii_col", 23, 1, BIT(8) | BIT(14), 0, BIT(8), BIT(14),
213 static const struct armada_37xx_pin_data armada_37xx_pin_nb
= {
216 .groups
= armada_37xx_nb_groups
,
217 .ngroups
= ARRAY_SIZE(armada_37xx_nb_groups
),
220 static const struct armada_37xx_pin_data armada_37xx_pin_sb
= {
223 .groups
= armada_37xx_sb_groups
,
224 .ngroups
= ARRAY_SIZE(armada_37xx_sb_groups
),
227 static inline void armada_37xx_update_reg(unsigned int *reg
,
228 unsigned int *offset
)
230 /* We never have more than 2 registers */
231 if (*offset
>= GPIO_PER_REG
) {
232 *offset
-= GPIO_PER_REG
;
237 static struct armada_37xx_pin_group
*armada_37xx_find_next_grp_by_pin(
238 struct armada_37xx_pinctrl
*info
, int pin
, int *grp
)
240 while (*grp
< info
->ngroups
) {
241 struct armada_37xx_pin_group
*group
= &info
->groups
[*grp
];
245 for (j
= 0; j
< (group
->npins
+ group
->extra_npins
); j
++)
246 if (group
->pins
[j
] == pin
)
252 static int armada_37xx_pin_config_group_get(struct pinctrl_dev
*pctldev
,
253 unsigned int selector
, unsigned long *config
)
258 static int armada_37xx_pin_config_group_set(struct pinctrl_dev
*pctldev
,
259 unsigned int selector
, unsigned long *configs
,
260 unsigned int num_configs
)
265 static const struct pinconf_ops armada_37xx_pinconf_ops
= {
267 .pin_config_group_get
= armada_37xx_pin_config_group_get
,
268 .pin_config_group_set
= armada_37xx_pin_config_group_set
,
271 static int armada_37xx_get_groups_count(struct pinctrl_dev
*pctldev
)
273 struct armada_37xx_pinctrl
*info
= pinctrl_dev_get_drvdata(pctldev
);
275 return info
->ngroups
;
278 static const char *armada_37xx_get_group_name(struct pinctrl_dev
*pctldev
,
281 struct armada_37xx_pinctrl
*info
= pinctrl_dev_get_drvdata(pctldev
);
283 return info
->groups
[group
].name
;
286 static int armada_37xx_get_group_pins(struct pinctrl_dev
*pctldev
,
287 unsigned int selector
,
288 const unsigned int **pins
,
291 struct armada_37xx_pinctrl
*info
= pinctrl_dev_get_drvdata(pctldev
);
293 if (selector
>= info
->ngroups
)
296 *pins
= info
->groups
[selector
].pins
;
297 *npins
= info
->groups
[selector
].npins
+
298 info
->groups
[selector
].extra_npins
;
303 static const struct pinctrl_ops armada_37xx_pctrl_ops
= {
304 .get_groups_count
= armada_37xx_get_groups_count
,
305 .get_group_name
= armada_37xx_get_group_name
,
306 .get_group_pins
= armada_37xx_get_group_pins
,
307 .dt_node_to_map
= pinconf_generic_dt_node_to_map_group
,
308 .dt_free_map
= pinctrl_utils_free_map
,
312 * Pinmux_ops handling
315 static int armada_37xx_pmx_get_funcs_count(struct pinctrl_dev
*pctldev
)
317 struct armada_37xx_pinctrl
*info
= pinctrl_dev_get_drvdata(pctldev
);
322 static const char *armada_37xx_pmx_get_func_name(struct pinctrl_dev
*pctldev
,
323 unsigned int selector
)
325 struct armada_37xx_pinctrl
*info
= pinctrl_dev_get_drvdata(pctldev
);
327 return info
->funcs
[selector
].name
;
330 static int armada_37xx_pmx_get_groups(struct pinctrl_dev
*pctldev
,
331 unsigned int selector
,
332 const char * const **groups
,
333 unsigned int * const num_groups
)
335 struct armada_37xx_pinctrl
*info
= pinctrl_dev_get_drvdata(pctldev
);
337 *groups
= info
->funcs
[selector
].groups
;
338 *num_groups
= info
->funcs
[selector
].ngroups
;
343 static int armada_37xx_pmx_set_by_name(struct pinctrl_dev
*pctldev
,
345 struct armada_37xx_pin_group
*grp
)
347 struct armada_37xx_pinctrl
*info
= pinctrl_dev_get_drvdata(pctldev
);
348 struct device
*dev
= info
->dev
;
349 unsigned int reg
= SELECTION
;
350 unsigned int mask
= grp
->reg_mask
;
353 dev_dbg(dev
, "enable function %s group %s\n", name
, grp
->name
);
355 func
= match_string(grp
->funcs
, NB_FUNCS
, name
);
359 val
= grp
->val
[func
];
361 regmap_update_bits(info
->regmap
, reg
, mask
, val
);
366 static int armada_37xx_pmx_set(struct pinctrl_dev
*pctldev
,
367 unsigned int selector
,
371 struct armada_37xx_pinctrl
*info
= pinctrl_dev_get_drvdata(pctldev
);
372 struct armada_37xx_pin_group
*grp
= &info
->groups
[group
];
373 const char *name
= info
->funcs
[selector
].name
;
375 return armada_37xx_pmx_set_by_name(pctldev
, name
, grp
);
378 static inline void armada_37xx_irq_update_reg(unsigned int *reg
,
381 int offset
= irqd_to_hwirq(d
);
383 armada_37xx_update_reg(reg
, &offset
);
386 static int armada_37xx_gpio_direction_input(struct gpio_chip
*chip
,
389 struct armada_37xx_pinctrl
*info
= gpiochip_get_data(chip
);
390 unsigned int reg
= OUTPUT_EN
;
393 armada_37xx_update_reg(®
, &offset
);
396 return regmap_update_bits(info
->regmap
, reg
, mask
, 0);
399 static int armada_37xx_gpio_get_direction(struct gpio_chip
*chip
,
402 struct armada_37xx_pinctrl
*info
= gpiochip_get_data(chip
);
403 unsigned int reg
= OUTPUT_EN
;
404 unsigned int val
, mask
;
406 armada_37xx_update_reg(®
, &offset
);
408 regmap_read(info
->regmap
, reg
, &val
);
411 return GPIO_LINE_DIRECTION_OUT
;
413 return GPIO_LINE_DIRECTION_IN
;
416 static int armada_37xx_gpio_direction_output(struct gpio_chip
*chip
,
417 unsigned int offset
, int value
)
419 struct armada_37xx_pinctrl
*info
= gpiochip_get_data(chip
);
420 unsigned int reg
= OUTPUT_EN
;
421 unsigned int mask
, val
, ret
;
423 armada_37xx_update_reg(®
, &offset
);
426 ret
= regmap_update_bits(info
->regmap
, reg
, mask
, mask
);
432 val
= value
? mask
: 0;
433 regmap_update_bits(info
->regmap
, reg
, mask
, val
);
438 static int armada_37xx_gpio_get(struct gpio_chip
*chip
, unsigned int offset
)
440 struct armada_37xx_pinctrl
*info
= gpiochip_get_data(chip
);
441 unsigned int reg
= INPUT_VAL
;
442 unsigned int val
, mask
;
444 armada_37xx_update_reg(®
, &offset
);
447 regmap_read(info
->regmap
, reg
, &val
);
449 return (val
& mask
) != 0;
452 static void armada_37xx_gpio_set(struct gpio_chip
*chip
, unsigned int offset
,
455 struct armada_37xx_pinctrl
*info
= gpiochip_get_data(chip
);
456 unsigned int reg
= OUTPUT_VAL
;
457 unsigned int mask
, val
;
459 armada_37xx_update_reg(®
, &offset
);
461 val
= value
? mask
: 0;
463 regmap_update_bits(info
->regmap
, reg
, mask
, val
);
466 static int armada_37xx_pmx_gpio_set_direction(struct pinctrl_dev
*pctldev
,
467 struct pinctrl_gpio_range
*range
,
468 unsigned int offset
, bool input
)
470 struct armada_37xx_pinctrl
*info
= pinctrl_dev_get_drvdata(pctldev
);
471 struct gpio_chip
*chip
= range
->gc
;
473 dev_dbg(info
->dev
, "gpio_direction for pin %u as %s-%d to %s\n",
474 offset
, range
->name
, offset
, input
? "input" : "output");
477 armada_37xx_gpio_direction_input(chip
, offset
);
479 armada_37xx_gpio_direction_output(chip
, offset
, 0);
484 static int armada_37xx_gpio_request_enable(struct pinctrl_dev
*pctldev
,
485 struct pinctrl_gpio_range
*range
,
488 struct armada_37xx_pinctrl
*info
= pinctrl_dev_get_drvdata(pctldev
);
489 struct armada_37xx_pin_group
*group
;
493 dev_dbg(info
->dev
, "requesting gpio %d\n", offset
);
495 while ((group
= armada_37xx_find_next_grp_by_pin(info
, offset
, &grp
))) {
496 ret
= armada_37xx_pmx_set_by_name(pctldev
, "gpio", group
);
504 static const struct pinmux_ops armada_37xx_pmx_ops
= {
505 .get_functions_count
= armada_37xx_pmx_get_funcs_count
,
506 .get_function_name
= armada_37xx_pmx_get_func_name
,
507 .get_function_groups
= armada_37xx_pmx_get_groups
,
508 .set_mux
= armada_37xx_pmx_set
,
509 .gpio_request_enable
= armada_37xx_gpio_request_enable
,
510 .gpio_set_direction
= armada_37xx_pmx_gpio_set_direction
,
513 static const struct gpio_chip armada_37xx_gpiolib_chip
= {
514 .request
= gpiochip_generic_request
,
515 .free
= gpiochip_generic_free
,
516 .set
= armada_37xx_gpio_set
,
517 .get
= armada_37xx_gpio_get
,
518 .get_direction
= armada_37xx_gpio_get_direction
,
519 .direction_input
= armada_37xx_gpio_direction_input
,
520 .direction_output
= armada_37xx_gpio_direction_output
,
521 .owner
= THIS_MODULE
,
524 static void armada_37xx_irq_ack(struct irq_data
*d
)
526 struct gpio_chip
*chip
= irq_data_get_irq_chip_data(d
);
527 struct armada_37xx_pinctrl
*info
= gpiochip_get_data(chip
);
528 u32 reg
= IRQ_STATUS
;
531 armada_37xx_irq_update_reg(®
, d
);
532 raw_spin_lock_irqsave(&info
->irq_lock
, flags
);
533 writel(d
->mask
, info
->base
+ reg
);
534 raw_spin_unlock_irqrestore(&info
->irq_lock
, flags
);
537 static void armada_37xx_irq_mask(struct irq_data
*d
)
539 struct gpio_chip
*chip
= irq_data_get_irq_chip_data(d
);
540 struct armada_37xx_pinctrl
*info
= gpiochip_get_data(chip
);
541 u32 val
, reg
= IRQ_EN
;
544 armada_37xx_irq_update_reg(®
, d
);
545 raw_spin_lock_irqsave(&info
->irq_lock
, flags
);
546 val
= readl(info
->base
+ reg
);
547 writel(val
& ~d
->mask
, info
->base
+ reg
);
548 raw_spin_unlock_irqrestore(&info
->irq_lock
, flags
);
549 gpiochip_disable_irq(chip
, irqd_to_hwirq(d
));
552 static void armada_37xx_irq_unmask(struct irq_data
*d
)
554 struct gpio_chip
*chip
= irq_data_get_irq_chip_data(d
);
555 struct armada_37xx_pinctrl
*info
= gpiochip_get_data(chip
);
556 u32 val
, reg
= IRQ_EN
;
559 gpiochip_enable_irq(chip
, irqd_to_hwirq(d
));
560 armada_37xx_irq_update_reg(®
, d
);
561 raw_spin_lock_irqsave(&info
->irq_lock
, flags
);
562 val
= readl(info
->base
+ reg
);
563 writel(val
| d
->mask
, info
->base
+ reg
);
564 raw_spin_unlock_irqrestore(&info
->irq_lock
, flags
);
567 static int armada_37xx_irq_set_wake(struct irq_data
*d
, unsigned int on
)
569 struct gpio_chip
*chip
= irq_data_get_irq_chip_data(d
);
570 struct armada_37xx_pinctrl
*info
= gpiochip_get_data(chip
);
571 u32 val
, reg
= IRQ_WKUP
;
574 armada_37xx_irq_update_reg(®
, d
);
575 raw_spin_lock_irqsave(&info
->irq_lock
, flags
);
576 val
= readl(info
->base
+ reg
);
578 val
|= (BIT(d
->hwirq
% GPIO_PER_REG
));
580 val
&= ~(BIT(d
->hwirq
% GPIO_PER_REG
));
581 writel(val
, info
->base
+ reg
);
582 raw_spin_unlock_irqrestore(&info
->irq_lock
, flags
);
587 static int armada_37xx_irq_set_type(struct irq_data
*d
, unsigned int type
)
589 struct gpio_chip
*chip
= irq_data_get_irq_chip_data(d
);
590 struct armada_37xx_pinctrl
*info
= gpiochip_get_data(chip
);
591 u32 val
, reg
= IRQ_POL
;
594 raw_spin_lock_irqsave(&info
->irq_lock
, flags
);
595 armada_37xx_irq_update_reg(®
, d
);
596 val
= readl(info
->base
+ reg
);
598 case IRQ_TYPE_EDGE_RISING
:
599 val
&= ~(BIT(d
->hwirq
% GPIO_PER_REG
));
601 case IRQ_TYPE_EDGE_FALLING
:
602 val
|= (BIT(d
->hwirq
% GPIO_PER_REG
));
604 case IRQ_TYPE_EDGE_BOTH
: {
605 u32 in_val
, in_reg
= INPUT_VAL
;
607 armada_37xx_irq_update_reg(&in_reg
, d
);
608 regmap_read(info
->regmap
, in_reg
, &in_val
);
610 /* Set initial polarity based on current input level. */
611 if (in_val
& BIT(d
->hwirq
% GPIO_PER_REG
))
612 val
|= BIT(d
->hwirq
% GPIO_PER_REG
); /* falling */
614 val
&= ~(BIT(d
->hwirq
% GPIO_PER_REG
)); /* rising */
618 raw_spin_unlock_irqrestore(&info
->irq_lock
, flags
);
621 writel(val
, info
->base
+ reg
);
622 raw_spin_unlock_irqrestore(&info
->irq_lock
, flags
);
627 static int armada_37xx_edge_both_irq_swap_pol(struct armada_37xx_pinctrl
*info
,
630 u32 reg_idx
= pin_idx
/ GPIO_PER_REG
;
631 u32 bit_num
= pin_idx
% GPIO_PER_REG
;
635 regmap_read(info
->regmap
, INPUT_VAL
+ 4*reg_idx
, &l
);
637 raw_spin_lock_irqsave(&info
->irq_lock
, flags
);
638 p
= readl(info
->base
+ IRQ_POL
+ 4 * reg_idx
);
639 if ((p
^ l
) & (1 << bit_num
)) {
641 * For the gpios which are used for both-edge irqs, when their
642 * interrupts happen, their input levels are changed,
643 * yet their interrupt polarities are kept in old values, we
644 * should synchronize their interrupt polarities; for example,
645 * at first a gpio's input level is low and its interrupt
646 * polarity control is "Detect rising edge", then the gpio has
647 * a interrupt , its level turns to high, we should change its
648 * polarity control to "Detect falling edge" correspondingly.
651 writel(p
, info
->base
+ IRQ_POL
+ 4 * reg_idx
);
658 raw_spin_unlock_irqrestore(&info
->irq_lock
, flags
);
662 static void armada_37xx_irq_handler(struct irq_desc
*desc
)
664 struct gpio_chip
*gc
= irq_desc_get_handler_data(desc
);
665 struct irq_chip
*chip
= irq_desc_get_chip(desc
);
666 struct armada_37xx_pinctrl
*info
= gpiochip_get_data(gc
);
667 struct irq_domain
*d
= gc
->irq
.domain
;
670 chained_irq_enter(chip
, desc
);
671 for (i
= 0; i
<= d
->revmap_size
/ GPIO_PER_REG
; i
++) {
675 raw_spin_lock_irqsave(&info
->irq_lock
, flags
);
676 status
= readl_relaxed(info
->base
+ IRQ_STATUS
+ 4 * i
);
677 /* Manage only the interrupt that was enabled */
678 status
&= readl_relaxed(info
->base
+ IRQ_EN
+ 4 * i
);
679 raw_spin_unlock_irqrestore(&info
->irq_lock
, flags
);
681 u32 hwirq
= ffs(status
) - 1;
682 u32 virq
= irq_find_mapping(d
, hwirq
+
684 u32 t
= irq_get_trigger_type(virq
);
686 if ((t
& IRQ_TYPE_SENSE_MASK
) == IRQ_TYPE_EDGE_BOTH
) {
687 /* Swap polarity (race with GPIO line) */
688 if (armada_37xx_edge_both_irq_swap_pol(info
,
689 hwirq
+ i
* GPIO_PER_REG
)) {
691 * For spurious irq, which gpio level
692 * is not as expected after incoming
693 * edge, just ack the gpio irq.
702 generic_handle_irq(virq
);
705 /* Update status in case a new IRQ appears */
706 raw_spin_lock_irqsave(&info
->irq_lock
, flags
);
707 status
= readl_relaxed(info
->base
+
709 /* Manage only the interrupt that was enabled */
710 status
&= readl_relaxed(info
->base
+ IRQ_EN
+ 4 * i
);
711 raw_spin_unlock_irqrestore(&info
->irq_lock
, flags
);
714 chained_irq_exit(chip
, desc
);
717 static unsigned int armada_37xx_irq_startup(struct irq_data
*d
)
720 * The mask field is a "precomputed bitmask for accessing the
721 * chip registers" which was introduced for the generic
722 * irqchip framework. As we don't use this framework, we can
723 * reuse this field for our own usage.
725 d
->mask
= BIT(d
->hwirq
% GPIO_PER_REG
);
727 armada_37xx_irq_unmask(d
);
732 static void armada_37xx_irq_print_chip(struct irq_data
*d
, struct seq_file
*p
)
734 struct gpio_chip
*chip
= irq_data_get_irq_chip_data(d
);
735 struct armada_37xx_pinctrl
*info
= gpiochip_get_data(chip
);
737 seq_puts(p
, info
->data
->name
);
740 static const struct irq_chip armada_37xx_irqchip
= {
741 .irq_ack
= armada_37xx_irq_ack
,
742 .irq_mask
= armada_37xx_irq_mask
,
743 .irq_unmask
= armada_37xx_irq_unmask
,
744 .irq_set_wake
= armada_37xx_irq_set_wake
,
745 .irq_set_type
= armada_37xx_irq_set_type
,
746 .irq_startup
= armada_37xx_irq_startup
,
747 .irq_print_chip
= armada_37xx_irq_print_chip
,
748 .flags
= IRQCHIP_IMMUTABLE
,
749 GPIOCHIP_IRQ_RESOURCE_HELPERS
,
752 static int armada_37xx_irqchip_register(struct platform_device
*pdev
,
753 struct armada_37xx_pinctrl
*info
)
755 struct gpio_chip
*gc
= &info
->gpio_chip
;
756 struct gpio_irq_chip
*girq
= &gc
->irq
;
757 struct device_node
*np
= to_of_node(gc
->fwnode
);
758 struct device
*dev
= &pdev
->dev
;
759 unsigned int i
, nr_irq_parent
;
761 raw_spin_lock_init(&info
->irq_lock
);
763 nr_irq_parent
= of_irq_count(np
);
764 if (!nr_irq_parent
) {
765 dev_err(dev
, "invalid or no IRQ\n");
769 info
->base
= devm_platform_ioremap_resource(pdev
, 1);
770 if (IS_ERR(info
->base
))
771 return PTR_ERR(info
->base
);
773 gpio_irq_chip_set_chip(girq
, &armada_37xx_irqchip
);
774 girq
->parent_handler
= armada_37xx_irq_handler
;
776 * Many interrupts are connected to the parent interrupt
777 * controller. But we do not take advantage of this and use
778 * the chained irq with all of them.
780 girq
->num_parents
= nr_irq_parent
;
781 girq
->parents
= devm_kcalloc(dev
, nr_irq_parent
, sizeof(*girq
->parents
), GFP_KERNEL
);
784 for (i
= 0; i
< nr_irq_parent
; i
++) {
785 int irq
= irq_of_parse_and_map(np
, i
);
789 girq
->parents
[i
] = irq
;
791 girq
->default_type
= IRQ_TYPE_NONE
;
792 girq
->handler
= handle_edge_irq
;
797 static int armada_37xx_gpiochip_register(struct platform_device
*pdev
,
798 struct armada_37xx_pinctrl
*info
)
800 struct device
*dev
= &pdev
->dev
;
801 struct fwnode_handle
*fwnode
;
802 struct gpio_chip
*gc
;
805 fwnode
= gpiochip_node_get_first(dev
);
809 info
->gpio_chip
= armada_37xx_gpiolib_chip
;
811 gc
= &info
->gpio_chip
;
812 gc
->ngpio
= info
->data
->nr_pins
;
816 gc
->label
= info
->data
->name
;
818 ret
= armada_37xx_irqchip_register(pdev
, info
);
822 return devm_gpiochip_add_data(dev
, gc
, info
);
826 * armada_37xx_add_function() - Add a new function to the list
827 * @funcs: array of function to add the new one
828 * @funcsize: size of the remaining space for the function
829 * @name: name of the function to add
831 * If it is a new function then create it by adding its name else
832 * increment the number of group associated to this function.
834 static int armada_37xx_add_function(struct armada_37xx_pmx_func
*funcs
,
835 int *funcsize
, const char *name
)
840 while (funcs
->ngroups
) {
841 /* function already there */
842 if (strcmp(funcs
->name
, name
) == 0) {
850 /* append new unique function */
859 * armada_37xx_fill_group() - complete the group array
860 * @info: info driver instance
862 * Based on the data available from the armada_37xx_pin_group array
863 * completes the last member of the struct for each function: the list
864 * of the groups associated to this function.
867 static int armada_37xx_fill_group(struct armada_37xx_pinctrl
*info
)
869 int n
, num
= 0, funcsize
= info
->data
->nr_pins
;
870 struct device
*dev
= info
->dev
;
872 for (n
= 0; n
< info
->ngroups
; n
++) {
873 struct armada_37xx_pin_group
*grp
= &info
->groups
[n
];
876 grp
->pins
= devm_kcalloc(dev
, grp
->npins
+ grp
->extra_npins
,
882 for (i
= 0; i
< grp
->npins
; i
++)
883 grp
->pins
[i
] = grp
->start_pin
+ i
;
885 for (j
= 0; j
< grp
->extra_npins
; j
++)
886 grp
->pins
[i
+j
] = grp
->extra_pin
+ j
;
888 for (f
= 0; (f
< NB_FUNCS
) && grp
->funcs
[f
]; f
++) {
890 /* check for unique functions and count groups */
891 ret
= armada_37xx_add_function(info
->funcs
, &funcsize
,
893 if (ret
== -EOVERFLOW
)
894 dev_err(dev
, "More functions than pins(%d)\n",
895 info
->data
->nr_pins
);
908 * armada_37xx_fill_func() - complete the funcs array
909 * @info: info driver instance
911 * Based on the data available from the armada_37xx_pin_group array
912 * completes the last two member of the struct for each group:
913 * - the list of the pins included in the group
914 * - the list of pinmux functions that can be selected for this group
917 static int armada_37xx_fill_func(struct armada_37xx_pinctrl
*info
)
919 struct armada_37xx_pmx_func
*funcs
= info
->funcs
;
920 struct device
*dev
= info
->dev
;
923 for (n
= 0; n
< info
->nfuncs
; n
++) {
924 const char *name
= funcs
[n
].name
;
928 funcs
[n
].groups
= devm_kcalloc(dev
, funcs
[n
].ngroups
,
929 sizeof(*(funcs
[n
].groups
)),
931 if (!funcs
[n
].groups
)
934 groups
= funcs
[n
].groups
;
936 for (g
= 0; g
< info
->ngroups
; g
++) {
937 struct armada_37xx_pin_group
*gp
= &info
->groups
[g
];
940 f
= match_string(gp
->funcs
, NB_FUNCS
, name
);
951 static int armada_37xx_pinctrl_register(struct platform_device
*pdev
,
952 struct armada_37xx_pinctrl
*info
)
954 const struct armada_37xx_pin_data
*pin_data
= info
->data
;
955 struct pinctrl_desc
*ctrldesc
= &info
->pctl
;
956 struct pinctrl_pin_desc
*pindesc
, *pdesc
;
957 struct device
*dev
= &pdev
->dev
;
961 info
->groups
= pin_data
->groups
;
962 info
->ngroups
= pin_data
->ngroups
;
964 ctrldesc
->name
= "armada_37xx-pinctrl";
965 ctrldesc
->owner
= THIS_MODULE
;
966 ctrldesc
->pctlops
= &armada_37xx_pctrl_ops
;
967 ctrldesc
->pmxops
= &armada_37xx_pmx_ops
;
968 ctrldesc
->confops
= &armada_37xx_pinconf_ops
;
970 pindesc
= devm_kcalloc(dev
, pin_data
->nr_pins
, sizeof(*pindesc
), GFP_KERNEL
);
974 ctrldesc
->pins
= pindesc
;
975 ctrldesc
->npins
= pin_data
->nr_pins
;
977 pin_names
= devm_kasprintf_strarray(dev
, pin_data
->name
, pin_data
->nr_pins
);
978 if (IS_ERR(pin_names
))
979 return PTR_ERR(pin_names
);
982 for (pin
= 0; pin
< pin_data
->nr_pins
; pin
++) {
984 pdesc
->name
= pin_names
[pin
];
989 * we allocate functions for number of pins and hope there are
990 * fewer unique functions than pins available
992 info
->funcs
= devm_kcalloc(dev
, pin_data
->nr_pins
, sizeof(*info
->funcs
), GFP_KERNEL
);
996 ret
= armada_37xx_fill_group(info
);
1000 ret
= armada_37xx_fill_func(info
);
1004 info
->pctl_dev
= devm_pinctrl_register(dev
, ctrldesc
, info
);
1005 if (IS_ERR(info
->pctl_dev
))
1006 return dev_err_probe(dev
, PTR_ERR(info
->pctl_dev
), "could not register pinctrl driver\n");
1011 static int armada_3700_pinctrl_suspend(struct device
*dev
)
1013 struct armada_37xx_pinctrl
*info
= dev_get_drvdata(dev
);
1015 /* Save GPIO state */
1016 regmap_read(info
->regmap
, OUTPUT_EN
, &info
->pm
.out_en_l
);
1017 regmap_read(info
->regmap
, OUTPUT_EN
+ sizeof(u32
), &info
->pm
.out_en_h
);
1018 regmap_read(info
->regmap
, OUTPUT_VAL
, &info
->pm
.out_val_l
);
1019 regmap_read(info
->regmap
, OUTPUT_VAL
+ sizeof(u32
),
1020 &info
->pm
.out_val_h
);
1022 info
->pm
.irq_en_l
= readl(info
->base
+ IRQ_EN
);
1023 info
->pm
.irq_en_h
= readl(info
->base
+ IRQ_EN
+ sizeof(u32
));
1024 info
->pm
.irq_pol_l
= readl(info
->base
+ IRQ_POL
);
1025 info
->pm
.irq_pol_h
= readl(info
->base
+ IRQ_POL
+ sizeof(u32
));
1027 /* Save pinctrl state */
1028 regmap_read(info
->regmap
, SELECTION
, &info
->pm
.selection
);
1033 static int armada_3700_pinctrl_resume(struct device
*dev
)
1035 struct armada_37xx_pinctrl
*info
= dev_get_drvdata(dev
);
1036 struct gpio_chip
*gc
;
1037 struct irq_domain
*d
;
1040 /* Restore GPIO state */
1041 regmap_write(info
->regmap
, OUTPUT_EN
, info
->pm
.out_en_l
);
1042 regmap_write(info
->regmap
, OUTPUT_EN
+ sizeof(u32
),
1044 regmap_write(info
->regmap
, OUTPUT_VAL
, info
->pm
.out_val_l
);
1045 regmap_write(info
->regmap
, OUTPUT_VAL
+ sizeof(u32
),
1046 info
->pm
.out_val_h
);
1049 * Input levels may change during suspend, which is not monitored at
1050 * that time. GPIOs used for both-edge IRQs may not be synchronized
1051 * anymore with their polarities (rising/falling edge) and must be
1052 * re-configured manually.
1054 gc
= &info
->gpio_chip
;
1056 for (i
= 0; i
< gc
->ngpio
; i
++) {
1057 u32 irq_bit
= BIT(i
% GPIO_PER_REG
);
1058 u32 mask
, *irq_pol
, input_reg
, virq
, type
, level
;
1060 if (i
< GPIO_PER_REG
) {
1061 mask
= info
->pm
.irq_en_l
;
1062 irq_pol
= &info
->pm
.irq_pol_l
;
1063 input_reg
= INPUT_VAL
;
1065 mask
= info
->pm
.irq_en_h
;
1066 irq_pol
= &info
->pm
.irq_pol_h
;
1067 input_reg
= INPUT_VAL
+ sizeof(u32
);
1070 if (!(mask
& irq_bit
))
1073 virq
= irq_find_mapping(d
, i
);
1074 type
= irq_get_trigger_type(virq
);
1077 * Synchronize level and polarity for both-edge irqs:
1078 * - a high input level expects a falling edge,
1079 * - a low input level exepects a rising edge.
1081 if ((type
& IRQ_TYPE_SENSE_MASK
) ==
1082 IRQ_TYPE_EDGE_BOTH
) {
1083 regmap_read(info
->regmap
, input_reg
, &level
);
1084 if ((*irq_pol
^ level
) & irq_bit
)
1085 *irq_pol
^= irq_bit
;
1089 writel(info
->pm
.irq_en_l
, info
->base
+ IRQ_EN
);
1090 writel(info
->pm
.irq_en_h
, info
->base
+ IRQ_EN
+ sizeof(u32
));
1091 writel(info
->pm
.irq_pol_l
, info
->base
+ IRQ_POL
);
1092 writel(info
->pm
.irq_pol_h
, info
->base
+ IRQ_POL
+ sizeof(u32
));
1094 /* Restore pinctrl state */
1095 regmap_write(info
->regmap
, SELECTION
, info
->pm
.selection
);
1101 * Since pinctrl is an infrastructure module, its resume should be issued prior
1102 * to other IO drivers.
1104 static DEFINE_NOIRQ_DEV_PM_OPS(armada_3700_pinctrl_pm_ops
,
1105 armada_3700_pinctrl_suspend
, armada_3700_pinctrl_resume
);
1107 static const struct of_device_id armada_37xx_pinctrl_of_match
[] = {
1109 .compatible
= "marvell,armada3710-sb-pinctrl",
1110 .data
= &armada_37xx_pin_sb
,
1113 .compatible
= "marvell,armada3710-nb-pinctrl",
1114 .data
= &armada_37xx_pin_nb
,
1119 static const struct regmap_config armada_37xx_pinctrl_regmap_config
= {
1123 .use_raw_spinlock
= true,
1126 static int __init
armada_37xx_pinctrl_probe(struct platform_device
*pdev
)
1128 struct armada_37xx_pinctrl
*info
;
1129 struct device
*dev
= &pdev
->dev
;
1130 struct regmap
*regmap
;
1134 base
= devm_platform_get_and_ioremap_resource(pdev
, 0, NULL
);
1136 dev_err(dev
, "failed to ioremap base address: %pe\n", base
);
1137 return PTR_ERR(base
);
1140 regmap
= devm_regmap_init_mmio(dev
, base
,
1141 &armada_37xx_pinctrl_regmap_config
);
1142 if (IS_ERR(regmap
)) {
1143 dev_err(dev
, "failed to create regmap: %pe\n", regmap
);
1144 return PTR_ERR(regmap
);
1147 info
= devm_kzalloc(dev
, sizeof(*info
), GFP_KERNEL
);
1152 info
->regmap
= regmap
;
1153 info
->data
= of_device_get_match_data(dev
);
1155 ret
= armada_37xx_pinctrl_register(pdev
, info
);
1159 ret
= armada_37xx_gpiochip_register(pdev
, info
);
1163 platform_set_drvdata(pdev
, info
);
1168 static struct platform_driver armada_37xx_pinctrl_driver
= {
1170 .name
= "armada-37xx-pinctrl",
1171 .of_match_table
= armada_37xx_pinctrl_of_match
,
1172 .pm
= pm_sleep_ptr(&armada_3700_pinctrl_pm_ops
),
1176 builtin_platform_driver_probe(armada_37xx_pinctrl_driver
,
1177 armada_37xx_pinctrl_probe
);