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