]> git.ipfire.org Git - people/arne_f/kernel.git/blame - drivers/pinctrl/pinctrl-at91.c
pinctrl: replace trivial implementations of gpio_chip request/free
[people/arne_f/kernel.git] / drivers / pinctrl / pinctrl-at91.c
CommitLineData
6732ae5c
JCPV
1/*
2 * at91 pinctrl driver based on at91 pinmux core
3 *
4 * Copyright (C) 2011-2012 Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5 *
6 * Under GPLv2 only
7 */
8
9#include <linux/clk.h>
10#include <linux/err.h>
11#include <linux/init.h>
12#include <linux/module.h>
13#include <linux/of.h>
14#include <linux/of_device.h>
15#include <linux/of_address.h>
16#include <linux/of_irq.h>
17#include <linux/slab.h>
18#include <linux/interrupt.h>
6732ae5c
JCPV
19#include <linux/io.h>
20#include <linux/gpio.h>
6732ae5c
JCPV
21#include <linux/pinctrl/machine.h>
22#include <linux/pinctrl/pinconf.h>
23#include <linux/pinctrl/pinctrl.h>
24#include <linux/pinctrl/pinmux.h>
25/* Since we request GPIOs from ourself */
26#include <linux/pinctrl/consumer.h>
27
c654b6bf 28#include "pinctrl-at91.h"
6732ae5c
JCPV
29#include "core.h"
30
94daf85e 31#define MAX_GPIO_BANKS 5
6732ae5c
JCPV
32#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 */
6732ae5c
JCPV
45 struct at91_pinctrl_mux_ops *ops; /* ops */
46};
47
48#define to_at91_gpio_chip(c) container_of(c, struct at91_gpio_chip, chip)
49
50static struct at91_gpio_chip *gpio_chips[MAX_GPIO_BANKS];
51
52static int gpio_banks;
53
525fae21 54#define PULL_UP (1 << 0)
6732ae5c 55#define MULTI_DRIVE (1 << 1)
7ebd7a3a
JCPV
56#define DEGLITCH (1 << 2)
57#define PULL_DOWN (1 << 3)
58#define DIS_SCHMIT (1 << 4)
4334ac2d
MR
59#define DRIVE_STRENGTH_SHIFT 5
60#define DRIVE_STRENGTH_MASK 0x3
61#define DRIVE_STRENGTH (DRIVE_STRENGTH_MASK << DRIVE_STRENGTH_SHIFT)
7ebd7a3a
JCPV
62#define DEBOUNCE (1 << 16)
63#define DEBOUNCE_VAL_SHIFT 17
64#define DEBOUNCE_VAL (0x3fff << DEBOUNCE_VAL_SHIFT)
6732ae5c 65
4334ac2d
MR
66/**
67 * These defines will translated the dt binding settings to our internal
68 * settings. They are not necessarily the same value as the register setting.
69 * The actual drive strength current of low, medium and high must be looked up
70 * from the corresponding device datasheet. This value is different for pins
71 * that are even in the same banks. It is also dependent on VCC.
72 * DRIVE_STRENGTH_DEFAULT is just a placeholder to avoid changing the drive
73 * strength when there is no dt config for it.
74 */
75#define DRIVE_STRENGTH_DEFAULT (0 << DRIVE_STRENGTH_SHIFT)
76#define DRIVE_STRENGTH_LOW (1 << DRIVE_STRENGTH_SHIFT)
77#define DRIVE_STRENGTH_MED (2 << DRIVE_STRENGTH_SHIFT)
78#define DRIVE_STRENGTH_HI (3 << DRIVE_STRENGTH_SHIFT)
79
6732ae5c
JCPV
80/**
81 * struct at91_pmx_func - describes AT91 pinmux functions
82 * @name: the name of this specific function
83 * @groups: corresponding pin groups
84 * @ngroups: the number of groups
85 */
86struct at91_pmx_func {
87 const char *name;
88 const char **groups;
89 unsigned ngroups;
90};
91
92enum at91_mux {
93 AT91_MUX_GPIO = 0,
94 AT91_MUX_PERIPH_A = 1,
95 AT91_MUX_PERIPH_B = 2,
96 AT91_MUX_PERIPH_C = 3,
97 AT91_MUX_PERIPH_D = 4,
98};
99
100/**
101 * struct at91_pmx_pin - describes an At91 pin mux
102 * @bank: the bank of the pin
103 * @pin: the pin number in the @bank
104 * @mux: the mux mode : gpio or periph_x of the pin i.e. alternate function.
105 * @conf: the configuration of the pin: PULL_UP, MULTIDRIVE etc...
106 */
107struct at91_pmx_pin {
108 uint32_t bank;
109 uint32_t pin;
110 enum at91_mux mux;
111 unsigned long conf;
112};
113
114/**
115 * struct at91_pin_group - describes an At91 pin group
116 * @name: the name of this specific pin group
117 * @pins_conf: the mux mode for each pin in this group. The size of this
118 * array is the same as pins.
119 * @pins: an array of discrete physical pins used in this group, taken
120 * from the driver-local pin enumeration space
121 * @npins: the number of pins in this group array, i.e. the number of
122 * elements in .pins so we can iterate over that array
123 */
124struct at91_pin_group {
125 const char *name;
126 struct at91_pmx_pin *pins_conf;
127 unsigned int *pins;
128 unsigned npins;
129};
130
131/**
c2eb9e7f 132 * struct at91_pinctrl_mux_ops - describes an AT91 mux ops group
6732ae5c
JCPV
133 * on new IP with support for periph C and D the way to mux in
134 * periph A and B has changed
135 * So provide the right call back
136 * if not present means the IP does not support it
137 * @get_periph: return the periph mode configured
138 * @mux_A_periph: mux as periph A
139 * @mux_B_periph: mux as periph B
140 * @mux_C_periph: mux as periph C
141 * @mux_D_periph: mux as periph D
7ebd7a3a
JCPV
142 * @get_deglitch: get deglitch status
143 * @set_deglitch: enable/disable deglitch
144 * @get_debounce: get debounce status
145 * @set_debounce: enable/disable debounce
146 * @get_pulldown: get pulldown status
147 * @set_pulldown: enable/disable pulldown
148 * @get_schmitt_trig: get schmitt trigger status
149 * @disable_schmitt_trig: disable schmitt trigger
6732ae5c
JCPV
150 * @irq_type: return irq type
151 */
152struct at91_pinctrl_mux_ops {
153 enum at91_mux (*get_periph)(void __iomem *pio, unsigned mask);
154 void (*mux_A_periph)(void __iomem *pio, unsigned mask);
155 void (*mux_B_periph)(void __iomem *pio, unsigned mask);
156 void (*mux_C_periph)(void __iomem *pio, unsigned mask);
157 void (*mux_D_periph)(void __iomem *pio, unsigned mask);
7ebd7a3a 158 bool (*get_deglitch)(void __iomem *pio, unsigned pin);
77966ad7 159 void (*set_deglitch)(void __iomem *pio, unsigned mask, bool is_on);
7ebd7a3a 160 bool (*get_debounce)(void __iomem *pio, unsigned pin, u32 *div);
77966ad7 161 void (*set_debounce)(void __iomem *pio, unsigned mask, bool is_on, u32 div);
7ebd7a3a 162 bool (*get_pulldown)(void __iomem *pio, unsigned pin);
77966ad7 163 void (*set_pulldown)(void __iomem *pio, unsigned mask, bool is_on);
7ebd7a3a
JCPV
164 bool (*get_schmitt_trig)(void __iomem *pio, unsigned pin);
165 void (*disable_schmitt_trig)(void __iomem *pio, unsigned mask);
4334ac2d
MR
166 unsigned (*get_drivestrength)(void __iomem *pio, unsigned pin);
167 void (*set_drivestrength)(void __iomem *pio, unsigned pin,
168 u32 strength);
6732ae5c
JCPV
169 /* irq */
170 int (*irq_type)(struct irq_data *d, unsigned type);
171};
172
173static int gpio_irq_type(struct irq_data *d, unsigned type);
174static int alt_gpio_irq_type(struct irq_data *d, unsigned type);
175
176struct at91_pinctrl {
177 struct device *dev;
178 struct pinctrl_dev *pctl;
179
a0b957f3 180 int nactive_banks;
6732ae5c
JCPV
181
182 uint32_t *mux_mask;
183 int nmux;
184
185 struct at91_pmx_func *functions;
186 int nfunctions;
187
188 struct at91_pin_group *groups;
189 int ngroups;
190
191 struct at91_pinctrl_mux_ops *ops;
192};
193
194static const inline struct at91_pin_group *at91_pinctrl_find_group_by_name(
195 const struct at91_pinctrl *info,
196 const char *name)
197{
198 const struct at91_pin_group *grp = NULL;
199 int i;
200
201 for (i = 0; i < info->ngroups; i++) {
202 if (strcmp(info->groups[i].name, name))
203 continue;
204
205 grp = &info->groups[i];
206 dev_dbg(info->dev, "%s: %d 0:%d\n", name, grp->npins, grp->pins[0]);
207 break;
208 }
209
210 return grp;
211}
212
213static int at91_get_groups_count(struct pinctrl_dev *pctldev)
214{
215 struct at91_pinctrl *info = pinctrl_dev_get_drvdata(pctldev);
216
217 return info->ngroups;
218}
219
220static const char *at91_get_group_name(struct pinctrl_dev *pctldev,
221 unsigned selector)
222{
223 struct at91_pinctrl *info = pinctrl_dev_get_drvdata(pctldev);
224
225 return info->groups[selector].name;
226}
227
228static int at91_get_group_pins(struct pinctrl_dev *pctldev, unsigned selector,
229 const unsigned **pins,
230 unsigned *npins)
231{
232 struct at91_pinctrl *info = pinctrl_dev_get_drvdata(pctldev);
233
234 if (selector >= info->ngroups)
235 return -EINVAL;
236
237 *pins = info->groups[selector].pins;
238 *npins = info->groups[selector].npins;
239
240 return 0;
241}
242
243static void at91_pin_dbg_show(struct pinctrl_dev *pctldev, struct seq_file *s,
244 unsigned offset)
245{
246 seq_printf(s, "%s", dev_name(pctldev->dev));
247}
248
249static int at91_dt_node_to_map(struct pinctrl_dev *pctldev,
250 struct device_node *np,
251 struct pinctrl_map **map, unsigned *num_maps)
252{
253 struct at91_pinctrl *info = pinctrl_dev_get_drvdata(pctldev);
254 const struct at91_pin_group *grp;
255 struct pinctrl_map *new_map;
256 struct device_node *parent;
257 int map_num = 1;
258 int i;
6732ae5c
JCPV
259
260 /*
61e310a1 261 * first find the group of this node and check if we need to create
6732ae5c
JCPV
262 * config maps for pins
263 */
264 grp = at91_pinctrl_find_group_by_name(info, np->name);
265 if (!grp) {
266 dev_err(info->dev, "unable to find group for node %s\n",
267 np->name);
268 return -EINVAL;
269 }
270
271 map_num += grp->npins;
272 new_map = devm_kzalloc(pctldev->dev, sizeof(*new_map) * map_num, GFP_KERNEL);
273 if (!new_map)
274 return -ENOMEM;
275
276 *map = new_map;
277 *num_maps = map_num;
278
279 /* create mux map */
280 parent = of_get_parent(np);
281 if (!parent) {
c62b2b34 282 devm_kfree(pctldev->dev, new_map);
6732ae5c
JCPV
283 return -EINVAL;
284 }
285 new_map[0].type = PIN_MAP_TYPE_MUX_GROUP;
286 new_map[0].data.mux.function = parent->name;
287 new_map[0].data.mux.group = np->name;
288 of_node_put(parent);
289
290 /* create config map */
291 new_map++;
292 for (i = 0; i < grp->npins; i++) {
6732ae5c
JCPV
293 new_map[i].type = PIN_MAP_TYPE_CONFIGS_PIN;
294 new_map[i].data.configs.group_or_pin =
295 pin_get_name(pctldev, grp->pins[i]);
296 new_map[i].data.configs.configs = &grp->pins_conf[i].conf;
297 new_map[i].data.configs.num_configs = 1;
298 }
299
300 dev_dbg(pctldev->dev, "maps: function %s group %s num %d\n",
301 (*map)->data.mux.function, (*map)->data.mux.group, map_num);
302
303 return 0;
304}
305
306static void at91_dt_free_map(struct pinctrl_dev *pctldev,
307 struct pinctrl_map *map, unsigned num_maps)
308{
309}
310
022ab148 311static const struct pinctrl_ops at91_pctrl_ops = {
6732ae5c
JCPV
312 .get_groups_count = at91_get_groups_count,
313 .get_group_name = at91_get_group_name,
314 .get_group_pins = at91_get_group_pins,
315 .pin_dbg_show = at91_pin_dbg_show,
316 .dt_node_to_map = at91_dt_node_to_map,
317 .dt_free_map = at91_dt_free_map,
318};
319
3c93600d 320static void __iomem *pin_to_controller(struct at91_pinctrl *info,
6732ae5c
JCPV
321 unsigned int bank)
322{
1ab36387
DD
323 if (!gpio_chips[bank])
324 return NULL;
325
6732ae5c
JCPV
326 return gpio_chips[bank]->regbase;
327}
328
329static inline int pin_to_bank(unsigned pin)
330{
331 return pin /= MAX_NB_GPIO_PER_BANK;
332}
333
334static unsigned pin_to_mask(unsigned int pin)
335{
336 return 1 << pin;
337}
338
4334ac2d
MR
339static unsigned two_bit_pin_value_shift_amount(unsigned int pin)
340{
341 /* return the shift value for a pin for "two bit" per pin registers,
342 * i.e. drive strength */
343 return 2*((pin >= MAX_NB_GPIO_PER_BANK/2)
344 ? pin - MAX_NB_GPIO_PER_BANK/2 : pin);
345}
346
347static unsigned sama5d3_get_drive_register(unsigned int pin)
348{
349 /* drive strength is split between two registers
350 * with two bits per pin */
351 return (pin >= MAX_NB_GPIO_PER_BANK/2)
352 ? SAMA5D3_PIO_DRIVER2 : SAMA5D3_PIO_DRIVER1;
353}
354
355static unsigned at91sam9x5_get_drive_register(unsigned int pin)
356{
357 /* drive strength is split between two registers
358 * with two bits per pin */
359 return (pin >= MAX_NB_GPIO_PER_BANK/2)
360 ? AT91SAM9X5_PIO_DRIVER2 : AT91SAM9X5_PIO_DRIVER1;
361}
362
6732ae5c
JCPV
363static void at91_mux_disable_interrupt(void __iomem *pio, unsigned mask)
364{
365 writel_relaxed(mask, pio + PIO_IDR);
366}
367
368static unsigned at91_mux_get_pullup(void __iomem *pio, unsigned pin)
369{
05d3534a 370 return !((readl_relaxed(pio + PIO_PUSR) >> pin) & 0x1);
6732ae5c
JCPV
371}
372
373static void at91_mux_set_pullup(void __iomem *pio, unsigned mask, bool on)
374{
3d784273
WY
375 if (on)
376 writel_relaxed(mask, pio + PIO_PPDDR);
377
6732ae5c
JCPV
378 writel_relaxed(mask, pio + (on ? PIO_PUER : PIO_PUDR));
379}
380
381static unsigned at91_mux_get_multidrive(void __iomem *pio, unsigned pin)
382{
383 return (readl_relaxed(pio + PIO_MDSR) >> pin) & 0x1;
384}
385
386static void at91_mux_set_multidrive(void __iomem *pio, unsigned mask, bool on)
387{
388 writel_relaxed(mask, pio + (on ? PIO_MDER : PIO_MDDR));
389}
390
391static void at91_mux_set_A_periph(void __iomem *pio, unsigned mask)
392{
393 writel_relaxed(mask, pio + PIO_ASR);
394}
395
396static void at91_mux_set_B_periph(void __iomem *pio, unsigned mask)
397{
398 writel_relaxed(mask, pio + PIO_BSR);
399}
400
401static void at91_mux_pio3_set_A_periph(void __iomem *pio, unsigned mask)
402{
403
404 writel_relaxed(readl_relaxed(pio + PIO_ABCDSR1) & ~mask,
405 pio + PIO_ABCDSR1);
406 writel_relaxed(readl_relaxed(pio + PIO_ABCDSR2) & ~mask,
407 pio + PIO_ABCDSR2);
408}
409
410static void at91_mux_pio3_set_B_periph(void __iomem *pio, unsigned mask)
411{
412 writel_relaxed(readl_relaxed(pio + PIO_ABCDSR1) | mask,
413 pio + PIO_ABCDSR1);
414 writel_relaxed(readl_relaxed(pio + PIO_ABCDSR2) & ~mask,
415 pio + PIO_ABCDSR2);
416}
417
418static void at91_mux_pio3_set_C_periph(void __iomem *pio, unsigned mask)
419{
420 writel_relaxed(readl_relaxed(pio + PIO_ABCDSR1) & ~mask, pio + PIO_ABCDSR1);
421 writel_relaxed(readl_relaxed(pio + PIO_ABCDSR2) | mask, pio + PIO_ABCDSR2);
422}
423
424static void at91_mux_pio3_set_D_periph(void __iomem *pio, unsigned mask)
425{
426 writel_relaxed(readl_relaxed(pio + PIO_ABCDSR1) | mask, pio + PIO_ABCDSR1);
427 writel_relaxed(readl_relaxed(pio + PIO_ABCDSR2) | mask, pio + PIO_ABCDSR2);
428}
429
430static enum at91_mux at91_mux_pio3_get_periph(void __iomem *pio, unsigned mask)
431{
432 unsigned select;
433
434 if (readl_relaxed(pio + PIO_PSR) & mask)
435 return AT91_MUX_GPIO;
436
437 select = !!(readl_relaxed(pio + PIO_ABCDSR1) & mask);
438 select |= (!!(readl_relaxed(pio + PIO_ABCDSR2) & mask) << 1);
439
440 return select + 1;
441}
442
443static enum at91_mux at91_mux_get_periph(void __iomem *pio, unsigned mask)
444{
445 unsigned select;
446
447 if (readl_relaxed(pio + PIO_PSR) & mask)
448 return AT91_MUX_GPIO;
449
450 select = readl_relaxed(pio + PIO_ABSR) & mask;
451
452 return select + 1;
453}
454
7ebd7a3a
JCPV
455static bool at91_mux_get_deglitch(void __iomem *pio, unsigned pin)
456{
d480239b 457 return (readl_relaxed(pio + PIO_IFSR) >> pin) & 0x1;
7ebd7a3a
JCPV
458}
459
460static void at91_mux_set_deglitch(void __iomem *pio, unsigned mask, bool is_on)
461{
d480239b 462 writel_relaxed(mask, pio + (is_on ? PIO_IFER : PIO_IFDR));
7ebd7a3a
JCPV
463}
464
c8dba02e
BB
465static bool at91_mux_pio3_get_deglitch(void __iomem *pio, unsigned pin)
466{
d480239b
BD
467 if ((readl_relaxed(pio + PIO_IFSR) >> pin) & 0x1)
468 return !((readl_relaxed(pio + PIO_IFSCSR) >> pin) & 0x1);
c8dba02e
BB
469
470 return false;
471}
472
7ebd7a3a
JCPV
473static void at91_mux_pio3_set_deglitch(void __iomem *pio, unsigned mask, bool is_on)
474{
475 if (is_on)
d480239b 476 writel_relaxed(mask, pio + PIO_IFSCDR);
7ebd7a3a
JCPV
477 at91_mux_set_deglitch(pio, mask, is_on);
478}
479
480static bool at91_mux_pio3_get_debounce(void __iomem *pio, unsigned pin, u32 *div)
481{
d480239b 482 *div = readl_relaxed(pio + PIO_SCDR);
7ebd7a3a 483
d480239b
BD
484 return ((readl_relaxed(pio + PIO_IFSR) >> pin) & 0x1) &&
485 ((readl_relaxed(pio + PIO_IFSCSR) >> pin) & 0x1);
7ebd7a3a
JCPV
486}
487
488static void at91_mux_pio3_set_debounce(void __iomem *pio, unsigned mask,
489 bool is_on, u32 div)
490{
491 if (is_on) {
d480239b
BD
492 writel_relaxed(mask, pio + PIO_IFSCER);
493 writel_relaxed(div & PIO_SCDR_DIV, pio + PIO_SCDR);
494 writel_relaxed(mask, pio + PIO_IFER);
c8dba02e 495 } else
d480239b 496 writel_relaxed(mask, pio + PIO_IFSCDR);
7ebd7a3a
JCPV
497}
498
499static bool at91_mux_pio3_get_pulldown(void __iomem *pio, unsigned pin)
500{
d480239b 501 return !((readl_relaxed(pio + PIO_PPDSR) >> pin) & 0x1);
7ebd7a3a
JCPV
502}
503
504static void at91_mux_pio3_set_pulldown(void __iomem *pio, unsigned mask, bool is_on)
505{
3d784273 506 if (is_on)
d480239b 507 writel_relaxed(mask, pio + PIO_PUDR);
3d784273 508
d480239b 509 writel_relaxed(mask, pio + (is_on ? PIO_PPDER : PIO_PPDDR));
7ebd7a3a
JCPV
510}
511
512static void at91_mux_pio3_disable_schmitt_trig(void __iomem *pio, unsigned mask)
513{
d480239b 514 writel_relaxed(readl_relaxed(pio + PIO_SCHMITT) | mask, pio + PIO_SCHMITT);
7ebd7a3a
JCPV
515}
516
517static bool at91_mux_pio3_get_schmitt_trig(void __iomem *pio, unsigned pin)
518{
d480239b 519 return (readl_relaxed(pio + PIO_SCHMITT) >> pin) & 0x1;
7ebd7a3a
JCPV
520}
521
4334ac2d
MR
522static inline u32 read_drive_strength(void __iomem *reg, unsigned pin)
523{
d480239b 524 unsigned tmp = readl_relaxed(reg);
4334ac2d
MR
525
526 tmp = tmp >> two_bit_pin_value_shift_amount(pin);
527
528 return tmp & DRIVE_STRENGTH_MASK;
529}
530
531static unsigned at91_mux_sama5d3_get_drivestrength(void __iomem *pio,
532 unsigned pin)
533{
534 unsigned tmp = read_drive_strength(pio +
535 sama5d3_get_drive_register(pin), pin);
536
537 /* SAMA5 strength is 1:1 with our defines,
538 * except 0 is equivalent to low per datasheet */
539 if (!tmp)
540 tmp = DRIVE_STRENGTH_LOW;
541
542 return tmp;
543}
544
545static unsigned at91_mux_sam9x5_get_drivestrength(void __iomem *pio,
546 unsigned pin)
547{
548 unsigned tmp = read_drive_strength(pio +
549 at91sam9x5_get_drive_register(pin), pin);
550
551 /* strength is inverse in SAM9x5s hardware with the pinctrl defines
552 * hardware: 0 = hi, 1 = med, 2 = low, 3 = rsvd */
553 tmp = DRIVE_STRENGTH_HI - tmp;
554
555 return tmp;
556}
557
558static void set_drive_strength(void __iomem *reg, unsigned pin, u32 strength)
559{
d480239b 560 unsigned tmp = readl_relaxed(reg);
4334ac2d
MR
561 unsigned shift = two_bit_pin_value_shift_amount(pin);
562
563 tmp &= ~(DRIVE_STRENGTH_MASK << shift);
564 tmp |= strength << shift;
565
d480239b 566 writel_relaxed(tmp, reg);
4334ac2d
MR
567}
568
569static void at91_mux_sama5d3_set_drivestrength(void __iomem *pio, unsigned pin,
570 u32 setting)
571{
572 /* do nothing if setting is zero */
573 if (!setting)
574 return;
575
576 /* strength is 1 to 1 with setting for SAMA5 */
577 set_drive_strength(pio + sama5d3_get_drive_register(pin), pin, setting);
578}
579
580static void at91_mux_sam9x5_set_drivestrength(void __iomem *pio, unsigned pin,
581 u32 setting)
582{
583 /* do nothing if setting is zero */
584 if (!setting)
585 return;
586
587 /* strength is inverse on SAM9x5s with our defines
588 * 0 = hi, 1 = med, 2 = low, 3 = rsvd */
589 setting = DRIVE_STRENGTH_HI - setting;
590
591 set_drive_strength(pio + at91sam9x5_get_drive_register(pin), pin,
592 setting);
593}
594
6732ae5c
JCPV
595static struct at91_pinctrl_mux_ops at91rm9200_ops = {
596 .get_periph = at91_mux_get_periph,
597 .mux_A_periph = at91_mux_set_A_periph,
598 .mux_B_periph = at91_mux_set_B_periph,
7ebd7a3a
JCPV
599 .get_deglitch = at91_mux_get_deglitch,
600 .set_deglitch = at91_mux_set_deglitch,
6732ae5c
JCPV
601 .irq_type = gpio_irq_type,
602};
603
604static struct at91_pinctrl_mux_ops at91sam9x5_ops = {
605 .get_periph = at91_mux_pio3_get_periph,
606 .mux_A_periph = at91_mux_pio3_set_A_periph,
607 .mux_B_periph = at91_mux_pio3_set_B_periph,
608 .mux_C_periph = at91_mux_pio3_set_C_periph,
609 .mux_D_periph = at91_mux_pio3_set_D_periph,
c8dba02e 610 .get_deglitch = at91_mux_pio3_get_deglitch,
7ebd7a3a
JCPV
611 .set_deglitch = at91_mux_pio3_set_deglitch,
612 .get_debounce = at91_mux_pio3_get_debounce,
613 .set_debounce = at91_mux_pio3_set_debounce,
614 .get_pulldown = at91_mux_pio3_get_pulldown,
615 .set_pulldown = at91_mux_pio3_set_pulldown,
616 .get_schmitt_trig = at91_mux_pio3_get_schmitt_trig,
617 .disable_schmitt_trig = at91_mux_pio3_disable_schmitt_trig,
4334ac2d
MR
618 .get_drivestrength = at91_mux_sam9x5_get_drivestrength,
619 .set_drivestrength = at91_mux_sam9x5_set_drivestrength,
620 .irq_type = alt_gpio_irq_type,
621};
622
623static struct at91_pinctrl_mux_ops sama5d3_ops = {
624 .get_periph = at91_mux_pio3_get_periph,
625 .mux_A_periph = at91_mux_pio3_set_A_periph,
626 .mux_B_periph = at91_mux_pio3_set_B_periph,
627 .mux_C_periph = at91_mux_pio3_set_C_periph,
628 .mux_D_periph = at91_mux_pio3_set_D_periph,
629 .get_deglitch = at91_mux_pio3_get_deglitch,
630 .set_deglitch = at91_mux_pio3_set_deglitch,
631 .get_debounce = at91_mux_pio3_get_debounce,
632 .set_debounce = at91_mux_pio3_set_debounce,
633 .get_pulldown = at91_mux_pio3_get_pulldown,
634 .set_pulldown = at91_mux_pio3_set_pulldown,
635 .get_schmitt_trig = at91_mux_pio3_get_schmitt_trig,
636 .disable_schmitt_trig = at91_mux_pio3_disable_schmitt_trig,
637 .get_drivestrength = at91_mux_sama5d3_get_drivestrength,
638 .set_drivestrength = at91_mux_sama5d3_set_drivestrength,
6732ae5c
JCPV
639 .irq_type = alt_gpio_irq_type,
640};
641
642static void at91_pin_dbg(const struct device *dev, const struct at91_pmx_pin *pin)
643{
644 if (pin->mux) {
4b6fe45a 645 dev_dbg(dev, "pio%c%d configured as periph%c with conf = 0x%lx\n",
6732ae5c
JCPV
646 pin->bank + 'A', pin->pin, pin->mux - 1 + 'A', pin->conf);
647 } else {
4b6fe45a 648 dev_dbg(dev, "pio%c%d configured as gpio with conf = 0x%lx\n",
6732ae5c
JCPV
649 pin->bank + 'A', pin->pin, pin->conf);
650 }
651}
652
3c93600d 653static int pin_check_config(struct at91_pinctrl *info, const char *name,
6732ae5c
JCPV
654 int index, const struct at91_pmx_pin *pin)
655{
656 int mux;
657
658 /* check if it's a valid config */
a0b957f3 659 if (pin->bank >= gpio_banks) {
6732ae5c 660 dev_err(info->dev, "%s: pin conf %d bank_id %d >= nbanks %d\n",
a0b957f3 661 name, index, pin->bank, gpio_banks);
6732ae5c
JCPV
662 return -EINVAL;
663 }
664
a0b957f3
JCPV
665 if (!gpio_chips[pin->bank]) {
666 dev_err(info->dev, "%s: pin conf %d bank_id %d not enabled\n",
667 name, index, pin->bank);
668 return -ENXIO;
669 }
670
6732ae5c
JCPV
671 if (pin->pin >= MAX_NB_GPIO_PER_BANK) {
672 dev_err(info->dev, "%s: pin conf %d pin_bank_id %d >= %d\n",
673 name, index, pin->pin, MAX_NB_GPIO_PER_BANK);
674 return -EINVAL;
675 }
676
677 if (!pin->mux)
678 return 0;
679
680 mux = pin->mux - 1;
681
682 if (mux >= info->nmux) {
683 dev_err(info->dev, "%s: pin conf %d mux_id %d >= nmux %d\n",
684 name, index, mux, info->nmux);
685 return -EINVAL;
686 }
687
688 if (!(info->mux_mask[pin->bank * info->nmux + mux] & 1 << pin->pin)) {
689 dev_err(info->dev, "%s: pin conf %d mux_id %d not supported for pio%c%d\n",
690 name, index, mux, pin->bank + 'A', pin->pin);
691 return -EINVAL;
692 }
693
694 return 0;
695}
696
697static void at91_mux_gpio_disable(void __iomem *pio, unsigned mask)
698{
699 writel_relaxed(mask, pio + PIO_PDR);
700}
701
702static void at91_mux_gpio_enable(void __iomem *pio, unsigned mask, bool input)
703{
704 writel_relaxed(mask, pio + PIO_PER);
705 writel_relaxed(mask, pio + (input ? PIO_ODR : PIO_OER));
706}
707
03e9f0ca
LW
708static int at91_pmx_set(struct pinctrl_dev *pctldev, unsigned selector,
709 unsigned group)
6732ae5c
JCPV
710{
711 struct at91_pinctrl *info = pinctrl_dev_get_drvdata(pctldev);
712 const struct at91_pmx_pin *pins_conf = info->groups[group].pins_conf;
713 const struct at91_pmx_pin *pin;
714 uint32_t npins = info->groups[group].npins;
715 int i, ret;
716 unsigned mask;
717 void __iomem *pio;
718
719 dev_dbg(info->dev, "enable function %s group %s\n",
720 info->functions[selector].name, info->groups[group].name);
721
722 /* first check that all the pins of the group are valid with a valid
61e310a1 723 * parameter */
6732ae5c
JCPV
724 for (i = 0; i < npins; i++) {
725 pin = &pins_conf[i];
726 ret = pin_check_config(info, info->groups[group].name, i, pin);
727 if (ret)
728 return ret;
729 }
730
731 for (i = 0; i < npins; i++) {
732 pin = &pins_conf[i];
733 at91_pin_dbg(info->dev, pin);
734 pio = pin_to_controller(info, pin->bank);
1ab36387
DD
735
736 if (!pio)
737 continue;
738
6732ae5c
JCPV
739 mask = pin_to_mask(pin->pin);
740 at91_mux_disable_interrupt(pio, mask);
3c93600d 741 switch (pin->mux) {
6732ae5c
JCPV
742 case AT91_MUX_GPIO:
743 at91_mux_gpio_enable(pio, mask, 1);
744 break;
745 case AT91_MUX_PERIPH_A:
746 info->ops->mux_A_periph(pio, mask);
747 break;
748 case AT91_MUX_PERIPH_B:
749 info->ops->mux_B_periph(pio, mask);
750 break;
751 case AT91_MUX_PERIPH_C:
752 if (!info->ops->mux_C_periph)
753 return -EINVAL;
754 info->ops->mux_C_periph(pio, mask);
755 break;
756 case AT91_MUX_PERIPH_D:
757 if (!info->ops->mux_D_periph)
758 return -EINVAL;
759 info->ops->mux_D_periph(pio, mask);
760 break;
761 }
762 if (pin->mux)
763 at91_mux_gpio_disable(pio, mask);
764 }
765
766 return 0;
767}
768
6732ae5c
JCPV
769static int at91_pmx_get_funcs_count(struct pinctrl_dev *pctldev)
770{
771 struct at91_pinctrl *info = pinctrl_dev_get_drvdata(pctldev);
772
773 return info->nfunctions;
774}
775
776static const char *at91_pmx_get_func_name(struct pinctrl_dev *pctldev,
777 unsigned selector)
778{
779 struct at91_pinctrl *info = pinctrl_dev_get_drvdata(pctldev);
780
781 return info->functions[selector].name;
782}
783
784static int at91_pmx_get_groups(struct pinctrl_dev *pctldev, unsigned selector,
785 const char * const **groups,
786 unsigned * const num_groups)
787{
788 struct at91_pinctrl *info = pinctrl_dev_get_drvdata(pctldev);
789
790 *groups = info->functions[selector].groups;
791 *num_groups = info->functions[selector].ngroups;
792
793 return 0;
794}
795
f6f94f66
AL
796static int at91_gpio_request_enable(struct pinctrl_dev *pctldev,
797 struct pinctrl_gpio_range *range,
798 unsigned offset)
6732ae5c
JCPV
799{
800 struct at91_pinctrl *npct = pinctrl_dev_get_drvdata(pctldev);
801 struct at91_gpio_chip *at91_chip;
802 struct gpio_chip *chip;
803 unsigned mask;
804
805 if (!range) {
806 dev_err(npct->dev, "invalid range\n");
807 return -EINVAL;
808 }
809 if (!range->gc) {
810 dev_err(npct->dev, "missing GPIO chip in range\n");
811 return -EINVAL;
812 }
813 chip = range->gc;
814 at91_chip = container_of(chip, struct at91_gpio_chip, chip);
815
816 dev_dbg(npct->dev, "enable pin %u as GPIO\n", offset);
817
818 mask = 1 << (offset - chip->base);
819
820 dev_dbg(npct->dev, "enable pin %u as PIO%c%d 0x%x\n",
821 offset, 'A' + range->id, offset - chip->base, mask);
822
823 writel_relaxed(mask, at91_chip->regbase + PIO_PER);
824
825 return 0;
826}
827
f6f94f66
AL
828static void at91_gpio_disable_free(struct pinctrl_dev *pctldev,
829 struct pinctrl_gpio_range *range,
830 unsigned offset)
6732ae5c
JCPV
831{
832 struct at91_pinctrl *npct = pinctrl_dev_get_drvdata(pctldev);
833
834 dev_dbg(npct->dev, "disable pin %u as GPIO\n", offset);
835 /* Set the pin to some default state, GPIO is usually default */
836}
837
022ab148 838static const struct pinmux_ops at91_pmx_ops = {
6732ae5c
JCPV
839 .get_functions_count = at91_pmx_get_funcs_count,
840 .get_function_name = at91_pmx_get_func_name,
841 .get_function_groups = at91_pmx_get_groups,
03e9f0ca 842 .set_mux = at91_pmx_set,
6732ae5c
JCPV
843 .gpio_request_enable = at91_gpio_request_enable,
844 .gpio_disable_free = at91_gpio_disable_free,
845};
846
847static int at91_pinconf_get(struct pinctrl_dev *pctldev,
848 unsigned pin_id, unsigned long *config)
849{
850 struct at91_pinctrl *info = pinctrl_dev_get_drvdata(pctldev);
851 void __iomem *pio;
852 unsigned pin;
7ebd7a3a 853 int div;
6732ae5c 854
1292e693
AB
855 *config = 0;
856 dev_dbg(info->dev, "%s:%d, pin_id=%d", __func__, __LINE__, pin_id);
6732ae5c 857 pio = pin_to_controller(info, pin_to_bank(pin_id));
1ab36387
DD
858
859 if (!pio)
860 return -EINVAL;
861
6732ae5c
JCPV
862 pin = pin_id % MAX_NB_GPIO_PER_BANK;
863
864 if (at91_mux_get_multidrive(pio, pin))
865 *config |= MULTI_DRIVE;
866
867 if (at91_mux_get_pullup(pio, pin))
868 *config |= PULL_UP;
869
7ebd7a3a
JCPV
870 if (info->ops->get_deglitch && info->ops->get_deglitch(pio, pin))
871 *config |= DEGLITCH;
872 if (info->ops->get_debounce && info->ops->get_debounce(pio, pin, &div))
873 *config |= DEBOUNCE | (div << DEBOUNCE_VAL_SHIFT);
874 if (info->ops->get_pulldown && info->ops->get_pulldown(pio, pin))
875 *config |= PULL_DOWN;
876 if (info->ops->get_schmitt_trig && info->ops->get_schmitt_trig(pio, pin))
877 *config |= DIS_SCHMIT;
4334ac2d
MR
878 if (info->ops->get_drivestrength)
879 *config |= (info->ops->get_drivestrength(pio, pin)
880 << DRIVE_STRENGTH_SHIFT);
7ebd7a3a 881
6732ae5c
JCPV
882 return 0;
883}
884
885static int at91_pinconf_set(struct pinctrl_dev *pctldev,
03b054e9
SY
886 unsigned pin_id, unsigned long *configs,
887 unsigned num_configs)
6732ae5c
JCPV
888{
889 struct at91_pinctrl *info = pinctrl_dev_get_drvdata(pctldev);
890 unsigned mask;
891 void __iomem *pio;
03b054e9
SY
892 int i;
893 unsigned long config;
4334ac2d 894 unsigned pin;
03b054e9
SY
895
896 for (i = 0; i < num_configs; i++) {
897 config = configs[i];
898
899 dev_dbg(info->dev,
900 "%s:%d, pin_id=%d, config=0x%lx",
901 __func__, __LINE__, pin_id, config);
902 pio = pin_to_controller(info, pin_to_bank(pin_id));
1ab36387
DD
903
904 if (!pio)
905 return -EINVAL;
906
4334ac2d
MR
907 pin = pin_id % MAX_NB_GPIO_PER_BANK;
908 mask = pin_to_mask(pin);
03b054e9
SY
909
910 if (config & PULL_UP && config & PULL_DOWN)
911 return -EINVAL;
912
913 at91_mux_set_pullup(pio, mask, config & PULL_UP);
914 at91_mux_set_multidrive(pio, mask, config & MULTI_DRIVE);
915 if (info->ops->set_deglitch)
916 info->ops->set_deglitch(pio, mask, config & DEGLITCH);
917 if (info->ops->set_debounce)
918 info->ops->set_debounce(pio, mask, config & DEBOUNCE,
7ebd7a3a 919 (config & DEBOUNCE_VAL) >> DEBOUNCE_VAL_SHIFT);
03b054e9
SY
920 if (info->ops->set_pulldown)
921 info->ops->set_pulldown(pio, mask, config & PULL_DOWN);
922 if (info->ops->disable_schmitt_trig && config & DIS_SCHMIT)
923 info->ops->disable_schmitt_trig(pio, mask);
4334ac2d
MR
924 if (info->ops->set_drivestrength)
925 info->ops->set_drivestrength(pio, pin,
926 (config & DRIVE_STRENGTH)
927 >> DRIVE_STRENGTH_SHIFT);
03b054e9
SY
928
929 } /* for each config */
7ebd7a3a 930
6732ae5c
JCPV
931 return 0;
932}
933
4d9b8a8e
AB
934#define DBG_SHOW_FLAG(flag) do { \
935 if (config & flag) { \
936 if (num_conf) \
937 seq_puts(s, "|"); \
938 seq_puts(s, #flag); \
939 num_conf++; \
940 } \
941} while (0)
942
4334ac2d
MR
943#define DBG_SHOW_FLAG_MASKED(mask,flag) do { \
944 if ((config & mask) == flag) { \
945 if (num_conf) \
946 seq_puts(s, "|"); \
947 seq_puts(s, #flag); \
948 num_conf++; \
949 } \
950} while (0)
951
6732ae5c
JCPV
952static void at91_pinconf_dbg_show(struct pinctrl_dev *pctldev,
953 struct seq_file *s, unsigned pin_id)
954{
4d9b8a8e 955 unsigned long config;
445d2026 956 int val, num_conf = 0;
4d9b8a8e 957
445d2026 958 at91_pinconf_get(pctldev, pin_id, &config);
4d9b8a8e
AB
959
960 DBG_SHOW_FLAG(MULTI_DRIVE);
961 DBG_SHOW_FLAG(PULL_UP);
962 DBG_SHOW_FLAG(PULL_DOWN);
963 DBG_SHOW_FLAG(DIS_SCHMIT);
964 DBG_SHOW_FLAG(DEGLITCH);
4334ac2d
MR
965 DBG_SHOW_FLAG_MASKED(DRIVE_STRENGTH, DRIVE_STRENGTH_LOW);
966 DBG_SHOW_FLAG_MASKED(DRIVE_STRENGTH, DRIVE_STRENGTH_MED);
967 DBG_SHOW_FLAG_MASKED(DRIVE_STRENGTH, DRIVE_STRENGTH_HI);
4d9b8a8e
AB
968 DBG_SHOW_FLAG(DEBOUNCE);
969 if (config & DEBOUNCE) {
970 val = config >> DEBOUNCE_VAL_SHIFT;
971 seq_printf(s, "(%d)", val);
972 }
6732ae5c 973
4d9b8a8e 974 return;
6732ae5c
JCPV
975}
976
977static void at91_pinconf_group_dbg_show(struct pinctrl_dev *pctldev,
978 struct seq_file *s, unsigned group)
979{
980}
981
022ab148 982static const struct pinconf_ops at91_pinconf_ops = {
6732ae5c
JCPV
983 .pin_config_get = at91_pinconf_get,
984 .pin_config_set = at91_pinconf_set,
985 .pin_config_dbg_show = at91_pinconf_dbg_show,
986 .pin_config_group_dbg_show = at91_pinconf_group_dbg_show,
987};
988
989static struct pinctrl_desc at91_pinctrl_desc = {
990 .pctlops = &at91_pctrl_ops,
991 .pmxops = &at91_pmx_ops,
992 .confops = &at91_pinconf_ops,
993 .owner = THIS_MODULE,
994};
995
996static const char *gpio_compat = "atmel,at91rm9200-gpio";
997
150632b0
GKH
998static void at91_pinctrl_child_count(struct at91_pinctrl *info,
999 struct device_node *np)
6732ae5c
JCPV
1000{
1001 struct device_node *child;
1002
1003 for_each_child_of_node(np, child) {
1004 if (of_device_is_compatible(child, gpio_compat)) {
a0b957f3
JCPV
1005 if (of_device_is_available(child))
1006 info->nactive_banks++;
6732ae5c
JCPV
1007 } else {
1008 info->nfunctions++;
1009 info->ngroups += of_get_child_count(child);
1010 }
1011 }
1012}
1013
150632b0
GKH
1014static int at91_pinctrl_mux_mask(struct at91_pinctrl *info,
1015 struct device_node *np)
6732ae5c
JCPV
1016{
1017 int ret = 0;
1018 int size;
1164d73a 1019 const __be32 *list;
6732ae5c
JCPV
1020
1021 list = of_get_property(np, "atmel,mux-mask", &size);
1022 if (!list) {
1023 dev_err(info->dev, "can not read the mux-mask of %d\n", size);
1024 return -EINVAL;
1025 }
1026
1027 size /= sizeof(*list);
a0b957f3
JCPV
1028 if (!size || size % gpio_banks) {
1029 dev_err(info->dev, "wrong mux mask array should be by %d\n", gpio_banks);
6732ae5c
JCPV
1030 return -EINVAL;
1031 }
a0b957f3 1032 info->nmux = size / gpio_banks;
6732ae5c
JCPV
1033
1034 info->mux_mask = devm_kzalloc(info->dev, sizeof(u32) * size, GFP_KERNEL);
1035 if (!info->mux_mask) {
1036 dev_err(info->dev, "could not alloc mux_mask\n");
1037 return -ENOMEM;
1038 }
1039
1040 ret = of_property_read_u32_array(np, "atmel,mux-mask",
1041 info->mux_mask, size);
1042 if (ret)
1043 dev_err(info->dev, "can not read the mux-mask of %d\n", size);
1044 return ret;
1045}
1046
150632b0
GKH
1047static int at91_pinctrl_parse_groups(struct device_node *np,
1048 struct at91_pin_group *grp,
1049 struct at91_pinctrl *info, u32 index)
6732ae5c
JCPV
1050{
1051 struct at91_pmx_pin *pin;
1052 int size;
1164d73a 1053 const __be32 *list;
6732ae5c
JCPV
1054 int i, j;
1055
1056 dev_dbg(info->dev, "group(%d): %s\n", index, np->name);
1057
1058 /* Initialise group */
1059 grp->name = np->name;
1060
1061 /*
1062 * the binding format is atmel,pins = <bank pin mux CONFIG ...>,
1063 * do sanity check and calculate pins number
1064 */
1065 list = of_get_property(np, "atmel,pins", &size);
1066 /* we do not check return since it's safe node passed down */
1067 size /= sizeof(*list);
1068 if (!size || size % 4) {
1069 dev_err(info->dev, "wrong pins number or pins and configs should be by 4\n");
1070 return -EINVAL;
1071 }
1072
1073 grp->npins = size / 4;
1074 pin = grp->pins_conf = devm_kzalloc(info->dev, grp->npins * sizeof(struct at91_pmx_pin),
1075 GFP_KERNEL);
1076 grp->pins = devm_kzalloc(info->dev, grp->npins * sizeof(unsigned int),
1077 GFP_KERNEL);
1078 if (!grp->pins_conf || !grp->pins)
1079 return -ENOMEM;
1080
1081 for (i = 0, j = 0; i < size; i += 4, j++) {
1082 pin->bank = be32_to_cpu(*list++);
1083 pin->pin = be32_to_cpu(*list++);
1084 grp->pins[j] = pin->bank * MAX_NB_GPIO_PER_BANK + pin->pin;
1085 pin->mux = be32_to_cpu(*list++);
1086 pin->conf = be32_to_cpu(*list++);
1087
1088 at91_pin_dbg(info->dev, pin);
1089 pin++;
1090 }
1091
1092 return 0;
1093}
1094
150632b0
GKH
1095static int at91_pinctrl_parse_functions(struct device_node *np,
1096 struct at91_pinctrl *info, u32 index)
6732ae5c
JCPV
1097{
1098 struct device_node *child;
1099 struct at91_pmx_func *func;
1100 struct at91_pin_group *grp;
1101 int ret;
1102 static u32 grp_index;
1103 u32 i = 0;
1104
1105 dev_dbg(info->dev, "parse function(%d): %s\n", index, np->name);
1106
1107 func = &info->functions[index];
1108
1109 /* Initialise function */
1110 func->name = np->name;
1111 func->ngroups = of_get_child_count(np);
ca7162ad 1112 if (func->ngroups == 0) {
6732ae5c
JCPV
1113 dev_err(info->dev, "no groups defined\n");
1114 return -EINVAL;
1115 }
1116 func->groups = devm_kzalloc(info->dev,
1117 func->ngroups * sizeof(char *), GFP_KERNEL);
1118 if (!func->groups)
1119 return -ENOMEM;
1120
1121 for_each_child_of_node(np, child) {
1122 func->groups[i] = child->name;
1123 grp = &info->groups[grp_index++];
1124 ret = at91_pinctrl_parse_groups(child, grp, info, i++);
1125 if (ret)
1126 return ret;
1127 }
1128
1129 return 0;
1130}
1131
baa9946e 1132static const struct of_device_id at91_pinctrl_of_match[] = {
4334ac2d 1133 { .compatible = "atmel,sama5d3-pinctrl", .data = &sama5d3_ops },
6732ae5c
JCPV
1134 { .compatible = "atmel,at91sam9x5-pinctrl", .data = &at91sam9x5_ops },
1135 { .compatible = "atmel,at91rm9200-pinctrl", .data = &at91rm9200_ops },
1136 { /* sentinel */ }
1137};
1138
150632b0
GKH
1139static int at91_pinctrl_probe_dt(struct platform_device *pdev,
1140 struct at91_pinctrl *info)
6732ae5c
JCPV
1141{
1142 int ret = 0;
1143 int i, j;
1144 uint32_t *tmp;
1145 struct device_node *np = pdev->dev.of_node;
1146 struct device_node *child;
1147
1148 if (!np)
1149 return -ENODEV;
1150
1151 info->dev = &pdev->dev;
3c93600d 1152 info->ops = (struct at91_pinctrl_mux_ops *)
6732ae5c
JCPV
1153 of_match_device(at91_pinctrl_of_match, &pdev->dev)->data;
1154 at91_pinctrl_child_count(info, np);
1155
a0b957f3 1156 if (gpio_banks < 1) {
61e310a1 1157 dev_err(&pdev->dev, "you need to specify at least one gpio-controller\n");
6732ae5c
JCPV
1158 return -EINVAL;
1159 }
1160
1161 ret = at91_pinctrl_mux_mask(info, np);
1162 if (ret)
1163 return ret;
1164
1165 dev_dbg(&pdev->dev, "nmux = %d\n", info->nmux);
1166
1167 dev_dbg(&pdev->dev, "mux-mask\n");
1168 tmp = info->mux_mask;
a0b957f3 1169 for (i = 0; i < gpio_banks; i++) {
6732ae5c
JCPV
1170 for (j = 0; j < info->nmux; j++, tmp++) {
1171 dev_dbg(&pdev->dev, "%d:%d\t0x%x\n", i, j, tmp[0]);
1172 }
1173 }
1174
1175 dev_dbg(&pdev->dev, "nfunctions = %d\n", info->nfunctions);
1176 dev_dbg(&pdev->dev, "ngroups = %d\n", info->ngroups);
1177 info->functions = devm_kzalloc(&pdev->dev, info->nfunctions * sizeof(struct at91_pmx_func),
1178 GFP_KERNEL);
1179 if (!info->functions)
1180 return -ENOMEM;
1181
1182 info->groups = devm_kzalloc(&pdev->dev, info->ngroups * sizeof(struct at91_pin_group),
1183 GFP_KERNEL);
1184 if (!info->groups)
1185 return -ENOMEM;
1186
a0b957f3 1187 dev_dbg(&pdev->dev, "nbanks = %d\n", gpio_banks);
6732ae5c
JCPV
1188 dev_dbg(&pdev->dev, "nfunctions = %d\n", info->nfunctions);
1189 dev_dbg(&pdev->dev, "ngroups = %d\n", info->ngroups);
1190
1191 i = 0;
1192
1193 for_each_child_of_node(np, child) {
1194 if (of_device_is_compatible(child, gpio_compat))
1195 continue;
1196 ret = at91_pinctrl_parse_functions(child, info, i++);
1197 if (ret) {
1198 dev_err(&pdev->dev, "failed to parse function\n");
1199 return ret;
1200 }
1201 }
1202
1203 return 0;
1204}
1205
150632b0 1206static int at91_pinctrl_probe(struct platform_device *pdev)
6732ae5c
JCPV
1207{
1208 struct at91_pinctrl *info;
1209 struct pinctrl_pin_desc *pdesc;
a0b957f3 1210 int ret, i, j, k, ngpio_chips_enabled = 0;
6732ae5c
JCPV
1211
1212 info = devm_kzalloc(&pdev->dev, sizeof(*info), GFP_KERNEL);
1213 if (!info)
1214 return -ENOMEM;
1215
1216 ret = at91_pinctrl_probe_dt(pdev, info);
1217 if (ret)
1218 return ret;
1219
1220 /*
1221 * We need all the GPIO drivers to probe FIRST, or we will not be able
1222 * to obtain references to the struct gpio_chip * for them, and we
1223 * need this to proceed.
1224 */
a0b957f3
JCPV
1225 for (i = 0; i < gpio_banks; i++)
1226 if (gpio_chips[i])
1227 ngpio_chips_enabled++;
1228
1229 if (ngpio_chips_enabled < info->nactive_banks) {
1230 dev_warn(&pdev->dev,
1231 "All GPIO chips are not registered yet (%d/%d)\n",
1232 ngpio_chips_enabled, info->nactive_banks);
1233 devm_kfree(&pdev->dev, info);
1234 return -EPROBE_DEFER;
6732ae5c
JCPV
1235 }
1236
1237 at91_pinctrl_desc.name = dev_name(&pdev->dev);
a0b957f3 1238 at91_pinctrl_desc.npins = gpio_banks * MAX_NB_GPIO_PER_BANK;
6732ae5c
JCPV
1239 at91_pinctrl_desc.pins = pdesc =
1240 devm_kzalloc(&pdev->dev, sizeof(*pdesc) * at91_pinctrl_desc.npins, GFP_KERNEL);
1241
1242 if (!at91_pinctrl_desc.pins)
1243 return -ENOMEM;
1244
a0b957f3 1245 for (i = 0, k = 0; i < gpio_banks; i++) {
6732ae5c
JCPV
1246 for (j = 0; j < MAX_NB_GPIO_PER_BANK; j++, k++) {
1247 pdesc->number = k;
1248 pdesc->name = kasprintf(GFP_KERNEL, "pio%c%d", i + 'A', j);
1249 pdesc++;
1250 }
1251 }
1252
1253 platform_set_drvdata(pdev, info);
1254 info->pctl = pinctrl_register(&at91_pinctrl_desc, &pdev->dev, info);
1255
323de9ef 1256 if (IS_ERR(info->pctl)) {
6732ae5c 1257 dev_err(&pdev->dev, "could not register AT91 pinctrl driver\n");
323de9ef 1258 return PTR_ERR(info->pctl);
6732ae5c
JCPV
1259 }
1260
1261 /* We will handle a range of GPIO pins */
a0b957f3
JCPV
1262 for (i = 0; i < gpio_banks; i++)
1263 if (gpio_chips[i])
1264 pinctrl_add_gpio_range(info->pctl, &gpio_chips[i]->range);
6732ae5c
JCPV
1265
1266 dev_info(&pdev->dev, "initialized AT91 pinctrl driver\n");
1267
1268 return 0;
6732ae5c
JCPV
1269}
1270
150632b0 1271static int at91_pinctrl_remove(struct platform_device *pdev)
6732ae5c
JCPV
1272{
1273 struct at91_pinctrl *info = platform_get_drvdata(pdev);
1274
1275 pinctrl_unregister(info->pctl);
1276
1277 return 0;
1278}
1279
8af584b8
RG
1280static int at91_gpio_get_direction(struct gpio_chip *chip, unsigned offset)
1281{
1282 struct at91_gpio_chip *at91_gpio = to_at91_gpio_chip(chip);
1283 void __iomem *pio = at91_gpio->regbase;
1284 unsigned mask = 1 << offset;
1285 u32 osr;
1286
1287 osr = readl_relaxed(pio + PIO_OSR);
1288 return !(osr & mask);
1289}
1290
6732ae5c
JCPV
1291static int at91_gpio_direction_input(struct gpio_chip *chip, unsigned offset)
1292{
1293 struct at91_gpio_chip *at91_gpio = to_at91_gpio_chip(chip);
1294 void __iomem *pio = at91_gpio->regbase;
1295 unsigned mask = 1 << offset;
1296
1297 writel_relaxed(mask, pio + PIO_ODR);
1298 return 0;
1299}
1300
1301static int at91_gpio_get(struct gpio_chip *chip, unsigned offset)
1302{
1303 struct at91_gpio_chip *at91_gpio = to_at91_gpio_chip(chip);
1304 void __iomem *pio = at91_gpio->regbase;
1305 unsigned mask = 1 << offset;
1306 u32 pdsr;
1307
1308 pdsr = readl_relaxed(pio + PIO_PDSR);
1309 return (pdsr & mask) != 0;
1310}
1311
1312static void at91_gpio_set(struct gpio_chip *chip, unsigned offset,
1313 int val)
1314{
1315 struct at91_gpio_chip *at91_gpio = to_at91_gpio_chip(chip);
1316 void __iomem *pio = at91_gpio->regbase;
1317 unsigned mask = 1 << offset;
1318
1319 writel_relaxed(mask, pio + (val ? PIO_SODR : PIO_CODR));
1320}
1321
1893b2cf
AS
1322static void at91_gpio_set_multiple(struct gpio_chip *chip,
1323 unsigned long *mask, unsigned long *bits)
1324{
1325 struct at91_gpio_chip *at91_gpio = to_at91_gpio_chip(chip);
1326 void __iomem *pio = at91_gpio->regbase;
1327
1328#define BITS_MASK(bits) (((bits) == 32) ? ~0U : (BIT(bits) - 1))
1329 /* Mask additionally to ngpio as not all GPIO controllers have 32 pins */
1330 uint32_t set_mask = (*mask & *bits) & BITS_MASK(chip->ngpio);
1331 uint32_t clear_mask = (*mask & ~(*bits)) & BITS_MASK(chip->ngpio);
1332
1333 writel_relaxed(set_mask, pio + PIO_SODR);
1334 writel_relaxed(clear_mask, pio + PIO_CODR);
1335}
1336
6732ae5c
JCPV
1337static int at91_gpio_direction_output(struct gpio_chip *chip, unsigned offset,
1338 int val)
1339{
1340 struct at91_gpio_chip *at91_gpio = to_at91_gpio_chip(chip);
1341 void __iomem *pio = at91_gpio->regbase;
1342 unsigned mask = 1 << offset;
1343
1344 writel_relaxed(mask, pio + (val ? PIO_SODR : PIO_CODR));
1345 writel_relaxed(mask, pio + PIO_OER);
1346
1347 return 0;
1348}
1349
6732ae5c
JCPV
1350#ifdef CONFIG_DEBUG_FS
1351static void at91_gpio_dbg_show(struct seq_file *s, struct gpio_chip *chip)
1352{
1353 enum at91_mux mode;
1354 int i;
1355 struct at91_gpio_chip *at91_gpio = to_at91_gpio_chip(chip);
1356 void __iomem *pio = at91_gpio->regbase;
1357
1358 for (i = 0; i < chip->ngpio; i++) {
47f22716 1359 unsigned mask = pin_to_mask(i);
6732ae5c 1360 const char *gpio_label;
6732ae5c
JCPV
1361
1362 gpio_label = gpiochip_is_requested(chip, i);
1363 if (!gpio_label)
1364 continue;
1365 mode = at91_gpio->ops->get_periph(pio, mask);
1366 seq_printf(s, "[%s] GPIO%s%d: ",
1367 gpio_label, chip->label, i);
1368 if (mode == AT91_MUX_GPIO) {
853b6bf0
MC
1369 seq_printf(s, "[gpio] ");
1370 seq_printf(s, "%s ",
1371 readl_relaxed(pio + PIO_OSR) & mask ?
1372 "output" : "input");
1373 seq_printf(s, "%s\n",
1374 readl_relaxed(pio + PIO_PDSR) & mask ?
1375 "set" : "clear");
6732ae5c
JCPV
1376 } else {
1377 seq_printf(s, "[periph %c]\n",
1378 mode + 'A' - 1);
1379 }
1380 }
1381}
1382#else
1383#define at91_gpio_dbg_show NULL
1384#endif
1385
1386/* Several AIC controller irqs are dispatched through this GPIO handler.
1387 * To use any AT91_PIN_* as an externally triggered IRQ, first call
1388 * at91_set_gpio_input() then maybe enable its glitch filter.
1389 * Then just request_irq() with the pin ID; it works like any ARM IRQ
1390 * handler.
1391 * First implementation always triggers on rising and falling edges
1392 * whereas the newer PIO3 can be additionally configured to trigger on
1393 * level, edge with any polarity.
1394 *
1395 * Alternatively, certain pins may be used directly as IRQ0..IRQ6 after
1396 * configuring them with at91_set_a_periph() or at91_set_b_periph().
1397 * IRQ0..IRQ6 should be configurable, e.g. level vs edge triggering.
1398 */
1399
1400static void gpio_irq_mask(struct irq_data *d)
1401{
1402 struct at91_gpio_chip *at91_gpio = irq_data_get_irq_chip_data(d);
1403 void __iomem *pio = at91_gpio->regbase;
1404 unsigned mask = 1 << d->hwirq;
1405
1406 if (pio)
1407 writel_relaxed(mask, pio + PIO_IDR);
1408}
1409
1410static void gpio_irq_unmask(struct irq_data *d)
1411{
1412 struct at91_gpio_chip *at91_gpio = irq_data_get_irq_chip_data(d);
1413 void __iomem *pio = at91_gpio->regbase;
1414 unsigned mask = 1 << d->hwirq;
1415
1416 if (pio)
1417 writel_relaxed(mask, pio + PIO_IER);
1418}
1419
1420static int gpio_irq_type(struct irq_data *d, unsigned type)
1421{
1422 switch (type) {
1423 case IRQ_TYPE_NONE:
1424 case IRQ_TYPE_EDGE_BOTH:
1425 return 0;
1426 default:
1427 return -EINVAL;
1428 }
1429}
1430
1431/* Alternate irq type for PIO3 support */
1432static int alt_gpio_irq_type(struct irq_data *d, unsigned type)
1433{
1434 struct at91_gpio_chip *at91_gpio = irq_data_get_irq_chip_data(d);
1435 void __iomem *pio = at91_gpio->regbase;
1436 unsigned mask = 1 << d->hwirq;
1437
1438 switch (type) {
1439 case IRQ_TYPE_EDGE_RISING:
c639845b 1440 irq_set_handler_locked(d, handle_simple_irq);
6732ae5c
JCPV
1441 writel_relaxed(mask, pio + PIO_ESR);
1442 writel_relaxed(mask, pio + PIO_REHLSR);
1443 break;
1444 case IRQ_TYPE_EDGE_FALLING:
c639845b 1445 irq_set_handler_locked(d, handle_simple_irq);
6732ae5c
JCPV
1446 writel_relaxed(mask, pio + PIO_ESR);
1447 writel_relaxed(mask, pio + PIO_FELLSR);
1448 break;
1449 case IRQ_TYPE_LEVEL_LOW:
c639845b 1450 irq_set_handler_locked(d, handle_level_irq);
6732ae5c
JCPV
1451 writel_relaxed(mask, pio + PIO_LSR);
1452 writel_relaxed(mask, pio + PIO_FELLSR);
1453 break;
1454 case IRQ_TYPE_LEVEL_HIGH:
c639845b 1455 irq_set_handler_locked(d, handle_level_irq);
6732ae5c
JCPV
1456 writel_relaxed(mask, pio + PIO_LSR);
1457 writel_relaxed(mask, pio + PIO_REHLSR);
1458 break;
1459 case IRQ_TYPE_EDGE_BOTH:
1460 /*
1461 * disable additional interrupt modes:
1462 * fall back to default behavior
1463 */
c639845b 1464 irq_set_handler_locked(d, handle_simple_irq);
6732ae5c
JCPV
1465 writel_relaxed(mask, pio + PIO_AIMDR);
1466 return 0;
1467 case IRQ_TYPE_NONE:
1468 default:
1469 pr_warn("AT91: No type for irq %d\n", gpio_to_irq(d->irq));
1470 return -EINVAL;
1471 }
1472
1473 /* enable additional interrupt modes */
1474 writel_relaxed(mask, pio + PIO_AIMER);
1475
1476 return 0;
1477}
1478
80cc3732
AS
1479static void gpio_irq_ack(struct irq_data *d)
1480{
1481 /* the interrupt is already cleared before by reading ISR */
1482}
1483
6732ae5c 1484#ifdef CONFIG_PM
647f8d94
LD
1485
1486static u32 wakeups[MAX_GPIO_BANKS];
1487static u32 backups[MAX_GPIO_BANKS];
1488
6732ae5c
JCPV
1489static int gpio_irq_set_wake(struct irq_data *d, unsigned state)
1490{
1491 struct at91_gpio_chip *at91_gpio = irq_data_get_irq_chip_data(d);
1492 unsigned bank = at91_gpio->pioc_idx;
647f8d94 1493 unsigned mask = 1 << d->hwirq;
6732ae5c
JCPV
1494
1495 if (unlikely(bank >= MAX_GPIO_BANKS))
1496 return -EINVAL;
1497
647f8d94
LD
1498 if (state)
1499 wakeups[bank] |= mask;
1500 else
1501 wakeups[bank] &= ~mask;
1502
6732ae5c
JCPV
1503 irq_set_irq_wake(at91_gpio->pioc_virq, state);
1504
1505 return 0;
1506}
647f8d94
LD
1507
1508void at91_pinctrl_gpio_suspend(void)
1509{
1510 int i;
1511
1512 for (i = 0; i < gpio_banks; i++) {
1513 void __iomem *pio;
1514
1515 if (!gpio_chips[i])
1516 continue;
1517
1518 pio = gpio_chips[i]->regbase;
1519
d480239b
BD
1520 backups[i] = readl_relaxed(pio + PIO_IMR);
1521 writel_relaxed(backups[i], pio + PIO_IDR);
1522 writel_relaxed(wakeups[i], pio + PIO_IER);
647f8d94 1523
795f9953
BB
1524 if (!wakeups[i])
1525 clk_disable_unprepare(gpio_chips[i]->clock);
1526 else
647f8d94
LD
1527 printk(KERN_DEBUG "GPIO-%c may wake for %08x\n",
1528 'A'+i, wakeups[i]);
647f8d94
LD
1529 }
1530}
1531
1532void at91_pinctrl_gpio_resume(void)
1533{
1534 int i;
1535
1536 for (i = 0; i < gpio_banks; i++) {
1537 void __iomem *pio;
1538
1539 if (!gpio_chips[i])
1540 continue;
1541
1542 pio = gpio_chips[i]->regbase;
1543
37ef1d92
BB
1544 if (!wakeups[i])
1545 clk_prepare_enable(gpio_chips[i]->clock);
647f8d94 1546
d480239b
BD
1547 writel_relaxed(wakeups[i], pio + PIO_IDR);
1548 writel_relaxed(backups[i], pio + PIO_IER);
647f8d94
LD
1549 }
1550}
1551
6732ae5c
JCPV
1552#else
1553#define gpio_irq_set_wake NULL
647f8d94 1554#endif /* CONFIG_PM */
6732ae5c
JCPV
1555
1556static struct irq_chip gpio_irqchip = {
1557 .name = "GPIO",
80cc3732 1558 .irq_ack = gpio_irq_ack,
6732ae5c
JCPV
1559 .irq_disable = gpio_irq_mask,
1560 .irq_mask = gpio_irq_mask,
1561 .irq_unmask = gpio_irq_unmask,
1562 /* .irq_set_type is set dynamically */
1563 .irq_set_wake = gpio_irq_set_wake,
1564};
1565
bd0b9ac4 1566static void gpio_irq_handler(struct irq_desc *desc)
6732ae5c 1567{
5663bb27 1568 struct irq_chip *chip = irq_desc_get_chip(desc);
80cc3732
AS
1569 struct gpio_chip *gpio_chip = irq_desc_get_handler_data(desc);
1570 struct at91_gpio_chip *at91_gpio = container_of(gpio_chip,
1571 struct at91_gpio_chip, chip);
1572
6732ae5c
JCPV
1573 void __iomem *pio = at91_gpio->regbase;
1574 unsigned long isr;
1575 int n;
1576
1577 chained_irq_enter(chip, desc);
1578 for (;;) {
1579 /* Reading ISR acks pending (edge triggered) GPIO interrupts.
c2eb9e7f 1580 * When there are none pending, we're finished unless we need
6732ae5c
JCPV
1581 * to process multiple banks (like ID_PIOCDE on sam9263).
1582 */
1583 isr = readl_relaxed(pio + PIO_ISR) & readl_relaxed(pio + PIO_IMR);
1584 if (!isr) {
1585 if (!at91_gpio->next)
1586 break;
1587 at91_gpio = at91_gpio->next;
1588 pio = at91_gpio->regbase;
cccb0c3e 1589 gpio_chip = &at91_gpio->chip;
6732ae5c
JCPV
1590 continue;
1591 }
1592
05daa16a 1593 for_each_set_bit(n, &isr, BITS_PER_LONG) {
80cc3732
AS
1594 generic_handle_irq(irq_find_mapping(
1595 gpio_chip->irqdomain, n));
6732ae5c
JCPV
1596 }
1597 }
1598 chained_irq_exit(chip, desc);
1599 /* now it may re-trigger */
1600}
1601
834e1678 1602static int at91_gpio_of_irq_setup(struct platform_device *pdev,
6732ae5c
JCPV
1603 struct at91_gpio_chip *at91_gpio)
1604{
a0b957f3 1605 struct gpio_chip *gpiochip_prev = NULL;
cccb0c3e 1606 struct at91_gpio_chip *prev = NULL;
6732ae5c 1607 struct irq_data *d = irq_get_irq_data(at91_gpio->pioc_virq);
a0b957f3 1608 int ret, i;
6732ae5c
JCPV
1609
1610 at91_gpio->pioc_hwirq = irqd_to_hwirq(d);
1611
1612 /* Setup proper .irq_set_type function */
1613 gpio_irqchip.irq_set_type = at91_gpio->ops->irq_type;
1614
1615 /* Disable irqs of this PIO controller */
1616 writel_relaxed(~0, at91_gpio->regbase + PIO_IDR);
1617
80cc3732
AS
1618 /*
1619 * Let the generic code handle this edge IRQ, the the chained
1620 * handler will perform the actual work of handling the parent
1621 * interrupt.
1622 */
1623 ret = gpiochip_irqchip_add(&at91_gpio->chip,
1624 &gpio_irqchip,
1625 0,
1626 handle_edge_irq,
1627 IRQ_TYPE_EDGE_BOTH);
834e1678
PG
1628 if (ret) {
1629 dev_err(&pdev->dev, "at91_gpio.%d: Couldn't add irqchip to gpiochip.\n",
6732ae5c 1630 at91_gpio->pioc_idx);
834e1678
PG
1631 return ret;
1632 }
6732ae5c 1633
cccb0c3e
AS
1634 /* The top level handler handles one bank of GPIOs, except
1635 * on some SoC it can handle up to three...
1636 * We only set up the handler for the first of the list.
1637 */
a0b957f3
JCPV
1638 gpiochip_prev = irq_get_handler_data(at91_gpio->pioc_virq);
1639 if (!gpiochip_prev) {
1640 /* Then register the chain on the parent IRQ */
1641 gpiochip_set_chained_irqchip(&at91_gpio->chip,
1642 &gpio_irqchip,
1643 at91_gpio->pioc_virq,
1644 gpio_irq_handler);
cccb0c3e 1645 return 0;
a0b957f3 1646 }
cccb0c3e 1647
a0b957f3 1648 prev = container_of(gpiochip_prev, struct at91_gpio_chip, chip);
6732ae5c 1649
a0b957f3
JCPV
1650 /* we can only have 2 banks before */
1651 for (i = 0; i < 2; i++) {
1652 if (prev->next) {
1653 prev = prev->next;
1654 } else {
1655 prev->next = at91_gpio;
1656 return 0;
1657 }
1658 }
1659
1660 return -EINVAL;
6732ae5c
JCPV
1661}
1662
1663/* This structure is replicated for each GPIO block allocated at probe time */
1664static struct gpio_chip at91_gpio_template = {
98c85d58
JG
1665 .request = gpiochip_generic_request,
1666 .free = gpiochip_generic_free,
8af584b8 1667 .get_direction = at91_gpio_get_direction,
6732ae5c
JCPV
1668 .direction_input = at91_gpio_direction_input,
1669 .get = at91_gpio_get,
1670 .direction_output = at91_gpio_direction_output,
1671 .set = at91_gpio_set,
1893b2cf 1672 .set_multiple = at91_gpio_set_multiple,
6732ae5c 1673 .dbg_show = at91_gpio_dbg_show,
9fb1f39e 1674 .can_sleep = false,
6732ae5c
JCPV
1675 .ngpio = MAX_NB_GPIO_PER_BANK,
1676};
1677
baa9946e 1678static const struct of_device_id at91_gpio_of_match[] = {
6732ae5c
JCPV
1679 { .compatible = "atmel,at91sam9x5-gpio", .data = &at91sam9x5_ops, },
1680 { .compatible = "atmel,at91rm9200-gpio", .data = &at91rm9200_ops },
1681 { /* sentinel */ }
1682};
1683
150632b0 1684static int at91_gpio_probe(struct platform_device *pdev)
6732ae5c
JCPV
1685{
1686 struct device_node *np = pdev->dev.of_node;
1687 struct resource *res;
1688 struct at91_gpio_chip *at91_chip = NULL;
1689 struct gpio_chip *chip;
1690 struct pinctrl_gpio_range *range;
1691 int ret = 0;
32b01a36 1692 int irq, i;
6732ae5c
JCPV
1693 int alias_idx = of_alias_get_id(np, "gpio");
1694 uint32_t ngpio;
32b01a36 1695 char **names;
6732ae5c
JCPV
1696
1697 BUG_ON(alias_idx >= ARRAY_SIZE(gpio_chips));
1698 if (gpio_chips[alias_idx]) {
1699 ret = -EBUSY;
1700 goto err;
1701 }
1702
6732ae5c
JCPV
1703 irq = platform_get_irq(pdev, 0);
1704 if (irq < 0) {
1705 ret = irq;
1706 goto err;
1707 }
1708
1709 at91_chip = devm_kzalloc(&pdev->dev, sizeof(*at91_chip), GFP_KERNEL);
1710 if (!at91_chip) {
1711 ret = -ENOMEM;
1712 goto err;
1713 }
1714
f50b9e12 1715 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
9e0c1fb2
TR
1716 at91_chip->regbase = devm_ioremap_resource(&pdev->dev, res);
1717 if (IS_ERR(at91_chip->regbase)) {
1718 ret = PTR_ERR(at91_chip->regbase);
6732ae5c
JCPV
1719 goto err;
1720 }
1721
3c93600d 1722 at91_chip->ops = (struct at91_pinctrl_mux_ops *)
6732ae5c
JCPV
1723 of_match_device(at91_gpio_of_match, &pdev->dev)->data;
1724 at91_chip->pioc_virq = irq;
1725 at91_chip->pioc_idx = alias_idx;
1726
02b837ff 1727 at91_chip->clock = devm_clk_get(&pdev->dev, NULL);
6732ae5c
JCPV
1728 if (IS_ERR(at91_chip->clock)) {
1729 dev_err(&pdev->dev, "failed to get clock, ignoring.\n");
70e41974 1730 ret = PTR_ERR(at91_chip->clock);
6732ae5c
JCPV
1731 goto err;
1732 }
1733
70e41974
PG
1734 ret = clk_prepare(at91_chip->clock);
1735 if (ret)
1736 goto clk_prepare_err;
6732ae5c
JCPV
1737
1738 /* enable PIO controller's clock */
70e41974
PG
1739 ret = clk_enable(at91_chip->clock);
1740 if (ret) {
6732ae5c 1741 dev_err(&pdev->dev, "failed to enable clock, ignoring.\n");
70e41974 1742 goto clk_enable_err;
6732ae5c
JCPV
1743 }
1744
1745 at91_chip->chip = at91_gpio_template;
1746
1747 chip = &at91_chip->chip;
1748 chip->of_node = np;
1749 chip->label = dev_name(&pdev->dev);
1750 chip->dev = &pdev->dev;
1751 chip->owner = THIS_MODULE;
1752 chip->base = alias_idx * MAX_NB_GPIO_PER_BANK;
1753
1754 if (!of_property_read_u32(np, "#gpio-lines", &ngpio)) {
1755 if (ngpio >= MAX_NB_GPIO_PER_BANK)
1756 pr_err("at91_gpio.%d, gpio-nb >= %d failback to %d\n",
1757 alias_idx, MAX_NB_GPIO_PER_BANK, MAX_NB_GPIO_PER_BANK);
1758 else
1759 chip->ngpio = ngpio;
1760 }
1761
3c93600d
SK
1762 names = devm_kzalloc(&pdev->dev, sizeof(char *) * chip->ngpio,
1763 GFP_KERNEL);
32b01a36
JCPV
1764
1765 if (!names) {
1766 ret = -ENOMEM;
70e41974 1767 goto clk_enable_err;
32b01a36
JCPV
1768 }
1769
1770 for (i = 0; i < chip->ngpio; i++)
1771 names[i] = kasprintf(GFP_KERNEL, "pio%c%d", alias_idx + 'A', i);
1772
3c93600d 1773 chip->names = (const char *const *)names;
32b01a36 1774
6732ae5c
JCPV
1775 range = &at91_chip->range;
1776 range->name = chip->label;
1777 range->id = alias_idx;
1778 range->pin_base = range->base = range->id * MAX_NB_GPIO_PER_BANK;
1779
1780 range->npins = chip->ngpio;
1781 range->gc = chip;
1782
1783 ret = gpiochip_add(chip);
1784 if (ret)
70e41974 1785 goto gpiochip_add_err;
6732ae5c
JCPV
1786
1787 gpio_chips[alias_idx] = at91_chip;
1788 gpio_banks = max(gpio_banks, alias_idx + 1);
1789
834e1678
PG
1790 ret = at91_gpio_of_irq_setup(pdev, at91_chip);
1791 if (ret)
1792 goto irq_setup_err;
6732ae5c
JCPV
1793
1794 dev_info(&pdev->dev, "at address %p\n", at91_chip->regbase);
1795
1796 return 0;
1797
834e1678
PG
1798irq_setup_err:
1799 gpiochip_remove(chip);
70e41974
PG
1800gpiochip_add_err:
1801 clk_disable(at91_chip->clock);
1802clk_enable_err:
6732ae5c 1803 clk_unprepare(at91_chip->clock);
70e41974 1804clk_prepare_err:
6732ae5c
JCPV
1805err:
1806 dev_err(&pdev->dev, "Failure %i for GPIO %i\n", ret, alias_idx);
1807
1808 return ret;
1809}
1810
1811static struct platform_driver at91_gpio_driver = {
1812 .driver = {
1813 .name = "gpio-at91",
606fca94 1814 .of_match_table = at91_gpio_of_match,
6732ae5c
JCPV
1815 },
1816 .probe = at91_gpio_probe,
1817};
1818
1819static struct platform_driver at91_pinctrl_driver = {
1820 .driver = {
1821 .name = "pinctrl-at91",
606fca94 1822 .of_match_table = at91_pinctrl_of_match,
6732ae5c
JCPV
1823 },
1824 .probe = at91_pinctrl_probe,
150632b0 1825 .remove = at91_pinctrl_remove,
6732ae5c
JCPV
1826};
1827
1828static int __init at91_pinctrl_init(void)
1829{
1830 int ret;
1831
1832 ret = platform_driver_register(&at91_gpio_driver);
1833 if (ret)
1834 return ret;
1835 return platform_driver_register(&at91_pinctrl_driver);
1836}
1837arch_initcall(at91_pinctrl_init);
1838
1839static void __exit at91_pinctrl_exit(void)
1840{
1841 platform_driver_unregister(&at91_pinctrl_driver);
1842}
1843
1844module_exit(at91_pinctrl_exit);
1845MODULE_AUTHOR("Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>");
1846MODULE_DESCRIPTION("Atmel AT91 pinctrl driver");
1847MODULE_LICENSE("GPL v2");