ASoC: dapm: Fix build warning
[linux-drm-fsl-dcu.git] / drivers / pinctrl / sunxi / pinctrl-sunxi.c
1 /*
2  * Allwinner A1X SoCs pinctrl driver.
3  *
4  * Copyright (C) 2012 Maxime Ripard
5  *
6  * Maxime Ripard <maxime.ripard@free-electrons.com>
7  *
8  * This file is licensed under the terms of the GNU General Public
9  * License version 2.  This program is licensed "as is" without any
10  * warranty of any kind, whether express or implied.
11  */
12
13 #include <linux/io.h>
14 #include <linux/clk.h>
15 #include <linux/gpio.h>
16 #include <linux/irqdomain.h>
17 #include <linux/irqchip/chained_irq.h>
18 #include <linux/module.h>
19 #include <linux/of.h>
20 #include <linux/of_address.h>
21 #include <linux/of_device.h>
22 #include <linux/of_irq.h>
23 #include <linux/pinctrl/consumer.h>
24 #include <linux/pinctrl/machine.h>
25 #include <linux/pinctrl/pinctrl.h>
26 #include <linux/pinctrl/pinconf-generic.h>
27 #include <linux/pinctrl/pinmux.h>
28 #include <linux/platform_device.h>
29 #include <linux/slab.h>
30
31 #include "../core.h"
32 #include "pinctrl-sunxi.h"
33
34 static struct irq_chip sunxi_pinctrl_edge_irq_chip;
35 static struct irq_chip sunxi_pinctrl_level_irq_chip;
36
37 static struct sunxi_pinctrl_group *
38 sunxi_pinctrl_find_group_by_name(struct sunxi_pinctrl *pctl, const char *group)
39 {
40         int i;
41
42         for (i = 0; i < pctl->ngroups; i++) {
43                 struct sunxi_pinctrl_group *grp = pctl->groups + i;
44
45                 if (!strcmp(grp->name, group))
46                         return grp;
47         }
48
49         return NULL;
50 }
51
52 static struct sunxi_pinctrl_function *
53 sunxi_pinctrl_find_function_by_name(struct sunxi_pinctrl *pctl,
54                                     const char *name)
55 {
56         struct sunxi_pinctrl_function *func = pctl->functions;
57         int i;
58
59         for (i = 0; i < pctl->nfunctions; i++) {
60                 if (!func[i].name)
61                         break;
62
63                 if (!strcmp(func[i].name, name))
64                         return func + i;
65         }
66
67         return NULL;
68 }
69
70 static struct sunxi_desc_function *
71 sunxi_pinctrl_desc_find_function_by_name(struct sunxi_pinctrl *pctl,
72                                          const char *pin_name,
73                                          const char *func_name)
74 {
75         int i;
76
77         for (i = 0; i < pctl->desc->npins; i++) {
78                 const struct sunxi_desc_pin *pin = pctl->desc->pins + i;
79
80                 if (!strcmp(pin->pin.name, pin_name)) {
81                         struct sunxi_desc_function *func = pin->functions;
82
83                         while (func->name) {
84                                 if (!strcmp(func->name, func_name))
85                                         return func;
86
87                                 func++;
88                         }
89                 }
90         }
91
92         return NULL;
93 }
94
95 static struct sunxi_desc_function *
96 sunxi_pinctrl_desc_find_function_by_pin(struct sunxi_pinctrl *pctl,
97                                         const u16 pin_num,
98                                         const char *func_name)
99 {
100         int i;
101
102         for (i = 0; i < pctl->desc->npins; i++) {
103                 const struct sunxi_desc_pin *pin = pctl->desc->pins + i;
104
105                 if (pin->pin.number == pin_num) {
106                         struct sunxi_desc_function *func = pin->functions;
107
108                         while (func->name) {
109                                 if (!strcmp(func->name, func_name))
110                                         return func;
111
112                                 func++;
113                         }
114                 }
115         }
116
117         return NULL;
118 }
119
120 static int sunxi_pctrl_get_groups_count(struct pinctrl_dev *pctldev)
121 {
122         struct sunxi_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
123
124         return pctl->ngroups;
125 }
126
127 static const char *sunxi_pctrl_get_group_name(struct pinctrl_dev *pctldev,
128                                               unsigned group)
129 {
130         struct sunxi_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
131
132         return pctl->groups[group].name;
133 }
134
135 static int sunxi_pctrl_get_group_pins(struct pinctrl_dev *pctldev,
136                                       unsigned group,
137                                       const unsigned **pins,
138                                       unsigned *num_pins)
139 {
140         struct sunxi_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
141
142         *pins = (unsigned *)&pctl->groups[group].pin;
143         *num_pins = 1;
144
145         return 0;
146 }
147
148 static int sunxi_pctrl_dt_node_to_map(struct pinctrl_dev *pctldev,
149                                       struct device_node *node,
150                                       struct pinctrl_map **map,
151                                       unsigned *num_maps)
152 {
153         struct sunxi_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
154         unsigned long *pinconfig;
155         struct property *prop;
156         const char *function;
157         const char *group;
158         int ret, nmaps, i = 0;
159         u32 val;
160
161         *map = NULL;
162         *num_maps = 0;
163
164         ret = of_property_read_string(node, "allwinner,function", &function);
165         if (ret) {
166                 dev_err(pctl->dev,
167                         "missing allwinner,function property in node %s\n",
168                         node->name);
169                 return -EINVAL;
170         }
171
172         nmaps = of_property_count_strings(node, "allwinner,pins") * 2;
173         if (nmaps < 0) {
174                 dev_err(pctl->dev,
175                         "missing allwinner,pins property in node %s\n",
176                         node->name);
177                 return -EINVAL;
178         }
179
180         *map = kmalloc(nmaps * sizeof(struct pinctrl_map), GFP_KERNEL);
181         if (!*map)
182                 return -ENOMEM;
183
184         of_property_for_each_string(node, "allwinner,pins", prop, group) {
185                 struct sunxi_pinctrl_group *grp =
186                         sunxi_pinctrl_find_group_by_name(pctl, group);
187                 int j = 0, configlen = 0;
188
189                 if (!grp) {
190                         dev_err(pctl->dev, "unknown pin %s", group);
191                         continue;
192                 }
193
194                 if (!sunxi_pinctrl_desc_find_function_by_name(pctl,
195                                                               grp->name,
196                                                               function)) {
197                         dev_err(pctl->dev, "unsupported function %s on pin %s",
198                                 function, group);
199                         continue;
200                 }
201
202                 (*map)[i].type = PIN_MAP_TYPE_MUX_GROUP;
203                 (*map)[i].data.mux.group = group;
204                 (*map)[i].data.mux.function = function;
205
206                 i++;
207
208                 (*map)[i].type = PIN_MAP_TYPE_CONFIGS_GROUP;
209                 (*map)[i].data.configs.group_or_pin = group;
210
211                 if (of_find_property(node, "allwinner,drive", NULL))
212                         configlen++;
213                 if (of_find_property(node, "allwinner,pull", NULL))
214                         configlen++;
215
216                 pinconfig = kzalloc(configlen * sizeof(*pinconfig), GFP_KERNEL);
217                 if (!pinconfig) {
218                         kfree(*map);
219                         return -ENOMEM;
220                 }
221
222                 if (!of_property_read_u32(node, "allwinner,drive", &val)) {
223                         u16 strength = (val + 1) * 10;
224                         pinconfig[j++] =
225                                 pinconf_to_config_packed(PIN_CONFIG_DRIVE_STRENGTH,
226                                                          strength);
227                 }
228
229                 if (!of_property_read_u32(node, "allwinner,pull", &val)) {
230                         enum pin_config_param pull = PIN_CONFIG_END;
231                         if (val == 1)
232                                 pull = PIN_CONFIG_BIAS_PULL_UP;
233                         else if (val == 2)
234                                 pull = PIN_CONFIG_BIAS_PULL_DOWN;
235                         pinconfig[j++] = pinconf_to_config_packed(pull, 0);
236                 }
237
238                 (*map)[i].data.configs.configs = pinconfig;
239                 (*map)[i].data.configs.num_configs = configlen;
240
241                 i++;
242         }
243
244         *num_maps = nmaps;
245
246         return 0;
247 }
248
249 static void sunxi_pctrl_dt_free_map(struct pinctrl_dev *pctldev,
250                                     struct pinctrl_map *map,
251                                     unsigned num_maps)
252 {
253         int i;
254
255         for (i = 0; i < num_maps; i++) {
256                 if (map[i].type == PIN_MAP_TYPE_CONFIGS_GROUP)
257                         kfree(map[i].data.configs.configs);
258         }
259
260         kfree(map);
261 }
262
263 static const struct pinctrl_ops sunxi_pctrl_ops = {
264         .dt_node_to_map         = sunxi_pctrl_dt_node_to_map,
265         .dt_free_map            = sunxi_pctrl_dt_free_map,
266         .get_groups_count       = sunxi_pctrl_get_groups_count,
267         .get_group_name         = sunxi_pctrl_get_group_name,
268         .get_group_pins         = sunxi_pctrl_get_group_pins,
269 };
270
271 static int sunxi_pconf_group_get(struct pinctrl_dev *pctldev,
272                                  unsigned group,
273                                  unsigned long *config)
274 {
275         struct sunxi_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
276
277         *config = pctl->groups[group].config;
278
279         return 0;
280 }
281
282 static int sunxi_pconf_group_set(struct pinctrl_dev *pctldev,
283                                  unsigned group,
284                                  unsigned long *configs,
285                                  unsigned num_configs)
286 {
287         struct sunxi_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
288         struct sunxi_pinctrl_group *g = &pctl->groups[group];
289         unsigned long flags;
290         unsigned pin = g->pin - pctl->desc->pin_base;
291         u32 val, mask;
292         u16 strength;
293         u8 dlevel;
294         int i;
295
296         spin_lock_irqsave(&pctl->lock, flags);
297
298         for (i = 0; i < num_configs; i++) {
299                 switch (pinconf_to_config_param(configs[i])) {
300                 case PIN_CONFIG_DRIVE_STRENGTH:
301                         strength = pinconf_to_config_argument(configs[i]);
302                         if (strength > 40) {
303                                 spin_unlock_irqrestore(&pctl->lock, flags);
304                                 return -EINVAL;
305                         }
306                         /*
307                          * We convert from mA to what the register expects:
308                          *   0: 10mA
309                          *   1: 20mA
310                          *   2: 30mA
311                          *   3: 40mA
312                          */
313                         dlevel = strength / 10 - 1;
314                         val = readl(pctl->membase + sunxi_dlevel_reg(pin));
315                         mask = DLEVEL_PINS_MASK << sunxi_dlevel_offset(pin);
316                         writel((val & ~mask)
317                                 | dlevel << sunxi_dlevel_offset(pin),
318                                 pctl->membase + sunxi_dlevel_reg(pin));
319                         break;
320                 case PIN_CONFIG_BIAS_PULL_UP:
321                         val = readl(pctl->membase + sunxi_pull_reg(pin));
322                         mask = PULL_PINS_MASK << sunxi_pull_offset(pin);
323                         writel((val & ~mask) | 1 << sunxi_pull_offset(pin),
324                                 pctl->membase + sunxi_pull_reg(pin));
325                         break;
326                 case PIN_CONFIG_BIAS_PULL_DOWN:
327                         val = readl(pctl->membase + sunxi_pull_reg(pin));
328                         mask = PULL_PINS_MASK << sunxi_pull_offset(pin);
329                         writel((val & ~mask) | 2 << sunxi_pull_offset(pin),
330                                 pctl->membase + sunxi_pull_reg(pin));
331                         break;
332                 default:
333                         break;
334                 }
335                 /* cache the config value */
336                 g->config = configs[i];
337         } /* for each config */
338
339         spin_unlock_irqrestore(&pctl->lock, flags);
340
341         return 0;
342 }
343
344 static const struct pinconf_ops sunxi_pconf_ops = {
345         .pin_config_group_get   = sunxi_pconf_group_get,
346         .pin_config_group_set   = sunxi_pconf_group_set,
347 };
348
349 static int sunxi_pmx_get_funcs_cnt(struct pinctrl_dev *pctldev)
350 {
351         struct sunxi_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
352
353         return pctl->nfunctions;
354 }
355
356 static const char *sunxi_pmx_get_func_name(struct pinctrl_dev *pctldev,
357                                            unsigned function)
358 {
359         struct sunxi_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
360
361         return pctl->functions[function].name;
362 }
363
364 static int sunxi_pmx_get_func_groups(struct pinctrl_dev *pctldev,
365                                      unsigned function,
366                                      const char * const **groups,
367                                      unsigned * const num_groups)
368 {
369         struct sunxi_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
370
371         *groups = pctl->functions[function].groups;
372         *num_groups = pctl->functions[function].ngroups;
373
374         return 0;
375 }
376
377 static void sunxi_pmx_set(struct pinctrl_dev *pctldev,
378                                  unsigned pin,
379                                  u8 config)
380 {
381         struct sunxi_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
382         unsigned long flags;
383         u32 val, mask;
384
385         spin_lock_irqsave(&pctl->lock, flags);
386
387         pin -= pctl->desc->pin_base;
388         val = readl(pctl->membase + sunxi_mux_reg(pin));
389         mask = MUX_PINS_MASK << sunxi_mux_offset(pin);
390         writel((val & ~mask) | config << sunxi_mux_offset(pin),
391                 pctl->membase + sunxi_mux_reg(pin));
392
393         spin_unlock_irqrestore(&pctl->lock, flags);
394 }
395
396 static int sunxi_pmx_set_mux(struct pinctrl_dev *pctldev,
397                              unsigned function,
398                              unsigned group)
399 {
400         struct sunxi_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
401         struct sunxi_pinctrl_group *g = pctl->groups + group;
402         struct sunxi_pinctrl_function *func = pctl->functions + function;
403         struct sunxi_desc_function *desc =
404                 sunxi_pinctrl_desc_find_function_by_name(pctl,
405                                                          g->name,
406                                                          func->name);
407
408         if (!desc)
409                 return -EINVAL;
410
411         sunxi_pmx_set(pctldev, g->pin, desc->muxval);
412
413         return 0;
414 }
415
416 static int
417 sunxi_pmx_gpio_set_direction(struct pinctrl_dev *pctldev,
418                         struct pinctrl_gpio_range *range,
419                         unsigned offset,
420                         bool input)
421 {
422         struct sunxi_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
423         struct sunxi_desc_function *desc;
424         const char *func;
425
426         if (input)
427                 func = "gpio_in";
428         else
429                 func = "gpio_out";
430
431         desc = sunxi_pinctrl_desc_find_function_by_pin(pctl, offset, func);
432         if (!desc)
433                 return -EINVAL;
434
435         sunxi_pmx_set(pctldev, offset, desc->muxval);
436
437         return 0;
438 }
439
440 static const struct pinmux_ops sunxi_pmx_ops = {
441         .get_functions_count    = sunxi_pmx_get_funcs_cnt,
442         .get_function_name      = sunxi_pmx_get_func_name,
443         .get_function_groups    = sunxi_pmx_get_func_groups,
444         .set_mux                = sunxi_pmx_set_mux,
445         .gpio_set_direction     = sunxi_pmx_gpio_set_direction,
446 };
447
448 static int sunxi_pinctrl_gpio_request(struct gpio_chip *chip, unsigned offset)
449 {
450         return pinctrl_request_gpio(chip->base + offset);
451 }
452
453 static void sunxi_pinctrl_gpio_free(struct gpio_chip *chip, unsigned offset)
454 {
455         pinctrl_free_gpio(chip->base + offset);
456 }
457
458 static int sunxi_pinctrl_gpio_direction_input(struct gpio_chip *chip,
459                                         unsigned offset)
460 {
461         return pinctrl_gpio_direction_input(chip->base + offset);
462 }
463
464 static int sunxi_pinctrl_gpio_get(struct gpio_chip *chip, unsigned offset)
465 {
466         struct sunxi_pinctrl *pctl = dev_get_drvdata(chip->dev);
467
468         u32 reg = sunxi_data_reg(offset);
469         u8 index = sunxi_data_offset(offset);
470         u32 val = (readl(pctl->membase + reg) >> index) & DATA_PINS_MASK;
471
472         return val;
473 }
474
475 static void sunxi_pinctrl_gpio_set(struct gpio_chip *chip,
476                                 unsigned offset, int value)
477 {
478         struct sunxi_pinctrl *pctl = dev_get_drvdata(chip->dev);
479         u32 reg = sunxi_data_reg(offset);
480         u8 index = sunxi_data_offset(offset);
481         unsigned long flags;
482         u32 regval;
483
484         spin_lock_irqsave(&pctl->lock, flags);
485
486         regval = readl(pctl->membase + reg);
487
488         if (value)
489                 regval |= BIT(index);
490         else
491                 regval &= ~(BIT(index));
492
493         writel(regval, pctl->membase + reg);
494
495         spin_unlock_irqrestore(&pctl->lock, flags);
496 }
497
498 static int sunxi_pinctrl_gpio_direction_output(struct gpio_chip *chip,
499                                         unsigned offset, int value)
500 {
501         sunxi_pinctrl_gpio_set(chip, offset, value);
502         return pinctrl_gpio_direction_output(chip->base + offset);
503 }
504
505 static int sunxi_pinctrl_gpio_of_xlate(struct gpio_chip *gc,
506                                 const struct of_phandle_args *gpiospec,
507                                 u32 *flags)
508 {
509         int pin, base;
510
511         base = PINS_PER_BANK * gpiospec->args[0];
512         pin = base + gpiospec->args[1];
513
514         if (pin > gc->ngpio)
515                 return -EINVAL;
516
517         if (flags)
518                 *flags = gpiospec->args[2];
519
520         return pin;
521 }
522
523 static int sunxi_pinctrl_gpio_to_irq(struct gpio_chip *chip, unsigned offset)
524 {
525         struct sunxi_pinctrl *pctl = dev_get_drvdata(chip->dev);
526         struct sunxi_desc_function *desc;
527         unsigned pinnum = pctl->desc->pin_base + offset;
528         unsigned irqnum;
529
530         if (offset >= chip->ngpio)
531                 return -ENXIO;
532
533         desc = sunxi_pinctrl_desc_find_function_by_pin(pctl, pinnum, "irq");
534         if (!desc)
535                 return -EINVAL;
536
537         irqnum = desc->irqbank * IRQ_PER_BANK + desc->irqnum;
538
539         dev_dbg(chip->dev, "%s: request IRQ for GPIO %d, return %d\n",
540                 chip->label, offset + chip->base, irqnum);
541
542         return irq_find_mapping(pctl->domain, irqnum);
543 }
544
545 static int sunxi_pinctrl_irq_request_resources(struct irq_data *d)
546 {
547         struct sunxi_pinctrl *pctl = irq_data_get_irq_chip_data(d);
548         struct sunxi_desc_function *func;
549         int ret;
550
551         func = sunxi_pinctrl_desc_find_function_by_pin(pctl,
552                                         pctl->irq_array[d->hwirq], "irq");
553         if (!func)
554                 return -EINVAL;
555
556         ret = gpiochip_lock_as_irq(pctl->chip,
557                         pctl->irq_array[d->hwirq] - pctl->desc->pin_base);
558         if (ret) {
559                 dev_err(pctl->dev, "unable to lock HW IRQ %lu for IRQ\n",
560                         irqd_to_hwirq(d));
561                 return ret;
562         }
563
564         /* Change muxing to INT mode */
565         sunxi_pmx_set(pctl->pctl_dev, pctl->irq_array[d->hwirq], func->muxval);
566
567         return 0;
568 }
569
570 static void sunxi_pinctrl_irq_release_resources(struct irq_data *d)
571 {
572         struct sunxi_pinctrl *pctl = irq_data_get_irq_chip_data(d);
573
574         gpiochip_unlock_as_irq(pctl->chip,
575                               pctl->irq_array[d->hwirq] - pctl->desc->pin_base);
576 }
577
578 static int sunxi_pinctrl_irq_set_type(struct irq_data *d, unsigned int type)
579 {
580         struct sunxi_pinctrl *pctl = irq_data_get_irq_chip_data(d);
581         struct irq_desc *desc = container_of(d, struct irq_desc, irq_data);
582         u32 reg = sunxi_irq_cfg_reg(d->hwirq);
583         u8 index = sunxi_irq_cfg_offset(d->hwirq);
584         unsigned long flags;
585         u32 regval;
586         u8 mode;
587
588         switch (type) {
589         case IRQ_TYPE_EDGE_RISING:
590                 mode = IRQ_EDGE_RISING;
591                 break;
592         case IRQ_TYPE_EDGE_FALLING:
593                 mode = IRQ_EDGE_FALLING;
594                 break;
595         case IRQ_TYPE_EDGE_BOTH:
596                 mode = IRQ_EDGE_BOTH;
597                 break;
598         case IRQ_TYPE_LEVEL_HIGH:
599                 mode = IRQ_LEVEL_HIGH;
600                 break;
601         case IRQ_TYPE_LEVEL_LOW:
602                 mode = IRQ_LEVEL_LOW;
603                 break;
604         default:
605                 return -EINVAL;
606         }
607
608         if (type & IRQ_TYPE_LEVEL_MASK) {
609                 d->chip = &sunxi_pinctrl_level_irq_chip;
610                 desc->handle_irq = handle_fasteoi_irq;
611         } else {
612                 d->chip = &sunxi_pinctrl_edge_irq_chip;
613                 desc->handle_irq = handle_edge_irq;
614         }
615
616         spin_lock_irqsave(&pctl->lock, flags);
617
618         regval = readl(pctl->membase + reg);
619         regval &= ~(IRQ_CFG_IRQ_MASK << index);
620         writel(regval | (mode << index), pctl->membase + reg);
621
622         spin_unlock_irqrestore(&pctl->lock, flags);
623
624         return 0;
625 }
626
627 static void sunxi_pinctrl_irq_ack(struct irq_data *d)
628 {
629         struct sunxi_pinctrl *pctl = irq_data_get_irq_chip_data(d);
630         u32 status_reg = sunxi_irq_status_reg(d->hwirq);
631         u8 status_idx = sunxi_irq_status_offset(d->hwirq);
632
633         /* Clear the IRQ */
634         writel(1 << status_idx, pctl->membase + status_reg);
635 }
636
637 static void sunxi_pinctrl_irq_mask(struct irq_data *d)
638 {
639         struct sunxi_pinctrl *pctl = irq_data_get_irq_chip_data(d);
640         u32 reg = sunxi_irq_ctrl_reg(d->hwirq);
641         u8 idx = sunxi_irq_ctrl_offset(d->hwirq);
642         unsigned long flags;
643         u32 val;
644
645         spin_lock_irqsave(&pctl->lock, flags);
646
647         /* Mask the IRQ */
648         val = readl(pctl->membase + reg);
649         writel(val & ~(1 << idx), pctl->membase + reg);
650
651         spin_unlock_irqrestore(&pctl->lock, flags);
652 }
653
654 static void sunxi_pinctrl_irq_unmask(struct irq_data *d)
655 {
656         struct sunxi_pinctrl *pctl = irq_data_get_irq_chip_data(d);
657         u32 reg = sunxi_irq_ctrl_reg(d->hwirq);
658         u8 idx = sunxi_irq_ctrl_offset(d->hwirq);
659         unsigned long flags;
660         u32 val;
661
662         spin_lock_irqsave(&pctl->lock, flags);
663
664         /* Unmask the IRQ */
665         val = readl(pctl->membase + reg);
666         writel(val | (1 << idx), pctl->membase + reg);
667
668         spin_unlock_irqrestore(&pctl->lock, flags);
669 }
670
671 static void sunxi_pinctrl_irq_ack_unmask(struct irq_data *d)
672 {
673         sunxi_pinctrl_irq_ack(d);
674         sunxi_pinctrl_irq_unmask(d);
675 }
676
677 static struct irq_chip sunxi_pinctrl_edge_irq_chip = {
678         .irq_ack        = sunxi_pinctrl_irq_ack,
679         .irq_mask       = sunxi_pinctrl_irq_mask,
680         .irq_unmask     = sunxi_pinctrl_irq_unmask,
681         .irq_request_resources = sunxi_pinctrl_irq_request_resources,
682         .irq_release_resources = sunxi_pinctrl_irq_release_resources,
683         .irq_set_type   = sunxi_pinctrl_irq_set_type,
684         .flags          = IRQCHIP_SKIP_SET_WAKE,
685 };
686
687 static struct irq_chip sunxi_pinctrl_level_irq_chip = {
688         .irq_eoi        = sunxi_pinctrl_irq_ack,
689         .irq_mask       = sunxi_pinctrl_irq_mask,
690         .irq_unmask     = sunxi_pinctrl_irq_unmask,
691         /* Define irq_enable / disable to avoid spurious irqs for drivers
692          * using these to suppress irqs while they clear the irq source */
693         .irq_enable     = sunxi_pinctrl_irq_ack_unmask,
694         .irq_disable    = sunxi_pinctrl_irq_mask,
695         .irq_request_resources = sunxi_pinctrl_irq_request_resources,
696         .irq_release_resources = sunxi_pinctrl_irq_release_resources,
697         .irq_set_type   = sunxi_pinctrl_irq_set_type,
698         .flags          = IRQCHIP_SKIP_SET_WAKE | IRQCHIP_EOI_THREADED |
699                           IRQCHIP_EOI_IF_HANDLED,
700 };
701
702 static void sunxi_pinctrl_irq_handler(unsigned irq, struct irq_desc *desc)
703 {
704         struct irq_chip *chip = irq_get_chip(irq);
705         struct sunxi_pinctrl *pctl = irq_get_handler_data(irq);
706         unsigned long bank, reg, val;
707
708         for (bank = 0; bank < pctl->desc->irq_banks; bank++)
709                 if (irq == pctl->irq[bank])
710                         break;
711
712         if (bank == pctl->desc->irq_banks)
713                 return;
714
715         reg = sunxi_irq_status_reg_from_bank(bank);
716         val = readl(pctl->membase + reg);
717
718         if (val) {
719                 int irqoffset;
720
721                 chained_irq_enter(chip, desc);
722                 for_each_set_bit(irqoffset, &val, IRQ_PER_BANK) {
723                         int pin_irq = irq_find_mapping(pctl->domain,
724                                                        bank * IRQ_PER_BANK + irqoffset);
725                         generic_handle_irq(pin_irq);
726                 }
727                 chained_irq_exit(chip, desc);
728         }
729 }
730
731 static int sunxi_pinctrl_add_function(struct sunxi_pinctrl *pctl,
732                                         const char *name)
733 {
734         struct sunxi_pinctrl_function *func = pctl->functions;
735
736         while (func->name) {
737                 /* function already there */
738                 if (strcmp(func->name, name) == 0) {
739                         func->ngroups++;
740                         return -EEXIST;
741                 }
742                 func++;
743         }
744
745         func->name = name;
746         func->ngroups = 1;
747
748         pctl->nfunctions++;
749
750         return 0;
751 }
752
753 static int sunxi_pinctrl_build_state(struct platform_device *pdev)
754 {
755         struct sunxi_pinctrl *pctl = platform_get_drvdata(pdev);
756         int i;
757
758         pctl->ngroups = pctl->desc->npins;
759
760         /* Allocate groups */
761         pctl->groups = devm_kzalloc(&pdev->dev,
762                                     pctl->ngroups * sizeof(*pctl->groups),
763                                     GFP_KERNEL);
764         if (!pctl->groups)
765                 return -ENOMEM;
766
767         for (i = 0; i < pctl->desc->npins; i++) {
768                 const struct sunxi_desc_pin *pin = pctl->desc->pins + i;
769                 struct sunxi_pinctrl_group *group = pctl->groups + i;
770
771                 group->name = pin->pin.name;
772                 group->pin = pin->pin.number;
773         }
774
775         /*
776          * We suppose that we won't have any more functions than pins,
777          * we'll reallocate that later anyway
778          */
779         pctl->functions = devm_kzalloc(&pdev->dev,
780                                 pctl->desc->npins * sizeof(*pctl->functions),
781                                 GFP_KERNEL);
782         if (!pctl->functions)
783                 return -ENOMEM;
784
785         /* Count functions and their associated groups */
786         for (i = 0; i < pctl->desc->npins; i++) {
787                 const struct sunxi_desc_pin *pin = pctl->desc->pins + i;
788                 struct sunxi_desc_function *func = pin->functions;
789
790                 while (func->name) {
791                         /* Create interrupt mapping while we're at it */
792                         if (!strcmp(func->name, "irq")) {
793                                 int irqnum = func->irqnum + func->irqbank * IRQ_PER_BANK;
794                                 pctl->irq_array[irqnum] = pin->pin.number;
795                         }
796
797                         sunxi_pinctrl_add_function(pctl, func->name);
798                         func++;
799                 }
800         }
801
802         pctl->functions = krealloc(pctl->functions,
803                                 pctl->nfunctions * sizeof(*pctl->functions),
804                                 GFP_KERNEL);
805
806         for (i = 0; i < pctl->desc->npins; i++) {
807                 const struct sunxi_desc_pin *pin = pctl->desc->pins + i;
808                 struct sunxi_desc_function *func = pin->functions;
809
810                 while (func->name) {
811                         struct sunxi_pinctrl_function *func_item;
812                         const char **func_grp;
813
814                         func_item = sunxi_pinctrl_find_function_by_name(pctl,
815                                                                         func->name);
816                         if (!func_item)
817                                 return -EINVAL;
818
819                         if (!func_item->groups) {
820                                 func_item->groups =
821                                         devm_kzalloc(&pdev->dev,
822                                                      func_item->ngroups * sizeof(*func_item->groups),
823                                                      GFP_KERNEL);
824                                 if (!func_item->groups)
825                                         return -ENOMEM;
826                         }
827
828                         func_grp = func_item->groups;
829                         while (*func_grp)
830                                 func_grp++;
831
832                         *func_grp = pin->pin.name;
833                         func++;
834                 }
835         }
836
837         return 0;
838 }
839
840 int sunxi_pinctrl_init(struct platform_device *pdev,
841                        const struct sunxi_pinctrl_desc *desc)
842 {
843         struct device_node *node = pdev->dev.of_node;
844         struct pinctrl_desc *pctrl_desc;
845         struct pinctrl_pin_desc *pins;
846         struct sunxi_pinctrl *pctl;
847         struct resource *res;
848         int i, ret, last_pin;
849         struct clk *clk;
850
851         pctl = devm_kzalloc(&pdev->dev, sizeof(*pctl), GFP_KERNEL);
852         if (!pctl)
853                 return -ENOMEM;
854         platform_set_drvdata(pdev, pctl);
855
856         spin_lock_init(&pctl->lock);
857
858         res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
859         pctl->membase = devm_ioremap_resource(&pdev->dev, res);
860         if (IS_ERR(pctl->membase))
861                 return PTR_ERR(pctl->membase);
862
863         pctl->dev = &pdev->dev;
864         pctl->desc = desc;
865
866         pctl->irq_array = devm_kcalloc(&pdev->dev,
867                                        IRQ_PER_BANK * pctl->desc->irq_banks,
868                                        sizeof(*pctl->irq_array),
869                                        GFP_KERNEL);
870         if (!pctl->irq_array)
871                 return -ENOMEM;
872
873         ret = sunxi_pinctrl_build_state(pdev);
874         if (ret) {
875                 dev_err(&pdev->dev, "dt probe failed: %d\n", ret);
876                 return ret;
877         }
878
879         pins = devm_kzalloc(&pdev->dev,
880                             pctl->desc->npins * sizeof(*pins),
881                             GFP_KERNEL);
882         if (!pins)
883                 return -ENOMEM;
884
885         for (i = 0; i < pctl->desc->npins; i++)
886                 pins[i] = pctl->desc->pins[i].pin;
887
888         pctrl_desc = devm_kzalloc(&pdev->dev,
889                                   sizeof(*pctrl_desc),
890                                   GFP_KERNEL);
891         if (!pctrl_desc)
892                 return -ENOMEM;
893
894         pctrl_desc->name = dev_name(&pdev->dev);
895         pctrl_desc->owner = THIS_MODULE;
896         pctrl_desc->pins = pins;
897         pctrl_desc->npins = pctl->desc->npins;
898         pctrl_desc->confops = &sunxi_pconf_ops;
899         pctrl_desc->pctlops = &sunxi_pctrl_ops;
900         pctrl_desc->pmxops =  &sunxi_pmx_ops;
901
902         pctl->pctl_dev = pinctrl_register(pctrl_desc,
903                                           &pdev->dev, pctl);
904         if (!pctl->pctl_dev) {
905                 dev_err(&pdev->dev, "couldn't register pinctrl driver\n");
906                 return -EINVAL;
907         }
908
909         pctl->chip = devm_kzalloc(&pdev->dev, sizeof(*pctl->chip), GFP_KERNEL);
910         if (!pctl->chip) {
911                 ret = -ENOMEM;
912                 goto pinctrl_error;
913         }
914
915         last_pin = pctl->desc->pins[pctl->desc->npins - 1].pin.number;
916         pctl->chip->owner = THIS_MODULE;
917         pctl->chip->request = sunxi_pinctrl_gpio_request,
918         pctl->chip->free = sunxi_pinctrl_gpio_free,
919         pctl->chip->direction_input = sunxi_pinctrl_gpio_direction_input,
920         pctl->chip->direction_output = sunxi_pinctrl_gpio_direction_output,
921         pctl->chip->get = sunxi_pinctrl_gpio_get,
922         pctl->chip->set = sunxi_pinctrl_gpio_set,
923         pctl->chip->of_xlate = sunxi_pinctrl_gpio_of_xlate,
924         pctl->chip->to_irq = sunxi_pinctrl_gpio_to_irq,
925         pctl->chip->of_gpio_n_cells = 3,
926         pctl->chip->can_sleep = false,
927         pctl->chip->ngpio = round_up(last_pin, PINS_PER_BANK) -
928                             pctl->desc->pin_base;
929         pctl->chip->label = dev_name(&pdev->dev);
930         pctl->chip->dev = &pdev->dev;
931         pctl->chip->base = pctl->desc->pin_base;
932
933         ret = gpiochip_add(pctl->chip);
934         if (ret)
935                 goto pinctrl_error;
936
937         for (i = 0; i < pctl->desc->npins; i++) {
938                 const struct sunxi_desc_pin *pin = pctl->desc->pins + i;
939
940                 ret = gpiochip_add_pin_range(pctl->chip, dev_name(&pdev->dev),
941                                              pin->pin.number - pctl->desc->pin_base,
942                                              pin->pin.number, 1);
943                 if (ret)
944                         goto gpiochip_error;
945         }
946
947         clk = devm_clk_get(&pdev->dev, NULL);
948         if (IS_ERR(clk)) {
949                 ret = PTR_ERR(clk);
950                 goto gpiochip_error;
951         }
952
953         ret = clk_prepare_enable(clk);
954         if (ret)
955                 goto gpiochip_error;
956
957         pctl->irq = devm_kcalloc(&pdev->dev,
958                                  pctl->desc->irq_banks,
959                                  sizeof(*pctl->irq),
960                                  GFP_KERNEL);
961         if (!pctl->irq) {
962                 ret = -ENOMEM;
963                 goto clk_error;
964         }
965
966         for (i = 0; i < pctl->desc->irq_banks; i++) {
967                 pctl->irq[i] = platform_get_irq(pdev, i);
968                 if (pctl->irq[i] < 0) {
969                         ret = pctl->irq[i];
970                         goto clk_error;
971                 }
972         }
973
974         pctl->domain = irq_domain_add_linear(node,
975                                              pctl->desc->irq_banks * IRQ_PER_BANK,
976                                              &irq_domain_simple_ops,
977                                              NULL);
978         if (!pctl->domain) {
979                 dev_err(&pdev->dev, "Couldn't register IRQ domain\n");
980                 ret = -ENOMEM;
981                 goto clk_error;
982         }
983
984         for (i = 0; i < (pctl->desc->irq_banks * IRQ_PER_BANK); i++) {
985                 int irqno = irq_create_mapping(pctl->domain, i);
986
987                 irq_set_chip_and_handler(irqno, &sunxi_pinctrl_edge_irq_chip,
988                                          handle_edge_irq);
989                 irq_set_chip_data(irqno, pctl);
990         };
991
992         for (i = 0; i < pctl->desc->irq_banks; i++) {
993                 /* Mask and clear all IRQs before registering a handler */
994                 writel(0, pctl->membase + sunxi_irq_ctrl_reg_from_bank(i));
995                 writel(0xffffffff,
996                         pctl->membase + sunxi_irq_status_reg_from_bank(i));
997
998                 irq_set_chained_handler(pctl->irq[i],
999                                         sunxi_pinctrl_irq_handler);
1000                 irq_set_handler_data(pctl->irq[i], pctl);
1001         }
1002
1003         dev_info(&pdev->dev, "initialized sunXi PIO driver\n");
1004
1005         return 0;
1006
1007 clk_error:
1008         clk_disable_unprepare(clk);
1009 gpiochip_error:
1010         gpiochip_remove(pctl->chip);
1011 pinctrl_error:
1012         pinctrl_unregister(pctl->pctl_dev);
1013         return ret;
1014 }