blob: ecf77eb3d69e56d857e69d090fe6b4cd78956fc7 [file] [log] [blame]
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001/*
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>
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +080019#include <linux/io.h>
20#include <linux/gpio.h>
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +080021#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
Alexandre Bellonic654b6bf2014-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 */
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +080045 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
Jean-Christophe PLAGNIOL-VILLARD525fae22012-10-23 18:28:00 +020054#define PULL_UP (1 << 0)
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +080055#define MULTI_DRIVE (1 << 1)
Jean-Christophe PLAGNIOL-VILLARD7ebd7a32012-09-26 14:57:45 +080056#define DEGLITCH (1 << 2)
57#define PULL_DOWN (1 << 3)
58#define DIS_SCHMIT (1 << 4)
Marek Roszko4334ac22014-08-23 23:12:04 -040059#define DRIVE_STRENGTH_SHIFT 5
60#define DRIVE_STRENGTH_MASK 0x3
61#define DRIVE_STRENGTH (DRIVE_STRENGTH_MASK << DRIVE_STRENGTH_SHIFT)
Jean-Christophe PLAGNIOL-VILLARD7ebd7a32012-09-26 14:57:45 +080062#define DEBOUNCE (1 << 16)
63#define DEBOUNCE_VAL_SHIFT 17
64#define DEBOUNCE_VAL (0x3fff << DEBOUNCE_VAL_SHIFT)
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +080065
66/**
Marek Roszko4334ac22014-08-23 23:12:04 -040067 * 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
80/**
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +080081 * 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/**
Alexandre Bellonic2eb9e72013-12-07 14:08:52 +0100132 * struct at91_pinctrl_mux_ops - describes an AT91 mux ops group
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800133 * 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
Jean-Christophe PLAGNIOL-VILLARD7ebd7a32012-09-26 14:57:45 +0800142 * @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
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800150 * @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);
Jean-Christophe PLAGNIOL-VILLARD7ebd7a32012-09-26 14:57:45 +0800158 bool (*get_deglitch)(void __iomem *pio, unsigned pin);
Boris BREZILLON77966ad2013-09-13 09:45:33 +0200159 void (*set_deglitch)(void __iomem *pio, unsigned mask, bool is_on);
Jean-Christophe PLAGNIOL-VILLARD7ebd7a32012-09-26 14:57:45 +0800160 bool (*get_debounce)(void __iomem *pio, unsigned pin, u32 *div);
Boris BREZILLON77966ad2013-09-13 09:45:33 +0200161 void (*set_debounce)(void __iomem *pio, unsigned mask, bool is_on, u32 div);
Jean-Christophe PLAGNIOL-VILLARD7ebd7a32012-09-26 14:57:45 +0800162 bool (*get_pulldown)(void __iomem *pio, unsigned pin);
Boris BREZILLON77966ad2013-09-13 09:45:33 +0200163 void (*set_pulldown)(void __iomem *pio, unsigned mask, bool is_on);
Jean-Christophe PLAGNIOL-VILLARD7ebd7a32012-09-26 14:57:45 +0800164 bool (*get_schmitt_trig)(void __iomem *pio, unsigned pin);
165 void (*disable_schmitt_trig)(void __iomem *pio, unsigned mask);
Marek Roszko4334ac22014-08-23 23:12:04 -0400166 unsigned (*get_drivestrength)(void __iomem *pio, unsigned pin);
167 void (*set_drivestrength)(void __iomem *pio, unsigned pin,
168 u32 strength);
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800169 /* 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
Jean-Christophe PLAGNIOL-VILLARDa0b957f2015-01-16 16:31:05 +0100180 int nactive_banks;
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800181
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;
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800259
260 /*
Alexandre Belloni61e310a2013-10-16 16:12:33 +0200261 * first find the group of this node and check if we need to create
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800262 * 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) {
Julia Lawallc62b2b32012-12-12 15:22:44 +0100282 devm_kfree(pctldev->dev, new_map);
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800283 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++) {
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800293 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
Laurent Pinchart022ab142013-02-16 10:25:07 +0100311static const struct pinctrl_ops at91_pctrl_ops = {
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800312 .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
Sachin Kamat3c936002013-03-15 10:07:03 +0530320static void __iomem *pin_to_controller(struct at91_pinctrl *info,
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800321 unsigned int bank)
322{
323 return gpio_chips[bank]->regbase;
324}
325
326static inline int pin_to_bank(unsigned pin)
327{
328 return pin /= MAX_NB_GPIO_PER_BANK;
329}
330
331static unsigned pin_to_mask(unsigned int pin)
332{
333 return 1 << pin;
334}
335
Marek Roszko4334ac22014-08-23 23:12:04 -0400336static unsigned two_bit_pin_value_shift_amount(unsigned int pin)
337{
338 /* return the shift value for a pin for "two bit" per pin registers,
339 * i.e. drive strength */
340 return 2*((pin >= MAX_NB_GPIO_PER_BANK/2)
341 ? pin - MAX_NB_GPIO_PER_BANK/2 : pin);
342}
343
344static unsigned sama5d3_get_drive_register(unsigned int pin)
345{
346 /* drive strength is split between two registers
347 * with two bits per pin */
348 return (pin >= MAX_NB_GPIO_PER_BANK/2)
349 ? SAMA5D3_PIO_DRIVER2 : SAMA5D3_PIO_DRIVER1;
350}
351
352static unsigned at91sam9x5_get_drive_register(unsigned int pin)
353{
354 /* drive strength is split between two registers
355 * with two bits per pin */
356 return (pin >= MAX_NB_GPIO_PER_BANK/2)
357 ? AT91SAM9X5_PIO_DRIVER2 : AT91SAM9X5_PIO_DRIVER1;
358}
359
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800360static void at91_mux_disable_interrupt(void __iomem *pio, unsigned mask)
361{
362 writel_relaxed(mask, pio + PIO_IDR);
363}
364
365static unsigned at91_mux_get_pullup(void __iomem *pio, unsigned pin)
366{
Boris BREZILLON05d35342013-08-27 15:19:21 +0200367 return !((readl_relaxed(pio + PIO_PUSR) >> pin) & 0x1);
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800368}
369
370static void at91_mux_set_pullup(void __iomem *pio, unsigned mask, bool on)
371{
Wenyou Yang3d784272014-09-11 16:40:15 +0200372 if (on)
373 writel_relaxed(mask, pio + PIO_PPDDR);
374
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800375 writel_relaxed(mask, pio + (on ? PIO_PUER : PIO_PUDR));
376}
377
378static unsigned at91_mux_get_multidrive(void __iomem *pio, unsigned pin)
379{
380 return (readl_relaxed(pio + PIO_MDSR) >> pin) & 0x1;
381}
382
383static void at91_mux_set_multidrive(void __iomem *pio, unsigned mask, bool on)
384{
385 writel_relaxed(mask, pio + (on ? PIO_MDER : PIO_MDDR));
386}
387
388static void at91_mux_set_A_periph(void __iomem *pio, unsigned mask)
389{
390 writel_relaxed(mask, pio + PIO_ASR);
391}
392
393static void at91_mux_set_B_periph(void __iomem *pio, unsigned mask)
394{
395 writel_relaxed(mask, pio + PIO_BSR);
396}
397
398static void at91_mux_pio3_set_A_periph(void __iomem *pio, unsigned mask)
399{
400
401 writel_relaxed(readl_relaxed(pio + PIO_ABCDSR1) & ~mask,
402 pio + PIO_ABCDSR1);
403 writel_relaxed(readl_relaxed(pio + PIO_ABCDSR2) & ~mask,
404 pio + PIO_ABCDSR2);
405}
406
407static void at91_mux_pio3_set_B_periph(void __iomem *pio, unsigned mask)
408{
409 writel_relaxed(readl_relaxed(pio + PIO_ABCDSR1) | mask,
410 pio + PIO_ABCDSR1);
411 writel_relaxed(readl_relaxed(pio + PIO_ABCDSR2) & ~mask,
412 pio + PIO_ABCDSR2);
413}
414
415static void at91_mux_pio3_set_C_periph(void __iomem *pio, unsigned mask)
416{
417 writel_relaxed(readl_relaxed(pio + PIO_ABCDSR1) & ~mask, pio + PIO_ABCDSR1);
418 writel_relaxed(readl_relaxed(pio + PIO_ABCDSR2) | mask, pio + PIO_ABCDSR2);
419}
420
421static void at91_mux_pio3_set_D_periph(void __iomem *pio, unsigned mask)
422{
423 writel_relaxed(readl_relaxed(pio + PIO_ABCDSR1) | mask, pio + PIO_ABCDSR1);
424 writel_relaxed(readl_relaxed(pio + PIO_ABCDSR2) | mask, pio + PIO_ABCDSR2);
425}
426
427static enum at91_mux at91_mux_pio3_get_periph(void __iomem *pio, unsigned mask)
428{
429 unsigned select;
430
431 if (readl_relaxed(pio + PIO_PSR) & mask)
432 return AT91_MUX_GPIO;
433
434 select = !!(readl_relaxed(pio + PIO_ABCDSR1) & mask);
435 select |= (!!(readl_relaxed(pio + PIO_ABCDSR2) & mask) << 1);
436
437 return select + 1;
438}
439
440static enum at91_mux at91_mux_get_periph(void __iomem *pio, unsigned mask)
441{
442 unsigned select;
443
444 if (readl_relaxed(pio + PIO_PSR) & mask)
445 return AT91_MUX_GPIO;
446
447 select = readl_relaxed(pio + PIO_ABSR) & mask;
448
449 return select + 1;
450}
451
Jean-Christophe PLAGNIOL-VILLARD7ebd7a32012-09-26 14:57:45 +0800452static bool at91_mux_get_deglitch(void __iomem *pio, unsigned pin)
453{
Ben Dooksd480239b2015-03-26 12:18:49 +0000454 return (readl_relaxed(pio + PIO_IFSR) >> pin) & 0x1;
Jean-Christophe PLAGNIOL-VILLARD7ebd7a32012-09-26 14:57:45 +0800455}
456
457static void at91_mux_set_deglitch(void __iomem *pio, unsigned mask, bool is_on)
458{
Ben Dooksd480239b2015-03-26 12:18:49 +0000459 writel_relaxed(mask, pio + (is_on ? PIO_IFER : PIO_IFDR));
Jean-Christophe PLAGNIOL-VILLARD7ebd7a32012-09-26 14:57:45 +0800460}
461
Boris BREZILLONc8dba022013-09-13 09:47:22 +0200462static bool at91_mux_pio3_get_deglitch(void __iomem *pio, unsigned pin)
463{
Ben Dooksd480239b2015-03-26 12:18:49 +0000464 if ((readl_relaxed(pio + PIO_IFSR) >> pin) & 0x1)
465 return !((readl_relaxed(pio + PIO_IFSCSR) >> pin) & 0x1);
Boris BREZILLONc8dba022013-09-13 09:47:22 +0200466
467 return false;
468}
469
Jean-Christophe PLAGNIOL-VILLARD7ebd7a32012-09-26 14:57:45 +0800470static void at91_mux_pio3_set_deglitch(void __iomem *pio, unsigned mask, bool is_on)
471{
472 if (is_on)
Ben Dooksd480239b2015-03-26 12:18:49 +0000473 writel_relaxed(mask, pio + PIO_IFSCDR);
Jean-Christophe PLAGNIOL-VILLARD7ebd7a32012-09-26 14:57:45 +0800474 at91_mux_set_deglitch(pio, mask, is_on);
475}
476
477static bool at91_mux_pio3_get_debounce(void __iomem *pio, unsigned pin, u32 *div)
478{
Ben Dooksd480239b2015-03-26 12:18:49 +0000479 *div = readl_relaxed(pio + PIO_SCDR);
Jean-Christophe PLAGNIOL-VILLARD7ebd7a32012-09-26 14:57:45 +0800480
Ben Dooksd480239b2015-03-26 12:18:49 +0000481 return ((readl_relaxed(pio + PIO_IFSR) >> pin) & 0x1) &&
482 ((readl_relaxed(pio + PIO_IFSCSR) >> pin) & 0x1);
Jean-Christophe PLAGNIOL-VILLARD7ebd7a32012-09-26 14:57:45 +0800483}
484
485static void at91_mux_pio3_set_debounce(void __iomem *pio, unsigned mask,
486 bool is_on, u32 div)
487{
488 if (is_on) {
Ben Dooksd480239b2015-03-26 12:18:49 +0000489 writel_relaxed(mask, pio + PIO_IFSCER);
490 writel_relaxed(div & PIO_SCDR_DIV, pio + PIO_SCDR);
491 writel_relaxed(mask, pio + PIO_IFER);
Boris BREZILLONc8dba022013-09-13 09:47:22 +0200492 } else
Ben Dooksd480239b2015-03-26 12:18:49 +0000493 writel_relaxed(mask, pio + PIO_IFSCDR);
Jean-Christophe PLAGNIOL-VILLARD7ebd7a32012-09-26 14:57:45 +0800494}
495
496static bool at91_mux_pio3_get_pulldown(void __iomem *pio, unsigned pin)
497{
Ben Dooksd480239b2015-03-26 12:18:49 +0000498 return !((readl_relaxed(pio + PIO_PPDSR) >> pin) & 0x1);
Jean-Christophe PLAGNIOL-VILLARD7ebd7a32012-09-26 14:57:45 +0800499}
500
501static void at91_mux_pio3_set_pulldown(void __iomem *pio, unsigned mask, bool is_on)
502{
Wenyou Yang3d784272014-09-11 16:40:15 +0200503 if (is_on)
Ben Dooksd480239b2015-03-26 12:18:49 +0000504 writel_relaxed(mask, pio + PIO_PUDR);
Wenyou Yang3d784272014-09-11 16:40:15 +0200505
Ben Dooksd480239b2015-03-26 12:18:49 +0000506 writel_relaxed(mask, pio + (is_on ? PIO_PPDER : PIO_PPDDR));
Jean-Christophe PLAGNIOL-VILLARD7ebd7a32012-09-26 14:57:45 +0800507}
508
509static void at91_mux_pio3_disable_schmitt_trig(void __iomem *pio, unsigned mask)
510{
Ben Dooksd480239b2015-03-26 12:18:49 +0000511 writel_relaxed(readl_relaxed(pio + PIO_SCHMITT) | mask, pio + PIO_SCHMITT);
Jean-Christophe PLAGNIOL-VILLARD7ebd7a32012-09-26 14:57:45 +0800512}
513
514static bool at91_mux_pio3_get_schmitt_trig(void __iomem *pio, unsigned pin)
515{
Ben Dooksd480239b2015-03-26 12:18:49 +0000516 return (readl_relaxed(pio + PIO_SCHMITT) >> pin) & 0x1;
Jean-Christophe PLAGNIOL-VILLARD7ebd7a32012-09-26 14:57:45 +0800517}
518
Marek Roszko4334ac22014-08-23 23:12:04 -0400519static inline u32 read_drive_strength(void __iomem *reg, unsigned pin)
520{
Ben Dooksd480239b2015-03-26 12:18:49 +0000521 unsigned tmp = readl_relaxed(reg);
Marek Roszko4334ac22014-08-23 23:12:04 -0400522
523 tmp = tmp >> two_bit_pin_value_shift_amount(pin);
524
525 return tmp & DRIVE_STRENGTH_MASK;
526}
527
528static unsigned at91_mux_sama5d3_get_drivestrength(void __iomem *pio,
529 unsigned pin)
530{
531 unsigned tmp = read_drive_strength(pio +
532 sama5d3_get_drive_register(pin), pin);
533
534 /* SAMA5 strength is 1:1 with our defines,
535 * except 0 is equivalent to low per datasheet */
536 if (!tmp)
537 tmp = DRIVE_STRENGTH_LOW;
538
539 return tmp;
540}
541
542static unsigned at91_mux_sam9x5_get_drivestrength(void __iomem *pio,
543 unsigned pin)
544{
545 unsigned tmp = read_drive_strength(pio +
546 at91sam9x5_get_drive_register(pin), pin);
547
548 /* strength is inverse in SAM9x5s hardware with the pinctrl defines
549 * hardware: 0 = hi, 1 = med, 2 = low, 3 = rsvd */
550 tmp = DRIVE_STRENGTH_HI - tmp;
551
552 return tmp;
553}
554
555static void set_drive_strength(void __iomem *reg, unsigned pin, u32 strength)
556{
Ben Dooksd480239b2015-03-26 12:18:49 +0000557 unsigned tmp = readl_relaxed(reg);
Marek Roszko4334ac22014-08-23 23:12:04 -0400558 unsigned shift = two_bit_pin_value_shift_amount(pin);
559
560 tmp &= ~(DRIVE_STRENGTH_MASK << shift);
561 tmp |= strength << shift;
562
Ben Dooksd480239b2015-03-26 12:18:49 +0000563 writel_relaxed(tmp, reg);
Marek Roszko4334ac22014-08-23 23:12:04 -0400564}
565
566static void at91_mux_sama5d3_set_drivestrength(void __iomem *pio, unsigned pin,
567 u32 setting)
568{
569 /* do nothing if setting is zero */
570 if (!setting)
571 return;
572
573 /* strength is 1 to 1 with setting for SAMA5 */
574 set_drive_strength(pio + sama5d3_get_drive_register(pin), pin, setting);
575}
576
577static void at91_mux_sam9x5_set_drivestrength(void __iomem *pio, unsigned pin,
578 u32 setting)
579{
580 /* do nothing if setting is zero */
581 if (!setting)
582 return;
583
584 /* strength is inverse on SAM9x5s with our defines
585 * 0 = hi, 1 = med, 2 = low, 3 = rsvd */
586 setting = DRIVE_STRENGTH_HI - setting;
587
588 set_drive_strength(pio + at91sam9x5_get_drive_register(pin), pin,
589 setting);
590}
591
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800592static struct at91_pinctrl_mux_ops at91rm9200_ops = {
593 .get_periph = at91_mux_get_periph,
594 .mux_A_periph = at91_mux_set_A_periph,
595 .mux_B_periph = at91_mux_set_B_periph,
Jean-Christophe PLAGNIOL-VILLARD7ebd7a32012-09-26 14:57:45 +0800596 .get_deglitch = at91_mux_get_deglitch,
597 .set_deglitch = at91_mux_set_deglitch,
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800598 .irq_type = gpio_irq_type,
599};
600
601static struct at91_pinctrl_mux_ops at91sam9x5_ops = {
602 .get_periph = at91_mux_pio3_get_periph,
603 .mux_A_periph = at91_mux_pio3_set_A_periph,
604 .mux_B_periph = at91_mux_pio3_set_B_periph,
605 .mux_C_periph = at91_mux_pio3_set_C_periph,
606 .mux_D_periph = at91_mux_pio3_set_D_periph,
Boris BREZILLONc8dba022013-09-13 09:47:22 +0200607 .get_deglitch = at91_mux_pio3_get_deglitch,
Jean-Christophe PLAGNIOL-VILLARD7ebd7a32012-09-26 14:57:45 +0800608 .set_deglitch = at91_mux_pio3_set_deglitch,
609 .get_debounce = at91_mux_pio3_get_debounce,
610 .set_debounce = at91_mux_pio3_set_debounce,
611 .get_pulldown = at91_mux_pio3_get_pulldown,
612 .set_pulldown = at91_mux_pio3_set_pulldown,
613 .get_schmitt_trig = at91_mux_pio3_get_schmitt_trig,
614 .disable_schmitt_trig = at91_mux_pio3_disable_schmitt_trig,
Marek Roszko4334ac22014-08-23 23:12:04 -0400615 .get_drivestrength = at91_mux_sam9x5_get_drivestrength,
616 .set_drivestrength = at91_mux_sam9x5_set_drivestrength,
617 .irq_type = alt_gpio_irq_type,
618};
619
620static struct at91_pinctrl_mux_ops sama5d3_ops = {
621 .get_periph = at91_mux_pio3_get_periph,
622 .mux_A_periph = at91_mux_pio3_set_A_periph,
623 .mux_B_periph = at91_mux_pio3_set_B_periph,
624 .mux_C_periph = at91_mux_pio3_set_C_periph,
625 .mux_D_periph = at91_mux_pio3_set_D_periph,
626 .get_deglitch = at91_mux_pio3_get_deglitch,
627 .set_deglitch = at91_mux_pio3_set_deglitch,
628 .get_debounce = at91_mux_pio3_get_debounce,
629 .set_debounce = at91_mux_pio3_set_debounce,
630 .get_pulldown = at91_mux_pio3_get_pulldown,
631 .set_pulldown = at91_mux_pio3_set_pulldown,
632 .get_schmitt_trig = at91_mux_pio3_get_schmitt_trig,
633 .disable_schmitt_trig = at91_mux_pio3_disable_schmitt_trig,
634 .get_drivestrength = at91_mux_sama5d3_get_drivestrength,
635 .set_drivestrength = at91_mux_sama5d3_set_drivestrength,
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800636 .irq_type = alt_gpio_irq_type,
637};
638
639static void at91_pin_dbg(const struct device *dev, const struct at91_pmx_pin *pin)
640{
641 if (pin->mux) {
Hans Wennborg4b6fe452014-08-05 21:43:16 -0700642 dev_dbg(dev, "pio%c%d configured as periph%c with conf = 0x%lx\n",
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800643 pin->bank + 'A', pin->pin, pin->mux - 1 + 'A', pin->conf);
644 } else {
Hans Wennborg4b6fe452014-08-05 21:43:16 -0700645 dev_dbg(dev, "pio%c%d configured as gpio with conf = 0x%lx\n",
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800646 pin->bank + 'A', pin->pin, pin->conf);
647 }
648}
649
Sachin Kamat3c936002013-03-15 10:07:03 +0530650static int pin_check_config(struct at91_pinctrl *info, const char *name,
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800651 int index, const struct at91_pmx_pin *pin)
652{
653 int mux;
654
655 /* check if it's a valid config */
Jean-Christophe PLAGNIOL-VILLARDa0b957f2015-01-16 16:31:05 +0100656 if (pin->bank >= gpio_banks) {
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800657 dev_err(info->dev, "%s: pin conf %d bank_id %d >= nbanks %d\n",
Jean-Christophe PLAGNIOL-VILLARDa0b957f2015-01-16 16:31:05 +0100658 name, index, pin->bank, gpio_banks);
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800659 return -EINVAL;
660 }
661
Jean-Christophe PLAGNIOL-VILLARDa0b957f2015-01-16 16:31:05 +0100662 if (!gpio_chips[pin->bank]) {
663 dev_err(info->dev, "%s: pin conf %d bank_id %d not enabled\n",
664 name, index, pin->bank);
665 return -ENXIO;
666 }
667
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800668 if (pin->pin >= MAX_NB_GPIO_PER_BANK) {
669 dev_err(info->dev, "%s: pin conf %d pin_bank_id %d >= %d\n",
670 name, index, pin->pin, MAX_NB_GPIO_PER_BANK);
671 return -EINVAL;
672 }
673
674 if (!pin->mux)
675 return 0;
676
677 mux = pin->mux - 1;
678
679 if (mux >= info->nmux) {
680 dev_err(info->dev, "%s: pin conf %d mux_id %d >= nmux %d\n",
681 name, index, mux, info->nmux);
682 return -EINVAL;
683 }
684
685 if (!(info->mux_mask[pin->bank * info->nmux + mux] & 1 << pin->pin)) {
686 dev_err(info->dev, "%s: pin conf %d mux_id %d not supported for pio%c%d\n",
687 name, index, mux, pin->bank + 'A', pin->pin);
688 return -EINVAL;
689 }
690
691 return 0;
692}
693
694static void at91_mux_gpio_disable(void __iomem *pio, unsigned mask)
695{
696 writel_relaxed(mask, pio + PIO_PDR);
697}
698
699static void at91_mux_gpio_enable(void __iomem *pio, unsigned mask, bool input)
700{
701 writel_relaxed(mask, pio + PIO_PER);
702 writel_relaxed(mask, pio + (input ? PIO_ODR : PIO_OER));
703}
704
Linus Walleij03e9f0c2014-09-03 13:02:56 +0200705static int at91_pmx_set(struct pinctrl_dev *pctldev, unsigned selector,
706 unsigned group)
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800707{
708 struct at91_pinctrl *info = pinctrl_dev_get_drvdata(pctldev);
709 const struct at91_pmx_pin *pins_conf = info->groups[group].pins_conf;
710 const struct at91_pmx_pin *pin;
711 uint32_t npins = info->groups[group].npins;
712 int i, ret;
713 unsigned mask;
714 void __iomem *pio;
715
716 dev_dbg(info->dev, "enable function %s group %s\n",
717 info->functions[selector].name, info->groups[group].name);
718
719 /* first check that all the pins of the group are valid with a valid
Alexandre Belloni61e310a2013-10-16 16:12:33 +0200720 * parameter */
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800721 for (i = 0; i < npins; i++) {
722 pin = &pins_conf[i];
723 ret = pin_check_config(info, info->groups[group].name, i, pin);
724 if (ret)
725 return ret;
726 }
727
728 for (i = 0; i < npins; i++) {
729 pin = &pins_conf[i];
730 at91_pin_dbg(info->dev, pin);
731 pio = pin_to_controller(info, pin->bank);
732 mask = pin_to_mask(pin->pin);
733 at91_mux_disable_interrupt(pio, mask);
Sachin Kamat3c936002013-03-15 10:07:03 +0530734 switch (pin->mux) {
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800735 case AT91_MUX_GPIO:
736 at91_mux_gpio_enable(pio, mask, 1);
737 break;
738 case AT91_MUX_PERIPH_A:
739 info->ops->mux_A_periph(pio, mask);
740 break;
741 case AT91_MUX_PERIPH_B:
742 info->ops->mux_B_periph(pio, mask);
743 break;
744 case AT91_MUX_PERIPH_C:
745 if (!info->ops->mux_C_periph)
746 return -EINVAL;
747 info->ops->mux_C_periph(pio, mask);
748 break;
749 case AT91_MUX_PERIPH_D:
750 if (!info->ops->mux_D_periph)
751 return -EINVAL;
752 info->ops->mux_D_periph(pio, mask);
753 break;
754 }
755 if (pin->mux)
756 at91_mux_gpio_disable(pio, mask);
757 }
758
759 return 0;
760}
761
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800762static int at91_pmx_get_funcs_count(struct pinctrl_dev *pctldev)
763{
764 struct at91_pinctrl *info = pinctrl_dev_get_drvdata(pctldev);
765
766 return info->nfunctions;
767}
768
769static const char *at91_pmx_get_func_name(struct pinctrl_dev *pctldev,
770 unsigned selector)
771{
772 struct at91_pinctrl *info = pinctrl_dev_get_drvdata(pctldev);
773
774 return info->functions[selector].name;
775}
776
777static int at91_pmx_get_groups(struct pinctrl_dev *pctldev, unsigned selector,
778 const char * const **groups,
779 unsigned * const num_groups)
780{
781 struct at91_pinctrl *info = pinctrl_dev_get_drvdata(pctldev);
782
783 *groups = info->functions[selector].groups;
784 *num_groups = info->functions[selector].ngroups;
785
786 return 0;
787}
788
Axel Linf6f94f62012-11-05 21:23:50 +0800789static int at91_gpio_request_enable(struct pinctrl_dev *pctldev,
790 struct pinctrl_gpio_range *range,
791 unsigned offset)
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800792{
793 struct at91_pinctrl *npct = pinctrl_dev_get_drvdata(pctldev);
794 struct at91_gpio_chip *at91_chip;
795 struct gpio_chip *chip;
796 unsigned mask;
797
798 if (!range) {
799 dev_err(npct->dev, "invalid range\n");
800 return -EINVAL;
801 }
802 if (!range->gc) {
803 dev_err(npct->dev, "missing GPIO chip in range\n");
804 return -EINVAL;
805 }
806 chip = range->gc;
807 at91_chip = container_of(chip, struct at91_gpio_chip, chip);
808
809 dev_dbg(npct->dev, "enable pin %u as GPIO\n", offset);
810
811 mask = 1 << (offset - chip->base);
812
813 dev_dbg(npct->dev, "enable pin %u as PIO%c%d 0x%x\n",
814 offset, 'A' + range->id, offset - chip->base, mask);
815
816 writel_relaxed(mask, at91_chip->regbase + PIO_PER);
817
818 return 0;
819}
820
Axel Linf6f94f62012-11-05 21:23:50 +0800821static void at91_gpio_disable_free(struct pinctrl_dev *pctldev,
822 struct pinctrl_gpio_range *range,
823 unsigned offset)
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800824{
825 struct at91_pinctrl *npct = pinctrl_dev_get_drvdata(pctldev);
826
827 dev_dbg(npct->dev, "disable pin %u as GPIO\n", offset);
828 /* Set the pin to some default state, GPIO is usually default */
829}
830
Laurent Pinchart022ab142013-02-16 10:25:07 +0100831static const struct pinmux_ops at91_pmx_ops = {
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800832 .get_functions_count = at91_pmx_get_funcs_count,
833 .get_function_name = at91_pmx_get_func_name,
834 .get_function_groups = at91_pmx_get_groups,
Linus Walleij03e9f0c2014-09-03 13:02:56 +0200835 .set_mux = at91_pmx_set,
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800836 .gpio_request_enable = at91_gpio_request_enable,
837 .gpio_disable_free = at91_gpio_disable_free,
838};
839
840static int at91_pinconf_get(struct pinctrl_dev *pctldev,
841 unsigned pin_id, unsigned long *config)
842{
843 struct at91_pinctrl *info = pinctrl_dev_get_drvdata(pctldev);
844 void __iomem *pio;
845 unsigned pin;
Jean-Christophe PLAGNIOL-VILLARD7ebd7a32012-09-26 14:57:45 +0800846 int div;
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800847
Alexandre Belloni1292e692013-12-07 14:08:53 +0100848 *config = 0;
849 dev_dbg(info->dev, "%s:%d, pin_id=%d", __func__, __LINE__, pin_id);
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800850 pio = pin_to_controller(info, pin_to_bank(pin_id));
851 pin = pin_id % MAX_NB_GPIO_PER_BANK;
852
853 if (at91_mux_get_multidrive(pio, pin))
854 *config |= MULTI_DRIVE;
855
856 if (at91_mux_get_pullup(pio, pin))
857 *config |= PULL_UP;
858
Jean-Christophe PLAGNIOL-VILLARD7ebd7a32012-09-26 14:57:45 +0800859 if (info->ops->get_deglitch && info->ops->get_deglitch(pio, pin))
860 *config |= DEGLITCH;
861 if (info->ops->get_debounce && info->ops->get_debounce(pio, pin, &div))
862 *config |= DEBOUNCE | (div << DEBOUNCE_VAL_SHIFT);
863 if (info->ops->get_pulldown && info->ops->get_pulldown(pio, pin))
864 *config |= PULL_DOWN;
865 if (info->ops->get_schmitt_trig && info->ops->get_schmitt_trig(pio, pin))
866 *config |= DIS_SCHMIT;
Marek Roszko4334ac22014-08-23 23:12:04 -0400867 if (info->ops->get_drivestrength)
868 *config |= (info->ops->get_drivestrength(pio, pin)
869 << DRIVE_STRENGTH_SHIFT);
Jean-Christophe PLAGNIOL-VILLARD7ebd7a32012-09-26 14:57:45 +0800870
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800871 return 0;
872}
873
874static int at91_pinconf_set(struct pinctrl_dev *pctldev,
Sherman Yin03b054e2013-08-27 11:32:12 -0700875 unsigned pin_id, unsigned long *configs,
876 unsigned num_configs)
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800877{
878 struct at91_pinctrl *info = pinctrl_dev_get_drvdata(pctldev);
879 unsigned mask;
880 void __iomem *pio;
Sherman Yin03b054e2013-08-27 11:32:12 -0700881 int i;
882 unsigned long config;
Marek Roszko4334ac22014-08-23 23:12:04 -0400883 unsigned pin;
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800884
Sherman Yin03b054e2013-08-27 11:32:12 -0700885 for (i = 0; i < num_configs; i++) {
886 config = configs[i];
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800887
Sherman Yin03b054e2013-08-27 11:32:12 -0700888 dev_dbg(info->dev,
889 "%s:%d, pin_id=%d, config=0x%lx",
890 __func__, __LINE__, pin_id, config);
891 pio = pin_to_controller(info, pin_to_bank(pin_id));
Marek Roszko4334ac22014-08-23 23:12:04 -0400892 pin = pin_id % MAX_NB_GPIO_PER_BANK;
893 mask = pin_to_mask(pin);
Jean-Christophe PLAGNIOL-VILLARD7ebd7a32012-09-26 14:57:45 +0800894
Sherman Yin03b054e2013-08-27 11:32:12 -0700895 if (config & PULL_UP && config & PULL_DOWN)
896 return -EINVAL;
897
898 at91_mux_set_pullup(pio, mask, config & PULL_UP);
899 at91_mux_set_multidrive(pio, mask, config & MULTI_DRIVE);
900 if (info->ops->set_deglitch)
901 info->ops->set_deglitch(pio, mask, config & DEGLITCH);
902 if (info->ops->set_debounce)
903 info->ops->set_debounce(pio, mask, config & DEBOUNCE,
Jean-Christophe PLAGNIOL-VILLARD7ebd7a32012-09-26 14:57:45 +0800904 (config & DEBOUNCE_VAL) >> DEBOUNCE_VAL_SHIFT);
Sherman Yin03b054e2013-08-27 11:32:12 -0700905 if (info->ops->set_pulldown)
906 info->ops->set_pulldown(pio, mask, config & PULL_DOWN);
907 if (info->ops->disable_schmitt_trig && config & DIS_SCHMIT)
908 info->ops->disable_schmitt_trig(pio, mask);
Marek Roszko4334ac22014-08-23 23:12:04 -0400909 if (info->ops->set_drivestrength)
910 info->ops->set_drivestrength(pio, pin,
911 (config & DRIVE_STRENGTH)
912 >> DRIVE_STRENGTH_SHIFT);
Sherman Yin03b054e2013-08-27 11:32:12 -0700913
914 } /* for each config */
Jean-Christophe PLAGNIOL-VILLARD7ebd7a32012-09-26 14:57:45 +0800915
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800916 return 0;
917}
918
Alexandre Belloni4d9b8a82013-12-07 14:08:54 +0100919#define DBG_SHOW_FLAG(flag) do { \
920 if (config & flag) { \
921 if (num_conf) \
922 seq_puts(s, "|"); \
923 seq_puts(s, #flag); \
924 num_conf++; \
925 } \
926} while (0)
927
Marek Roszko4334ac22014-08-23 23:12:04 -0400928#define DBG_SHOW_FLAG_MASKED(mask,flag) do { \
929 if ((config & mask) == flag) { \
930 if (num_conf) \
931 seq_puts(s, "|"); \
932 seq_puts(s, #flag); \
933 num_conf++; \
934 } \
935} while (0)
936
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800937static void at91_pinconf_dbg_show(struct pinctrl_dev *pctldev,
938 struct seq_file *s, unsigned pin_id)
939{
Alexandre Belloni4d9b8a82013-12-07 14:08:54 +0100940 unsigned long config;
Rickard Strandqvist445d2022014-06-26 15:41:31 +0200941 int val, num_conf = 0;
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800942
Rickard Strandqvist445d2022014-06-26 15:41:31 +0200943 at91_pinconf_get(pctldev, pin_id, &config);
Alexandre Belloni4d9b8a82013-12-07 14:08:54 +0100944
945 DBG_SHOW_FLAG(MULTI_DRIVE);
946 DBG_SHOW_FLAG(PULL_UP);
947 DBG_SHOW_FLAG(PULL_DOWN);
948 DBG_SHOW_FLAG(DIS_SCHMIT);
949 DBG_SHOW_FLAG(DEGLITCH);
Marek Roszko4334ac22014-08-23 23:12:04 -0400950 DBG_SHOW_FLAG_MASKED(DRIVE_STRENGTH, DRIVE_STRENGTH_LOW);
951 DBG_SHOW_FLAG_MASKED(DRIVE_STRENGTH, DRIVE_STRENGTH_MED);
952 DBG_SHOW_FLAG_MASKED(DRIVE_STRENGTH, DRIVE_STRENGTH_HI);
Alexandre Belloni4d9b8a82013-12-07 14:08:54 +0100953 DBG_SHOW_FLAG(DEBOUNCE);
954 if (config & DEBOUNCE) {
955 val = config >> DEBOUNCE_VAL_SHIFT;
956 seq_printf(s, "(%d)", val);
957 }
958
959 return;
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800960}
961
962static void at91_pinconf_group_dbg_show(struct pinctrl_dev *pctldev,
963 struct seq_file *s, unsigned group)
964{
965}
966
Laurent Pinchart022ab142013-02-16 10:25:07 +0100967static const struct pinconf_ops at91_pinconf_ops = {
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800968 .pin_config_get = at91_pinconf_get,
969 .pin_config_set = at91_pinconf_set,
970 .pin_config_dbg_show = at91_pinconf_dbg_show,
971 .pin_config_group_dbg_show = at91_pinconf_group_dbg_show,
972};
973
974static struct pinctrl_desc at91_pinctrl_desc = {
975 .pctlops = &at91_pctrl_ops,
976 .pmxops = &at91_pmx_ops,
977 .confops = &at91_pinconf_ops,
978 .owner = THIS_MODULE,
979};
980
981static const char *gpio_compat = "atmel,at91rm9200-gpio";
982
Greg Kroah-Hartman150632b2012-12-21 13:10:23 -0800983static void at91_pinctrl_child_count(struct at91_pinctrl *info,
984 struct device_node *np)
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800985{
986 struct device_node *child;
987
988 for_each_child_of_node(np, child) {
989 if (of_device_is_compatible(child, gpio_compat)) {
Jean-Christophe PLAGNIOL-VILLARDa0b957f2015-01-16 16:31:05 +0100990 if (of_device_is_available(child))
991 info->nactive_banks++;
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +0800992 } else {
993 info->nfunctions++;
994 info->ngroups += of_get_child_count(child);
995 }
996 }
997}
998
Greg Kroah-Hartman150632b2012-12-21 13:10:23 -0800999static int at91_pinctrl_mux_mask(struct at91_pinctrl *info,
1000 struct device_node *np)
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001001{
1002 int ret = 0;
1003 int size;
Sachin Kamat1164d732013-03-15 10:07:02 +05301004 const __be32 *list;
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001005
1006 list = of_get_property(np, "atmel,mux-mask", &size);
1007 if (!list) {
1008 dev_err(info->dev, "can not read the mux-mask of %d\n", size);
1009 return -EINVAL;
1010 }
1011
1012 size /= sizeof(*list);
Jean-Christophe PLAGNIOL-VILLARDa0b957f2015-01-16 16:31:05 +01001013 if (!size || size % gpio_banks) {
1014 dev_err(info->dev, "wrong mux mask array should be by %d\n", gpio_banks);
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001015 return -EINVAL;
1016 }
Jean-Christophe PLAGNIOL-VILLARDa0b957f2015-01-16 16:31:05 +01001017 info->nmux = size / gpio_banks;
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001018
1019 info->mux_mask = devm_kzalloc(info->dev, sizeof(u32) * size, GFP_KERNEL);
1020 if (!info->mux_mask) {
1021 dev_err(info->dev, "could not alloc mux_mask\n");
1022 return -ENOMEM;
1023 }
1024
1025 ret = of_property_read_u32_array(np, "atmel,mux-mask",
1026 info->mux_mask, size);
1027 if (ret)
1028 dev_err(info->dev, "can not read the mux-mask of %d\n", size);
1029 return ret;
1030}
1031
Greg Kroah-Hartman150632b2012-12-21 13:10:23 -08001032static int at91_pinctrl_parse_groups(struct device_node *np,
1033 struct at91_pin_group *grp,
1034 struct at91_pinctrl *info, u32 index)
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001035{
1036 struct at91_pmx_pin *pin;
1037 int size;
Sachin Kamat1164d732013-03-15 10:07:02 +05301038 const __be32 *list;
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001039 int i, j;
1040
1041 dev_dbg(info->dev, "group(%d): %s\n", index, np->name);
1042
1043 /* Initialise group */
1044 grp->name = np->name;
1045
1046 /*
1047 * the binding format is atmel,pins = <bank pin mux CONFIG ...>,
1048 * do sanity check and calculate pins number
1049 */
1050 list = of_get_property(np, "atmel,pins", &size);
1051 /* we do not check return since it's safe node passed down */
1052 size /= sizeof(*list);
1053 if (!size || size % 4) {
1054 dev_err(info->dev, "wrong pins number or pins and configs should be by 4\n");
1055 return -EINVAL;
1056 }
1057
1058 grp->npins = size / 4;
1059 pin = grp->pins_conf = devm_kzalloc(info->dev, grp->npins * sizeof(struct at91_pmx_pin),
1060 GFP_KERNEL);
1061 grp->pins = devm_kzalloc(info->dev, grp->npins * sizeof(unsigned int),
1062 GFP_KERNEL);
1063 if (!grp->pins_conf || !grp->pins)
1064 return -ENOMEM;
1065
1066 for (i = 0, j = 0; i < size; i += 4, j++) {
1067 pin->bank = be32_to_cpu(*list++);
1068 pin->pin = be32_to_cpu(*list++);
1069 grp->pins[j] = pin->bank * MAX_NB_GPIO_PER_BANK + pin->pin;
1070 pin->mux = be32_to_cpu(*list++);
1071 pin->conf = be32_to_cpu(*list++);
1072
1073 at91_pin_dbg(info->dev, pin);
1074 pin++;
1075 }
1076
1077 return 0;
1078}
1079
Greg Kroah-Hartman150632b2012-12-21 13:10:23 -08001080static int at91_pinctrl_parse_functions(struct device_node *np,
1081 struct at91_pinctrl *info, u32 index)
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001082{
1083 struct device_node *child;
1084 struct at91_pmx_func *func;
1085 struct at91_pin_group *grp;
1086 int ret;
1087 static u32 grp_index;
1088 u32 i = 0;
1089
1090 dev_dbg(info->dev, "parse function(%d): %s\n", index, np->name);
1091
1092 func = &info->functions[index];
1093
1094 /* Initialise function */
1095 func->name = np->name;
1096 func->ngroups = of_get_child_count(np);
Rickard Strandqvistca7162a2014-06-26 13:26:45 +02001097 if (func->ngroups == 0) {
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001098 dev_err(info->dev, "no groups defined\n");
1099 return -EINVAL;
1100 }
1101 func->groups = devm_kzalloc(info->dev,
1102 func->ngroups * sizeof(char *), GFP_KERNEL);
1103 if (!func->groups)
1104 return -ENOMEM;
1105
1106 for_each_child_of_node(np, child) {
1107 func->groups[i] = child->name;
1108 grp = &info->groups[grp_index++];
1109 ret = at91_pinctrl_parse_groups(child, grp, info, i++);
1110 if (ret)
1111 return ret;
1112 }
1113
1114 return 0;
1115}
1116
Fabian Frederickbaa9946e2015-03-16 20:59:09 +01001117static const struct of_device_id at91_pinctrl_of_match[] = {
Marek Roszko4334ac22014-08-23 23:12:04 -04001118 { .compatible = "atmel,sama5d3-pinctrl", .data = &sama5d3_ops },
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001119 { .compatible = "atmel,at91sam9x5-pinctrl", .data = &at91sam9x5_ops },
1120 { .compatible = "atmel,at91rm9200-pinctrl", .data = &at91rm9200_ops },
1121 { /* sentinel */ }
1122};
1123
Greg Kroah-Hartman150632b2012-12-21 13:10:23 -08001124static int at91_pinctrl_probe_dt(struct platform_device *pdev,
1125 struct at91_pinctrl *info)
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001126{
1127 int ret = 0;
1128 int i, j;
1129 uint32_t *tmp;
1130 struct device_node *np = pdev->dev.of_node;
1131 struct device_node *child;
1132
1133 if (!np)
1134 return -ENODEV;
1135
1136 info->dev = &pdev->dev;
Sachin Kamat3c936002013-03-15 10:07:03 +05301137 info->ops = (struct at91_pinctrl_mux_ops *)
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001138 of_match_device(at91_pinctrl_of_match, &pdev->dev)->data;
1139 at91_pinctrl_child_count(info, np);
1140
Jean-Christophe PLAGNIOL-VILLARDa0b957f2015-01-16 16:31:05 +01001141 if (gpio_banks < 1) {
Alexandre Belloni61e310a2013-10-16 16:12:33 +02001142 dev_err(&pdev->dev, "you need to specify at least one gpio-controller\n");
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001143 return -EINVAL;
1144 }
1145
1146 ret = at91_pinctrl_mux_mask(info, np);
1147 if (ret)
1148 return ret;
1149
1150 dev_dbg(&pdev->dev, "nmux = %d\n", info->nmux);
1151
1152 dev_dbg(&pdev->dev, "mux-mask\n");
1153 tmp = info->mux_mask;
Jean-Christophe PLAGNIOL-VILLARDa0b957f2015-01-16 16:31:05 +01001154 for (i = 0; i < gpio_banks; i++) {
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001155 for (j = 0; j < info->nmux; j++, tmp++) {
1156 dev_dbg(&pdev->dev, "%d:%d\t0x%x\n", i, j, tmp[0]);
1157 }
1158 }
1159
1160 dev_dbg(&pdev->dev, "nfunctions = %d\n", info->nfunctions);
1161 dev_dbg(&pdev->dev, "ngroups = %d\n", info->ngroups);
1162 info->functions = devm_kzalloc(&pdev->dev, info->nfunctions * sizeof(struct at91_pmx_func),
1163 GFP_KERNEL);
1164 if (!info->functions)
1165 return -ENOMEM;
1166
1167 info->groups = devm_kzalloc(&pdev->dev, info->ngroups * sizeof(struct at91_pin_group),
1168 GFP_KERNEL);
1169 if (!info->groups)
1170 return -ENOMEM;
1171
Jean-Christophe PLAGNIOL-VILLARDa0b957f2015-01-16 16:31:05 +01001172 dev_dbg(&pdev->dev, "nbanks = %d\n", gpio_banks);
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001173 dev_dbg(&pdev->dev, "nfunctions = %d\n", info->nfunctions);
1174 dev_dbg(&pdev->dev, "ngroups = %d\n", info->ngroups);
1175
1176 i = 0;
1177
1178 for_each_child_of_node(np, child) {
1179 if (of_device_is_compatible(child, gpio_compat))
1180 continue;
1181 ret = at91_pinctrl_parse_functions(child, info, i++);
1182 if (ret) {
1183 dev_err(&pdev->dev, "failed to parse function\n");
1184 return ret;
1185 }
1186 }
1187
1188 return 0;
1189}
1190
Greg Kroah-Hartman150632b2012-12-21 13:10:23 -08001191static int at91_pinctrl_probe(struct platform_device *pdev)
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001192{
1193 struct at91_pinctrl *info;
1194 struct pinctrl_pin_desc *pdesc;
Jean-Christophe PLAGNIOL-VILLARDa0b957f2015-01-16 16:31:05 +01001195 int ret, i, j, k, ngpio_chips_enabled = 0;
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001196
1197 info = devm_kzalloc(&pdev->dev, sizeof(*info), GFP_KERNEL);
1198 if (!info)
1199 return -ENOMEM;
1200
1201 ret = at91_pinctrl_probe_dt(pdev, info);
1202 if (ret)
1203 return ret;
1204
1205 /*
1206 * We need all the GPIO drivers to probe FIRST, or we will not be able
1207 * to obtain references to the struct gpio_chip * for them, and we
1208 * need this to proceed.
1209 */
Jean-Christophe PLAGNIOL-VILLARDa0b957f2015-01-16 16:31:05 +01001210 for (i = 0; i < gpio_banks; i++)
1211 if (gpio_chips[i])
1212 ngpio_chips_enabled++;
1213
1214 if (ngpio_chips_enabled < info->nactive_banks) {
1215 dev_warn(&pdev->dev,
1216 "All GPIO chips are not registered yet (%d/%d)\n",
1217 ngpio_chips_enabled, info->nactive_banks);
1218 devm_kfree(&pdev->dev, info);
1219 return -EPROBE_DEFER;
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001220 }
1221
1222 at91_pinctrl_desc.name = dev_name(&pdev->dev);
Jean-Christophe PLAGNIOL-VILLARDa0b957f2015-01-16 16:31:05 +01001223 at91_pinctrl_desc.npins = gpio_banks * MAX_NB_GPIO_PER_BANK;
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001224 at91_pinctrl_desc.pins = pdesc =
1225 devm_kzalloc(&pdev->dev, sizeof(*pdesc) * at91_pinctrl_desc.npins, GFP_KERNEL);
1226
1227 if (!at91_pinctrl_desc.pins)
1228 return -ENOMEM;
1229
Jean-Christophe PLAGNIOL-VILLARDa0b957f2015-01-16 16:31:05 +01001230 for (i = 0, k = 0; i < gpio_banks; i++) {
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001231 for (j = 0; j < MAX_NB_GPIO_PER_BANK; j++, k++) {
1232 pdesc->number = k;
1233 pdesc->name = kasprintf(GFP_KERNEL, "pio%c%d", i + 'A', j);
1234 pdesc++;
1235 }
1236 }
1237
1238 platform_set_drvdata(pdev, info);
1239 info->pctl = pinctrl_register(&at91_pinctrl_desc, &pdev->dev, info);
1240
1241 if (!info->pctl) {
1242 dev_err(&pdev->dev, "could not register AT91 pinctrl driver\n");
Baruch Siach11131ba2015-03-02 19:28:45 +02001243 return -EINVAL;
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001244 }
1245
1246 /* We will handle a range of GPIO pins */
Jean-Christophe PLAGNIOL-VILLARDa0b957f2015-01-16 16:31:05 +01001247 for (i = 0; i < gpio_banks; i++)
1248 if (gpio_chips[i])
1249 pinctrl_add_gpio_range(info->pctl, &gpio_chips[i]->range);
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001250
1251 dev_info(&pdev->dev, "initialized AT91 pinctrl driver\n");
1252
1253 return 0;
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001254}
1255
Greg Kroah-Hartman150632b2012-12-21 13:10:23 -08001256static int at91_pinctrl_remove(struct platform_device *pdev)
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001257{
1258 struct at91_pinctrl *info = platform_get_drvdata(pdev);
1259
1260 pinctrl_unregister(info->pctl);
1261
1262 return 0;
1263}
1264
1265static int at91_gpio_request(struct gpio_chip *chip, unsigned offset)
1266{
1267 /*
1268 * Map back to global GPIO space and request muxing, the direction
1269 * parameter does not matter for this controller.
1270 */
1271 int gpio = chip->base + offset;
1272 int bank = chip->base / chip->ngpio;
1273
1274 dev_dbg(chip->dev, "%s:%d pio%c%d(%d)\n", __func__, __LINE__,
1275 'A' + bank, offset, gpio);
1276
1277 return pinctrl_request_gpio(gpio);
1278}
1279
1280static void at91_gpio_free(struct gpio_chip *chip, unsigned offset)
1281{
1282 int gpio = chip->base + offset;
1283
1284 pinctrl_free_gpio(gpio);
1285}
1286
Richard Genoud8af584b2014-02-17 17:57:26 +01001287static int at91_gpio_get_direction(struct gpio_chip *chip, unsigned offset)
1288{
1289 struct at91_gpio_chip *at91_gpio = to_at91_gpio_chip(chip);
1290 void __iomem *pio = at91_gpio->regbase;
1291 unsigned mask = 1 << offset;
1292 u32 osr;
1293
1294 osr = readl_relaxed(pio + PIO_OSR);
1295 return !(osr & mask);
1296}
1297
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001298static int at91_gpio_direction_input(struct gpio_chip *chip, unsigned offset)
1299{
1300 struct at91_gpio_chip *at91_gpio = to_at91_gpio_chip(chip);
1301 void __iomem *pio = at91_gpio->regbase;
1302 unsigned mask = 1 << offset;
1303
1304 writel_relaxed(mask, pio + PIO_ODR);
1305 return 0;
1306}
1307
1308static int at91_gpio_get(struct gpio_chip *chip, unsigned offset)
1309{
1310 struct at91_gpio_chip *at91_gpio = to_at91_gpio_chip(chip);
1311 void __iomem *pio = at91_gpio->regbase;
1312 unsigned mask = 1 << offset;
1313 u32 pdsr;
1314
1315 pdsr = readl_relaxed(pio + PIO_PDSR);
1316 return (pdsr & mask) != 0;
1317}
1318
1319static void at91_gpio_set(struct gpio_chip *chip, unsigned offset,
1320 int val)
1321{
1322 struct at91_gpio_chip *at91_gpio = to_at91_gpio_chip(chip);
1323 void __iomem *pio = at91_gpio->regbase;
1324 unsigned mask = 1 << offset;
1325
1326 writel_relaxed(mask, pio + (val ? PIO_SODR : PIO_CODR));
1327}
1328
1329static int at91_gpio_direction_output(struct gpio_chip *chip, unsigned offset,
1330 int val)
1331{
1332 struct at91_gpio_chip *at91_gpio = to_at91_gpio_chip(chip);
1333 void __iomem *pio = at91_gpio->regbase;
1334 unsigned mask = 1 << offset;
1335
1336 writel_relaxed(mask, pio + (val ? PIO_SODR : PIO_CODR));
1337 writel_relaxed(mask, pio + PIO_OER);
1338
1339 return 0;
1340}
1341
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001342#ifdef CONFIG_DEBUG_FS
1343static void at91_gpio_dbg_show(struct seq_file *s, struct gpio_chip *chip)
1344{
1345 enum at91_mux mode;
1346 int i;
1347 struct at91_gpio_chip *at91_gpio = to_at91_gpio_chip(chip);
1348 void __iomem *pio = at91_gpio->regbase;
1349
1350 for (i = 0; i < chip->ngpio; i++) {
Alexander Stein47f22712014-04-14 20:53:08 +02001351 unsigned mask = pin_to_mask(i);
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001352 const char *gpio_label;
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001353
1354 gpio_label = gpiochip_is_requested(chip, i);
1355 if (!gpio_label)
1356 continue;
1357 mode = at91_gpio->ops->get_periph(pio, mask);
1358 seq_printf(s, "[%s] GPIO%s%d: ",
1359 gpio_label, chip->label, i);
1360 if (mode == AT91_MUX_GPIO) {
Matthieu Crapet853b6bf2014-11-18 15:43:45 +01001361 seq_printf(s, "[gpio] ");
1362 seq_printf(s, "%s ",
1363 readl_relaxed(pio + PIO_OSR) & mask ?
1364 "output" : "input");
1365 seq_printf(s, "%s\n",
1366 readl_relaxed(pio + PIO_PDSR) & mask ?
1367 "set" : "clear");
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001368 } else {
1369 seq_printf(s, "[periph %c]\n",
1370 mode + 'A' - 1);
1371 }
1372 }
1373}
1374#else
1375#define at91_gpio_dbg_show NULL
1376#endif
1377
1378/* Several AIC controller irqs are dispatched through this GPIO handler.
1379 * To use any AT91_PIN_* as an externally triggered IRQ, first call
1380 * at91_set_gpio_input() then maybe enable its glitch filter.
1381 * Then just request_irq() with the pin ID; it works like any ARM IRQ
1382 * handler.
1383 * First implementation always triggers on rising and falling edges
1384 * whereas the newer PIO3 can be additionally configured to trigger on
1385 * level, edge with any polarity.
1386 *
1387 * Alternatively, certain pins may be used directly as IRQ0..IRQ6 after
1388 * configuring them with at91_set_a_periph() or at91_set_b_periph().
1389 * IRQ0..IRQ6 should be configurable, e.g. level vs edge triggering.
1390 */
1391
1392static void gpio_irq_mask(struct irq_data *d)
1393{
1394 struct at91_gpio_chip *at91_gpio = irq_data_get_irq_chip_data(d);
1395 void __iomem *pio = at91_gpio->regbase;
1396 unsigned mask = 1 << d->hwirq;
1397
1398 if (pio)
1399 writel_relaxed(mask, pio + PIO_IDR);
1400}
1401
1402static void gpio_irq_unmask(struct irq_data *d)
1403{
1404 struct at91_gpio_chip *at91_gpio = irq_data_get_irq_chip_data(d);
1405 void __iomem *pio = at91_gpio->regbase;
1406 unsigned mask = 1 << d->hwirq;
1407
1408 if (pio)
1409 writel_relaxed(mask, pio + PIO_IER);
1410}
1411
1412static int gpio_irq_type(struct irq_data *d, unsigned type)
1413{
1414 switch (type) {
1415 case IRQ_TYPE_NONE:
1416 case IRQ_TYPE_EDGE_BOTH:
1417 return 0;
1418 default:
1419 return -EINVAL;
1420 }
1421}
1422
1423/* Alternate irq type for PIO3 support */
1424static int alt_gpio_irq_type(struct irq_data *d, unsigned type)
1425{
1426 struct at91_gpio_chip *at91_gpio = irq_data_get_irq_chip_data(d);
1427 void __iomem *pio = at91_gpio->regbase;
1428 unsigned mask = 1 << d->hwirq;
1429
1430 switch (type) {
1431 case IRQ_TYPE_EDGE_RISING:
Nicolas Ferreb0dcfd82014-01-21 16:55:18 +01001432 __irq_set_handler_locked(d->irq, handle_simple_irq);
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001433 writel_relaxed(mask, pio + PIO_ESR);
1434 writel_relaxed(mask, pio + PIO_REHLSR);
1435 break;
1436 case IRQ_TYPE_EDGE_FALLING:
Nicolas Ferreb0dcfd82014-01-21 16:55:18 +01001437 __irq_set_handler_locked(d->irq, handle_simple_irq);
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001438 writel_relaxed(mask, pio + PIO_ESR);
1439 writel_relaxed(mask, pio + PIO_FELLSR);
1440 break;
1441 case IRQ_TYPE_LEVEL_LOW:
Nicolas Ferreb0dcfd82014-01-21 16:55:18 +01001442 __irq_set_handler_locked(d->irq, handle_level_irq);
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001443 writel_relaxed(mask, pio + PIO_LSR);
1444 writel_relaxed(mask, pio + PIO_FELLSR);
1445 break;
1446 case IRQ_TYPE_LEVEL_HIGH:
Nicolas Ferreb0dcfd82014-01-21 16:55:18 +01001447 __irq_set_handler_locked(d->irq, handle_level_irq);
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001448 writel_relaxed(mask, pio + PIO_LSR);
1449 writel_relaxed(mask, pio + PIO_REHLSR);
1450 break;
1451 case IRQ_TYPE_EDGE_BOTH:
1452 /*
1453 * disable additional interrupt modes:
1454 * fall back to default behavior
1455 */
Nicolas Ferreb0dcfd82014-01-21 16:55:18 +01001456 __irq_set_handler_locked(d->irq, handle_simple_irq);
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001457 writel_relaxed(mask, pio + PIO_AIMDR);
1458 return 0;
1459 case IRQ_TYPE_NONE:
1460 default:
1461 pr_warn("AT91: No type for irq %d\n", gpio_to_irq(d->irq));
1462 return -EINVAL;
1463 }
1464
1465 /* enable additional interrupt modes */
1466 writel_relaxed(mask, pio + PIO_AIMER);
1467
1468 return 0;
1469}
1470
Alexander Stein80cc3732014-04-15 22:09:41 +02001471static void gpio_irq_ack(struct irq_data *d)
1472{
1473 /* the interrupt is already cleared before by reading ISR */
1474}
1475
Jean-Jacques Hiblot94e69202014-01-23 11:37:58 +01001476static unsigned int gpio_irq_startup(struct irq_data *d)
1477{
1478 struct at91_gpio_chip *at91_gpio = irq_data_get_irq_chip_data(d);
1479 unsigned pin = d->hwirq;
1480 int ret;
1481
Alexandre Courbote3a2e872014-10-23 17:27:07 +09001482 ret = gpiochip_lock_as_irq(&at91_gpio->chip, pin);
Jean-Jacques Hiblot94e69202014-01-23 11:37:58 +01001483 if (ret) {
1484 dev_err(at91_gpio->chip.dev, "unable to lock pind %lu IRQ\n",
1485 d->hwirq);
1486 return ret;
1487 }
1488 gpio_irq_unmask(d);
1489 return 0;
1490}
1491
1492static void gpio_irq_shutdown(struct irq_data *d)
1493{
1494 struct at91_gpio_chip *at91_gpio = irq_data_get_irq_chip_data(d);
1495 unsigned pin = d->hwirq;
1496
1497 gpio_irq_mask(d);
Alexandre Courbote3a2e872014-10-23 17:27:07 +09001498 gpiochip_unlock_as_irq(&at91_gpio->chip, pin);
Jean-Jacques Hiblot94e69202014-01-23 11:37:58 +01001499}
1500
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001501#ifdef CONFIG_PM
Ludovic Desroches647f8d92013-03-08 16:18:21 +01001502
1503static u32 wakeups[MAX_GPIO_BANKS];
1504static u32 backups[MAX_GPIO_BANKS];
1505
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001506static int gpio_irq_set_wake(struct irq_data *d, unsigned state)
1507{
1508 struct at91_gpio_chip *at91_gpio = irq_data_get_irq_chip_data(d);
1509 unsigned bank = at91_gpio->pioc_idx;
Ludovic Desroches647f8d92013-03-08 16:18:21 +01001510 unsigned mask = 1 << d->hwirq;
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001511
1512 if (unlikely(bank >= MAX_GPIO_BANKS))
1513 return -EINVAL;
1514
Ludovic Desroches647f8d92013-03-08 16:18:21 +01001515 if (state)
1516 wakeups[bank] |= mask;
1517 else
1518 wakeups[bank] &= ~mask;
1519
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001520 irq_set_irq_wake(at91_gpio->pioc_virq, state);
1521
1522 return 0;
1523}
Ludovic Desroches647f8d92013-03-08 16:18:21 +01001524
1525void at91_pinctrl_gpio_suspend(void)
1526{
1527 int i;
1528
1529 for (i = 0; i < gpio_banks; i++) {
1530 void __iomem *pio;
1531
1532 if (!gpio_chips[i])
1533 continue;
1534
1535 pio = gpio_chips[i]->regbase;
1536
Ben Dooksd480239b2015-03-26 12:18:49 +00001537 backups[i] = readl_relaxed(pio + PIO_IMR);
1538 writel_relaxed(backups[i], pio + PIO_IDR);
1539 writel_relaxed(wakeups[i], pio + PIO_IER);
Ludovic Desroches647f8d92013-03-08 16:18:21 +01001540
Boris BREZILLON795f9952013-12-15 19:30:51 +01001541 if (!wakeups[i])
1542 clk_disable_unprepare(gpio_chips[i]->clock);
1543 else
Ludovic Desroches647f8d92013-03-08 16:18:21 +01001544 printk(KERN_DEBUG "GPIO-%c may wake for %08x\n",
1545 'A'+i, wakeups[i]);
Ludovic Desroches647f8d92013-03-08 16:18:21 +01001546 }
1547}
1548
1549void at91_pinctrl_gpio_resume(void)
1550{
1551 int i;
1552
1553 for (i = 0; i < gpio_banks; i++) {
1554 void __iomem *pio;
1555
1556 if (!gpio_chips[i])
1557 continue;
1558
1559 pio = gpio_chips[i]->regbase;
1560
Boris BREZILLON37ef1d92013-12-15 19:30:52 +01001561 if (!wakeups[i])
1562 clk_prepare_enable(gpio_chips[i]->clock);
Ludovic Desroches647f8d92013-03-08 16:18:21 +01001563
Ben Dooksd480239b2015-03-26 12:18:49 +00001564 writel_relaxed(wakeups[i], pio + PIO_IDR);
1565 writel_relaxed(backups[i], pio + PIO_IER);
Ludovic Desroches647f8d92013-03-08 16:18:21 +01001566 }
1567}
1568
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001569#else
1570#define gpio_irq_set_wake NULL
Ludovic Desroches647f8d92013-03-08 16:18:21 +01001571#endif /* CONFIG_PM */
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001572
1573static struct irq_chip gpio_irqchip = {
1574 .name = "GPIO",
Alexander Stein80cc3732014-04-15 22:09:41 +02001575 .irq_ack = gpio_irq_ack,
Jean-Jacques Hiblot94e69202014-01-23 11:37:58 +01001576 .irq_startup = gpio_irq_startup,
1577 .irq_shutdown = gpio_irq_shutdown,
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001578 .irq_disable = gpio_irq_mask,
1579 .irq_mask = gpio_irq_mask,
1580 .irq_unmask = gpio_irq_unmask,
1581 /* .irq_set_type is set dynamically */
1582 .irq_set_wake = gpio_irq_set_wake,
1583};
1584
1585static void gpio_irq_handler(unsigned irq, struct irq_desc *desc)
1586{
Alexander Stein80cc3732014-04-15 22:09:41 +02001587 struct irq_chip *chip = irq_get_chip(irq);
1588 struct gpio_chip *gpio_chip = irq_desc_get_handler_data(desc);
1589 struct at91_gpio_chip *at91_gpio = container_of(gpio_chip,
1590 struct at91_gpio_chip, chip);
1591
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001592 void __iomem *pio = at91_gpio->regbase;
1593 unsigned long isr;
1594 int n;
1595
1596 chained_irq_enter(chip, desc);
1597 for (;;) {
1598 /* Reading ISR acks pending (edge triggered) GPIO interrupts.
Alexandre Bellonic2eb9e72013-12-07 14:08:52 +01001599 * When there are none pending, we're finished unless we need
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001600 * to process multiple banks (like ID_PIOCDE on sam9263).
1601 */
1602 isr = readl_relaxed(pio + PIO_ISR) & readl_relaxed(pio + PIO_IMR);
1603 if (!isr) {
1604 if (!at91_gpio->next)
1605 break;
1606 at91_gpio = at91_gpio->next;
1607 pio = at91_gpio->regbase;
Alexander Steincccb0c32014-04-24 19:55:39 +02001608 gpio_chip = &at91_gpio->chip;
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001609 continue;
1610 }
1611
Wei Yongjun05daa162012-10-26 22:50:54 +08001612 for_each_set_bit(n, &isr, BITS_PER_LONG) {
Alexander Stein80cc3732014-04-15 22:09:41 +02001613 generic_handle_irq(irq_find_mapping(
1614 gpio_chip->irqdomain, n));
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001615 }
1616 }
1617 chained_irq_exit(chip, desc);
1618 /* now it may re-trigger */
1619}
1620
Pramod Gurav834e1672014-09-09 15:50:37 +05301621static int at91_gpio_of_irq_setup(struct platform_device *pdev,
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001622 struct at91_gpio_chip *at91_gpio)
1623{
Jean-Christophe PLAGNIOL-VILLARDa0b957f2015-01-16 16:31:05 +01001624 struct gpio_chip *gpiochip_prev = NULL;
Alexander Steincccb0c32014-04-24 19:55:39 +02001625 struct at91_gpio_chip *prev = NULL;
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001626 struct irq_data *d = irq_get_irq_data(at91_gpio->pioc_virq);
Jean-Christophe PLAGNIOL-VILLARDa0b957f2015-01-16 16:31:05 +01001627 int ret, i;
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001628
1629 at91_gpio->pioc_hwirq = irqd_to_hwirq(d);
1630
1631 /* Setup proper .irq_set_type function */
1632 gpio_irqchip.irq_set_type = at91_gpio->ops->irq_type;
1633
1634 /* Disable irqs of this PIO controller */
1635 writel_relaxed(~0, at91_gpio->regbase + PIO_IDR);
1636
Alexander Stein80cc3732014-04-15 22:09:41 +02001637 /*
1638 * Let the generic code handle this edge IRQ, the the chained
1639 * handler will perform the actual work of handling the parent
1640 * interrupt.
1641 */
1642 ret = gpiochip_irqchip_add(&at91_gpio->chip,
1643 &gpio_irqchip,
1644 0,
1645 handle_edge_irq,
1646 IRQ_TYPE_EDGE_BOTH);
Pramod Gurav834e1672014-09-09 15:50:37 +05301647 if (ret) {
1648 dev_err(&pdev->dev, "at91_gpio.%d: Couldn't add irqchip to gpiochip.\n",
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001649 at91_gpio->pioc_idx);
Pramod Gurav834e1672014-09-09 15:50:37 +05301650 return ret;
1651 }
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001652
Alexander Steincccb0c32014-04-24 19:55:39 +02001653 /* The top level handler handles one bank of GPIOs, except
1654 * on some SoC it can handle up to three...
1655 * We only set up the handler for the first of the list.
1656 */
Jean-Christophe PLAGNIOL-VILLARDa0b957f2015-01-16 16:31:05 +01001657 gpiochip_prev = irq_get_handler_data(at91_gpio->pioc_virq);
1658 if (!gpiochip_prev) {
1659 /* Then register the chain on the parent IRQ */
1660 gpiochip_set_chained_irqchip(&at91_gpio->chip,
1661 &gpio_irqchip,
1662 at91_gpio->pioc_virq,
1663 gpio_irq_handler);
Alexander Steincccb0c32014-04-24 19:55:39 +02001664 return 0;
Jean-Christophe PLAGNIOL-VILLARDa0b957f2015-01-16 16:31:05 +01001665 }
Alexander Steincccb0c32014-04-24 19:55:39 +02001666
Jean-Christophe PLAGNIOL-VILLARDa0b957f2015-01-16 16:31:05 +01001667 prev = container_of(gpiochip_prev, struct at91_gpio_chip, chip);
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001668
Jean-Christophe PLAGNIOL-VILLARDa0b957f2015-01-16 16:31:05 +01001669 /* we can only have 2 banks before */
1670 for (i = 0; i < 2; i++) {
1671 if (prev->next) {
1672 prev = prev->next;
1673 } else {
1674 prev->next = at91_gpio;
1675 return 0;
1676 }
1677 }
1678
1679 return -EINVAL;
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001680}
1681
1682/* This structure is replicated for each GPIO block allocated at probe time */
1683static struct gpio_chip at91_gpio_template = {
1684 .request = at91_gpio_request,
1685 .free = at91_gpio_free,
Richard Genoud8af584b2014-02-17 17:57:26 +01001686 .get_direction = at91_gpio_get_direction,
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001687 .direction_input = at91_gpio_direction_input,
1688 .get = at91_gpio_get,
1689 .direction_output = at91_gpio_direction_output,
1690 .set = at91_gpio_set,
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001691 .dbg_show = at91_gpio_dbg_show,
Linus Walleij9fb1f392013-12-04 14:42:46 +01001692 .can_sleep = false,
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001693 .ngpio = MAX_NB_GPIO_PER_BANK,
1694};
1695
Fabian Frederickbaa9946e2015-03-16 20:59:09 +01001696static const struct of_device_id at91_gpio_of_match[] = {
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001697 { .compatible = "atmel,at91sam9x5-gpio", .data = &at91sam9x5_ops, },
1698 { .compatible = "atmel,at91rm9200-gpio", .data = &at91rm9200_ops },
1699 { /* sentinel */ }
1700};
1701
Greg Kroah-Hartman150632b2012-12-21 13:10:23 -08001702static int at91_gpio_probe(struct platform_device *pdev)
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001703{
1704 struct device_node *np = pdev->dev.of_node;
1705 struct resource *res;
1706 struct at91_gpio_chip *at91_chip = NULL;
1707 struct gpio_chip *chip;
1708 struct pinctrl_gpio_range *range;
1709 int ret = 0;
Jean-Christophe PLAGNIOL-VILLARD32b01a32012-11-07 00:33:34 +08001710 int irq, i;
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001711 int alias_idx = of_alias_get_id(np, "gpio");
1712 uint32_t ngpio;
Jean-Christophe PLAGNIOL-VILLARD32b01a32012-11-07 00:33:34 +08001713 char **names;
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001714
1715 BUG_ON(alias_idx >= ARRAY_SIZE(gpio_chips));
1716 if (gpio_chips[alias_idx]) {
1717 ret = -EBUSY;
1718 goto err;
1719 }
1720
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001721 irq = platform_get_irq(pdev, 0);
1722 if (irq < 0) {
1723 ret = irq;
1724 goto err;
1725 }
1726
1727 at91_chip = devm_kzalloc(&pdev->dev, sizeof(*at91_chip), GFP_KERNEL);
1728 if (!at91_chip) {
1729 ret = -ENOMEM;
1730 goto err;
1731 }
1732
Wolfram Sangf50b9e12013-05-10 10:17:03 +02001733 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Thierry Reding9e0c1fb2013-01-21 11:09:14 +01001734 at91_chip->regbase = devm_ioremap_resource(&pdev->dev, res);
1735 if (IS_ERR(at91_chip->regbase)) {
1736 ret = PTR_ERR(at91_chip->regbase);
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001737 goto err;
1738 }
1739
Sachin Kamat3c936002013-03-15 10:07:03 +05301740 at91_chip->ops = (struct at91_pinctrl_mux_ops *)
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001741 of_match_device(at91_gpio_of_match, &pdev->dev)->data;
1742 at91_chip->pioc_virq = irq;
1743 at91_chip->pioc_idx = alias_idx;
1744
Pramod Gurav02b837f2014-08-31 16:51:52 +05301745 at91_chip->clock = devm_clk_get(&pdev->dev, NULL);
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001746 if (IS_ERR(at91_chip->clock)) {
1747 dev_err(&pdev->dev, "failed to get clock, ignoring.\n");
Pramod Gurav70e41972014-09-09 15:50:36 +05301748 ret = PTR_ERR(at91_chip->clock);
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001749 goto err;
1750 }
1751
Pramod Gurav70e41972014-09-09 15:50:36 +05301752 ret = clk_prepare(at91_chip->clock);
1753 if (ret)
1754 goto clk_prepare_err;
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001755
1756 /* enable PIO controller's clock */
Pramod Gurav70e41972014-09-09 15:50:36 +05301757 ret = clk_enable(at91_chip->clock);
1758 if (ret) {
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001759 dev_err(&pdev->dev, "failed to enable clock, ignoring.\n");
Pramod Gurav70e41972014-09-09 15:50:36 +05301760 goto clk_enable_err;
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001761 }
1762
1763 at91_chip->chip = at91_gpio_template;
1764
1765 chip = &at91_chip->chip;
1766 chip->of_node = np;
1767 chip->label = dev_name(&pdev->dev);
1768 chip->dev = &pdev->dev;
1769 chip->owner = THIS_MODULE;
1770 chip->base = alias_idx * MAX_NB_GPIO_PER_BANK;
1771
1772 if (!of_property_read_u32(np, "#gpio-lines", &ngpio)) {
1773 if (ngpio >= MAX_NB_GPIO_PER_BANK)
1774 pr_err("at91_gpio.%d, gpio-nb >= %d failback to %d\n",
1775 alias_idx, MAX_NB_GPIO_PER_BANK, MAX_NB_GPIO_PER_BANK);
1776 else
1777 chip->ngpio = ngpio;
1778 }
1779
Sachin Kamat3c936002013-03-15 10:07:03 +05301780 names = devm_kzalloc(&pdev->dev, sizeof(char *) * chip->ngpio,
1781 GFP_KERNEL);
Jean-Christophe PLAGNIOL-VILLARD32b01a32012-11-07 00:33:34 +08001782
1783 if (!names) {
1784 ret = -ENOMEM;
Pramod Gurav70e41972014-09-09 15:50:36 +05301785 goto clk_enable_err;
Jean-Christophe PLAGNIOL-VILLARD32b01a32012-11-07 00:33:34 +08001786 }
1787
1788 for (i = 0; i < chip->ngpio; i++)
1789 names[i] = kasprintf(GFP_KERNEL, "pio%c%d", alias_idx + 'A', i);
1790
Sachin Kamat3c936002013-03-15 10:07:03 +05301791 chip->names = (const char *const *)names;
Jean-Christophe PLAGNIOL-VILLARD32b01a32012-11-07 00:33:34 +08001792
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001793 range = &at91_chip->range;
1794 range->name = chip->label;
1795 range->id = alias_idx;
1796 range->pin_base = range->base = range->id * MAX_NB_GPIO_PER_BANK;
1797
1798 range->npins = chip->ngpio;
1799 range->gc = chip;
1800
1801 ret = gpiochip_add(chip);
1802 if (ret)
Pramod Gurav70e41972014-09-09 15:50:36 +05301803 goto gpiochip_add_err;
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001804
1805 gpio_chips[alias_idx] = at91_chip;
1806 gpio_banks = max(gpio_banks, alias_idx + 1);
1807
Pramod Gurav834e1672014-09-09 15:50:37 +05301808 ret = at91_gpio_of_irq_setup(pdev, at91_chip);
1809 if (ret)
1810 goto irq_setup_err;
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001811
1812 dev_info(&pdev->dev, "at address %p\n", at91_chip->regbase);
1813
1814 return 0;
1815
Pramod Gurav834e1672014-09-09 15:50:37 +05301816irq_setup_err:
1817 gpiochip_remove(chip);
Pramod Gurav70e41972014-09-09 15:50:36 +05301818gpiochip_add_err:
1819 clk_disable(at91_chip->clock);
1820clk_enable_err:
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001821 clk_unprepare(at91_chip->clock);
Pramod Gurav70e41972014-09-09 15:50:36 +05301822clk_prepare_err:
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001823err:
1824 dev_err(&pdev->dev, "Failure %i for GPIO %i\n", ret, alias_idx);
1825
1826 return ret;
1827}
1828
1829static struct platform_driver at91_gpio_driver = {
1830 .driver = {
1831 .name = "gpio-at91",
Sachin Kamat606fca92013-09-28 17:38:48 +05301832 .of_match_table = at91_gpio_of_match,
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001833 },
1834 .probe = at91_gpio_probe,
1835};
1836
1837static struct platform_driver at91_pinctrl_driver = {
1838 .driver = {
1839 .name = "pinctrl-at91",
Sachin Kamat606fca92013-09-28 17:38:48 +05301840 .of_match_table = at91_pinctrl_of_match,
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001841 },
1842 .probe = at91_pinctrl_probe,
Greg Kroah-Hartman150632b2012-12-21 13:10:23 -08001843 .remove = at91_pinctrl_remove,
Jean-Christophe PLAGNIOL-VILLARD6732ae52012-07-12 23:35:02 +08001844};
1845
1846static int __init at91_pinctrl_init(void)
1847{
1848 int ret;
1849
1850 ret = platform_driver_register(&at91_gpio_driver);
1851 if (ret)
1852 return ret;
1853 return platform_driver_register(&at91_pinctrl_driver);
1854}
1855arch_initcall(at91_pinctrl_init);
1856
1857static void __exit at91_pinctrl_exit(void)
1858{
1859 platform_driver_unregister(&at91_pinctrl_driver);
1860}
1861
1862module_exit(at91_pinctrl_exit);
1863MODULE_AUTHOR("Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>");
1864MODULE_DESCRIPTION("Atmel AT91 pinctrl driver");
1865MODULE_LICENSE("GPL v2");