blob: b06ce90f1ed8d2fb4637989337f9430334be3ba2 [file] [log] [blame]
Maxime Ripard0e37f882013-01-18 22:30:34 +01001/*
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>
Emilio López950707c2013-03-22 11:20:40 -030014#include <linux/clk.h>
Maxime Ripard08e9e612013-01-28 21:33:12 +010015#include <linux/gpio.h>
Maxime Ripard60242db2013-06-08 12:05:44 +020016#include <linux/irqdomain.h>
Chen-Yu Tsai905a5112014-02-11 00:22:37 +080017#include <linux/irqchip/chained_irq.h>
Maxime Ripard0e37f882013-01-18 22:30:34 +010018#include <linux/module.h>
19#include <linux/of.h>
20#include <linux/of_address.h>
21#include <linux/of_device.h>
Maxime Ripard60242db2013-06-08 12:05:44 +020022#include <linux/of_irq.h>
Maxime Ripard0e37f882013-01-18 22:30:34 +010023#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>
Boris BREZILLONcf2908e2014-04-10 15:52:45 +020029#include <linux/reset.h>
Maxime Ripard0e37f882013-01-18 22:30:34 +010030#include <linux/slab.h>
31
Maxime Ripard5f910772014-04-18 18:53:02 +020032#include "../core.h"
Maxime Ripard0e37f882013-01-18 22:30:34 +010033#include "pinctrl-sunxi.h"
Maxime Ripard44abb932013-06-09 18:36:03 +020034#include "pinctrl-sunxi-pins.h"
Maxime Ripardeaa3d842013-01-18 22:30:35 +010035
Maxime Ripard0e37f882013-01-18 22:30:34 +010036static struct sunxi_pinctrl_group *
37sunxi_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
51static struct sunxi_pinctrl_function *
52sunxi_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
69static struct sunxi_desc_function *
70sunxi_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
Maxime Ripard814d4f22013-06-08 12:05:43 +020094static struct sunxi_desc_function *
95sunxi_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
Maxime Ripard0e37f882013-01-18 22:30:34 +0100119static 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
126static 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
134static 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
147static 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);
Sachin Kamat3efa9212013-07-29 13:49:32 +0530180 if (!*map)
Maxime Ripard0e37f882013-01-18 22:30:34 +0100181 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
244static 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
Laurent Pinchart022ab142013-02-16 10:25:07 +0100258static const struct pinctrl_ops sunxi_pctrl_ops = {
Maxime Ripard0e37f882013-01-18 22:30:34 +0100259 .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
266static 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
277static int sunxi_pconf_group_set(struct pinctrl_dev *pctldev,
278 unsigned group,
Sherman Yin03b054e2013-08-27 11:32:12 -0700279 unsigned long *configs,
280 unsigned num_configs)
Maxime Ripard0e37f882013-01-18 22:30:34 +0100281{
282 struct sunxi_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
283 struct sunxi_pinctrl_group *g = &pctl->groups[group];
Maxime Ripard1bee9632013-08-04 12:38:48 +0200284 unsigned long flags;
Maxime Ripard0e37f882013-01-18 22:30:34 +0100285 u32 val, mask;
286 u16 strength;
287 u8 dlevel;
Sherman Yin03b054e2013-08-27 11:32:12 -0700288 int i;
Maxime Ripard0e37f882013-01-18 22:30:34 +0100289
Linus Walleij6ad30ce2013-08-29 09:46:30 +0200290 spin_lock_irqsave(&pctl->lock, flags);
Maxime Ripard1bee9632013-08-04 12:38:48 +0200291
Sherman Yin03b054e2013-08-27 11:32:12 -0700292 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]);
Linus Walleij07b7eb92013-08-29 19:17:13 +0200296 if (strength > 40) {
297 spin_unlock_irqrestore(&pctl->lock, flags);
Sherman Yin03b054e2013-08-27 11:32:12 -0700298 return -EINVAL;
Linus Walleij07b7eb92013-08-29 19:17:13 +0200299 }
Sherman Yin03b054e2013-08-27 11:32:12 -0700300 /*
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 }
Sherman Yin03b054e2013-08-27 11:32:12 -0700329 /* cache the config value */
330 g->config = configs[i];
331 } /* for each config */
Maxime Ripard0e37f882013-01-18 22:30:34 +0100332
Linus Walleij6ad30ce2013-08-29 09:46:30 +0200333 spin_unlock_irqrestore(&pctl->lock, flags);
Maxime Ripard0e37f882013-01-18 22:30:34 +0100334
335 return 0;
336}
337
Laurent Pinchart022ab142013-02-16 10:25:07 +0100338static const struct pinconf_ops sunxi_pconf_ops = {
Maxime Ripard0e37f882013-01-18 22:30:34 +0100339 .pin_config_group_get = sunxi_pconf_group_get,
340 .pin_config_group_set = sunxi_pconf_group_set,
341};
342
343static 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
350static 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
358static 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
371static 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);
Maxime Ripard1bee9632013-08-04 12:38:48 +0200376 unsigned long flags;
377 u32 val, mask;
Maxime Ripard0e37f882013-01-18 22:30:34 +0100378
Maxime Ripard1bee9632013-08-04 12:38:48 +0200379 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);
Maxime Ripard0e37f882013-01-18 22:30:34 +0100383 writel((val & ~mask) | config << sunxi_mux_offset(pin),
384 pctl->membase + sunxi_mux_reg(pin));
Maxime Ripard1bee9632013-08-04 12:38:48 +0200385
386 spin_unlock_irqrestore(&pctl->lock, flags);
Maxime Ripard0e37f882013-01-18 22:30:34 +0100387}
388
389static 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
Maxime Ripard08e9e612013-01-28 21:33:12 +0100409static int
410sunxi_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;
Maxime Ripard08e9e612013-01-28 21:33:12 +0100417 const char *func;
Maxime Ripard08e9e612013-01-28 21:33:12 +0100418
419 if (input)
420 func = "gpio_in";
421 else
422 func = "gpio_out";
423
Maxime Ripard814d4f22013-06-08 12:05:43 +0200424 desc = sunxi_pinctrl_desc_find_function_by_pin(pctl, offset, func);
425 if (!desc)
426 return -EINVAL;
Maxime Ripard08e9e612013-01-28 21:33:12 +0100427
428 sunxi_pmx_set(pctldev, offset, desc->muxval);
429
Maxime Ripard814d4f22013-06-08 12:05:43 +0200430 return 0;
Maxime Ripard08e9e612013-01-28 21:33:12 +0100431}
432
Laurent Pinchart022ab142013-02-16 10:25:07 +0100433static const struct pinmux_ops sunxi_pmx_ops = {
Maxime Ripard0e37f882013-01-18 22:30:34 +0100434 .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,
Maxime Ripard08e9e612013-01-28 21:33:12 +0100438 .gpio_set_direction = sunxi_pmx_gpio_set_direction,
Maxime Ripard0e37f882013-01-18 22:30:34 +0100439};
440
441static struct pinctrl_desc sunxi_pctrl_desc = {
442 .confops = &sunxi_pconf_ops,
443 .pctlops = &sunxi_pctrl_ops,
444 .pmxops = &sunxi_pmx_ops,
445};
446
Maxime Ripard08e9e612013-01-28 21:33:12 +0100447static int sunxi_pinctrl_gpio_request(struct gpio_chip *chip, unsigned offset)
448{
449 return pinctrl_request_gpio(chip->base + offset);
450}
451
452static void sunxi_pinctrl_gpio_free(struct gpio_chip *chip, unsigned offset)
453{
454 pinctrl_free_gpio(chip->base + offset);
455}
456
457static 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
463static 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
Maxime Ripard08e9e612013-01-28 21:33:12 +0100474static 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);
Maxime Ripard1bee9632013-08-04 12:38:48 +0200480 unsigned long flags;
481 u32 regval;
Maxime Ripard08e9e612013-01-28 21:33:12 +0100482
Maxime Ripard1bee9632013-08-04 12:38:48 +0200483 spin_lock_irqsave(&pctl->lock, flags);
484
485 regval = readl(pctl->membase + reg);
Maxime Ripard08e9e612013-01-28 21:33:12 +0100486
Maxime Riparddf7b34f2013-07-25 12:41:16 +0200487 if (value)
488 regval |= BIT(index);
489 else
490 regval &= ~(BIT(index));
491
492 writel(regval, pctl->membase + reg);
Maxime Ripard1bee9632013-08-04 12:38:48 +0200493
494 spin_unlock_irqrestore(&pctl->lock, flags);
Maxime Ripard08e9e612013-01-28 21:33:12 +0100495}
496
Chen-Yu Tsaifa8cf572014-01-16 14:34:23 +0800497static 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
Maxime Riparda0d72092013-02-03 12:10:11 +0100504static 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
Maxime Ripard60242db2013-06-08 12:05:44 +0200522static 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
Axel Linc9e3b2d2013-08-30 16:31:25 +0800527 if (offset >= chip->ngpio)
Maxime Ripard60242db2013-06-08 12:05:44 +0200528 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
Maxime Ripard08e9e612013-01-28 21:33:12 +0100542
Maxime Ripard60242db2013-06-08 12:05:44 +0200543static 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);
Maxime Ripard1bee9632013-08-04 12:38:48 +0200549 unsigned long flags;
Maxime Ripard2aaaddf2013-08-04 12:38:47 +0200550 u32 regval;
Maxime Ripard60242db2013-06-08 12:05:44 +0200551 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
Maxime Ripard1bee9632013-08-04 12:38:48 +0200573 spin_lock_irqsave(&pctl->lock, flags);
574
Maxime Ripard2aaaddf2013-08-04 12:38:47 +0200575 regval = readl(pctl->membase + reg);
Hans de Goeded82f9402014-02-17 22:19:43 +0100576 regval &= ~(IRQ_CFG_IRQ_MASK << index);
Maxime Ripard2aaaddf2013-08-04 12:38:47 +0200577 writel(regval | (mode << index), pctl->membase + reg);
Maxime Ripard60242db2013-06-08 12:05:44 +0200578
Maxime Ripard1bee9632013-08-04 12:38:48 +0200579 spin_unlock_irqrestore(&pctl->lock, flags);
Maxime Ripard60242db2013-06-08 12:05:44 +0200580
581 return 0;
582}
583
584static 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);
Maxime Ripard1bee9632013-08-04 12:38:48 +0200591 unsigned long flags;
Maxime Ripard60242db2013-06-08 12:05:44 +0200592 u32 val;
593
Maxime Ripard1bee9632013-08-04 12:38:48 +0200594 spin_lock_irqsave(&pctl->lock, flags);
595
Maxime Ripard60242db2013-06-08 12:05:44 +0200596 /* 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);
Maxime Ripard1bee9632013-08-04 12:38:48 +0200602
603 spin_unlock_irqrestore(&pctl->lock, flags);
Maxime Ripard60242db2013-06-08 12:05:44 +0200604}
605
606static 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);
Maxime Ripard1bee9632013-08-04 12:38:48 +0200611 unsigned long flags;
Maxime Ripard60242db2013-06-08 12:05:44 +0200612 u32 val;
613
Maxime Ripard1bee9632013-08-04 12:38:48 +0200614 spin_lock_irqsave(&pctl->lock, flags);
615
Maxime Ripard60242db2013-06-08 12:05:44 +0200616 /* Mask the IRQ */
617 val = readl(pctl->membase + reg);
618 writel(val & ~(1 << idx), pctl->membase + reg);
Maxime Ripard1bee9632013-08-04 12:38:48 +0200619
620 spin_unlock_irqrestore(&pctl->lock, flags);
Maxime Ripard60242db2013-06-08 12:05:44 +0200621}
622
623static 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);
Maxime Ripard1bee9632013-08-04 12:38:48 +0200629 unsigned long flags;
Maxime Ripard60242db2013-06-08 12:05:44 +0200630 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
Maxime Ripard1bee9632013-08-04 12:38:48 +0200639 spin_lock_irqsave(&pctl->lock, flags);
640
Maxime Ripard60242db2013-06-08 12:05:44 +0200641 /* Unmask the IRQ */
642 val = readl(pctl->membase + reg);
643 writel(val | (1 << idx), pctl->membase + reg);
Maxime Ripard1bee9632013-08-04 12:38:48 +0200644
645 spin_unlock_irqrestore(&pctl->lock, flags);
Maxime Ripard60242db2013-06-08 12:05:44 +0200646}
647
648static 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
655static void sunxi_pinctrl_irq_handler(unsigned irq, struct irq_desc *desc)
656{
Chen-Yu Tsai905a5112014-02-11 00:22:37 +0800657 struct irq_chip *chip = irq_get_chip(irq);
Maxime Ripard60242db2013-06-08 12:05:44 +0200658 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
Chen-Yu Tsai905a5112014-02-11 00:22:37 +0800667 chained_irq_enter(chip, desc);
Maxime Ripard60242db2013-06-08 12:05:44 +0200668 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 }
Chen-Yu Tsai905a5112014-02-11 00:22:37 +0800672 chained_irq_exit(chip, desc);
Maxime Ripard60242db2013-06-08 12:05:44 +0200673 }
674}
675
Maxime Ripard0e37f882013-01-18 22:30:34 +0100676static struct of_device_id sunxi_pinctrl_match[] = {
Maxime Ripard9f5b6b32013-01-26 15:36:53 +0100677 { .compatible = "allwinner,sun4i-a10-pinctrl", .data = (void *)&sun4i_a10_pinctrl_data },
Maxime Ripardac689362013-06-09 18:36:04 +0200678 { .compatible = "allwinner,sun5i-a10s-pinctrl", .data = (void *)&sun5i_a10s_pinctrl_data },
Maxime Ripardeaa3d842013-01-18 22:30:35 +0100679 { .compatible = "allwinner,sun5i-a13-pinctrl", .data = (void *)&sun5i_a13_pinctrl_data },
Maxime Ripardde0c9022013-08-04 11:47:34 +0200680 { .compatible = "allwinner,sun6i-a31-pinctrl", .data = (void *)&sun6i_a31_pinctrl_data },
Boris BREZILLONd9d0e1f2014-04-10 15:52:44 +0200681 { .compatible = "allwinner,sun6i-a31-r-pinctrl", .data = (void *)&sun6i_a31_r_pinctrl_data },
Maxime Ripard23ac6df2013-08-04 11:58:45 +0200682 { .compatible = "allwinner,sun7i-a20-pinctrl", .data = (void *)&sun7i_a20_pinctrl_data },
Maxime Ripard0e37f882013-01-18 22:30:34 +0100683 {}
684};
685MODULE_DEVICE_TABLE(of, sunxi_pinctrl_match);
686
687static 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
709static 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
Maxime Ripard2284ba62014-04-18 20:10:41 +0200790int sunxi_pinctrl_init(struct platform_device *pdev,
791 const struct sunxi_pinctrl_desc *desc)
Maxime Ripard0e37f882013-01-18 22:30:34 +0100792{
793 struct device_node *node = pdev->dev.of_node;
Maxime Ripard0e37f882013-01-18 22:30:34 +0100794 struct pinctrl_pin_desc *pins;
795 struct sunxi_pinctrl *pctl;
Boris BREZILLONcf2908e2014-04-10 15:52:45 +0200796 struct reset_control *rstc;
Maxime Ripard4409caf2014-04-26 21:59:50 +0200797 struct resource *res;
Maxime Ripard08e9e612013-01-28 21:33:12 +0100798 int i, ret, last_pin;
Emilio López950707c2013-03-22 11:20:40 -0300799 struct clk *clk;
Maxime Ripard0e37f882013-01-18 22:30:34 +0100800
801 pctl = devm_kzalloc(&pdev->dev, sizeof(*pctl), GFP_KERNEL);
802 if (!pctl)
803 return -ENOMEM;
804 platform_set_drvdata(pdev, pctl);
805
Maxime Ripard1bee9632013-08-04 12:38:48 +0200806 spin_lock_init(&pctl->lock);
807
Maxime Ripard4409caf2014-04-26 21:59:50 +0200808 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
809 pctl->membase = devm_ioremap_resource(&pdev->dev, res);
810 if (IS_ERR(pctl->membase))
811 return PTR_ERR(pctl->membase);
Maxime Ripard0e37f882013-01-18 22:30:34 +0100812
Maxime Ripard2284ba62014-04-18 20:10:41 +0200813 pctl->desc = desc;
Maxime Ripard0e37f882013-01-18 22:30:34 +0100814
815 ret = sunxi_pinctrl_build_state(pdev);
816 if (ret) {
817 dev_err(&pdev->dev, "dt probe failed: %d\n", ret);
818 return ret;
819 }
820
821 pins = devm_kzalloc(&pdev->dev,
822 pctl->desc->npins * sizeof(*pins),
823 GFP_KERNEL);
824 if (!pins)
825 return -ENOMEM;
826
827 for (i = 0; i < pctl->desc->npins; i++)
828 pins[i] = pctl->desc->pins[i].pin;
829
830 sunxi_pctrl_desc.name = dev_name(&pdev->dev);
831 sunxi_pctrl_desc.owner = THIS_MODULE;
832 sunxi_pctrl_desc.pins = pins;
833 sunxi_pctrl_desc.npins = pctl->desc->npins;
834 pctl->dev = &pdev->dev;
835 pctl->pctl_dev = pinctrl_register(&sunxi_pctrl_desc,
836 &pdev->dev, pctl);
837 if (!pctl->pctl_dev) {
838 dev_err(&pdev->dev, "couldn't register pinctrl driver\n");
839 return -EINVAL;
840 }
841
Maxime Ripard08e9e612013-01-28 21:33:12 +0100842 pctl->chip = devm_kzalloc(&pdev->dev, sizeof(*pctl->chip), GFP_KERNEL);
843 if (!pctl->chip) {
844 ret = -ENOMEM;
845 goto pinctrl_error;
846 }
847
848 last_pin = pctl->desc->pins[pctl->desc->npins - 1].pin.number;
Boris BREZILLONd83c82c2014-04-10 15:52:43 +0200849 pctl->chip->owner = THIS_MODULE;
850 pctl->chip->request = sunxi_pinctrl_gpio_request,
851 pctl->chip->free = sunxi_pinctrl_gpio_free,
852 pctl->chip->direction_input = sunxi_pinctrl_gpio_direction_input,
853 pctl->chip->direction_output = sunxi_pinctrl_gpio_direction_output,
854 pctl->chip->get = sunxi_pinctrl_gpio_get,
855 pctl->chip->set = sunxi_pinctrl_gpio_set,
856 pctl->chip->of_xlate = sunxi_pinctrl_gpio_of_xlate,
857 pctl->chip->to_irq = sunxi_pinctrl_gpio_to_irq,
858 pctl->chip->of_gpio_n_cells = 3,
859 pctl->chip->can_sleep = false,
860 pctl->chip->ngpio = round_up(last_pin, PINS_PER_BANK) -
861 pctl->desc->pin_base;
Maxime Ripard08e9e612013-01-28 21:33:12 +0100862 pctl->chip->label = dev_name(&pdev->dev);
863 pctl->chip->dev = &pdev->dev;
Boris BREZILLONd83c82c2014-04-10 15:52:43 +0200864 pctl->chip->base = pctl->desc->pin_base;
Maxime Ripard08e9e612013-01-28 21:33:12 +0100865
866 ret = gpiochip_add(pctl->chip);
867 if (ret)
868 goto pinctrl_error;
869
870 for (i = 0; i < pctl->desc->npins; i++) {
871 const struct sunxi_desc_pin *pin = pctl->desc->pins + i;
872
873 ret = gpiochip_add_pin_range(pctl->chip, dev_name(&pdev->dev),
874 pin->pin.number,
875 pin->pin.number, 1);
876 if (ret)
877 goto gpiochip_error;
878 }
879
Emilio López950707c2013-03-22 11:20:40 -0300880 clk = devm_clk_get(&pdev->dev, NULL);
Wei Yongjund72f88a2013-05-23 17:32:14 +0800881 if (IS_ERR(clk)) {
882 ret = PTR_ERR(clk);
Emilio López950707c2013-03-22 11:20:40 -0300883 goto gpiochip_error;
Wei Yongjund72f88a2013-05-23 17:32:14 +0800884 }
Emilio López950707c2013-03-22 11:20:40 -0300885
Boris BREZILLON64150932014-04-10 15:52:40 +0200886 ret = clk_prepare_enable(clk);
887 if (ret)
888 goto gpiochip_error;
Emilio López950707c2013-03-22 11:20:40 -0300889
Boris BREZILLONcf2908e2014-04-10 15:52:45 +0200890 rstc = devm_reset_control_get_optional(&pdev->dev, NULL);
891 if (!IS_ERR(rstc)) {
892 ret = reset_control_deassert(rstc);
893 if (ret)
894 goto clk_error;
895 }
896
Maxime Ripard60242db2013-06-08 12:05:44 +0200897 pctl->irq = irq_of_parse_and_map(node, 0);
898 if (!pctl->irq) {
899 ret = -EINVAL;
Boris BREZILLONcf2908e2014-04-10 15:52:45 +0200900 goto rstc_error;
Maxime Ripard60242db2013-06-08 12:05:44 +0200901 }
902
903 pctl->domain = irq_domain_add_linear(node, SUNXI_IRQ_NUMBER,
904 &irq_domain_simple_ops, NULL);
905 if (!pctl->domain) {
906 dev_err(&pdev->dev, "Couldn't register IRQ domain\n");
907 ret = -ENOMEM;
Boris BREZILLONcf2908e2014-04-10 15:52:45 +0200908 goto rstc_error;
Maxime Ripard60242db2013-06-08 12:05:44 +0200909 }
910
911 for (i = 0; i < SUNXI_IRQ_NUMBER; i++) {
912 int irqno = irq_create_mapping(pctl->domain, i);
913
914 irq_set_chip_and_handler(irqno, &sunxi_pinctrl_irq_chip,
915 handle_simple_irq);
916 irq_set_chip_data(irqno, pctl);
917 };
918
919 irq_set_chained_handler(pctl->irq, sunxi_pinctrl_irq_handler);
920 irq_set_handler_data(pctl->irq, pctl);
921
Maxime Ripard08e9e612013-01-28 21:33:12 +0100922 dev_info(&pdev->dev, "initialized sunXi PIO driver\n");
Maxime Ripard0e37f882013-01-18 22:30:34 +0100923
924 return 0;
Maxime Ripard08e9e612013-01-28 21:33:12 +0100925
Boris BREZILLONcf2908e2014-04-10 15:52:45 +0200926rstc_error:
927 if (!IS_ERR(rstc))
928 reset_control_assert(rstc);
Boris BREZILLONe2bddc62014-04-10 15:52:41 +0200929clk_error:
930 clk_disable_unprepare(clk);
Maxime Ripard08e9e612013-01-28 21:33:12 +0100931gpiochip_error:
Axel Lin97fc4632013-05-19 13:58:37 +0800932 if (gpiochip_remove(pctl->chip))
933 dev_err(&pdev->dev, "failed to remove gpio chip\n");
Maxime Ripard08e9e612013-01-28 21:33:12 +0100934pinctrl_error:
935 pinctrl_unregister(pctl->pctl_dev);
936 return ret;
Maxime Ripard0e37f882013-01-18 22:30:34 +0100937}
938
Maxime Ripard2284ba62014-04-18 20:10:41 +0200939static int sunxi_pinctrl_probe(struct platform_device *pdev)
940{
941 const struct of_device_id *device;
942
943 device = of_match_device(sunxi_pinctrl_match, &pdev->dev);
944 if (!device)
945 return -ENODEV;
946
947 return sunxi_pinctrl_init(pdev, device->data);
948}
949
Maxime Ripard0e37f882013-01-18 22:30:34 +0100950static struct platform_driver sunxi_pinctrl_driver = {
951 .probe = sunxi_pinctrl_probe,
952 .driver = {
953 .name = "sunxi-pinctrl",
954 .owner = THIS_MODULE,
955 .of_match_table = sunxi_pinctrl_match,
956 },
957};
958module_platform_driver(sunxi_pinctrl_driver);
959
Antoine Ténartb6369a82014-04-16 14:57:48 +0200960MODULE_AUTHOR("Maxime Ripard <maxime.ripard@free-electrons.com>");
Maxime Ripard0e37f882013-01-18 22:30:34 +0100961MODULE_DESCRIPTION("Allwinner A1X pinctrl driver");
962MODULE_LICENSE("GPL");