2 * Driver for the Atmel PIO4 controller
4 * Copyright (C) 2015 Atmel,
5 * 2015 Ludovic Desroches <ludovic.desroches@atmel.com>
7 * This software is licensed under the terms of the GNU General Public
8 * License version 2, as published by the Free Software Foundation, and
9 * may be copied, distributed, and modified under those terms.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
17 #include <linux/clk.h>
18 #include <linux/gpio.h>
19 #include <linux/interrupt.h>
21 #include <linux/module.h>
23 #include <linux/platform_device.h>
24 #include <linux/pinctrl/pinconf.h>
25 #include <linux/pinctrl/pinconf-generic.h>
26 #include <linux/pinctrl/pinctrl.h>
27 #include <linux/pinctrl/pinmux.h>
28 #include <linux/slab.h>
31 #include "pinctrl-utils.h"
35 * In order to not introduce confusion between Atmel PIO groups and pinctrl
36 * framework groups, Atmel PIO groups will be called banks, line is kept to
37 * designed the pin id into this bank.
40 #define ATMEL_PIO_MSKR 0x0000
41 #define ATMEL_PIO_CFGR 0x0004
42 #define ATMEL_PIO_CFGR_FUNC_MASK GENMASK(2, 0)
43 #define ATMEL_PIO_DIR_MASK BIT(8)
44 #define ATMEL_PIO_PUEN_MASK BIT(9)
45 #define ATMEL_PIO_PDEN_MASK BIT(10)
46 #define ATMEL_PIO_IFEN_MASK BIT(12)
47 #define ATMEL_PIO_IFSCEN_MASK BIT(13)
48 #define ATMEL_PIO_OPD_MASK BIT(14)
49 #define ATMEL_PIO_SCHMITT_MASK BIT(15)
50 #define ATMEL_PIO_CFGR_EVTSEL_MASK GENMASK(26, 24)
51 #define ATMEL_PIO_CFGR_EVTSEL_FALLING (0 << 24)
52 #define ATMEL_PIO_CFGR_EVTSEL_RISING (1 << 24)
53 #define ATMEL_PIO_CFGR_EVTSEL_BOTH (2 << 24)
54 #define ATMEL_PIO_CFGR_EVTSEL_LOW (3 << 24)
55 #define ATMEL_PIO_CFGR_EVTSEL_HIGH (4 << 24)
56 #define ATMEL_PIO_PDSR 0x0008
57 #define ATMEL_PIO_LOCKSR 0x000C
58 #define ATMEL_PIO_SODR 0x0010
59 #define ATMEL_PIO_CODR 0x0014
60 #define ATMEL_PIO_ODSR 0x0018
61 #define ATMEL_PIO_IER 0x0020
62 #define ATMEL_PIO_IDR 0x0024
63 #define ATMEL_PIO_IMR 0x0028
64 #define ATMEL_PIO_ISR 0x002C
65 #define ATMEL_PIO_IOFR 0x003C
67 #define ATMEL_PIO_NPINS_PER_BANK 32
68 #define ATMEL_PIO_BANK(pin_id) (pin_id / ATMEL_PIO_NPINS_PER_BANK)
69 #define ATMEL_PIO_LINE(pin_id) (pin_id % ATMEL_PIO_NPINS_PER_BANK)
70 #define ATMEL_PIO_BANK_OFFSET 0x40
72 #define ATMEL_GET_PIN_NO(pinfunc) ((pinfunc) & 0xff)
73 #define ATMEL_GET_PIN_FUNC(pinfunc) ((pinfunc >> 16) & 0xf)
74 #define ATMEL_GET_PIN_IOSET(pinfunc) ((pinfunc >> 20) & 0xf)
76 struct atmel_pioctrl_data
{
95 * struct atmel_pioctrl - Atmel PIO controller (pinmux + gpio)
96 * @reg_base: base address of the controller.
97 * @clk: clock of the controller.
98 * @nbanks: number of PIO groups, it can vary depending on the SoC.
99 * @pinctrl_dev: pinctrl device registered.
100 * @groups: groups table to provide group name and pin in the group to pinctrl.
101 * @group_names: group names table to provide all the group/pin names to
103 * @pins: pins table used for both pinctrl and gpio. pin_id, bank and line
104 * fields are set at probe time. Other ones are set when parsing dt
106 * @npins: number of pins.
107 * @gpio_chip: gpio chip registered.
108 * @irq_domain: irq domain for the gpio controller.
109 * @irqs: table containing the hw irq number of the bank. The index of the
110 * table is the bank id.
111 * @dev: device entry for the Atmel PIO controller.
112 * @node: node of the Atmel PIO controller.
114 struct atmel_pioctrl
{
115 void __iomem
*reg_base
;
118 struct pinctrl_dev
*pinctrl_dev
;
119 struct atmel_group
*groups
;
120 const char * const *group_names
;
121 struct atmel_pin
**pins
;
123 struct gpio_chip
*gpio_chip
;
124 struct irq_domain
*irq_domain
;
126 unsigned *pm_wakeup_sources
;
127 unsigned *pm_suspend_backup
;
129 struct device_node
*node
;
132 static const char * const atmel_functions
[] = {
133 "GPIO", "A", "B", "C", "D", "E", "F", "G"
137 static unsigned int atmel_gpio_read(struct atmel_pioctrl
*atmel_pioctrl
,
138 unsigned int bank
, unsigned int reg
)
140 return readl_relaxed(atmel_pioctrl
->reg_base
141 + ATMEL_PIO_BANK_OFFSET
* bank
+ reg
);
144 static void atmel_gpio_write(struct atmel_pioctrl
*atmel_pioctrl
,
145 unsigned int bank
, unsigned int reg
,
148 writel_relaxed(val
, atmel_pioctrl
->reg_base
149 + ATMEL_PIO_BANK_OFFSET
* bank
+ reg
);
152 static void atmel_gpio_irq_ack(struct irq_data
*d
)
155 * Nothing to do, interrupt is cleared when reading the status
160 static int atmel_gpio_irq_set_type(struct irq_data
*d
, unsigned type
)
162 struct atmel_pioctrl
*atmel_pioctrl
= irq_data_get_irq_chip_data(d
);
163 struct atmel_pin
*pin
= atmel_pioctrl
->pins
[d
->hwirq
];
166 atmel_gpio_write(atmel_pioctrl
, pin
->bank
, ATMEL_PIO_MSKR
,
168 reg
= atmel_gpio_read(atmel_pioctrl
, pin
->bank
, ATMEL_PIO_CFGR
);
169 reg
&= (~ATMEL_PIO_CFGR_EVTSEL_MASK
);
172 case IRQ_TYPE_EDGE_RISING
:
173 irq_set_handler_locked(d
, handle_edge_irq
);
174 reg
|= ATMEL_PIO_CFGR_EVTSEL_RISING
;
176 case IRQ_TYPE_EDGE_FALLING
:
177 irq_set_handler_locked(d
, handle_edge_irq
);
178 reg
|= ATMEL_PIO_CFGR_EVTSEL_FALLING
;
180 case IRQ_TYPE_EDGE_BOTH
:
181 irq_set_handler_locked(d
, handle_edge_irq
);
182 reg
|= ATMEL_PIO_CFGR_EVTSEL_BOTH
;
184 case IRQ_TYPE_LEVEL_LOW
:
185 irq_set_handler_locked(d
, handle_level_irq
);
186 reg
|= ATMEL_PIO_CFGR_EVTSEL_LOW
;
188 case IRQ_TYPE_LEVEL_HIGH
:
189 irq_set_handler_locked(d
, handle_level_irq
);
190 reg
|= ATMEL_PIO_CFGR_EVTSEL_HIGH
;
197 atmel_gpio_write(atmel_pioctrl
, pin
->bank
, ATMEL_PIO_CFGR
, reg
);
202 static void atmel_gpio_irq_mask(struct irq_data
*d
)
204 struct atmel_pioctrl
*atmel_pioctrl
= irq_data_get_irq_chip_data(d
);
205 struct atmel_pin
*pin
= atmel_pioctrl
->pins
[d
->hwirq
];
207 atmel_gpio_write(atmel_pioctrl
, pin
->bank
, ATMEL_PIO_IDR
,
211 static void atmel_gpio_irq_unmask(struct irq_data
*d
)
213 struct atmel_pioctrl
*atmel_pioctrl
= irq_data_get_irq_chip_data(d
);
214 struct atmel_pin
*pin
= atmel_pioctrl
->pins
[d
->hwirq
];
216 atmel_gpio_write(atmel_pioctrl
, pin
->bank
, ATMEL_PIO_IER
,
220 #ifdef CONFIG_PM_SLEEP
222 static int atmel_gpio_irq_set_wake(struct irq_data
*d
, unsigned int on
)
224 struct atmel_pioctrl
*atmel_pioctrl
= irq_data_get_irq_chip_data(d
);
225 int bank
= ATMEL_PIO_BANK(d
->hwirq
);
226 int line
= ATMEL_PIO_LINE(d
->hwirq
);
228 /* The gpio controller has one interrupt line per bank. */
229 irq_set_irq_wake(atmel_pioctrl
->irqs
[bank
], on
);
232 atmel_pioctrl
->pm_wakeup_sources
[bank
] |= BIT(line
);
234 atmel_pioctrl
->pm_wakeup_sources
[bank
] &= ~(BIT(line
));
239 #define atmel_gpio_irq_set_wake NULL
240 #endif /* CONFIG_PM_SLEEP */
242 static struct irq_chip atmel_gpio_irq_chip
= {
244 .irq_ack
= atmel_gpio_irq_ack
,
245 .irq_mask
= atmel_gpio_irq_mask
,
246 .irq_unmask
= atmel_gpio_irq_unmask
,
247 .irq_set_type
= atmel_gpio_irq_set_type
,
248 .irq_set_wake
= atmel_gpio_irq_set_wake
,
251 static void atmel_gpio_irq_handler(struct irq_desc
*desc
)
253 unsigned int irq
= irq_desc_get_irq(desc
);
254 struct atmel_pioctrl
*atmel_pioctrl
= irq_desc_get_handler_data(desc
);
255 struct irq_chip
*chip
= irq_desc_get_chip(desc
);
259 /* Find from which bank is the irq received. */
260 for (n
= 0; n
< atmel_pioctrl
->nbanks
; n
++) {
261 if (atmel_pioctrl
->irqs
[n
] == irq
) {
268 dev_err(atmel_pioctrl
->dev
,
269 "no bank associated to irq %u\n", irq
);
273 chained_irq_enter(chip
, desc
);
276 isr
= (unsigned long)atmel_gpio_read(atmel_pioctrl
, bank
,
278 isr
&= (unsigned long)atmel_gpio_read(atmel_pioctrl
, bank
,
283 for_each_set_bit(n
, &isr
, BITS_PER_LONG
)
284 generic_handle_irq(gpio_to_irq(bank
*
285 ATMEL_PIO_NPINS_PER_BANK
+ n
));
288 chained_irq_exit(chip
, desc
);
291 static int atmel_gpio_direction_input(struct gpio_chip
*chip
, unsigned offset
)
293 struct atmel_pioctrl
*atmel_pioctrl
= dev_get_drvdata(chip
->dev
);
294 struct atmel_pin
*pin
= atmel_pioctrl
->pins
[offset
];
297 atmel_gpio_write(atmel_pioctrl
, pin
->bank
, ATMEL_PIO_MSKR
,
299 reg
= atmel_gpio_read(atmel_pioctrl
, pin
->bank
, ATMEL_PIO_CFGR
);
300 reg
&= ~ATMEL_PIO_DIR_MASK
;
301 atmel_gpio_write(atmel_pioctrl
, pin
->bank
, ATMEL_PIO_CFGR
, reg
);
306 static int atmel_gpio_get(struct gpio_chip
*chip
, unsigned offset
)
308 struct atmel_pioctrl
*atmel_pioctrl
= dev_get_drvdata(chip
->dev
);
309 struct atmel_pin
*pin
= atmel_pioctrl
->pins
[offset
];
312 reg
= atmel_gpio_read(atmel_pioctrl
, pin
->bank
, ATMEL_PIO_PDSR
);
314 return !!(reg
& BIT(pin
->line
));
317 static int atmel_gpio_direction_output(struct gpio_chip
*chip
, unsigned offset
,
320 struct atmel_pioctrl
*atmel_pioctrl
= dev_get_drvdata(chip
->dev
);
321 struct atmel_pin
*pin
= atmel_pioctrl
->pins
[offset
];
324 atmel_gpio_write(atmel_pioctrl
, pin
->bank
,
325 value
? ATMEL_PIO_SODR
: ATMEL_PIO_CODR
,
328 atmel_gpio_write(atmel_pioctrl
, pin
->bank
, ATMEL_PIO_MSKR
,
330 reg
= atmel_gpio_read(atmel_pioctrl
, pin
->bank
, ATMEL_PIO_CFGR
);
331 reg
|= ATMEL_PIO_DIR_MASK
;
332 atmel_gpio_write(atmel_pioctrl
, pin
->bank
, ATMEL_PIO_CFGR
, reg
);
337 static void atmel_gpio_set(struct gpio_chip
*chip
, unsigned offset
, int val
)
339 struct atmel_pioctrl
*atmel_pioctrl
= dev_get_drvdata(chip
->dev
);
340 struct atmel_pin
*pin
= atmel_pioctrl
->pins
[offset
];
342 atmel_gpio_write(atmel_pioctrl
, pin
->bank
,
343 val
? ATMEL_PIO_SODR
: ATMEL_PIO_CODR
,
347 static int atmel_gpio_to_irq(struct gpio_chip
*chip
, unsigned offset
)
349 struct atmel_pioctrl
*atmel_pioctrl
= dev_get_drvdata(chip
->dev
);
351 return irq_find_mapping(atmel_pioctrl
->irq_domain
, offset
);
354 static struct gpio_chip atmel_gpio_chip
= {
355 .direction_input
= atmel_gpio_direction_input
,
356 .get
= atmel_gpio_get
,
357 .direction_output
= atmel_gpio_direction_output
,
358 .set
= atmel_gpio_set
,
359 .to_irq
= atmel_gpio_to_irq
,
363 /* --- PINCTRL --- */
364 static unsigned int atmel_pin_config_read(struct pinctrl_dev
*pctldev
,
367 struct atmel_pioctrl
*atmel_pioctrl
= pinctrl_dev_get_drvdata(pctldev
);
368 unsigned bank
= atmel_pioctrl
->pins
[pin_id
]->bank
;
369 unsigned line
= atmel_pioctrl
->pins
[pin_id
]->line
;
370 void __iomem
*addr
= atmel_pioctrl
->reg_base
371 + bank
* ATMEL_PIO_BANK_OFFSET
;
373 writel_relaxed(BIT(line
), addr
+ ATMEL_PIO_MSKR
);
374 /* Have to set MSKR first, to access the right pin CFGR. */
377 return readl_relaxed(addr
+ ATMEL_PIO_CFGR
);
380 static void atmel_pin_config_write(struct pinctrl_dev
*pctldev
,
381 unsigned pin_id
, u32 conf
)
383 struct atmel_pioctrl
*atmel_pioctrl
= pinctrl_dev_get_drvdata(pctldev
);
384 unsigned bank
= atmel_pioctrl
->pins
[pin_id
]->bank
;
385 unsigned line
= atmel_pioctrl
->pins
[pin_id
]->line
;
386 void __iomem
*addr
= atmel_pioctrl
->reg_base
387 + bank
* ATMEL_PIO_BANK_OFFSET
;
389 writel_relaxed(BIT(line
), addr
+ ATMEL_PIO_MSKR
);
390 /* Have to set MSKR first, to access the right pin CFGR. */
392 writel_relaxed(conf
, addr
+ ATMEL_PIO_CFGR
);
395 static int atmel_pctl_get_groups_count(struct pinctrl_dev
*pctldev
)
397 struct atmel_pioctrl
*atmel_pioctrl
= pinctrl_dev_get_drvdata(pctldev
);
399 return atmel_pioctrl
->npins
;
402 static const char *atmel_pctl_get_group_name(struct pinctrl_dev
*pctldev
,
405 struct atmel_pioctrl
*atmel_pioctrl
= pinctrl_dev_get_drvdata(pctldev
);
407 return atmel_pioctrl
->groups
[selector
].name
;
410 static int atmel_pctl_get_group_pins(struct pinctrl_dev
*pctldev
,
411 unsigned selector
, const unsigned **pins
,
414 struct atmel_pioctrl
*atmel_pioctrl
= pinctrl_dev_get_drvdata(pctldev
);
416 *pins
= (unsigned *)&atmel_pioctrl
->groups
[selector
].pin
;
422 struct atmel_group
*atmel_pctl_find_group_by_pin(struct pinctrl_dev
*pctldev
,
425 struct atmel_pioctrl
*atmel_pioctrl
= pinctrl_dev_get_drvdata(pctldev
);
428 for (i
= 0; i
< atmel_pioctrl
->npins
; i
++) {
429 struct atmel_group
*grp
= atmel_pioctrl
->groups
+ i
;
438 static int atmel_pctl_xlate_pinfunc(struct pinctrl_dev
*pctldev
,
439 struct device_node
*np
,
440 u32 pinfunc
, const char **grp_name
,
441 const char **func_name
)
443 struct atmel_pioctrl
*atmel_pioctrl
= pinctrl_dev_get_drvdata(pctldev
);
444 unsigned pin_id
, func_id
;
445 struct atmel_group
*grp
;
447 pin_id
= ATMEL_GET_PIN_NO(pinfunc
);
448 func_id
= ATMEL_GET_PIN_FUNC(pinfunc
);
450 if (func_id
>= ARRAY_SIZE(atmel_functions
))
453 *func_name
= atmel_functions
[func_id
];
455 grp
= atmel_pctl_find_group_by_pin(pctldev
, pin_id
);
458 *grp_name
= grp
->name
;
460 atmel_pioctrl
->pins
[pin_id
]->mux
= func_id
;
461 atmel_pioctrl
->pins
[pin_id
]->ioset
= ATMEL_GET_PIN_IOSET(pinfunc
);
462 /* Want the device name not the group one. */
463 if (np
->parent
== atmel_pioctrl
->node
)
464 atmel_pioctrl
->pins
[pin_id
]->device
= np
->name
;
466 atmel_pioctrl
->pins
[pin_id
]->device
= np
->parent
->name
;
471 static int atmel_pctl_dt_subnode_to_map(struct pinctrl_dev
*pctldev
,
472 struct device_node
*np
,
473 struct pinctrl_map
**map
,
474 unsigned *reserved_maps
,
477 unsigned num_pins
, num_configs
, reserve
;
478 unsigned long *configs
;
479 struct property
*pins
;
484 pins
= of_find_property(np
, "pinmux", NULL
);
488 ret
= pinconf_generic_parse_dt_config(np
, pctldev
, &configs
,
491 dev_err(pctldev
->dev
, "%s: could not parse node property\n",
492 of_node_full_name(np
));
499 num_pins
= pins
->length
/ sizeof(u32
);
501 dev_err(pctldev
->dev
, "no pins found in node %s\n",
502 of_node_full_name(np
));
507 * Reserve maps, at least there is a mux map and an optional conf
511 if (has_config
&& num_pins
>= 1)
514 ret
= pinctrl_utils_reserve_map(pctldev
, map
, reserved_maps
, num_maps
,
519 for (i
= 0; i
< num_pins
; i
++) {
520 const char *group
, *func
;
522 ret
= of_property_read_u32_index(np
, "pinmux", i
, &pinfunc
);
526 ret
= atmel_pctl_xlate_pinfunc(pctldev
, np
, pinfunc
, &group
,
531 pinctrl_utils_add_map_mux(pctldev
, map
, reserved_maps
, num_maps
,
535 ret
= pinctrl_utils_add_map_configs(pctldev
, map
,
536 reserved_maps
, num_maps
, group
,
537 configs
, num_configs
,
538 PIN_MAP_TYPE_CONFIGS_GROUP
);
547 static int atmel_pctl_dt_node_to_map(struct pinctrl_dev
*pctldev
,
548 struct device_node
*np_config
,
549 struct pinctrl_map
**map
,
552 struct device_node
*np
;
553 unsigned reserved_maps
;
561 * If all the pins of a device have the same configuration (or no one),
562 * it is useless to add a subnode, so directly parse node referenced by
565 ret
= atmel_pctl_dt_subnode_to_map(pctldev
, np_config
, map
,
566 &reserved_maps
, num_maps
);
568 for_each_child_of_node(np_config
, np
) {
569 ret
= atmel_pctl_dt_subnode_to_map(pctldev
, np
, map
,
570 &reserved_maps
, num_maps
);
577 pinctrl_utils_dt_free_map(pctldev
, *map
, *num_maps
);
578 dev_err(pctldev
->dev
, "can't create maps for node %s\n",
579 np_config
->full_name
);
585 static const struct pinctrl_ops atmel_pctlops
= {
586 .get_groups_count
= atmel_pctl_get_groups_count
,
587 .get_group_name
= atmel_pctl_get_group_name
,
588 .get_group_pins
= atmel_pctl_get_group_pins
,
589 .dt_node_to_map
= atmel_pctl_dt_node_to_map
,
590 .dt_free_map
= pinctrl_utils_dt_free_map
,
593 static int atmel_pmx_get_functions_count(struct pinctrl_dev
*pctldev
)
595 return ARRAY_SIZE(atmel_functions
);
598 static const char *atmel_pmx_get_function_name(struct pinctrl_dev
*pctldev
,
601 return atmel_functions
[selector
];
604 static int atmel_pmx_get_function_groups(struct pinctrl_dev
*pctldev
,
606 const char * const **groups
,
607 unsigned * const num_groups
)
609 struct atmel_pioctrl
*atmel_pioctrl
= pinctrl_dev_get_drvdata(pctldev
);
611 *groups
= atmel_pioctrl
->group_names
;
612 *num_groups
= atmel_pioctrl
->npins
;
617 static int atmel_pmx_set_mux(struct pinctrl_dev
*pctldev
,
621 struct atmel_pioctrl
*atmel_pioctrl
= pinctrl_dev_get_drvdata(pctldev
);
625 dev_dbg(pctldev
->dev
, "enable function %s group %s\n",
626 atmel_functions
[function
], atmel_pioctrl
->groups
[group
].name
);
628 pin
= atmel_pioctrl
->groups
[group
].pin
;
629 conf
= atmel_pin_config_read(pctldev
, pin
);
630 conf
&= (~ATMEL_PIO_CFGR_FUNC_MASK
);
631 conf
|= (function
& ATMEL_PIO_CFGR_FUNC_MASK
);
632 dev_dbg(pctldev
->dev
, "pin: %u, conf: 0x%08x\n", pin
, conf
);
633 atmel_pin_config_write(pctldev
, pin
, conf
);
638 static const struct pinmux_ops atmel_pmxops
= {
639 .get_functions_count
= atmel_pmx_get_functions_count
,
640 .get_function_name
= atmel_pmx_get_function_name
,
641 .get_function_groups
= atmel_pmx_get_function_groups
,
642 .set_mux
= atmel_pmx_set_mux
,
645 static int atmel_conf_pin_config_group_get(struct pinctrl_dev
*pctldev
,
647 unsigned long *config
)
649 struct atmel_pioctrl
*atmel_pioctrl
= pinctrl_dev_get_drvdata(pctldev
);
650 unsigned param
= pinconf_to_config_param(*config
), arg
= 0;
651 struct atmel_group
*grp
= atmel_pioctrl
->groups
+ group
;
652 unsigned pin_id
= grp
->pin
;
655 res
= atmel_pin_config_read(pctldev
, pin_id
);
658 case PIN_CONFIG_BIAS_PULL_UP
:
659 if (!(res
& ATMEL_PIO_PUEN_MASK
))
663 case PIN_CONFIG_BIAS_PULL_DOWN
:
664 if ((res
& ATMEL_PIO_PUEN_MASK
) ||
665 (!(res
& ATMEL_PIO_PDEN_MASK
)))
669 case PIN_CONFIG_BIAS_DISABLE
:
670 if ((res
& ATMEL_PIO_PUEN_MASK
) ||
671 ((res
& ATMEL_PIO_PDEN_MASK
)))
675 case PIN_CONFIG_DRIVE_OPEN_DRAIN
:
676 if (!(res
& ATMEL_PIO_OPD_MASK
))
680 case PIN_CONFIG_INPUT_SCHMITT_ENABLE
:
681 if (!(res
& ATMEL_PIO_SCHMITT_MASK
))
689 *config
= pinconf_to_config_packed(param
, arg
);
693 static int atmel_conf_pin_config_group_set(struct pinctrl_dev
*pctldev
,
695 unsigned long *configs
,
696 unsigned num_configs
)
698 struct atmel_pioctrl
*atmel_pioctrl
= pinctrl_dev_get_drvdata(pctldev
);
699 struct atmel_group
*grp
= atmel_pioctrl
->groups
+ group
;
700 unsigned bank
, pin
, pin_id
= grp
->pin
;
704 conf
= atmel_pin_config_read(pctldev
, pin_id
);
706 for (i
= 0; i
< num_configs
; i
++) {
707 unsigned param
= pinconf_to_config_param(configs
[i
]);
708 unsigned arg
= pinconf_to_config_argument(configs
[i
]);
710 dev_dbg(pctldev
->dev
, "%s: pin=%u, config=0x%lx\n",
711 __func__
, pin_id
, configs
[i
]);
714 case PIN_CONFIG_BIAS_DISABLE
:
715 conf
&= (~ATMEL_PIO_PUEN_MASK
);
716 conf
&= (~ATMEL_PIO_PDEN_MASK
);
718 case PIN_CONFIG_BIAS_PULL_UP
:
719 conf
|= ATMEL_PIO_PUEN_MASK
;
721 case PIN_CONFIG_BIAS_PULL_DOWN
:
722 conf
|= ATMEL_PIO_PDEN_MASK
;
724 case PIN_CONFIG_DRIVE_OPEN_DRAIN
:
726 conf
&= (~ATMEL_PIO_OPD_MASK
);
728 conf
|= ATMEL_PIO_OPD_MASK
;
730 case PIN_CONFIG_INPUT_SCHMITT_ENABLE
:
732 conf
|= ATMEL_PIO_SCHMITT_MASK
;
734 conf
&= (~ATMEL_PIO_SCHMITT_MASK
);
736 case PIN_CONFIG_INPUT_DEBOUNCE
:
738 conf
&= (~ATMEL_PIO_IFEN_MASK
);
739 conf
&= (~ATMEL_PIO_IFSCEN_MASK
);
742 * We don't care about the debounce value for several reasons:
743 * - can't have different debounce periods inside a same group,
744 * - the register to configure this period is a secure register.
745 * The debouncing filter can filter a pulse with a duration of less
746 * than 1/2 slow clock period.
748 conf
|= ATMEL_PIO_IFEN_MASK
;
749 conf
|= ATMEL_PIO_IFSCEN_MASK
;
752 case PIN_CONFIG_OUTPUT
:
753 conf
|= ATMEL_PIO_DIR_MASK
;
754 bank
= ATMEL_PIO_BANK(pin_id
);
755 pin
= ATMEL_PIO_LINE(pin_id
);
759 writel_relaxed(mask
, atmel_pioctrl
->reg_base
+
760 bank
* ATMEL_PIO_BANK_OFFSET
+
763 writel_relaxed(mask
, atmel_pioctrl
->reg_base
+
764 bank
* ATMEL_PIO_BANK_OFFSET
+
769 dev_warn(pctldev
->dev
,
770 "unsupported configuration parameter: %u\n",
776 dev_dbg(pctldev
->dev
, "%s: reg=0x%08x\n", __func__
, conf
);
777 atmel_pin_config_write(pctldev
, pin_id
, conf
);
782 static void atmel_conf_pin_config_dbg_show(struct pinctrl_dev
*pctldev
,
783 struct seq_file
*s
, unsigned pin_id
)
785 struct atmel_pioctrl
*atmel_pioctrl
= pinctrl_dev_get_drvdata(pctldev
);
788 if (!atmel_pioctrl
->pins
[pin_id
]->device
)
791 if (atmel_pioctrl
->pins
[pin_id
])
792 seq_printf(s
, " (%s, ioset %u) ",
793 atmel_pioctrl
->pins
[pin_id
]->device
,
794 atmel_pioctrl
->pins
[pin_id
]->ioset
);
796 conf
= atmel_pin_config_read(pctldev
, pin_id
);
797 if (conf
& ATMEL_PIO_PUEN_MASK
)
798 seq_printf(s
, "%s ", "pull-up");
799 if (conf
& ATMEL_PIO_PDEN_MASK
)
800 seq_printf(s
, "%s ", "pull-down");
801 if (conf
& ATMEL_PIO_IFEN_MASK
)
802 seq_printf(s
, "%s ", "debounce");
803 if (conf
& ATMEL_PIO_OPD_MASK
)
804 seq_printf(s
, "%s ", "open-drain");
805 if (conf
& ATMEL_PIO_SCHMITT_MASK
)
806 seq_printf(s
, "%s ", "schmitt");
809 static const struct pinconf_ops atmel_confops
= {
810 .pin_config_group_get
= atmel_conf_pin_config_group_get
,
811 .pin_config_group_set
= atmel_conf_pin_config_group_set
,
812 .pin_config_dbg_show
= atmel_conf_pin_config_dbg_show
,
815 static struct pinctrl_desc atmel_pinctrl_desc
= {
816 .name
= "atmel_pinctrl",
817 .confops
= &atmel_confops
,
818 .pctlops
= &atmel_pctlops
,
819 .pmxops
= &atmel_pmxops
,
822 static int atmel_pctrl_suspend(struct device
*dev
)
824 struct platform_device
*pdev
= to_platform_device(dev
);
825 struct atmel_pioctrl
*atmel_pioctrl
= platform_get_drvdata(pdev
);
829 * For each bank, save IMR to restore it later and disable all GPIO
830 * interrupts excepting the ones marked as wakeup sources.
832 for (i
= 0; i
< atmel_pioctrl
->nbanks
; i
++) {
833 atmel_pioctrl
->pm_suspend_backup
[i
] =
834 atmel_gpio_read(atmel_pioctrl
, i
, ATMEL_PIO_IMR
);
835 atmel_gpio_write(atmel_pioctrl
, i
, ATMEL_PIO_IDR
,
836 ~atmel_pioctrl
->pm_wakeup_sources
[i
]);
842 static int atmel_pctrl_resume(struct device
*dev
)
844 struct platform_device
*pdev
= to_platform_device(dev
);
845 struct atmel_pioctrl
*atmel_pioctrl
= platform_get_drvdata(pdev
);
848 for (i
= 0; i
< atmel_pioctrl
->nbanks
; i
++)
849 atmel_gpio_write(atmel_pioctrl
, i
, ATMEL_PIO_IER
,
850 atmel_pioctrl
->pm_suspend_backup
[i
]);
855 static const struct dev_pm_ops atmel_pctrl_pm_ops
= {
856 SET_SYSTEM_SLEEP_PM_OPS(atmel_pctrl_suspend
, atmel_pctrl_resume
)
860 * The number of banks can be different from a SoC to another one.
861 * We can have up to 16 banks.
863 static const struct atmel_pioctrl_data atmel_sama5d2_pioctrl_data
= {
867 static const struct of_device_id atmel_pctrl_of_match
[] = {
869 .compatible
= "atmel,sama5d2-pinctrl",
870 .data
= &atmel_sama5d2_pioctrl_data
,
875 MODULE_DEVICE_TABLE(of
, atmel_pctrl_of_match
);
877 static int atmel_pinctrl_probe(struct platform_device
*pdev
)
879 struct device
*dev
= &pdev
->dev
;
880 struct pinctrl_pin_desc
*pin_desc
;
881 const char **group_names
;
882 const struct of_device_id
*match
;
884 struct resource
*res
;
885 struct atmel_pioctrl
*atmel_pioctrl
;
886 struct atmel_pioctrl_data
*atmel_pioctrl_data
;
888 atmel_pioctrl
= devm_kzalloc(dev
, sizeof(*atmel_pioctrl
), GFP_KERNEL
);
891 atmel_pioctrl
->dev
= dev
;
892 atmel_pioctrl
->node
= dev
->of_node
;
893 platform_set_drvdata(pdev
, atmel_pioctrl
);
895 match
= of_match_node(atmel_pctrl_of_match
, dev
->of_node
);
897 dev_err(dev
, "unknown compatible string\n");
900 atmel_pioctrl_data
= (struct atmel_pioctrl_data
*)match
->data
;
901 atmel_pioctrl
->nbanks
= atmel_pioctrl_data
->nbanks
;
902 atmel_pioctrl
->npins
= atmel_pioctrl
->nbanks
* ATMEL_PIO_NPINS_PER_BANK
;
904 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
906 dev_err(dev
, "unable to get atmel pinctrl resource\n");
909 atmel_pioctrl
->reg_base
= devm_ioremap_resource(dev
, res
);
910 if (IS_ERR(atmel_pioctrl
->reg_base
))
913 atmel_pioctrl
->clk
= devm_clk_get(dev
, NULL
);
914 if (IS_ERR(atmel_pioctrl
->clk
)) {
915 dev_err(dev
, "failed to get clock\n");
916 return PTR_ERR(atmel_pioctrl
->clk
);
919 atmel_pioctrl
->pins
= devm_kzalloc(dev
, sizeof(*atmel_pioctrl
->pins
)
920 * atmel_pioctrl
->npins
, GFP_KERNEL
);
921 if (!atmel_pioctrl
->pins
)
924 pin_desc
= devm_kzalloc(dev
, sizeof(*pin_desc
)
925 * atmel_pioctrl
->npins
, GFP_KERNEL
);
928 atmel_pinctrl_desc
.pins
= pin_desc
;
929 atmel_pinctrl_desc
.npins
= atmel_pioctrl
->npins
;
931 /* One pin is one group since a pin can achieve all functions. */
932 group_names
= devm_kzalloc(dev
, sizeof(*group_names
)
933 * atmel_pioctrl
->npins
, GFP_KERNEL
);
936 atmel_pioctrl
->group_names
= group_names
;
938 atmel_pioctrl
->groups
= devm_kzalloc(&pdev
->dev
,
939 sizeof(*atmel_pioctrl
->groups
) * atmel_pioctrl
->npins
,
941 if (!atmel_pioctrl
->groups
)
943 for (i
= 0 ; i
< atmel_pioctrl
->npins
; i
++) {
944 struct atmel_group
*group
= atmel_pioctrl
->groups
+ i
;
945 unsigned bank
= ATMEL_PIO_BANK(i
);
946 unsigned line
= ATMEL_PIO_LINE(i
);
948 atmel_pioctrl
->pins
[i
] = devm_kzalloc(dev
,
949 sizeof(**atmel_pioctrl
->pins
), GFP_KERNEL
);
950 if (!atmel_pioctrl
->pins
[i
])
953 atmel_pioctrl
->pins
[i
]->pin_id
= i
;
954 atmel_pioctrl
->pins
[i
]->bank
= bank
;
955 atmel_pioctrl
->pins
[i
]->line
= line
;
957 pin_desc
[i
].number
= i
;
958 /* Pin naming convention: P(bank_name)(bank_pin_number). */
959 pin_desc
[i
].name
= kasprintf(GFP_KERNEL
, "P%c%d",
962 group
->name
= group_names
[i
] = pin_desc
[i
].name
;
963 group
->pin
= pin_desc
[i
].number
;
965 dev_dbg(dev
, "pin_id=%u, bank=%u, line=%u", i
, bank
, line
);
968 atmel_pioctrl
->gpio_chip
= &atmel_gpio_chip
;
969 atmel_pioctrl
->gpio_chip
->of_node
= dev
->of_node
;
970 atmel_pioctrl
->gpio_chip
->ngpio
= atmel_pioctrl
->npins
;
971 atmel_pioctrl
->gpio_chip
->label
= dev_name(dev
);
972 atmel_pioctrl
->gpio_chip
->dev
= dev
;
973 atmel_pioctrl
->gpio_chip
->names
= atmel_pioctrl
->group_names
;
975 atmel_pioctrl
->pm_wakeup_sources
= devm_kzalloc(dev
,
976 sizeof(*atmel_pioctrl
->pm_wakeup_sources
)
977 * atmel_pioctrl
->nbanks
, GFP_KERNEL
);
978 if (!atmel_pioctrl
->pm_wakeup_sources
)
981 atmel_pioctrl
->pm_suspend_backup
= devm_kzalloc(dev
,
982 sizeof(*atmel_pioctrl
->pm_suspend_backup
)
983 * atmel_pioctrl
->nbanks
, GFP_KERNEL
);
984 if (!atmel_pioctrl
->pm_suspend_backup
)
987 atmel_pioctrl
->irqs
= devm_kzalloc(dev
, sizeof(*atmel_pioctrl
->irqs
)
988 * atmel_pioctrl
->nbanks
, GFP_KERNEL
);
989 if (!atmel_pioctrl
->irqs
)
992 /* There is one controller but each bank has its own irq line. */
993 for (i
= 0; i
< atmel_pioctrl
->nbanks
; i
++) {
994 res
= platform_get_resource(pdev
, IORESOURCE_IRQ
, i
);
996 dev_err(dev
, "missing irq resource for group %c\n",
1000 atmel_pioctrl
->irqs
[i
] = res
->start
;
1001 irq_set_chained_handler(res
->start
, atmel_gpio_irq_handler
);
1002 irq_set_handler_data(res
->start
, atmel_pioctrl
);
1003 dev_dbg(dev
, "bank %i: hwirq=%u\n", i
, res
->start
);
1006 atmel_pioctrl
->irq_domain
= irq_domain_add_linear(dev
->of_node
,
1007 atmel_pioctrl
->gpio_chip
->ngpio
,
1008 &irq_domain_simple_ops
, NULL
);
1009 if (!atmel_pioctrl
->irq_domain
) {
1010 dev_err(dev
, "can't add the irq domain\n");
1013 atmel_pioctrl
->irq_domain
->name
= "atmel gpio";
1015 for (i
= 0; i
< atmel_pioctrl
->npins
; i
++) {
1016 int irq
= irq_create_mapping(atmel_pioctrl
->irq_domain
, i
);
1018 irq_set_chip_and_handler(irq
, &atmel_gpio_irq_chip
,
1020 irq_set_chip_data(irq
, atmel_pioctrl
);
1022 "atmel gpio irq domain: hwirq: %d, linux irq: %d\n",
1026 ret
= clk_prepare_enable(atmel_pioctrl
->clk
);
1028 dev_err(dev
, "failed to prepare and enable clock\n");
1029 goto clk_prepare_enable_error
;
1032 atmel_pioctrl
->pinctrl_dev
= pinctrl_register(&atmel_pinctrl_desc
,
1035 if (!atmel_pioctrl
->pinctrl_dev
) {
1036 dev_err(dev
, "pinctrl registration failed\n");
1037 goto pinctrl_register_error
;
1040 ret
= gpiochip_add(atmel_pioctrl
->gpio_chip
);
1042 dev_err(dev
, "failed to add gpiochip\n");
1043 goto gpiochip_add_error
;
1046 ret
= gpiochip_add_pin_range(atmel_pioctrl
->gpio_chip
, dev_name(dev
),
1047 0, 0, atmel_pioctrl
->gpio_chip
->ngpio
);
1049 dev_err(dev
, "failed to add gpio pin range\n");
1050 goto gpiochip_add_pin_range_error
;
1053 dev_info(&pdev
->dev
, "atmel pinctrl initialized\n");
1057 clk_prepare_enable_error
:
1058 irq_domain_remove(atmel_pioctrl
->irq_domain
);
1059 pinctrl_register_error
:
1060 clk_disable_unprepare(atmel_pioctrl
->clk
);
1062 pinctrl_unregister(atmel_pioctrl
->pinctrl_dev
);
1063 gpiochip_add_pin_range_error
:
1064 gpiochip_remove(atmel_pioctrl
->gpio_chip
);
1069 int atmel_pinctrl_remove(struct platform_device
*pdev
)
1071 struct atmel_pioctrl
*atmel_pioctrl
= platform_get_drvdata(pdev
);
1073 irq_domain_remove(atmel_pioctrl
->irq_domain
);
1074 clk_disable_unprepare(atmel_pioctrl
->clk
);
1075 pinctrl_unregister(atmel_pioctrl
->pinctrl_dev
);
1076 gpiochip_remove(atmel_pioctrl
->gpio_chip
);
1081 static struct platform_driver atmel_pinctrl_driver
= {
1083 .name
= "pinctrl-at91-pio4",
1084 .of_match_table
= atmel_pctrl_of_match
,
1085 .pm
= &atmel_pctrl_pm_ops
,
1087 .probe
= atmel_pinctrl_probe
,
1088 .remove
= atmel_pinctrl_remove
,
1090 module_platform_driver(atmel_pinctrl_driver
);
1092 MODULE_AUTHOR(Ludovic Desroches
<ludovic
.desroches@atmel
.com
>);
1093 MODULE_DESCRIPTION("Atmel PIO4 pinctrl driver");
1094 MODULE_LICENSE("GPL v2");