blob: 6022496bb6a98854be2d194fd6454f36543d2f25 [file] [log] [blame]
Thomas Gleixner28b665f2019-06-01 10:08:48 +02001// SPDX-License-Identifier: GPL-2.0-only
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08002/*
3 * at91 pinctrl driver based on at91 pinmux core
4 *
5 * Copyright (C) 2011-2012 Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08006 */
7
8#include <linux/clk.h>
9#include <linux/err.h>
10#include <linux/init.h>
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +080011#include <linux/of.h>
12#include <linux/of_device.h>
13#include <linux/of_address.h>
14#include <linux/of_irq.h>
15#include <linux/slab.h>
16#include <linux/interrupt.h>
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +080017#include <linux/io.h>
Linus Walleij1c5fb662018-09-13 13:58:21 +020018#include <linux/gpio/driver.h>
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +080019#include <linux/pinctrl/machine.h>
20#include <linux/pinctrl/pinconf.h>
21#include <linux/pinctrl/pinctrl.h>
22#include <linux/pinctrl/pinmux.h>
23/* Since we request GPIOs from ourself */
24#include <linux/pinctrl/consumer.h>
25
Lee Jones41dbf4a2021-03-03 12:41:49 +000026#include <soc/at91/pm.h>
27
Alexandre Bellonic654b6b2014-10-17 11:49:40 +020028#include "pinctrl-at91.h"
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +080029#include "core.h"
30
Linus Walleij94daf852013-11-05 10:30:14 +010031#define MAX_GPIO_BANKS 5
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +080032#define MAX_NB_GPIO_PER_BANK 32
33
34struct at91_pinctrl_mux_ops;
35
36struct at91_gpio_chip {
37 struct gpio_chip chip;
38 struct pinctrl_gpio_range range;
39 struct at91_gpio_chip *next; /* Bank sharing same clock */
40 int pioc_hwirq; /* PIO bank interrupt identifier on AIC */
41 int pioc_virq; /* PIO bank Linux virtual interrupt */
42 int pioc_idx; /* PIO bank index */
43 void __iomem *regbase; /* PIO bank virtual address */
44 struct clk *clock; /* associated clock */
Rikard Falkebornf56b2732021-05-12 20:01:40 +020045 const struct at91_pinctrl_mux_ops *ops; /* ops */
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +080046};
47
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +080048static struct at91_gpio_chip *gpio_chips[MAX_GPIO_BANKS];
49
50static int gpio_banks;
51
Jean-Christophe PLAGNIOL-VILLARD525fae22012-10-23 18:28:00 +020052#define PULL_UP (1 << 0)
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +080053#define MULTI_DRIVE (1 << 1)
Jean-Christophe PLAGNIOL-VILLARD7ebd7a32012-09-26 14:57:45 +080054#define DEGLITCH (1 << 2)
55#define PULL_DOWN (1 << 3)
56#define DIS_SCHMIT (1 << 4)
Marek Roszko4334ac22014-08-23 23:12:04 -040057#define DRIVE_STRENGTH_SHIFT 5
58#define DRIVE_STRENGTH_MASK 0x3
59#define DRIVE_STRENGTH (DRIVE_STRENGTH_MASK << DRIVE_STRENGTH_SHIFT)
Boris BREZILLON96bb12d2016-10-28 15:54:10 +080060#define OUTPUT (1 << 7)
61#define OUTPUT_VAL_SHIFT 8
62#define OUTPUT_VAL (0x1 << OUTPUT_VAL_SHIFT)
Claudiu Beznea64e21ad2019-02-07 09:25:05 +000063#define SLEWRATE_SHIFT 9
64#define SLEWRATE_MASK 0x1
65#define SLEWRATE (SLEWRATE_MASK << SLEWRATE_SHIFT)
Jean-Christophe PLAGNIOL-VILLARD7ebd7a32012-09-26 14:57:45 +080066#define DEBOUNCE (1 << 16)
67#define DEBOUNCE_VAL_SHIFT 17
68#define DEBOUNCE_VAL (0x3fff << DEBOUNCE_VAL_SHIFT)
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +080069
Lee Jonesaa786552020-07-13 15:49:22 +010070/*
Marek Roszko4334ac22014-08-23 23:12:04 -040071 * These defines will translated the dt binding settings to our internal
72 * settings. They are not necessarily the same value as the register setting.
73 * The actual drive strength current of low, medium and high must be looked up
74 * from the corresponding device datasheet. This value is different for pins
75 * that are even in the same banks. It is also dependent on VCC.
76 * DRIVE_STRENGTH_DEFAULT is just a placeholder to avoid changing the drive
77 * strength when there is no dt config for it.
78 */
Claudiu Bezneab67328e2019-02-07 09:24:46 +000079enum drive_strength_bit {
80 DRIVE_STRENGTH_BIT_DEF,
81 DRIVE_STRENGTH_BIT_LOW,
82 DRIVE_STRENGTH_BIT_MED,
83 DRIVE_STRENGTH_BIT_HI,
84};
85
86#define DRIVE_STRENGTH_BIT_MSK(name) (DRIVE_STRENGTH_BIT_##name << \
87 DRIVE_STRENGTH_SHIFT)
Marek Roszko4334ac22014-08-23 23:12:04 -040088
Claudiu Beznea64e21ad2019-02-07 09:25:05 +000089enum slewrate_bit {
Claudiu Beznea64e21ad2019-02-07 09:25:05 +000090 SLEWRATE_BIT_ENA,
Codrin Ciubotariu0b329282019-11-01 11:20:31 +020091 SLEWRATE_BIT_DIS,
Claudiu Beznea64e21ad2019-02-07 09:25:05 +000092};
93
94#define SLEWRATE_BIT_MSK(name) (SLEWRATE_BIT_##name << SLEWRATE_SHIFT)
95
Marek Roszko4334ac22014-08-23 23:12:04 -040096/**
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +080097 * struct at91_pmx_func - describes AT91 pinmux functions
98 * @name: the name of this specific function
99 * @groups: corresponding pin groups
100 * @ngroups: the number of groups
101 */
102struct at91_pmx_func {
103 const char *name;
104 const char **groups;
105 unsigned ngroups;
106};
107
108enum at91_mux {
109 AT91_MUX_GPIO = 0,
110 AT91_MUX_PERIPH_A = 1,
111 AT91_MUX_PERIPH_B = 2,
112 AT91_MUX_PERIPH_C = 3,
113 AT91_MUX_PERIPH_D = 4,
114};
115
116/**
117 * struct at91_pmx_pin - describes an At91 pin mux
118 * @bank: the bank of the pin
119 * @pin: the pin number in the @bank
120 * @mux: the mux mode : gpio or periph_x of the pin i.e. alternate function.
121 * @conf: the configuration of the pin: PULL_UP, MULTIDRIVE etc...
122 */
123struct at91_pmx_pin {
124 uint32_t bank;
125 uint32_t pin;
126 enum at91_mux mux;
127 unsigned long conf;
128};
129
130/**
131 * struct at91_pin_group - describes an At91 pin group
132 * @name: the name of this specific pin group
133 * @pins_conf: the mux mode for each pin in this group. The size of this
134 * array is the same as pins.
135 * @pins: an array of discrete physical pins used in this group, taken
136 * from the driver-local pin enumeration space
137 * @npins: the number of pins in this group array, i.e. the number of
138 * elements in .pins so we can iterate over that array
139 */
140struct at91_pin_group {
141 const char *name;
142 struct at91_pmx_pin *pins_conf;
143 unsigned int *pins;
144 unsigned npins;
145};
146
147/**
Alexandre Bellonic2eb9e72013-12-07 14:08:52 +0100148 * struct at91_pinctrl_mux_ops - describes an AT91 mux ops group
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800149 * on new IP with support for periph C and D the way to mux in
150 * periph A and B has changed
151 * So provide the right call back
152 * if not present means the IP does not support it
153 * @get_periph: return the periph mode configured
154 * @mux_A_periph: mux as periph A
155 * @mux_B_periph: mux as periph B
156 * @mux_C_periph: mux as periph C
157 * @mux_D_periph: mux as periph D
Jean-Christophe PLAGNIOL-VILLARD7ebd7a32012-09-26 14:57:45 +0800158 * @get_deglitch: get deglitch status
159 * @set_deglitch: enable/disable deglitch
160 * @get_debounce: get debounce status
161 * @set_debounce: enable/disable debounce
162 * @get_pulldown: get pulldown status
163 * @set_pulldown: enable/disable pulldown
164 * @get_schmitt_trig: get schmitt trigger status
165 * @disable_schmitt_trig: disable schmitt trigger
Lee Jonesaa786552020-07-13 15:49:22 +0100166 * @get_drivestrength: get driver strength
167 * @set_drivestrength: set driver strength
168 * @get_slewrate: get slew rate
169 * @set_slewrate: set slew rate
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800170 * @irq_type: return irq type
171 */
172struct at91_pinctrl_mux_ops {
173 enum at91_mux (*get_periph)(void __iomem *pio, unsigned mask);
174 void (*mux_A_periph)(void __iomem *pio, unsigned mask);
175 void (*mux_B_periph)(void __iomem *pio, unsigned mask);
176 void (*mux_C_periph)(void __iomem *pio, unsigned mask);
177 void (*mux_D_periph)(void __iomem *pio, unsigned mask);
Jean-Christophe PLAGNIOL-VILLARD7ebd7a32012-09-26 14:57:45 +0800178 bool (*get_deglitch)(void __iomem *pio, unsigned pin);
Boris BREZILLON77966ad2013-09-13 09:45:33 +0200179 void (*set_deglitch)(void __iomem *pio, unsigned mask, bool is_on);
Jean-Christophe PLAGNIOL-VILLARD7ebd7a32012-09-26 14:57:45 +0800180 bool (*get_debounce)(void __iomem *pio, unsigned pin, u32 *div);
Boris BREZILLON77966ad2013-09-13 09:45:33 +0200181 void (*set_debounce)(void __iomem *pio, unsigned mask, bool is_on, u32 div);
Jean-Christophe PLAGNIOL-VILLARD7ebd7a32012-09-26 14:57:45 +0800182 bool (*get_pulldown)(void __iomem *pio, unsigned pin);
Boris BREZILLON77966ad2013-09-13 09:45:33 +0200183 void (*set_pulldown)(void __iomem *pio, unsigned mask, bool is_on);
Jean-Christophe PLAGNIOL-VILLARD7ebd7a32012-09-26 14:57:45 +0800184 bool (*get_schmitt_trig)(void __iomem *pio, unsigned pin);
185 void (*disable_schmitt_trig)(void __iomem *pio, unsigned mask);
Marek Roszko4334ac22014-08-23 23:12:04 -0400186 unsigned (*get_drivestrength)(void __iomem *pio, unsigned pin);
187 void (*set_drivestrength)(void __iomem *pio, unsigned pin,
188 u32 strength);
Claudiu Beznea64e21ad2019-02-07 09:25:05 +0000189 unsigned (*get_slewrate)(void __iomem *pio, unsigned pin);
190 void (*set_slewrate)(void __iomem *pio, unsigned pin, u32 slewrate);
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800191 /* irq */
192 int (*irq_type)(struct irq_data *d, unsigned type);
193};
194
195static int gpio_irq_type(struct irq_data *d, unsigned type);
196static int alt_gpio_irq_type(struct irq_data *d, unsigned type);
197
198struct at91_pinctrl {
199 struct device *dev;
200 struct pinctrl_dev *pctl;
201
Jean-Christophe PLAGNIOL-VILLARDa0b957f2015-01-16 16:31:05 +0100202 int nactive_banks;
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800203
204 uint32_t *mux_mask;
205 int nmux;
206
207 struct at91_pmx_func *functions;
208 int nfunctions;
209
210 struct at91_pin_group *groups;
211 int ngroups;
212
Rikard Falkebornf56b2732021-05-12 20:01:40 +0200213 const struct at91_pinctrl_mux_ops *ops;
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800214};
215
Arnd Bergmann56411f32016-06-13 17:18:34 +0200216static inline const struct at91_pin_group *at91_pinctrl_find_group_by_name(
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800217 const struct at91_pinctrl *info,
218 const char *name)
219{
220 const struct at91_pin_group *grp = NULL;
221 int i;
222
223 for (i = 0; i < info->ngroups; i++) {
224 if (strcmp(info->groups[i].name, name))
225 continue;
226
227 grp = &info->groups[i];
228 dev_dbg(info->dev, "%s: %d 0:%d\n", name, grp->npins, grp->pins[0]);
229 break;
230 }
231
232 return grp;
233}
234
235static int at91_get_groups_count(struct pinctrl_dev *pctldev)
236{
237 struct at91_pinctrl *info = pinctrl_dev_get_drvdata(pctldev);
238
239 return info->ngroups;
240}
241
242static const char *at91_get_group_name(struct pinctrl_dev *pctldev,
243 unsigned selector)
244{
245 struct at91_pinctrl *info = pinctrl_dev_get_drvdata(pctldev);
246
247 return info->groups[selector].name;
248}
249
250static int at91_get_group_pins(struct pinctrl_dev *pctldev, unsigned selector,
251 const unsigned **pins,
252 unsigned *npins)
253{
254 struct at91_pinctrl *info = pinctrl_dev_get_drvdata(pctldev);
255
256 if (selector >= info->ngroups)
257 return -EINVAL;
258
259 *pins = info->groups[selector].pins;
260 *npins = info->groups[selector].npins;
261
262 return 0;
263}
264
265static void at91_pin_dbg_show(struct pinctrl_dev *pctldev, struct seq_file *s,
266 unsigned offset)
267{
268 seq_printf(s, "%s", dev_name(pctldev->dev));
269}
270
271static int at91_dt_node_to_map(struct pinctrl_dev *pctldev,
272 struct device_node *np,
273 struct pinctrl_map **map, unsigned *num_maps)
274{
275 struct at91_pinctrl *info = pinctrl_dev_get_drvdata(pctldev);
276 const struct at91_pin_group *grp;
277 struct pinctrl_map *new_map;
278 struct device_node *parent;
279 int map_num = 1;
280 int i;
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800281
282 /*
Alexandre Belloni61e310a2013-10-16 16:12:33 +0200283 * first find the group of this node and check if we need to create
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800284 * config maps for pins
285 */
286 grp = at91_pinctrl_find_group_by_name(info, np->name);
287 if (!grp) {
Rob Herring94f4e542018-08-27 20:52:41 -0500288 dev_err(info->dev, "unable to find group for node %pOFn\n",
289 np);
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800290 return -EINVAL;
291 }
292
293 map_num += grp->npins;
Kees Cooka86854d2018-06-12 14:07:58 -0700294 new_map = devm_kcalloc(pctldev->dev, map_num, sizeof(*new_map),
295 GFP_KERNEL);
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800296 if (!new_map)
297 return -ENOMEM;
298
299 *map = new_map;
300 *num_maps = map_num;
301
302 /* create mux map */
303 parent = of_get_parent(np);
304 if (!parent) {
Julia Lawallc62b2b32012-12-12 15:22:44 +0100305 devm_kfree(pctldev->dev, new_map);
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800306 return -EINVAL;
307 }
308 new_map[0].type = PIN_MAP_TYPE_MUX_GROUP;
309 new_map[0].data.mux.function = parent->name;
310 new_map[0].data.mux.group = np->name;
311 of_node_put(parent);
312
313 /* create config map */
314 new_map++;
315 for (i = 0; i < grp->npins; i++) {
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800316 new_map[i].type = PIN_MAP_TYPE_CONFIGS_PIN;
317 new_map[i].data.configs.group_or_pin =
318 pin_get_name(pctldev, grp->pins[i]);
319 new_map[i].data.configs.configs = &grp->pins_conf[i].conf;
320 new_map[i].data.configs.num_configs = 1;
321 }
322
323 dev_dbg(pctldev->dev, "maps: function %s group %s num %d\n",
324 (*map)->data.mux.function, (*map)->data.mux.group, map_num);
325
326 return 0;
327}
328
329static void at91_dt_free_map(struct pinctrl_dev *pctldev,
330 struct pinctrl_map *map, unsigned num_maps)
331{
332}
333
Laurent Pinchart022ab142013-02-16 10:25:07 +0100334static const struct pinctrl_ops at91_pctrl_ops = {
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800335 .get_groups_count = at91_get_groups_count,
336 .get_group_name = at91_get_group_name,
337 .get_group_pins = at91_get_group_pins,
338 .pin_dbg_show = at91_pin_dbg_show,
339 .dt_node_to_map = at91_dt_node_to_map,
340 .dt_free_map = at91_dt_free_map,
341};
342
Sachin Kamat3c936002013-03-15 10:07:03 +0530343static void __iomem *pin_to_controller(struct at91_pinctrl *info,
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800344 unsigned int bank)
345{
David Dueck1ab36382015-07-28 09:48:16 +0200346 if (!gpio_chips[bank])
347 return NULL;
348
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800349 return gpio_chips[bank]->regbase;
350}
351
352static inline int pin_to_bank(unsigned pin)
353{
354 return pin /= MAX_NB_GPIO_PER_BANK;
355}
356
357static unsigned pin_to_mask(unsigned int pin)
358{
359 return 1 << pin;
360}
361
Marek Roszko4334ac22014-08-23 23:12:04 -0400362static unsigned two_bit_pin_value_shift_amount(unsigned int pin)
363{
364 /* return the shift value for a pin for "two bit" per pin registers,
365 * i.e. drive strength */
366 return 2*((pin >= MAX_NB_GPIO_PER_BANK/2)
367 ? pin - MAX_NB_GPIO_PER_BANK/2 : pin);
368}
369
370static unsigned sama5d3_get_drive_register(unsigned int pin)
371{
372 /* drive strength is split between two registers
373 * with two bits per pin */
374 return (pin >= MAX_NB_GPIO_PER_BANK/2)
375 ? SAMA5D3_PIO_DRIVER2 : SAMA5D3_PIO_DRIVER1;
376}
377
378static unsigned at91sam9x5_get_drive_register(unsigned int pin)
379{
380 /* drive strength is split between two registers
381 * with two bits per pin */
382 return (pin >= MAX_NB_GPIO_PER_BANK/2)
383 ? AT91SAM9X5_PIO_DRIVER2 : AT91SAM9X5_PIO_DRIVER1;
384}
385
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800386static void at91_mux_disable_interrupt(void __iomem *pio, unsigned mask)
387{
388 writel_relaxed(mask, pio + PIO_IDR);
389}
390
391static unsigned at91_mux_get_pullup(void __iomem *pio, unsigned pin)
392{
Boris BREZILLON05d35342013-08-27 15:19:21 +0200393 return !((readl_relaxed(pio + PIO_PUSR) >> pin) & 0x1);
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800394}
395
396static void at91_mux_set_pullup(void __iomem *pio, unsigned mask, bool on)
397{
Wenyou Yang3d784272014-09-11 16:40:15 +0200398 if (on)
399 writel_relaxed(mask, pio + PIO_PPDDR);
400
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800401 writel_relaxed(mask, pio + (on ? PIO_PUER : PIO_PUDR));
402}
403
Boris BREZILLON96bb12d2016-10-28 15:54:10 +0800404static bool at91_mux_get_output(void __iomem *pio, unsigned int pin, bool *val)
405{
406 *val = (readl_relaxed(pio + PIO_ODSR) >> pin) & 0x1;
407 return (readl_relaxed(pio + PIO_OSR) >> pin) & 0x1;
408}
409
410static void at91_mux_set_output(void __iomem *pio, unsigned int mask,
411 bool is_on, bool val)
412{
413 writel_relaxed(mask, pio + (val ? PIO_SODR : PIO_CODR));
414 writel_relaxed(mask, pio + (is_on ? PIO_OER : PIO_ODR));
415}
416
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800417static unsigned at91_mux_get_multidrive(void __iomem *pio, unsigned pin)
418{
419 return (readl_relaxed(pio + PIO_MDSR) >> pin) & 0x1;
420}
421
422static void at91_mux_set_multidrive(void __iomem *pio, unsigned mask, bool on)
423{
424 writel_relaxed(mask, pio + (on ? PIO_MDER : PIO_MDDR));
425}
426
427static void at91_mux_set_A_periph(void __iomem *pio, unsigned mask)
428{
429 writel_relaxed(mask, pio + PIO_ASR);
430}
431
432static void at91_mux_set_B_periph(void __iomem *pio, unsigned mask)
433{
434 writel_relaxed(mask, pio + PIO_BSR);
435}
436
437static void at91_mux_pio3_set_A_periph(void __iomem *pio, unsigned mask)
438{
439
440 writel_relaxed(readl_relaxed(pio + PIO_ABCDSR1) & ~mask,
441 pio + PIO_ABCDSR1);
442 writel_relaxed(readl_relaxed(pio + PIO_ABCDSR2) & ~mask,
443 pio + PIO_ABCDSR2);
444}
445
446static void at91_mux_pio3_set_B_periph(void __iomem *pio, unsigned mask)
447{
448 writel_relaxed(readl_relaxed(pio + PIO_ABCDSR1) | mask,
449 pio + PIO_ABCDSR1);
450 writel_relaxed(readl_relaxed(pio + PIO_ABCDSR2) & ~mask,
451 pio + PIO_ABCDSR2);
452}
453
454static void at91_mux_pio3_set_C_periph(void __iomem *pio, unsigned mask)
455{
456 writel_relaxed(readl_relaxed(pio + PIO_ABCDSR1) & ~mask, pio + PIO_ABCDSR1);
457 writel_relaxed(readl_relaxed(pio + PIO_ABCDSR2) | mask, pio + PIO_ABCDSR2);
458}
459
460static void at91_mux_pio3_set_D_periph(void __iomem *pio, unsigned mask)
461{
462 writel_relaxed(readl_relaxed(pio + PIO_ABCDSR1) | mask, pio + PIO_ABCDSR1);
463 writel_relaxed(readl_relaxed(pio + PIO_ABCDSR2) | mask, pio + PIO_ABCDSR2);
464}
465
466static enum at91_mux at91_mux_pio3_get_periph(void __iomem *pio, unsigned mask)
467{
468 unsigned select;
469
470 if (readl_relaxed(pio + PIO_PSR) & mask)
471 return AT91_MUX_GPIO;
472
473 select = !!(readl_relaxed(pio + PIO_ABCDSR1) & mask);
474 select |= (!!(readl_relaxed(pio + PIO_ABCDSR2) & mask) << 1);
475
476 return select + 1;
477}
478
479static enum at91_mux at91_mux_get_periph(void __iomem *pio, unsigned mask)
480{
481 unsigned select;
482
483 if (readl_relaxed(pio + PIO_PSR) & mask)
484 return AT91_MUX_GPIO;
485
486 select = readl_relaxed(pio + PIO_ABSR) & mask;
487
488 return select + 1;
489}
490
Jean-Christophe PLAGNIOL-VILLARD7ebd7a32012-09-26 14:57:45 +0800491static bool at91_mux_get_deglitch(void __iomem *pio, unsigned pin)
492{
Ben Dooksd480239b2015-03-26 12:18:49 +0000493 return (readl_relaxed(pio + PIO_IFSR) >> pin) & 0x1;
Jean-Christophe PLAGNIOL-VILLARD7ebd7a32012-09-26 14:57:45 +0800494}
495
496static void at91_mux_set_deglitch(void __iomem *pio, unsigned mask, bool is_on)
497{
Ben Dooksd480239b2015-03-26 12:18:49 +0000498 writel_relaxed(mask, pio + (is_on ? PIO_IFER : PIO_IFDR));
Jean-Christophe PLAGNIOL-VILLARD7ebd7a32012-09-26 14:57:45 +0800499}
500
Boris BREZILLONc8dba022013-09-13 09:47:22 +0200501static bool at91_mux_pio3_get_deglitch(void __iomem *pio, unsigned pin)
502{
Ben Dooksd480239b2015-03-26 12:18:49 +0000503 if ((readl_relaxed(pio + PIO_IFSR) >> pin) & 0x1)
504 return !((readl_relaxed(pio + PIO_IFSCSR) >> pin) & 0x1);
Boris BREZILLONc8dba022013-09-13 09:47:22 +0200505
506 return false;
507}
508
Jean-Christophe PLAGNIOL-VILLARD7ebd7a32012-09-26 14:57:45 +0800509static void at91_mux_pio3_set_deglitch(void __iomem *pio, unsigned mask, bool is_on)
510{
511 if (is_on)
Ben Dooksd480239b2015-03-26 12:18:49 +0000512 writel_relaxed(mask, pio + PIO_IFSCDR);
Jean-Christophe PLAGNIOL-VILLARD7ebd7a32012-09-26 14:57:45 +0800513 at91_mux_set_deglitch(pio, mask, is_on);
514}
515
516static bool at91_mux_pio3_get_debounce(void __iomem *pio, unsigned pin, u32 *div)
517{
Ben Dooksd480239b2015-03-26 12:18:49 +0000518 *div = readl_relaxed(pio + PIO_SCDR);
Jean-Christophe PLAGNIOL-VILLARD7ebd7a32012-09-26 14:57:45 +0800519
Ben Dooksd480239b2015-03-26 12:18:49 +0000520 return ((readl_relaxed(pio + PIO_IFSR) >> pin) & 0x1) &&
521 ((readl_relaxed(pio + PIO_IFSCSR) >> pin) & 0x1);
Jean-Christophe PLAGNIOL-VILLARD7ebd7a32012-09-26 14:57:45 +0800522}
523
524static void at91_mux_pio3_set_debounce(void __iomem *pio, unsigned mask,
525 bool is_on, u32 div)
526{
527 if (is_on) {
Ben Dooksd480239b2015-03-26 12:18:49 +0000528 writel_relaxed(mask, pio + PIO_IFSCER);
529 writel_relaxed(div & PIO_SCDR_DIV, pio + PIO_SCDR);
530 writel_relaxed(mask, pio + PIO_IFER);
Boris BREZILLONc8dba022013-09-13 09:47:22 +0200531 } else
Ben Dooksd480239b2015-03-26 12:18:49 +0000532 writel_relaxed(mask, pio + PIO_IFSCDR);
Jean-Christophe PLAGNIOL-VILLARD7ebd7a32012-09-26 14:57:45 +0800533}
534
535static bool at91_mux_pio3_get_pulldown(void __iomem *pio, unsigned pin)
536{
Ben Dooksd480239b2015-03-26 12:18:49 +0000537 return !((readl_relaxed(pio + PIO_PPDSR) >> pin) & 0x1);
Jean-Christophe PLAGNIOL-VILLARD7ebd7a32012-09-26 14:57:45 +0800538}
539
540static void at91_mux_pio3_set_pulldown(void __iomem *pio, unsigned mask, bool is_on)
541{
Wenyou Yang3d784272014-09-11 16:40:15 +0200542 if (is_on)
Ben Dooksd480239b2015-03-26 12:18:49 +0000543 writel_relaxed(mask, pio + PIO_PUDR);
Wenyou Yang3d784272014-09-11 16:40:15 +0200544
Ben Dooksd480239b2015-03-26 12:18:49 +0000545 writel_relaxed(mask, pio + (is_on ? PIO_PPDER : PIO_PPDDR));
Jean-Christophe PLAGNIOL-VILLARD7ebd7a32012-09-26 14:57:45 +0800546}
547
548static void at91_mux_pio3_disable_schmitt_trig(void __iomem *pio, unsigned mask)
549{
Ben Dooksd480239b2015-03-26 12:18:49 +0000550 writel_relaxed(readl_relaxed(pio + PIO_SCHMITT) | mask, pio + PIO_SCHMITT);
Jean-Christophe PLAGNIOL-VILLARD7ebd7a32012-09-26 14:57:45 +0800551}
552
553static bool at91_mux_pio3_get_schmitt_trig(void __iomem *pio, unsigned pin)
554{
Ben Dooksd480239b2015-03-26 12:18:49 +0000555 return (readl_relaxed(pio + PIO_SCHMITT) >> pin) & 0x1;
Jean-Christophe PLAGNIOL-VILLARD7ebd7a32012-09-26 14:57:45 +0800556}
557
Marek Roszko4334ac22014-08-23 23:12:04 -0400558static inline u32 read_drive_strength(void __iomem *reg, unsigned pin)
559{
Ben Dooksd480239b2015-03-26 12:18:49 +0000560 unsigned tmp = readl_relaxed(reg);
Marek Roszko4334ac22014-08-23 23:12:04 -0400561
562 tmp = tmp >> two_bit_pin_value_shift_amount(pin);
563
564 return tmp & DRIVE_STRENGTH_MASK;
565}
566
567static unsigned at91_mux_sama5d3_get_drivestrength(void __iomem *pio,
568 unsigned pin)
569{
570 unsigned tmp = read_drive_strength(pio +
571 sama5d3_get_drive_register(pin), pin);
572
573 /* SAMA5 strength is 1:1 with our defines,
574 * except 0 is equivalent to low per datasheet */
575 if (!tmp)
Claudiu Bezneab67328e2019-02-07 09:24:46 +0000576 tmp = DRIVE_STRENGTH_BIT_MSK(LOW);
Marek Roszko4334ac22014-08-23 23:12:04 -0400577
578 return tmp;
579}
580
581static unsigned at91_mux_sam9x5_get_drivestrength(void __iomem *pio,
582 unsigned pin)
583{
584 unsigned tmp = read_drive_strength(pio +
585 at91sam9x5_get_drive_register(pin), pin);
586
587 /* strength is inverse in SAM9x5s hardware with the pinctrl defines
588 * hardware: 0 = hi, 1 = med, 2 = low, 3 = rsvd */
Claudiu Bezneab67328e2019-02-07 09:24:46 +0000589 tmp = DRIVE_STRENGTH_BIT_MSK(HI) - tmp;
Marek Roszko4334ac22014-08-23 23:12:04 -0400590
591 return tmp;
592}
593
Claudiu Beznea42ef7552019-02-07 09:24:49 +0000594static unsigned at91_mux_sam9x60_get_drivestrength(void __iomem *pio,
595 unsigned pin)
596{
597 unsigned tmp = readl_relaxed(pio + SAM9X60_PIO_DRIVER1);
598
599 if (tmp & BIT(pin))
600 return DRIVE_STRENGTH_BIT_HI;
601
602 return DRIVE_STRENGTH_BIT_LOW;
603}
604
Claudiu Beznea64e21ad2019-02-07 09:25:05 +0000605static unsigned at91_mux_sam9x60_get_slewrate(void __iomem *pio, unsigned pin)
606{
607 unsigned tmp = readl_relaxed(pio + SAM9X60_PIO_SLEWR);
608
609 if ((tmp & BIT(pin)))
610 return SLEWRATE_BIT_ENA;
611
612 return SLEWRATE_BIT_DIS;
613}
614
Marek Roszko4334ac22014-08-23 23:12:04 -0400615static void set_drive_strength(void __iomem *reg, unsigned pin, u32 strength)
616{
Ben Dooksd480239b2015-03-26 12:18:49 +0000617 unsigned tmp = readl_relaxed(reg);
Marek Roszko4334ac22014-08-23 23:12:04 -0400618 unsigned shift = two_bit_pin_value_shift_amount(pin);
619
620 tmp &= ~(DRIVE_STRENGTH_MASK << shift);
621 tmp |= strength << shift;
622
Ben Dooksd480239b2015-03-26 12:18:49 +0000623 writel_relaxed(tmp, reg);
Marek Roszko4334ac22014-08-23 23:12:04 -0400624}
625
626static void at91_mux_sama5d3_set_drivestrength(void __iomem *pio, unsigned pin,
627 u32 setting)
628{
629 /* do nothing if setting is zero */
630 if (!setting)
631 return;
632
633 /* strength is 1 to 1 with setting for SAMA5 */
634 set_drive_strength(pio + sama5d3_get_drive_register(pin), pin, setting);
635}
636
637static void at91_mux_sam9x5_set_drivestrength(void __iomem *pio, unsigned pin,
638 u32 setting)
639{
640 /* do nothing if setting is zero */
641 if (!setting)
642 return;
643
644 /* strength is inverse on SAM9x5s with our defines
645 * 0 = hi, 1 = med, 2 = low, 3 = rsvd */
Claudiu Bezneab67328e2019-02-07 09:24:46 +0000646 setting = DRIVE_STRENGTH_BIT_MSK(HI) - setting;
Marek Roszko4334ac22014-08-23 23:12:04 -0400647
648 set_drive_strength(pio + at91sam9x5_get_drive_register(pin), pin,
649 setting);
650}
651
Claudiu Beznea42ef7552019-02-07 09:24:49 +0000652static void at91_mux_sam9x60_set_drivestrength(void __iomem *pio, unsigned pin,
653 u32 setting)
654{
655 unsigned int tmp;
656
657 if (setting <= DRIVE_STRENGTH_BIT_DEF ||
658 setting == DRIVE_STRENGTH_BIT_MED ||
659 setting > DRIVE_STRENGTH_BIT_HI)
660 return;
661
662 tmp = readl_relaxed(pio + SAM9X60_PIO_DRIVER1);
663
664 /* Strength is 0: low, 1: hi */
665 if (setting == DRIVE_STRENGTH_BIT_LOW)
666 tmp &= ~BIT(pin);
667 else
668 tmp |= BIT(pin);
669
670 writel_relaxed(tmp, pio + SAM9X60_PIO_DRIVER1);
671}
672
Claudiu Beznea64e21ad2019-02-07 09:25:05 +0000673static void at91_mux_sam9x60_set_slewrate(void __iomem *pio, unsigned pin,
674 u32 setting)
675{
676 unsigned int tmp;
677
Codrin Ciubotariu0b329282019-11-01 11:20:31 +0200678 if (setting < SLEWRATE_BIT_ENA || setting > SLEWRATE_BIT_DIS)
Claudiu Beznea64e21ad2019-02-07 09:25:05 +0000679 return;
680
681 tmp = readl_relaxed(pio + SAM9X60_PIO_SLEWR);
682
683 if (setting == SLEWRATE_BIT_DIS)
684 tmp &= ~BIT(pin);
685 else
686 tmp |= BIT(pin);
687
688 writel_relaxed(tmp, pio + SAM9X60_PIO_SLEWR);
689}
690
Rikard Falkebornf56b2732021-05-12 20:01:40 +0200691static const struct at91_pinctrl_mux_ops at91rm9200_ops = {
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800692 .get_periph = at91_mux_get_periph,
693 .mux_A_periph = at91_mux_set_A_periph,
694 .mux_B_periph = at91_mux_set_B_periph,
Jean-Christophe PLAGNIOL-VILLARD7ebd7a32012-09-26 14:57:45 +0800695 .get_deglitch = at91_mux_get_deglitch,
696 .set_deglitch = at91_mux_set_deglitch,
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800697 .irq_type = gpio_irq_type,
698};
699
Rikard Falkebornf56b2732021-05-12 20:01:40 +0200700static const struct at91_pinctrl_mux_ops at91sam9x5_ops = {
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800701 .get_periph = at91_mux_pio3_get_periph,
702 .mux_A_periph = at91_mux_pio3_set_A_periph,
703 .mux_B_periph = at91_mux_pio3_set_B_periph,
704 .mux_C_periph = at91_mux_pio3_set_C_periph,
705 .mux_D_periph = at91_mux_pio3_set_D_periph,
Boris BREZILLONc8dba022013-09-13 09:47:22 +0200706 .get_deglitch = at91_mux_pio3_get_deglitch,
Jean-Christophe PLAGNIOL-VILLARD7ebd7a32012-09-26 14:57:45 +0800707 .set_deglitch = at91_mux_pio3_set_deglitch,
708 .get_debounce = at91_mux_pio3_get_debounce,
709 .set_debounce = at91_mux_pio3_set_debounce,
710 .get_pulldown = at91_mux_pio3_get_pulldown,
711 .set_pulldown = at91_mux_pio3_set_pulldown,
712 .get_schmitt_trig = at91_mux_pio3_get_schmitt_trig,
713 .disable_schmitt_trig = at91_mux_pio3_disable_schmitt_trig,
Marek Roszko4334ac22014-08-23 23:12:04 -0400714 .get_drivestrength = at91_mux_sam9x5_get_drivestrength,
715 .set_drivestrength = at91_mux_sam9x5_set_drivestrength,
716 .irq_type = alt_gpio_irq_type,
717};
718
Claudiu Beznea42ef7552019-02-07 09:24:49 +0000719static const struct at91_pinctrl_mux_ops sam9x60_ops = {
720 .get_periph = at91_mux_pio3_get_periph,
721 .mux_A_periph = at91_mux_pio3_set_A_periph,
722 .mux_B_periph = at91_mux_pio3_set_B_periph,
723 .mux_C_periph = at91_mux_pio3_set_C_periph,
724 .mux_D_periph = at91_mux_pio3_set_D_periph,
725 .get_deglitch = at91_mux_pio3_get_deglitch,
726 .set_deglitch = at91_mux_pio3_set_deglitch,
727 .get_debounce = at91_mux_pio3_get_debounce,
728 .set_debounce = at91_mux_pio3_set_debounce,
729 .get_pulldown = at91_mux_pio3_get_pulldown,
730 .set_pulldown = at91_mux_pio3_set_pulldown,
731 .get_schmitt_trig = at91_mux_pio3_get_schmitt_trig,
732 .disable_schmitt_trig = at91_mux_pio3_disable_schmitt_trig,
733 .get_drivestrength = at91_mux_sam9x60_get_drivestrength,
734 .set_drivestrength = at91_mux_sam9x60_set_drivestrength,
Claudiu Beznea64e21ad2019-02-07 09:25:05 +0000735 .get_slewrate = at91_mux_sam9x60_get_slewrate,
736 .set_slewrate = at91_mux_sam9x60_set_slewrate,
Claudiu Beznea42ef7552019-02-07 09:24:49 +0000737 .irq_type = alt_gpio_irq_type,
Claudiu Beznea42ef7552019-02-07 09:24:49 +0000738};
739
Rikard Falkebornf56b2732021-05-12 20:01:40 +0200740static const struct at91_pinctrl_mux_ops sama5d3_ops = {
Marek Roszko4334ac22014-08-23 23:12:04 -0400741 .get_periph = at91_mux_pio3_get_periph,
742 .mux_A_periph = at91_mux_pio3_set_A_periph,
743 .mux_B_periph = at91_mux_pio3_set_B_periph,
744 .mux_C_periph = at91_mux_pio3_set_C_periph,
745 .mux_D_periph = at91_mux_pio3_set_D_periph,
746 .get_deglitch = at91_mux_pio3_get_deglitch,
747 .set_deglitch = at91_mux_pio3_set_deglitch,
748 .get_debounce = at91_mux_pio3_get_debounce,
749 .set_debounce = at91_mux_pio3_set_debounce,
750 .get_pulldown = at91_mux_pio3_get_pulldown,
751 .set_pulldown = at91_mux_pio3_set_pulldown,
752 .get_schmitt_trig = at91_mux_pio3_get_schmitt_trig,
753 .disable_schmitt_trig = at91_mux_pio3_disable_schmitt_trig,
754 .get_drivestrength = at91_mux_sama5d3_get_drivestrength,
755 .set_drivestrength = at91_mux_sama5d3_set_drivestrength,
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800756 .irq_type = alt_gpio_irq_type,
757};
758
759static void at91_pin_dbg(const struct device *dev, const struct at91_pmx_pin *pin)
760{
761 if (pin->mux) {
Hans Wennborg4b6fe452014-08-05 21:43:16 -0700762 dev_dbg(dev, "pio%c%d configured as periph%c with conf = 0x%lx\n",
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800763 pin->bank + 'A', pin->pin, pin->mux - 1 + 'A', pin->conf);
764 } else {
Hans Wennborg4b6fe452014-08-05 21:43:16 -0700765 dev_dbg(dev, "pio%c%d configured as gpio with conf = 0x%lx\n",
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800766 pin->bank + 'A', pin->pin, pin->conf);
767 }
768}
769
Sachin Kamat3c936002013-03-15 10:07:03 +0530770static int pin_check_config(struct at91_pinctrl *info, const char *name,
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800771 int index, const struct at91_pmx_pin *pin)
772{
773 int mux;
774
775 /* check if it's a valid config */
Jean-Christophe PLAGNIOL-VILLARDa0b957f2015-01-16 16:31:05 +0100776 if (pin->bank >= gpio_banks) {
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800777 dev_err(info->dev, "%s: pin conf %d bank_id %d >= nbanks %d\n",
Jean-Christophe PLAGNIOL-VILLARDa0b957f2015-01-16 16:31:05 +0100778 name, index, pin->bank, gpio_banks);
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800779 return -EINVAL;
780 }
781
Jean-Christophe PLAGNIOL-VILLARDa0b957f2015-01-16 16:31:05 +0100782 if (!gpio_chips[pin->bank]) {
783 dev_err(info->dev, "%s: pin conf %d bank_id %d not enabled\n",
784 name, index, pin->bank);
785 return -ENXIO;
786 }
787
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800788 if (pin->pin >= MAX_NB_GPIO_PER_BANK) {
789 dev_err(info->dev, "%s: pin conf %d pin_bank_id %d >= %d\n",
790 name, index, pin->pin, MAX_NB_GPIO_PER_BANK);
791 return -EINVAL;
792 }
793
794 if (!pin->mux)
795 return 0;
796
797 mux = pin->mux - 1;
798
799 if (mux >= info->nmux) {
800 dev_err(info->dev, "%s: pin conf %d mux_id %d >= nmux %d\n",
801 name, index, mux, info->nmux);
802 return -EINVAL;
803 }
804
805 if (!(info->mux_mask[pin->bank * info->nmux + mux] & 1 << pin->pin)) {
806 dev_err(info->dev, "%s: pin conf %d mux_id %d not supported for pio%c%d\n",
807 name, index, mux, pin->bank + 'A', pin->pin);
808 return -EINVAL;
809 }
810
811 return 0;
812}
813
814static void at91_mux_gpio_disable(void __iomem *pio, unsigned mask)
815{
816 writel_relaxed(mask, pio + PIO_PDR);
817}
818
819static void at91_mux_gpio_enable(void __iomem *pio, unsigned mask, bool input)
820{
821 writel_relaxed(mask, pio + PIO_PER);
822 writel_relaxed(mask, pio + (input ? PIO_ODR : PIO_OER));
823}
824
Linus Walleij03e9f0c2014-09-03 13:02:56 +0200825static int at91_pmx_set(struct pinctrl_dev *pctldev, unsigned selector,
826 unsigned group)
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800827{
828 struct at91_pinctrl *info = pinctrl_dev_get_drvdata(pctldev);
829 const struct at91_pmx_pin *pins_conf = info->groups[group].pins_conf;
830 const struct at91_pmx_pin *pin;
831 uint32_t npins = info->groups[group].npins;
832 int i, ret;
833 unsigned mask;
834 void __iomem *pio;
835
836 dev_dbg(info->dev, "enable function %s group %s\n",
837 info->functions[selector].name, info->groups[group].name);
838
839 /* first check that all the pins of the group are valid with a valid
Alexandre Belloni61e310a2013-10-16 16:12:33 +0200840 * parameter */
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800841 for (i = 0; i < npins; i++) {
842 pin = &pins_conf[i];
843 ret = pin_check_config(info, info->groups[group].name, i, pin);
844 if (ret)
845 return ret;
846 }
847
848 for (i = 0; i < npins; i++) {
849 pin = &pins_conf[i];
850 at91_pin_dbg(info->dev, pin);
851 pio = pin_to_controller(info, pin->bank);
David Dueck1ab36382015-07-28 09:48:16 +0200852
853 if (!pio)
854 continue;
855
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800856 mask = pin_to_mask(pin->pin);
857 at91_mux_disable_interrupt(pio, mask);
Sachin Kamat3c936002013-03-15 10:07:03 +0530858 switch (pin->mux) {
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800859 case AT91_MUX_GPIO:
860 at91_mux_gpio_enable(pio, mask, 1);
861 break;
862 case AT91_MUX_PERIPH_A:
863 info->ops->mux_A_periph(pio, mask);
864 break;
865 case AT91_MUX_PERIPH_B:
866 info->ops->mux_B_periph(pio, mask);
867 break;
868 case AT91_MUX_PERIPH_C:
869 if (!info->ops->mux_C_periph)
870 return -EINVAL;
871 info->ops->mux_C_periph(pio, mask);
872 break;
873 case AT91_MUX_PERIPH_D:
874 if (!info->ops->mux_D_periph)
875 return -EINVAL;
876 info->ops->mux_D_periph(pio, mask);
877 break;
878 }
879 if (pin->mux)
880 at91_mux_gpio_disable(pio, mask);
881 }
882
883 return 0;
884}
885
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800886static int at91_pmx_get_funcs_count(struct pinctrl_dev *pctldev)
887{
888 struct at91_pinctrl *info = pinctrl_dev_get_drvdata(pctldev);
889
890 return info->nfunctions;
891}
892
893static const char *at91_pmx_get_func_name(struct pinctrl_dev *pctldev,
894 unsigned selector)
895{
896 struct at91_pinctrl *info = pinctrl_dev_get_drvdata(pctldev);
897
898 return info->functions[selector].name;
899}
900
901static int at91_pmx_get_groups(struct pinctrl_dev *pctldev, unsigned selector,
902 const char * const **groups,
903 unsigned * const num_groups)
904{
905 struct at91_pinctrl *info = pinctrl_dev_get_drvdata(pctldev);
906
907 *groups = info->functions[selector].groups;
908 *num_groups = info->functions[selector].ngroups;
909
910 return 0;
911}
912
Axel Linf6f94f62012-11-05 21:23:50 +0800913static int at91_gpio_request_enable(struct pinctrl_dev *pctldev,
914 struct pinctrl_gpio_range *range,
915 unsigned offset)
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800916{
917 struct at91_pinctrl *npct = pinctrl_dev_get_drvdata(pctldev);
918 struct at91_gpio_chip *at91_chip;
919 struct gpio_chip *chip;
920 unsigned mask;
921
922 if (!range) {
923 dev_err(npct->dev, "invalid range\n");
924 return -EINVAL;
925 }
926 if (!range->gc) {
927 dev_err(npct->dev, "missing GPIO chip in range\n");
928 return -EINVAL;
929 }
930 chip = range->gc;
Linus Walleij370ea612015-12-08 09:27:45 +0100931 at91_chip = gpiochip_get_data(chip);
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800932
933 dev_dbg(npct->dev, "enable pin %u as GPIO\n", offset);
934
935 mask = 1 << (offset - chip->base);
936
937 dev_dbg(npct->dev, "enable pin %u as PIO%c%d 0x%x\n",
938 offset, 'A' + range->id, offset - chip->base, mask);
939
940 writel_relaxed(mask, at91_chip->regbase + PIO_PER);
941
942 return 0;
943}
944
Axel Linf6f94f62012-11-05 21:23:50 +0800945static void at91_gpio_disable_free(struct pinctrl_dev *pctldev,
946 struct pinctrl_gpio_range *range,
947 unsigned offset)
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800948{
949 struct at91_pinctrl *npct = pinctrl_dev_get_drvdata(pctldev);
950
951 dev_dbg(npct->dev, "disable pin %u as GPIO\n", offset);
952 /* Set the pin to some default state, GPIO is usually default */
953}
954
Laurent Pinchart022ab142013-02-16 10:25:07 +0100955static const struct pinmux_ops at91_pmx_ops = {
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800956 .get_functions_count = at91_pmx_get_funcs_count,
957 .get_function_name = at91_pmx_get_func_name,
958 .get_function_groups = at91_pmx_get_groups,
Linus Walleij03e9f0c2014-09-03 13:02:56 +0200959 .set_mux = at91_pmx_set,
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800960 .gpio_request_enable = at91_gpio_request_enable,
961 .gpio_disable_free = at91_gpio_disable_free,
962};
963
964static int at91_pinconf_get(struct pinctrl_dev *pctldev,
965 unsigned pin_id, unsigned long *config)
966{
967 struct at91_pinctrl *info = pinctrl_dev_get_drvdata(pctldev);
968 void __iomem *pio;
969 unsigned pin;
Jean-Christophe PLAGNIOL-VILLARD7ebd7a32012-09-26 14:57:45 +0800970 int div;
Boris BREZILLON96bb12d2016-10-28 15:54:10 +0800971 bool out;
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800972
Alexandre Belloni1292e692013-12-07 14:08:53 +0100973 *config = 0;
974 dev_dbg(info->dev, "%s:%d, pin_id=%d", __func__, __LINE__, pin_id);
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800975 pio = pin_to_controller(info, pin_to_bank(pin_id));
David Dueck1ab36382015-07-28 09:48:16 +0200976
977 if (!pio)
978 return -EINVAL;
979
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800980 pin = pin_id % MAX_NB_GPIO_PER_BANK;
981
982 if (at91_mux_get_multidrive(pio, pin))
983 *config |= MULTI_DRIVE;
984
985 if (at91_mux_get_pullup(pio, pin))
986 *config |= PULL_UP;
987
Jean-Christophe PLAGNIOL-VILLARD7ebd7a32012-09-26 14:57:45 +0800988 if (info->ops->get_deglitch && info->ops->get_deglitch(pio, pin))
989 *config |= DEGLITCH;
990 if (info->ops->get_debounce && info->ops->get_debounce(pio, pin, &div))
991 *config |= DEBOUNCE | (div << DEBOUNCE_VAL_SHIFT);
992 if (info->ops->get_pulldown && info->ops->get_pulldown(pio, pin))
993 *config |= PULL_DOWN;
994 if (info->ops->get_schmitt_trig && info->ops->get_schmitt_trig(pio, pin))
995 *config |= DIS_SCHMIT;
Marek Roszko4334ac22014-08-23 23:12:04 -0400996 if (info->ops->get_drivestrength)
997 *config |= (info->ops->get_drivestrength(pio, pin)
998 << DRIVE_STRENGTH_SHIFT);
Claudiu Beznea64e21ad2019-02-07 09:25:05 +0000999 if (info->ops->get_slewrate)
1000 *config |= (info->ops->get_slewrate(pio, pin) << SLEWRATE_SHIFT);
Boris BREZILLON96bb12d2016-10-28 15:54:10 +08001001 if (at91_mux_get_output(pio, pin, &out))
1002 *config |= OUTPUT | (out << OUTPUT_VAL_SHIFT);
Jean-Christophe PLAGNIOL-VILLARD7ebd7a32012-09-26 14:57:45 +08001003
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001004 return 0;
1005}
1006
1007static int at91_pinconf_set(struct pinctrl_dev *pctldev,
Sherman Yin03b054e2013-08-27 11:32:12 -07001008 unsigned pin_id, unsigned long *configs,
1009 unsigned num_configs)
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001010{
1011 struct at91_pinctrl *info = pinctrl_dev_get_drvdata(pctldev);
1012 unsigned mask;
1013 void __iomem *pio;
Sherman Yin03b054e2013-08-27 11:32:12 -07001014 int i;
1015 unsigned long config;
Marek Roszko4334ac22014-08-23 23:12:04 -04001016 unsigned pin;
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001017
Sherman Yin03b054e2013-08-27 11:32:12 -07001018 for (i = 0; i < num_configs; i++) {
1019 config = configs[i];
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001020
Sherman Yin03b054e2013-08-27 11:32:12 -07001021 dev_dbg(info->dev,
1022 "%s:%d, pin_id=%d, config=0x%lx",
1023 __func__, __LINE__, pin_id, config);
1024 pio = pin_to_controller(info, pin_to_bank(pin_id));
David Dueck1ab36382015-07-28 09:48:16 +02001025
1026 if (!pio)
1027 return -EINVAL;
1028
Marek Roszko4334ac22014-08-23 23:12:04 -04001029 pin = pin_id % MAX_NB_GPIO_PER_BANK;
1030 mask = pin_to_mask(pin);
Jean-Christophe PLAGNIOL-VILLARD7ebd7a32012-09-26 14:57:45 +08001031
Sherman Yin03b054e2013-08-27 11:32:12 -07001032 if (config & PULL_UP && config & PULL_DOWN)
1033 return -EINVAL;
1034
Boris BREZILLON96bb12d2016-10-28 15:54:10 +08001035 at91_mux_set_output(pio, mask, config & OUTPUT,
1036 (config & OUTPUT_VAL) >> OUTPUT_VAL_SHIFT);
Sherman Yin03b054e2013-08-27 11:32:12 -07001037 at91_mux_set_pullup(pio, mask, config & PULL_UP);
1038 at91_mux_set_multidrive(pio, mask, config & MULTI_DRIVE);
1039 if (info->ops->set_deglitch)
1040 info->ops->set_deglitch(pio, mask, config & DEGLITCH);
1041 if (info->ops->set_debounce)
1042 info->ops->set_debounce(pio, mask, config & DEBOUNCE,
Jean-Christophe PLAGNIOL-VILLARD7ebd7a32012-09-26 14:57:45 +08001043 (config & DEBOUNCE_VAL) >> DEBOUNCE_VAL_SHIFT);
Sherman Yin03b054e2013-08-27 11:32:12 -07001044 if (info->ops->set_pulldown)
1045 info->ops->set_pulldown(pio, mask, config & PULL_DOWN);
1046 if (info->ops->disable_schmitt_trig && config & DIS_SCHMIT)
1047 info->ops->disable_schmitt_trig(pio, mask);
Marek Roszko4334ac22014-08-23 23:12:04 -04001048 if (info->ops->set_drivestrength)
1049 info->ops->set_drivestrength(pio, pin,
1050 (config & DRIVE_STRENGTH)
1051 >> DRIVE_STRENGTH_SHIFT);
Claudiu Beznea64e21ad2019-02-07 09:25:05 +00001052 if (info->ops->set_slewrate)
1053 info->ops->set_slewrate(pio, pin,
1054 (config & SLEWRATE) >> SLEWRATE_SHIFT);
Sherman Yin03b054e2013-08-27 11:32:12 -07001055
1056 } /* for each config */
Jean-Christophe PLAGNIOL-VILLARD7ebd7a32012-09-26 14:57:45 +08001057
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001058 return 0;
1059}
1060
Alexandre Belloni4d9b8a82013-12-07 14:08:54 +01001061#define DBG_SHOW_FLAG(flag) do { \
1062 if (config & flag) { \
1063 if (num_conf) \
1064 seq_puts(s, "|"); \
1065 seq_puts(s, #flag); \
1066 num_conf++; \
1067 } \
1068} while (0)
1069
Claudiu Bezneab67328e2019-02-07 09:24:46 +00001070#define DBG_SHOW_FLAG_MASKED(mask, flag, name) do { \
Marek Roszko4334ac22014-08-23 23:12:04 -04001071 if ((config & mask) == flag) { \
1072 if (num_conf) \
1073 seq_puts(s, "|"); \
Claudiu Bezneab67328e2019-02-07 09:24:46 +00001074 seq_puts(s, #name); \
Marek Roszko4334ac22014-08-23 23:12:04 -04001075 num_conf++; \
1076 } \
1077} while (0)
1078
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001079static void at91_pinconf_dbg_show(struct pinctrl_dev *pctldev,
1080 struct seq_file *s, unsigned pin_id)
1081{
Alexandre Belloni4d9b8a82013-12-07 14:08:54 +01001082 unsigned long config;
Rickard Strandqvist445d2022014-06-26 15:41:31 +02001083 int val, num_conf = 0;
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001084
Rickard Strandqvist445d2022014-06-26 15:41:31 +02001085 at91_pinconf_get(pctldev, pin_id, &config);
Alexandre Belloni4d9b8a82013-12-07 14:08:54 +01001086
1087 DBG_SHOW_FLAG(MULTI_DRIVE);
1088 DBG_SHOW_FLAG(PULL_UP);
1089 DBG_SHOW_FLAG(PULL_DOWN);
1090 DBG_SHOW_FLAG(DIS_SCHMIT);
1091 DBG_SHOW_FLAG(DEGLITCH);
Claudiu Bezneab67328e2019-02-07 09:24:46 +00001092 DBG_SHOW_FLAG_MASKED(DRIVE_STRENGTH, DRIVE_STRENGTH_BIT_MSK(LOW),
1093 DRIVE_STRENGTH_LOW);
1094 DBG_SHOW_FLAG_MASKED(DRIVE_STRENGTH, DRIVE_STRENGTH_BIT_MSK(MED),
1095 DRIVE_STRENGTH_MED);
1096 DBG_SHOW_FLAG_MASKED(DRIVE_STRENGTH, DRIVE_STRENGTH_BIT_MSK(HI),
1097 DRIVE_STRENGTH_HI);
Claudiu Beznea64e21ad2019-02-07 09:25:05 +00001098 DBG_SHOW_FLAG(SLEWRATE);
Alexandre Belloni4d9b8a82013-12-07 14:08:54 +01001099 DBG_SHOW_FLAG(DEBOUNCE);
1100 if (config & DEBOUNCE) {
1101 val = config >> DEBOUNCE_VAL_SHIFT;
1102 seq_printf(s, "(%d)", val);
1103 }
1104
1105 return;
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001106}
1107
1108static void at91_pinconf_group_dbg_show(struct pinctrl_dev *pctldev,
1109 struct seq_file *s, unsigned group)
1110{
1111}
1112
Laurent Pinchart022ab142013-02-16 10:25:07 +01001113static const struct pinconf_ops at91_pinconf_ops = {
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001114 .pin_config_get = at91_pinconf_get,
1115 .pin_config_set = at91_pinconf_set,
1116 .pin_config_dbg_show = at91_pinconf_dbg_show,
1117 .pin_config_group_dbg_show = at91_pinconf_group_dbg_show,
1118};
1119
1120static struct pinctrl_desc at91_pinctrl_desc = {
1121 .pctlops = &at91_pctrl_ops,
1122 .pmxops = &at91_pmx_ops,
1123 .confops = &at91_pinconf_ops,
1124 .owner = THIS_MODULE,
1125};
1126
1127static const char *gpio_compat = "atmel,at91rm9200-gpio";
1128
Greg Kroah-Hartman150632b2012-12-21 13:10:23 -08001129static void at91_pinctrl_child_count(struct at91_pinctrl *info,
1130 struct device_node *np)
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001131{
1132 struct device_node *child;
1133
1134 for_each_child_of_node(np, child) {
1135 if (of_device_is_compatible(child, gpio_compat)) {
Jean-Christophe PLAGNIOL-VILLARDa0b957f2015-01-16 16:31:05 +01001136 if (of_device_is_available(child))
1137 info->nactive_banks++;
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001138 } else {
1139 info->nfunctions++;
1140 info->ngroups += of_get_child_count(child);
1141 }
1142 }
1143}
1144
Greg Kroah-Hartman150632b2012-12-21 13:10:23 -08001145static int at91_pinctrl_mux_mask(struct at91_pinctrl *info,
1146 struct device_node *np)
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001147{
1148 int ret = 0;
1149 int size;
Sachin Kamat1164d732013-03-15 10:07:02 +05301150 const __be32 *list;
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001151
1152 list = of_get_property(np, "atmel,mux-mask", &size);
1153 if (!list) {
1154 dev_err(info->dev, "can not read the mux-mask of %d\n", size);
1155 return -EINVAL;
1156 }
1157
1158 size /= sizeof(*list);
Jean-Christophe PLAGNIOL-VILLARDa0b957f2015-01-16 16:31:05 +01001159 if (!size || size % gpio_banks) {
1160 dev_err(info->dev, "wrong mux mask array should be by %d\n", gpio_banks);
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001161 return -EINVAL;
1162 }
Jean-Christophe PLAGNIOL-VILLARDa0b957f2015-01-16 16:31:05 +01001163 info->nmux = size / gpio_banks;
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001164
Kees Cooka86854d2018-06-12 14:07:58 -07001165 info->mux_mask = devm_kcalloc(info->dev, size, sizeof(u32),
1166 GFP_KERNEL);
Markus Elfring3da941b2017-12-23 20:44:27 +01001167 if (!info->mux_mask)
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001168 return -ENOMEM;
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001169
1170 ret = of_property_read_u32_array(np, "atmel,mux-mask",
1171 info->mux_mask, size);
1172 if (ret)
1173 dev_err(info->dev, "can not read the mux-mask of %d\n", size);
1174 return ret;
1175}
1176
Greg Kroah-Hartman150632b2012-12-21 13:10:23 -08001177static int at91_pinctrl_parse_groups(struct device_node *np,
1178 struct at91_pin_group *grp,
1179 struct at91_pinctrl *info, u32 index)
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001180{
1181 struct at91_pmx_pin *pin;
1182 int size;
Sachin Kamat1164d732013-03-15 10:07:02 +05301183 const __be32 *list;
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001184 int i, j;
1185
Rob Herring94f4e542018-08-27 20:52:41 -05001186 dev_dbg(info->dev, "group(%d): %pOFn\n", index, np);
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001187
1188 /* Initialise group */
1189 grp->name = np->name;
1190
1191 /*
1192 * the binding format is atmel,pins = <bank pin mux CONFIG ...>,
1193 * do sanity check and calculate pins number
1194 */
1195 list = of_get_property(np, "atmel,pins", &size);
1196 /* we do not check return since it's safe node passed down */
1197 size /= sizeof(*list);
1198 if (!size || size % 4) {
1199 dev_err(info->dev, "wrong pins number or pins and configs should be by 4\n");
1200 return -EINVAL;
1201 }
1202
1203 grp->npins = size / 4;
Kees Cooka86854d2018-06-12 14:07:58 -07001204 pin = grp->pins_conf = devm_kcalloc(info->dev,
1205 grp->npins,
1206 sizeof(struct at91_pmx_pin),
1207 GFP_KERNEL);
1208 grp->pins = devm_kcalloc(info->dev, grp->npins, sizeof(unsigned int),
1209 GFP_KERNEL);
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001210 if (!grp->pins_conf || !grp->pins)
1211 return -ENOMEM;
1212
1213 for (i = 0, j = 0; i < size; i += 4, j++) {
1214 pin->bank = be32_to_cpu(*list++);
1215 pin->pin = be32_to_cpu(*list++);
1216 grp->pins[j] = pin->bank * MAX_NB_GPIO_PER_BANK + pin->pin;
1217 pin->mux = be32_to_cpu(*list++);
1218 pin->conf = be32_to_cpu(*list++);
1219
1220 at91_pin_dbg(info->dev, pin);
1221 pin++;
1222 }
1223
1224 return 0;
1225}
1226
Greg Kroah-Hartman150632b2012-12-21 13:10:23 -08001227static int at91_pinctrl_parse_functions(struct device_node *np,
1228 struct at91_pinctrl *info, u32 index)
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001229{
1230 struct device_node *child;
1231 struct at91_pmx_func *func;
1232 struct at91_pin_group *grp;
1233 int ret;
1234 static u32 grp_index;
1235 u32 i = 0;
1236
Rob Herring94f4e542018-08-27 20:52:41 -05001237 dev_dbg(info->dev, "parse function(%d): %pOFn\n", index, np);
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001238
1239 func = &info->functions[index];
1240
1241 /* Initialise function */
1242 func->name = np->name;
1243 func->ngroups = of_get_child_count(np);
Rickard Strandqvistca7162a2014-06-26 13:26:45 +02001244 if (func->ngroups == 0) {
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001245 dev_err(info->dev, "no groups defined\n");
1246 return -EINVAL;
1247 }
Kees Cooka86854d2018-06-12 14:07:58 -07001248 func->groups = devm_kcalloc(info->dev,
1249 func->ngroups, sizeof(char *), GFP_KERNEL);
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001250 if (!func->groups)
1251 return -ENOMEM;
1252
1253 for_each_child_of_node(np, child) {
1254 func->groups[i] = child->name;
1255 grp = &info->groups[grp_index++];
1256 ret = at91_pinctrl_parse_groups(child, grp, info, i++);
Julia Lawalld94b9862015-10-24 16:42:35 +02001257 if (ret) {
1258 of_node_put(child);
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001259 return ret;
Julia Lawalld94b9862015-10-24 16:42:35 +02001260 }
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001261 }
1262
1263 return 0;
1264}
1265
Fabian Frederickbaa9946e2015-03-16 20:59:09 +01001266static const struct of_device_id at91_pinctrl_of_match[] = {
Marek Roszko4334ac22014-08-23 23:12:04 -04001267 { .compatible = "atmel,sama5d3-pinctrl", .data = &sama5d3_ops },
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001268 { .compatible = "atmel,at91sam9x5-pinctrl", .data = &at91sam9x5_ops },
1269 { .compatible = "atmel,at91rm9200-pinctrl", .data = &at91rm9200_ops },
Claudiu Bezneaa2fcb1c2019-02-07 09:24:53 +00001270 { .compatible = "microchip,sam9x60-pinctrl", .data = &sam9x60_ops },
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001271 { /* sentinel */ }
1272};
1273
Greg Kroah-Hartman150632b2012-12-21 13:10:23 -08001274static int at91_pinctrl_probe_dt(struct platform_device *pdev,
1275 struct at91_pinctrl *info)
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001276{
1277 int ret = 0;
1278 int i, j;
1279 uint32_t *tmp;
1280 struct device_node *np = pdev->dev.of_node;
1281 struct device_node *child;
1282
1283 if (!np)
1284 return -ENODEV;
1285
1286 info->dev = &pdev->dev;
Rikard Falkebornf56b2732021-05-12 20:01:40 +02001287 info->ops = (const struct at91_pinctrl_mux_ops *)
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001288 of_match_device(at91_pinctrl_of_match, &pdev->dev)->data;
1289 at91_pinctrl_child_count(info, np);
1290
Jean-Christophe PLAGNIOL-VILLARDa0b957f2015-01-16 16:31:05 +01001291 if (gpio_banks < 1) {
Alexandre Belloni61e310a2013-10-16 16:12:33 +02001292 dev_err(&pdev->dev, "you need to specify at least one gpio-controller\n");
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001293 return -EINVAL;
1294 }
1295
1296 ret = at91_pinctrl_mux_mask(info, np);
1297 if (ret)
1298 return ret;
1299
1300 dev_dbg(&pdev->dev, "nmux = %d\n", info->nmux);
1301
1302 dev_dbg(&pdev->dev, "mux-mask\n");
1303 tmp = info->mux_mask;
Jean-Christophe PLAGNIOL-VILLARDa0b957f2015-01-16 16:31:05 +01001304 for (i = 0; i < gpio_banks; i++) {
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001305 for (j = 0; j < info->nmux; j++, tmp++) {
1306 dev_dbg(&pdev->dev, "%d:%d\t0x%x\n", i, j, tmp[0]);
1307 }
1308 }
1309
1310 dev_dbg(&pdev->dev, "nfunctions = %d\n", info->nfunctions);
1311 dev_dbg(&pdev->dev, "ngroups = %d\n", info->ngroups);
Kees Cooka86854d2018-06-12 14:07:58 -07001312 info->functions = devm_kcalloc(&pdev->dev,
1313 info->nfunctions,
1314 sizeof(struct at91_pmx_func),
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001315 GFP_KERNEL);
1316 if (!info->functions)
1317 return -ENOMEM;
1318
Kees Cooka86854d2018-06-12 14:07:58 -07001319 info->groups = devm_kcalloc(&pdev->dev,
1320 info->ngroups,
1321 sizeof(struct at91_pin_group),
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001322 GFP_KERNEL);
1323 if (!info->groups)
1324 return -ENOMEM;
1325
Jean-Christophe PLAGNIOL-VILLARDa0b957f2015-01-16 16:31:05 +01001326 dev_dbg(&pdev->dev, "nbanks = %d\n", gpio_banks);
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001327 dev_dbg(&pdev->dev, "nfunctions = %d\n", info->nfunctions);
1328 dev_dbg(&pdev->dev, "ngroups = %d\n", info->ngroups);
1329
1330 i = 0;
1331
1332 for_each_child_of_node(np, child) {
1333 if (of_device_is_compatible(child, gpio_compat))
1334 continue;
1335 ret = at91_pinctrl_parse_functions(child, info, i++);
1336 if (ret) {
1337 dev_err(&pdev->dev, "failed to parse function\n");
Julia Lawalld94b9862015-10-24 16:42:35 +02001338 of_node_put(child);
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001339 return ret;
1340 }
1341 }
1342
1343 return 0;
1344}
1345
Greg Kroah-Hartman150632b2012-12-21 13:10:23 -08001346static int at91_pinctrl_probe(struct platform_device *pdev)
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001347{
1348 struct at91_pinctrl *info;
1349 struct pinctrl_pin_desc *pdesc;
Jean-Christophe PLAGNIOL-VILLARDa0b957f2015-01-16 16:31:05 +01001350 int ret, i, j, k, ngpio_chips_enabled = 0;
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001351
1352 info = devm_kzalloc(&pdev->dev, sizeof(*info), GFP_KERNEL);
1353 if (!info)
1354 return -ENOMEM;
1355
1356 ret = at91_pinctrl_probe_dt(pdev, info);
1357 if (ret)
1358 return ret;
1359
1360 /*
1361 * We need all the GPIO drivers to probe FIRST, or we will not be able
1362 * to obtain references to the struct gpio_chip * for them, and we
1363 * need this to proceed.
1364 */
Jean-Christophe PLAGNIOL-VILLARDa0b957f2015-01-16 16:31:05 +01001365 for (i = 0; i < gpio_banks; i++)
1366 if (gpio_chips[i])
1367 ngpio_chips_enabled++;
1368
1369 if (ngpio_chips_enabled < info->nactive_banks) {
1370 dev_warn(&pdev->dev,
1371 "All GPIO chips are not registered yet (%d/%d)\n",
1372 ngpio_chips_enabled, info->nactive_banks);
1373 devm_kfree(&pdev->dev, info);
1374 return -EPROBE_DEFER;
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001375 }
1376
1377 at91_pinctrl_desc.name = dev_name(&pdev->dev);
Jean-Christophe PLAGNIOL-VILLARDa0b957f2015-01-16 16:31:05 +01001378 at91_pinctrl_desc.npins = gpio_banks * MAX_NB_GPIO_PER_BANK;
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001379 at91_pinctrl_desc.pins = pdesc =
Kees Cooka86854d2018-06-12 14:07:58 -07001380 devm_kcalloc(&pdev->dev,
1381 at91_pinctrl_desc.npins, sizeof(*pdesc),
1382 GFP_KERNEL);
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001383
1384 if (!at91_pinctrl_desc.pins)
1385 return -ENOMEM;
1386
Jean-Christophe PLAGNIOL-VILLARDa0b957f2015-01-16 16:31:05 +01001387 for (i = 0, k = 0; i < gpio_banks; i++) {
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001388 for (j = 0; j < MAX_NB_GPIO_PER_BANK; j++, k++) {
1389 pdesc->number = k;
1390 pdesc->name = kasprintf(GFP_KERNEL, "pio%c%d", i + 'A', j);
1391 pdesc++;
1392 }
1393 }
1394
1395 platform_set_drvdata(pdev, info);
Laxman Dewangan5c674252016-02-28 14:32:19 +05301396 info->pctl = devm_pinctrl_register(&pdev->dev, &at91_pinctrl_desc,
1397 info);
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001398
Masahiro Yamada323de9e2015-06-09 13:01:16 +09001399 if (IS_ERR(info->pctl)) {
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001400 dev_err(&pdev->dev, "could not register AT91 pinctrl driver\n");
Masahiro Yamada323de9e2015-06-09 13:01:16 +09001401 return PTR_ERR(info->pctl);
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001402 }
1403
1404 /* We will handle a range of GPIO pins */
Jean-Christophe PLAGNIOL-VILLARDa0b957f2015-01-16 16:31:05 +01001405 for (i = 0; i < gpio_banks; i++)
1406 if (gpio_chips[i])
1407 pinctrl_add_gpio_range(info->pctl, &gpio_chips[i]->range);
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001408
1409 dev_info(&pdev->dev, "initialized AT91 pinctrl driver\n");
1410
1411 return 0;
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001412}
1413
Richard Genoud8af584b2014-02-17 17:57:26 +01001414static int at91_gpio_get_direction(struct gpio_chip *chip, unsigned offset)
1415{
Linus Walleij370ea612015-12-08 09:27:45 +01001416 struct at91_gpio_chip *at91_gpio = gpiochip_get_data(chip);
Richard Genoud8af584b2014-02-17 17:57:26 +01001417 void __iomem *pio = at91_gpio->regbase;
1418 unsigned mask = 1 << offset;
1419 u32 osr;
1420
1421 osr = readl_relaxed(pio + PIO_OSR);
Matti Vaittinen3c827872020-02-14 15:57:12 +02001422 if (osr & mask)
1423 return GPIO_LINE_DIRECTION_OUT;
1424
1425 return GPIO_LINE_DIRECTION_IN;
Richard Genoud8af584b2014-02-17 17:57:26 +01001426}
1427
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001428static int at91_gpio_direction_input(struct gpio_chip *chip, unsigned offset)
1429{
Linus Walleij370ea612015-12-08 09:27:45 +01001430 struct at91_gpio_chip *at91_gpio = gpiochip_get_data(chip);
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001431 void __iomem *pio = at91_gpio->regbase;
1432 unsigned mask = 1 << offset;
1433
1434 writel_relaxed(mask, pio + PIO_ODR);
1435 return 0;
1436}
1437
1438static int at91_gpio_get(struct gpio_chip *chip, unsigned offset)
1439{
Linus Walleij370ea612015-12-08 09:27:45 +01001440 struct at91_gpio_chip *at91_gpio = gpiochip_get_data(chip);
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001441 void __iomem *pio = at91_gpio->regbase;
1442 unsigned mask = 1 << offset;
1443 u32 pdsr;
1444
1445 pdsr = readl_relaxed(pio + PIO_PDSR);
1446 return (pdsr & mask) != 0;
1447}
1448
1449static void at91_gpio_set(struct gpio_chip *chip, unsigned offset,
1450 int val)
1451{
Linus Walleij370ea612015-12-08 09:27:45 +01001452 struct at91_gpio_chip *at91_gpio = gpiochip_get_data(chip);
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001453 void __iomem *pio = at91_gpio->regbase;
1454 unsigned mask = 1 << offset;
1455
1456 writel_relaxed(mask, pio + (val ? PIO_SODR : PIO_CODR));
1457}
1458
Alexander Stein1893b2c2015-04-02 11:55:49 +02001459static void at91_gpio_set_multiple(struct gpio_chip *chip,
1460 unsigned long *mask, unsigned long *bits)
1461{
Linus Walleij370ea612015-12-08 09:27:45 +01001462 struct at91_gpio_chip *at91_gpio = gpiochip_get_data(chip);
Alexander Stein1893b2c2015-04-02 11:55:49 +02001463 void __iomem *pio = at91_gpio->regbase;
1464
1465#define BITS_MASK(bits) (((bits) == 32) ? ~0U : (BIT(bits) - 1))
1466 /* Mask additionally to ngpio as not all GPIO controllers have 32 pins */
1467 uint32_t set_mask = (*mask & *bits) & BITS_MASK(chip->ngpio);
1468 uint32_t clear_mask = (*mask & ~(*bits)) & BITS_MASK(chip->ngpio);
1469
1470 writel_relaxed(set_mask, pio + PIO_SODR);
1471 writel_relaxed(clear_mask, pio + PIO_CODR);
1472}
1473
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001474static int at91_gpio_direction_output(struct gpio_chip *chip, unsigned offset,
1475 int val)
1476{
Linus Walleij370ea612015-12-08 09:27:45 +01001477 struct at91_gpio_chip *at91_gpio = gpiochip_get_data(chip);
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001478 void __iomem *pio = at91_gpio->regbase;
1479 unsigned mask = 1 << offset;
1480
1481 writel_relaxed(mask, pio + (val ? PIO_SODR : PIO_CODR));
1482 writel_relaxed(mask, pio + PIO_OER);
1483
1484 return 0;
1485}
1486
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001487#ifdef CONFIG_DEBUG_FS
1488static void at91_gpio_dbg_show(struct seq_file *s, struct gpio_chip *chip)
1489{
1490 enum at91_mux mode;
1491 int i;
Linus Walleij370ea612015-12-08 09:27:45 +01001492 struct at91_gpio_chip *at91_gpio = gpiochip_get_data(chip);
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001493 void __iomem *pio = at91_gpio->regbase;
Andy Shevchenko5bae1f02020-06-15 18:05:45 +03001494 const char *gpio_label;
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001495
Andy Shevchenko5bae1f02020-06-15 18:05:45 +03001496 for_each_requested_gpio(chip, i, gpio_label) {
Alexander Stein47f22712014-04-14 20:53:08 +02001497 unsigned mask = pin_to_mask(i);
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001498
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001499 mode = at91_gpio->ops->get_periph(pio, mask);
1500 seq_printf(s, "[%s] GPIO%s%d: ",
1501 gpio_label, chip->label, i);
1502 if (mode == AT91_MUX_GPIO) {
Matthieu Crapet853b6bf2014-11-18 15:43:45 +01001503 seq_printf(s, "[gpio] ");
1504 seq_printf(s, "%s ",
1505 readl_relaxed(pio + PIO_OSR) & mask ?
1506 "output" : "input");
1507 seq_printf(s, "%s\n",
1508 readl_relaxed(pio + PIO_PDSR) & mask ?
1509 "set" : "clear");
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001510 } else {
1511 seq_printf(s, "[periph %c]\n",
1512 mode + 'A' - 1);
1513 }
1514 }
1515}
1516#else
1517#define at91_gpio_dbg_show NULL
1518#endif
1519
1520/* Several AIC controller irqs are dispatched through this GPIO handler.
1521 * To use any AT91_PIN_* as an externally triggered IRQ, first call
1522 * at91_set_gpio_input() then maybe enable its glitch filter.
1523 * Then just request_irq() with the pin ID; it works like any ARM IRQ
1524 * handler.
1525 * First implementation always triggers on rising and falling edges
1526 * whereas the newer PIO3 can be additionally configured to trigger on
1527 * level, edge with any polarity.
1528 *
1529 * Alternatively, certain pins may be used directly as IRQ0..IRQ6 after
1530 * configuring them with at91_set_a_periph() or at91_set_b_periph().
1531 * IRQ0..IRQ6 should be configurable, e.g. level vs edge triggering.
1532 */
1533
1534static void gpio_irq_mask(struct irq_data *d)
1535{
1536 struct at91_gpio_chip *at91_gpio = irq_data_get_irq_chip_data(d);
1537 void __iomem *pio = at91_gpio->regbase;
1538 unsigned mask = 1 << d->hwirq;
1539
1540 if (pio)
1541 writel_relaxed(mask, pio + PIO_IDR);
1542}
1543
1544static void gpio_irq_unmask(struct irq_data *d)
1545{
1546 struct at91_gpio_chip *at91_gpio = irq_data_get_irq_chip_data(d);
1547 void __iomem *pio = at91_gpio->regbase;
1548 unsigned mask = 1 << d->hwirq;
1549
1550 if (pio)
1551 writel_relaxed(mask, pio + PIO_IER);
1552}
1553
1554static int gpio_irq_type(struct irq_data *d, unsigned type)
1555{
1556 switch (type) {
1557 case IRQ_TYPE_NONE:
1558 case IRQ_TYPE_EDGE_BOTH:
1559 return 0;
1560 default:
1561 return -EINVAL;
1562 }
1563}
1564
1565/* Alternate irq type for PIO3 support */
1566static int alt_gpio_irq_type(struct irq_data *d, unsigned type)
1567{
1568 struct at91_gpio_chip *at91_gpio = irq_data_get_irq_chip_data(d);
1569 void __iomem *pio = at91_gpio->regbase;
1570 unsigned mask = 1 << d->hwirq;
1571
1572 switch (type) {
1573 case IRQ_TYPE_EDGE_RISING:
Thomas Gleixnerc639845b2015-06-23 15:52:49 +02001574 irq_set_handler_locked(d, handle_simple_irq);
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001575 writel_relaxed(mask, pio + PIO_ESR);
1576 writel_relaxed(mask, pio + PIO_REHLSR);
1577 break;
1578 case IRQ_TYPE_EDGE_FALLING:
Thomas Gleixnerc639845b2015-06-23 15:52:49 +02001579 irq_set_handler_locked(d, handle_simple_irq);
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001580 writel_relaxed(mask, pio + PIO_ESR);
1581 writel_relaxed(mask, pio + PIO_FELLSR);
1582 break;
1583 case IRQ_TYPE_LEVEL_LOW:
Thomas Gleixnerc639845b2015-06-23 15:52:49 +02001584 irq_set_handler_locked(d, handle_level_irq);
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001585 writel_relaxed(mask, pio + PIO_LSR);
1586 writel_relaxed(mask, pio + PIO_FELLSR);
1587 break;
1588 case IRQ_TYPE_LEVEL_HIGH:
Thomas Gleixnerc639845b2015-06-23 15:52:49 +02001589 irq_set_handler_locked(d, handle_level_irq);
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001590 writel_relaxed(mask, pio + PIO_LSR);
1591 writel_relaxed(mask, pio + PIO_REHLSR);
1592 break;
1593 case IRQ_TYPE_EDGE_BOTH:
1594 /*
1595 * disable additional interrupt modes:
1596 * fall back to default behavior
1597 */
Thomas Gleixnerc639845b2015-06-23 15:52:49 +02001598 irq_set_handler_locked(d, handle_simple_irq);
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001599 writel_relaxed(mask, pio + PIO_AIMDR);
1600 return 0;
1601 case IRQ_TYPE_NONE:
1602 default:
Linus Walleij1c5fb662018-09-13 13:58:21 +02001603 pr_warn("AT91: No type for GPIO irq offset %d\n", d->irq);
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001604 return -EINVAL;
1605 }
1606
1607 /* enable additional interrupt modes */
1608 writel_relaxed(mask, pio + PIO_AIMER);
1609
1610 return 0;
1611}
1612
Alexander Stein80cc3732014-04-15 22:09:41 +02001613static void gpio_irq_ack(struct irq_data *d)
1614{
1615 /* the interrupt is already cleared before by reading ISR */
1616}
1617
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001618#ifdef CONFIG_PM
Ludovic Desroches647f8d92013-03-08 16:18:21 +01001619
1620static u32 wakeups[MAX_GPIO_BANKS];
1621static u32 backups[MAX_GPIO_BANKS];
1622
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001623static int gpio_irq_set_wake(struct irq_data *d, unsigned state)
1624{
1625 struct at91_gpio_chip *at91_gpio = irq_data_get_irq_chip_data(d);
1626 unsigned bank = at91_gpio->pioc_idx;
Ludovic Desroches647f8d92013-03-08 16:18:21 +01001627 unsigned mask = 1 << d->hwirq;
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001628
1629 if (unlikely(bank >= MAX_GPIO_BANKS))
1630 return -EINVAL;
1631
Ludovic Desroches647f8d92013-03-08 16:18:21 +01001632 if (state)
1633 wakeups[bank] |= mask;
1634 else
1635 wakeups[bank] &= ~mask;
1636
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001637 irq_set_irq_wake(at91_gpio->pioc_virq, state);
1638
1639 return 0;
1640}
Ludovic Desroches647f8d92013-03-08 16:18:21 +01001641
1642void at91_pinctrl_gpio_suspend(void)
1643{
1644 int i;
1645
1646 for (i = 0; i < gpio_banks; i++) {
1647 void __iomem *pio;
1648
1649 if (!gpio_chips[i])
1650 continue;
1651
1652 pio = gpio_chips[i]->regbase;
1653
Ben Dooksd480239b2015-03-26 12:18:49 +00001654 backups[i] = readl_relaxed(pio + PIO_IMR);
1655 writel_relaxed(backups[i], pio + PIO_IDR);
1656 writel_relaxed(wakeups[i], pio + PIO_IER);
Ludovic Desroches647f8d92013-03-08 16:18:21 +01001657
Boris BREZILLON795f9952013-12-15 19:30:51 +01001658 if (!wakeups[i])
1659 clk_disable_unprepare(gpio_chips[i]->clock);
1660 else
Ludovic Desroches647f8d92013-03-08 16:18:21 +01001661 printk(KERN_DEBUG "GPIO-%c may wake for %08x\n",
1662 'A'+i, wakeups[i]);
Ludovic Desroches647f8d92013-03-08 16:18:21 +01001663 }
1664}
1665
1666void at91_pinctrl_gpio_resume(void)
1667{
1668 int i;
1669
1670 for (i = 0; i < gpio_banks; i++) {
1671 void __iomem *pio;
1672
1673 if (!gpio_chips[i])
1674 continue;
1675
1676 pio = gpio_chips[i]->regbase;
1677
Boris BREZILLON37ef1d92013-12-15 19:30:52 +01001678 if (!wakeups[i])
1679 clk_prepare_enable(gpio_chips[i]->clock);
Ludovic Desroches647f8d92013-03-08 16:18:21 +01001680
Ben Dooksd480239b2015-03-26 12:18:49 +00001681 writel_relaxed(wakeups[i], pio + PIO_IDR);
1682 writel_relaxed(backups[i], pio + PIO_IER);
Ludovic Desroches647f8d92013-03-08 16:18:21 +01001683 }
1684}
1685
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001686#else
1687#define gpio_irq_set_wake NULL
Ludovic Desroches647f8d92013-03-08 16:18:21 +01001688#endif /* CONFIG_PM */
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001689
Thomas Gleixnerbd0b9ac2015-09-14 10:42:37 +02001690static void gpio_irq_handler(struct irq_desc *desc)
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001691{
Jiang Liu5663bb22015-06-04 12:13:16 +08001692 struct irq_chip *chip = irq_desc_get_chip(desc);
Alexander Stein80cc3732014-04-15 22:09:41 +02001693 struct gpio_chip *gpio_chip = irq_desc_get_handler_data(desc);
Linus Walleij370ea612015-12-08 09:27:45 +01001694 struct at91_gpio_chip *at91_gpio = gpiochip_get_data(gpio_chip);
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001695 void __iomem *pio = at91_gpio->regbase;
1696 unsigned long isr;
1697 int n;
1698
1699 chained_irq_enter(chip, desc);
1700 for (;;) {
1701 /* Reading ISR acks pending (edge triggered) GPIO interrupts.
Alexandre Bellonic2eb9e72013-12-07 14:08:52 +01001702 * When there are none pending, we're finished unless we need
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001703 * to process multiple banks (like ID_PIOCDE on sam9263).
1704 */
1705 isr = readl_relaxed(pio + PIO_ISR) & readl_relaxed(pio + PIO_IMR);
1706 if (!isr) {
1707 if (!at91_gpio->next)
1708 break;
1709 at91_gpio = at91_gpio->next;
1710 pio = at91_gpio->regbase;
Alexander Steincccb0c32014-04-24 19:55:39 +02001711 gpio_chip = &at91_gpio->chip;
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001712 continue;
1713 }
1714
Marc Zyngiera9cb09b2021-05-04 17:42:18 +01001715 for_each_set_bit(n, &isr, BITS_PER_LONG)
1716 generic_handle_domain_irq(gpio_chip->irq.domain, n);
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001717 }
1718 chained_irq_exit(chip, desc);
1719 /* now it may re-trigger */
1720}
1721
Pramod Gurav834e1672014-09-09 15:50:37 +05301722static int at91_gpio_of_irq_setup(struct platform_device *pdev,
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001723 struct at91_gpio_chip *at91_gpio)
1724{
Jean-Christophe PLAGNIOL-VILLARDa0b957f2015-01-16 16:31:05 +01001725 struct gpio_chip *gpiochip_prev = NULL;
Alexander Steincccb0c32014-04-24 19:55:39 +02001726 struct at91_gpio_chip *prev = NULL;
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001727 struct irq_data *d = irq_get_irq_data(at91_gpio->pioc_virq);
Ludovic Desroches0c3dfa12018-09-13 14:42:13 +02001728 struct irq_chip *gpio_irqchip;
Linus Walleij35dea5d2019-10-01 15:06:45 +02001729 struct gpio_irq_chip *girq;
1730 int i;
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001731
Linus Walleij35dea5d2019-10-01 15:06:45 +02001732 gpio_irqchip = devm_kzalloc(&pdev->dev, sizeof(*gpio_irqchip),
1733 GFP_KERNEL);
Ludovic Desroches0c3dfa12018-09-13 14:42:13 +02001734 if (!gpio_irqchip)
1735 return -ENOMEM;
1736
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001737 at91_gpio->pioc_hwirq = irqd_to_hwirq(d);
1738
Ludovic Desroches0c3dfa12018-09-13 14:42:13 +02001739 gpio_irqchip->name = "GPIO";
1740 gpio_irqchip->irq_ack = gpio_irq_ack;
1741 gpio_irqchip->irq_disable = gpio_irq_mask;
1742 gpio_irqchip->irq_mask = gpio_irq_mask;
1743 gpio_irqchip->irq_unmask = gpio_irq_unmask;
Zheng Yongjun46e5dbe2020-12-11 16:45:41 +08001744 gpio_irqchip->irq_set_wake = gpio_irq_set_wake;
Ludovic Desroches0c3dfa12018-09-13 14:42:13 +02001745 gpio_irqchip->irq_set_type = at91_gpio->ops->irq_type;
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001746
1747 /* Disable irqs of this PIO controller */
1748 writel_relaxed(~0, at91_gpio->regbase + PIO_IDR);
1749
Alexander Stein80cc3732014-04-15 22:09:41 +02001750 /*
1751 * Let the generic code handle this edge IRQ, the the chained
1752 * handler will perform the actual work of handling the parent
1753 * interrupt.
1754 */
Linus Walleij35dea5d2019-10-01 15:06:45 +02001755 girq = &at91_gpio->chip.irq;
1756 girq->chip = gpio_irqchip;
1757 girq->default_type = IRQ_TYPE_NONE;
1758 girq->handler = handle_edge_irq;
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001759
Linus Walleij35dea5d2019-10-01 15:06:45 +02001760 /*
1761 * The top level handler handles one bank of GPIOs, except
Alexander Steincccb0c32014-04-24 19:55:39 +02001762 * on some SoC it can handle up to three...
1763 * We only set up the handler for the first of the list.
1764 */
Jean-Christophe PLAGNIOL-VILLARDa0b957f2015-01-16 16:31:05 +01001765 gpiochip_prev = irq_get_handler_data(at91_gpio->pioc_virq);
1766 if (!gpiochip_prev) {
Linus Walleij35dea5d2019-10-01 15:06:45 +02001767 girq->parent_handler = gpio_irq_handler;
1768 girq->num_parents = 1;
1769 girq->parents = devm_kcalloc(&pdev->dev, 1,
1770 sizeof(*girq->parents),
1771 GFP_KERNEL);
1772 if (!girq->parents)
1773 return -ENOMEM;
1774 girq->parents[0] = at91_gpio->pioc_virq;
Alexander Steincccb0c32014-04-24 19:55:39 +02001775 return 0;
Jean-Christophe PLAGNIOL-VILLARDa0b957f2015-01-16 16:31:05 +01001776 }
Alexander Steincccb0c32014-04-24 19:55:39 +02001777
Linus Walleij370ea612015-12-08 09:27:45 +01001778 prev = gpiochip_get_data(gpiochip_prev);
Jean-Christophe PLAGNIOL-VILLARDa0b957f2015-01-16 16:31:05 +01001779 /* we can only have 2 banks before */
1780 for (i = 0; i < 2; i++) {
1781 if (prev->next) {
1782 prev = prev->next;
1783 } else {
1784 prev->next = at91_gpio;
1785 return 0;
1786 }
1787 }
1788
1789 return -EINVAL;
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001790}
1791
1792/* This structure is replicated for each GPIO block allocated at probe time */
Alexander Stein234b6512016-04-29 14:50:02 +02001793static const struct gpio_chip at91_gpio_template = {
Jonas Gorski98c85d52015-10-11 17:34:19 +02001794 .request = gpiochip_generic_request,
1795 .free = gpiochip_generic_free,
Richard Genoud8af584b2014-02-17 17:57:26 +01001796 .get_direction = at91_gpio_get_direction,
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001797 .direction_input = at91_gpio_direction_input,
1798 .get = at91_gpio_get,
1799 .direction_output = at91_gpio_direction_output,
1800 .set = at91_gpio_set,
Alexander Stein1893b2c2015-04-02 11:55:49 +02001801 .set_multiple = at91_gpio_set_multiple,
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001802 .dbg_show = at91_gpio_dbg_show,
Linus Walleij9fb1f392013-12-04 14:42:46 +01001803 .can_sleep = false,
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001804 .ngpio = MAX_NB_GPIO_PER_BANK,
1805};
1806
Fabian Frederickbaa9946e2015-03-16 20:59:09 +01001807static const struct of_device_id at91_gpio_of_match[] = {
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001808 { .compatible = "atmel,at91sam9x5-gpio", .data = &at91sam9x5_ops, },
1809 { .compatible = "atmel,at91rm9200-gpio", .data = &at91rm9200_ops },
Claudiu Bezneaa2fcb1c2019-02-07 09:24:53 +00001810 { .compatible = "microchip,sam9x60-gpio", .data = &sam9x60_ops },
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001811 { /* sentinel */ }
1812};
1813
Greg Kroah-Hartman150632b2012-12-21 13:10:23 -08001814static int at91_gpio_probe(struct platform_device *pdev)
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001815{
1816 struct device_node *np = pdev->dev.of_node;
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001817 struct at91_gpio_chip *at91_chip = NULL;
1818 struct gpio_chip *chip;
1819 struct pinctrl_gpio_range *range;
1820 int ret = 0;
Jean-Christophe PLAGNIOL-VILLARD32b01a32012-11-07 00:33:34 +08001821 int irq, i;
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001822 int alias_idx = of_alias_get_id(np, "gpio");
1823 uint32_t ngpio;
Jean-Christophe PLAGNIOL-VILLARD32b01a32012-11-07 00:33:34 +08001824 char **names;
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001825
1826 BUG_ON(alias_idx >= ARRAY_SIZE(gpio_chips));
1827 if (gpio_chips[alias_idx]) {
1828 ret = -EBUSY;
1829 goto err;
1830 }
1831
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001832 irq = platform_get_irq(pdev, 0);
1833 if (irq < 0) {
1834 ret = irq;
1835 goto err;
1836 }
1837
1838 at91_chip = devm_kzalloc(&pdev->dev, sizeof(*at91_chip), GFP_KERNEL);
1839 if (!at91_chip) {
1840 ret = -ENOMEM;
1841 goto err;
1842 }
1843
YueHaibing4b024222019-11-04 22:26:54 +08001844 at91_chip->regbase = devm_platform_ioremap_resource(pdev, 0);
Thierry Reding9e0c1fb2013-01-21 11:09:14 +01001845 if (IS_ERR(at91_chip->regbase)) {
1846 ret = PTR_ERR(at91_chip->regbase);
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001847 goto err;
1848 }
1849
Rikard Falkebornf56b2732021-05-12 20:01:40 +02001850 at91_chip->ops = (const struct at91_pinctrl_mux_ops *)
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001851 of_match_device(at91_gpio_of_match, &pdev->dev)->data;
1852 at91_chip->pioc_virq = irq;
1853 at91_chip->pioc_idx = alias_idx;
1854
Pramod Gurav02b837f2014-08-31 16:51:52 +05301855 at91_chip->clock = devm_clk_get(&pdev->dev, NULL);
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001856 if (IS_ERR(at91_chip->clock)) {
1857 dev_err(&pdev->dev, "failed to get clock, ignoring.\n");
Pramod Gurav70e41972014-09-09 15:50:36 +05301858 ret = PTR_ERR(at91_chip->clock);
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001859 goto err;
1860 }
1861
Alexander Stein7d3a3fe2016-04-29 14:50:03 +02001862 ret = clk_prepare_enable(at91_chip->clock);
Pramod Gurav70e41972014-09-09 15:50:36 +05301863 if (ret) {
Alexander Stein7d3a3fe2016-04-29 14:50:03 +02001864 dev_err(&pdev->dev, "failed to prepare and enable clock, ignoring.\n");
Pramod Gurav70e41972014-09-09 15:50:36 +05301865 goto clk_enable_err;
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001866 }
1867
1868 at91_chip->chip = at91_gpio_template;
1869
1870 chip = &at91_chip->chip;
1871 chip->of_node = np;
1872 chip->label = dev_name(&pdev->dev);
Linus Walleij58383c782015-11-04 09:56:26 +01001873 chip->parent = &pdev->dev;
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001874 chip->owner = THIS_MODULE;
1875 chip->base = alias_idx * MAX_NB_GPIO_PER_BANK;
1876
1877 if (!of_property_read_u32(np, "#gpio-lines", &ngpio)) {
1878 if (ngpio >= MAX_NB_GPIO_PER_BANK)
1879 pr_err("at91_gpio.%d, gpio-nb >= %d failback to %d\n",
1880 alias_idx, MAX_NB_GPIO_PER_BANK, MAX_NB_GPIO_PER_BANK);
1881 else
1882 chip->ngpio = ngpio;
1883 }
1884
Kees Cooka86854d2018-06-12 14:07:58 -07001885 names = devm_kcalloc(&pdev->dev, chip->ngpio, sizeof(char *),
Sachin Kamat3c936002013-03-15 10:07:03 +05301886 GFP_KERNEL);
Jean-Christophe PLAGNIOL-VILLARD32b01a32012-11-07 00:33:34 +08001887
1888 if (!names) {
1889 ret = -ENOMEM;
Pramod Gurav70e41972014-09-09 15:50:36 +05301890 goto clk_enable_err;
Jean-Christophe PLAGNIOL-VILLARD32b01a32012-11-07 00:33:34 +08001891 }
1892
1893 for (i = 0; i < chip->ngpio; i++)
1894 names[i] = kasprintf(GFP_KERNEL, "pio%c%d", alias_idx + 'A', i);
1895
Sachin Kamat3c936002013-03-15 10:07:03 +05301896 chip->names = (const char *const *)names;
Jean-Christophe PLAGNIOL-VILLARD32b01a32012-11-07 00:33:34 +08001897
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001898 range = &at91_chip->range;
1899 range->name = chip->label;
1900 range->id = alias_idx;
1901 range->pin_base = range->base = range->id * MAX_NB_GPIO_PER_BANK;
1902
1903 range->npins = chip->ngpio;
1904 range->gc = chip;
1905
Linus Walleij35dea5d2019-10-01 15:06:45 +02001906 ret = at91_gpio_of_irq_setup(pdev, at91_chip);
1907 if (ret)
1908 goto gpiochip_add_err;
1909
Linus Walleij370ea612015-12-08 09:27:45 +01001910 ret = gpiochip_add_data(chip, at91_chip);
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001911 if (ret)
Pramod Gurav70e41972014-09-09 15:50:36 +05301912 goto gpiochip_add_err;
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001913
1914 gpio_chips[alias_idx] = at91_chip;
1915 gpio_banks = max(gpio_banks, alias_idx + 1);
1916
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001917 dev_info(&pdev->dev, "at address %p\n", at91_chip->regbase);
1918
1919 return 0;
1920
Pramod Gurav70e41972014-09-09 15:50:36 +05301921gpiochip_add_err:
Pramod Gurav70e41972014-09-09 15:50:36 +05301922clk_enable_err:
Alexander Stein7d3a3fe2016-04-29 14:50:03 +02001923 clk_disable_unprepare(at91_chip->clock);
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001924err:
1925 dev_err(&pdev->dev, "Failure %i for GPIO %i\n", ret, alias_idx);
1926
1927 return ret;
1928}
1929
1930static struct platform_driver at91_gpio_driver = {
1931 .driver = {
1932 .name = "gpio-at91",
Sachin Kamat606fca92013-09-28 17:38:48 +05301933 .of_match_table = at91_gpio_of_match,
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001934 },
1935 .probe = at91_gpio_probe,
1936};
1937
1938static struct platform_driver at91_pinctrl_driver = {
1939 .driver = {
1940 .name = "pinctrl-at91",
Sachin Kamat606fca92013-09-28 17:38:48 +05301941 .of_match_table = at91_pinctrl_of_match,
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001942 },
1943 .probe = at91_pinctrl_probe,
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001944};
1945
Thierry Redingbab7f5a2015-12-02 17:31:55 +01001946static struct platform_driver * const drivers[] = {
1947 &at91_gpio_driver,
1948 &at91_pinctrl_driver,
1949};
1950
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001951static int __init at91_pinctrl_init(void)
1952{
Thierry Redingbab7f5a2015-12-02 17:31:55 +01001953 return platform_register_drivers(drivers, ARRAY_SIZE(drivers));
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001954}
1955arch_initcall(at91_pinctrl_init);