blob: 4d9bf9b3e9f3e45d8e7d1eeeeedf4cb88181b46f [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>
Geert Uytterhoeven10e3a882018-04-18 16:50:05 +020020#include <linux/of_clk.h>
Maxime Ripard0e37f882013-01-18 22:30:34 +010021#include <linux/of_address.h>
22#include <linux/of_device.h>
Maxime Ripard60242db2013-06-08 12:05:44 +020023#include <linux/of_irq.h>
Maxime Ripard0e37f882013-01-18 22:30:34 +010024#include <linux/pinctrl/consumer.h>
25#include <linux/pinctrl/machine.h>
26#include <linux/pinctrl/pinctrl.h>
27#include <linux/pinctrl/pinconf-generic.h>
28#include <linux/pinctrl/pinmux.h>
29#include <linux/platform_device.h>
30#include <linux/slab.h>
31
Maxime Ripard42676fa2016-10-11 17:46:00 +020032#include <dt-bindings/pinctrl/sun4i-a10.h>
33
Maxime Ripard5f910772014-04-18 18:53:02 +020034#include "../core.h"
Maxime Ripard0e37f882013-01-18 22:30:34 +010035#include "pinctrl-sunxi.h"
Maxime Ripardeaa3d842013-01-18 22:30:35 +010036
Hans de Goedef4c51c12014-06-29 16:11:01 +020037static struct irq_chip sunxi_pinctrl_edge_irq_chip;
38static struct irq_chip sunxi_pinctrl_level_irq_chip;
39
Maxime Ripard0e37f882013-01-18 22:30:34 +010040static struct sunxi_pinctrl_group *
41sunxi_pinctrl_find_group_by_name(struct sunxi_pinctrl *pctl, const char *group)
42{
43 int i;
44
45 for (i = 0; i < pctl->ngroups; i++) {
46 struct sunxi_pinctrl_group *grp = pctl->groups + i;
47
48 if (!strcmp(grp->name, group))
49 return grp;
50 }
51
52 return NULL;
53}
54
55static struct sunxi_pinctrl_function *
56sunxi_pinctrl_find_function_by_name(struct sunxi_pinctrl *pctl,
57 const char *name)
58{
59 struct sunxi_pinctrl_function *func = pctl->functions;
60 int i;
61
62 for (i = 0; i < pctl->nfunctions; i++) {
63 if (!func[i].name)
64 break;
65
66 if (!strcmp(func[i].name, name))
67 return func + i;
68 }
69
70 return NULL;
71}
72
73static struct sunxi_desc_function *
74sunxi_pinctrl_desc_find_function_by_name(struct sunxi_pinctrl *pctl,
75 const char *pin_name,
76 const char *func_name)
77{
78 int i;
79
80 for (i = 0; i < pctl->desc->npins; i++) {
81 const struct sunxi_desc_pin *pin = pctl->desc->pins + i;
82
83 if (!strcmp(pin->pin.name, pin_name)) {
84 struct sunxi_desc_function *func = pin->functions;
85
86 while (func->name) {
hao_zhang32e21f02018-01-09 13:59:02 +080087 if (!strcmp(func->name, func_name) &&
88 (!func->variant ||
89 func->variant & pctl->variant))
Maxime Ripard0e37f882013-01-18 22:30:34 +010090 return func;
91
92 func++;
93 }
94 }
95 }
96
97 return NULL;
98}
99
Maxime Ripard814d4f22013-06-08 12:05:43 +0200100static struct sunxi_desc_function *
101sunxi_pinctrl_desc_find_function_by_pin(struct sunxi_pinctrl *pctl,
102 const u16 pin_num,
103 const char *func_name)
104{
105 int i;
106
107 for (i = 0; i < pctl->desc->npins; i++) {
108 const struct sunxi_desc_pin *pin = pctl->desc->pins + i;
109
110 if (pin->pin.number == pin_num) {
111 struct sunxi_desc_function *func = pin->functions;
112
113 while (func->name) {
114 if (!strcmp(func->name, func_name))
115 return func;
116
117 func++;
118 }
119 }
120 }
121
122 return NULL;
123}
124
Maxime Ripard0e37f882013-01-18 22:30:34 +0100125static int sunxi_pctrl_get_groups_count(struct pinctrl_dev *pctldev)
126{
127 struct sunxi_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
128
129 return pctl->ngroups;
130}
131
132static const char *sunxi_pctrl_get_group_name(struct pinctrl_dev *pctldev,
133 unsigned group)
134{
135 struct sunxi_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
136
137 return pctl->groups[group].name;
138}
139
140static int sunxi_pctrl_get_group_pins(struct pinctrl_dev *pctldev,
141 unsigned group,
142 const unsigned **pins,
143 unsigned *num_pins)
144{
145 struct sunxi_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
146
147 *pins = (unsigned *)&pctl->groups[group].pin;
148 *num_pins = 1;
149
150 return 0;
151}
152
Maxime Ripardf233dbc2016-10-11 17:45:59 +0200153static bool sunxi_pctrl_has_bias_prop(struct device_node *node)
154{
Maxime Ripardcefbf1a2016-10-20 15:49:03 +0200155 return of_find_property(node, "bias-pull-up", NULL) ||
156 of_find_property(node, "bias-pull-down", NULL) ||
157 of_find_property(node, "bias-disable", NULL) ||
158 of_find_property(node, "allwinner,pull", NULL);
Maxime Ripardf233dbc2016-10-11 17:45:59 +0200159}
160
161static bool sunxi_pctrl_has_drive_prop(struct device_node *node)
162{
Maxime Ripardcefbf1a2016-10-20 15:49:03 +0200163 return of_find_property(node, "drive-strength", NULL) ||
164 of_find_property(node, "allwinner,drive", NULL);
Maxime Ripardf233dbc2016-10-11 17:45:59 +0200165}
166
167static int sunxi_pctrl_parse_bias_prop(struct device_node *node)
168{
169 u32 val;
170
Maxime Ripardcefbf1a2016-10-20 15:49:03 +0200171 /* Try the new style binding */
172 if (of_find_property(node, "bias-pull-up", NULL))
173 return PIN_CONFIG_BIAS_PULL_UP;
174
175 if (of_find_property(node, "bias-pull-down", NULL))
176 return PIN_CONFIG_BIAS_PULL_DOWN;
177
178 if (of_find_property(node, "bias-disable", NULL))
179 return PIN_CONFIG_BIAS_DISABLE;
180
181 /* And fall back to the old binding */
Maxime Ripardf233dbc2016-10-11 17:45:59 +0200182 if (of_property_read_u32(node, "allwinner,pull", &val))
183 return -EINVAL;
184
185 switch (val) {
Maxime Ripard07fe64b2016-10-11 17:46:01 +0200186 case SUN4I_PINCTRL_NO_PULL:
187 return PIN_CONFIG_BIAS_DISABLE;
Maxime Ripard42676fa2016-10-11 17:46:00 +0200188 case SUN4I_PINCTRL_PULL_UP:
Maxime Ripardf233dbc2016-10-11 17:45:59 +0200189 return PIN_CONFIG_BIAS_PULL_UP;
Maxime Ripard42676fa2016-10-11 17:46:00 +0200190 case SUN4I_PINCTRL_PULL_DOWN:
Maxime Ripardf233dbc2016-10-11 17:45:59 +0200191 return PIN_CONFIG_BIAS_PULL_DOWN;
192 }
193
194 return -EINVAL;
195}
196
197static int sunxi_pctrl_parse_drive_prop(struct device_node *node)
198{
199 u32 val;
200
Maxime Ripardcefbf1a2016-10-20 15:49:03 +0200201 /* Try the new style binding */
202 if (!of_property_read_u32(node, "drive-strength", &val)) {
203 /* We can't go below 10mA ... */
204 if (val < 10)
205 return -EINVAL;
206
207 /* ... and only up to 40 mA ... */
208 if (val > 40)
209 val = 40;
210
211 /* by steps of 10 mA */
212 return rounddown(val, 10);
213 }
214
215 /* And then fall back to the old binding */
Maxime Ripardf233dbc2016-10-11 17:45:59 +0200216 if (of_property_read_u32(node, "allwinner,drive", &val))
217 return -EINVAL;
218
219 return (val + 1) * 10;
220}
221
222static const char *sunxi_pctrl_parse_function_prop(struct device_node *node)
223{
224 const char *function;
225 int ret;
226
Maxime Ripardcefbf1a2016-10-20 15:49:03 +0200227 /* Try the generic binding */
228 ret = of_property_read_string(node, "function", &function);
229 if (!ret)
230 return function;
231
232 /* And fall back to our legacy one */
Maxime Ripardf233dbc2016-10-11 17:45:59 +0200233 ret = of_property_read_string(node, "allwinner,function", &function);
234 if (!ret)
235 return function;
236
237 return NULL;
238}
239
240static const char *sunxi_pctrl_find_pins_prop(struct device_node *node,
241 int *npins)
242{
243 int count;
244
Maxime Ripardcefbf1a2016-10-20 15:49:03 +0200245 /* Try the generic binding */
246 count = of_property_count_strings(node, "pins");
247 if (count > 0) {
248 *npins = count;
249 return "pins";
250 }
251
252 /* And fall back to our legacy one */
Maxime Ripardf233dbc2016-10-11 17:45:59 +0200253 count = of_property_count_strings(node, "allwinner,pins");
254 if (count > 0) {
255 *npins = count;
256 return "allwinner,pins";
257 }
258
259 return NULL;
260}
261
262static unsigned long *sunxi_pctrl_build_pin_config(struct device_node *node,
263 unsigned int *len)
264{
265 unsigned long *pinconfig;
266 unsigned int configlen = 0, idx = 0;
Maxime Riparde11dee22016-10-20 15:49:02 +0200267 int ret;
Maxime Ripardf233dbc2016-10-11 17:45:59 +0200268
269 if (sunxi_pctrl_has_drive_prop(node))
270 configlen++;
271 if (sunxi_pctrl_has_bias_prop(node))
272 configlen++;
273
Maxime Riparde11dee22016-10-20 15:49:02 +0200274 /*
275 * If we don't have any configuration, bail out
276 */
277 if (!configlen)
278 return NULL;
279
Kees Cook6396bb22018-06-12 14:03:40 -0700280 pinconfig = kcalloc(configlen, sizeof(*pinconfig), GFP_KERNEL);
Maxime Ripardf233dbc2016-10-11 17:45:59 +0200281 if (!pinconfig)
Maxime Riparde11dee22016-10-20 15:49:02 +0200282 return ERR_PTR(-ENOMEM);
Maxime Ripardf233dbc2016-10-11 17:45:59 +0200283
284 if (sunxi_pctrl_has_drive_prop(node)) {
285 int drive = sunxi_pctrl_parse_drive_prop(node);
Maxime Riparde11dee22016-10-20 15:49:02 +0200286 if (drive < 0) {
287 ret = drive;
Maxime Ripardf233dbc2016-10-11 17:45:59 +0200288 goto err_free;
Maxime Riparde11dee22016-10-20 15:49:02 +0200289 }
Maxime Ripardf233dbc2016-10-11 17:45:59 +0200290
291 pinconfig[idx++] = pinconf_to_config_packed(PIN_CONFIG_DRIVE_STRENGTH,
292 drive);
293 }
294
295 if (sunxi_pctrl_has_bias_prop(node)) {
296 int pull = sunxi_pctrl_parse_bias_prop(node);
Chen-Yu Tsai223dba02016-11-11 17:50:34 +0800297 int arg = 0;
Maxime Riparde11dee22016-10-20 15:49:02 +0200298 if (pull < 0) {
299 ret = pull;
Maxime Ripardf233dbc2016-10-11 17:45:59 +0200300 goto err_free;
Maxime Riparde11dee22016-10-20 15:49:02 +0200301 }
Maxime Ripardf233dbc2016-10-11 17:45:59 +0200302
Chen-Yu Tsai223dba02016-11-11 17:50:34 +0800303 if (pull != PIN_CONFIG_BIAS_DISABLE)
304 arg = 1; /* hardware uses weak pull resistors */
305
306 pinconfig[idx++] = pinconf_to_config_packed(pull, arg);
Maxime Ripardf233dbc2016-10-11 17:45:59 +0200307 }
308
309
310 *len = configlen;
311 return pinconfig;
312
313err_free:
314 kfree(pinconfig);
Maxime Riparde11dee22016-10-20 15:49:02 +0200315 return ERR_PTR(ret);
Maxime Ripardf233dbc2016-10-11 17:45:59 +0200316}
317
Maxime Ripard0e37f882013-01-18 22:30:34 +0100318static int sunxi_pctrl_dt_node_to_map(struct pinctrl_dev *pctldev,
319 struct device_node *node,
320 struct pinctrl_map **map,
321 unsigned *num_maps)
322{
323 struct sunxi_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
324 unsigned long *pinconfig;
325 struct property *prop;
Maxime Ripardf233dbc2016-10-11 17:45:59 +0200326 const char *function, *pin_prop;
Maxime Ripard0e37f882013-01-18 22:30:34 +0100327 const char *group;
Maxime Ripardf233dbc2016-10-11 17:45:59 +0200328 int ret, npins, nmaps, configlen = 0, i = 0;
Maxime Ripard0e37f882013-01-18 22:30:34 +0100329
330 *map = NULL;
331 *num_maps = 0;
332
Maxime Ripardf233dbc2016-10-11 17:45:59 +0200333 function = sunxi_pctrl_parse_function_prop(node);
334 if (!function) {
335 dev_err(pctl->dev, "missing function property in node %s\n",
Maxime Ripard0e37f882013-01-18 22:30:34 +0100336 node->name);
337 return -EINVAL;
338 }
339
Maxime Ripardf233dbc2016-10-11 17:45:59 +0200340 pin_prop = sunxi_pctrl_find_pins_prop(node, &npins);
341 if (!pin_prop) {
342 dev_err(pctl->dev, "missing pins property in node %s\n",
Maxime Ripard0e37f882013-01-18 22:30:34 +0100343 node->name);
344 return -EINVAL;
345 }
346
Maxime Ripardf233dbc2016-10-11 17:45:59 +0200347 /*
348 * We have two maps for each pin: one for the function, one
Maxime Riparde11dee22016-10-20 15:49:02 +0200349 * for the configuration (bias, strength, etc).
350 *
351 * We might be slightly overshooting, since we might not have
352 * any configuration.
Maxime Ripardf233dbc2016-10-11 17:45:59 +0200353 */
354 nmaps = npins * 2;
Kees Cook6da2ec52018-06-12 13:55:00 -0700355 *map = kmalloc_array(nmaps, sizeof(struct pinctrl_map), GFP_KERNEL);
Sachin Kamat3efa9212013-07-29 13:49:32 +0530356 if (!*map)
Maxime Ripard0e37f882013-01-18 22:30:34 +0100357 return -ENOMEM;
358
Maxime Ripardf233dbc2016-10-11 17:45:59 +0200359 pinconfig = sunxi_pctrl_build_pin_config(node, &configlen);
Maxime Riparde11dee22016-10-20 15:49:02 +0200360 if (IS_ERR(pinconfig)) {
361 ret = PTR_ERR(pinconfig);
Maxime Ripardf233dbc2016-10-11 17:45:59 +0200362 goto err_free_map;
363 }
364
365 of_property_for_each_string(node, pin_prop, prop, group) {
Maxime Ripard0e37f882013-01-18 22:30:34 +0100366 struct sunxi_pinctrl_group *grp =
367 sunxi_pinctrl_find_group_by_name(pctl, group);
Maxime Ripard0e37f882013-01-18 22:30:34 +0100368
369 if (!grp) {
370 dev_err(pctl->dev, "unknown pin %s", group);
371 continue;
372 }
373
374 if (!sunxi_pinctrl_desc_find_function_by_name(pctl,
375 grp->name,
376 function)) {
377 dev_err(pctl->dev, "unsupported function %s on pin %s",
378 function, group);
379 continue;
380 }
381
382 (*map)[i].type = PIN_MAP_TYPE_MUX_GROUP;
383 (*map)[i].data.mux.group = group;
384 (*map)[i].data.mux.function = function;
385
386 i++;
387
Maxime Riparde11dee22016-10-20 15:49:02 +0200388 if (pinconfig) {
389 (*map)[i].type = PIN_MAP_TYPE_CONFIGS_GROUP;
390 (*map)[i].data.configs.group_or_pin = group;
391 (*map)[i].data.configs.configs = pinconfig;
392 (*map)[i].data.configs.num_configs = configlen;
393 i++;
394 }
Maxime Ripard0e37f882013-01-18 22:30:34 +0100395 }
396
Maxime Riparde11dee22016-10-20 15:49:02 +0200397 *num_maps = i;
398
399 /*
400 * We know have the number of maps we need, we can resize our
401 * map array
402 */
403 *map = krealloc(*map, i * sizeof(struct pinctrl_map), GFP_KERNEL);
Dan Carpenterb3cde192016-11-18 14:35:57 +0300404 if (!*map)
Maxime Riparde11dee22016-10-20 15:49:02 +0200405 return -ENOMEM;
Maxime Ripard0e37f882013-01-18 22:30:34 +0100406
407 return 0;
Maxime Ripardf233dbc2016-10-11 17:45:59 +0200408
409err_free_map:
Dan Carpenterb3cde192016-11-18 14:35:57 +0300410 kfree(*map);
411 *map = NULL;
Maxime Ripardf233dbc2016-10-11 17:45:59 +0200412 return ret;
Maxime Ripard0e37f882013-01-18 22:30:34 +0100413}
414
415static void sunxi_pctrl_dt_free_map(struct pinctrl_dev *pctldev,
416 struct pinctrl_map *map,
417 unsigned num_maps)
418{
Chen-Yu Tsai88f01a12016-11-11 10:35:10 +0800419 int i;
420
421 /* pin config is never in the first map */
422 for (i = 1; i < num_maps; i++) {
423 if (map[i].type != PIN_MAP_TYPE_CONFIGS_GROUP)
424 continue;
425
426 /*
427 * All the maps share the same pin config,
428 * free only the first one we find.
429 */
430 kfree(map[i].data.configs.configs);
431 break;
432 }
433
Maxime Ripard0e37f882013-01-18 22:30:34 +0100434 kfree(map);
435}
436
Laurent Pinchart022ab142013-02-16 10:25:07 +0100437static const struct pinctrl_ops sunxi_pctrl_ops = {
Maxime Ripard0e37f882013-01-18 22:30:34 +0100438 .dt_node_to_map = sunxi_pctrl_dt_node_to_map,
439 .dt_free_map = sunxi_pctrl_dt_free_map,
440 .get_groups_count = sunxi_pctrl_get_groups_count,
441 .get_group_name = sunxi_pctrl_get_group_name,
442 .get_group_pins = sunxi_pctrl_get_group_pins,
443};
444
Chen-Yu Tsaic5fda172016-11-11 17:50:35 +0800445static int sunxi_pconf_reg(unsigned pin, enum pin_config_param param,
446 u32 *offset, u32 *shift, u32 *mask)
447{
448 switch (param) {
449 case PIN_CONFIG_DRIVE_STRENGTH:
450 *offset = sunxi_dlevel_reg(pin);
451 *shift = sunxi_dlevel_offset(pin);
452 *mask = DLEVEL_PINS_MASK;
453 break;
454
455 case PIN_CONFIG_BIAS_PULL_UP:
456 case PIN_CONFIG_BIAS_PULL_DOWN:
457 case PIN_CONFIG_BIAS_DISABLE:
458 *offset = sunxi_pull_reg(pin);
459 *shift = sunxi_pull_offset(pin);
460 *mask = PULL_PINS_MASK;
461 break;
462
463 default:
464 return -ENOTSUPP;
465 }
466
467 return 0;
468}
469
470static int sunxi_pconf_get(struct pinctrl_dev *pctldev, unsigned pin,
471 unsigned long *config)
472{
473 struct sunxi_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
474 enum pin_config_param param = pinconf_to_config_param(*config);
475 u32 offset, shift, mask, val;
476 u16 arg;
477 int ret;
478
479 pin -= pctl->desc->pin_base;
480
481 ret = sunxi_pconf_reg(pin, param, &offset, &shift, &mask);
482 if (ret < 0)
483 return ret;
484
485 val = (readl(pctl->membase + offset) >> shift) & mask;
486
487 switch (pinconf_to_config_param(*config)) {
488 case PIN_CONFIG_DRIVE_STRENGTH:
489 arg = (val + 1) * 10;
490 break;
491
492 case PIN_CONFIG_BIAS_PULL_UP:
493 if (val != SUN4I_PINCTRL_PULL_UP)
494 return -EINVAL;
495 arg = 1; /* hardware is weak pull-up */
496 break;
497
498 case PIN_CONFIG_BIAS_PULL_DOWN:
499 if (val != SUN4I_PINCTRL_PULL_DOWN)
500 return -EINVAL;
501 arg = 1; /* hardware is weak pull-down */
502 break;
503
504 case PIN_CONFIG_BIAS_DISABLE:
505 if (val != SUN4I_PINCTRL_NO_PULL)
506 return -EINVAL;
507 arg = 0;
508 break;
509
510 default:
511 /* sunxi_pconf_reg should catch anything unsupported */
512 WARN_ON(1);
513 return -ENOTSUPP;
514 }
515
516 *config = pinconf_to_config_packed(param, arg);
517
518 return 0;
519}
520
Maxime Ripard0e37f882013-01-18 22:30:34 +0100521static int sunxi_pconf_group_get(struct pinctrl_dev *pctldev,
522 unsigned group,
523 unsigned long *config)
524{
525 struct sunxi_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
Chen-Yu Tsaic5fda172016-11-11 17:50:35 +0800526 struct sunxi_pinctrl_group *g = &pctl->groups[group];
Maxime Ripard0e37f882013-01-18 22:30:34 +0100527
Chen-Yu Tsaic5fda172016-11-11 17:50:35 +0800528 /* We only support 1 pin per group. Chain it to the pin callback */
529 return sunxi_pconf_get(pctldev, g->pin, config);
Maxime Ripard0e37f882013-01-18 22:30:34 +0100530}
531
532static int sunxi_pconf_group_set(struct pinctrl_dev *pctldev,
533 unsigned group,
Sherman Yin03b054e2013-08-27 11:32:12 -0700534 unsigned long *configs,
535 unsigned num_configs)
Maxime Ripard0e37f882013-01-18 22:30:34 +0100536{
537 struct sunxi_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
538 struct sunxi_pinctrl_group *g = &pctl->groups[group];
Chen-Yu Tsaib4575c62014-05-22 23:20:55 +0800539 unsigned pin = g->pin - pctl->desc->pin_base;
Sherman Yin03b054e2013-08-27 11:32:12 -0700540 int i;
Maxime Ripard0e37f882013-01-18 22:30:34 +0100541
Sherman Yin03b054e2013-08-27 11:32:12 -0700542 for (i = 0; i < num_configs; i++) {
Chen-Yu Tsai51814822016-11-11 17:50:36 +0800543 enum pin_config_param param;
544 unsigned long flags;
545 u32 offset, shift, mask, reg;
Mika Westerberg58957d22017-01-23 15:34:32 +0300546 u32 arg, val;
Chen-Yu Tsai51814822016-11-11 17:50:36 +0800547 int ret;
548
549 param = pinconf_to_config_param(configs[i]);
550 arg = pinconf_to_config_argument(configs[i]);
551
552 ret = sunxi_pconf_reg(pin, param, &offset, &shift, &mask);
553 if (ret < 0)
554 return ret;
555
556 switch (param) {
Sherman Yin03b054e2013-08-27 11:32:12 -0700557 case PIN_CONFIG_DRIVE_STRENGTH:
Chen-Yu Tsai51814822016-11-11 17:50:36 +0800558 if (arg < 10 || arg > 40)
Sherman Yin03b054e2013-08-27 11:32:12 -0700559 return -EINVAL;
560 /*
561 * We convert from mA to what the register expects:
562 * 0: 10mA
563 * 1: 20mA
564 * 2: 30mA
565 * 3: 40mA
566 */
Chen-Yu Tsai51814822016-11-11 17:50:36 +0800567 val = arg / 10 - 1;
Sherman Yin03b054e2013-08-27 11:32:12 -0700568 break;
Maxime Ripard07fe64b2016-10-11 17:46:01 +0200569 case PIN_CONFIG_BIAS_DISABLE:
Priit Laesac059e22017-08-27 15:55:23 +0300570 val = 0;
571 break;
Sherman Yin03b054e2013-08-27 11:32:12 -0700572 case PIN_CONFIG_BIAS_PULL_UP:
Chen-Yu Tsai51814822016-11-11 17:50:36 +0800573 if (arg == 0)
574 return -EINVAL;
575 val = 1;
Sherman Yin03b054e2013-08-27 11:32:12 -0700576 break;
577 case PIN_CONFIG_BIAS_PULL_DOWN:
Chen-Yu Tsai51814822016-11-11 17:50:36 +0800578 if (arg == 0)
579 return -EINVAL;
580 val = 2;
Sherman Yin03b054e2013-08-27 11:32:12 -0700581 break;
582 default:
Chen-Yu Tsai51814822016-11-11 17:50:36 +0800583 /* sunxi_pconf_reg should catch anything unsupported */
584 WARN_ON(1);
585 return -ENOTSUPP;
Sherman Yin03b054e2013-08-27 11:32:12 -0700586 }
Maxime Ripard0e37f882013-01-18 22:30:34 +0100587
Julia Cartwrightf658ed32017-03-09 10:22:06 -0600588 raw_spin_lock_irqsave(&pctl->lock, flags);
Chen-Yu Tsai51814822016-11-11 17:50:36 +0800589 reg = readl(pctl->membase + offset);
590 reg &= ~(mask << shift);
591 writel(reg | val << shift, pctl->membase + offset);
Julia Cartwrightf658ed32017-03-09 10:22:06 -0600592 raw_spin_unlock_irqrestore(&pctl->lock, flags);
Chen-Yu Tsai51814822016-11-11 17:50:36 +0800593 } /* for each config */
Maxime Ripard0e37f882013-01-18 22:30:34 +0100594
595 return 0;
596}
597
Laurent Pinchart022ab142013-02-16 10:25:07 +0100598static const struct pinconf_ops sunxi_pconf_ops = {
Chen-Yu Tsaic5fda172016-11-11 17:50:35 +0800599 .is_generic = true,
600 .pin_config_get = sunxi_pconf_get,
Maxime Ripard0e37f882013-01-18 22:30:34 +0100601 .pin_config_group_get = sunxi_pconf_group_get,
602 .pin_config_group_set = sunxi_pconf_group_set,
603};
604
605static int sunxi_pmx_get_funcs_cnt(struct pinctrl_dev *pctldev)
606{
607 struct sunxi_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
608
609 return pctl->nfunctions;
610}
611
612static const char *sunxi_pmx_get_func_name(struct pinctrl_dev *pctldev,
613 unsigned function)
614{
615 struct sunxi_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
616
617 return pctl->functions[function].name;
618}
619
620static int sunxi_pmx_get_func_groups(struct pinctrl_dev *pctldev,
621 unsigned function,
622 const char * const **groups,
623 unsigned * const num_groups)
624{
625 struct sunxi_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
626
627 *groups = pctl->functions[function].groups;
628 *num_groups = pctl->functions[function].ngroups;
629
630 return 0;
631}
632
633static void sunxi_pmx_set(struct pinctrl_dev *pctldev,
634 unsigned pin,
635 u8 config)
636{
637 struct sunxi_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
Maxime Ripard1bee9632013-08-04 12:38:48 +0200638 unsigned long flags;
639 u32 val, mask;
Maxime Ripard0e37f882013-01-18 22:30:34 +0100640
Julia Cartwrightf658ed32017-03-09 10:22:06 -0600641 raw_spin_lock_irqsave(&pctl->lock, flags);
Maxime Ripard1bee9632013-08-04 12:38:48 +0200642
Chen-Yu Tsaib4575c62014-05-22 23:20:55 +0800643 pin -= pctl->desc->pin_base;
Maxime Ripard1bee9632013-08-04 12:38:48 +0200644 val = readl(pctl->membase + sunxi_mux_reg(pin));
645 mask = MUX_PINS_MASK << sunxi_mux_offset(pin);
Maxime Ripard0e37f882013-01-18 22:30:34 +0100646 writel((val & ~mask) | config << sunxi_mux_offset(pin),
647 pctl->membase + sunxi_mux_reg(pin));
Maxime Ripard1bee9632013-08-04 12:38:48 +0200648
Julia Cartwrightf658ed32017-03-09 10:22:06 -0600649 raw_spin_unlock_irqrestore(&pctl->lock, flags);
Maxime Ripard0e37f882013-01-18 22:30:34 +0100650}
651
Linus Walleij03e9f0c2014-09-03 13:02:56 +0200652static int sunxi_pmx_set_mux(struct pinctrl_dev *pctldev,
653 unsigned function,
654 unsigned group)
Maxime Ripard0e37f882013-01-18 22:30:34 +0100655{
656 struct sunxi_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
657 struct sunxi_pinctrl_group *g = pctl->groups + group;
658 struct sunxi_pinctrl_function *func = pctl->functions + function;
659 struct sunxi_desc_function *desc =
660 sunxi_pinctrl_desc_find_function_by_name(pctl,
661 g->name,
662 func->name);
663
664 if (!desc)
665 return -EINVAL;
666
667 sunxi_pmx_set(pctldev, g->pin, desc->muxval);
668
669 return 0;
670}
671
Maxime Ripard08e9e612013-01-28 21:33:12 +0100672static int
673sunxi_pmx_gpio_set_direction(struct pinctrl_dev *pctldev,
674 struct pinctrl_gpio_range *range,
675 unsigned offset,
676 bool input)
677{
678 struct sunxi_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
679 struct sunxi_desc_function *desc;
Maxime Ripard08e9e612013-01-28 21:33:12 +0100680 const char *func;
Maxime Ripard08e9e612013-01-28 21:33:12 +0100681
682 if (input)
683 func = "gpio_in";
684 else
685 func = "gpio_out";
686
Maxime Ripard814d4f22013-06-08 12:05:43 +0200687 desc = sunxi_pinctrl_desc_find_function_by_pin(pctl, offset, func);
688 if (!desc)
689 return -EINVAL;
Maxime Ripard08e9e612013-01-28 21:33:12 +0100690
691 sunxi_pmx_set(pctldev, offset, desc->muxval);
692
Maxime Ripard814d4f22013-06-08 12:05:43 +0200693 return 0;
Maxime Ripard08e9e612013-01-28 21:33:12 +0100694}
695
Laurent Pinchart022ab142013-02-16 10:25:07 +0100696static const struct pinmux_ops sunxi_pmx_ops = {
Maxime Ripard0e37f882013-01-18 22:30:34 +0100697 .get_functions_count = sunxi_pmx_get_funcs_cnt,
698 .get_function_name = sunxi_pmx_get_func_name,
699 .get_function_groups = sunxi_pmx_get_func_groups,
Linus Walleij03e9f0c2014-09-03 13:02:56 +0200700 .set_mux = sunxi_pmx_set_mux,
Maxime Ripard08e9e612013-01-28 21:33:12 +0100701 .gpio_set_direction = sunxi_pmx_gpio_set_direction,
Maxime Ripard13960072017-10-09 22:53:39 +0200702 .strict = true,
Maxime Ripard0e37f882013-01-18 22:30:34 +0100703};
704
Maxime Ripard08e9e612013-01-28 21:33:12 +0100705static int sunxi_pinctrl_gpio_direction_input(struct gpio_chip *chip,
706 unsigned offset)
707{
708 return pinctrl_gpio_direction_input(chip->base + offset);
709}
710
711static int sunxi_pinctrl_gpio_get(struct gpio_chip *chip, unsigned offset)
712{
Linus Walleij88057d62015-12-08 22:40:43 +0100713 struct sunxi_pinctrl *pctl = gpiochip_get_data(chip);
Maxime Ripard08e9e612013-01-28 21:33:12 +0100714 u32 reg = sunxi_data_reg(offset);
715 u8 index = sunxi_data_offset(offset);
Linus Walleij6cee3822016-02-11 20:16:45 +0100716 bool set_mux = pctl->desc->irq_read_needs_mux &&
717 gpiochip_line_is_irq(chip, offset);
Krzysztof Adamskibe2d1072016-02-09 15:58:49 +0100718 u32 pin = offset + chip->base;
Hans de Goedeef6d24c2015-03-08 22:13:57 +0100719 u32 val;
720
721 if (set_mux)
Krzysztof Adamskibe2d1072016-02-09 15:58:49 +0100722 sunxi_pmx_set(pctl->pctl_dev, pin, SUN4I_FUNC_INPUT);
Hans de Goedeef6d24c2015-03-08 22:13:57 +0100723
724 val = (readl(pctl->membase + reg) >> index) & DATA_PINS_MASK;
725
726 if (set_mux)
Krzysztof Adamskibe2d1072016-02-09 15:58:49 +0100727 sunxi_pmx_set(pctl->pctl_dev, pin, SUN4I_FUNC_IRQ);
Maxime Ripard08e9e612013-01-28 21:33:12 +0100728
Linus Walleij39e24ac2015-12-21 16:40:27 +0100729 return !!val;
Maxime Ripard08e9e612013-01-28 21:33:12 +0100730}
731
Maxime Ripard08e9e612013-01-28 21:33:12 +0100732static void sunxi_pinctrl_gpio_set(struct gpio_chip *chip,
733 unsigned offset, int value)
734{
Linus Walleij88057d62015-12-08 22:40:43 +0100735 struct sunxi_pinctrl *pctl = gpiochip_get_data(chip);
Maxime Ripard08e9e612013-01-28 21:33:12 +0100736 u32 reg = sunxi_data_reg(offset);
737 u8 index = sunxi_data_offset(offset);
Maxime Ripard1bee9632013-08-04 12:38:48 +0200738 unsigned long flags;
739 u32 regval;
Maxime Ripard08e9e612013-01-28 21:33:12 +0100740
Julia Cartwrightf658ed32017-03-09 10:22:06 -0600741 raw_spin_lock_irqsave(&pctl->lock, flags);
Maxime Ripard1bee9632013-08-04 12:38:48 +0200742
743 regval = readl(pctl->membase + reg);
Maxime Ripard08e9e612013-01-28 21:33:12 +0100744
Maxime Riparddf7b34f2013-07-25 12:41:16 +0200745 if (value)
746 regval |= BIT(index);
747 else
748 regval &= ~(BIT(index));
749
750 writel(regval, pctl->membase + reg);
Maxime Ripard1bee9632013-08-04 12:38:48 +0200751
Julia Cartwrightf658ed32017-03-09 10:22:06 -0600752 raw_spin_unlock_irqrestore(&pctl->lock, flags);
Maxime Ripard08e9e612013-01-28 21:33:12 +0100753}
754
Chen-Yu Tsaifa8cf572014-01-16 14:34:23 +0800755static int sunxi_pinctrl_gpio_direction_output(struct gpio_chip *chip,
756 unsigned offset, int value)
757{
758 sunxi_pinctrl_gpio_set(chip, offset, value);
759 return pinctrl_gpio_direction_output(chip->base + offset);
760}
761
Maxime Riparda0d72092013-02-03 12:10:11 +0100762static int sunxi_pinctrl_gpio_of_xlate(struct gpio_chip *gc,
763 const struct of_phandle_args *gpiospec,
764 u32 *flags)
765{
766 int pin, base;
767
768 base = PINS_PER_BANK * gpiospec->args[0];
769 pin = base + gpiospec->args[1];
770
Chen-Yu Tsai343f1322014-07-15 01:24:37 +0800771 if (pin > gc->ngpio)
Maxime Riparda0d72092013-02-03 12:10:11 +0100772 return -EINVAL;
773
774 if (flags)
775 *flags = gpiospec->args[2];
776
777 return pin;
778}
779
Maxime Ripard60242db2013-06-08 12:05:44 +0200780static int sunxi_pinctrl_gpio_to_irq(struct gpio_chip *chip, unsigned offset)
781{
Linus Walleij88057d62015-12-08 22:40:43 +0100782 struct sunxi_pinctrl *pctl = gpiochip_get_data(chip);
Maxime Ripard60242db2013-06-08 12:05:44 +0200783 struct sunxi_desc_function *desc;
Chen-Yu Tsai343f1322014-07-15 01:24:37 +0800784 unsigned pinnum = pctl->desc->pin_base + offset;
Chen-Yu Tsai0d3bafa2014-07-01 00:04:59 +0800785 unsigned irqnum;
Maxime Ripard60242db2013-06-08 12:05:44 +0200786
Axel Linc9e3b2d2013-08-30 16:31:25 +0800787 if (offset >= chip->ngpio)
Maxime Ripard60242db2013-06-08 12:05:44 +0200788 return -ENXIO;
789
Chen-Yu Tsai343f1322014-07-15 01:24:37 +0800790 desc = sunxi_pinctrl_desc_find_function_by_pin(pctl, pinnum, "irq");
Maxime Ripard60242db2013-06-08 12:05:44 +0200791 if (!desc)
792 return -EINVAL;
793
Chen-Yu Tsai0d3bafa2014-07-01 00:04:59 +0800794 irqnum = desc->irqbank * IRQ_PER_BANK + desc->irqnum;
Maxime Ripard60242db2013-06-08 12:05:44 +0200795
Linus Walleij58383c782015-11-04 09:56:26 +0100796 dev_dbg(chip->parent, "%s: request IRQ for GPIO %d, return %d\n",
Chen-Yu Tsai0d3bafa2014-07-01 00:04:59 +0800797 chip->label, offset + chip->base, irqnum);
798
799 return irq_find_mapping(pctl->domain, irqnum);
Maxime Ripard60242db2013-06-08 12:05:44 +0200800}
801
Hans de Goedefea6d8e2014-06-29 16:11:00 +0200802static int sunxi_pinctrl_irq_request_resources(struct irq_data *d)
Maxime Ripard60242db2013-06-08 12:05:44 +0200803{
804 struct sunxi_pinctrl *pctl = irq_data_get_irq_chip_data(d);
Hans de Goedefea6d8e2014-06-29 16:11:00 +0200805 struct sunxi_desc_function *func;
Chen-Yu Tsaif83549d2014-07-15 01:24:36 +0800806 int ret;
Hans de Goedefea6d8e2014-06-29 16:11:00 +0200807
808 func = sunxi_pinctrl_desc_find_function_by_pin(pctl,
809 pctl->irq_array[d->hwirq], "irq");
810 if (!func)
811 return -EINVAL;
812
Alexandre Courbote3a2e872014-10-23 17:27:07 +0900813 ret = gpiochip_lock_as_irq(pctl->chip,
Chen-Yu Tsai343f1322014-07-15 01:24:37 +0800814 pctl->irq_array[d->hwirq] - pctl->desc->pin_base);
Chen-Yu Tsaif83549d2014-07-15 01:24:36 +0800815 if (ret) {
816 dev_err(pctl->dev, "unable to lock HW IRQ %lu for IRQ\n",
817 irqd_to_hwirq(d));
818 return ret;
819 }
820
Hans de Goedefea6d8e2014-06-29 16:11:00 +0200821 /* Change muxing to INT mode */
822 sunxi_pmx_set(pctl->pctl_dev, pctl->irq_array[d->hwirq], func->muxval);
823
824 return 0;
825}
Maxime Ripard08e9e612013-01-28 21:33:12 +0100826
Chen-Yu Tsaif83549d2014-07-15 01:24:36 +0800827static void sunxi_pinctrl_irq_release_resources(struct irq_data *d)
828{
829 struct sunxi_pinctrl *pctl = irq_data_get_irq_chip_data(d);
830
Alexandre Courbote3a2e872014-10-23 17:27:07 +0900831 gpiochip_unlock_as_irq(pctl->chip,
832 pctl->irq_array[d->hwirq] - pctl->desc->pin_base);
Chen-Yu Tsaif83549d2014-07-15 01:24:36 +0800833}
834
Hans de Goedef4c51c12014-06-29 16:11:01 +0200835static int sunxi_pinctrl_irq_set_type(struct irq_data *d, unsigned int type)
Maxime Ripard60242db2013-06-08 12:05:44 +0200836{
837 struct sunxi_pinctrl *pctl = irq_data_get_irq_chip_data(d);
Icenowy Zheng4b0d6c52018-03-16 22:02:07 +0800838 u32 reg = sunxi_irq_cfg_reg(pctl->desc, d->hwirq);
Maxime Ripard60242db2013-06-08 12:05:44 +0200839 u8 index = sunxi_irq_cfg_offset(d->hwirq);
Maxime Ripard1bee9632013-08-04 12:38:48 +0200840 unsigned long flags;
Maxime Ripard2aaaddf2013-08-04 12:38:47 +0200841 u32 regval;
Maxime Ripard60242db2013-06-08 12:05:44 +0200842 u8 mode;
843
844 switch (type) {
845 case IRQ_TYPE_EDGE_RISING:
846 mode = IRQ_EDGE_RISING;
847 break;
848 case IRQ_TYPE_EDGE_FALLING:
849 mode = IRQ_EDGE_FALLING;
850 break;
851 case IRQ_TYPE_EDGE_BOTH:
852 mode = IRQ_EDGE_BOTH;
853 break;
854 case IRQ_TYPE_LEVEL_HIGH:
855 mode = IRQ_LEVEL_HIGH;
856 break;
857 case IRQ_TYPE_LEVEL_LOW:
858 mode = IRQ_LEVEL_LOW;
859 break;
860 default:
861 return -EINVAL;
862 }
863
Julia Cartwrightf658ed32017-03-09 10:22:06 -0600864 raw_spin_lock_irqsave(&pctl->lock, flags);
Maxime Ripard1bee9632013-08-04 12:38:48 +0200865
Maxime Riparda0d6de92015-07-20 14:41:11 +0200866 if (type & IRQ_TYPE_LEVEL_MASK)
Thomas Gleixnerb9a5ec332015-09-16 12:32:40 +0200867 irq_set_chip_handler_name_locked(d, &sunxi_pinctrl_level_irq_chip,
868 handle_fasteoi_irq, NULL);
Maxime Riparda0d6de92015-07-20 14:41:11 +0200869 else
Thomas Gleixnerb9a5ec332015-09-16 12:32:40 +0200870 irq_set_chip_handler_name_locked(d, &sunxi_pinctrl_edge_irq_chip,
871 handle_edge_irq, NULL);
Maxime Riparda0d6de92015-07-20 14:41:11 +0200872
Maxime Ripard2aaaddf2013-08-04 12:38:47 +0200873 regval = readl(pctl->membase + reg);
Hans de Goeded82f9402014-02-17 22:19:43 +0100874 regval &= ~(IRQ_CFG_IRQ_MASK << index);
Maxime Ripard2aaaddf2013-08-04 12:38:47 +0200875 writel(regval | (mode << index), pctl->membase + reg);
Maxime Ripard60242db2013-06-08 12:05:44 +0200876
Julia Cartwrightf658ed32017-03-09 10:22:06 -0600877 raw_spin_unlock_irqrestore(&pctl->lock, flags);
Maxime Ripard60242db2013-06-08 12:05:44 +0200878
879 return 0;
880}
881
Maxime Ripard645ec712014-06-05 15:26:00 +0200882static void sunxi_pinctrl_irq_ack(struct irq_data *d)
Maxime Ripard60242db2013-06-08 12:05:44 +0200883{
884 struct sunxi_pinctrl *pctl = irq_data_get_irq_chip_data(d);
Icenowy Zheng4b0d6c52018-03-16 22:02:07 +0800885 u32 status_reg = sunxi_irq_status_reg(pctl->desc, d->hwirq);
Maxime Ripard60242db2013-06-08 12:05:44 +0200886 u8 status_idx = sunxi_irq_status_offset(d->hwirq);
Maxime Ripard60242db2013-06-08 12:05:44 +0200887
888 /* Clear the IRQ */
889 writel(1 << status_idx, pctl->membase + status_reg);
890}
891
892static void sunxi_pinctrl_irq_mask(struct irq_data *d)
893{
894 struct sunxi_pinctrl *pctl = irq_data_get_irq_chip_data(d);
Icenowy Zheng4b0d6c52018-03-16 22:02:07 +0800895 u32 reg = sunxi_irq_ctrl_reg(pctl->desc, d->hwirq);
Maxime Ripard60242db2013-06-08 12:05:44 +0200896 u8 idx = sunxi_irq_ctrl_offset(d->hwirq);
Maxime Ripard1bee9632013-08-04 12:38:48 +0200897 unsigned long flags;
Maxime Ripard60242db2013-06-08 12:05:44 +0200898 u32 val;
899
Julia Cartwrightf658ed32017-03-09 10:22:06 -0600900 raw_spin_lock_irqsave(&pctl->lock, flags);
Maxime Ripard1bee9632013-08-04 12:38:48 +0200901
Maxime Ripard60242db2013-06-08 12:05:44 +0200902 /* Mask the IRQ */
903 val = readl(pctl->membase + reg);
904 writel(val & ~(1 << idx), pctl->membase + reg);
Maxime Ripard1bee9632013-08-04 12:38:48 +0200905
Julia Cartwrightf658ed32017-03-09 10:22:06 -0600906 raw_spin_unlock_irqrestore(&pctl->lock, flags);
Maxime Ripard60242db2013-06-08 12:05:44 +0200907}
908
909static void sunxi_pinctrl_irq_unmask(struct irq_data *d)
910{
911 struct sunxi_pinctrl *pctl = irq_data_get_irq_chip_data(d);
Icenowy Zheng4b0d6c52018-03-16 22:02:07 +0800912 u32 reg = sunxi_irq_ctrl_reg(pctl->desc, d->hwirq);
Maxime Ripard60242db2013-06-08 12:05:44 +0200913 u8 idx = sunxi_irq_ctrl_offset(d->hwirq);
Maxime Ripard1bee9632013-08-04 12:38:48 +0200914 unsigned long flags;
Maxime Ripard60242db2013-06-08 12:05:44 +0200915 u32 val;
916
Julia Cartwrightf658ed32017-03-09 10:22:06 -0600917 raw_spin_lock_irqsave(&pctl->lock, flags);
Maxime Ripard1bee9632013-08-04 12:38:48 +0200918
Maxime Ripard60242db2013-06-08 12:05:44 +0200919 /* Unmask the IRQ */
920 val = readl(pctl->membase + reg);
921 writel(val | (1 << idx), pctl->membase + reg);
Maxime Ripard1bee9632013-08-04 12:38:48 +0200922
Julia Cartwrightf658ed32017-03-09 10:22:06 -0600923 raw_spin_unlock_irqrestore(&pctl->lock, flags);
Maxime Ripard60242db2013-06-08 12:05:44 +0200924}
925
Hans de Goeded61e23e2014-06-29 16:11:02 +0200926static void sunxi_pinctrl_irq_ack_unmask(struct irq_data *d)
927{
928 sunxi_pinctrl_irq_ack(d);
929 sunxi_pinctrl_irq_unmask(d);
930}
931
Hans de Goedef4c51c12014-06-29 16:11:01 +0200932static struct irq_chip sunxi_pinctrl_edge_irq_chip = {
Maxime Ripardfb5b7782015-07-20 14:41:12 +0200933 .name = "sunxi_pio_edge",
Maxime Ripard645ec712014-06-05 15:26:00 +0200934 .irq_ack = sunxi_pinctrl_irq_ack,
Maxime Ripard60242db2013-06-08 12:05:44 +0200935 .irq_mask = sunxi_pinctrl_irq_mask,
Maxime Ripard60242db2013-06-08 12:05:44 +0200936 .irq_unmask = sunxi_pinctrl_irq_unmask,
Hans de Goedefea6d8e2014-06-29 16:11:00 +0200937 .irq_request_resources = sunxi_pinctrl_irq_request_resources,
Chen-Yu Tsaif83549d2014-07-15 01:24:36 +0800938 .irq_release_resources = sunxi_pinctrl_irq_release_resources,
Maxime Ripard60242db2013-06-08 12:05:44 +0200939 .irq_set_type = sunxi_pinctrl_irq_set_type,
Chen-Yu Tsai578c0a82014-06-29 16:10:59 +0200940 .flags = IRQCHIP_SKIP_SET_WAKE,
Maxime Ripard60242db2013-06-08 12:05:44 +0200941};
942
Hans de Goedef4c51c12014-06-29 16:11:01 +0200943static struct irq_chip sunxi_pinctrl_level_irq_chip = {
Maxime Ripardfb5b7782015-07-20 14:41:12 +0200944 .name = "sunxi_pio_level",
Hans de Goedef4c51c12014-06-29 16:11:01 +0200945 .irq_eoi = sunxi_pinctrl_irq_ack,
946 .irq_mask = sunxi_pinctrl_irq_mask,
947 .irq_unmask = sunxi_pinctrl_irq_unmask,
Hans de Goeded61e23e2014-06-29 16:11:02 +0200948 /* Define irq_enable / disable to avoid spurious irqs for drivers
949 * using these to suppress irqs while they clear the irq source */
950 .irq_enable = sunxi_pinctrl_irq_ack_unmask,
951 .irq_disable = sunxi_pinctrl_irq_mask,
Hans de Goedef4c51c12014-06-29 16:11:01 +0200952 .irq_request_resources = sunxi_pinctrl_irq_request_resources,
Chen-Yu Tsaif83549d2014-07-15 01:24:36 +0800953 .irq_release_resources = sunxi_pinctrl_irq_release_resources,
Hans de Goedef4c51c12014-06-29 16:11:01 +0200954 .irq_set_type = sunxi_pinctrl_irq_set_type,
955 .flags = IRQCHIP_SKIP_SET_WAKE | IRQCHIP_EOI_THREADED |
956 IRQCHIP_EOI_IF_HANDLED,
Maxime Ripard60242db2013-06-08 12:05:44 +0200957};
958
Maxime Ripardd8323c62015-07-27 14:41:57 +0200959static int sunxi_pinctrl_irq_of_xlate(struct irq_domain *d,
960 struct device_node *node,
961 const u32 *intspec,
962 unsigned int intsize,
963 unsigned long *out_hwirq,
964 unsigned int *out_type)
965{
Hans de Goede82979922015-10-16 09:46:11 +0200966 struct sunxi_pinctrl *pctl = d->host_data;
Maxime Ripardd8323c62015-07-27 14:41:57 +0200967 struct sunxi_desc_function *desc;
968 int pin, base;
969
970 if (intsize < 3)
971 return -EINVAL;
972
973 base = PINS_PER_BANK * intspec[0];
Hans de Goede82979922015-10-16 09:46:11 +0200974 pin = pctl->desc->pin_base + base + intspec[1];
Maxime Ripardd8323c62015-07-27 14:41:57 +0200975
Hans de Goede82979922015-10-16 09:46:11 +0200976 desc = sunxi_pinctrl_desc_find_function_by_pin(pctl, pin, "irq");
Maxime Ripardd8323c62015-07-27 14:41:57 +0200977 if (!desc)
978 return -EINVAL;
979
980 *out_hwirq = desc->irqbank * PINS_PER_BANK + desc->irqnum;
981 *out_type = intspec[2];
982
983 return 0;
984}
985
Tobias Klauser2421dfd2017-06-02 13:29:58 +0200986static const struct irq_domain_ops sunxi_pinctrl_irq_domain_ops = {
Maxime Ripardd8323c62015-07-27 14:41:57 +0200987 .xlate = sunxi_pinctrl_irq_of_xlate,
988};
989
Thomas Gleixnerbd0b9ac2015-09-14 10:42:37 +0200990static void sunxi_pinctrl_irq_handler(struct irq_desc *desc)
Maxime Ripard60242db2013-06-08 12:05:44 +0200991{
Thomas Gleixnereeef97b2015-07-13 01:55:27 +0200992 unsigned int irq = irq_desc_get_irq(desc);
Jiang Liu5663bb22015-06-04 12:13:16 +0800993 struct irq_chip *chip = irq_desc_get_chip(desc);
994 struct sunxi_pinctrl *pctl = irq_desc_get_handler_data(desc);
Maxime Ripardaebdc8a2014-06-05 15:26:04 +0200995 unsigned long bank, reg, val;
Maxime Ripard60242db2013-06-08 12:05:44 +0200996
Maxime Ripardaebdc8a2014-06-05 15:26:04 +0200997 for (bank = 0; bank < pctl->desc->irq_banks; bank++)
998 if (irq == pctl->irq[bank])
999 break;
Maxime Ripard60242db2013-06-08 12:05:44 +02001000
Maxime Ripardaebdc8a2014-06-05 15:26:04 +02001001 if (bank == pctl->desc->irq_banks)
1002 return;
1003
Icenowy Zheng4b0d6c52018-03-16 22:02:07 +08001004 reg = sunxi_irq_status_reg_from_bank(pctl->desc, bank);
Maxime Ripardaebdc8a2014-06-05 15:26:04 +02001005 val = readl(pctl->membase + reg);
Maxime Ripard60242db2013-06-08 12:05:44 +02001006
Maxime Ripardaebdc8a2014-06-05 15:26:04 +02001007 if (val) {
Maxime Ripard60242db2013-06-08 12:05:44 +02001008 int irqoffset;
1009
Chen-Yu Tsai905a5112014-02-11 00:22:37 +08001010 chained_irq_enter(chip, desc);
Maxime Ripardaebdc8a2014-06-05 15:26:04 +02001011 for_each_set_bit(irqoffset, &val, IRQ_PER_BANK) {
1012 int pin_irq = irq_find_mapping(pctl->domain,
1013 bank * IRQ_PER_BANK + irqoffset);
Maxime Ripard60242db2013-06-08 12:05:44 +02001014 generic_handle_irq(pin_irq);
1015 }
Chen-Yu Tsai905a5112014-02-11 00:22:37 +08001016 chained_irq_exit(chip, desc);
Maxime Ripard60242db2013-06-08 12:05:44 +02001017 }
1018}
1019
Maxime Ripard0e37f882013-01-18 22:30:34 +01001020static int sunxi_pinctrl_add_function(struct sunxi_pinctrl *pctl,
1021 const char *name)
1022{
1023 struct sunxi_pinctrl_function *func = pctl->functions;
1024
1025 while (func->name) {
1026 /* function already there */
1027 if (strcmp(func->name, name) == 0) {
1028 func->ngroups++;
1029 return -EEXIST;
1030 }
1031 func++;
1032 }
1033
1034 func->name = name;
1035 func->ngroups = 1;
1036
1037 pctl->nfunctions++;
1038
1039 return 0;
1040}
1041
1042static int sunxi_pinctrl_build_state(struct platform_device *pdev)
1043{
1044 struct sunxi_pinctrl *pctl = platform_get_drvdata(pdev);
1045 int i;
1046
Maxime Ripard578db852017-01-08 22:31:15 +01001047 /*
1048 * Allocate groups
1049 *
1050 * We assume that the number of groups is the number of pins
1051 * given in the data array.
Maxime Ripard0e37f882013-01-18 22:30:34 +01001052
Maxime Ripard578db852017-01-08 22:31:15 +01001053 * This will not always be true, since some pins might not be
1054 * available in the current variant, but fortunately for us,
1055 * this means that the number of pins is the maximum group
1056 * number we will ever see.
1057 */
Kees Cooka86854d2018-06-12 14:07:58 -07001058 pctl->groups = devm_kcalloc(&pdev->dev,
1059 pctl->desc->npins, sizeof(*pctl->groups),
Maxime Ripard0e37f882013-01-18 22:30:34 +01001060 GFP_KERNEL);
1061 if (!pctl->groups)
1062 return -ENOMEM;
1063
1064 for (i = 0; i < pctl->desc->npins; i++) {
1065 const struct sunxi_desc_pin *pin = pctl->desc->pins + i;
Maxime Ripard578db852017-01-08 22:31:15 +01001066 struct sunxi_pinctrl_group *group = pctl->groups + pctl->ngroups;
1067
1068 if (pin->variant && !(pctl->variant & pin->variant))
1069 continue;
Maxime Ripard0e37f882013-01-18 22:30:34 +01001070
1071 group->name = pin->pin.name;
1072 group->pin = pin->pin.number;
Maxime Ripard578db852017-01-08 22:31:15 +01001073
1074 /* And now we count the actual number of pins / groups */
1075 pctl->ngroups++;
Maxime Ripard0e37f882013-01-18 22:30:34 +01001076 }
1077
1078 /*
1079 * We suppose that we won't have any more functions than pins,
1080 * we'll reallocate that later anyway
1081 */
Kees Cooka86854d2018-06-12 14:07:58 -07001082 pctl->functions = devm_kcalloc(&pdev->dev,
1083 pctl->ngroups,
1084 sizeof(*pctl->functions),
Maxime Ripard578db852017-01-08 22:31:15 +01001085 GFP_KERNEL);
Maxime Ripard0e37f882013-01-18 22:30:34 +01001086 if (!pctl->functions)
1087 return -ENOMEM;
1088
1089 /* Count functions and their associated groups */
1090 for (i = 0; i < pctl->desc->npins; i++) {
1091 const struct sunxi_desc_pin *pin = pctl->desc->pins + i;
Maxime Ripard578db852017-01-08 22:31:15 +01001092 struct sunxi_desc_function *func;
Maxime Ripard0e37f882013-01-18 22:30:34 +01001093
Maxime Ripard578db852017-01-08 22:31:15 +01001094 if (pin->variant && !(pctl->variant & pin->variant))
1095 continue;
1096
1097 for (func = pin->functions; func->name; func++) {
1098 if (func->variant && !(pctl->variant & func->variant))
1099 continue;
1100
Chen-Yu Tsaid54e9a22014-05-26 09:47:56 +02001101 /* Create interrupt mapping while we're at it */
Maxime Ripardaebdc8a2014-06-05 15:26:04 +02001102 if (!strcmp(func->name, "irq")) {
1103 int irqnum = func->irqnum + func->irqbank * IRQ_PER_BANK;
1104 pctl->irq_array[irqnum] = pin->pin.number;
1105 }
1106
Maxime Ripard0e37f882013-01-18 22:30:34 +01001107 sunxi_pinctrl_add_function(pctl, func->name);
Maxime Ripard0e37f882013-01-18 22:30:34 +01001108 }
1109 }
1110
Maxime Ripard578db852017-01-08 22:31:15 +01001111 /* And now allocated and fill the array for real */
Maxime Ripard0e37f882013-01-18 22:30:34 +01001112 pctl->functions = krealloc(pctl->functions,
Maxime Ripard578db852017-01-08 22:31:15 +01001113 pctl->nfunctions * sizeof(*pctl->functions),
1114 GFP_KERNEL);
1115 if (!pctl->functions) {
1116 kfree(pctl->functions);
1117 return -ENOMEM;
1118 }
Maxime Ripard0e37f882013-01-18 22:30:34 +01001119
1120 for (i = 0; i < pctl->desc->npins; i++) {
1121 const struct sunxi_desc_pin *pin = pctl->desc->pins + i;
Maxime Ripard578db852017-01-08 22:31:15 +01001122 struct sunxi_desc_function *func;
Maxime Ripard0e37f882013-01-18 22:30:34 +01001123
Maxime Ripard578db852017-01-08 22:31:15 +01001124 if (pin->variant && !(pctl->variant & pin->variant))
1125 continue;
1126
1127 for (func = pin->functions; func->name; func++) {
Maxime Ripard0e37f882013-01-18 22:30:34 +01001128 struct sunxi_pinctrl_function *func_item;
1129 const char **func_grp;
1130
Maxime Ripard578db852017-01-08 22:31:15 +01001131 if (func->variant && !(pctl->variant & func->variant))
1132 continue;
1133
Maxime Ripard0e37f882013-01-18 22:30:34 +01001134 func_item = sunxi_pinctrl_find_function_by_name(pctl,
1135 func->name);
1136 if (!func_item)
1137 return -EINVAL;
1138
1139 if (!func_item->groups) {
1140 func_item->groups =
Kees Cooka86854d2018-06-12 14:07:58 -07001141 devm_kcalloc(&pdev->dev,
1142 func_item->ngroups,
1143 sizeof(*func_item->groups),
Maxime Ripard0e37f882013-01-18 22:30:34 +01001144 GFP_KERNEL);
1145 if (!func_item->groups)
1146 return -ENOMEM;
1147 }
1148
1149 func_grp = func_item->groups;
1150 while (*func_grp)
1151 func_grp++;
1152
1153 *func_grp = pin->pin.name;
Maxime Ripard0e37f882013-01-18 22:30:34 +01001154 }
1155 }
1156
1157 return 0;
1158}
1159
Maxime Ripard7c926492016-11-14 21:53:03 +01001160static int sunxi_pinctrl_get_debounce_div(struct clk *clk, int freq, int *diff)
1161{
1162 unsigned long clock = clk_get_rate(clk);
Arnd Bergmannd8a22212016-11-16 15:18:18 +01001163 unsigned int best_diff, best_div;
Maxime Ripard7c926492016-11-14 21:53:03 +01001164 int i;
1165
Arnd Bergmannd8a22212016-11-16 15:18:18 +01001166 best_diff = abs(freq - clock);
1167 best_div = 0;
1168
1169 for (i = 1; i < 8; i++) {
Maxime Ripard7c926492016-11-14 21:53:03 +01001170 int cur_diff = abs(freq - (clock >> i));
1171
1172 if (cur_diff < best_diff) {
1173 best_diff = cur_diff;
1174 best_div = i;
1175 }
1176 }
1177
1178 *diff = best_diff;
1179 return best_div;
1180}
1181
1182static int sunxi_pinctrl_setup_debounce(struct sunxi_pinctrl *pctl,
1183 struct device_node *node)
1184{
1185 unsigned int hosc_diff, losc_diff;
1186 unsigned int hosc_div, losc_div;
1187 struct clk *hosc, *losc;
1188 u8 div, src;
1189 int i, ret;
1190
1191 /* Deal with old DTs that didn't have the oscillators */
Geert Uytterhoeven470b73a2018-01-19 16:18:19 +01001192 if (of_clk_get_parent_count(node) != 3)
Maxime Ripard7c926492016-11-14 21:53:03 +01001193 return 0;
1194
1195 /* If we don't have any setup, bail out */
1196 if (!of_find_property(node, "input-debounce", NULL))
1197 return 0;
1198
1199 losc = devm_clk_get(pctl->dev, "losc");
1200 if (IS_ERR(losc))
1201 return PTR_ERR(losc);
1202
1203 hosc = devm_clk_get(pctl->dev, "hosc");
1204 if (IS_ERR(hosc))
1205 return PTR_ERR(hosc);
1206
1207 for (i = 0; i < pctl->desc->irq_banks; i++) {
1208 unsigned long debounce_freq;
1209 u32 debounce;
1210
1211 ret = of_property_read_u32_index(node, "input-debounce",
1212 i, &debounce);
1213 if (ret)
1214 return ret;
1215
1216 if (!debounce)
1217 continue;
1218
1219 debounce_freq = DIV_ROUND_CLOSEST(USEC_PER_SEC, debounce);
1220 losc_div = sunxi_pinctrl_get_debounce_div(losc,
1221 debounce_freq,
1222 &losc_diff);
1223
1224 hosc_div = sunxi_pinctrl_get_debounce_div(hosc,
1225 debounce_freq,
1226 &hosc_diff);
1227
1228 if (hosc_diff < losc_diff) {
1229 div = hosc_div;
1230 src = 1;
1231 } else {
1232 div = losc_div;
1233 src = 0;
1234 }
1235
1236 writel(src | div << 4,
1237 pctl->membase +
Icenowy Zheng4b0d6c52018-03-16 22:02:07 +08001238 sunxi_irq_debounce_reg_from_bank(pctl->desc, i));
Maxime Ripard7c926492016-11-14 21:53:03 +01001239 }
1240
1241 return 0;
1242}
1243
Maxime Ripard578db852017-01-08 22:31:15 +01001244int sunxi_pinctrl_init_with_variant(struct platform_device *pdev,
1245 const struct sunxi_pinctrl_desc *desc,
1246 unsigned long variant)
Maxime Ripard0e37f882013-01-18 22:30:34 +01001247{
1248 struct device_node *node = pdev->dev.of_node;
Maxime Ripardba6764d2014-05-22 16:25:27 +02001249 struct pinctrl_desc *pctrl_desc;
Maxime Ripard0e37f882013-01-18 22:30:34 +01001250 struct pinctrl_pin_desc *pins;
1251 struct sunxi_pinctrl *pctl;
Maxime Ripardaae842a2017-10-09 22:53:37 +02001252 struct pinmux_ops *pmxops;
Maxime Ripard4409caf2014-04-26 21:59:50 +02001253 struct resource *res;
Maxime Ripard578db852017-01-08 22:31:15 +01001254 int i, ret, last_pin, pin_idx;
Emilio López950707c2013-03-22 11:20:40 -03001255 struct clk *clk;
Maxime Ripard0e37f882013-01-18 22:30:34 +01001256
1257 pctl = devm_kzalloc(&pdev->dev, sizeof(*pctl), GFP_KERNEL);
1258 if (!pctl)
1259 return -ENOMEM;
1260 platform_set_drvdata(pdev, pctl);
1261
Julia Cartwrightf658ed32017-03-09 10:22:06 -06001262 raw_spin_lock_init(&pctl->lock);
Maxime Ripard1bee9632013-08-04 12:38:48 +02001263
Maxime Ripard4409caf2014-04-26 21:59:50 +02001264 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1265 pctl->membase = devm_ioremap_resource(&pdev->dev, res);
1266 if (IS_ERR(pctl->membase))
1267 return PTR_ERR(pctl->membase);
Maxime Ripard0e37f882013-01-18 22:30:34 +01001268
Maxime Ripardba6764d2014-05-22 16:25:27 +02001269 pctl->dev = &pdev->dev;
Maxime Ripard2284ba62014-04-18 20:10:41 +02001270 pctl->desc = desc;
Maxime Ripard578db852017-01-08 22:31:15 +01001271 pctl->variant = variant;
Maxime Ripard0e37f882013-01-18 22:30:34 +01001272
Maxime Ripardaebdc8a2014-06-05 15:26:04 +02001273 pctl->irq_array = devm_kcalloc(&pdev->dev,
1274 IRQ_PER_BANK * pctl->desc->irq_banks,
1275 sizeof(*pctl->irq_array),
1276 GFP_KERNEL);
1277 if (!pctl->irq_array)
1278 return -ENOMEM;
1279
Maxime Ripard0e37f882013-01-18 22:30:34 +01001280 ret = sunxi_pinctrl_build_state(pdev);
1281 if (ret) {
1282 dev_err(&pdev->dev, "dt probe failed: %d\n", ret);
1283 return ret;
1284 }
1285
Kees Cooka86854d2018-06-12 14:07:58 -07001286 pins = devm_kcalloc(&pdev->dev,
1287 pctl->desc->npins, sizeof(*pins),
Maxime Ripard0e37f882013-01-18 22:30:34 +01001288 GFP_KERNEL);
1289 if (!pins)
1290 return -ENOMEM;
1291
Maxime Ripard578db852017-01-08 22:31:15 +01001292 for (i = 0, pin_idx = 0; i < pctl->desc->npins; i++) {
1293 const struct sunxi_desc_pin *pin = pctl->desc->pins + i;
1294
1295 if (pin->variant && !(pctl->variant & pin->variant))
1296 continue;
1297
1298 pins[pin_idx++] = pin->pin;
1299 }
Maxime Ripard0e37f882013-01-18 22:30:34 +01001300
Maxime Ripardba6764d2014-05-22 16:25:27 +02001301 pctrl_desc = devm_kzalloc(&pdev->dev,
1302 sizeof(*pctrl_desc),
1303 GFP_KERNEL);
1304 if (!pctrl_desc)
1305 return -ENOMEM;
1306
1307 pctrl_desc->name = dev_name(&pdev->dev);
1308 pctrl_desc->owner = THIS_MODULE;
1309 pctrl_desc->pins = pins;
Maxime Ripard578db852017-01-08 22:31:15 +01001310 pctrl_desc->npins = pctl->ngroups;
Maxime Ripardba6764d2014-05-22 16:25:27 +02001311 pctrl_desc->confops = &sunxi_pconf_ops;
1312 pctrl_desc->pctlops = &sunxi_pctrl_ops;
Maxime Ripardaae842a2017-10-09 22:53:37 +02001313
1314 pmxops = devm_kmemdup(&pdev->dev, &sunxi_pmx_ops, sizeof(sunxi_pmx_ops),
1315 GFP_KERNEL);
1316 if (!pmxops)
1317 return -ENOMEM;
1318
1319 if (desc->disable_strict_mode)
1320 pmxops->strict = false;
1321
1322 pctrl_desc->pmxops = pmxops;
Maxime Ripardba6764d2014-05-22 16:25:27 +02001323
Laxman Dewangan45078ea2016-02-24 14:44:07 +05301324 pctl->pctl_dev = devm_pinctrl_register(&pdev->dev, pctrl_desc, pctl);
Masahiro Yamada323de9e2015-06-09 13:01:16 +09001325 if (IS_ERR(pctl->pctl_dev)) {
Maxime Ripard0e37f882013-01-18 22:30:34 +01001326 dev_err(&pdev->dev, "couldn't register pinctrl driver\n");
Masahiro Yamada323de9e2015-06-09 13:01:16 +09001327 return PTR_ERR(pctl->pctl_dev);
Maxime Ripard0e37f882013-01-18 22:30:34 +01001328 }
1329
Maxime Ripard08e9e612013-01-28 21:33:12 +01001330 pctl->chip = devm_kzalloc(&pdev->dev, sizeof(*pctl->chip), GFP_KERNEL);
Laxman Dewangan45078ea2016-02-24 14:44:07 +05301331 if (!pctl->chip)
1332 return -ENOMEM;
Maxime Ripard08e9e612013-01-28 21:33:12 +01001333
1334 last_pin = pctl->desc->pins[pctl->desc->npins - 1].pin.number;
Boris BREZILLONd83c82c2014-04-10 15:52:43 +02001335 pctl->chip->owner = THIS_MODULE;
Jonas Gorski98c85d52015-10-11 17:34:19 +02001336 pctl->chip->request = gpiochip_generic_request,
1337 pctl->chip->free = gpiochip_generic_free,
Boris BREZILLONd83c82c2014-04-10 15:52:43 +02001338 pctl->chip->direction_input = sunxi_pinctrl_gpio_direction_input,
1339 pctl->chip->direction_output = sunxi_pinctrl_gpio_direction_output,
1340 pctl->chip->get = sunxi_pinctrl_gpio_get,
1341 pctl->chip->set = sunxi_pinctrl_gpio_set,
1342 pctl->chip->of_xlate = sunxi_pinctrl_gpio_of_xlate,
1343 pctl->chip->to_irq = sunxi_pinctrl_gpio_to_irq,
1344 pctl->chip->of_gpio_n_cells = 3,
1345 pctl->chip->can_sleep = false,
1346 pctl->chip->ngpio = round_up(last_pin, PINS_PER_BANK) -
1347 pctl->desc->pin_base;
Maxime Ripard08e9e612013-01-28 21:33:12 +01001348 pctl->chip->label = dev_name(&pdev->dev);
Linus Walleij58383c782015-11-04 09:56:26 +01001349 pctl->chip->parent = &pdev->dev;
Boris BREZILLONd83c82c2014-04-10 15:52:43 +02001350 pctl->chip->base = pctl->desc->pin_base;
Maxime Ripard08e9e612013-01-28 21:33:12 +01001351
Linus Walleij88057d62015-12-08 22:40:43 +01001352 ret = gpiochip_add_data(pctl->chip, pctl);
Maxime Ripard08e9e612013-01-28 21:33:12 +01001353 if (ret)
Laxman Dewangan45078ea2016-02-24 14:44:07 +05301354 return ret;
Maxime Ripard08e9e612013-01-28 21:33:12 +01001355
1356 for (i = 0; i < pctl->desc->npins; i++) {
1357 const struct sunxi_desc_pin *pin = pctl->desc->pins + i;
1358
1359 ret = gpiochip_add_pin_range(pctl->chip, dev_name(&pdev->dev),
Chen-Yu Tsai343f1322014-07-15 01:24:37 +08001360 pin->pin.number - pctl->desc->pin_base,
Maxime Ripard08e9e612013-01-28 21:33:12 +01001361 pin->pin.number, 1);
1362 if (ret)
1363 goto gpiochip_error;
1364 }
1365
Geert Uytterhoeven10e3a882018-04-18 16:50:05 +02001366 ret = of_clk_get_parent_count(node);
Andre Przywaraa34ea4b2018-03-03 12:25:54 +00001367 clk = devm_clk_get(&pdev->dev, ret == 1 ? NULL : "apb");
Wei Yongjund72f88a2013-05-23 17:32:14 +08001368 if (IS_ERR(clk)) {
1369 ret = PTR_ERR(clk);
Emilio López950707c2013-03-22 11:20:40 -03001370 goto gpiochip_error;
Wei Yongjund72f88a2013-05-23 17:32:14 +08001371 }
Emilio López950707c2013-03-22 11:20:40 -03001372
Boris BREZILLON64150932014-04-10 15:52:40 +02001373 ret = clk_prepare_enable(clk);
1374 if (ret)
1375 goto gpiochip_error;
Emilio López950707c2013-03-22 11:20:40 -03001376
Maxime Ripardaebdc8a2014-06-05 15:26:04 +02001377 pctl->irq = devm_kcalloc(&pdev->dev,
1378 pctl->desc->irq_banks,
1379 sizeof(*pctl->irq),
1380 GFP_KERNEL);
Maxime Ripard60242db2013-06-08 12:05:44 +02001381 if (!pctl->irq) {
Maxime Ripardaebdc8a2014-06-05 15:26:04 +02001382 ret = -ENOMEM;
Maxime Riparddc969102014-04-26 22:28:54 +02001383 goto clk_error;
Maxime Ripard60242db2013-06-08 12:05:44 +02001384 }
1385
Maxime Ripardaebdc8a2014-06-05 15:26:04 +02001386 for (i = 0; i < pctl->desc->irq_banks; i++) {
1387 pctl->irq[i] = platform_get_irq(pdev, i);
1388 if (pctl->irq[i] < 0) {
1389 ret = pctl->irq[i];
1390 goto clk_error;
1391 }
1392 }
1393
1394 pctl->domain = irq_domain_add_linear(node,
1395 pctl->desc->irq_banks * IRQ_PER_BANK,
Maxime Ripardd8323c62015-07-27 14:41:57 +02001396 &sunxi_pinctrl_irq_domain_ops,
1397 pctl);
Maxime Ripard60242db2013-06-08 12:05:44 +02001398 if (!pctl->domain) {
1399 dev_err(&pdev->dev, "Couldn't register IRQ domain\n");
1400 ret = -ENOMEM;
Maxime Riparddc969102014-04-26 22:28:54 +02001401 goto clk_error;
Maxime Ripard60242db2013-06-08 12:05:44 +02001402 }
1403
Maxime Ripardaebdc8a2014-06-05 15:26:04 +02001404 for (i = 0; i < (pctl->desc->irq_banks * IRQ_PER_BANK); i++) {
Maxime Ripard60242db2013-06-08 12:05:44 +02001405 int irqno = irq_create_mapping(pctl->domain, i);
1406
Hans de Goedef4c51c12014-06-29 16:11:01 +02001407 irq_set_chip_and_handler(irqno, &sunxi_pinctrl_edge_irq_chip,
1408 handle_edge_irq);
Maxime Ripard60242db2013-06-08 12:05:44 +02001409 irq_set_chip_data(irqno, pctl);
Javier Martinez Canillas5c99c0f2015-09-16 10:28:29 +02001410 }
Maxime Ripard60242db2013-06-08 12:05:44 +02001411
Maxime Ripardaebdc8a2014-06-05 15:26:04 +02001412 for (i = 0; i < pctl->desc->irq_banks; i++) {
Hans de Goedef4c51c12014-06-29 16:11:01 +02001413 /* Mask and clear all IRQs before registering a handler */
Icenowy Zheng4b0d6c52018-03-16 22:02:07 +08001414 writel(0, pctl->membase +
1415 sunxi_irq_ctrl_reg_from_bank(pctl->desc, i));
Hans de Goedef4c51c12014-06-29 16:11:01 +02001416 writel(0xffffffff,
Icenowy Zheng4b0d6c52018-03-16 22:02:07 +08001417 pctl->membase +
1418 sunxi_irq_status_reg_from_bank(pctl->desc, i));
Hans de Goedef4c51c12014-06-29 16:11:01 +02001419
Thomas Gleixneref80e872015-06-21 20:16:18 +02001420 irq_set_chained_handler_and_data(pctl->irq[i],
1421 sunxi_pinctrl_irq_handler,
1422 pctl);
Maxime Ripardaebdc8a2014-06-05 15:26:04 +02001423 }
Maxime Ripard60242db2013-06-08 12:05:44 +02001424
Maxime Ripard7c926492016-11-14 21:53:03 +01001425 sunxi_pinctrl_setup_debounce(pctl, node);
1426
Maxime Ripard08e9e612013-01-28 21:33:12 +01001427 dev_info(&pdev->dev, "initialized sunXi PIO driver\n");
Maxime Ripard0e37f882013-01-18 22:30:34 +01001428
1429 return 0;
Maxime Ripard08e9e612013-01-28 21:33:12 +01001430
Boris BREZILLONe2bddc62014-04-10 15:52:41 +02001431clk_error:
1432 clk_disable_unprepare(clk);
Maxime Ripard08e9e612013-01-28 21:33:12 +01001433gpiochip_error:
abdoulaye bertheb4e7c552014-07-12 22:30:13 +02001434 gpiochip_remove(pctl->chip);
Maxime Ripard08e9e612013-01-28 21:33:12 +01001435 return ret;
Maxime Ripard0e37f882013-01-18 22:30:34 +01001436}