blob: 0c914acef0b060800ac175fbb98a8971403717bb [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),
Soren Brinkmanneec45072014-10-16 10:11:29 -070042 PCONFDUMP(PIN_CONFIG_INPUT_DEBOUNCE, "input debounce", "usec", true),
Masahiro Yamada3c4b23d2015-09-30 21:07:17 +090043 PCONFDUMP(PIN_CONFIG_INPUT_ENABLE, "input enabled", NULL, false),
44 PCONFDUMP(PIN_CONFIG_INPUT_SCHMITT, "input schmitt trigger", NULL, false),
45 PCONFDUMP(PIN_CONFIG_INPUT_SCHMITT_ENABLE, "input schmitt enabled", NULL, false),
Soren Brinkmanneec45072014-10-16 10:11:29 -070046 PCONFDUMP(PIN_CONFIG_LOW_POWER_MODE, "pin low power", "mode", true),
Jacopo Mondi02f3167d2017-06-22 12:00:58 +020047 PCONFDUMP(PIN_CONFIG_OUTPUT_ENABLE, "output enabled", NULL, false),
Soren Brinkmanneec45072014-10-16 10:11:29 -070048 PCONFDUMP(PIN_CONFIG_OUTPUT, "pin output", "level", true),
Masahiro Yamada3c4b23d2015-09-30 21:07:17 +090049 PCONFDUMP(PIN_CONFIG_POWER_SOURCE, "pin power source", "selector", true),
50 PCONFDUMP(PIN_CONFIG_SLEW_RATE, "slew rate", NULL, true),
Linus Walleij394349f2011-11-24 18:27:15 +010051};
52
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -080053static void pinconf_generic_dump_one(struct pinctrl_dev *pctldev,
54 struct seq_file *s, const char *gname,
55 unsigned pin,
56 const struct pin_config_item *items,
Masahiro Yamadaa672eb52016-05-25 15:37:27 +090057 int nitems, int *print_sep)
Linus Walleij394349f2011-11-24 18:27:15 +010058{
Linus Walleij394349f2011-11-24 18:27:15 +010059 int i;
60
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -080061 for (i = 0; i < nitems; i++) {
Linus Walleij394349f2011-11-24 18:27:15 +010062 unsigned long config;
63 int ret;
64
65 /* We want to check out this parameter */
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -080066 config = pinconf_to_config_packed(items[i].param, 0);
67 if (gname)
68 ret = pin_config_group_get(dev_name(pctldev->dev),
69 gname, &config);
70 else
71 ret = pin_config_get_for_pin(pctldev, pin, &config);
Linus Walleij394349f2011-11-24 18:27:15 +010072 /* These are legal errors */
73 if (ret == -EINVAL || ret == -ENOTSUPP)
74 continue;
75 if (ret) {
76 seq_printf(s, "ERROR READING CONFIG SETTING %d ", i);
77 continue;
78 }
Masahiro Yamadaa672eb52016-05-25 15:37:27 +090079 /* comma between multiple configs */
80 if (*print_sep)
81 seq_puts(s, ", ");
82 *print_sep = 1;
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -080083 seq_puts(s, items[i].display);
Linus Walleij394349f2011-11-24 18:27:15 +010084 /* Print unit if available */
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -080085 if (items[i].has_arg) {
Soren Brinkmanneec45072014-10-16 10:11:29 -070086 seq_printf(s, " (%u",
87 pinconf_to_config_argument(config));
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -080088 if (items[i].format)
89 seq_printf(s, " %s)", items[i].format);
Soren Brinkmanneec45072014-10-16 10:11:29 -070090 else
91 seq_puts(s, ")");
92 }
Linus Walleij394349f2011-11-24 18:27:15 +010093 }
94}
95
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -080096/**
97 * pinconf_generic_dump_pins - Print information about pin or group of pins
98 * @pctldev: Pincontrol device
99 * @s: File to print to
100 * @gname: Group name specifying pins
101 * @pin: Pin number specyfying pin
102 *
103 * Print the pinconf configuration for the requested pin(s) to @s. Pins can be
104 * specified either by pin using @pin or by group using @gname. Only one needs
105 * to be specified the other can be NULL/0.
106 */
107void pinconf_generic_dump_pins(struct pinctrl_dev *pctldev, struct seq_file *s,
108 const char *gname, unsigned pin)
Linus Walleij394349f2011-11-24 18:27:15 +0100109{
110 const struct pinconf_ops *ops = pctldev->desc->confops;
Masahiro Yamadaa672eb52016-05-25 15:37:27 +0900111 int print_sep = 0;
Linus Walleij394349f2011-11-24 18:27:15 +0100112
113 if (!ops->is_generic)
114 return;
115
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800116 /* generic parameters */
117 pinconf_generic_dump_one(pctldev, s, gname, pin, conf_items,
Masahiro Yamadaa672eb52016-05-25 15:37:27 +0900118 ARRAY_SIZE(conf_items), &print_sep);
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800119 /* driver-specific parameters */
Linus Walleijf684e4a2015-01-12 00:45:55 +0100120 if (pctldev->desc->num_custom_params &&
121 pctldev->desc->custom_conf_items)
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800122 pinconf_generic_dump_one(pctldev, s, gname, pin,
Linus Walleijf684e4a2015-01-12 00:45:55 +0100123 pctldev->desc->custom_conf_items,
Masahiro Yamadaa672eb52016-05-25 15:37:27 +0900124 pctldev->desc->num_custom_params,
125 &print_sep);
Linus Walleij394349f2011-11-24 18:27:15 +0100126}
127
Haojian Zhuang9cfd1722013-02-17 19:42:53 +0800128void pinconf_generic_dump_config(struct pinctrl_dev *pctldev,
129 struct seq_file *s, unsigned long config)
130{
131 int i;
132
Sachin Kamatb6465422013-03-15 10:23:16 +0530133 for (i = 0; i < ARRAY_SIZE(conf_items); i++) {
Haojian Zhuang9cfd1722013-02-17 19:42:53 +0800134 if (pinconf_to_config_param(config) != conf_items[i].param)
135 continue;
136 seq_printf(s, "%s: 0x%x", conf_items[i].display,
137 pinconf_to_config_argument(config));
138 }
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800139
Linus Walleijf684e4a2015-01-12 00:45:55 +0100140 if (!pctldev->desc->num_custom_params ||
141 !pctldev->desc->custom_conf_items)
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800142 return;
143
Linus Walleijf684e4a2015-01-12 00:45:55 +0100144 for (i = 0; i < pctldev->desc->num_custom_params; i++) {
145 if (pinconf_to_config_param(config) !=
146 pctldev->desc->custom_conf_items[i].param)
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800147 continue;
Linus Walleijf684e4a2015-01-12 00:45:55 +0100148 seq_printf(s, "%s: 0x%x",
149 pctldev->desc->custom_conf_items[i].display,
150 pinconf_to_config_argument(config));
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800151 }
Haojian Zhuang9cfd1722013-02-17 19:42:53 +0800152}
153EXPORT_SYMBOL_GPL(pinconf_generic_dump_config);
Linus Walleij394349f2011-11-24 18:27:15 +0100154#endif
Heiko Stübner7db9af42013-06-10 21:40:29 +0200155
156#ifdef CONFIG_OF
Linus Walleijf684e4a2015-01-12 00:45:55 +0100157static const struct pinconf_generic_params dt_params[] = {
Masahiro Yamada3c4b23d2015-09-30 21:07:17 +0900158 { "bias-bus-hold", PIN_CONFIG_BIAS_BUS_HOLD, 0 },
Heiko Stübner7db9af42013-06-10 21:40:29 +0200159 { "bias-disable", PIN_CONFIG_BIAS_DISABLE, 0 },
160 { "bias-high-impedance", PIN_CONFIG_BIAS_HIGH_IMPEDANCE, 0 },
Heiko Stübner9ee1f7d2013-06-14 17:42:49 +0200161 { "bias-pull-up", PIN_CONFIG_BIAS_PULL_UP, 1 },
Heiko Stübner9ee1f7d2013-06-14 17:42:49 +0200162 { "bias-pull-pin-default", PIN_CONFIG_BIAS_PULL_PIN_DEFAULT, 1 },
Masahiro Yamada3c4b23d2015-09-30 21:07:17 +0900163 { "bias-pull-down", PIN_CONFIG_BIAS_PULL_DOWN, 1 },
Heiko Stübner7db9af42013-06-10 21:40:29 +0200164 { "drive-open-drain", PIN_CONFIG_DRIVE_OPEN_DRAIN, 0 },
165 { "drive-open-source", PIN_CONFIG_DRIVE_OPEN_SOURCE, 0 },
Masahiro Yamada3c4b23d2015-09-30 21:07:17 +0900166 { "drive-push-pull", PIN_CONFIG_DRIVE_PUSH_PULL, 0 },
Heiko Stübner7db9af42013-06-10 21:40:29 +0200167 { "drive-strength", PIN_CONFIG_DRIVE_STRENGTH, 0 },
Heiko Stübner7db9af42013-06-10 21:40:29 +0200168 { "input-debounce", PIN_CONFIG_INPUT_DEBOUNCE, 0 },
Masahiro Yamada3c4b23d2015-09-30 21:07:17 +0900169 { "input-disable", PIN_CONFIG_INPUT_ENABLE, 0 },
170 { "input-enable", PIN_CONFIG_INPUT_ENABLE, 1 },
Masahiro Yamada69c308e2015-09-30 21:07:18 +0900171 { "input-schmitt", PIN_CONFIG_INPUT_SCHMITT, 0 },
Masahiro Yamada3c4b23d2015-09-30 21:07:17 +0900172 { "input-schmitt-disable", PIN_CONFIG_INPUT_SCHMITT_ENABLE, 0 },
173 { "input-schmitt-enable", PIN_CONFIG_INPUT_SCHMITT_ENABLE, 1 },
Heiko Stübner9ee1f7d2013-06-14 17:42:49 +0200174 { "low-power-disable", PIN_CONFIG_LOW_POWER_MODE, 0 },
Masahiro Yamada3c4b23d2015-09-30 21:07:17 +0900175 { "low-power-enable", PIN_CONFIG_LOW_POWER_MODE, 1 },
Jacopo Mondi02f3167d2017-06-22 12:00:58 +0200176 { "output-disable", PIN_CONFIG_OUTPUT_ENABLE, 0 },
177 { "output-enable", PIN_CONFIG_OUTPUT_ENABLE, 1 },
Heiko Stübner7db9af42013-06-10 21:40:29 +0200178 { "output-high", PIN_CONFIG_OUTPUT, 1, },
Masahiro Yamada3c4b23d2015-09-30 21:07:17 +0900179 { "output-low", PIN_CONFIG_OUTPUT, 0, },
180 { "power-source", PIN_CONFIG_POWER_SOURCE, 0 },
181 { "slew-rate", PIN_CONFIG_SLEW_RATE, 0 },
Heiko Stübner7db9af42013-06-10 21:40:29 +0200182};
183
184/**
Linus Walleijf684e4a2015-01-12 00:45:55 +0100185 * parse_dt_cfg() - Parse DT pinconf parameters
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800186 * @np: DT node
Linus Walleijf684e4a2015-01-12 00:45:55 +0100187 * @params: Array of describing generic parameters
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800188 * @count: Number of entries in @params
189 * @cfg: Array of parsed config options
190 * @ncfg: Number of entries in @cfg
191 *
192 * Parse the config options described in @params from @np and puts the result
193 * in @cfg. @cfg does not need to be empty, entries are added beggining at
194 * @ncfg. @ncfg is updated to reflect the number of entries after parsing. @cfg
195 * needs to have enough memory allocated to hold all possible entries.
Heiko Stübner7db9af42013-06-10 21:40:29 +0200196 */
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800197static void parse_dt_cfg(struct device_node *np,
Linus Walleijf684e4a2015-01-12 00:45:55 +0100198 const struct pinconf_generic_params *params,
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800199 unsigned int count, unsigned long *cfg,
200 unsigned int *ncfg)
Heiko Stübner7db9af42013-06-10 21:40:29 +0200201{
Heiko Stübner7db9af42013-06-10 21:40:29 +0200202 int i;
Heiko Stübner7db9af42013-06-10 21:40:29 +0200203
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800204 for (i = 0; i < count; i++) {
205 u32 val;
206 int ret;
Linus Walleijf684e4a2015-01-12 00:45:55 +0100207 const struct pinconf_generic_params *par = &params[i];
Heiko Stübner7db9af42013-06-10 21:40:29 +0200208
Heiko Stübner7db9af42013-06-10 21:40:29 +0200209 ret = of_property_read_u32(np, par->property, &val);
210
211 /* property not found */
212 if (ret == -EINVAL)
213 continue;
214
215 /* use default value, when no value is specified */
216 if (ret)
217 val = par->default_value;
218
219 pr_debug("found %s with value %u\n", par->property, val);
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800220 cfg[*ncfg] = pinconf_to_config_packed(par->param, val);
221 (*ncfg)++;
Heiko Stübner7db9af42013-06-10 21:40:29 +0200222 }
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800223}
224
225/**
226 * pinconf_generic_parse_dt_config()
227 * parse the config properties into generic pinconfig values.
228 * @np: node containing the pinconfig properties
229 * @configs: array with nconfigs entries containing the generic pinconf values
Yingjoe Chend9ac5e22015-11-25 20:13:23 +0800230 * must be freed when no longer necessary.
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800231 * @nconfigs: umber of configurations
232 */
233int pinconf_generic_parse_dt_config(struct device_node *np,
234 struct pinctrl_dev *pctldev,
235 unsigned long **configs,
236 unsigned int *nconfigs)
237{
238 unsigned long *cfg;
239 unsigned int max_cfg, ncfg = 0;
240 int ret;
241
242 if (!np)
243 return -EINVAL;
244
245 /* allocate a temporary array big enough to hold one of each option */
246 max_cfg = ARRAY_SIZE(dt_params);
247 if (pctldev)
Linus Walleijf684e4a2015-01-12 00:45:55 +0100248 max_cfg += pctldev->desc->num_custom_params;
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800249 cfg = kcalloc(max_cfg, sizeof(*cfg), GFP_KERNEL);
250 if (!cfg)
251 return -ENOMEM;
252
253 parse_dt_cfg(np, dt_params, ARRAY_SIZE(dt_params), cfg, &ncfg);
Linus Walleijf684e4a2015-01-12 00:45:55 +0100254 if (pctldev && pctldev->desc->num_custom_params &&
255 pctldev->desc->custom_params)
256 parse_dt_cfg(np, pctldev->desc->custom_params,
257 pctldev->desc->num_custom_params, cfg, &ncfg);
Heiko Stübner7db9af42013-06-10 21:40:29 +0200258
Heiko Stübner6abab2d2013-06-14 17:43:55 +0200259 ret = 0;
260
Heiko Stübnere4a88442013-06-14 17:43:21 +0200261 /* no configs found at all */
262 if (ncfg == 0) {
263 *configs = NULL;
264 *nconfigs = 0;
Heiko Stübner6abab2d2013-06-14 17:43:55 +0200265 goto out;
Heiko Stübnere4a88442013-06-14 17:43:21 +0200266 }
267
Heiko Stübner7db9af42013-06-10 21:40:29 +0200268 /*
269 * Now limit the number of configs to the real number of
270 * found properties.
271 */
Benoit Tainedb388df2014-05-26 17:21:27 +0200272 *configs = kmemdup(cfg, ncfg * sizeof(unsigned long), GFP_KERNEL);
Heiko Stübner6abab2d2013-06-14 17:43:55 +0200273 if (!*configs) {
274 ret = -ENOMEM;
275 goto out;
276 }
Heiko Stübner7db9af42013-06-10 21:40:29 +0200277
Heiko Stübner7db9af42013-06-10 21:40:29 +0200278 *nconfigs = ncfg;
Heiko Stübner6abab2d2013-06-14 17:43:55 +0200279
280out:
281 kfree(cfg);
282 return ret;
Heiko Stübner7db9af42013-06-10 21:40:29 +0200283}
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530284
285int pinconf_generic_dt_subnode_to_map(struct pinctrl_dev *pctldev,
286 struct device_node *np, struct pinctrl_map **map,
Laxman Dewangan3287c242013-08-21 16:53:37 +0530287 unsigned *reserved_maps, unsigned *num_maps,
288 enum pinctrl_map_type type)
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530289{
290 int ret;
291 const char *function;
292 struct device *dev = pctldev->dev;
293 unsigned long *configs = NULL;
294 unsigned num_configs = 0;
Baruch Siachc7289502015-03-19 22:17:41 +0200295 unsigned reserve, strings_count;
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530296 struct property *prop;
297 const char *group;
Soren Brinkmann31c89c92015-01-09 07:43:45 -0800298 const char *subnode_target_type = "pins";
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530299
Baruch Siachc7289502015-03-19 22:17:41 +0200300 ret = of_property_count_strings(np, "pins");
301 if (ret < 0) {
302 ret = of_property_count_strings(np, "groups");
303 if (ret < 0)
304 /* skip this node; may contain config child nodes */
305 return 0;
306 if (type == PIN_MAP_TYPE_INVALID)
307 type = PIN_MAP_TYPE_CONFIGS_GROUP;
308 subnode_target_type = "groups";
309 } else {
310 if (type == PIN_MAP_TYPE_INVALID)
311 type = PIN_MAP_TYPE_CONFIGS_PIN;
312 }
313 strings_count = ret;
314
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530315 ret = of_property_read_string(np, "function", &function);
316 if (ret < 0) {
317 /* EINVAL=missing, which is fine since it's optional */
318 if (ret != -EINVAL)
Baruch Siach4024efb2015-03-19 22:17:42 +0200319 dev_err(dev, "%s: could not parse property function\n",
320 of_node_full_name(np));
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530321 function = NULL;
322 }
323
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800324 ret = pinconf_generic_parse_dt_config(np, pctldev, &configs,
325 &num_configs);
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530326 if (ret < 0) {
Baruch Siach4024efb2015-03-19 22:17:42 +0200327 dev_err(dev, "%s: could not parse node property\n",
328 of_node_full_name(np));
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530329 return ret;
330 }
331
332 reserve = 0;
333 if (function != NULL)
334 reserve++;
335 if (num_configs)
336 reserve++;
Soren Brinkmann31c89c92015-01-09 07:43:45 -0800337
Baruch Siachc7289502015-03-19 22:17:41 +0200338 reserve *= strings_count;
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530339
340 ret = pinctrl_utils_reserve_map(pctldev, map, reserved_maps,
341 num_maps, reserve);
342 if (ret < 0)
343 goto exit;
344
Soren Brinkmann31c89c92015-01-09 07:43:45 -0800345 of_property_for_each_string(np, subnode_target_type, prop, group) {
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530346 if (function) {
347 ret = pinctrl_utils_add_map_mux(pctldev, map,
348 reserved_maps, num_maps, group,
349 function);
350 if (ret < 0)
351 goto exit;
352 }
353
354 if (num_configs) {
355 ret = pinctrl_utils_add_map_configs(pctldev, map,
356 reserved_maps, num_maps, group, configs,
Laxman Dewangan3287c242013-08-21 16:53:37 +0530357 num_configs, type);
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530358 if (ret < 0)
359 goto exit;
360 }
361 }
362 ret = 0;
363
364exit:
365 kfree(configs);
366 return ret;
367}
368EXPORT_SYMBOL_GPL(pinconf_generic_dt_subnode_to_map);
369
370int pinconf_generic_dt_node_to_map(struct pinctrl_dev *pctldev,
371 struct device_node *np_config, struct pinctrl_map **map,
Laxman Dewangan3287c242013-08-21 16:53:37 +0530372 unsigned *num_maps, enum pinctrl_map_type type)
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530373{
374 unsigned reserved_maps;
375 struct device_node *np;
376 int ret;
377
378 reserved_maps = 0;
379 *map = NULL;
380 *num_maps = 0;
381
Baruch Siachc7289502015-03-19 22:17:41 +0200382 ret = pinconf_generic_dt_subnode_to_map(pctldev, np_config, map,
383 &reserved_maps, num_maps, type);
384 if (ret < 0)
385 goto exit;
386
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530387 for_each_child_of_node(np_config, np) {
388 ret = pinconf_generic_dt_subnode_to_map(pctldev, np, map,
Laxman Dewangan3287c242013-08-21 16:53:37 +0530389 &reserved_maps, num_maps, type);
Baruch Siachc7289502015-03-19 22:17:41 +0200390 if (ret < 0)
391 goto exit;
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530392 }
393 return 0;
Baruch Siachc7289502015-03-19 22:17:41 +0200394
395exit:
Irina Tirdead32f7fd2016-03-31 14:44:42 +0300396 pinctrl_utils_free_map(pctldev, *map, *num_maps);
Baruch Siachc7289502015-03-19 22:17:41 +0200397 return ret;
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530398}
399EXPORT_SYMBOL_GPL(pinconf_generic_dt_node_to_map);
400
Jon Hunter8dfebf52016-06-17 13:03:40 +0100401void pinconf_generic_dt_free_map(struct pinctrl_dev *pctldev,
402 struct pinctrl_map *map,
403 unsigned num_maps)
404{
405 pinctrl_utils_free_map(pctldev, map, num_maps);
406}
407EXPORT_SYMBOL_GPL(pinconf_generic_dt_free_map);
408
Heiko Stübner7db9af42013-06-10 21:40:29 +0200409#endif