blob: 5020ae5344794da4a64c571bc72e46243c853749 [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),
47 PCONFDUMP(PIN_CONFIG_OUTPUT, "pin output", "level", true),
Masahiro Yamada3c4b23d2015-09-30 21:07:17 +090048 PCONFDUMP(PIN_CONFIG_POWER_SOURCE, "pin power source", "selector", true),
49 PCONFDUMP(PIN_CONFIG_SLEW_RATE, "slew rate", NULL, true),
Linus Walleij394349f2011-11-24 18:27:15 +010050};
51
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -080052static void pinconf_generic_dump_one(struct pinctrl_dev *pctldev,
53 struct seq_file *s, const char *gname,
54 unsigned pin,
55 const struct pin_config_item *items,
Masahiro Yamadaa672eb52016-05-25 15:37:27 +090056 int nitems, int *print_sep)
Linus Walleij394349f2011-11-24 18:27:15 +010057{
Linus Walleij394349f2011-11-24 18:27:15 +010058 int i;
59
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -080060 for (i = 0; i < nitems; i++) {
Linus Walleij394349f2011-11-24 18:27:15 +010061 unsigned long config;
62 int ret;
63
64 /* We want to check out this parameter */
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -080065 config = pinconf_to_config_packed(items[i].param, 0);
66 if (gname)
67 ret = pin_config_group_get(dev_name(pctldev->dev),
68 gname, &config);
69 else
70 ret = pin_config_get_for_pin(pctldev, pin, &config);
Linus Walleij394349f2011-11-24 18:27:15 +010071 /* These are legal errors */
72 if (ret == -EINVAL || ret == -ENOTSUPP)
73 continue;
74 if (ret) {
75 seq_printf(s, "ERROR READING CONFIG SETTING %d ", i);
76 continue;
77 }
Masahiro Yamadaa672eb52016-05-25 15:37:27 +090078 /* comma between multiple configs */
79 if (*print_sep)
80 seq_puts(s, ", ");
81 *print_sep = 1;
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -080082 seq_puts(s, items[i].display);
Linus Walleij394349f2011-11-24 18:27:15 +010083 /* Print unit if available */
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -080084 if (items[i].has_arg) {
Soren Brinkmanneec45072014-10-16 10:11:29 -070085 seq_printf(s, " (%u",
86 pinconf_to_config_argument(config));
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -080087 if (items[i].format)
88 seq_printf(s, " %s)", items[i].format);
Soren Brinkmanneec45072014-10-16 10:11:29 -070089 else
90 seq_puts(s, ")");
91 }
Linus Walleij394349f2011-11-24 18:27:15 +010092 }
93}
94
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -080095/**
96 * pinconf_generic_dump_pins - Print information about pin or group of pins
97 * @pctldev: Pincontrol device
98 * @s: File to print to
99 * @gname: Group name specifying pins
100 * @pin: Pin number specyfying pin
101 *
102 * Print the pinconf configuration for the requested pin(s) to @s. Pins can be
103 * specified either by pin using @pin or by group using @gname. Only one needs
104 * to be specified the other can be NULL/0.
105 */
106void pinconf_generic_dump_pins(struct pinctrl_dev *pctldev, struct seq_file *s,
107 const char *gname, unsigned pin)
Linus Walleij394349f2011-11-24 18:27:15 +0100108{
109 const struct pinconf_ops *ops = pctldev->desc->confops;
Masahiro Yamadaa672eb52016-05-25 15:37:27 +0900110 int print_sep = 0;
Linus Walleij394349f2011-11-24 18:27:15 +0100111
112 if (!ops->is_generic)
113 return;
114
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800115 /* generic parameters */
116 pinconf_generic_dump_one(pctldev, s, gname, pin, conf_items,
Masahiro Yamadaa672eb52016-05-25 15:37:27 +0900117 ARRAY_SIZE(conf_items), &print_sep);
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800118 /* driver-specific parameters */
Linus Walleijf684e4a2015-01-12 00:45:55 +0100119 if (pctldev->desc->num_custom_params &&
120 pctldev->desc->custom_conf_items)
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800121 pinconf_generic_dump_one(pctldev, s, gname, pin,
Linus Walleijf684e4a2015-01-12 00:45:55 +0100122 pctldev->desc->custom_conf_items,
Masahiro Yamadaa672eb52016-05-25 15:37:27 +0900123 pctldev->desc->num_custom_params,
124 &print_sep);
Linus Walleij394349f2011-11-24 18:27:15 +0100125}
126
Haojian Zhuang9cfd1722013-02-17 19:42:53 +0800127void pinconf_generic_dump_config(struct pinctrl_dev *pctldev,
128 struct seq_file *s, unsigned long config)
129{
130 int i;
131
Sachin Kamatb6465422013-03-15 10:23:16 +0530132 for (i = 0; i < ARRAY_SIZE(conf_items); i++) {
Haojian Zhuang9cfd1722013-02-17 19:42:53 +0800133 if (pinconf_to_config_param(config) != conf_items[i].param)
134 continue;
135 seq_printf(s, "%s: 0x%x", conf_items[i].display,
136 pinconf_to_config_argument(config));
137 }
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800138
Linus Walleijf684e4a2015-01-12 00:45:55 +0100139 if (!pctldev->desc->num_custom_params ||
140 !pctldev->desc->custom_conf_items)
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800141 return;
142
Linus Walleijf684e4a2015-01-12 00:45:55 +0100143 for (i = 0; i < pctldev->desc->num_custom_params; i++) {
144 if (pinconf_to_config_param(config) !=
145 pctldev->desc->custom_conf_items[i].param)
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800146 continue;
Linus Walleijf684e4a2015-01-12 00:45:55 +0100147 seq_printf(s, "%s: 0x%x",
148 pctldev->desc->custom_conf_items[i].display,
149 pinconf_to_config_argument(config));
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800150 }
Haojian Zhuang9cfd1722013-02-17 19:42:53 +0800151}
152EXPORT_SYMBOL_GPL(pinconf_generic_dump_config);
Linus Walleij394349f2011-11-24 18:27:15 +0100153#endif
Heiko Stübner7db9af42013-06-10 21:40:29 +0200154
155#ifdef CONFIG_OF
Linus Walleijf684e4a2015-01-12 00:45:55 +0100156static const struct pinconf_generic_params dt_params[] = {
Masahiro Yamada3c4b23d2015-09-30 21:07:17 +0900157 { "bias-bus-hold", PIN_CONFIG_BIAS_BUS_HOLD, 0 },
Heiko Stübner7db9af42013-06-10 21:40:29 +0200158 { "bias-disable", PIN_CONFIG_BIAS_DISABLE, 0 },
159 { "bias-high-impedance", PIN_CONFIG_BIAS_HIGH_IMPEDANCE, 0 },
Heiko Stübner9ee1f7d2013-06-14 17:42:49 +0200160 { "bias-pull-up", PIN_CONFIG_BIAS_PULL_UP, 1 },
Heiko Stübner9ee1f7d2013-06-14 17:42:49 +0200161 { "bias-pull-pin-default", PIN_CONFIG_BIAS_PULL_PIN_DEFAULT, 1 },
Masahiro Yamada3c4b23d2015-09-30 21:07:17 +0900162 { "bias-pull-down", PIN_CONFIG_BIAS_PULL_DOWN, 1 },
Heiko Stübner7db9af42013-06-10 21:40:29 +0200163 { "drive-open-drain", PIN_CONFIG_DRIVE_OPEN_DRAIN, 0 },
164 { "drive-open-source", PIN_CONFIG_DRIVE_OPEN_SOURCE, 0 },
Masahiro Yamada3c4b23d2015-09-30 21:07:17 +0900165 { "drive-push-pull", PIN_CONFIG_DRIVE_PUSH_PULL, 0 },
Heiko Stübner7db9af42013-06-10 21:40:29 +0200166 { "drive-strength", PIN_CONFIG_DRIVE_STRENGTH, 0 },
Heiko Stübner7db9af42013-06-10 21:40:29 +0200167 { "input-debounce", PIN_CONFIG_INPUT_DEBOUNCE, 0 },
Masahiro Yamada3c4b23d2015-09-30 21:07:17 +0900168 { "input-disable", PIN_CONFIG_INPUT_ENABLE, 0 },
169 { "input-enable", PIN_CONFIG_INPUT_ENABLE, 1 },
Masahiro Yamada69c308e2015-09-30 21:07:18 +0900170 { "input-schmitt", PIN_CONFIG_INPUT_SCHMITT, 0 },
Masahiro Yamada3c4b23d2015-09-30 21:07:17 +0900171 { "input-schmitt-disable", PIN_CONFIG_INPUT_SCHMITT_ENABLE, 0 },
172 { "input-schmitt-enable", PIN_CONFIG_INPUT_SCHMITT_ENABLE, 1 },
Heiko Stübner9ee1f7d2013-06-14 17:42:49 +0200173 { "low-power-disable", PIN_CONFIG_LOW_POWER_MODE, 0 },
Masahiro Yamada3c4b23d2015-09-30 21:07:17 +0900174 { "low-power-enable", PIN_CONFIG_LOW_POWER_MODE, 1 },
Heiko Stübner7db9af42013-06-10 21:40:29 +0200175 { "output-high", PIN_CONFIG_OUTPUT, 1, },
Masahiro Yamada3c4b23d2015-09-30 21:07:17 +0900176 { "output-low", PIN_CONFIG_OUTPUT, 0, },
177 { "power-source", PIN_CONFIG_POWER_SOURCE, 0 },
178 { "slew-rate", PIN_CONFIG_SLEW_RATE, 0 },
Heiko Stübner7db9af42013-06-10 21:40:29 +0200179};
180
181/**
Linus Walleijf684e4a2015-01-12 00:45:55 +0100182 * parse_dt_cfg() - Parse DT pinconf parameters
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800183 * @np: DT node
Linus Walleijf684e4a2015-01-12 00:45:55 +0100184 * @params: Array of describing generic parameters
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800185 * @count: Number of entries in @params
186 * @cfg: Array of parsed config options
187 * @ncfg: Number of entries in @cfg
188 *
189 * Parse the config options described in @params from @np and puts the result
190 * in @cfg. @cfg does not need to be empty, entries are added beggining at
191 * @ncfg. @ncfg is updated to reflect the number of entries after parsing. @cfg
192 * needs to have enough memory allocated to hold all possible entries.
Heiko Stübner7db9af42013-06-10 21:40:29 +0200193 */
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800194static void parse_dt_cfg(struct device_node *np,
Linus Walleijf684e4a2015-01-12 00:45:55 +0100195 const struct pinconf_generic_params *params,
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800196 unsigned int count, unsigned long *cfg,
197 unsigned int *ncfg)
Heiko Stübner7db9af42013-06-10 21:40:29 +0200198{
Heiko Stübner7db9af42013-06-10 21:40:29 +0200199 int i;
Heiko Stübner7db9af42013-06-10 21:40:29 +0200200
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800201 for (i = 0; i < count; i++) {
202 u32 val;
203 int ret;
Linus Walleijf684e4a2015-01-12 00:45:55 +0100204 const struct pinconf_generic_params *par = &params[i];
Heiko Stübner7db9af42013-06-10 21:40:29 +0200205
Heiko Stübner7db9af42013-06-10 21:40:29 +0200206 ret = of_property_read_u32(np, par->property, &val);
207
208 /* property not found */
209 if (ret == -EINVAL)
210 continue;
211
212 /* use default value, when no value is specified */
213 if (ret)
214 val = par->default_value;
215
216 pr_debug("found %s with value %u\n", par->property, val);
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800217 cfg[*ncfg] = pinconf_to_config_packed(par->param, val);
218 (*ncfg)++;
Heiko Stübner7db9af42013-06-10 21:40:29 +0200219 }
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800220}
221
222/**
223 * pinconf_generic_parse_dt_config()
224 * parse the config properties into generic pinconfig values.
225 * @np: node containing the pinconfig properties
226 * @configs: array with nconfigs entries containing the generic pinconf values
Yingjoe Chend9ac5e22015-11-25 20:13:23 +0800227 * must be freed when no longer necessary.
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800228 * @nconfigs: umber of configurations
229 */
230int pinconf_generic_parse_dt_config(struct device_node *np,
231 struct pinctrl_dev *pctldev,
232 unsigned long **configs,
233 unsigned int *nconfigs)
234{
235 unsigned long *cfg;
236 unsigned int max_cfg, ncfg = 0;
237 int ret;
238
239 if (!np)
240 return -EINVAL;
241
242 /* allocate a temporary array big enough to hold one of each option */
243 max_cfg = ARRAY_SIZE(dt_params);
244 if (pctldev)
Linus Walleijf684e4a2015-01-12 00:45:55 +0100245 max_cfg += pctldev->desc->num_custom_params;
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800246 cfg = kcalloc(max_cfg, sizeof(*cfg), GFP_KERNEL);
247 if (!cfg)
248 return -ENOMEM;
249
250 parse_dt_cfg(np, dt_params, ARRAY_SIZE(dt_params), cfg, &ncfg);
Linus Walleijf684e4a2015-01-12 00:45:55 +0100251 if (pctldev && pctldev->desc->num_custom_params &&
252 pctldev->desc->custom_params)
253 parse_dt_cfg(np, pctldev->desc->custom_params,
254 pctldev->desc->num_custom_params, cfg, &ncfg);
Heiko Stübner7db9af42013-06-10 21:40:29 +0200255
Heiko Stübner6abab2d2013-06-14 17:43:55 +0200256 ret = 0;
257
Heiko Stübnere4a88442013-06-14 17:43:21 +0200258 /* no configs found at all */
259 if (ncfg == 0) {
260 *configs = NULL;
261 *nconfigs = 0;
Heiko Stübner6abab2d2013-06-14 17:43:55 +0200262 goto out;
Heiko Stübnere4a88442013-06-14 17:43:21 +0200263 }
264
Heiko Stübner7db9af42013-06-10 21:40:29 +0200265 /*
266 * Now limit the number of configs to the real number of
267 * found properties.
268 */
Benoit Tainedb388df2014-05-26 17:21:27 +0200269 *configs = kmemdup(cfg, ncfg * sizeof(unsigned long), GFP_KERNEL);
Heiko Stübner6abab2d2013-06-14 17:43:55 +0200270 if (!*configs) {
271 ret = -ENOMEM;
272 goto out;
273 }
Heiko Stübner7db9af42013-06-10 21:40:29 +0200274
Heiko Stübner7db9af42013-06-10 21:40:29 +0200275 *nconfigs = ncfg;
Heiko Stübner6abab2d2013-06-14 17:43:55 +0200276
277out:
278 kfree(cfg);
279 return ret;
Heiko Stübner7db9af42013-06-10 21:40:29 +0200280}
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530281
282int pinconf_generic_dt_subnode_to_map(struct pinctrl_dev *pctldev,
283 struct device_node *np, struct pinctrl_map **map,
Laxman Dewangan3287c242013-08-21 16:53:37 +0530284 unsigned *reserved_maps, unsigned *num_maps,
285 enum pinctrl_map_type type)
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530286{
287 int ret;
288 const char *function;
289 struct device *dev = pctldev->dev;
290 unsigned long *configs = NULL;
291 unsigned num_configs = 0;
Baruch Siachc7289502015-03-19 22:17:41 +0200292 unsigned reserve, strings_count;
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530293 struct property *prop;
294 const char *group;
Soren Brinkmann31c89c92015-01-09 07:43:45 -0800295 const char *subnode_target_type = "pins";
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530296
Baruch Siachc7289502015-03-19 22:17:41 +0200297 ret = of_property_count_strings(np, "pins");
298 if (ret < 0) {
299 ret = of_property_count_strings(np, "groups");
300 if (ret < 0)
301 /* skip this node; may contain config child nodes */
302 return 0;
303 if (type == PIN_MAP_TYPE_INVALID)
304 type = PIN_MAP_TYPE_CONFIGS_GROUP;
305 subnode_target_type = "groups";
306 } else {
307 if (type == PIN_MAP_TYPE_INVALID)
308 type = PIN_MAP_TYPE_CONFIGS_PIN;
309 }
310 strings_count = ret;
311
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530312 ret = of_property_read_string(np, "function", &function);
313 if (ret < 0) {
314 /* EINVAL=missing, which is fine since it's optional */
315 if (ret != -EINVAL)
Baruch Siach4024efb2015-03-19 22:17:42 +0200316 dev_err(dev, "%s: could not parse property function\n",
317 of_node_full_name(np));
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530318 function = NULL;
319 }
320
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800321 ret = pinconf_generic_parse_dt_config(np, pctldev, &configs,
322 &num_configs);
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530323 if (ret < 0) {
Baruch Siach4024efb2015-03-19 22:17:42 +0200324 dev_err(dev, "%s: could not parse node property\n",
325 of_node_full_name(np));
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530326 return ret;
327 }
328
329 reserve = 0;
330 if (function != NULL)
331 reserve++;
332 if (num_configs)
333 reserve++;
Soren Brinkmann31c89c92015-01-09 07:43:45 -0800334
Baruch Siachc7289502015-03-19 22:17:41 +0200335 reserve *= strings_count;
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530336
337 ret = pinctrl_utils_reserve_map(pctldev, map, reserved_maps,
338 num_maps, reserve);
339 if (ret < 0)
340 goto exit;
341
Soren Brinkmann31c89c92015-01-09 07:43:45 -0800342 of_property_for_each_string(np, subnode_target_type, prop, group) {
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530343 if (function) {
344 ret = pinctrl_utils_add_map_mux(pctldev, map,
345 reserved_maps, num_maps, group,
346 function);
347 if (ret < 0)
348 goto exit;
349 }
350
351 if (num_configs) {
352 ret = pinctrl_utils_add_map_configs(pctldev, map,
353 reserved_maps, num_maps, group, configs,
Laxman Dewangan3287c242013-08-21 16:53:37 +0530354 num_configs, type);
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530355 if (ret < 0)
356 goto exit;
357 }
358 }
359 ret = 0;
360
361exit:
362 kfree(configs);
363 return ret;
364}
365EXPORT_SYMBOL_GPL(pinconf_generic_dt_subnode_to_map);
366
367int pinconf_generic_dt_node_to_map(struct pinctrl_dev *pctldev,
368 struct device_node *np_config, struct pinctrl_map **map,
Laxman Dewangan3287c242013-08-21 16:53:37 +0530369 unsigned *num_maps, enum pinctrl_map_type type)
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530370{
371 unsigned reserved_maps;
372 struct device_node *np;
373 int ret;
374
375 reserved_maps = 0;
376 *map = NULL;
377 *num_maps = 0;
378
Baruch Siachc7289502015-03-19 22:17:41 +0200379 ret = pinconf_generic_dt_subnode_to_map(pctldev, np_config, map,
380 &reserved_maps, num_maps, type);
381 if (ret < 0)
382 goto exit;
383
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530384 for_each_child_of_node(np_config, np) {
385 ret = pinconf_generic_dt_subnode_to_map(pctldev, np, map,
Laxman Dewangan3287c242013-08-21 16:53:37 +0530386 &reserved_maps, num_maps, type);
Baruch Siachc7289502015-03-19 22:17:41 +0200387 if (ret < 0)
388 goto exit;
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530389 }
390 return 0;
Baruch Siachc7289502015-03-19 22:17:41 +0200391
392exit:
Irina Tirdead32f7fd2016-03-31 14:44:42 +0300393 pinctrl_utils_free_map(pctldev, *map, *num_maps);
Baruch Siachc7289502015-03-19 22:17:41 +0200394 return ret;
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530395}
396EXPORT_SYMBOL_GPL(pinconf_generic_dt_node_to_map);
397
Jon Hunter8dfebf52016-06-17 13:03:40 +0100398void pinconf_generic_dt_free_map(struct pinctrl_dev *pctldev,
399 struct pinctrl_map *map,
400 unsigned num_maps)
401{
402 pinctrl_utils_free_map(pctldev, map, num_maps);
403}
404EXPORT_SYMBOL_GPL(pinconf_generic_dt_free_map);
405
Heiko Stübner7db9af42013-06-10 21:40:29 +0200406#endif