blob: 9ccf681dad2f4993cdf3ef20a9099a17ae62dcb9 [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>
Maxime Ripard0e37f882013-01-18 22:30:34 +010017#include <linux/module.h>
18#include <linux/of.h>
19#include <linux/of_address.h>
20#include <linux/of_device.h>
Maxime Ripard60242db2013-06-08 12:05:44 +020021#include <linux/of_irq.h>
Maxime Ripard0e37f882013-01-18 22:30:34 +010022#include <linux/pinctrl/consumer.h>
23#include <linux/pinctrl/machine.h>
24#include <linux/pinctrl/pinctrl.h>
25#include <linux/pinctrl/pinconf-generic.h>
26#include <linux/pinctrl/pinmux.h>
27#include <linux/platform_device.h>
28#include <linux/slab.h>
29
30#include "core.h"
31#include "pinctrl-sunxi.h"
Maxime Ripard44abb932013-06-09 18:36:03 +020032#include "pinctrl-sunxi-pins.h"
Maxime Ripardeaa3d842013-01-18 22:30:35 +010033
Maxime Ripard0e37f882013-01-18 22:30:34 +010034static struct sunxi_pinctrl_group *
35sunxi_pinctrl_find_group_by_name(struct sunxi_pinctrl *pctl, const char *group)
36{
37 int i;
38
39 for (i = 0; i < pctl->ngroups; i++) {
40 struct sunxi_pinctrl_group *grp = pctl->groups + i;
41
42 if (!strcmp(grp->name, group))
43 return grp;
44 }
45
46 return NULL;
47}
48
49static struct sunxi_pinctrl_function *
50sunxi_pinctrl_find_function_by_name(struct sunxi_pinctrl *pctl,
51 const char *name)
52{
53 struct sunxi_pinctrl_function *func = pctl->functions;
54 int i;
55
56 for (i = 0; i < pctl->nfunctions; i++) {
57 if (!func[i].name)
58 break;
59
60 if (!strcmp(func[i].name, name))
61 return func + i;
62 }
63
64 return NULL;
65}
66
67static struct sunxi_desc_function *
68sunxi_pinctrl_desc_find_function_by_name(struct sunxi_pinctrl *pctl,
69 const char *pin_name,
70 const char *func_name)
71{
72 int i;
73
74 for (i = 0; i < pctl->desc->npins; i++) {
75 const struct sunxi_desc_pin *pin = pctl->desc->pins + i;
76
77 if (!strcmp(pin->pin.name, pin_name)) {
78 struct sunxi_desc_function *func = pin->functions;
79
80 while (func->name) {
81 if (!strcmp(func->name, func_name))
82 return func;
83
84 func++;
85 }
86 }
87 }
88
89 return NULL;
90}
91
Maxime Ripard814d4f22013-06-08 12:05:43 +020092static struct sunxi_desc_function *
93sunxi_pinctrl_desc_find_function_by_pin(struct sunxi_pinctrl *pctl,
94 const u16 pin_num,
95 const char *func_name)
96{
97 int i;
98
99 for (i = 0; i < pctl->desc->npins; i++) {
100 const struct sunxi_desc_pin *pin = pctl->desc->pins + i;
101
102 if (pin->pin.number == pin_num) {
103 struct sunxi_desc_function *func = pin->functions;
104
105 while (func->name) {
106 if (!strcmp(func->name, func_name))
107 return func;
108
109 func++;
110 }
111 }
112 }
113
114 return NULL;
115}
116
Maxime Ripard0e37f882013-01-18 22:30:34 +0100117static int sunxi_pctrl_get_groups_count(struct pinctrl_dev *pctldev)
118{
119 struct sunxi_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
120
121 return pctl->ngroups;
122}
123
124static const char *sunxi_pctrl_get_group_name(struct pinctrl_dev *pctldev,
125 unsigned group)
126{
127 struct sunxi_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
128
129 return pctl->groups[group].name;
130}
131
132static int sunxi_pctrl_get_group_pins(struct pinctrl_dev *pctldev,
133 unsigned group,
134 const unsigned **pins,
135 unsigned *num_pins)
136{
137 struct sunxi_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
138
139 *pins = (unsigned *)&pctl->groups[group].pin;
140 *num_pins = 1;
141
142 return 0;
143}
144
145static int sunxi_pctrl_dt_node_to_map(struct pinctrl_dev *pctldev,
146 struct device_node *node,
147 struct pinctrl_map **map,
148 unsigned *num_maps)
149{
150 struct sunxi_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
151 unsigned long *pinconfig;
152 struct property *prop;
153 const char *function;
154 const char *group;
155 int ret, nmaps, i = 0;
156 u32 val;
157
158 *map = NULL;
159 *num_maps = 0;
160
161 ret = of_property_read_string(node, "allwinner,function", &function);
162 if (ret) {
163 dev_err(pctl->dev,
164 "missing allwinner,function property in node %s\n",
165 node->name);
166 return -EINVAL;
167 }
168
169 nmaps = of_property_count_strings(node, "allwinner,pins") * 2;
170 if (nmaps < 0) {
171 dev_err(pctl->dev,
172 "missing allwinner,pins property in node %s\n",
173 node->name);
174 return -EINVAL;
175 }
176
177 *map = kmalloc(nmaps * sizeof(struct pinctrl_map), GFP_KERNEL);
Sachin Kamat3efa9212013-07-29 13:49:32 +0530178 if (!*map)
Maxime Ripard0e37f882013-01-18 22:30:34 +0100179 return -ENOMEM;
180
181 of_property_for_each_string(node, "allwinner,pins", prop, group) {
182 struct sunxi_pinctrl_group *grp =
183 sunxi_pinctrl_find_group_by_name(pctl, group);
184 int j = 0, configlen = 0;
185
186 if (!grp) {
187 dev_err(pctl->dev, "unknown pin %s", group);
188 continue;
189 }
190
191 if (!sunxi_pinctrl_desc_find_function_by_name(pctl,
192 grp->name,
193 function)) {
194 dev_err(pctl->dev, "unsupported function %s on pin %s",
195 function, group);
196 continue;
197 }
198
199 (*map)[i].type = PIN_MAP_TYPE_MUX_GROUP;
200 (*map)[i].data.mux.group = group;
201 (*map)[i].data.mux.function = function;
202
203 i++;
204
205 (*map)[i].type = PIN_MAP_TYPE_CONFIGS_GROUP;
206 (*map)[i].data.configs.group_or_pin = group;
207
208 if (of_find_property(node, "allwinner,drive", NULL))
209 configlen++;
210 if (of_find_property(node, "allwinner,pull", NULL))
211 configlen++;
212
213 pinconfig = kzalloc(configlen * sizeof(*pinconfig), GFP_KERNEL);
214
215 if (!of_property_read_u32(node, "allwinner,drive", &val)) {
216 u16 strength = (val + 1) * 10;
217 pinconfig[j++] =
218 pinconf_to_config_packed(PIN_CONFIG_DRIVE_STRENGTH,
219 strength);
220 }
221
222 if (!of_property_read_u32(node, "allwinner,pull", &val)) {
223 enum pin_config_param pull = PIN_CONFIG_END;
224 if (val == 1)
225 pull = PIN_CONFIG_BIAS_PULL_UP;
226 else if (val == 2)
227 pull = PIN_CONFIG_BIAS_PULL_DOWN;
228 pinconfig[j++] = pinconf_to_config_packed(pull, 0);
229 }
230
231 (*map)[i].data.configs.configs = pinconfig;
232 (*map)[i].data.configs.num_configs = configlen;
233
234 i++;
235 }
236
237 *num_maps = nmaps;
238
239 return 0;
240}
241
242static void sunxi_pctrl_dt_free_map(struct pinctrl_dev *pctldev,
243 struct pinctrl_map *map,
244 unsigned num_maps)
245{
246 int i;
247
248 for (i = 0; i < num_maps; i++) {
249 if (map[i].type == PIN_MAP_TYPE_CONFIGS_GROUP)
250 kfree(map[i].data.configs.configs);
251 }
252
253 kfree(map);
254}
255
Laurent Pinchart022ab142013-02-16 10:25:07 +0100256static const struct pinctrl_ops sunxi_pctrl_ops = {
Maxime Ripard0e37f882013-01-18 22:30:34 +0100257 .dt_node_to_map = sunxi_pctrl_dt_node_to_map,
258 .dt_free_map = sunxi_pctrl_dt_free_map,
259 .get_groups_count = sunxi_pctrl_get_groups_count,
260 .get_group_name = sunxi_pctrl_get_group_name,
261 .get_group_pins = sunxi_pctrl_get_group_pins,
262};
263
264static int sunxi_pconf_group_get(struct pinctrl_dev *pctldev,
265 unsigned group,
266 unsigned long *config)
267{
268 struct sunxi_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
269
270 *config = pctl->groups[group].config;
271
272 return 0;
273}
274
275static int sunxi_pconf_group_set(struct pinctrl_dev *pctldev,
276 unsigned group,
Sherman Yin03b054e2013-08-27 11:32:12 -0700277 unsigned long *configs,
278 unsigned num_configs)
Maxime Ripard0e37f882013-01-18 22:30:34 +0100279{
280 struct sunxi_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
281 struct sunxi_pinctrl_group *g = &pctl->groups[group];
Maxime Ripard1bee9632013-08-04 12:38:48 +0200282 unsigned long flags;
Maxime Ripard0e37f882013-01-18 22:30:34 +0100283 u32 val, mask;
284 u16 strength;
285 u8 dlevel;
Sherman Yin03b054e2013-08-27 11:32:12 -0700286 int i;
Maxime Ripard0e37f882013-01-18 22:30:34 +0100287
Linus Walleij6ad30ce2013-08-29 09:46:30 +0200288 spin_lock_irqsave(&pctl->lock, flags);
Maxime Ripard1bee9632013-08-04 12:38:48 +0200289
Sherman Yin03b054e2013-08-27 11:32:12 -0700290 for (i = 0; i < num_configs; i++) {
291 switch (pinconf_to_config_param(configs[i])) {
292 case PIN_CONFIG_DRIVE_STRENGTH:
293 strength = pinconf_to_config_argument(configs[i]);
Linus Walleij07b7eb92013-08-29 19:17:13 +0200294 if (strength > 40) {
295 spin_unlock_irqrestore(&pctl->lock, flags);
Sherman Yin03b054e2013-08-27 11:32:12 -0700296 return -EINVAL;
Linus Walleij07b7eb92013-08-29 19:17:13 +0200297 }
Sherman Yin03b054e2013-08-27 11:32:12 -0700298 /*
299 * We convert from mA to what the register expects:
300 * 0: 10mA
301 * 1: 20mA
302 * 2: 30mA
303 * 3: 40mA
304 */
305 dlevel = strength / 10 - 1;
306 val = readl(pctl->membase + sunxi_dlevel_reg(g->pin));
307 mask = DLEVEL_PINS_MASK << sunxi_dlevel_offset(g->pin);
308 writel((val & ~mask)
309 | dlevel << sunxi_dlevel_offset(g->pin),
310 pctl->membase + sunxi_dlevel_reg(g->pin));
311 break;
312 case PIN_CONFIG_BIAS_PULL_UP:
313 val = readl(pctl->membase + sunxi_pull_reg(g->pin));
314 mask = PULL_PINS_MASK << sunxi_pull_offset(g->pin);
315 writel((val & ~mask) | 1 << sunxi_pull_offset(g->pin),
316 pctl->membase + sunxi_pull_reg(g->pin));
317 break;
318 case PIN_CONFIG_BIAS_PULL_DOWN:
319 val = readl(pctl->membase + sunxi_pull_reg(g->pin));
320 mask = PULL_PINS_MASK << sunxi_pull_offset(g->pin);
321 writel((val & ~mask) | 2 << sunxi_pull_offset(g->pin),
322 pctl->membase + sunxi_pull_reg(g->pin));
323 break;
324 default:
325 break;
326 }
Sherman Yin03b054e2013-08-27 11:32:12 -0700327 /* cache the config value */
328 g->config = configs[i];
329 } /* for each config */
Maxime Ripard0e37f882013-01-18 22:30:34 +0100330
Linus Walleij6ad30ce2013-08-29 09:46:30 +0200331 spin_unlock_irqrestore(&pctl->lock, flags);
Maxime Ripard0e37f882013-01-18 22:30:34 +0100332
333 return 0;
334}
335
Laurent Pinchart022ab142013-02-16 10:25:07 +0100336static const struct pinconf_ops sunxi_pconf_ops = {
Maxime Ripard0e37f882013-01-18 22:30:34 +0100337 .pin_config_group_get = sunxi_pconf_group_get,
338 .pin_config_group_set = sunxi_pconf_group_set,
339};
340
341static int sunxi_pmx_get_funcs_cnt(struct pinctrl_dev *pctldev)
342{
343 struct sunxi_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
344
345 return pctl->nfunctions;
346}
347
348static const char *sunxi_pmx_get_func_name(struct pinctrl_dev *pctldev,
349 unsigned function)
350{
351 struct sunxi_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
352
353 return pctl->functions[function].name;
354}
355
356static int sunxi_pmx_get_func_groups(struct pinctrl_dev *pctldev,
357 unsigned function,
358 const char * const **groups,
359 unsigned * const num_groups)
360{
361 struct sunxi_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
362
363 *groups = pctl->functions[function].groups;
364 *num_groups = pctl->functions[function].ngroups;
365
366 return 0;
367}
368
369static void sunxi_pmx_set(struct pinctrl_dev *pctldev,
370 unsigned pin,
371 u8 config)
372{
373 struct sunxi_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
Maxime Ripard1bee9632013-08-04 12:38:48 +0200374 unsigned long flags;
375 u32 val, mask;
Maxime Ripard0e37f882013-01-18 22:30:34 +0100376
Maxime Ripard1bee9632013-08-04 12:38:48 +0200377 spin_lock_irqsave(&pctl->lock, flags);
378
379 val = readl(pctl->membase + sunxi_mux_reg(pin));
380 mask = MUX_PINS_MASK << sunxi_mux_offset(pin);
Maxime Ripard0e37f882013-01-18 22:30:34 +0100381 writel((val & ~mask) | config << sunxi_mux_offset(pin),
382 pctl->membase + sunxi_mux_reg(pin));
Maxime Ripard1bee9632013-08-04 12:38:48 +0200383
384 spin_unlock_irqrestore(&pctl->lock, flags);
Maxime Ripard0e37f882013-01-18 22:30:34 +0100385}
386
387static int sunxi_pmx_enable(struct pinctrl_dev *pctldev,
388 unsigned function,
389 unsigned group)
390{
391 struct sunxi_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
392 struct sunxi_pinctrl_group *g = pctl->groups + group;
393 struct sunxi_pinctrl_function *func = pctl->functions + function;
394 struct sunxi_desc_function *desc =
395 sunxi_pinctrl_desc_find_function_by_name(pctl,
396 g->name,
397 func->name);
398
399 if (!desc)
400 return -EINVAL;
401
402 sunxi_pmx_set(pctldev, g->pin, desc->muxval);
403
404 return 0;
405}
406
Maxime Ripard08e9e612013-01-28 21:33:12 +0100407static int
408sunxi_pmx_gpio_set_direction(struct pinctrl_dev *pctldev,
409 struct pinctrl_gpio_range *range,
410 unsigned offset,
411 bool input)
412{
413 struct sunxi_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
414 struct sunxi_desc_function *desc;
Maxime Ripard08e9e612013-01-28 21:33:12 +0100415 const char *func;
Maxime Ripard08e9e612013-01-28 21:33:12 +0100416
417 if (input)
418 func = "gpio_in";
419 else
420 func = "gpio_out";
421
Maxime Ripard814d4f22013-06-08 12:05:43 +0200422 desc = sunxi_pinctrl_desc_find_function_by_pin(pctl, offset, func);
423 if (!desc)
424 return -EINVAL;
Maxime Ripard08e9e612013-01-28 21:33:12 +0100425
426 sunxi_pmx_set(pctldev, offset, desc->muxval);
427
Maxime Ripard814d4f22013-06-08 12:05:43 +0200428 return 0;
Maxime Ripard08e9e612013-01-28 21:33:12 +0100429}
430
Laurent Pinchart022ab142013-02-16 10:25:07 +0100431static const struct pinmux_ops sunxi_pmx_ops = {
Maxime Ripard0e37f882013-01-18 22:30:34 +0100432 .get_functions_count = sunxi_pmx_get_funcs_cnt,
433 .get_function_name = sunxi_pmx_get_func_name,
434 .get_function_groups = sunxi_pmx_get_func_groups,
435 .enable = sunxi_pmx_enable,
Maxime Ripard08e9e612013-01-28 21:33:12 +0100436 .gpio_set_direction = sunxi_pmx_gpio_set_direction,
Maxime Ripard0e37f882013-01-18 22:30:34 +0100437};
438
439static struct pinctrl_desc sunxi_pctrl_desc = {
440 .confops = &sunxi_pconf_ops,
441 .pctlops = &sunxi_pctrl_ops,
442 .pmxops = &sunxi_pmx_ops,
443};
444
Maxime Ripard08e9e612013-01-28 21:33:12 +0100445static int sunxi_pinctrl_gpio_request(struct gpio_chip *chip, unsigned offset)
446{
447 return pinctrl_request_gpio(chip->base + offset);
448}
449
450static void sunxi_pinctrl_gpio_free(struct gpio_chip *chip, unsigned offset)
451{
452 pinctrl_free_gpio(chip->base + offset);
453}
454
455static int sunxi_pinctrl_gpio_direction_input(struct gpio_chip *chip,
456 unsigned offset)
457{
458 return pinctrl_gpio_direction_input(chip->base + offset);
459}
460
461static int sunxi_pinctrl_gpio_get(struct gpio_chip *chip, unsigned offset)
462{
463 struct sunxi_pinctrl *pctl = dev_get_drvdata(chip->dev);
464
465 u32 reg = sunxi_data_reg(offset);
466 u8 index = sunxi_data_offset(offset);
467 u32 val = (readl(pctl->membase + reg) >> index) & DATA_PINS_MASK;
468
469 return val;
470}
471
Maxime Ripard08e9e612013-01-28 21:33:12 +0100472static void sunxi_pinctrl_gpio_set(struct gpio_chip *chip,
473 unsigned offset, int value)
474{
475 struct sunxi_pinctrl *pctl = dev_get_drvdata(chip->dev);
476 u32 reg = sunxi_data_reg(offset);
477 u8 index = sunxi_data_offset(offset);
Maxime Ripard1bee9632013-08-04 12:38:48 +0200478 unsigned long flags;
479 u32 regval;
Maxime Ripard08e9e612013-01-28 21:33:12 +0100480
Maxime Ripard1bee9632013-08-04 12:38:48 +0200481 spin_lock_irqsave(&pctl->lock, flags);
482
483 regval = readl(pctl->membase + reg);
Maxime Ripard08e9e612013-01-28 21:33:12 +0100484
Maxime Riparddf7b34f2013-07-25 12:41:16 +0200485 if (value)
486 regval |= BIT(index);
487 else
488 regval &= ~(BIT(index));
489
490 writel(regval, pctl->membase + reg);
Maxime Ripard1bee9632013-08-04 12:38:48 +0200491
492 spin_unlock_irqrestore(&pctl->lock, flags);
Maxime Ripard08e9e612013-01-28 21:33:12 +0100493}
494
Chen-Yu Tsaifa8cf572014-01-16 14:34:23 +0800495static int sunxi_pinctrl_gpio_direction_output(struct gpio_chip *chip,
496 unsigned offset, int value)
497{
498 sunxi_pinctrl_gpio_set(chip, offset, value);
499 return pinctrl_gpio_direction_output(chip->base + offset);
500}
501
Maxime Riparda0d72092013-02-03 12:10:11 +0100502static int sunxi_pinctrl_gpio_of_xlate(struct gpio_chip *gc,
503 const struct of_phandle_args *gpiospec,
504 u32 *flags)
505{
506 int pin, base;
507
508 base = PINS_PER_BANK * gpiospec->args[0];
509 pin = base + gpiospec->args[1];
510
511 if (pin > (gc->base + gc->ngpio))
512 return -EINVAL;
513
514 if (flags)
515 *flags = gpiospec->args[2];
516
517 return pin;
518}
519
Maxime Ripard60242db2013-06-08 12:05:44 +0200520static int sunxi_pinctrl_gpio_to_irq(struct gpio_chip *chip, unsigned offset)
521{
522 struct sunxi_pinctrl *pctl = dev_get_drvdata(chip->dev);
523 struct sunxi_desc_function *desc;
524
Axel Linc9e3b2d2013-08-30 16:31:25 +0800525 if (offset >= chip->ngpio)
Maxime Ripard60242db2013-06-08 12:05:44 +0200526 return -ENXIO;
527
528 desc = sunxi_pinctrl_desc_find_function_by_pin(pctl, offset, "irq");
529 if (!desc)
530 return -EINVAL;
531
532 pctl->irq_array[desc->irqnum] = offset;
533
534 dev_dbg(chip->dev, "%s: request IRQ for GPIO %d, return %d\n",
535 chip->label, offset + chip->base, desc->irqnum);
536
537 return irq_find_mapping(pctl->domain, desc->irqnum);
538}
539
Maxime Ripard08e9e612013-01-28 21:33:12 +0100540static struct gpio_chip sunxi_pinctrl_gpio_chip = {
541 .owner = THIS_MODULE,
542 .request = sunxi_pinctrl_gpio_request,
543 .free = sunxi_pinctrl_gpio_free,
544 .direction_input = sunxi_pinctrl_gpio_direction_input,
545 .direction_output = sunxi_pinctrl_gpio_direction_output,
546 .get = sunxi_pinctrl_gpio_get,
547 .set = sunxi_pinctrl_gpio_set,
Maxime Riparda0d72092013-02-03 12:10:11 +0100548 .of_xlate = sunxi_pinctrl_gpio_of_xlate,
Maxime Ripard60242db2013-06-08 12:05:44 +0200549 .to_irq = sunxi_pinctrl_gpio_to_irq,
Maxime Riparda0d72092013-02-03 12:10:11 +0100550 .of_gpio_n_cells = 3,
Linus Walleij9fb1f392013-12-04 14:42:46 +0100551 .can_sleep = false,
Maxime Ripard08e9e612013-01-28 21:33:12 +0100552};
553
Maxime Ripard60242db2013-06-08 12:05:44 +0200554static int sunxi_pinctrl_irq_set_type(struct irq_data *d,
555 unsigned int type)
556{
557 struct sunxi_pinctrl *pctl = irq_data_get_irq_chip_data(d);
558 u32 reg = sunxi_irq_cfg_reg(d->hwirq);
559 u8 index = sunxi_irq_cfg_offset(d->hwirq);
Maxime Ripard1bee9632013-08-04 12:38:48 +0200560 unsigned long flags;
Maxime Ripard2aaaddf2013-08-04 12:38:47 +0200561 u32 regval;
Maxime Ripard60242db2013-06-08 12:05:44 +0200562 u8 mode;
563
564 switch (type) {
565 case IRQ_TYPE_EDGE_RISING:
566 mode = IRQ_EDGE_RISING;
567 break;
568 case IRQ_TYPE_EDGE_FALLING:
569 mode = IRQ_EDGE_FALLING;
570 break;
571 case IRQ_TYPE_EDGE_BOTH:
572 mode = IRQ_EDGE_BOTH;
573 break;
574 case IRQ_TYPE_LEVEL_HIGH:
575 mode = IRQ_LEVEL_HIGH;
576 break;
577 case IRQ_TYPE_LEVEL_LOW:
578 mode = IRQ_LEVEL_LOW;
579 break;
580 default:
581 return -EINVAL;
582 }
583
Maxime Ripard1bee9632013-08-04 12:38:48 +0200584 spin_lock_irqsave(&pctl->lock, flags);
585
Maxime Ripard2aaaddf2013-08-04 12:38:47 +0200586 regval = readl(pctl->membase + reg);
587 regval &= ~IRQ_CFG_IRQ_MASK;
588 writel(regval | (mode << index), pctl->membase + reg);
Maxime Ripard60242db2013-06-08 12:05:44 +0200589
Maxime Ripard1bee9632013-08-04 12:38:48 +0200590 spin_unlock_irqrestore(&pctl->lock, flags);
Maxime Ripard60242db2013-06-08 12:05:44 +0200591
592 return 0;
593}
594
595static void sunxi_pinctrl_irq_mask_ack(struct irq_data *d)
596{
597 struct sunxi_pinctrl *pctl = irq_data_get_irq_chip_data(d);
598 u32 ctrl_reg = sunxi_irq_ctrl_reg(d->hwirq);
599 u8 ctrl_idx = sunxi_irq_ctrl_offset(d->hwirq);
600 u32 status_reg = sunxi_irq_status_reg(d->hwirq);
601 u8 status_idx = sunxi_irq_status_offset(d->hwirq);
Maxime Ripard1bee9632013-08-04 12:38:48 +0200602 unsigned long flags;
Maxime Ripard60242db2013-06-08 12:05:44 +0200603 u32 val;
604
Maxime Ripard1bee9632013-08-04 12:38:48 +0200605 spin_lock_irqsave(&pctl->lock, flags);
606
Maxime Ripard60242db2013-06-08 12:05:44 +0200607 /* Mask the IRQ */
608 val = readl(pctl->membase + ctrl_reg);
609 writel(val & ~(1 << ctrl_idx), pctl->membase + ctrl_reg);
610
611 /* Clear the IRQ */
612 writel(1 << status_idx, pctl->membase + status_reg);
Maxime Ripard1bee9632013-08-04 12:38:48 +0200613
614 spin_unlock_irqrestore(&pctl->lock, flags);
Maxime Ripard60242db2013-06-08 12:05:44 +0200615}
616
617static void sunxi_pinctrl_irq_mask(struct irq_data *d)
618{
619 struct sunxi_pinctrl *pctl = irq_data_get_irq_chip_data(d);
620 u32 reg = sunxi_irq_ctrl_reg(d->hwirq);
621 u8 idx = sunxi_irq_ctrl_offset(d->hwirq);
Maxime Ripard1bee9632013-08-04 12:38:48 +0200622 unsigned long flags;
Maxime Ripard60242db2013-06-08 12:05:44 +0200623 u32 val;
624
Maxime Ripard1bee9632013-08-04 12:38:48 +0200625 spin_lock_irqsave(&pctl->lock, flags);
626
Maxime Ripard60242db2013-06-08 12:05:44 +0200627 /* Mask the IRQ */
628 val = readl(pctl->membase + reg);
629 writel(val & ~(1 << idx), pctl->membase + reg);
Maxime Ripard1bee9632013-08-04 12:38:48 +0200630
631 spin_unlock_irqrestore(&pctl->lock, flags);
Maxime Ripard60242db2013-06-08 12:05:44 +0200632}
633
634static void sunxi_pinctrl_irq_unmask(struct irq_data *d)
635{
636 struct sunxi_pinctrl *pctl = irq_data_get_irq_chip_data(d);
637 struct sunxi_desc_function *func;
638 u32 reg = sunxi_irq_ctrl_reg(d->hwirq);
639 u8 idx = sunxi_irq_ctrl_offset(d->hwirq);
Maxime Ripard1bee9632013-08-04 12:38:48 +0200640 unsigned long flags;
Maxime Ripard60242db2013-06-08 12:05:44 +0200641 u32 val;
642
643 func = sunxi_pinctrl_desc_find_function_by_pin(pctl,
644 pctl->irq_array[d->hwirq],
645 "irq");
646
647 /* Change muxing to INT mode */
648 sunxi_pmx_set(pctl->pctl_dev, pctl->irq_array[d->hwirq], func->muxval);
649
Maxime Ripard1bee9632013-08-04 12:38:48 +0200650 spin_lock_irqsave(&pctl->lock, flags);
651
Maxime Ripard60242db2013-06-08 12:05:44 +0200652 /* Unmask the IRQ */
653 val = readl(pctl->membase + reg);
654 writel(val | (1 << idx), pctl->membase + reg);
Maxime Ripard1bee9632013-08-04 12:38:48 +0200655
656 spin_unlock_irqrestore(&pctl->lock, flags);
Maxime Ripard60242db2013-06-08 12:05:44 +0200657}
658
659static struct irq_chip sunxi_pinctrl_irq_chip = {
660 .irq_mask = sunxi_pinctrl_irq_mask,
661 .irq_mask_ack = sunxi_pinctrl_irq_mask_ack,
662 .irq_unmask = sunxi_pinctrl_irq_unmask,
663 .irq_set_type = sunxi_pinctrl_irq_set_type,
664};
665
666static void sunxi_pinctrl_irq_handler(unsigned irq, struct irq_desc *desc)
667{
668 struct sunxi_pinctrl *pctl = irq_get_handler_data(irq);
669 const unsigned long reg = readl(pctl->membase + IRQ_STATUS_REG);
670
671 /* Clear all interrupts */
672 writel(reg, pctl->membase + IRQ_STATUS_REG);
673
674 if (reg) {
675 int irqoffset;
676
677 for_each_set_bit(irqoffset, &reg, SUNXI_IRQ_NUMBER) {
678 int pin_irq = irq_find_mapping(pctl->domain, irqoffset);
679 generic_handle_irq(pin_irq);
680 }
681 }
682}
683
Maxime Ripard0e37f882013-01-18 22:30:34 +0100684static struct of_device_id sunxi_pinctrl_match[] = {
Maxime Ripard9f5b6b32013-01-26 15:36:53 +0100685 { .compatible = "allwinner,sun4i-a10-pinctrl", .data = (void *)&sun4i_a10_pinctrl_data },
Maxime Ripardac689362013-06-09 18:36:04 +0200686 { .compatible = "allwinner,sun5i-a10s-pinctrl", .data = (void *)&sun5i_a10s_pinctrl_data },
Maxime Ripardeaa3d842013-01-18 22:30:35 +0100687 { .compatible = "allwinner,sun5i-a13-pinctrl", .data = (void *)&sun5i_a13_pinctrl_data },
Maxime Ripardde0c9022013-08-04 11:47:34 +0200688 { .compatible = "allwinner,sun6i-a31-pinctrl", .data = (void *)&sun6i_a31_pinctrl_data },
Maxime Ripard23ac6df2013-08-04 11:58:45 +0200689 { .compatible = "allwinner,sun7i-a20-pinctrl", .data = (void *)&sun7i_a20_pinctrl_data },
Maxime Ripard0e37f882013-01-18 22:30:34 +0100690 {}
691};
692MODULE_DEVICE_TABLE(of, sunxi_pinctrl_match);
693
694static int sunxi_pinctrl_add_function(struct sunxi_pinctrl *pctl,
695 const char *name)
696{
697 struct sunxi_pinctrl_function *func = pctl->functions;
698
699 while (func->name) {
700 /* function already there */
701 if (strcmp(func->name, name) == 0) {
702 func->ngroups++;
703 return -EEXIST;
704 }
705 func++;
706 }
707
708 func->name = name;
709 func->ngroups = 1;
710
711 pctl->nfunctions++;
712
713 return 0;
714}
715
716static int sunxi_pinctrl_build_state(struct platform_device *pdev)
717{
718 struct sunxi_pinctrl *pctl = platform_get_drvdata(pdev);
719 int i;
720
721 pctl->ngroups = pctl->desc->npins;
722
723 /* Allocate groups */
724 pctl->groups = devm_kzalloc(&pdev->dev,
725 pctl->ngroups * sizeof(*pctl->groups),
726 GFP_KERNEL);
727 if (!pctl->groups)
728 return -ENOMEM;
729
730 for (i = 0; i < pctl->desc->npins; i++) {
731 const struct sunxi_desc_pin *pin = pctl->desc->pins + i;
732 struct sunxi_pinctrl_group *group = pctl->groups + i;
733
734 group->name = pin->pin.name;
735 group->pin = pin->pin.number;
736 }
737
738 /*
739 * We suppose that we won't have any more functions than pins,
740 * we'll reallocate that later anyway
741 */
742 pctl->functions = devm_kzalloc(&pdev->dev,
743 pctl->desc->npins * sizeof(*pctl->functions),
744 GFP_KERNEL);
745 if (!pctl->functions)
746 return -ENOMEM;
747
748 /* Count functions and their associated groups */
749 for (i = 0; i < pctl->desc->npins; i++) {
750 const struct sunxi_desc_pin *pin = pctl->desc->pins + i;
751 struct sunxi_desc_function *func = pin->functions;
752
753 while (func->name) {
754 sunxi_pinctrl_add_function(pctl, func->name);
755 func++;
756 }
757 }
758
759 pctl->functions = krealloc(pctl->functions,
760 pctl->nfunctions * sizeof(*pctl->functions),
761 GFP_KERNEL);
762
763 for (i = 0; i < pctl->desc->npins; i++) {
764 const struct sunxi_desc_pin *pin = pctl->desc->pins + i;
765 struct sunxi_desc_function *func = pin->functions;
766
767 while (func->name) {
768 struct sunxi_pinctrl_function *func_item;
769 const char **func_grp;
770
771 func_item = sunxi_pinctrl_find_function_by_name(pctl,
772 func->name);
773 if (!func_item)
774 return -EINVAL;
775
776 if (!func_item->groups) {
777 func_item->groups =
778 devm_kzalloc(&pdev->dev,
779 func_item->ngroups * sizeof(*func_item->groups),
780 GFP_KERNEL);
781 if (!func_item->groups)
782 return -ENOMEM;
783 }
784
785 func_grp = func_item->groups;
786 while (*func_grp)
787 func_grp++;
788
789 *func_grp = pin->pin.name;
790 func++;
791 }
792 }
793
794 return 0;
795}
796
797static int sunxi_pinctrl_probe(struct platform_device *pdev)
798{
799 struct device_node *node = pdev->dev.of_node;
800 const struct of_device_id *device;
801 struct pinctrl_pin_desc *pins;
802 struct sunxi_pinctrl *pctl;
Maxime Ripard08e9e612013-01-28 21:33:12 +0100803 int i, ret, last_pin;
Emilio López950707c2013-03-22 11:20:40 -0300804 struct clk *clk;
Maxime Ripard0e37f882013-01-18 22:30:34 +0100805
806 pctl = devm_kzalloc(&pdev->dev, sizeof(*pctl), GFP_KERNEL);
807 if (!pctl)
808 return -ENOMEM;
809 platform_set_drvdata(pdev, pctl);
810
Maxime Ripard1bee9632013-08-04 12:38:48 +0200811 spin_lock_init(&pctl->lock);
812
Maxime Ripard0e37f882013-01-18 22:30:34 +0100813 pctl->membase = of_iomap(node, 0);
814 if (!pctl->membase)
815 return -ENOMEM;
816
817 device = of_match_device(sunxi_pinctrl_match, &pdev->dev);
818 if (!device)
819 return -ENODEV;
820
821 pctl->desc = (struct sunxi_pinctrl_desc *)device->data;
822
823 ret = sunxi_pinctrl_build_state(pdev);
824 if (ret) {
825 dev_err(&pdev->dev, "dt probe failed: %d\n", ret);
826 return ret;
827 }
828
829 pins = devm_kzalloc(&pdev->dev,
830 pctl->desc->npins * sizeof(*pins),
831 GFP_KERNEL);
832 if (!pins)
833 return -ENOMEM;
834
835 for (i = 0; i < pctl->desc->npins; i++)
836 pins[i] = pctl->desc->pins[i].pin;
837
838 sunxi_pctrl_desc.name = dev_name(&pdev->dev);
839 sunxi_pctrl_desc.owner = THIS_MODULE;
840 sunxi_pctrl_desc.pins = pins;
841 sunxi_pctrl_desc.npins = pctl->desc->npins;
842 pctl->dev = &pdev->dev;
843 pctl->pctl_dev = pinctrl_register(&sunxi_pctrl_desc,
844 &pdev->dev, pctl);
845 if (!pctl->pctl_dev) {
846 dev_err(&pdev->dev, "couldn't register pinctrl driver\n");
847 return -EINVAL;
848 }
849
Maxime Ripard08e9e612013-01-28 21:33:12 +0100850 pctl->chip = devm_kzalloc(&pdev->dev, sizeof(*pctl->chip), GFP_KERNEL);
851 if (!pctl->chip) {
852 ret = -ENOMEM;
853 goto pinctrl_error;
854 }
855
856 last_pin = pctl->desc->pins[pctl->desc->npins - 1].pin.number;
857 pctl->chip = &sunxi_pinctrl_gpio_chip;
858 pctl->chip->ngpio = round_up(last_pin, PINS_PER_BANK);
859 pctl->chip->label = dev_name(&pdev->dev);
860 pctl->chip->dev = &pdev->dev;
861 pctl->chip->base = 0;
862
863 ret = gpiochip_add(pctl->chip);
864 if (ret)
865 goto pinctrl_error;
866
867 for (i = 0; i < pctl->desc->npins; i++) {
868 const struct sunxi_desc_pin *pin = pctl->desc->pins + i;
869
870 ret = gpiochip_add_pin_range(pctl->chip, dev_name(&pdev->dev),
871 pin->pin.number,
872 pin->pin.number, 1);
873 if (ret)
874 goto gpiochip_error;
875 }
876
Emilio López950707c2013-03-22 11:20:40 -0300877 clk = devm_clk_get(&pdev->dev, NULL);
Wei Yongjund72f88a2013-05-23 17:32:14 +0800878 if (IS_ERR(clk)) {
879 ret = PTR_ERR(clk);
Emilio López950707c2013-03-22 11:20:40 -0300880 goto gpiochip_error;
Wei Yongjund72f88a2013-05-23 17:32:14 +0800881 }
Emilio López950707c2013-03-22 11:20:40 -0300882
883 clk_prepare_enable(clk);
884
Maxime Ripard60242db2013-06-08 12:05:44 +0200885 pctl->irq = irq_of_parse_and_map(node, 0);
886 if (!pctl->irq) {
887 ret = -EINVAL;
888 goto gpiochip_error;
889 }
890
891 pctl->domain = irq_domain_add_linear(node, SUNXI_IRQ_NUMBER,
892 &irq_domain_simple_ops, NULL);
893 if (!pctl->domain) {
894 dev_err(&pdev->dev, "Couldn't register IRQ domain\n");
895 ret = -ENOMEM;
896 goto gpiochip_error;
897 }
898
899 for (i = 0; i < SUNXI_IRQ_NUMBER; i++) {
900 int irqno = irq_create_mapping(pctl->domain, i);
901
902 irq_set_chip_and_handler(irqno, &sunxi_pinctrl_irq_chip,
903 handle_simple_irq);
904 irq_set_chip_data(irqno, pctl);
905 };
906
907 irq_set_chained_handler(pctl->irq, sunxi_pinctrl_irq_handler);
908 irq_set_handler_data(pctl->irq, pctl);
909
Maxime Ripard08e9e612013-01-28 21:33:12 +0100910 dev_info(&pdev->dev, "initialized sunXi PIO driver\n");
Maxime Ripard0e37f882013-01-18 22:30:34 +0100911
912 return 0;
Maxime Ripard08e9e612013-01-28 21:33:12 +0100913
914gpiochip_error:
Axel Lin97fc4632013-05-19 13:58:37 +0800915 if (gpiochip_remove(pctl->chip))
916 dev_err(&pdev->dev, "failed to remove gpio chip\n");
Maxime Ripard08e9e612013-01-28 21:33:12 +0100917pinctrl_error:
918 pinctrl_unregister(pctl->pctl_dev);
919 return ret;
Maxime Ripard0e37f882013-01-18 22:30:34 +0100920}
921
922static struct platform_driver sunxi_pinctrl_driver = {
923 .probe = sunxi_pinctrl_probe,
924 .driver = {
925 .name = "sunxi-pinctrl",
926 .owner = THIS_MODULE,
927 .of_match_table = sunxi_pinctrl_match,
928 },
929};
930module_platform_driver(sunxi_pinctrl_driver);
931
932MODULE_AUTHOR("Maxime Ripard <maxime.ripard@free-electrons.com");
933MODULE_DESCRIPTION("Allwinner A1X pinctrl driver");
934MODULE_LICENSE("GPL");