blob: d0cbdb1ad76a99702016e633beb4243ffec316d7 [file] [log] [blame]
Linus Walleij394349f2011-11-24 18:27:15 +01001/*
2 * Core driver for the generic pin config portions of the pin control subsystem
3 *
4 * Copyright (C) 2011 ST-Ericsson SA
5 * Written on behalf of Linaro for ST-Ericsson
6 *
7 * Author: Linus Walleij <linus.walleij@linaro.org>
8 *
9 * License terms: GNU General Public License (GPL) version 2
10 */
11
12#define pr_fmt(fmt) "generic pinconfig core: " fmt
13
14#include <linux/kernel.h>
Haojian Zhuang9cfd1722013-02-17 19:42:53 +080015#include <linux/module.h>
Linus Walleij394349f2011-11-24 18:27:15 +010016#include <linux/init.h>
17#include <linux/device.h>
18#include <linux/slab.h>
19#include <linux/debugfs.h>
20#include <linux/seq_file.h>
21#include <linux/pinctrl/pinctrl.h>
22#include <linux/pinctrl/pinconf.h>
23#include <linux/pinctrl/pinconf-generic.h>
Heiko Stübner7db9af42013-06-10 21:40:29 +020024#include <linux/of.h>
Linus Walleij394349f2011-11-24 18:27:15 +010025#include "core.h"
26#include "pinconf.h"
Laxman Dewangane81c8f12013-08-06 18:42:34 +053027#include "pinctrl-utils.h"
Linus Walleij394349f2011-11-24 18:27:15 +010028
29#ifdef CONFIG_DEBUG_FS
Soren Brinkmann2500bcc2014-11-03 11:05:25 -080030static const struct pin_config_item conf_items[] = {
Masahiro Yamada3c4b23d2015-09-30 21:07:17 +090031 PCONFDUMP(PIN_CONFIG_BIAS_BUS_HOLD, "input bias bus hold", NULL, false),
Soren Brinkmanneec45072014-10-16 10:11:29 -070032 PCONFDUMP(PIN_CONFIG_BIAS_DISABLE, "input bias disabled", NULL, false),
33 PCONFDUMP(PIN_CONFIG_BIAS_HIGH_IMPEDANCE, "input bias high impedance", NULL, false),
Soren Brinkmanneec45072014-10-16 10:11:29 -070034 PCONFDUMP(PIN_CONFIG_BIAS_PULL_DOWN, "input bias pull down", NULL, false),
Heiko Stübner7970cb72013-06-06 16:44:25 +020035 PCONFDUMP(PIN_CONFIG_BIAS_PULL_PIN_DEFAULT,
Soren Brinkmanneec45072014-10-16 10:11:29 -070036 "input bias pull to pin specific state", NULL, false),
Masahiro Yamada3c4b23d2015-09-30 21:07:17 +090037 PCONFDUMP(PIN_CONFIG_BIAS_PULL_UP, "input bias pull up", NULL, false),
Soren Brinkmanneec45072014-10-16 10:11:29 -070038 PCONFDUMP(PIN_CONFIG_DRIVE_OPEN_DRAIN, "output drive open drain", NULL, false),
39 PCONFDUMP(PIN_CONFIG_DRIVE_OPEN_SOURCE, "output drive open source", NULL, false),
Masahiro Yamada3c4b23d2015-09-30 21:07:17 +090040 PCONFDUMP(PIN_CONFIG_DRIVE_PUSH_PULL, "output drive push pull", NULL, false),
Soren Brinkmanneec45072014-10-16 10:11:29 -070041 PCONFDUMP(PIN_CONFIG_DRIVE_STRENGTH, "output drive strength", "mA", true),
Guillaume La Roquec08e7e42019-05-14 10:26:48 +020042 PCONFDUMP(PIN_CONFIG_DRIVE_STRENGTH_UA, "output drive strength", "uA", true),
Soren Brinkmanneec45072014-10-16 10:11:29 -070043 PCONFDUMP(PIN_CONFIG_INPUT_DEBOUNCE, "input debounce", "usec", true),
Masahiro Yamada3c4b23d2015-09-30 21:07:17 +090044 PCONFDUMP(PIN_CONFIG_INPUT_ENABLE, "input enabled", NULL, false),
45 PCONFDUMP(PIN_CONFIG_INPUT_SCHMITT, "input schmitt trigger", NULL, false),
46 PCONFDUMP(PIN_CONFIG_INPUT_SCHMITT_ENABLE, "input schmitt enabled", NULL, false),
Soren Brinkmanneec45072014-10-16 10:11:29 -070047 PCONFDUMP(PIN_CONFIG_LOW_POWER_MODE, "pin low power", "mode", true),
Jacopo Mondi42556242017-06-22 12:00:58 +020048 PCONFDUMP(PIN_CONFIG_OUTPUT_ENABLE, "output enabled", NULL, false),
Soren Brinkmanneec45072014-10-16 10:11:29 -070049 PCONFDUMP(PIN_CONFIG_OUTPUT, "pin output", "level", true),
Masahiro Yamada3c4b23d2015-09-30 21:07:17 +090050 PCONFDUMP(PIN_CONFIG_POWER_SOURCE, "pin power source", "selector", true),
Baolin Wang6606bc92017-08-17 14:50:36 +080051 PCONFDUMP(PIN_CONFIG_SLEEP_HARDWARE_STATE, "sleep hardware state", NULL, false),
Masahiro Yamada3c4b23d2015-09-30 21:07:17 +090052 PCONFDUMP(PIN_CONFIG_SLEW_RATE, "slew rate", NULL, true),
Linus Walleije0e1e392017-10-28 15:37:17 +020053 PCONFDUMP(PIN_CONFIG_SKEW_DELAY, "skew delay", NULL, true),
Linus Walleij394349f2011-11-24 18:27:15 +010054};
55
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -080056static void pinconf_generic_dump_one(struct pinctrl_dev *pctldev,
57 struct seq_file *s, const char *gname,
58 unsigned pin,
59 const struct pin_config_item *items,
Masahiro Yamadaa672eb52016-05-25 15:37:27 +090060 int nitems, int *print_sep)
Linus Walleij394349f2011-11-24 18:27:15 +010061{
Linus Walleij394349f2011-11-24 18:27:15 +010062 int i;
63
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -080064 for (i = 0; i < nitems; i++) {
Linus Walleij394349f2011-11-24 18:27:15 +010065 unsigned long config;
66 int ret;
67
68 /* We want to check out this parameter */
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -080069 config = pinconf_to_config_packed(items[i].param, 0);
70 if (gname)
71 ret = pin_config_group_get(dev_name(pctldev->dev),
72 gname, &config);
73 else
74 ret = pin_config_get_for_pin(pctldev, pin, &config);
Linus Walleij394349f2011-11-24 18:27:15 +010075 /* These are legal errors */
76 if (ret == -EINVAL || ret == -ENOTSUPP)
77 continue;
78 if (ret) {
79 seq_printf(s, "ERROR READING CONFIG SETTING %d ", i);
80 continue;
81 }
Masahiro Yamadaa672eb52016-05-25 15:37:27 +090082 /* comma between multiple configs */
83 if (*print_sep)
84 seq_puts(s, ", ");
85 *print_sep = 1;
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -080086 seq_puts(s, items[i].display);
Linus Walleij394349f2011-11-24 18:27:15 +010087 /* Print unit if available */
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -080088 if (items[i].has_arg) {
Soren Brinkmanneec45072014-10-16 10:11:29 -070089 seq_printf(s, " (%u",
90 pinconf_to_config_argument(config));
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -080091 if (items[i].format)
92 seq_printf(s, " %s)", items[i].format);
Soren Brinkmanneec45072014-10-16 10:11:29 -070093 else
94 seq_puts(s, ")");
95 }
Linus Walleij394349f2011-11-24 18:27:15 +010096 }
97}
98
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -080099/**
100 * pinconf_generic_dump_pins - Print information about pin or group of pins
101 * @pctldev: Pincontrol device
102 * @s: File to print to
103 * @gname: Group name specifying pins
104 * @pin: Pin number specyfying pin
105 *
106 * Print the pinconf configuration for the requested pin(s) to @s. Pins can be
107 * specified either by pin using @pin or by group using @gname. Only one needs
108 * to be specified the other can be NULL/0.
109 */
110void pinconf_generic_dump_pins(struct pinctrl_dev *pctldev, struct seq_file *s,
111 const char *gname, unsigned pin)
Linus Walleij394349f2011-11-24 18:27:15 +0100112{
113 const struct pinconf_ops *ops = pctldev->desc->confops;
Masahiro Yamadaa672eb52016-05-25 15:37:27 +0900114 int print_sep = 0;
Linus Walleij394349f2011-11-24 18:27:15 +0100115
116 if (!ops->is_generic)
117 return;
118
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800119 /* generic parameters */
120 pinconf_generic_dump_one(pctldev, s, gname, pin, conf_items,
Masahiro Yamadaa672eb52016-05-25 15:37:27 +0900121 ARRAY_SIZE(conf_items), &print_sep);
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800122 /* driver-specific parameters */
Linus Walleijf684e4a2015-01-12 00:45:55 +0100123 if (pctldev->desc->num_custom_params &&
124 pctldev->desc->custom_conf_items)
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800125 pinconf_generic_dump_one(pctldev, s, gname, pin,
Linus Walleijf684e4a2015-01-12 00:45:55 +0100126 pctldev->desc->custom_conf_items,
Masahiro Yamadaa672eb52016-05-25 15:37:27 +0900127 pctldev->desc->num_custom_params,
128 &print_sep);
Linus Walleij394349f2011-11-24 18:27:15 +0100129}
130
Haojian Zhuang9cfd1722013-02-17 19:42:53 +0800131void pinconf_generic_dump_config(struct pinctrl_dev *pctldev,
132 struct seq_file *s, unsigned long config)
133{
134 int i;
135
Sachin Kamatb6465422013-03-15 10:23:16 +0530136 for (i = 0; i < ARRAY_SIZE(conf_items); i++) {
Haojian Zhuang9cfd1722013-02-17 19:42:53 +0800137 if (pinconf_to_config_param(config) != conf_items[i].param)
138 continue;
139 seq_printf(s, "%s: 0x%x", conf_items[i].display,
140 pinconf_to_config_argument(config));
141 }
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800142
Linus Walleijf684e4a2015-01-12 00:45:55 +0100143 if (!pctldev->desc->num_custom_params ||
144 !pctldev->desc->custom_conf_items)
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800145 return;
146
Linus Walleijf684e4a2015-01-12 00:45:55 +0100147 for (i = 0; i < pctldev->desc->num_custom_params; i++) {
148 if (pinconf_to_config_param(config) !=
149 pctldev->desc->custom_conf_items[i].param)
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800150 continue;
Linus Walleijf684e4a2015-01-12 00:45:55 +0100151 seq_printf(s, "%s: 0x%x",
152 pctldev->desc->custom_conf_items[i].display,
153 pinconf_to_config_argument(config));
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800154 }
Haojian Zhuang9cfd1722013-02-17 19:42:53 +0800155}
156EXPORT_SYMBOL_GPL(pinconf_generic_dump_config);
Linus Walleij394349f2011-11-24 18:27:15 +0100157#endif
Heiko Stübner7db9af42013-06-10 21:40:29 +0200158
159#ifdef CONFIG_OF
Linus Walleijf684e4a2015-01-12 00:45:55 +0100160static const struct pinconf_generic_params dt_params[] = {
Masahiro Yamada3c4b23d2015-09-30 21:07:17 +0900161 { "bias-bus-hold", PIN_CONFIG_BIAS_BUS_HOLD, 0 },
Heiko Stübner7db9af42013-06-10 21:40:29 +0200162 { "bias-disable", PIN_CONFIG_BIAS_DISABLE, 0 },
163 { "bias-high-impedance", PIN_CONFIG_BIAS_HIGH_IMPEDANCE, 0 },
Heiko Stübner9ee1f7d2013-06-14 17:42:49 +0200164 { "bias-pull-up", PIN_CONFIG_BIAS_PULL_UP, 1 },
Heiko Stübner9ee1f7d2013-06-14 17:42:49 +0200165 { "bias-pull-pin-default", PIN_CONFIG_BIAS_PULL_PIN_DEFAULT, 1 },
Masahiro Yamada3c4b23d2015-09-30 21:07:17 +0900166 { "bias-pull-down", PIN_CONFIG_BIAS_PULL_DOWN, 1 },
Heiko Stübner7db9af42013-06-10 21:40:29 +0200167 { "drive-open-drain", PIN_CONFIG_DRIVE_OPEN_DRAIN, 0 },
168 { "drive-open-source", PIN_CONFIG_DRIVE_OPEN_SOURCE, 0 },
Masahiro Yamada3c4b23d2015-09-30 21:07:17 +0900169 { "drive-push-pull", PIN_CONFIG_DRIVE_PUSH_PULL, 0 },
Heiko Stübner7db9af42013-06-10 21:40:29 +0200170 { "drive-strength", PIN_CONFIG_DRIVE_STRENGTH, 0 },
Guillaume La Roquec08e7e42019-05-14 10:26:48 +0200171 { "drive-strength-microamp", PIN_CONFIG_DRIVE_STRENGTH_UA, 0 },
Heiko Stübner7db9af42013-06-10 21:40:29 +0200172 { "input-debounce", PIN_CONFIG_INPUT_DEBOUNCE, 0 },
Masahiro Yamada3c4b23d2015-09-30 21:07:17 +0900173 { "input-disable", PIN_CONFIG_INPUT_ENABLE, 0 },
174 { "input-enable", PIN_CONFIG_INPUT_ENABLE, 1 },
Masahiro Yamada69c308e2015-09-30 21:07:18 +0900175 { "input-schmitt", PIN_CONFIG_INPUT_SCHMITT, 0 },
Masahiro Yamada3c4b23d2015-09-30 21:07:17 +0900176 { "input-schmitt-disable", PIN_CONFIG_INPUT_SCHMITT_ENABLE, 0 },
177 { "input-schmitt-enable", PIN_CONFIG_INPUT_SCHMITT_ENABLE, 1 },
Heiko Stübner9ee1f7d2013-06-14 17:42:49 +0200178 { "low-power-disable", PIN_CONFIG_LOW_POWER_MODE, 0 },
Masahiro Yamada3c4b23d2015-09-30 21:07:17 +0900179 { "low-power-enable", PIN_CONFIG_LOW_POWER_MODE, 1 },
Jacopo Mondi42556242017-06-22 12:00:58 +0200180 { "output-disable", PIN_CONFIG_OUTPUT_ENABLE, 0 },
181 { "output-enable", PIN_CONFIG_OUTPUT_ENABLE, 1 },
Heiko Stübner7db9af42013-06-10 21:40:29 +0200182 { "output-high", PIN_CONFIG_OUTPUT, 1, },
Masahiro Yamada3c4b23d2015-09-30 21:07:17 +0900183 { "output-low", PIN_CONFIG_OUTPUT, 0, },
184 { "power-source", PIN_CONFIG_POWER_SOURCE, 0 },
Baolin Wang6606bc92017-08-17 14:50:36 +0800185 { "sleep-hardware-state", PIN_CONFIG_SLEEP_HARDWARE_STATE, 0 },
Masahiro Yamada3c4b23d2015-09-30 21:07:17 +0900186 { "slew-rate", PIN_CONFIG_SLEW_RATE, 0 },
Linus Walleije0e1e392017-10-28 15:37:17 +0200187 { "skew-delay", PIN_CONFIG_SKEW_DELAY, 0 },
Heiko Stübner7db9af42013-06-10 21:40:29 +0200188};
189
190/**
Linus Walleijf684e4a2015-01-12 00:45:55 +0100191 * parse_dt_cfg() - Parse DT pinconf parameters
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800192 * @np: DT node
Linus Walleijf684e4a2015-01-12 00:45:55 +0100193 * @params: Array of describing generic parameters
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800194 * @count: Number of entries in @params
195 * @cfg: Array of parsed config options
196 * @ncfg: Number of entries in @cfg
197 *
198 * Parse the config options described in @params from @np and puts the result
Andy Shevchenko3ec440e2017-02-28 16:59:56 +0200199 * in @cfg. @cfg does not need to be empty, entries are added beginning at
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800200 * @ncfg. @ncfg is updated to reflect the number of entries after parsing. @cfg
201 * needs to have enough memory allocated to hold all possible entries.
Heiko Stübner7db9af42013-06-10 21:40:29 +0200202 */
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800203static void parse_dt_cfg(struct device_node *np,
Linus Walleijf684e4a2015-01-12 00:45:55 +0100204 const struct pinconf_generic_params *params,
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800205 unsigned int count, unsigned long *cfg,
206 unsigned int *ncfg)
Heiko Stübner7db9af42013-06-10 21:40:29 +0200207{
Heiko Stübner7db9af42013-06-10 21:40:29 +0200208 int i;
Heiko Stübner7db9af42013-06-10 21:40:29 +0200209
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800210 for (i = 0; i < count; i++) {
211 u32 val;
212 int ret;
Linus Walleijf684e4a2015-01-12 00:45:55 +0100213 const struct pinconf_generic_params *par = &params[i];
Heiko Stübner7db9af42013-06-10 21:40:29 +0200214
Heiko Stübner7db9af42013-06-10 21:40:29 +0200215 ret = of_property_read_u32(np, par->property, &val);
216
217 /* property not found */
218 if (ret == -EINVAL)
219 continue;
220
221 /* use default value, when no value is specified */
222 if (ret)
223 val = par->default_value;
224
225 pr_debug("found %s with value %u\n", par->property, val);
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800226 cfg[*ncfg] = pinconf_to_config_packed(par->param, val);
227 (*ncfg)++;
Heiko Stübner7db9af42013-06-10 21:40:29 +0200228 }
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800229}
230
231/**
232 * pinconf_generic_parse_dt_config()
233 * parse the config properties into generic pinconfig values.
234 * @np: node containing the pinconfig properties
235 * @configs: array with nconfigs entries containing the generic pinconf values
Yingjoe Chend9ac5e22015-11-25 20:13:23 +0800236 * must be freed when no longer necessary.
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800237 * @nconfigs: umber of configurations
238 */
239int pinconf_generic_parse_dt_config(struct device_node *np,
240 struct pinctrl_dev *pctldev,
241 unsigned long **configs,
242 unsigned int *nconfigs)
243{
244 unsigned long *cfg;
245 unsigned int max_cfg, ncfg = 0;
246 int ret;
247
248 if (!np)
249 return -EINVAL;
250
251 /* allocate a temporary array big enough to hold one of each option */
252 max_cfg = ARRAY_SIZE(dt_params);
253 if (pctldev)
Linus Walleijf684e4a2015-01-12 00:45:55 +0100254 max_cfg += pctldev->desc->num_custom_params;
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800255 cfg = kcalloc(max_cfg, sizeof(*cfg), GFP_KERNEL);
256 if (!cfg)
257 return -ENOMEM;
258
259 parse_dt_cfg(np, dt_params, ARRAY_SIZE(dt_params), cfg, &ncfg);
Linus Walleijf684e4a2015-01-12 00:45:55 +0100260 if (pctldev && pctldev->desc->num_custom_params &&
261 pctldev->desc->custom_params)
262 parse_dt_cfg(np, pctldev->desc->custom_params,
263 pctldev->desc->num_custom_params, cfg, &ncfg);
Heiko Stübner7db9af42013-06-10 21:40:29 +0200264
Heiko Stübner6abab2d42013-06-14 17:43:55 +0200265 ret = 0;
266
Heiko Stübnere4a88442013-06-14 17:43:21 +0200267 /* no configs found at all */
268 if (ncfg == 0) {
269 *configs = NULL;
270 *nconfigs = 0;
Heiko Stübner6abab2d42013-06-14 17:43:55 +0200271 goto out;
Heiko Stübnere4a88442013-06-14 17:43:21 +0200272 }
273
Heiko Stübner7db9af42013-06-10 21:40:29 +0200274 /*
275 * Now limit the number of configs to the real number of
276 * found properties.
277 */
Benoit Tainedb388df2014-05-26 17:21:27 +0200278 *configs = kmemdup(cfg, ncfg * sizeof(unsigned long), GFP_KERNEL);
Heiko Stübner6abab2d42013-06-14 17:43:55 +0200279 if (!*configs) {
280 ret = -ENOMEM;
281 goto out;
282 }
Heiko Stübner7db9af42013-06-10 21:40:29 +0200283
Heiko Stübner7db9af42013-06-10 21:40:29 +0200284 *nconfigs = ncfg;
Heiko Stübner6abab2d42013-06-14 17:43:55 +0200285
286out:
287 kfree(cfg);
288 return ret;
Heiko Stübner7db9af42013-06-10 21:40:29 +0200289}
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530290
291int pinconf_generic_dt_subnode_to_map(struct pinctrl_dev *pctldev,
292 struct device_node *np, struct pinctrl_map **map,
Laxman Dewangan3287c242013-08-21 16:53:37 +0530293 unsigned *reserved_maps, unsigned *num_maps,
294 enum pinctrl_map_type type)
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530295{
296 int ret;
297 const char *function;
298 struct device *dev = pctldev->dev;
299 unsigned long *configs = NULL;
300 unsigned num_configs = 0;
Baruch Siachc7289502015-03-19 22:17:41 +0200301 unsigned reserve, strings_count;
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530302 struct property *prop;
303 const char *group;
Soren Brinkmann31c89c92015-01-09 07:43:45 -0800304 const char *subnode_target_type = "pins";
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530305
Baruch Siachc7289502015-03-19 22:17:41 +0200306 ret = of_property_count_strings(np, "pins");
307 if (ret < 0) {
308 ret = of_property_count_strings(np, "groups");
309 if (ret < 0)
310 /* skip this node; may contain config child nodes */
311 return 0;
312 if (type == PIN_MAP_TYPE_INVALID)
313 type = PIN_MAP_TYPE_CONFIGS_GROUP;
314 subnode_target_type = "groups";
315 } else {
316 if (type == PIN_MAP_TYPE_INVALID)
317 type = PIN_MAP_TYPE_CONFIGS_PIN;
318 }
319 strings_count = ret;
320
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530321 ret = of_property_read_string(np, "function", &function);
322 if (ret < 0) {
323 /* EINVAL=missing, which is fine since it's optional */
324 if (ret != -EINVAL)
Rob Herringf5292d02017-07-18 16:43:23 -0500325 dev_err(dev, "%pOF: could not parse property function\n",
326 np);
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530327 function = NULL;
328 }
329
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800330 ret = pinconf_generic_parse_dt_config(np, pctldev, &configs,
331 &num_configs);
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530332 if (ret < 0) {
Rob Herringf5292d02017-07-18 16:43:23 -0500333 dev_err(dev, "%pOF: could not parse node property\n", np);
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530334 return ret;
335 }
336
337 reserve = 0;
338 if (function != NULL)
339 reserve++;
340 if (num_configs)
341 reserve++;
Soren Brinkmann31c89c92015-01-09 07:43:45 -0800342
Baruch Siachc7289502015-03-19 22:17:41 +0200343 reserve *= strings_count;
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530344
345 ret = pinctrl_utils_reserve_map(pctldev, map, reserved_maps,
346 num_maps, reserve);
347 if (ret < 0)
348 goto exit;
349
Soren Brinkmann31c89c92015-01-09 07:43:45 -0800350 of_property_for_each_string(np, subnode_target_type, prop, group) {
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530351 if (function) {
352 ret = pinctrl_utils_add_map_mux(pctldev, map,
353 reserved_maps, num_maps, group,
354 function);
355 if (ret < 0)
356 goto exit;
357 }
358
359 if (num_configs) {
360 ret = pinctrl_utils_add_map_configs(pctldev, map,
361 reserved_maps, num_maps, group, configs,
Laxman Dewangan3287c242013-08-21 16:53:37 +0530362 num_configs, type);
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530363 if (ret < 0)
364 goto exit;
365 }
366 }
367 ret = 0;
368
369exit:
370 kfree(configs);
371 return ret;
372}
373EXPORT_SYMBOL_GPL(pinconf_generic_dt_subnode_to_map);
374
375int pinconf_generic_dt_node_to_map(struct pinctrl_dev *pctldev,
376 struct device_node *np_config, struct pinctrl_map **map,
Laxman Dewangan3287c242013-08-21 16:53:37 +0530377 unsigned *num_maps, enum pinctrl_map_type type)
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530378{
379 unsigned reserved_maps;
380 struct device_node *np;
381 int ret;
382
383 reserved_maps = 0;
384 *map = NULL;
385 *num_maps = 0;
386
Baruch Siachc7289502015-03-19 22:17:41 +0200387 ret = pinconf_generic_dt_subnode_to_map(pctldev, np_config, map,
388 &reserved_maps, num_maps, type);
389 if (ret < 0)
390 goto exit;
391
Laxman Dewangane06c2ee2016-10-28 16:54:21 +0530392 for_each_available_child_of_node(np_config, np) {
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530393 ret = pinconf_generic_dt_subnode_to_map(pctldev, np, map,
Laxman Dewangan3287c242013-08-21 16:53:37 +0530394 &reserved_maps, num_maps, type);
Baruch Siachc7289502015-03-19 22:17:41 +0200395 if (ret < 0)
396 goto exit;
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530397 }
398 return 0;
Baruch Siachc7289502015-03-19 22:17:41 +0200399
400exit:
Irina Tirdead32f7fd2016-03-31 14:44:42 +0300401 pinctrl_utils_free_map(pctldev, *map, *num_maps);
Baruch Siachc7289502015-03-19 22:17:41 +0200402 return ret;
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530403}
404EXPORT_SYMBOL_GPL(pinconf_generic_dt_node_to_map);
405
Jon Hunter8dfebf52016-06-17 13:03:40 +0100406void pinconf_generic_dt_free_map(struct pinctrl_dev *pctldev,
407 struct pinctrl_map *map,
408 unsigned num_maps)
409{
410 pinctrl_utils_free_map(pctldev, map, num_maps);
411}
412EXPORT_SYMBOL_GPL(pinconf_generic_dt_free_map);
413
Heiko Stübner7db9af42013-06-10 21:40:29 +0200414#endif