blob: 3bbb34435e0f642beed5c49013c15c8494fe598a [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>
Linus Walleij88057d62015-12-08 22:40:43 +010015#include <linux/gpio/driver.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>
Paul Gortmakerbcc76192016-02-29 15:48:37 -050018#include <linux/export.h>
Maxime Ripard0e37f882013-01-18 22:30:34 +010019#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
Maxime Ripard42676fa2016-10-11 17:46:00 +020031#include <dt-bindings/pinctrl/sun4i-a10.h>
32
Maxime Ripard5f910772014-04-18 18:53:02 +020033#include "../core.h"
Maxime Ripard0e37f882013-01-18 22:30:34 +010034#include "pinctrl-sunxi.h"
Maxime Ripardeaa3d842013-01-18 22:30:35 +010035
Hans de Goedef4c51c12014-06-29 16:11:01 +020036static struct irq_chip sunxi_pinctrl_edge_irq_chip;
37static struct irq_chip sunxi_pinctrl_level_irq_chip;
38
Maxime Ripard0e37f882013-01-18 22:30:34 +010039static struct sunxi_pinctrl_group *
40sunxi_pinctrl_find_group_by_name(struct sunxi_pinctrl *pctl, const char *group)
41{
42 int i;
43
44 for (i = 0; i < pctl->ngroups; i++) {
45 struct sunxi_pinctrl_group *grp = pctl->groups + i;
46
47 if (!strcmp(grp->name, group))
48 return grp;
49 }
50
51 return NULL;
52}
53
54static struct sunxi_pinctrl_function *
55sunxi_pinctrl_find_function_by_name(struct sunxi_pinctrl *pctl,
56 const char *name)
57{
58 struct sunxi_pinctrl_function *func = pctl->functions;
59 int i;
60
61 for (i = 0; i < pctl->nfunctions; i++) {
62 if (!func[i].name)
63 break;
64
65 if (!strcmp(func[i].name, name))
66 return func + i;
67 }
68
69 return NULL;
70}
71
72static struct sunxi_desc_function *
73sunxi_pinctrl_desc_find_function_by_name(struct sunxi_pinctrl *pctl,
74 const char *pin_name,
75 const char *func_name)
76{
77 int i;
78
79 for (i = 0; i < pctl->desc->npins; i++) {
80 const struct sunxi_desc_pin *pin = pctl->desc->pins + i;
81
82 if (!strcmp(pin->pin.name, pin_name)) {
83 struct sunxi_desc_function *func = pin->functions;
84
85 while (func->name) {
86 if (!strcmp(func->name, func_name))
87 return func;
88
89 func++;
90 }
91 }
92 }
93
94 return NULL;
95}
96
Maxime Ripard814d4f22013-06-08 12:05:43 +020097static struct sunxi_desc_function *
98sunxi_pinctrl_desc_find_function_by_pin(struct sunxi_pinctrl *pctl,
99 const u16 pin_num,
100 const char *func_name)
101{
102 int i;
103
104 for (i = 0; i < pctl->desc->npins; i++) {
105 const struct sunxi_desc_pin *pin = pctl->desc->pins + i;
106
107 if (pin->pin.number == pin_num) {
108 struct sunxi_desc_function *func = pin->functions;
109
110 while (func->name) {
111 if (!strcmp(func->name, func_name))
112 return func;
113
114 func++;
115 }
116 }
117 }
118
119 return NULL;
120}
121
Maxime Ripard0e37f882013-01-18 22:30:34 +0100122static int sunxi_pctrl_get_groups_count(struct pinctrl_dev *pctldev)
123{
124 struct sunxi_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
125
126 return pctl->ngroups;
127}
128
129static const char *sunxi_pctrl_get_group_name(struct pinctrl_dev *pctldev,
130 unsigned group)
131{
132 struct sunxi_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
133
134 return pctl->groups[group].name;
135}
136
137static int sunxi_pctrl_get_group_pins(struct pinctrl_dev *pctldev,
138 unsigned group,
139 const unsigned **pins,
140 unsigned *num_pins)
141{
142 struct sunxi_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
143
144 *pins = (unsigned *)&pctl->groups[group].pin;
145 *num_pins = 1;
146
147 return 0;
148}
149
Maxime Ripardf233dbc2016-10-11 17:45:59 +0200150static bool sunxi_pctrl_has_bias_prop(struct device_node *node)
151{
Maxime Ripardcefbf1a2016-10-20 15:49:03 +0200152 return of_find_property(node, "bias-pull-up", NULL) ||
153 of_find_property(node, "bias-pull-down", NULL) ||
154 of_find_property(node, "bias-disable", NULL) ||
155 of_find_property(node, "allwinner,pull", NULL);
Maxime Ripardf233dbc2016-10-11 17:45:59 +0200156}
157
158static bool sunxi_pctrl_has_drive_prop(struct device_node *node)
159{
Maxime Ripardcefbf1a2016-10-20 15:49:03 +0200160 return of_find_property(node, "drive-strength", NULL) ||
161 of_find_property(node, "allwinner,drive", NULL);
Maxime Ripardf233dbc2016-10-11 17:45:59 +0200162}
163
164static int sunxi_pctrl_parse_bias_prop(struct device_node *node)
165{
166 u32 val;
167
Maxime Ripardcefbf1a2016-10-20 15:49:03 +0200168 /* Try the new style binding */
169 if (of_find_property(node, "bias-pull-up", NULL))
170 return PIN_CONFIG_BIAS_PULL_UP;
171
172 if (of_find_property(node, "bias-pull-down", NULL))
173 return PIN_CONFIG_BIAS_PULL_DOWN;
174
175 if (of_find_property(node, "bias-disable", NULL))
176 return PIN_CONFIG_BIAS_DISABLE;
177
178 /* And fall back to the old binding */
Maxime Ripardf233dbc2016-10-11 17:45:59 +0200179 if (of_property_read_u32(node, "allwinner,pull", &val))
180 return -EINVAL;
181
182 switch (val) {
Maxime Ripard07fe64b2016-10-11 17:46:01 +0200183 case SUN4I_PINCTRL_NO_PULL:
184 return PIN_CONFIG_BIAS_DISABLE;
Maxime Ripard42676fa2016-10-11 17:46:00 +0200185 case SUN4I_PINCTRL_PULL_UP:
Maxime Ripardf233dbc2016-10-11 17:45:59 +0200186 return PIN_CONFIG_BIAS_PULL_UP;
Maxime Ripard42676fa2016-10-11 17:46:00 +0200187 case SUN4I_PINCTRL_PULL_DOWN:
Maxime Ripardf233dbc2016-10-11 17:45:59 +0200188 return PIN_CONFIG_BIAS_PULL_DOWN;
189 }
190
191 return -EINVAL;
192}
193
194static int sunxi_pctrl_parse_drive_prop(struct device_node *node)
195{
196 u32 val;
197
Maxime Ripardcefbf1a2016-10-20 15:49:03 +0200198 /* Try the new style binding */
199 if (!of_property_read_u32(node, "drive-strength", &val)) {
200 /* We can't go below 10mA ... */
201 if (val < 10)
202 return -EINVAL;
203
204 /* ... and only up to 40 mA ... */
205 if (val > 40)
206 val = 40;
207
208 /* by steps of 10 mA */
209 return rounddown(val, 10);
210 }
211
212 /* And then fall back to the old binding */
Maxime Ripardf233dbc2016-10-11 17:45:59 +0200213 if (of_property_read_u32(node, "allwinner,drive", &val))
214 return -EINVAL;
215
216 return (val + 1) * 10;
217}
218
219static const char *sunxi_pctrl_parse_function_prop(struct device_node *node)
220{
221 const char *function;
222 int ret;
223
Maxime Ripardcefbf1a2016-10-20 15:49:03 +0200224 /* Try the generic binding */
225 ret = of_property_read_string(node, "function", &function);
226 if (!ret)
227 return function;
228
229 /* And fall back to our legacy one */
Maxime Ripardf233dbc2016-10-11 17:45:59 +0200230 ret = of_property_read_string(node, "allwinner,function", &function);
231 if (!ret)
232 return function;
233
234 return NULL;
235}
236
237static const char *sunxi_pctrl_find_pins_prop(struct device_node *node,
238 int *npins)
239{
240 int count;
241
Maxime Ripardcefbf1a2016-10-20 15:49:03 +0200242 /* Try the generic binding */
243 count = of_property_count_strings(node, "pins");
244 if (count > 0) {
245 *npins = count;
246 return "pins";
247 }
248
249 /* And fall back to our legacy one */
Maxime Ripardf233dbc2016-10-11 17:45:59 +0200250 count = of_property_count_strings(node, "allwinner,pins");
251 if (count > 0) {
252 *npins = count;
253 return "allwinner,pins";
254 }
255
256 return NULL;
257}
258
259static unsigned long *sunxi_pctrl_build_pin_config(struct device_node *node,
260 unsigned int *len)
261{
262 unsigned long *pinconfig;
263 unsigned int configlen = 0, idx = 0;
Maxime Riparde11dee22016-10-20 15:49:02 +0200264 int ret;
Maxime Ripardf233dbc2016-10-11 17:45:59 +0200265
266 if (sunxi_pctrl_has_drive_prop(node))
267 configlen++;
268 if (sunxi_pctrl_has_bias_prop(node))
269 configlen++;
270
Maxime Riparde11dee22016-10-20 15:49:02 +0200271 /*
272 * If we don't have any configuration, bail out
273 */
274 if (!configlen)
275 return NULL;
276
Maxime Ripardf233dbc2016-10-11 17:45:59 +0200277 pinconfig = kzalloc(configlen * sizeof(*pinconfig), GFP_KERNEL);
278 if (!pinconfig)
Maxime Riparde11dee22016-10-20 15:49:02 +0200279 return ERR_PTR(-ENOMEM);
Maxime Ripardf233dbc2016-10-11 17:45:59 +0200280
281 if (sunxi_pctrl_has_drive_prop(node)) {
282 int drive = sunxi_pctrl_parse_drive_prop(node);
Maxime Riparde11dee22016-10-20 15:49:02 +0200283 if (drive < 0) {
284 ret = drive;
Maxime Ripardf233dbc2016-10-11 17:45:59 +0200285 goto err_free;
Maxime Riparde11dee22016-10-20 15:49:02 +0200286 }
Maxime Ripardf233dbc2016-10-11 17:45:59 +0200287
288 pinconfig[idx++] = pinconf_to_config_packed(PIN_CONFIG_DRIVE_STRENGTH,
289 drive);
290 }
291
292 if (sunxi_pctrl_has_bias_prop(node)) {
293 int pull = sunxi_pctrl_parse_bias_prop(node);
Chen-Yu Tsai223dba02016-11-11 17:50:34 +0800294 int arg = 0;
Maxime Riparde11dee22016-10-20 15:49:02 +0200295 if (pull < 0) {
296 ret = pull;
Maxime Ripardf233dbc2016-10-11 17:45:59 +0200297 goto err_free;
Maxime Riparde11dee22016-10-20 15:49:02 +0200298 }
Maxime Ripardf233dbc2016-10-11 17:45:59 +0200299
Chen-Yu Tsai223dba02016-11-11 17:50:34 +0800300 if (pull != PIN_CONFIG_BIAS_DISABLE)
301 arg = 1; /* hardware uses weak pull resistors */
302
303 pinconfig[idx++] = pinconf_to_config_packed(pull, arg);
Maxime Ripardf233dbc2016-10-11 17:45:59 +0200304 }
305
306
307 *len = configlen;
308 return pinconfig;
309
310err_free:
311 kfree(pinconfig);
Maxime Riparde11dee22016-10-20 15:49:02 +0200312 return ERR_PTR(ret);
Maxime Ripardf233dbc2016-10-11 17:45:59 +0200313}
314
Maxime Ripard0e37f882013-01-18 22:30:34 +0100315static int sunxi_pctrl_dt_node_to_map(struct pinctrl_dev *pctldev,
316 struct device_node *node,
317 struct pinctrl_map **map,
318 unsigned *num_maps)
319{
320 struct sunxi_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
321 unsigned long *pinconfig;
322 struct property *prop;
Maxime Ripardf233dbc2016-10-11 17:45:59 +0200323 const char *function, *pin_prop;
Maxime Ripard0e37f882013-01-18 22:30:34 +0100324 const char *group;
Maxime Ripardf233dbc2016-10-11 17:45:59 +0200325 int ret, npins, nmaps, configlen = 0, i = 0;
Maxime Ripard0e37f882013-01-18 22:30:34 +0100326
327 *map = NULL;
328 *num_maps = 0;
329
Maxime Ripardf233dbc2016-10-11 17:45:59 +0200330 function = sunxi_pctrl_parse_function_prop(node);
331 if (!function) {
332 dev_err(pctl->dev, "missing function property in node %s\n",
Maxime Ripard0e37f882013-01-18 22:30:34 +0100333 node->name);
334 return -EINVAL;
335 }
336
Maxime Ripardf233dbc2016-10-11 17:45:59 +0200337 pin_prop = sunxi_pctrl_find_pins_prop(node, &npins);
338 if (!pin_prop) {
339 dev_err(pctl->dev, "missing pins property in node %s\n",
Maxime Ripard0e37f882013-01-18 22:30:34 +0100340 node->name);
341 return -EINVAL;
342 }
343
Maxime Ripardf233dbc2016-10-11 17:45:59 +0200344 /*
345 * We have two maps for each pin: one for the function, one
Maxime Riparde11dee22016-10-20 15:49:02 +0200346 * for the configuration (bias, strength, etc).
347 *
348 * We might be slightly overshooting, since we might not have
349 * any configuration.
Maxime Ripardf233dbc2016-10-11 17:45:59 +0200350 */
351 nmaps = npins * 2;
Maxime Ripard0e37f882013-01-18 22:30:34 +0100352 *map = kmalloc(nmaps * sizeof(struct pinctrl_map), GFP_KERNEL);
Sachin Kamat3efa9212013-07-29 13:49:32 +0530353 if (!*map)
Maxime Ripard0e37f882013-01-18 22:30:34 +0100354 return -ENOMEM;
355
Maxime Ripardf233dbc2016-10-11 17:45:59 +0200356 pinconfig = sunxi_pctrl_build_pin_config(node, &configlen);
Maxime Riparde11dee22016-10-20 15:49:02 +0200357 if (IS_ERR(pinconfig)) {
358 ret = PTR_ERR(pinconfig);
Maxime Ripardf233dbc2016-10-11 17:45:59 +0200359 goto err_free_map;
360 }
361
362 of_property_for_each_string(node, pin_prop, prop, group) {
Maxime Ripard0e37f882013-01-18 22:30:34 +0100363 struct sunxi_pinctrl_group *grp =
364 sunxi_pinctrl_find_group_by_name(pctl, group);
Maxime Ripard0e37f882013-01-18 22:30:34 +0100365
366 if (!grp) {
367 dev_err(pctl->dev, "unknown pin %s", group);
368 continue;
369 }
370
371 if (!sunxi_pinctrl_desc_find_function_by_name(pctl,
372 grp->name,
373 function)) {
374 dev_err(pctl->dev, "unsupported function %s on pin %s",
375 function, group);
376 continue;
377 }
378
379 (*map)[i].type = PIN_MAP_TYPE_MUX_GROUP;
380 (*map)[i].data.mux.group = group;
381 (*map)[i].data.mux.function = function;
382
383 i++;
384
Maxime Riparde11dee22016-10-20 15:49:02 +0200385 if (pinconfig) {
386 (*map)[i].type = PIN_MAP_TYPE_CONFIGS_GROUP;
387 (*map)[i].data.configs.group_or_pin = group;
388 (*map)[i].data.configs.configs = pinconfig;
389 (*map)[i].data.configs.num_configs = configlen;
390 i++;
391 }
Maxime Ripard0e37f882013-01-18 22:30:34 +0100392 }
393
Maxime Riparde11dee22016-10-20 15:49:02 +0200394 *num_maps = i;
395
396 /*
397 * We know have the number of maps we need, we can resize our
398 * map array
399 */
400 *map = krealloc(*map, i * sizeof(struct pinctrl_map), GFP_KERNEL);
Dan Carpenterb3cde192016-11-18 14:35:57 +0300401 if (!*map)
Maxime Riparde11dee22016-10-20 15:49:02 +0200402 return -ENOMEM;
Maxime Ripard0e37f882013-01-18 22:30:34 +0100403
404 return 0;
Maxime Ripardf233dbc2016-10-11 17:45:59 +0200405
406err_free_map:
Dan Carpenterb3cde192016-11-18 14:35:57 +0300407 kfree(*map);
408 *map = NULL;
Maxime Ripardf233dbc2016-10-11 17:45:59 +0200409 return ret;
Maxime Ripard0e37f882013-01-18 22:30:34 +0100410}
411
412static void sunxi_pctrl_dt_free_map(struct pinctrl_dev *pctldev,
413 struct pinctrl_map *map,
414 unsigned num_maps)
415{
Chen-Yu Tsai88f01a12016-11-11 10:35:10 +0800416 int i;
417
418 /* pin config is never in the first map */
419 for (i = 1; i < num_maps; i++) {
420 if (map[i].type != PIN_MAP_TYPE_CONFIGS_GROUP)
421 continue;
422
423 /*
424 * All the maps share the same pin config,
425 * free only the first one we find.
426 */
427 kfree(map[i].data.configs.configs);
428 break;
429 }
430
Maxime Ripard0e37f882013-01-18 22:30:34 +0100431 kfree(map);
432}
433
Laurent Pinchart022ab142013-02-16 10:25:07 +0100434static const struct pinctrl_ops sunxi_pctrl_ops = {
Maxime Ripard0e37f882013-01-18 22:30:34 +0100435 .dt_node_to_map = sunxi_pctrl_dt_node_to_map,
436 .dt_free_map = sunxi_pctrl_dt_free_map,
437 .get_groups_count = sunxi_pctrl_get_groups_count,
438 .get_group_name = sunxi_pctrl_get_group_name,
439 .get_group_pins = sunxi_pctrl_get_group_pins,
440};
441
Chen-Yu Tsaic5fda172016-11-11 17:50:35 +0800442static int sunxi_pconf_reg(unsigned pin, enum pin_config_param param,
443 u32 *offset, u32 *shift, u32 *mask)
444{
445 switch (param) {
446 case PIN_CONFIG_DRIVE_STRENGTH:
447 *offset = sunxi_dlevel_reg(pin);
448 *shift = sunxi_dlevel_offset(pin);
449 *mask = DLEVEL_PINS_MASK;
450 break;
451
452 case PIN_CONFIG_BIAS_PULL_UP:
453 case PIN_CONFIG_BIAS_PULL_DOWN:
454 case PIN_CONFIG_BIAS_DISABLE:
455 *offset = sunxi_pull_reg(pin);
456 *shift = sunxi_pull_offset(pin);
457 *mask = PULL_PINS_MASK;
458 break;
459
460 default:
461 return -ENOTSUPP;
462 }
463
464 return 0;
465}
466
467static int sunxi_pconf_get(struct pinctrl_dev *pctldev, unsigned pin,
468 unsigned long *config)
469{
470 struct sunxi_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
471 enum pin_config_param param = pinconf_to_config_param(*config);
472 u32 offset, shift, mask, val;
473 u16 arg;
474 int ret;
475
476 pin -= pctl->desc->pin_base;
477
478 ret = sunxi_pconf_reg(pin, param, &offset, &shift, &mask);
479 if (ret < 0)
480 return ret;
481
482 val = (readl(pctl->membase + offset) >> shift) & mask;
483
484 switch (pinconf_to_config_param(*config)) {
485 case PIN_CONFIG_DRIVE_STRENGTH:
486 arg = (val + 1) * 10;
487 break;
488
489 case PIN_CONFIG_BIAS_PULL_UP:
490 if (val != SUN4I_PINCTRL_PULL_UP)
491 return -EINVAL;
492 arg = 1; /* hardware is weak pull-up */
493 break;
494
495 case PIN_CONFIG_BIAS_PULL_DOWN:
496 if (val != SUN4I_PINCTRL_PULL_DOWN)
497 return -EINVAL;
498 arg = 1; /* hardware is weak pull-down */
499 break;
500
501 case PIN_CONFIG_BIAS_DISABLE:
502 if (val != SUN4I_PINCTRL_NO_PULL)
503 return -EINVAL;
504 arg = 0;
505 break;
506
507 default:
508 /* sunxi_pconf_reg should catch anything unsupported */
509 WARN_ON(1);
510 return -ENOTSUPP;
511 }
512
513 *config = pinconf_to_config_packed(param, arg);
514
515 return 0;
516}
517
Maxime Ripard0e37f882013-01-18 22:30:34 +0100518static int sunxi_pconf_group_get(struct pinctrl_dev *pctldev,
519 unsigned group,
520 unsigned long *config)
521{
522 struct sunxi_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
Chen-Yu Tsaic5fda172016-11-11 17:50:35 +0800523 struct sunxi_pinctrl_group *g = &pctl->groups[group];
Maxime Ripard0e37f882013-01-18 22:30:34 +0100524
Chen-Yu Tsaic5fda172016-11-11 17:50:35 +0800525 /* We only support 1 pin per group. Chain it to the pin callback */
526 return sunxi_pconf_get(pctldev, g->pin, config);
Maxime Ripard0e37f882013-01-18 22:30:34 +0100527}
528
529static int sunxi_pconf_group_set(struct pinctrl_dev *pctldev,
530 unsigned group,
Sherman Yin03b054e2013-08-27 11:32:12 -0700531 unsigned long *configs,
532 unsigned num_configs)
Maxime Ripard0e37f882013-01-18 22:30:34 +0100533{
534 struct sunxi_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
535 struct sunxi_pinctrl_group *g = &pctl->groups[group];
Chen-Yu Tsaib4575c62014-05-22 23:20:55 +0800536 unsigned pin = g->pin - pctl->desc->pin_base;
Sherman Yin03b054e2013-08-27 11:32:12 -0700537 int i;
Maxime Ripard0e37f882013-01-18 22:30:34 +0100538
Sherman Yin03b054e2013-08-27 11:32:12 -0700539 for (i = 0; i < num_configs; i++) {
Chen-Yu Tsai51814822016-11-11 17:50:36 +0800540 enum pin_config_param param;
541 unsigned long flags;
542 u32 offset, shift, mask, reg;
Mika Westerberg58957d22017-01-23 15:34:32 +0300543 u32 arg, val;
Chen-Yu Tsai51814822016-11-11 17:50:36 +0800544 int ret;
545
546 param = pinconf_to_config_param(configs[i]);
547 arg = pinconf_to_config_argument(configs[i]);
548
549 ret = sunxi_pconf_reg(pin, param, &offset, &shift, &mask);
550 if (ret < 0)
551 return ret;
552
553 switch (param) {
Sherman Yin03b054e2013-08-27 11:32:12 -0700554 case PIN_CONFIG_DRIVE_STRENGTH:
Chen-Yu Tsai51814822016-11-11 17:50:36 +0800555 if (arg < 10 || arg > 40)
Sherman Yin03b054e2013-08-27 11:32:12 -0700556 return -EINVAL;
557 /*
558 * We convert from mA to what the register expects:
559 * 0: 10mA
560 * 1: 20mA
561 * 2: 30mA
562 * 3: 40mA
563 */
Chen-Yu Tsai51814822016-11-11 17:50:36 +0800564 val = arg / 10 - 1;
Sherman Yin03b054e2013-08-27 11:32:12 -0700565 break;
Maxime Ripard07fe64b2016-10-11 17:46:01 +0200566 case PIN_CONFIG_BIAS_DISABLE:
Priit Laesac059e22017-08-27 15:55:23 +0300567 val = 0;
568 break;
Sherman Yin03b054e2013-08-27 11:32:12 -0700569 case PIN_CONFIG_BIAS_PULL_UP:
Chen-Yu Tsai51814822016-11-11 17:50:36 +0800570 if (arg == 0)
571 return -EINVAL;
572 val = 1;
Sherman Yin03b054e2013-08-27 11:32:12 -0700573 break;
574 case PIN_CONFIG_BIAS_PULL_DOWN:
Chen-Yu Tsai51814822016-11-11 17:50:36 +0800575 if (arg == 0)
576 return -EINVAL;
577 val = 2;
Sherman Yin03b054e2013-08-27 11:32:12 -0700578 break;
579 default:
Chen-Yu Tsai51814822016-11-11 17:50:36 +0800580 /* sunxi_pconf_reg should catch anything unsupported */
581 WARN_ON(1);
582 return -ENOTSUPP;
Sherman Yin03b054e2013-08-27 11:32:12 -0700583 }
Maxime Ripard0e37f882013-01-18 22:30:34 +0100584
Julia Cartwrightf658ed32017-03-09 10:22:06 -0600585 raw_spin_lock_irqsave(&pctl->lock, flags);
Chen-Yu Tsai51814822016-11-11 17:50:36 +0800586 reg = readl(pctl->membase + offset);
587 reg &= ~(mask << shift);
588 writel(reg | val << shift, pctl->membase + offset);
Julia Cartwrightf658ed32017-03-09 10:22:06 -0600589 raw_spin_unlock_irqrestore(&pctl->lock, flags);
Chen-Yu Tsai51814822016-11-11 17:50:36 +0800590 } /* for each config */
Maxime Ripard0e37f882013-01-18 22:30:34 +0100591
592 return 0;
593}
594
Laurent Pinchart022ab142013-02-16 10:25:07 +0100595static const struct pinconf_ops sunxi_pconf_ops = {
Chen-Yu Tsaic5fda172016-11-11 17:50:35 +0800596 .is_generic = true,
597 .pin_config_get = sunxi_pconf_get,
Maxime Ripard0e37f882013-01-18 22:30:34 +0100598 .pin_config_group_get = sunxi_pconf_group_get,
599 .pin_config_group_set = sunxi_pconf_group_set,
600};
601
602static int sunxi_pmx_get_funcs_cnt(struct pinctrl_dev *pctldev)
603{
604 struct sunxi_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
605
606 return pctl->nfunctions;
607}
608
609static const char *sunxi_pmx_get_func_name(struct pinctrl_dev *pctldev,
610 unsigned function)
611{
612 struct sunxi_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
613
614 return pctl->functions[function].name;
615}
616
617static int sunxi_pmx_get_func_groups(struct pinctrl_dev *pctldev,
618 unsigned function,
619 const char * const **groups,
620 unsigned * const num_groups)
621{
622 struct sunxi_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
623
624 *groups = pctl->functions[function].groups;
625 *num_groups = pctl->functions[function].ngroups;
626
627 return 0;
628}
629
630static void sunxi_pmx_set(struct pinctrl_dev *pctldev,
631 unsigned pin,
632 u8 config)
633{
634 struct sunxi_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
Maxime Ripard1bee9632013-08-04 12:38:48 +0200635 unsigned long flags;
636 u32 val, mask;
Maxime Ripard0e37f882013-01-18 22:30:34 +0100637
Julia Cartwrightf658ed32017-03-09 10:22:06 -0600638 raw_spin_lock_irqsave(&pctl->lock, flags);
Maxime Ripard1bee9632013-08-04 12:38:48 +0200639
Chen-Yu Tsaib4575c62014-05-22 23:20:55 +0800640 pin -= pctl->desc->pin_base;
Maxime Ripard1bee9632013-08-04 12:38:48 +0200641 val = readl(pctl->membase + sunxi_mux_reg(pin));
642 mask = MUX_PINS_MASK << sunxi_mux_offset(pin);
Maxime Ripard0e37f882013-01-18 22:30:34 +0100643 writel((val & ~mask) | config << sunxi_mux_offset(pin),
644 pctl->membase + sunxi_mux_reg(pin));
Maxime Ripard1bee9632013-08-04 12:38:48 +0200645
Julia Cartwrightf658ed32017-03-09 10:22:06 -0600646 raw_spin_unlock_irqrestore(&pctl->lock, flags);
Maxime Ripard0e37f882013-01-18 22:30:34 +0100647}
648
Linus Walleij03e9f0c2014-09-03 13:02:56 +0200649static int sunxi_pmx_set_mux(struct pinctrl_dev *pctldev,
650 unsigned function,
651 unsigned group)
Maxime Ripard0e37f882013-01-18 22:30:34 +0100652{
653 struct sunxi_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
654 struct sunxi_pinctrl_group *g = pctl->groups + group;
655 struct sunxi_pinctrl_function *func = pctl->functions + function;
656 struct sunxi_desc_function *desc =
657 sunxi_pinctrl_desc_find_function_by_name(pctl,
658 g->name,
659 func->name);
660
661 if (!desc)
662 return -EINVAL;
663
664 sunxi_pmx_set(pctldev, g->pin, desc->muxval);
665
666 return 0;
667}
668
Maxime Ripard08e9e612013-01-28 21:33:12 +0100669static int
670sunxi_pmx_gpio_set_direction(struct pinctrl_dev *pctldev,
671 struct pinctrl_gpio_range *range,
672 unsigned offset,
673 bool input)
674{
675 struct sunxi_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
676 struct sunxi_desc_function *desc;
Maxime Ripard08e9e612013-01-28 21:33:12 +0100677 const char *func;
Maxime Ripard08e9e612013-01-28 21:33:12 +0100678
679 if (input)
680 func = "gpio_in";
681 else
682 func = "gpio_out";
683
Maxime Ripard814d4f22013-06-08 12:05:43 +0200684 desc = sunxi_pinctrl_desc_find_function_by_pin(pctl, offset, func);
685 if (!desc)
686 return -EINVAL;
Maxime Ripard08e9e612013-01-28 21:33:12 +0100687
688 sunxi_pmx_set(pctldev, offset, desc->muxval);
689
Maxime Ripard814d4f22013-06-08 12:05:43 +0200690 return 0;
Maxime Ripard08e9e612013-01-28 21:33:12 +0100691}
692
Laurent Pinchart022ab142013-02-16 10:25:07 +0100693static const struct pinmux_ops sunxi_pmx_ops = {
Maxime Ripard0e37f882013-01-18 22:30:34 +0100694 .get_functions_count = sunxi_pmx_get_funcs_cnt,
695 .get_function_name = sunxi_pmx_get_func_name,
696 .get_function_groups = sunxi_pmx_get_func_groups,
Linus Walleij03e9f0c2014-09-03 13:02:56 +0200697 .set_mux = sunxi_pmx_set_mux,
Maxime Ripard08e9e612013-01-28 21:33:12 +0100698 .gpio_set_direction = sunxi_pmx_gpio_set_direction,
Maxime Ripard0e37f882013-01-18 22:30:34 +0100699};
700
Maxime Ripard08e9e612013-01-28 21:33:12 +0100701static int sunxi_pinctrl_gpio_direction_input(struct gpio_chip *chip,
702 unsigned offset)
703{
704 return pinctrl_gpio_direction_input(chip->base + offset);
705}
706
707static int sunxi_pinctrl_gpio_get(struct gpio_chip *chip, unsigned offset)
708{
Linus Walleij88057d62015-12-08 22:40:43 +0100709 struct sunxi_pinctrl *pctl = gpiochip_get_data(chip);
Maxime Ripard08e9e612013-01-28 21:33:12 +0100710 u32 reg = sunxi_data_reg(offset);
711 u8 index = sunxi_data_offset(offset);
Linus Walleij6cee3822016-02-11 20:16:45 +0100712 bool set_mux = pctl->desc->irq_read_needs_mux &&
713 gpiochip_line_is_irq(chip, offset);
Krzysztof Adamskibe2d1072016-02-09 15:58:49 +0100714 u32 pin = offset + chip->base;
Hans de Goedeef6d24c2015-03-08 22:13:57 +0100715 u32 val;
716
717 if (set_mux)
Krzysztof Adamskibe2d1072016-02-09 15:58:49 +0100718 sunxi_pmx_set(pctl->pctl_dev, pin, SUN4I_FUNC_INPUT);
Hans de Goedeef6d24c2015-03-08 22:13:57 +0100719
720 val = (readl(pctl->membase + reg) >> index) & DATA_PINS_MASK;
721
722 if (set_mux)
Krzysztof Adamskibe2d1072016-02-09 15:58:49 +0100723 sunxi_pmx_set(pctl->pctl_dev, pin, SUN4I_FUNC_IRQ);
Maxime Ripard08e9e612013-01-28 21:33:12 +0100724
Linus Walleij39e24ac2015-12-21 16:40:27 +0100725 return !!val;
Maxime Ripard08e9e612013-01-28 21:33:12 +0100726}
727
Maxime Ripard08e9e612013-01-28 21:33:12 +0100728static void sunxi_pinctrl_gpio_set(struct gpio_chip *chip,
729 unsigned offset, int value)
730{
Linus Walleij88057d62015-12-08 22:40:43 +0100731 struct sunxi_pinctrl *pctl = gpiochip_get_data(chip);
Maxime Ripard08e9e612013-01-28 21:33:12 +0100732 u32 reg = sunxi_data_reg(offset);
733 u8 index = sunxi_data_offset(offset);
Maxime Ripard1bee9632013-08-04 12:38:48 +0200734 unsigned long flags;
735 u32 regval;
Maxime Ripard08e9e612013-01-28 21:33:12 +0100736
Julia Cartwrightf658ed32017-03-09 10:22:06 -0600737 raw_spin_lock_irqsave(&pctl->lock, flags);
Maxime Ripard1bee9632013-08-04 12:38:48 +0200738
739 regval = readl(pctl->membase + reg);
Maxime Ripard08e9e612013-01-28 21:33:12 +0100740
Maxime Riparddf7b34f2013-07-25 12:41:16 +0200741 if (value)
742 regval |= BIT(index);
743 else
744 regval &= ~(BIT(index));
745
746 writel(regval, pctl->membase + reg);
Maxime Ripard1bee9632013-08-04 12:38:48 +0200747
Julia Cartwrightf658ed32017-03-09 10:22:06 -0600748 raw_spin_unlock_irqrestore(&pctl->lock, flags);
Maxime Ripard08e9e612013-01-28 21:33:12 +0100749}
750
Chen-Yu Tsaifa8cf572014-01-16 14:34:23 +0800751static int sunxi_pinctrl_gpio_direction_output(struct gpio_chip *chip,
752 unsigned offset, int value)
753{
754 sunxi_pinctrl_gpio_set(chip, offset, value);
755 return pinctrl_gpio_direction_output(chip->base + offset);
756}
757
Maxime Riparda0d72092013-02-03 12:10:11 +0100758static int sunxi_pinctrl_gpio_of_xlate(struct gpio_chip *gc,
759 const struct of_phandle_args *gpiospec,
760 u32 *flags)
761{
762 int pin, base;
763
764 base = PINS_PER_BANK * gpiospec->args[0];
765 pin = base + gpiospec->args[1];
766
Chen-Yu Tsai343f1322014-07-15 01:24:37 +0800767 if (pin > gc->ngpio)
Maxime Riparda0d72092013-02-03 12:10:11 +0100768 return -EINVAL;
769
770 if (flags)
771 *flags = gpiospec->args[2];
772
773 return pin;
774}
775
Maxime Ripard60242db2013-06-08 12:05:44 +0200776static int sunxi_pinctrl_gpio_to_irq(struct gpio_chip *chip, unsigned offset)
777{
Linus Walleij88057d62015-12-08 22:40:43 +0100778 struct sunxi_pinctrl *pctl = gpiochip_get_data(chip);
Maxime Ripard60242db2013-06-08 12:05:44 +0200779 struct sunxi_desc_function *desc;
Chen-Yu Tsai343f1322014-07-15 01:24:37 +0800780 unsigned pinnum = pctl->desc->pin_base + offset;
Chen-Yu Tsai0d3bafa2014-07-01 00:04:59 +0800781 unsigned irqnum;
Maxime Ripard60242db2013-06-08 12:05:44 +0200782
Axel Linc9e3b2d2013-08-30 16:31:25 +0800783 if (offset >= chip->ngpio)
Maxime Ripard60242db2013-06-08 12:05:44 +0200784 return -ENXIO;
785
Chen-Yu Tsai343f1322014-07-15 01:24:37 +0800786 desc = sunxi_pinctrl_desc_find_function_by_pin(pctl, pinnum, "irq");
Maxime Ripard60242db2013-06-08 12:05:44 +0200787 if (!desc)
788 return -EINVAL;
789
Chen-Yu Tsai0d3bafa2014-07-01 00:04:59 +0800790 irqnum = desc->irqbank * IRQ_PER_BANK + desc->irqnum;
Maxime Ripard60242db2013-06-08 12:05:44 +0200791
Linus Walleij58383c782015-11-04 09:56:26 +0100792 dev_dbg(chip->parent, "%s: request IRQ for GPIO %d, return %d\n",
Chen-Yu Tsai0d3bafa2014-07-01 00:04:59 +0800793 chip->label, offset + chip->base, irqnum);
794
795 return irq_find_mapping(pctl->domain, irqnum);
Maxime Ripard60242db2013-06-08 12:05:44 +0200796}
797
Hans de Goedefea6d8e2014-06-29 16:11:00 +0200798static int sunxi_pinctrl_irq_request_resources(struct irq_data *d)
Maxime Ripard60242db2013-06-08 12:05:44 +0200799{
800 struct sunxi_pinctrl *pctl = irq_data_get_irq_chip_data(d);
Hans de Goedefea6d8e2014-06-29 16:11:00 +0200801 struct sunxi_desc_function *func;
Chen-Yu Tsaif83549d2014-07-15 01:24:36 +0800802 int ret;
Hans de Goedefea6d8e2014-06-29 16:11:00 +0200803
804 func = sunxi_pinctrl_desc_find_function_by_pin(pctl,
805 pctl->irq_array[d->hwirq], "irq");
806 if (!func)
807 return -EINVAL;
808
Alexandre Courbote3a2e872014-10-23 17:27:07 +0900809 ret = gpiochip_lock_as_irq(pctl->chip,
Chen-Yu Tsai343f1322014-07-15 01:24:37 +0800810 pctl->irq_array[d->hwirq] - pctl->desc->pin_base);
Chen-Yu Tsaif83549d2014-07-15 01:24:36 +0800811 if (ret) {
812 dev_err(pctl->dev, "unable to lock HW IRQ %lu for IRQ\n",
813 irqd_to_hwirq(d));
814 return ret;
815 }
816
Hans de Goedefea6d8e2014-06-29 16:11:00 +0200817 /* Change muxing to INT mode */
818 sunxi_pmx_set(pctl->pctl_dev, pctl->irq_array[d->hwirq], func->muxval);
819
820 return 0;
821}
Maxime Ripard08e9e612013-01-28 21:33:12 +0100822
Chen-Yu Tsaif83549d2014-07-15 01:24:36 +0800823static void sunxi_pinctrl_irq_release_resources(struct irq_data *d)
824{
825 struct sunxi_pinctrl *pctl = irq_data_get_irq_chip_data(d);
826
Alexandre Courbote3a2e872014-10-23 17:27:07 +0900827 gpiochip_unlock_as_irq(pctl->chip,
828 pctl->irq_array[d->hwirq] - pctl->desc->pin_base);
Chen-Yu Tsaif83549d2014-07-15 01:24:36 +0800829}
830
Hans de Goedef4c51c12014-06-29 16:11:01 +0200831static int sunxi_pinctrl_irq_set_type(struct irq_data *d, unsigned int type)
Maxime Ripard60242db2013-06-08 12:05:44 +0200832{
833 struct sunxi_pinctrl *pctl = irq_data_get_irq_chip_data(d);
Hans de Goede5e7515b2016-03-12 19:44:57 +0100834 u32 reg = sunxi_irq_cfg_reg(d->hwirq, pctl->desc->irq_bank_base);
Maxime Ripard60242db2013-06-08 12:05:44 +0200835 u8 index = sunxi_irq_cfg_offset(d->hwirq);
Maxime Ripard1bee9632013-08-04 12:38:48 +0200836 unsigned long flags;
Maxime Ripard2aaaddf2013-08-04 12:38:47 +0200837 u32 regval;
Maxime Ripard60242db2013-06-08 12:05:44 +0200838 u8 mode;
839
840 switch (type) {
841 case IRQ_TYPE_EDGE_RISING:
842 mode = IRQ_EDGE_RISING;
843 break;
844 case IRQ_TYPE_EDGE_FALLING:
845 mode = IRQ_EDGE_FALLING;
846 break;
847 case IRQ_TYPE_EDGE_BOTH:
848 mode = IRQ_EDGE_BOTH;
849 break;
850 case IRQ_TYPE_LEVEL_HIGH:
851 mode = IRQ_LEVEL_HIGH;
852 break;
853 case IRQ_TYPE_LEVEL_LOW:
854 mode = IRQ_LEVEL_LOW;
855 break;
856 default:
857 return -EINVAL;
858 }
859
Julia Cartwrightf658ed32017-03-09 10:22:06 -0600860 raw_spin_lock_irqsave(&pctl->lock, flags);
Maxime Ripard1bee9632013-08-04 12:38:48 +0200861
Maxime Riparda0d6de92015-07-20 14:41:11 +0200862 if (type & IRQ_TYPE_LEVEL_MASK)
Thomas Gleixnerb9a5ec332015-09-16 12:32:40 +0200863 irq_set_chip_handler_name_locked(d, &sunxi_pinctrl_level_irq_chip,
864 handle_fasteoi_irq, NULL);
Maxime Riparda0d6de92015-07-20 14:41:11 +0200865 else
Thomas Gleixnerb9a5ec332015-09-16 12:32:40 +0200866 irq_set_chip_handler_name_locked(d, &sunxi_pinctrl_edge_irq_chip,
867 handle_edge_irq, NULL);
Maxime Riparda0d6de92015-07-20 14:41:11 +0200868
Maxime Ripard2aaaddf2013-08-04 12:38:47 +0200869 regval = readl(pctl->membase + reg);
Hans de Goeded82f9402014-02-17 22:19:43 +0100870 regval &= ~(IRQ_CFG_IRQ_MASK << index);
Maxime Ripard2aaaddf2013-08-04 12:38:47 +0200871 writel(regval | (mode << index), pctl->membase + reg);
Maxime Ripard60242db2013-06-08 12:05:44 +0200872
Julia Cartwrightf658ed32017-03-09 10:22:06 -0600873 raw_spin_unlock_irqrestore(&pctl->lock, flags);
Maxime Ripard60242db2013-06-08 12:05:44 +0200874
875 return 0;
876}
877
Maxime Ripard645ec712014-06-05 15:26:00 +0200878static void sunxi_pinctrl_irq_ack(struct irq_data *d)
Maxime Ripard60242db2013-06-08 12:05:44 +0200879{
880 struct sunxi_pinctrl *pctl = irq_data_get_irq_chip_data(d);
Hans de Goede5e7515b2016-03-12 19:44:57 +0100881 u32 status_reg = sunxi_irq_status_reg(d->hwirq,
882 pctl->desc->irq_bank_base);
Maxime Ripard60242db2013-06-08 12:05:44 +0200883 u8 status_idx = sunxi_irq_status_offset(d->hwirq);
Maxime Ripard60242db2013-06-08 12:05:44 +0200884
885 /* Clear the IRQ */
886 writel(1 << status_idx, pctl->membase + status_reg);
887}
888
889static void sunxi_pinctrl_irq_mask(struct irq_data *d)
890{
891 struct sunxi_pinctrl *pctl = irq_data_get_irq_chip_data(d);
Hans de Goede5e7515b2016-03-12 19:44:57 +0100892 u32 reg = sunxi_irq_ctrl_reg(d->hwirq, pctl->desc->irq_bank_base);
Maxime Ripard60242db2013-06-08 12:05:44 +0200893 u8 idx = sunxi_irq_ctrl_offset(d->hwirq);
Maxime Ripard1bee9632013-08-04 12:38:48 +0200894 unsigned long flags;
Maxime Ripard60242db2013-06-08 12:05:44 +0200895 u32 val;
896
Julia Cartwrightf658ed32017-03-09 10:22:06 -0600897 raw_spin_lock_irqsave(&pctl->lock, flags);
Maxime Ripard1bee9632013-08-04 12:38:48 +0200898
Maxime Ripard60242db2013-06-08 12:05:44 +0200899 /* Mask the IRQ */
900 val = readl(pctl->membase + reg);
901 writel(val & ~(1 << idx), pctl->membase + reg);
Maxime Ripard1bee9632013-08-04 12:38:48 +0200902
Julia Cartwrightf658ed32017-03-09 10:22:06 -0600903 raw_spin_unlock_irqrestore(&pctl->lock, flags);
Maxime Ripard60242db2013-06-08 12:05:44 +0200904}
905
906static void sunxi_pinctrl_irq_unmask(struct irq_data *d)
907{
908 struct sunxi_pinctrl *pctl = irq_data_get_irq_chip_data(d);
Hans de Goede5e7515b2016-03-12 19:44:57 +0100909 u32 reg = sunxi_irq_ctrl_reg(d->hwirq, pctl->desc->irq_bank_base);
Maxime Ripard60242db2013-06-08 12:05:44 +0200910 u8 idx = sunxi_irq_ctrl_offset(d->hwirq);
Maxime Ripard1bee9632013-08-04 12:38:48 +0200911 unsigned long flags;
Maxime Ripard60242db2013-06-08 12:05:44 +0200912 u32 val;
913
Julia Cartwrightf658ed32017-03-09 10:22:06 -0600914 raw_spin_lock_irqsave(&pctl->lock, flags);
Maxime Ripard1bee9632013-08-04 12:38:48 +0200915
Maxime Ripard60242db2013-06-08 12:05:44 +0200916 /* Unmask the IRQ */
917 val = readl(pctl->membase + reg);
918 writel(val | (1 << idx), pctl->membase + reg);
Maxime Ripard1bee9632013-08-04 12:38:48 +0200919
Julia Cartwrightf658ed32017-03-09 10:22:06 -0600920 raw_spin_unlock_irqrestore(&pctl->lock, flags);
Maxime Ripard60242db2013-06-08 12:05:44 +0200921}
922
Hans de Goeded61e23e2014-06-29 16:11:02 +0200923static void sunxi_pinctrl_irq_ack_unmask(struct irq_data *d)
924{
925 sunxi_pinctrl_irq_ack(d);
926 sunxi_pinctrl_irq_unmask(d);
927}
928
Hans de Goedef4c51c12014-06-29 16:11:01 +0200929static struct irq_chip sunxi_pinctrl_edge_irq_chip = {
Maxime Ripardfb5b7782015-07-20 14:41:12 +0200930 .name = "sunxi_pio_edge",
Maxime Ripard645ec712014-06-05 15:26:00 +0200931 .irq_ack = sunxi_pinctrl_irq_ack,
Maxime Ripard60242db2013-06-08 12:05:44 +0200932 .irq_mask = sunxi_pinctrl_irq_mask,
Maxime Ripard60242db2013-06-08 12:05:44 +0200933 .irq_unmask = sunxi_pinctrl_irq_unmask,
Hans de Goedefea6d8e2014-06-29 16:11:00 +0200934 .irq_request_resources = sunxi_pinctrl_irq_request_resources,
Chen-Yu Tsaif83549d2014-07-15 01:24:36 +0800935 .irq_release_resources = sunxi_pinctrl_irq_release_resources,
Maxime Ripard60242db2013-06-08 12:05:44 +0200936 .irq_set_type = sunxi_pinctrl_irq_set_type,
Chen-Yu Tsai578c0a82014-06-29 16:10:59 +0200937 .flags = IRQCHIP_SKIP_SET_WAKE,
Maxime Ripard60242db2013-06-08 12:05:44 +0200938};
939
Hans de Goedef4c51c12014-06-29 16:11:01 +0200940static struct irq_chip sunxi_pinctrl_level_irq_chip = {
Maxime Ripardfb5b7782015-07-20 14:41:12 +0200941 .name = "sunxi_pio_level",
Hans de Goedef4c51c12014-06-29 16:11:01 +0200942 .irq_eoi = sunxi_pinctrl_irq_ack,
943 .irq_mask = sunxi_pinctrl_irq_mask,
944 .irq_unmask = sunxi_pinctrl_irq_unmask,
Hans de Goeded61e23e2014-06-29 16:11:02 +0200945 /* Define irq_enable / disable to avoid spurious irqs for drivers
946 * using these to suppress irqs while they clear the irq source */
947 .irq_enable = sunxi_pinctrl_irq_ack_unmask,
948 .irq_disable = sunxi_pinctrl_irq_mask,
Hans de Goedef4c51c12014-06-29 16:11:01 +0200949 .irq_request_resources = sunxi_pinctrl_irq_request_resources,
Chen-Yu Tsaif83549d2014-07-15 01:24:36 +0800950 .irq_release_resources = sunxi_pinctrl_irq_release_resources,
Hans de Goedef4c51c12014-06-29 16:11:01 +0200951 .irq_set_type = sunxi_pinctrl_irq_set_type,
952 .flags = IRQCHIP_SKIP_SET_WAKE | IRQCHIP_EOI_THREADED |
953 IRQCHIP_EOI_IF_HANDLED,
Maxime Ripard60242db2013-06-08 12:05:44 +0200954};
955
Maxime Ripardd8323c62015-07-27 14:41:57 +0200956static int sunxi_pinctrl_irq_of_xlate(struct irq_domain *d,
957 struct device_node *node,
958 const u32 *intspec,
959 unsigned int intsize,
960 unsigned long *out_hwirq,
961 unsigned int *out_type)
962{
Hans de Goede82979922015-10-16 09:46:11 +0200963 struct sunxi_pinctrl *pctl = d->host_data;
Maxime Ripardd8323c62015-07-27 14:41:57 +0200964 struct sunxi_desc_function *desc;
965 int pin, base;
966
967 if (intsize < 3)
968 return -EINVAL;
969
970 base = PINS_PER_BANK * intspec[0];
Hans de Goede82979922015-10-16 09:46:11 +0200971 pin = pctl->desc->pin_base + base + intspec[1];
Maxime Ripardd8323c62015-07-27 14:41:57 +0200972
Hans de Goede82979922015-10-16 09:46:11 +0200973 desc = sunxi_pinctrl_desc_find_function_by_pin(pctl, pin, "irq");
Maxime Ripardd8323c62015-07-27 14:41:57 +0200974 if (!desc)
975 return -EINVAL;
976
977 *out_hwirq = desc->irqbank * PINS_PER_BANK + desc->irqnum;
978 *out_type = intspec[2];
979
980 return 0;
981}
982
Tobias Klauser2421dfd2017-06-02 13:29:58 +0200983static const struct irq_domain_ops sunxi_pinctrl_irq_domain_ops = {
Maxime Ripardd8323c62015-07-27 14:41:57 +0200984 .xlate = sunxi_pinctrl_irq_of_xlate,
985};
986
Thomas Gleixnerbd0b9ac2015-09-14 10:42:37 +0200987static void sunxi_pinctrl_irq_handler(struct irq_desc *desc)
Maxime Ripard60242db2013-06-08 12:05:44 +0200988{
Thomas Gleixnereeef97b2015-07-13 01:55:27 +0200989 unsigned int irq = irq_desc_get_irq(desc);
Jiang Liu5663bb22015-06-04 12:13:16 +0800990 struct irq_chip *chip = irq_desc_get_chip(desc);
991 struct sunxi_pinctrl *pctl = irq_desc_get_handler_data(desc);
Maxime Ripardaebdc8a2014-06-05 15:26:04 +0200992 unsigned long bank, reg, val;
Maxime Ripard60242db2013-06-08 12:05:44 +0200993
Maxime Ripardaebdc8a2014-06-05 15:26:04 +0200994 for (bank = 0; bank < pctl->desc->irq_banks; bank++)
995 if (irq == pctl->irq[bank])
996 break;
Maxime Ripard60242db2013-06-08 12:05:44 +0200997
Maxime Ripardaebdc8a2014-06-05 15:26:04 +0200998 if (bank == pctl->desc->irq_banks)
999 return;
1000
Hans de Goede5e7515b2016-03-12 19:44:57 +01001001 reg = sunxi_irq_status_reg_from_bank(bank, pctl->desc->irq_bank_base);
Maxime Ripardaebdc8a2014-06-05 15:26:04 +02001002 val = readl(pctl->membase + reg);
Maxime Ripard60242db2013-06-08 12:05:44 +02001003
Maxime Ripardaebdc8a2014-06-05 15:26:04 +02001004 if (val) {
Maxime Ripard60242db2013-06-08 12:05:44 +02001005 int irqoffset;
1006
Chen-Yu Tsai905a5112014-02-11 00:22:37 +08001007 chained_irq_enter(chip, desc);
Maxime Ripardaebdc8a2014-06-05 15:26:04 +02001008 for_each_set_bit(irqoffset, &val, IRQ_PER_BANK) {
1009 int pin_irq = irq_find_mapping(pctl->domain,
1010 bank * IRQ_PER_BANK + irqoffset);
Maxime Ripard60242db2013-06-08 12:05:44 +02001011 generic_handle_irq(pin_irq);
1012 }
Chen-Yu Tsai905a5112014-02-11 00:22:37 +08001013 chained_irq_exit(chip, desc);
Maxime Ripard60242db2013-06-08 12:05:44 +02001014 }
1015}
1016
Maxime Ripard0e37f882013-01-18 22:30:34 +01001017static int sunxi_pinctrl_add_function(struct sunxi_pinctrl *pctl,
1018 const char *name)
1019{
1020 struct sunxi_pinctrl_function *func = pctl->functions;
1021
1022 while (func->name) {
1023 /* function already there */
1024 if (strcmp(func->name, name) == 0) {
1025 func->ngroups++;
1026 return -EEXIST;
1027 }
1028 func++;
1029 }
1030
1031 func->name = name;
1032 func->ngroups = 1;
1033
1034 pctl->nfunctions++;
1035
1036 return 0;
1037}
1038
1039static int sunxi_pinctrl_build_state(struct platform_device *pdev)
1040{
1041 struct sunxi_pinctrl *pctl = platform_get_drvdata(pdev);
1042 int i;
1043
Maxime Ripard578db852017-01-08 22:31:15 +01001044 /*
1045 * Allocate groups
1046 *
1047 * We assume that the number of groups is the number of pins
1048 * given in the data array.
Maxime Ripard0e37f882013-01-18 22:30:34 +01001049
Maxime Ripard578db852017-01-08 22:31:15 +01001050 * This will not always be true, since some pins might not be
1051 * available in the current variant, but fortunately for us,
1052 * this means that the number of pins is the maximum group
1053 * number we will ever see.
1054 */
Maxime Ripard0e37f882013-01-18 22:30:34 +01001055 pctl->groups = devm_kzalloc(&pdev->dev,
Maxime Ripard578db852017-01-08 22:31:15 +01001056 pctl->desc->npins * sizeof(*pctl->groups),
Maxime Ripard0e37f882013-01-18 22:30:34 +01001057 GFP_KERNEL);
1058 if (!pctl->groups)
1059 return -ENOMEM;
1060
1061 for (i = 0; i < pctl->desc->npins; i++) {
1062 const struct sunxi_desc_pin *pin = pctl->desc->pins + i;
Maxime Ripard578db852017-01-08 22:31:15 +01001063 struct sunxi_pinctrl_group *group = pctl->groups + pctl->ngroups;
1064
1065 if (pin->variant && !(pctl->variant & pin->variant))
1066 continue;
Maxime Ripard0e37f882013-01-18 22:30:34 +01001067
1068 group->name = pin->pin.name;
1069 group->pin = pin->pin.number;
Maxime Ripard578db852017-01-08 22:31:15 +01001070
1071 /* And now we count the actual number of pins / groups */
1072 pctl->ngroups++;
Maxime Ripard0e37f882013-01-18 22:30:34 +01001073 }
1074
1075 /*
1076 * We suppose that we won't have any more functions than pins,
1077 * we'll reallocate that later anyway
1078 */
1079 pctl->functions = devm_kzalloc(&pdev->dev,
Maxime Ripard578db852017-01-08 22:31:15 +01001080 pctl->ngroups * sizeof(*pctl->functions),
1081 GFP_KERNEL);
Maxime Ripard0e37f882013-01-18 22:30:34 +01001082 if (!pctl->functions)
1083 return -ENOMEM;
1084
1085 /* Count functions and their associated groups */
1086 for (i = 0; i < pctl->desc->npins; i++) {
1087 const struct sunxi_desc_pin *pin = pctl->desc->pins + i;
Maxime Ripard578db852017-01-08 22:31:15 +01001088 struct sunxi_desc_function *func;
Maxime Ripard0e37f882013-01-18 22:30:34 +01001089
Maxime Ripard578db852017-01-08 22:31:15 +01001090 if (pin->variant && !(pctl->variant & pin->variant))
1091 continue;
1092
1093 for (func = pin->functions; func->name; func++) {
1094 if (func->variant && !(pctl->variant & func->variant))
1095 continue;
1096
Chen-Yu Tsaid54e9a22014-05-26 09:47:56 +02001097 /* Create interrupt mapping while we're at it */
Maxime Ripardaebdc8a2014-06-05 15:26:04 +02001098 if (!strcmp(func->name, "irq")) {
1099 int irqnum = func->irqnum + func->irqbank * IRQ_PER_BANK;
1100 pctl->irq_array[irqnum] = pin->pin.number;
1101 }
1102
Maxime Ripard0e37f882013-01-18 22:30:34 +01001103 sunxi_pinctrl_add_function(pctl, func->name);
Maxime Ripard0e37f882013-01-18 22:30:34 +01001104 }
1105 }
1106
Maxime Ripard578db852017-01-08 22:31:15 +01001107 /* And now allocated and fill the array for real */
Maxime Ripard0e37f882013-01-18 22:30:34 +01001108 pctl->functions = krealloc(pctl->functions,
Maxime Ripard578db852017-01-08 22:31:15 +01001109 pctl->nfunctions * sizeof(*pctl->functions),
1110 GFP_KERNEL);
1111 if (!pctl->functions) {
1112 kfree(pctl->functions);
1113 return -ENOMEM;
1114 }
Maxime Ripard0e37f882013-01-18 22:30:34 +01001115
1116 for (i = 0; i < pctl->desc->npins; i++) {
1117 const struct sunxi_desc_pin *pin = pctl->desc->pins + i;
Maxime Ripard578db852017-01-08 22:31:15 +01001118 struct sunxi_desc_function *func;
Maxime Ripard0e37f882013-01-18 22:30:34 +01001119
Maxime Ripard578db852017-01-08 22:31:15 +01001120 if (pin->variant && !(pctl->variant & pin->variant))
1121 continue;
1122
1123 for (func = pin->functions; func->name; func++) {
Maxime Ripard0e37f882013-01-18 22:30:34 +01001124 struct sunxi_pinctrl_function *func_item;
1125 const char **func_grp;
1126
Maxime Ripard578db852017-01-08 22:31:15 +01001127 if (func->variant && !(pctl->variant & func->variant))
1128 continue;
1129
Maxime Ripard0e37f882013-01-18 22:30:34 +01001130 func_item = sunxi_pinctrl_find_function_by_name(pctl,
1131 func->name);
1132 if (!func_item)
1133 return -EINVAL;
1134
1135 if (!func_item->groups) {
1136 func_item->groups =
1137 devm_kzalloc(&pdev->dev,
1138 func_item->ngroups * sizeof(*func_item->groups),
1139 GFP_KERNEL);
1140 if (!func_item->groups)
1141 return -ENOMEM;
1142 }
1143
1144 func_grp = func_item->groups;
1145 while (*func_grp)
1146 func_grp++;
1147
1148 *func_grp = pin->pin.name;
Maxime Ripard0e37f882013-01-18 22:30:34 +01001149 }
1150 }
1151
1152 return 0;
1153}
1154
Maxime Ripard7c926492016-11-14 21:53:03 +01001155static int sunxi_pinctrl_get_debounce_div(struct clk *clk, int freq, int *diff)
1156{
1157 unsigned long clock = clk_get_rate(clk);
Arnd Bergmannd8a22212016-11-16 15:18:18 +01001158 unsigned int best_diff, best_div;
Maxime Ripard7c926492016-11-14 21:53:03 +01001159 int i;
1160
Arnd Bergmannd8a22212016-11-16 15:18:18 +01001161 best_diff = abs(freq - clock);
1162 best_div = 0;
1163
1164 for (i = 1; i < 8; i++) {
Maxime Ripard7c926492016-11-14 21:53:03 +01001165 int cur_diff = abs(freq - (clock >> i));
1166
1167 if (cur_diff < best_diff) {
1168 best_diff = cur_diff;
1169 best_div = i;
1170 }
1171 }
1172
1173 *diff = best_diff;
1174 return best_div;
1175}
1176
1177static int sunxi_pinctrl_setup_debounce(struct sunxi_pinctrl *pctl,
1178 struct device_node *node)
1179{
1180 unsigned int hosc_diff, losc_diff;
1181 unsigned int hosc_div, losc_div;
1182 struct clk *hosc, *losc;
1183 u8 div, src;
1184 int i, ret;
1185
1186 /* Deal with old DTs that didn't have the oscillators */
1187 if (of_count_phandle_with_args(node, "clocks", "#clock-cells") != 3)
1188 return 0;
1189
1190 /* If we don't have any setup, bail out */
1191 if (!of_find_property(node, "input-debounce", NULL))
1192 return 0;
1193
1194 losc = devm_clk_get(pctl->dev, "losc");
1195 if (IS_ERR(losc))
1196 return PTR_ERR(losc);
1197
1198 hosc = devm_clk_get(pctl->dev, "hosc");
1199 if (IS_ERR(hosc))
1200 return PTR_ERR(hosc);
1201
1202 for (i = 0; i < pctl->desc->irq_banks; i++) {
1203 unsigned long debounce_freq;
1204 u32 debounce;
1205
1206 ret = of_property_read_u32_index(node, "input-debounce",
1207 i, &debounce);
1208 if (ret)
1209 return ret;
1210
1211 if (!debounce)
1212 continue;
1213
1214 debounce_freq = DIV_ROUND_CLOSEST(USEC_PER_SEC, debounce);
1215 losc_div = sunxi_pinctrl_get_debounce_div(losc,
1216 debounce_freq,
1217 &losc_diff);
1218
1219 hosc_div = sunxi_pinctrl_get_debounce_div(hosc,
1220 debounce_freq,
1221 &hosc_diff);
1222
1223 if (hosc_diff < losc_diff) {
1224 div = hosc_div;
1225 src = 1;
1226 } else {
1227 div = losc_div;
1228 src = 0;
1229 }
1230
1231 writel(src | div << 4,
1232 pctl->membase +
1233 sunxi_irq_debounce_reg_from_bank(i,
1234 pctl->desc->irq_bank_base));
1235 }
1236
1237 return 0;
1238}
1239
Maxime Ripard578db852017-01-08 22:31:15 +01001240int sunxi_pinctrl_init_with_variant(struct platform_device *pdev,
1241 const struct sunxi_pinctrl_desc *desc,
1242 unsigned long variant)
Maxime Ripard0e37f882013-01-18 22:30:34 +01001243{
1244 struct device_node *node = pdev->dev.of_node;
Maxime Ripardba6764d2014-05-22 16:25:27 +02001245 struct pinctrl_desc *pctrl_desc;
Maxime Ripard0e37f882013-01-18 22:30:34 +01001246 struct pinctrl_pin_desc *pins;
1247 struct sunxi_pinctrl *pctl;
Maxime Ripardaae842a2017-10-09 22:53:37 +02001248 struct pinmux_ops *pmxops;
Maxime Ripard4409caf2014-04-26 21:59:50 +02001249 struct resource *res;
Maxime Ripard578db852017-01-08 22:31:15 +01001250 int i, ret, last_pin, pin_idx;
Emilio López950707c2013-03-22 11:20:40 -03001251 struct clk *clk;
Maxime Ripard0e37f882013-01-18 22:30:34 +01001252
1253 pctl = devm_kzalloc(&pdev->dev, sizeof(*pctl), GFP_KERNEL);
1254 if (!pctl)
1255 return -ENOMEM;
1256 platform_set_drvdata(pdev, pctl);
1257
Julia Cartwrightf658ed32017-03-09 10:22:06 -06001258 raw_spin_lock_init(&pctl->lock);
Maxime Ripard1bee9632013-08-04 12:38:48 +02001259
Maxime Ripard4409caf2014-04-26 21:59:50 +02001260 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1261 pctl->membase = devm_ioremap_resource(&pdev->dev, res);
1262 if (IS_ERR(pctl->membase))
1263 return PTR_ERR(pctl->membase);
Maxime Ripard0e37f882013-01-18 22:30:34 +01001264
Maxime Ripardba6764d2014-05-22 16:25:27 +02001265 pctl->dev = &pdev->dev;
Maxime Ripard2284ba62014-04-18 20:10:41 +02001266 pctl->desc = desc;
Maxime Ripard578db852017-01-08 22:31:15 +01001267 pctl->variant = variant;
Maxime Ripard0e37f882013-01-18 22:30:34 +01001268
Maxime Ripardaebdc8a2014-06-05 15:26:04 +02001269 pctl->irq_array = devm_kcalloc(&pdev->dev,
1270 IRQ_PER_BANK * pctl->desc->irq_banks,
1271 sizeof(*pctl->irq_array),
1272 GFP_KERNEL);
1273 if (!pctl->irq_array)
1274 return -ENOMEM;
1275
Maxime Ripard0e37f882013-01-18 22:30:34 +01001276 ret = sunxi_pinctrl_build_state(pdev);
1277 if (ret) {
1278 dev_err(&pdev->dev, "dt probe failed: %d\n", ret);
1279 return ret;
1280 }
1281
1282 pins = devm_kzalloc(&pdev->dev,
1283 pctl->desc->npins * sizeof(*pins),
1284 GFP_KERNEL);
1285 if (!pins)
1286 return -ENOMEM;
1287
Maxime Ripard578db852017-01-08 22:31:15 +01001288 for (i = 0, pin_idx = 0; i < pctl->desc->npins; i++) {
1289 const struct sunxi_desc_pin *pin = pctl->desc->pins + i;
1290
1291 if (pin->variant && !(pctl->variant & pin->variant))
1292 continue;
1293
1294 pins[pin_idx++] = pin->pin;
1295 }
Maxime Ripard0e37f882013-01-18 22:30:34 +01001296
Maxime Ripardba6764d2014-05-22 16:25:27 +02001297 pctrl_desc = devm_kzalloc(&pdev->dev,
1298 sizeof(*pctrl_desc),
1299 GFP_KERNEL);
1300 if (!pctrl_desc)
1301 return -ENOMEM;
1302
1303 pctrl_desc->name = dev_name(&pdev->dev);
1304 pctrl_desc->owner = THIS_MODULE;
1305 pctrl_desc->pins = pins;
Maxime Ripard578db852017-01-08 22:31:15 +01001306 pctrl_desc->npins = pctl->ngroups;
Maxime Ripardba6764d2014-05-22 16:25:27 +02001307 pctrl_desc->confops = &sunxi_pconf_ops;
1308 pctrl_desc->pctlops = &sunxi_pctrl_ops;
Maxime Ripardaae842a2017-10-09 22:53:37 +02001309
1310 pmxops = devm_kmemdup(&pdev->dev, &sunxi_pmx_ops, sizeof(sunxi_pmx_ops),
1311 GFP_KERNEL);
1312 if (!pmxops)
1313 return -ENOMEM;
1314
1315 if (desc->disable_strict_mode)
1316 pmxops->strict = false;
1317
1318 pctrl_desc->pmxops = pmxops;
Maxime Ripardba6764d2014-05-22 16:25:27 +02001319
Laxman Dewangan45078ea2016-02-24 14:44:07 +05301320 pctl->pctl_dev = devm_pinctrl_register(&pdev->dev, pctrl_desc, pctl);
Masahiro Yamada323de9e2015-06-09 13:01:16 +09001321 if (IS_ERR(pctl->pctl_dev)) {
Maxime Ripard0e37f882013-01-18 22:30:34 +01001322 dev_err(&pdev->dev, "couldn't register pinctrl driver\n");
Masahiro Yamada323de9e2015-06-09 13:01:16 +09001323 return PTR_ERR(pctl->pctl_dev);
Maxime Ripard0e37f882013-01-18 22:30:34 +01001324 }
1325
Maxime Ripard08e9e612013-01-28 21:33:12 +01001326 pctl->chip = devm_kzalloc(&pdev->dev, sizeof(*pctl->chip), GFP_KERNEL);
Laxman Dewangan45078ea2016-02-24 14:44:07 +05301327 if (!pctl->chip)
1328 return -ENOMEM;
Maxime Ripard08e9e612013-01-28 21:33:12 +01001329
1330 last_pin = pctl->desc->pins[pctl->desc->npins - 1].pin.number;
Boris BREZILLONd83c82c2014-04-10 15:52:43 +02001331 pctl->chip->owner = THIS_MODULE;
Jonas Gorski98c85d52015-10-11 17:34:19 +02001332 pctl->chip->request = gpiochip_generic_request,
1333 pctl->chip->free = gpiochip_generic_free,
Boris BREZILLONd83c82c2014-04-10 15:52:43 +02001334 pctl->chip->direction_input = sunxi_pinctrl_gpio_direction_input,
1335 pctl->chip->direction_output = sunxi_pinctrl_gpio_direction_output,
1336 pctl->chip->get = sunxi_pinctrl_gpio_get,
1337 pctl->chip->set = sunxi_pinctrl_gpio_set,
1338 pctl->chip->of_xlate = sunxi_pinctrl_gpio_of_xlate,
1339 pctl->chip->to_irq = sunxi_pinctrl_gpio_to_irq,
1340 pctl->chip->of_gpio_n_cells = 3,
1341 pctl->chip->can_sleep = false,
1342 pctl->chip->ngpio = round_up(last_pin, PINS_PER_BANK) -
1343 pctl->desc->pin_base;
Maxime Ripard08e9e612013-01-28 21:33:12 +01001344 pctl->chip->label = dev_name(&pdev->dev);
Linus Walleij58383c782015-11-04 09:56:26 +01001345 pctl->chip->parent = &pdev->dev;
Boris BREZILLONd83c82c2014-04-10 15:52:43 +02001346 pctl->chip->base = pctl->desc->pin_base;
Maxime Ripard08e9e612013-01-28 21:33:12 +01001347
Linus Walleij88057d62015-12-08 22:40:43 +01001348 ret = gpiochip_add_data(pctl->chip, pctl);
Maxime Ripard08e9e612013-01-28 21:33:12 +01001349 if (ret)
Laxman Dewangan45078ea2016-02-24 14:44:07 +05301350 return ret;
Maxime Ripard08e9e612013-01-28 21:33:12 +01001351
1352 for (i = 0; i < pctl->desc->npins; i++) {
1353 const struct sunxi_desc_pin *pin = pctl->desc->pins + i;
1354
1355 ret = gpiochip_add_pin_range(pctl->chip, dev_name(&pdev->dev),
Chen-Yu Tsai343f1322014-07-15 01:24:37 +08001356 pin->pin.number - pctl->desc->pin_base,
Maxime Ripard08e9e612013-01-28 21:33:12 +01001357 pin->pin.number, 1);
1358 if (ret)
1359 goto gpiochip_error;
1360 }
1361
Emilio López950707c2013-03-22 11:20:40 -03001362 clk = devm_clk_get(&pdev->dev, NULL);
Wei Yongjund72f88a2013-05-23 17:32:14 +08001363 if (IS_ERR(clk)) {
1364 ret = PTR_ERR(clk);
Emilio López950707c2013-03-22 11:20:40 -03001365 goto gpiochip_error;
Wei Yongjund72f88a2013-05-23 17:32:14 +08001366 }
Emilio López950707c2013-03-22 11:20:40 -03001367
Boris BREZILLON64150932014-04-10 15:52:40 +02001368 ret = clk_prepare_enable(clk);
1369 if (ret)
1370 goto gpiochip_error;
Emilio López950707c2013-03-22 11:20:40 -03001371
Maxime Ripardaebdc8a2014-06-05 15:26:04 +02001372 pctl->irq = devm_kcalloc(&pdev->dev,
1373 pctl->desc->irq_banks,
1374 sizeof(*pctl->irq),
1375 GFP_KERNEL);
Maxime Ripard60242db2013-06-08 12:05:44 +02001376 if (!pctl->irq) {
Maxime Ripardaebdc8a2014-06-05 15:26:04 +02001377 ret = -ENOMEM;
Maxime Riparddc969102014-04-26 22:28:54 +02001378 goto clk_error;
Maxime Ripard60242db2013-06-08 12:05:44 +02001379 }
1380
Maxime Ripardaebdc8a2014-06-05 15:26:04 +02001381 for (i = 0; i < pctl->desc->irq_banks; i++) {
1382 pctl->irq[i] = platform_get_irq(pdev, i);
1383 if (pctl->irq[i] < 0) {
1384 ret = pctl->irq[i];
1385 goto clk_error;
1386 }
1387 }
1388
1389 pctl->domain = irq_domain_add_linear(node,
1390 pctl->desc->irq_banks * IRQ_PER_BANK,
Maxime Ripardd8323c62015-07-27 14:41:57 +02001391 &sunxi_pinctrl_irq_domain_ops,
1392 pctl);
Maxime Ripard60242db2013-06-08 12:05:44 +02001393 if (!pctl->domain) {
1394 dev_err(&pdev->dev, "Couldn't register IRQ domain\n");
1395 ret = -ENOMEM;
Maxime Riparddc969102014-04-26 22:28:54 +02001396 goto clk_error;
Maxime Ripard60242db2013-06-08 12:05:44 +02001397 }
1398
Maxime Ripardaebdc8a2014-06-05 15:26:04 +02001399 for (i = 0; i < (pctl->desc->irq_banks * IRQ_PER_BANK); i++) {
Maxime Ripard60242db2013-06-08 12:05:44 +02001400 int irqno = irq_create_mapping(pctl->domain, i);
1401
Hans de Goedef4c51c12014-06-29 16:11:01 +02001402 irq_set_chip_and_handler(irqno, &sunxi_pinctrl_edge_irq_chip,
1403 handle_edge_irq);
Maxime Ripard60242db2013-06-08 12:05:44 +02001404 irq_set_chip_data(irqno, pctl);
Javier Martinez Canillas5c99c0f2015-09-16 10:28:29 +02001405 }
Maxime Ripard60242db2013-06-08 12:05:44 +02001406
Maxime Ripardaebdc8a2014-06-05 15:26:04 +02001407 for (i = 0; i < pctl->desc->irq_banks; i++) {
Hans de Goedef4c51c12014-06-29 16:11:01 +02001408 /* Mask and clear all IRQs before registering a handler */
Hans de Goede5e7515b2016-03-12 19:44:57 +01001409 writel(0, pctl->membase + sunxi_irq_ctrl_reg_from_bank(i,
1410 pctl->desc->irq_bank_base));
Hans de Goedef4c51c12014-06-29 16:11:01 +02001411 writel(0xffffffff,
Hans de Goede5e7515b2016-03-12 19:44:57 +01001412 pctl->membase + sunxi_irq_status_reg_from_bank(i,
1413 pctl->desc->irq_bank_base));
Hans de Goedef4c51c12014-06-29 16:11:01 +02001414
Thomas Gleixneref80e872015-06-21 20:16:18 +02001415 irq_set_chained_handler_and_data(pctl->irq[i],
1416 sunxi_pinctrl_irq_handler,
1417 pctl);
Maxime Ripardaebdc8a2014-06-05 15:26:04 +02001418 }
Maxime Ripard60242db2013-06-08 12:05:44 +02001419
Maxime Ripard7c926492016-11-14 21:53:03 +01001420 sunxi_pinctrl_setup_debounce(pctl, node);
1421
Maxime Ripard08e9e612013-01-28 21:33:12 +01001422 dev_info(&pdev->dev, "initialized sunXi PIO driver\n");
Maxime Ripard0e37f882013-01-18 22:30:34 +01001423
1424 return 0;
Maxime Ripard08e9e612013-01-28 21:33:12 +01001425
Boris BREZILLONe2bddc62014-04-10 15:52:41 +02001426clk_error:
1427 clk_disable_unprepare(clk);
Maxime Ripard08e9e612013-01-28 21:33:12 +01001428gpiochip_error:
abdoulaye bertheb4e7c552014-07-12 22:30:13 +02001429 gpiochip_remove(pctl->chip);
Maxime Ripard08e9e612013-01-28 21:33:12 +01001430 return ret;
Maxime Ripard0e37f882013-01-18 22:30:34 +01001431}