blob: 9c65d560d48f711eb1a7abf9dd613971997465a7 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Andrew Jeffery4d3d0e422016-08-30 17:24:24 +09302/*
3 * Copyright (C) 2016 IBM Corp.
Andrew Jeffery4d3d0e422016-08-30 17:24:24 +09304 */
5
6#include <linux/mfd/syscon.h>
7#include <linux/platform_device.h>
8#include <linux/slab.h>
9#include <linux/string.h>
10#include "../core.h"
11#include "pinctrl-aspeed.h"
12
13int aspeed_pinctrl_get_groups_count(struct pinctrl_dev *pctldev)
14{
15 struct aspeed_pinctrl_data *pdata = pinctrl_dev_get_drvdata(pctldev);
16
Andrew Jefferyefa56232019-06-28 12:08:37 +093017 return pdata->pinmux.ngroups;
Andrew Jeffery4d3d0e422016-08-30 17:24:24 +093018}
19
20const char *aspeed_pinctrl_get_group_name(struct pinctrl_dev *pctldev,
21 unsigned int group)
22{
23 struct aspeed_pinctrl_data *pdata = pinctrl_dev_get_drvdata(pctldev);
24
Andrew Jefferyefa56232019-06-28 12:08:37 +093025 return pdata->pinmux.groups[group].name;
Andrew Jeffery4d3d0e422016-08-30 17:24:24 +093026}
27
28int aspeed_pinctrl_get_group_pins(struct pinctrl_dev *pctldev,
29 unsigned int group, const unsigned int **pins,
30 unsigned int *npins)
31{
32 struct aspeed_pinctrl_data *pdata = pinctrl_dev_get_drvdata(pctldev);
33
Andrew Jefferyefa56232019-06-28 12:08:37 +093034 *pins = &pdata->pinmux.groups[group].pins[0];
35 *npins = pdata->pinmux.groups[group].npins;
Andrew Jeffery4d3d0e422016-08-30 17:24:24 +093036
37 return 0;
38}
39
40void aspeed_pinctrl_pin_dbg_show(struct pinctrl_dev *pctldev,
41 struct seq_file *s, unsigned int offset)
42{
43 seq_printf(s, " %s", dev_name(pctldev->dev));
44}
45
46int aspeed_pinmux_get_fn_count(struct pinctrl_dev *pctldev)
47{
48 struct aspeed_pinctrl_data *pdata = pinctrl_dev_get_drvdata(pctldev);
49
Andrew Jefferyefa56232019-06-28 12:08:37 +093050 return pdata->pinmux.nfunctions;
Andrew Jeffery4d3d0e422016-08-30 17:24:24 +093051}
52
53const char *aspeed_pinmux_get_fn_name(struct pinctrl_dev *pctldev,
54 unsigned int function)
55{
56 struct aspeed_pinctrl_data *pdata = pinctrl_dev_get_drvdata(pctldev);
57
Andrew Jefferyefa56232019-06-28 12:08:37 +093058 return pdata->pinmux.functions[function].name;
Andrew Jeffery4d3d0e422016-08-30 17:24:24 +093059}
60
61int aspeed_pinmux_get_fn_groups(struct pinctrl_dev *pctldev,
62 unsigned int function,
63 const char * const **groups,
64 unsigned int * const num_groups)
65{
66 struct aspeed_pinctrl_data *pdata = pinctrl_dev_get_drvdata(pctldev);
67
Andrew Jefferyefa56232019-06-28 12:08:37 +093068 *groups = pdata->pinmux.functions[function].groups;
69 *num_groups = pdata->pinmux.functions[function].ngroups;
Andrew Jeffery4d3d0e422016-08-30 17:24:24 +093070
71 return 0;
72}
73
Andrew Jeffery674fa8d2019-07-24 17:31:55 +093074static int aspeed_sig_expr_enable(struct aspeed_pinmux_data *ctx,
Andrew Jefferyefa56232019-06-28 12:08:37 +093075 const struct aspeed_sig_expr *expr)
Andrew Jeffery4d3d0e422016-08-30 17:24:24 +093076{
Andrew Jeffery7d29ed882016-12-20 18:05:48 +103077 int ret;
Andrew Jeffery4d3d0e422016-08-30 17:24:24 +093078
Andrew Jefferyaa639e42020-07-01 12:30:39 +093079 pr_debug("Enabling signal %s for %s\n", expr->signal,
80 expr->function);
81
Andrew Jefferyefa56232019-06-28 12:08:37 +093082 ret = aspeed_sig_expr_eval(ctx, expr, true);
Andrew Jeffery7d29ed882016-12-20 18:05:48 +103083 if (ret < 0)
84 return ret;
85
86 if (!ret)
Andrew Jefferyefa56232019-06-28 12:08:37 +093087 return aspeed_sig_expr_set(ctx, expr, true);
Andrew Jeffery7d29ed882016-12-20 18:05:48 +103088
89 return 0;
Andrew Jeffery4d3d0e422016-08-30 17:24:24 +093090}
91
Andrew Jeffery674fa8d2019-07-24 17:31:55 +093092static int aspeed_sig_expr_disable(struct aspeed_pinmux_data *ctx,
Andrew Jefferyefa56232019-06-28 12:08:37 +093093 const struct aspeed_sig_expr *expr)
Andrew Jeffery4d3d0e422016-08-30 17:24:24 +093094{
Andrew Jeffery7d29ed882016-12-20 18:05:48 +103095 int ret;
Andrew Jeffery5366f142016-09-28 00:20:13 +093096
Andrew Jefferyaa639e42020-07-01 12:30:39 +093097 pr_debug("Disabling signal %s for %s\n", expr->signal,
98 expr->function);
99
Andrew Jefferyefa56232019-06-28 12:08:37 +0930100 ret = aspeed_sig_expr_eval(ctx, expr, true);
Andrew Jeffery7d29ed882016-12-20 18:05:48 +1030101 if (ret < 0)
102 return ret;
103
104 if (ret)
Andrew Jefferyefa56232019-06-28 12:08:37 +0930105 return aspeed_sig_expr_set(ctx, expr, false);
Andrew Jeffery7d29ed882016-12-20 18:05:48 +1030106
107 return 0;
Andrew Jeffery4d3d0e422016-08-30 17:24:24 +0930108}
109
110/**
111 * Disable a signal on a pin by disabling all provided signal expressions.
112 *
Andrew Jefferyefa56232019-06-28 12:08:37 +0930113 * @ctx: The pinmux context
Andrew Jeffery4d3d0e422016-08-30 17:24:24 +0930114 * @exprs: The list of signal expressions (from a priority level on a pin)
Andrew Jeffery4d3d0e422016-08-30 17:24:24 +0930115 *
Andrew Jefferyb75dd872016-12-20 18:05:51 +1030116 * Return: 0 if all expressions are disabled, otherwise a negative error code
Andrew Jeffery4d3d0e422016-08-30 17:24:24 +0930117 */
Andrew Jeffery674fa8d2019-07-24 17:31:55 +0930118static int aspeed_disable_sig(struct aspeed_pinmux_data *ctx,
Andrew Jefferyefa56232019-06-28 12:08:37 +0930119 const struct aspeed_sig_expr **exprs)
Andrew Jeffery4d3d0e422016-08-30 17:24:24 +0930120{
Andrew Jeffery7d29ed882016-12-20 18:05:48 +1030121 int ret = 0;
Andrew Jeffery4d3d0e422016-08-30 17:24:24 +0930122
123 if (!exprs)
124 return true;
125
Andrew Jeffery7d29ed882016-12-20 18:05:48 +1030126 while (*exprs && !ret) {
Andrew Jefferyefa56232019-06-28 12:08:37 +0930127 ret = aspeed_sig_expr_disable(ctx, *exprs);
Andrew Jeffery4d3d0e422016-08-30 17:24:24 +0930128 exprs++;
129 }
130
Andrew Jeffery7d29ed882016-12-20 18:05:48 +1030131 return ret;
Andrew Jeffery4d3d0e422016-08-30 17:24:24 +0930132}
133
134/**
135 * Search for the signal expression needed to enable the pin's signal for the
136 * requested function.
137 *
138 * @exprs: List of signal expressions (haystack)
139 * @name: The name of the requested function (needle)
140 *
Andrew Jefferyb75dd872016-12-20 18:05:51 +1030141 * Return: A pointer to the signal expression whose function tag matches the
142 * provided name, otherwise NULL.
Andrew Jeffery4d3d0e422016-08-30 17:24:24 +0930143 *
144 */
145static const struct aspeed_sig_expr *aspeed_find_expr_by_name(
146 const struct aspeed_sig_expr **exprs, const char *name)
147{
148 while (*exprs) {
149 if (strcmp((*exprs)->function, name) == 0)
150 return *exprs;
151 exprs++;
152 }
153
154 return NULL;
155}
156
157static char *get_defined_attribute(const struct aspeed_pin_desc *pdesc,
158 const char *(*get)(
159 const struct aspeed_sig_expr *))
160{
161 char *found = NULL;
162 size_t len = 0;
163 const struct aspeed_sig_expr ***prios, **funcs, *expr;
164
165 prios = pdesc->prios;
166
167 while ((funcs = *prios)) {
168 while ((expr = *funcs)) {
169 const char *str = get(expr);
170 size_t delta = strlen(str) + 2;
171 char *expanded;
172
173 expanded = krealloc(found, len + delta + 1, GFP_KERNEL);
174 if (!expanded) {
175 kfree(found);
176 return expanded;
177 }
178
179 found = expanded;
180 found[len] = '\0';
181 len += delta;
182
183 strcat(found, str);
184 strcat(found, ", ");
185
186 funcs++;
187 }
188 prios++;
189 }
190
191 if (len < 2) {
192 kfree(found);
193 return NULL;
194 }
195
196 found[len - 2] = '\0';
197
198 return found;
199}
200
201static const char *aspeed_sig_expr_function(const struct aspeed_sig_expr *expr)
202{
203 return expr->function;
204}
205
206static char *get_defined_functions(const struct aspeed_pin_desc *pdesc)
207{
208 return get_defined_attribute(pdesc, aspeed_sig_expr_function);
209}
210
211static const char *aspeed_sig_expr_signal(const struct aspeed_sig_expr *expr)
212{
213 return expr->signal;
214}
215
216static char *get_defined_signals(const struct aspeed_pin_desc *pdesc)
217{
218 return get_defined_attribute(pdesc, aspeed_sig_expr_signal);
219}
220
221int aspeed_pinmux_set_mux(struct pinctrl_dev *pctldev, unsigned int function,
222 unsigned int group)
223{
224 int i;
Andrew Jeffery7d29ed882016-12-20 18:05:48 +1030225 int ret;
Andrew Jeffery674fa8d2019-07-24 17:31:55 +0930226 struct aspeed_pinctrl_data *pdata = pinctrl_dev_get_drvdata(pctldev);
Andrew Jefferyefa56232019-06-28 12:08:37 +0930227 const struct aspeed_pin_group *pgroup = &pdata->pinmux.groups[group];
Andrew Jeffery4d3d0e422016-08-30 17:24:24 +0930228 const struct aspeed_pin_function *pfunc =
Andrew Jefferyefa56232019-06-28 12:08:37 +0930229 &pdata->pinmux.functions[function];
Andrew Jeffery4d3d0e422016-08-30 17:24:24 +0930230
231 for (i = 0; i < pgroup->npins; i++) {
232 int pin = pgroup->pins[i];
233 const struct aspeed_pin_desc *pdesc = pdata->pins[pin].drv_data;
234 const struct aspeed_sig_expr *expr = NULL;
235 const struct aspeed_sig_expr **funcs;
236 const struct aspeed_sig_expr ***prios;
237
Andrew Jefferyaa639e42020-07-01 12:30:39 +0930238 pr_debug("Muxing pin %s for %s\n", pdesc->name, pfunc->name);
Andrew Jeffery7d29ed882016-12-20 18:05:48 +1030239
Andrew Jeffery4d3d0e422016-08-30 17:24:24 +0930240 if (!pdesc)
241 return -EINVAL;
242
243 prios = pdesc->prios;
244
245 if (!prios)
246 continue;
247
248 /* Disable functions at a higher priority than that requested */
249 while ((funcs = *prios)) {
250 expr = aspeed_find_expr_by_name(funcs, pfunc->name);
251
252 if (expr)
253 break;
254
Andrew Jefferyefa56232019-06-28 12:08:37 +0930255 ret = aspeed_disable_sig(&pdata->pinmux, funcs);
Andrew Jeffery7d29ed882016-12-20 18:05:48 +1030256 if (ret)
257 return ret;
Andrew Jeffery4d3d0e422016-08-30 17:24:24 +0930258
259 prios++;
260 }
261
262 if (!expr) {
263 char *functions = get_defined_functions(pdesc);
264 char *signals = get_defined_signals(pdesc);
265
266 pr_warn("No function %s found on pin %s (%d). Found signal(s) %s for function(s) %s\n",
267 pfunc->name, pdesc->name, pin, signals,
268 functions);
269 kfree(signals);
270 kfree(functions);
271
272 return -ENXIO;
273 }
274
Andrew Jefferyefa56232019-06-28 12:08:37 +0930275 ret = aspeed_sig_expr_enable(&pdata->pinmux, expr);
Andrew Jeffery7d29ed882016-12-20 18:05:48 +1030276 if (ret)
277 return ret;
Andrew Jefferyaa639e42020-07-01 12:30:39 +0930278
279 pr_debug("Muxed pin %s as %s for %s\n", pdesc->name, expr->signal,
280 expr->function);
Andrew Jeffery4d3d0e422016-08-30 17:24:24 +0930281 }
282
283 return 0;
284}
285
286static bool aspeed_expr_is_gpio(const struct aspeed_sig_expr *expr)
287{
288 /*
Andrew Jeffery7aeb3532020-11-26 17:03:37 +1030289 * We need to differentiate between GPIO and non-GPIO signals to
290 * implement the gpio_request_enable() interface. For better or worse
291 * the ASPEED pinctrl driver uses the expression names to determine
292 * whether an expression will mux a pin for GPIO.
Andrew Jeffery4d3d0e422016-08-30 17:24:24 +0930293 *
Andrew Jeffery7aeb3532020-11-26 17:03:37 +1030294 * Generally we have the following - A GPIO such as B1 has:
295 *
296 * - expr->signal set to "GPIOB1"
297 * - expr->function set to "GPIOB1"
298 *
299 * Using this fact we can determine whether the provided expression is
300 * a GPIO expression by testing the signal name for the string prefix
301 * "GPIO".
302 *
303 * However, some GPIOs are input-only, and the ASPEED datasheets name
304 * them differently. An input-only GPIO such as T0 has:
305 *
306 * - expr->signal set to "GPIT0"
307 * - expr->function set to "GPIT0"
308 *
309 * It's tempting to generalise the prefix test from "GPIO" to "GPI" to
310 * account for both GPIOs and GPIs, but in doing so we run aground on
311 * another feature:
312 *
313 * Some pins in the ASPEED BMC SoCs have a "pass-through" GPIO
314 * function where the input state of one pin is replicated as the
315 * output state of another (as if they were shorted together - a mux
316 * configuration that is typically enabled by hardware strapping).
317 * This feature allows the BMC to pass e.g. power button state through
318 * to the host while the BMC is yet to boot, but take control of the
319 * button state once the BMC has booted by muxing each pin as a
320 * separate, pin-specific GPIO.
321 *
322 * Conceptually this pass-through mode is a form of GPIO and is named
323 * as such in the datasheets, e.g. "GPID0". This naming similarity
324 * trips us up with the simple GPI-prefixed-signal-name scheme
325 * discussed above, as the pass-through configuration is not what we
326 * want when muxing a pin as GPIO for the GPIO subsystem.
327 *
328 * On e.g. the AST2400, a pass-through function "GPID0" is grouped on
329 * balls A18 and D16, where we have:
330 *
331 * For ball A18:
332 * - expr->signal set to "GPID0IN"
333 * - expr->function set to "GPID0"
334 *
335 * For ball D16:
336 * - expr->signal set to "GPID0OUT"
337 * - expr->function set to "GPID0"
338 *
339 * By contrast, the pin-specific GPIO expressions for the same pins are
340 * as follows:
341 *
342 * For ball A18:
343 * - expr->signal looks like "GPIOD0"
344 * - expr->function looks like "GPIOD0"
345 *
346 * For ball D16:
347 * - expr->signal looks like "GPIOD1"
348 * - expr->function looks like "GPIOD1"
349 *
350 * Testing both the signal _and_ function names gives us the means
351 * differentiate the pass-through GPIO pinmux configuration from the
352 * pin-specific configuration that the GPIO subsystem is after: An
353 * expression is a pin-specific (non-pass-through) GPIO configuration
354 * if the signal prefix is "GPI" and the signal name matches the
355 * function name.
Andrew Jeffery4d3d0e422016-08-30 17:24:24 +0930356 */
Andrew Jeffery7aeb3532020-11-26 17:03:37 +1030357 return !strncmp(expr->signal, "GPI", 3) &&
358 !strcmp(expr->signal, expr->function);
Andrew Jeffery4d3d0e422016-08-30 17:24:24 +0930359}
360
361static bool aspeed_gpio_in_exprs(const struct aspeed_sig_expr **exprs)
362{
363 if (!exprs)
364 return false;
365
366 while (*exprs) {
367 if (aspeed_expr_is_gpio(*exprs))
368 return true;
369 exprs++;
370 }
371
372 return false;
373}
374
375int aspeed_gpio_request_enable(struct pinctrl_dev *pctldev,
376 struct pinctrl_gpio_range *range,
377 unsigned int offset)
378{
Andrew Jeffery7d29ed882016-12-20 18:05:48 +1030379 int ret;
Andrew Jeffery674fa8d2019-07-24 17:31:55 +0930380 struct aspeed_pinctrl_data *pdata = pinctrl_dev_get_drvdata(pctldev);
Andrew Jeffery4d3d0e422016-08-30 17:24:24 +0930381 const struct aspeed_pin_desc *pdesc = pdata->pins[offset].drv_data;
382 const struct aspeed_sig_expr ***prios, **funcs, *expr;
383
384 if (!pdesc)
385 return -EINVAL;
386
387 prios = pdesc->prios;
388
389 if (!prios)
390 return -ENXIO;
391
Andrew Jefferyaa639e42020-07-01 12:30:39 +0930392 pr_debug("Muxing pin %s for GPIO\n", pdesc->name);
393
Andrew Jeffery4d3d0e422016-08-30 17:24:24 +0930394 /* Disable any functions of higher priority than GPIO */
395 while ((funcs = *prios)) {
396 if (aspeed_gpio_in_exprs(funcs))
397 break;
398
Andrew Jefferyefa56232019-06-28 12:08:37 +0930399 ret = aspeed_disable_sig(&pdata->pinmux, funcs);
Andrew Jeffery7d29ed882016-12-20 18:05:48 +1030400 if (ret)
401 return ret;
Andrew Jeffery4d3d0e422016-08-30 17:24:24 +0930402
403 prios++;
404 }
405
406 if (!funcs) {
407 char *signals = get_defined_signals(pdesc);
408
409 pr_warn("No GPIO signal type found on pin %s (%d). Found: %s\n",
410 pdesc->name, offset, signals);
411 kfree(signals);
412
413 return -ENXIO;
414 }
415
416 expr = *funcs;
417
418 /*
419 * Disabling all higher-priority expressions is enough to enable the
420 * lowest-priority signal type. As such it has no associated
421 * expression.
422 */
Andrew Jefferyaa639e42020-07-01 12:30:39 +0930423 if (!expr) {
424 pr_debug("Muxed pin %s as GPIO\n", pdesc->name);
Andrew Jeffery4d3d0e422016-08-30 17:24:24 +0930425 return 0;
Andrew Jefferyaa639e42020-07-01 12:30:39 +0930426 }
Andrew Jeffery4d3d0e422016-08-30 17:24:24 +0930427
428 /*
429 * If GPIO is not the lowest priority signal type, assume there is only
430 * one expression defined to enable the GPIO function
431 */
Andrew Jefferyaa639e42020-07-01 12:30:39 +0930432 ret = aspeed_sig_expr_enable(&pdata->pinmux, expr);
433 if (ret)
434 return ret;
435
436 pr_debug("Muxed pin %s as %s\n", pdesc->name, expr->signal);
437
438 return 0;
Andrew Jeffery4d3d0e422016-08-30 17:24:24 +0930439}
440
441int aspeed_pinctrl_probe(struct platform_device *pdev,
442 struct pinctrl_desc *pdesc,
443 struct aspeed_pinctrl_data *pdata)
444{
445 struct device *parent;
446 struct pinctrl_dev *pctl;
447
448 parent = pdev->dev.parent;
449 if (!parent) {
450 dev_err(&pdev->dev, "No parent for syscon pincontroller\n");
451 return -ENODEV;
452 }
453
Andrew Jefferyefa56232019-06-28 12:08:37 +0930454 pdata->scu = syscon_node_to_regmap(parent->of_node);
455 if (IS_ERR(pdata->scu)) {
Andrew Jeffery4d3d0e422016-08-30 17:24:24 +0930456 dev_err(&pdev->dev, "No regmap for syscon pincontroller parent\n");
Andrew Jefferyefa56232019-06-28 12:08:37 +0930457 return PTR_ERR(pdata->scu);
Andrew Jeffery4d3d0e422016-08-30 17:24:24 +0930458 }
459
Andrew Jefferyefa56232019-06-28 12:08:37 +0930460 pdata->pinmux.maps[ASPEED_IP_SCU] = pdata->scu;
461
Andrew Jeffery4d3d0e422016-08-30 17:24:24 +0930462 pctl = pinctrl_register(pdesc, &pdev->dev, pdata);
463
464 if (IS_ERR(pctl)) {
465 dev_err(&pdev->dev, "Failed to register pinctrl\n");
466 return PTR_ERR(pctl);
467 }
468
469 platform_set_drvdata(pdev, pdata);
470
471 return 0;
472}
Andrew Jeffery7f354fd2017-04-07 22:27:11 +0930473
474static inline bool pin_in_config_range(unsigned int offset,
475 const struct aspeed_pin_config *config)
476{
477 return offset >= config->pins[0] && offset <= config->pins[1];
478}
479
480static inline const struct aspeed_pin_config *find_pinconf_config(
481 const struct aspeed_pinctrl_data *pdata,
482 unsigned int offset,
483 enum pin_config_param param)
484{
485 unsigned int i;
486
487 for (i = 0; i < pdata->nconfigs; i++) {
488 if (param == pdata->configs[i].param &&
489 pin_in_config_range(offset, &pdata->configs[i]))
490 return &pdata->configs[i];
491 }
492
493 return NULL;
494}
495
Andrew Jeffery7f354fd2017-04-07 22:27:11 +0930496enum aspeed_pin_config_map_type { MAP_TYPE_ARG, MAP_TYPE_VAL };
497
Andrew Jeffery7f354fd2017-04-07 22:27:11 +0930498static const struct aspeed_pin_config_map *find_pinconf_map(
Johnny Huang5b854f22019-12-02 16:44:30 +1030499 const struct aspeed_pinctrl_data *pdata,
Andrew Jeffery7f354fd2017-04-07 22:27:11 +0930500 enum pin_config_param param,
501 enum aspeed_pin_config_map_type type,
502 s64 value)
503{
504 int i;
505
Johnny Huang5b854f22019-12-02 16:44:30 +1030506 for (i = 0; i < pdata->nconfmaps; i++) {
Andrew Jeffery7f354fd2017-04-07 22:27:11 +0930507 const struct aspeed_pin_config_map *elem;
508 bool match;
509
Johnny Huang5b854f22019-12-02 16:44:30 +1030510 elem = &pdata->confmaps[i];
Andrew Jeffery7f354fd2017-04-07 22:27:11 +0930511
512 switch (type) {
513 case MAP_TYPE_ARG:
514 match = (elem->arg == -1 || elem->arg == value);
515 break;
516 case MAP_TYPE_VAL:
517 match = (elem->val == value);
518 break;
519 }
520
521 if (param == elem->param && match)
522 return elem;
523 }
524
525 return NULL;
526}
527
528int aspeed_pin_config_get(struct pinctrl_dev *pctldev, unsigned int offset,
529 unsigned long *config)
530{
531 const enum pin_config_param param = pinconf_to_config_param(*config);
532 const struct aspeed_pin_config_map *pmap;
533 const struct aspeed_pinctrl_data *pdata;
534 const struct aspeed_pin_config *pconf;
535 unsigned int val;
536 int rc = 0;
537 u32 arg;
538
539 pdata = pinctrl_dev_get_drvdata(pctldev);
540 pconf = find_pinconf_config(pdata, offset, param);
541 if (!pconf)
542 return -ENOTSUPP;
543
Andrew Jefferyefa56232019-06-28 12:08:37 +0930544 rc = regmap_read(pdata->scu, pconf->reg, &val);
Andrew Jeffery7f354fd2017-04-07 22:27:11 +0930545 if (rc < 0)
546 return rc;
547
Johnny Huang5b854f22019-12-02 16:44:30 +1030548 pmap = find_pinconf_map(pdata, param, MAP_TYPE_VAL,
Johnny Huang5f52c8532019-12-02 16:44:31 +1030549 (val & pconf->mask) >> __ffs(pconf->mask));
Andrew Jeffery7f354fd2017-04-07 22:27:11 +0930550
551 if (!pmap)
552 return -EINVAL;
553
554 if (param == PIN_CONFIG_DRIVE_STRENGTH)
555 arg = (u32) pmap->arg;
556 else if (param == PIN_CONFIG_BIAS_PULL_DOWN)
557 arg = !!pmap->arg;
558 else
559 arg = 1;
560
561 if (!arg)
562 return -EINVAL;
563
564 *config = pinconf_to_config_packed(param, arg);
565
566 return 0;
567}
568
569int aspeed_pin_config_set(struct pinctrl_dev *pctldev, unsigned int offset,
570 unsigned long *configs, unsigned int num_configs)
571{
572 const struct aspeed_pinctrl_data *pdata;
573 unsigned int i;
574 int rc = 0;
575
576 pdata = pinctrl_dev_get_drvdata(pctldev);
577
578 for (i = 0; i < num_configs; i++) {
579 const struct aspeed_pin_config_map *pmap;
580 const struct aspeed_pin_config *pconf;
581 enum pin_config_param param;
582 unsigned int val;
583 u32 arg;
584
585 param = pinconf_to_config_param(configs[i]);
586 arg = pinconf_to_config_argument(configs[i]);
587
588 pconf = find_pinconf_config(pdata, offset, param);
589 if (!pconf)
590 return -ENOTSUPP;
591
Johnny Huang5b854f22019-12-02 16:44:30 +1030592 pmap = find_pinconf_map(pdata, param, MAP_TYPE_ARG, arg);
Andrew Jeffery7f354fd2017-04-07 22:27:11 +0930593
Igor Stoppa27d91e82018-08-31 01:34:25 +0300594 if (WARN_ON(!pmap))
Andrew Jeffery7f354fd2017-04-07 22:27:11 +0930595 return -EINVAL;
596
Johnny Huang5f52c8532019-12-02 16:44:31 +1030597 val = pmap->val << __ffs(pconf->mask);
Andrew Jeffery7f354fd2017-04-07 22:27:11 +0930598
Andrew Jefferyefa56232019-06-28 12:08:37 +0930599 rc = regmap_update_bits(pdata->scu, pconf->reg,
Andrew Jeffery1d6db5a2020-09-10 12:26:30 +0930600 pconf->mask, val);
Andrew Jeffery7f354fd2017-04-07 22:27:11 +0930601
602 if (rc < 0)
603 return rc;
604
Andrew Jeffery7e8d8ac2020-09-10 12:26:29 +0930605 pr_debug("%s: Set SCU%02X[0x%08X]=0x%X for param %d(=%d) on pin %d\n",
606 __func__, pconf->reg, pconf->mask,
607 val, param, arg, offset);
Andrew Jeffery7f354fd2017-04-07 22:27:11 +0930608 }
609
610 return 0;
611}
612
613int aspeed_pin_config_group_get(struct pinctrl_dev *pctldev,
614 unsigned int selector,
615 unsigned long *config)
616{
617 const unsigned int *pins;
618 unsigned int npins;
619 int rc;
620
621 rc = aspeed_pinctrl_get_group_pins(pctldev, selector, &pins, &npins);
622 if (rc < 0)
623 return rc;
624
625 if (!npins)
626 return -ENODEV;
627
628 rc = aspeed_pin_config_get(pctldev, pins[0], config);
629
630 return rc;
631}
632
633int aspeed_pin_config_group_set(struct pinctrl_dev *pctldev,
634 unsigned int selector,
635 unsigned long *configs,
636 unsigned int num_configs)
637{
638 const unsigned int *pins;
639 unsigned int npins;
640 int rc;
641 int i;
642
643 pr_debug("%s: Fetching pins for group selector %d\n",
644 __func__, selector);
645 rc = aspeed_pinctrl_get_group_pins(pctldev, selector, &pins, &npins);
646 if (rc < 0)
647 return rc;
648
649 for (i = 0; i < npins; i++) {
650 rc = aspeed_pin_config_set(pctldev, pins[i], configs,
651 num_configs);
652 if (rc < 0)
653 return rc;
654 }
655
656 return 0;
657}