blob: 17b5f80dae0de2efb7e26a41c198468e06b281d9 [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>
29#include <linux/slab.h>
30
31#include "core.h"
32#include "pinctrl-sunxi.h"
Maxime Ripard44abb932013-06-09 18:36:03 +020033#include "pinctrl-sunxi-pins.h"
Maxime Ripardeaa3d842013-01-18 22:30:35 +010034
Maxime Ripard0e37f882013-01-18 22:30:34 +010035static struct sunxi_pinctrl_group *
36sunxi_pinctrl_find_group_by_name(struct sunxi_pinctrl *pctl, const char *group)
37{
38 int i;
39
40 for (i = 0; i < pctl->ngroups; i++) {
41 struct sunxi_pinctrl_group *grp = pctl->groups + i;
42
43 if (!strcmp(grp->name, group))
44 return grp;
45 }
46
47 return NULL;
48}
49
50static struct sunxi_pinctrl_function *
51sunxi_pinctrl_find_function_by_name(struct sunxi_pinctrl *pctl,
52 const char *name)
53{
54 struct sunxi_pinctrl_function *func = pctl->functions;
55 int i;
56
57 for (i = 0; i < pctl->nfunctions; i++) {
58 if (!func[i].name)
59 break;
60
61 if (!strcmp(func[i].name, name))
62 return func + i;
63 }
64
65 return NULL;
66}
67
68static struct sunxi_desc_function *
69sunxi_pinctrl_desc_find_function_by_name(struct sunxi_pinctrl *pctl,
70 const char *pin_name,
71 const char *func_name)
72{
73 int i;
74
75 for (i = 0; i < pctl->desc->npins; i++) {
76 const struct sunxi_desc_pin *pin = pctl->desc->pins + i;
77
78 if (!strcmp(pin->pin.name, pin_name)) {
79 struct sunxi_desc_function *func = pin->functions;
80
81 while (func->name) {
82 if (!strcmp(func->name, func_name))
83 return func;
84
85 func++;
86 }
87 }
88 }
89
90 return NULL;
91}
92
Maxime Ripard814d4f22013-06-08 12:05:43 +020093static struct sunxi_desc_function *
94sunxi_pinctrl_desc_find_function_by_pin(struct sunxi_pinctrl *pctl,
95 const u16 pin_num,
96 const char *func_name)
97{
98 int i;
99
100 for (i = 0; i < pctl->desc->npins; i++) {
101 const struct sunxi_desc_pin *pin = pctl->desc->pins + i;
102
103 if (pin->pin.number == pin_num) {
104 struct sunxi_desc_function *func = pin->functions;
105
106 while (func->name) {
107 if (!strcmp(func->name, func_name))
108 return func;
109
110 func++;
111 }
112 }
113 }
114
115 return NULL;
116}
117
Maxime Ripard0e37f882013-01-18 22:30:34 +0100118static int sunxi_pctrl_get_groups_count(struct pinctrl_dev *pctldev)
119{
120 struct sunxi_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
121
122 return pctl->ngroups;
123}
124
125static const char *sunxi_pctrl_get_group_name(struct pinctrl_dev *pctldev,
126 unsigned group)
127{
128 struct sunxi_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
129
130 return pctl->groups[group].name;
131}
132
133static int sunxi_pctrl_get_group_pins(struct pinctrl_dev *pctldev,
134 unsigned group,
135 const unsigned **pins,
136 unsigned *num_pins)
137{
138 struct sunxi_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
139
140 *pins = (unsigned *)&pctl->groups[group].pin;
141 *num_pins = 1;
142
143 return 0;
144}
145
146static int sunxi_pctrl_dt_node_to_map(struct pinctrl_dev *pctldev,
147 struct device_node *node,
148 struct pinctrl_map **map,
149 unsigned *num_maps)
150{
151 struct sunxi_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
152 unsigned long *pinconfig;
153 struct property *prop;
154 const char *function;
155 const char *group;
156 int ret, nmaps, i = 0;
157 u32 val;
158
159 *map = NULL;
160 *num_maps = 0;
161
162 ret = of_property_read_string(node, "allwinner,function", &function);
163 if (ret) {
164 dev_err(pctl->dev,
165 "missing allwinner,function property in node %s\n",
166 node->name);
167 return -EINVAL;
168 }
169
170 nmaps = of_property_count_strings(node, "allwinner,pins") * 2;
171 if (nmaps < 0) {
172 dev_err(pctl->dev,
173 "missing allwinner,pins property in node %s\n",
174 node->name);
175 return -EINVAL;
176 }
177
178 *map = kmalloc(nmaps * sizeof(struct pinctrl_map), GFP_KERNEL);
Sachin Kamat3efa9212013-07-29 13:49:32 +0530179 if (!*map)
Maxime Ripard0e37f882013-01-18 22:30:34 +0100180 return -ENOMEM;
181
182 of_property_for_each_string(node, "allwinner,pins", prop, group) {
183 struct sunxi_pinctrl_group *grp =
184 sunxi_pinctrl_find_group_by_name(pctl, group);
185 int j = 0, configlen = 0;
186
187 if (!grp) {
188 dev_err(pctl->dev, "unknown pin %s", group);
189 continue;
190 }
191
192 if (!sunxi_pinctrl_desc_find_function_by_name(pctl,
193 grp->name,
194 function)) {
195 dev_err(pctl->dev, "unsupported function %s on pin %s",
196 function, group);
197 continue;
198 }
199
200 (*map)[i].type = PIN_MAP_TYPE_MUX_GROUP;
201 (*map)[i].data.mux.group = group;
202 (*map)[i].data.mux.function = function;
203
204 i++;
205
206 (*map)[i].type = PIN_MAP_TYPE_CONFIGS_GROUP;
207 (*map)[i].data.configs.group_or_pin = group;
208
209 if (of_find_property(node, "allwinner,drive", NULL))
210 configlen++;
211 if (of_find_property(node, "allwinner,pull", NULL))
212 configlen++;
213
214 pinconfig = kzalloc(configlen * sizeof(*pinconfig), GFP_KERNEL);
215
216 if (!of_property_read_u32(node, "allwinner,drive", &val)) {
217 u16 strength = (val + 1) * 10;
218 pinconfig[j++] =
219 pinconf_to_config_packed(PIN_CONFIG_DRIVE_STRENGTH,
220 strength);
221 }
222
223 if (!of_property_read_u32(node, "allwinner,pull", &val)) {
224 enum pin_config_param pull = PIN_CONFIG_END;
225 if (val == 1)
226 pull = PIN_CONFIG_BIAS_PULL_UP;
227 else if (val == 2)
228 pull = PIN_CONFIG_BIAS_PULL_DOWN;
229 pinconfig[j++] = pinconf_to_config_packed(pull, 0);
230 }
231
232 (*map)[i].data.configs.configs = pinconfig;
233 (*map)[i].data.configs.num_configs = configlen;
234
235 i++;
236 }
237
238 *num_maps = nmaps;
239
240 return 0;
241}
242
243static void sunxi_pctrl_dt_free_map(struct pinctrl_dev *pctldev,
244 struct pinctrl_map *map,
245 unsigned num_maps)
246{
247 int i;
248
249 for (i = 0; i < num_maps; i++) {
250 if (map[i].type == PIN_MAP_TYPE_CONFIGS_GROUP)
251 kfree(map[i].data.configs.configs);
252 }
253
254 kfree(map);
255}
256
Laurent Pinchart022ab142013-02-16 10:25:07 +0100257static const struct pinctrl_ops sunxi_pctrl_ops = {
Maxime Ripard0e37f882013-01-18 22:30:34 +0100258 .dt_node_to_map = sunxi_pctrl_dt_node_to_map,
259 .dt_free_map = sunxi_pctrl_dt_free_map,
260 .get_groups_count = sunxi_pctrl_get_groups_count,
261 .get_group_name = sunxi_pctrl_get_group_name,
262 .get_group_pins = sunxi_pctrl_get_group_pins,
263};
264
265static int sunxi_pconf_group_get(struct pinctrl_dev *pctldev,
266 unsigned group,
267 unsigned long *config)
268{
269 struct sunxi_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
270
271 *config = pctl->groups[group].config;
272
273 return 0;
274}
275
276static int sunxi_pconf_group_set(struct pinctrl_dev *pctldev,
277 unsigned group,
Sherman Yin03b054e2013-08-27 11:32:12 -0700278 unsigned long *configs,
279 unsigned num_configs)
Maxime Ripard0e37f882013-01-18 22:30:34 +0100280{
281 struct sunxi_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
282 struct sunxi_pinctrl_group *g = &pctl->groups[group];
Maxime Ripard1bee9632013-08-04 12:38:48 +0200283 unsigned long flags;
Maxime Ripard0e37f882013-01-18 22:30:34 +0100284 u32 val, mask;
285 u16 strength;
286 u8 dlevel;
Sherman Yin03b054e2013-08-27 11:32:12 -0700287 int i;
Maxime Ripard0e37f882013-01-18 22:30:34 +0100288
Linus Walleij6ad30ce2013-08-29 09:46:30 +0200289 spin_lock_irqsave(&pctl->lock, flags);
Maxime Ripard1bee9632013-08-04 12:38:48 +0200290
Sherman Yin03b054e2013-08-27 11:32:12 -0700291 for (i = 0; i < num_configs; i++) {
292 switch (pinconf_to_config_param(configs[i])) {
293 case PIN_CONFIG_DRIVE_STRENGTH:
294 strength = pinconf_to_config_argument(configs[i]);
Linus Walleij07b7eb92013-08-29 19:17:13 +0200295 if (strength > 40) {
296 spin_unlock_irqrestore(&pctl->lock, flags);
Sherman Yin03b054e2013-08-27 11:32:12 -0700297 return -EINVAL;
Linus Walleij07b7eb92013-08-29 19:17:13 +0200298 }
Sherman Yin03b054e2013-08-27 11:32:12 -0700299 /*
300 * We convert from mA to what the register expects:
301 * 0: 10mA
302 * 1: 20mA
303 * 2: 30mA
304 * 3: 40mA
305 */
306 dlevel = strength / 10 - 1;
307 val = readl(pctl->membase + sunxi_dlevel_reg(g->pin));
308 mask = DLEVEL_PINS_MASK << sunxi_dlevel_offset(g->pin);
309 writel((val & ~mask)
310 | dlevel << sunxi_dlevel_offset(g->pin),
311 pctl->membase + sunxi_dlevel_reg(g->pin));
312 break;
313 case PIN_CONFIG_BIAS_PULL_UP:
314 val = readl(pctl->membase + sunxi_pull_reg(g->pin));
315 mask = PULL_PINS_MASK << sunxi_pull_offset(g->pin);
316 writel((val & ~mask) | 1 << sunxi_pull_offset(g->pin),
317 pctl->membase + sunxi_pull_reg(g->pin));
318 break;
319 case PIN_CONFIG_BIAS_PULL_DOWN:
320 val = readl(pctl->membase + sunxi_pull_reg(g->pin));
321 mask = PULL_PINS_MASK << sunxi_pull_offset(g->pin);
322 writel((val & ~mask) | 2 << sunxi_pull_offset(g->pin),
323 pctl->membase + sunxi_pull_reg(g->pin));
324 break;
325 default:
326 break;
327 }
Sherman Yin03b054e2013-08-27 11:32:12 -0700328 /* cache the config value */
329 g->config = configs[i];
330 } /* for each config */
Maxime Ripard0e37f882013-01-18 22:30:34 +0100331
Linus Walleij6ad30ce2013-08-29 09:46:30 +0200332 spin_unlock_irqrestore(&pctl->lock, flags);
Maxime Ripard0e37f882013-01-18 22:30:34 +0100333
334 return 0;
335}
336
Laurent Pinchart022ab142013-02-16 10:25:07 +0100337static const struct pinconf_ops sunxi_pconf_ops = {
Maxime Ripard0e37f882013-01-18 22:30:34 +0100338 .pin_config_group_get = sunxi_pconf_group_get,
339 .pin_config_group_set = sunxi_pconf_group_set,
340};
341
342static int sunxi_pmx_get_funcs_cnt(struct pinctrl_dev *pctldev)
343{
344 struct sunxi_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
345
346 return pctl->nfunctions;
347}
348
349static const char *sunxi_pmx_get_func_name(struct pinctrl_dev *pctldev,
350 unsigned function)
351{
352 struct sunxi_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
353
354 return pctl->functions[function].name;
355}
356
357static int sunxi_pmx_get_func_groups(struct pinctrl_dev *pctldev,
358 unsigned function,
359 const char * const **groups,
360 unsigned * const num_groups)
361{
362 struct sunxi_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
363
364 *groups = pctl->functions[function].groups;
365 *num_groups = pctl->functions[function].ngroups;
366
367 return 0;
368}
369
370static void sunxi_pmx_set(struct pinctrl_dev *pctldev,
371 unsigned pin,
372 u8 config)
373{
374 struct sunxi_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
Maxime Ripard1bee9632013-08-04 12:38:48 +0200375 unsigned long flags;
376 u32 val, mask;
Maxime Ripard0e37f882013-01-18 22:30:34 +0100377
Maxime Ripard1bee9632013-08-04 12:38:48 +0200378 spin_lock_irqsave(&pctl->lock, flags);
379
380 val = readl(pctl->membase + sunxi_mux_reg(pin));
381 mask = MUX_PINS_MASK << sunxi_mux_offset(pin);
Maxime Ripard0e37f882013-01-18 22:30:34 +0100382 writel((val & ~mask) | config << sunxi_mux_offset(pin),
383 pctl->membase + sunxi_mux_reg(pin));
Maxime Ripard1bee9632013-08-04 12:38:48 +0200384
385 spin_unlock_irqrestore(&pctl->lock, flags);
Maxime Ripard0e37f882013-01-18 22:30:34 +0100386}
387
388static int sunxi_pmx_enable(struct pinctrl_dev *pctldev,
389 unsigned function,
390 unsigned group)
391{
392 struct sunxi_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
393 struct sunxi_pinctrl_group *g = pctl->groups + group;
394 struct sunxi_pinctrl_function *func = pctl->functions + function;
395 struct sunxi_desc_function *desc =
396 sunxi_pinctrl_desc_find_function_by_name(pctl,
397 g->name,
398 func->name);
399
400 if (!desc)
401 return -EINVAL;
402
403 sunxi_pmx_set(pctldev, g->pin, desc->muxval);
404
405 return 0;
406}
407
Maxime Ripard08e9e612013-01-28 21:33:12 +0100408static int
409sunxi_pmx_gpio_set_direction(struct pinctrl_dev *pctldev,
410 struct pinctrl_gpio_range *range,
411 unsigned offset,
412 bool input)
413{
414 struct sunxi_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
415 struct sunxi_desc_function *desc;
Maxime Ripard08e9e612013-01-28 21:33:12 +0100416 const char *func;
Maxime Ripard08e9e612013-01-28 21:33:12 +0100417
418 if (input)
419 func = "gpio_in";
420 else
421 func = "gpio_out";
422
Maxime Ripard814d4f22013-06-08 12:05:43 +0200423 desc = sunxi_pinctrl_desc_find_function_by_pin(pctl, offset, func);
424 if (!desc)
425 return -EINVAL;
Maxime Ripard08e9e612013-01-28 21:33:12 +0100426
427 sunxi_pmx_set(pctldev, offset, desc->muxval);
428
Maxime Ripard814d4f22013-06-08 12:05:43 +0200429 return 0;
Maxime Ripard08e9e612013-01-28 21:33:12 +0100430}
431
Laurent Pinchart022ab142013-02-16 10:25:07 +0100432static const struct pinmux_ops sunxi_pmx_ops = {
Maxime Ripard0e37f882013-01-18 22:30:34 +0100433 .get_functions_count = sunxi_pmx_get_funcs_cnt,
434 .get_function_name = sunxi_pmx_get_func_name,
435 .get_function_groups = sunxi_pmx_get_func_groups,
436 .enable = sunxi_pmx_enable,
Maxime Ripard08e9e612013-01-28 21:33:12 +0100437 .gpio_set_direction = sunxi_pmx_gpio_set_direction,
Maxime Ripard0e37f882013-01-18 22:30:34 +0100438};
439
440static struct pinctrl_desc sunxi_pctrl_desc = {
441 .confops = &sunxi_pconf_ops,
442 .pctlops = &sunxi_pctrl_ops,
443 .pmxops = &sunxi_pmx_ops,
444};
445
Maxime Ripard08e9e612013-01-28 21:33:12 +0100446static int sunxi_pinctrl_gpio_request(struct gpio_chip *chip, unsigned offset)
447{
448 return pinctrl_request_gpio(chip->base + offset);
449}
450
451static void sunxi_pinctrl_gpio_free(struct gpio_chip *chip, unsigned offset)
452{
453 pinctrl_free_gpio(chip->base + offset);
454}
455
456static int sunxi_pinctrl_gpio_direction_input(struct gpio_chip *chip,
457 unsigned offset)
458{
459 return pinctrl_gpio_direction_input(chip->base + offset);
460}
461
462static int sunxi_pinctrl_gpio_get(struct gpio_chip *chip, unsigned offset)
463{
464 struct sunxi_pinctrl *pctl = dev_get_drvdata(chip->dev);
465
466 u32 reg = sunxi_data_reg(offset);
467 u8 index = sunxi_data_offset(offset);
468 u32 val = (readl(pctl->membase + reg) >> index) & DATA_PINS_MASK;
469
470 return val;
471}
472
Maxime Ripard08e9e612013-01-28 21:33:12 +0100473static void sunxi_pinctrl_gpio_set(struct gpio_chip *chip,
474 unsigned offset, int value)
475{
476 struct sunxi_pinctrl *pctl = dev_get_drvdata(chip->dev);
477 u32 reg = sunxi_data_reg(offset);
478 u8 index = sunxi_data_offset(offset);
Maxime Ripard1bee9632013-08-04 12:38:48 +0200479 unsigned long flags;
480 u32 regval;
Maxime Ripard08e9e612013-01-28 21:33:12 +0100481
Maxime Ripard1bee9632013-08-04 12:38:48 +0200482 spin_lock_irqsave(&pctl->lock, flags);
483
484 regval = readl(pctl->membase + reg);
Maxime Ripard08e9e612013-01-28 21:33:12 +0100485
Maxime Riparddf7b34f2013-07-25 12:41:16 +0200486 if (value)
487 regval |= BIT(index);
488 else
489 regval &= ~(BIT(index));
490
491 writel(regval, pctl->membase + reg);
Maxime Ripard1bee9632013-08-04 12:38:48 +0200492
493 spin_unlock_irqrestore(&pctl->lock, flags);
Maxime Ripard08e9e612013-01-28 21:33:12 +0100494}
495
Chen-Yu Tsaifa8cf572014-01-16 14:34:23 +0800496static int sunxi_pinctrl_gpio_direction_output(struct gpio_chip *chip,
497 unsigned offset, int value)
498{
499 sunxi_pinctrl_gpio_set(chip, offset, value);
500 return pinctrl_gpio_direction_output(chip->base + offset);
501}
502
Maxime Riparda0d72092013-02-03 12:10:11 +0100503static int sunxi_pinctrl_gpio_of_xlate(struct gpio_chip *gc,
504 const struct of_phandle_args *gpiospec,
505 u32 *flags)
506{
507 int pin, base;
508
509 base = PINS_PER_BANK * gpiospec->args[0];
510 pin = base + gpiospec->args[1];
511
512 if (pin > (gc->base + gc->ngpio))
513 return -EINVAL;
514
515 if (flags)
516 *flags = gpiospec->args[2];
517
518 return pin;
519}
520
Maxime Ripard60242db2013-06-08 12:05:44 +0200521static int sunxi_pinctrl_gpio_to_irq(struct gpio_chip *chip, unsigned offset)
522{
523 struct sunxi_pinctrl *pctl = dev_get_drvdata(chip->dev);
524 struct sunxi_desc_function *desc;
525
Axel Linc9e3b2d2013-08-30 16:31:25 +0800526 if (offset >= chip->ngpio)
Maxime Ripard60242db2013-06-08 12:05:44 +0200527 return -ENXIO;
528
529 desc = sunxi_pinctrl_desc_find_function_by_pin(pctl, offset, "irq");
530 if (!desc)
531 return -EINVAL;
532
533 pctl->irq_array[desc->irqnum] = offset;
534
535 dev_dbg(chip->dev, "%s: request IRQ for GPIO %d, return %d\n",
536 chip->label, offset + chip->base, desc->irqnum);
537
538 return irq_find_mapping(pctl->domain, desc->irqnum);
539}
540
Maxime Ripard08e9e612013-01-28 21:33:12 +0100541
Maxime Ripard60242db2013-06-08 12:05:44 +0200542static int sunxi_pinctrl_irq_set_type(struct irq_data *d,
543 unsigned int type)
544{
545 struct sunxi_pinctrl *pctl = irq_data_get_irq_chip_data(d);
546 u32 reg = sunxi_irq_cfg_reg(d->hwirq);
547 u8 index = sunxi_irq_cfg_offset(d->hwirq);
Maxime Ripard1bee9632013-08-04 12:38:48 +0200548 unsigned long flags;
Maxime Ripard2aaaddf2013-08-04 12:38:47 +0200549 u32 regval;
Maxime Ripard60242db2013-06-08 12:05:44 +0200550 u8 mode;
551
552 switch (type) {
553 case IRQ_TYPE_EDGE_RISING:
554 mode = IRQ_EDGE_RISING;
555 break;
556 case IRQ_TYPE_EDGE_FALLING:
557 mode = IRQ_EDGE_FALLING;
558 break;
559 case IRQ_TYPE_EDGE_BOTH:
560 mode = IRQ_EDGE_BOTH;
561 break;
562 case IRQ_TYPE_LEVEL_HIGH:
563 mode = IRQ_LEVEL_HIGH;
564 break;
565 case IRQ_TYPE_LEVEL_LOW:
566 mode = IRQ_LEVEL_LOW;
567 break;
568 default:
569 return -EINVAL;
570 }
571
Maxime Ripard1bee9632013-08-04 12:38:48 +0200572 spin_lock_irqsave(&pctl->lock, flags);
573
Maxime Ripard2aaaddf2013-08-04 12:38:47 +0200574 regval = readl(pctl->membase + reg);
Hans de Goeded82f9402014-02-17 22:19:43 +0100575 regval &= ~(IRQ_CFG_IRQ_MASK << index);
Maxime Ripard2aaaddf2013-08-04 12:38:47 +0200576 writel(regval | (mode << index), pctl->membase + reg);
Maxime Ripard60242db2013-06-08 12:05:44 +0200577
Maxime Ripard1bee9632013-08-04 12:38:48 +0200578 spin_unlock_irqrestore(&pctl->lock, flags);
Maxime Ripard60242db2013-06-08 12:05:44 +0200579
580 return 0;
581}
582
583static void sunxi_pinctrl_irq_mask_ack(struct irq_data *d)
584{
585 struct sunxi_pinctrl *pctl = irq_data_get_irq_chip_data(d);
586 u32 ctrl_reg = sunxi_irq_ctrl_reg(d->hwirq);
587 u8 ctrl_idx = sunxi_irq_ctrl_offset(d->hwirq);
588 u32 status_reg = sunxi_irq_status_reg(d->hwirq);
589 u8 status_idx = sunxi_irq_status_offset(d->hwirq);
Maxime Ripard1bee9632013-08-04 12:38:48 +0200590 unsigned long flags;
Maxime Ripard60242db2013-06-08 12:05:44 +0200591 u32 val;
592
Maxime Ripard1bee9632013-08-04 12:38:48 +0200593 spin_lock_irqsave(&pctl->lock, flags);
594
Maxime Ripard60242db2013-06-08 12:05:44 +0200595 /* Mask the IRQ */
596 val = readl(pctl->membase + ctrl_reg);
597 writel(val & ~(1 << ctrl_idx), pctl->membase + ctrl_reg);
598
599 /* Clear the IRQ */
600 writel(1 << status_idx, pctl->membase + status_reg);
Maxime Ripard1bee9632013-08-04 12:38:48 +0200601
602 spin_unlock_irqrestore(&pctl->lock, flags);
Maxime Ripard60242db2013-06-08 12:05:44 +0200603}
604
605static void sunxi_pinctrl_irq_mask(struct irq_data *d)
606{
607 struct sunxi_pinctrl *pctl = irq_data_get_irq_chip_data(d);
608 u32 reg = sunxi_irq_ctrl_reg(d->hwirq);
609 u8 idx = sunxi_irq_ctrl_offset(d->hwirq);
Maxime Ripard1bee9632013-08-04 12:38:48 +0200610 unsigned long flags;
Maxime Ripard60242db2013-06-08 12:05:44 +0200611 u32 val;
612
Maxime Ripard1bee9632013-08-04 12:38:48 +0200613 spin_lock_irqsave(&pctl->lock, flags);
614
Maxime Ripard60242db2013-06-08 12:05:44 +0200615 /* Mask the IRQ */
616 val = readl(pctl->membase + reg);
617 writel(val & ~(1 << idx), pctl->membase + reg);
Maxime Ripard1bee9632013-08-04 12:38:48 +0200618
619 spin_unlock_irqrestore(&pctl->lock, flags);
Maxime Ripard60242db2013-06-08 12:05:44 +0200620}
621
622static void sunxi_pinctrl_irq_unmask(struct irq_data *d)
623{
624 struct sunxi_pinctrl *pctl = irq_data_get_irq_chip_data(d);
625 struct sunxi_desc_function *func;
626 u32 reg = sunxi_irq_ctrl_reg(d->hwirq);
627 u8 idx = sunxi_irq_ctrl_offset(d->hwirq);
Maxime Ripard1bee9632013-08-04 12:38:48 +0200628 unsigned long flags;
Maxime Ripard60242db2013-06-08 12:05:44 +0200629 u32 val;
630
631 func = sunxi_pinctrl_desc_find_function_by_pin(pctl,
632 pctl->irq_array[d->hwirq],
633 "irq");
634
635 /* Change muxing to INT mode */
636 sunxi_pmx_set(pctl->pctl_dev, pctl->irq_array[d->hwirq], func->muxval);
637
Maxime Ripard1bee9632013-08-04 12:38:48 +0200638 spin_lock_irqsave(&pctl->lock, flags);
639
Maxime Ripard60242db2013-06-08 12:05:44 +0200640 /* Unmask the IRQ */
641 val = readl(pctl->membase + reg);
642 writel(val | (1 << idx), pctl->membase + reg);
Maxime Ripard1bee9632013-08-04 12:38:48 +0200643
644 spin_unlock_irqrestore(&pctl->lock, flags);
Maxime Ripard60242db2013-06-08 12:05:44 +0200645}
646
647static struct irq_chip sunxi_pinctrl_irq_chip = {
648 .irq_mask = sunxi_pinctrl_irq_mask,
649 .irq_mask_ack = sunxi_pinctrl_irq_mask_ack,
650 .irq_unmask = sunxi_pinctrl_irq_unmask,
651 .irq_set_type = sunxi_pinctrl_irq_set_type,
652};
653
654static void sunxi_pinctrl_irq_handler(unsigned irq, struct irq_desc *desc)
655{
Chen-Yu Tsai905a5112014-02-11 00:22:37 +0800656 struct irq_chip *chip = irq_get_chip(irq);
Maxime Ripard60242db2013-06-08 12:05:44 +0200657 struct sunxi_pinctrl *pctl = irq_get_handler_data(irq);
658 const unsigned long reg = readl(pctl->membase + IRQ_STATUS_REG);
659
660 /* Clear all interrupts */
661 writel(reg, pctl->membase + IRQ_STATUS_REG);
662
663 if (reg) {
664 int irqoffset;
665
Chen-Yu Tsai905a5112014-02-11 00:22:37 +0800666 chained_irq_enter(chip, desc);
Maxime Ripard60242db2013-06-08 12:05:44 +0200667 for_each_set_bit(irqoffset, &reg, SUNXI_IRQ_NUMBER) {
668 int pin_irq = irq_find_mapping(pctl->domain, irqoffset);
669 generic_handle_irq(pin_irq);
670 }
Chen-Yu Tsai905a5112014-02-11 00:22:37 +0800671 chained_irq_exit(chip, desc);
Maxime Ripard60242db2013-06-08 12:05:44 +0200672 }
673}
674
Maxime Ripard0e37f882013-01-18 22:30:34 +0100675static struct of_device_id sunxi_pinctrl_match[] = {
Maxime Ripard9f5b6b32013-01-26 15:36:53 +0100676 { .compatible = "allwinner,sun4i-a10-pinctrl", .data = (void *)&sun4i_a10_pinctrl_data },
Maxime Ripardac689362013-06-09 18:36:04 +0200677 { .compatible = "allwinner,sun5i-a10s-pinctrl", .data = (void *)&sun5i_a10s_pinctrl_data },
Maxime Ripardeaa3d842013-01-18 22:30:35 +0100678 { .compatible = "allwinner,sun5i-a13-pinctrl", .data = (void *)&sun5i_a13_pinctrl_data },
Maxime Ripardde0c9022013-08-04 11:47:34 +0200679 { .compatible = "allwinner,sun6i-a31-pinctrl", .data = (void *)&sun6i_a31_pinctrl_data },
Boris BREZILLONd9d0e1f2014-04-10 15:52:44 +0200680 { .compatible = "allwinner,sun6i-a31-r-pinctrl", .data = (void *)&sun6i_a31_r_pinctrl_data },
Maxime Ripard23ac6df2013-08-04 11:58:45 +0200681 { .compatible = "allwinner,sun7i-a20-pinctrl", .data = (void *)&sun7i_a20_pinctrl_data },
Maxime Ripard0e37f882013-01-18 22:30:34 +0100682 {}
683};
684MODULE_DEVICE_TABLE(of, sunxi_pinctrl_match);
685
686static int sunxi_pinctrl_add_function(struct sunxi_pinctrl *pctl,
687 const char *name)
688{
689 struct sunxi_pinctrl_function *func = pctl->functions;
690
691 while (func->name) {
692 /* function already there */
693 if (strcmp(func->name, name) == 0) {
694 func->ngroups++;
695 return -EEXIST;
696 }
697 func++;
698 }
699
700 func->name = name;
701 func->ngroups = 1;
702
703 pctl->nfunctions++;
704
705 return 0;
706}
707
708static int sunxi_pinctrl_build_state(struct platform_device *pdev)
709{
710 struct sunxi_pinctrl *pctl = platform_get_drvdata(pdev);
711 int i;
712
713 pctl->ngroups = pctl->desc->npins;
714
715 /* Allocate groups */
716 pctl->groups = devm_kzalloc(&pdev->dev,
717 pctl->ngroups * sizeof(*pctl->groups),
718 GFP_KERNEL);
719 if (!pctl->groups)
720 return -ENOMEM;
721
722 for (i = 0; i < pctl->desc->npins; i++) {
723 const struct sunxi_desc_pin *pin = pctl->desc->pins + i;
724 struct sunxi_pinctrl_group *group = pctl->groups + i;
725
726 group->name = pin->pin.name;
727 group->pin = pin->pin.number;
728 }
729
730 /*
731 * We suppose that we won't have any more functions than pins,
732 * we'll reallocate that later anyway
733 */
734 pctl->functions = devm_kzalloc(&pdev->dev,
735 pctl->desc->npins * sizeof(*pctl->functions),
736 GFP_KERNEL);
737 if (!pctl->functions)
738 return -ENOMEM;
739
740 /* Count functions and their associated groups */
741 for (i = 0; i < pctl->desc->npins; i++) {
742 const struct sunxi_desc_pin *pin = pctl->desc->pins + i;
743 struct sunxi_desc_function *func = pin->functions;
744
745 while (func->name) {
746 sunxi_pinctrl_add_function(pctl, func->name);
747 func++;
748 }
749 }
750
751 pctl->functions = krealloc(pctl->functions,
752 pctl->nfunctions * sizeof(*pctl->functions),
753 GFP_KERNEL);
754
755 for (i = 0; i < pctl->desc->npins; i++) {
756 const struct sunxi_desc_pin *pin = pctl->desc->pins + i;
757 struct sunxi_desc_function *func = pin->functions;
758
759 while (func->name) {
760 struct sunxi_pinctrl_function *func_item;
761 const char **func_grp;
762
763 func_item = sunxi_pinctrl_find_function_by_name(pctl,
764 func->name);
765 if (!func_item)
766 return -EINVAL;
767
768 if (!func_item->groups) {
769 func_item->groups =
770 devm_kzalloc(&pdev->dev,
771 func_item->ngroups * sizeof(*func_item->groups),
772 GFP_KERNEL);
773 if (!func_item->groups)
774 return -ENOMEM;
775 }
776
777 func_grp = func_item->groups;
778 while (*func_grp)
779 func_grp++;
780
781 *func_grp = pin->pin.name;
782 func++;
783 }
784 }
785
786 return 0;
787}
788
789static int sunxi_pinctrl_probe(struct platform_device *pdev)
790{
791 struct device_node *node = pdev->dev.of_node;
792 const struct of_device_id *device;
793 struct pinctrl_pin_desc *pins;
794 struct sunxi_pinctrl *pctl;
Maxime Ripard08e9e612013-01-28 21:33:12 +0100795 int i, ret, last_pin;
Emilio López950707c2013-03-22 11:20:40 -0300796 struct clk *clk;
Maxime Ripard0e37f882013-01-18 22:30:34 +0100797
798 pctl = devm_kzalloc(&pdev->dev, sizeof(*pctl), GFP_KERNEL);
799 if (!pctl)
800 return -ENOMEM;
801 platform_set_drvdata(pdev, pctl);
802
Maxime Ripard1bee9632013-08-04 12:38:48 +0200803 spin_lock_init(&pctl->lock);
804
Maxime Ripard0e37f882013-01-18 22:30:34 +0100805 pctl->membase = of_iomap(node, 0);
806 if (!pctl->membase)
807 return -ENOMEM;
808
809 device = of_match_device(sunxi_pinctrl_match, &pdev->dev);
810 if (!device)
811 return -ENODEV;
812
813 pctl->desc = (struct sunxi_pinctrl_desc *)device->data;
814
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
Maxime Ripard60242db2013-06-08 12:05:44 +0200890 pctl->irq = irq_of_parse_and_map(node, 0);
891 if (!pctl->irq) {
892 ret = -EINVAL;
Boris BREZILLONe2bddc62014-04-10 15:52:41 +0200893 goto clk_error;
Maxime Ripard60242db2013-06-08 12:05:44 +0200894 }
895
896 pctl->domain = irq_domain_add_linear(node, SUNXI_IRQ_NUMBER,
897 &irq_domain_simple_ops, NULL);
898 if (!pctl->domain) {
899 dev_err(&pdev->dev, "Couldn't register IRQ domain\n");
900 ret = -ENOMEM;
Boris BREZILLONe2bddc62014-04-10 15:52:41 +0200901 goto clk_error;
Maxime Ripard60242db2013-06-08 12:05:44 +0200902 }
903
904 for (i = 0; i < SUNXI_IRQ_NUMBER; i++) {
905 int irqno = irq_create_mapping(pctl->domain, i);
906
907 irq_set_chip_and_handler(irqno, &sunxi_pinctrl_irq_chip,
908 handle_simple_irq);
909 irq_set_chip_data(irqno, pctl);
910 };
911
912 irq_set_chained_handler(pctl->irq, sunxi_pinctrl_irq_handler);
913 irq_set_handler_data(pctl->irq, pctl);
914
Maxime Ripard08e9e612013-01-28 21:33:12 +0100915 dev_info(&pdev->dev, "initialized sunXi PIO driver\n");
Maxime Ripard0e37f882013-01-18 22:30:34 +0100916
917 return 0;
Maxime Ripard08e9e612013-01-28 21:33:12 +0100918
Boris BREZILLONe2bddc62014-04-10 15:52:41 +0200919clk_error:
920 clk_disable_unprepare(clk);
Maxime Ripard08e9e612013-01-28 21:33:12 +0100921gpiochip_error:
Axel Lin97fc4632013-05-19 13:58:37 +0800922 if (gpiochip_remove(pctl->chip))
923 dev_err(&pdev->dev, "failed to remove gpio chip\n");
Maxime Ripard08e9e612013-01-28 21:33:12 +0100924pinctrl_error:
925 pinctrl_unregister(pctl->pctl_dev);
926 return ret;
Maxime Ripard0e37f882013-01-18 22:30:34 +0100927}
928
929static struct platform_driver sunxi_pinctrl_driver = {
930 .probe = sunxi_pinctrl_probe,
931 .driver = {
932 .name = "sunxi-pinctrl",
933 .owner = THIS_MODULE,
934 .of_match_table = sunxi_pinctrl_match,
935 },
936};
937module_platform_driver(sunxi_pinctrl_driver);
938
939MODULE_AUTHOR("Maxime Ripard <maxime.ripard@free-electrons.com");
940MODULE_DESCRIPTION("Allwinner A1X pinctrl driver");
941MODULE_LICENSE("GPL");