blob: 099a3442ff4214b2ab55497a93d49774e89d1c65 [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,
56 int nitems)
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 }
78 /* Space between multiple configs */
79 seq_puts(s, " ");
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -080080 seq_puts(s, items[i].display);
Linus Walleij394349f2011-11-24 18:27:15 +010081 /* Print unit if available */
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -080082 if (items[i].has_arg) {
Soren Brinkmanneec45072014-10-16 10:11:29 -070083 seq_printf(s, " (%u",
84 pinconf_to_config_argument(config));
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -080085 if (items[i].format)
86 seq_printf(s, " %s)", items[i].format);
Soren Brinkmanneec45072014-10-16 10:11:29 -070087 else
88 seq_puts(s, ")");
89 }
Linus Walleij394349f2011-11-24 18:27:15 +010090 }
91}
92
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -080093/**
94 * pinconf_generic_dump_pins - Print information about pin or group of pins
95 * @pctldev: Pincontrol device
96 * @s: File to print to
97 * @gname: Group name specifying pins
98 * @pin: Pin number specyfying pin
99 *
100 * Print the pinconf configuration for the requested pin(s) to @s. Pins can be
101 * specified either by pin using @pin or by group using @gname. Only one needs
102 * to be specified the other can be NULL/0.
103 */
104void pinconf_generic_dump_pins(struct pinctrl_dev *pctldev, struct seq_file *s,
105 const char *gname, unsigned pin)
Linus Walleij394349f2011-11-24 18:27:15 +0100106{
107 const struct pinconf_ops *ops = pctldev->desc->confops;
Linus Walleij394349f2011-11-24 18:27:15 +0100108
109 if (!ops->is_generic)
110 return;
111
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800112 /* generic parameters */
113 pinconf_generic_dump_one(pctldev, s, gname, pin, conf_items,
114 ARRAY_SIZE(conf_items));
115 /* driver-specific parameters */
Linus Walleijf684e4a2015-01-12 00:45:55 +0100116 if (pctldev->desc->num_custom_params &&
117 pctldev->desc->custom_conf_items)
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800118 pinconf_generic_dump_one(pctldev, s, gname, pin,
Linus Walleijf684e4a2015-01-12 00:45:55 +0100119 pctldev->desc->custom_conf_items,
120 pctldev->desc->num_custom_params);
Linus Walleij394349f2011-11-24 18:27:15 +0100121}
122
Haojian Zhuang9cfd1722013-02-17 19:42:53 +0800123void pinconf_generic_dump_config(struct pinctrl_dev *pctldev,
124 struct seq_file *s, unsigned long config)
125{
126 int i;
127
Sachin Kamatb6465422013-03-15 10:23:16 +0530128 for (i = 0; i < ARRAY_SIZE(conf_items); i++) {
Haojian Zhuang9cfd1722013-02-17 19:42:53 +0800129 if (pinconf_to_config_param(config) != conf_items[i].param)
130 continue;
131 seq_printf(s, "%s: 0x%x", conf_items[i].display,
132 pinconf_to_config_argument(config));
133 }
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800134
Linus Walleijf684e4a2015-01-12 00:45:55 +0100135 if (!pctldev->desc->num_custom_params ||
136 !pctldev->desc->custom_conf_items)
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800137 return;
138
Linus Walleijf684e4a2015-01-12 00:45:55 +0100139 for (i = 0; i < pctldev->desc->num_custom_params; i++) {
140 if (pinconf_to_config_param(config) !=
141 pctldev->desc->custom_conf_items[i].param)
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800142 continue;
Linus Walleijf684e4a2015-01-12 00:45:55 +0100143 seq_printf(s, "%s: 0x%x",
144 pctldev->desc->custom_conf_items[i].display,
145 pinconf_to_config_argument(config));
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800146 }
Haojian Zhuang9cfd1722013-02-17 19:42:53 +0800147}
148EXPORT_SYMBOL_GPL(pinconf_generic_dump_config);
Linus Walleij394349f2011-11-24 18:27:15 +0100149#endif
Heiko Stübner7db9af42013-06-10 21:40:29 +0200150
151#ifdef CONFIG_OF
Linus Walleijf684e4a2015-01-12 00:45:55 +0100152static const struct pinconf_generic_params dt_params[] = {
Masahiro Yamada3c4b23d2015-09-30 21:07:17 +0900153 { "bias-bus-hold", PIN_CONFIG_BIAS_BUS_HOLD, 0 },
Heiko Stübner7db9af42013-06-10 21:40:29 +0200154 { "bias-disable", PIN_CONFIG_BIAS_DISABLE, 0 },
155 { "bias-high-impedance", PIN_CONFIG_BIAS_HIGH_IMPEDANCE, 0 },
Heiko Stübner9ee1f7d2013-06-14 17:42:49 +0200156 { "bias-pull-up", PIN_CONFIG_BIAS_PULL_UP, 1 },
Heiko Stübner9ee1f7d2013-06-14 17:42:49 +0200157 { "bias-pull-pin-default", PIN_CONFIG_BIAS_PULL_PIN_DEFAULT, 1 },
Masahiro Yamada3c4b23d2015-09-30 21:07:17 +0900158 { "bias-pull-down", PIN_CONFIG_BIAS_PULL_DOWN, 1 },
Heiko Stübner7db9af42013-06-10 21:40:29 +0200159 { "drive-open-drain", PIN_CONFIG_DRIVE_OPEN_DRAIN, 0 },
160 { "drive-open-source", PIN_CONFIG_DRIVE_OPEN_SOURCE, 0 },
Masahiro Yamada3c4b23d2015-09-30 21:07:17 +0900161 { "drive-push-pull", PIN_CONFIG_DRIVE_PUSH_PULL, 0 },
Heiko Stübner7db9af42013-06-10 21:40:29 +0200162 { "drive-strength", PIN_CONFIG_DRIVE_STRENGTH, 0 },
Heiko Stübner7db9af42013-06-10 21:40:29 +0200163 { "input-debounce", PIN_CONFIG_INPUT_DEBOUNCE, 0 },
Masahiro Yamada3c4b23d2015-09-30 21:07:17 +0900164 { "input-disable", PIN_CONFIG_INPUT_ENABLE, 0 },
165 { "input-enable", PIN_CONFIG_INPUT_ENABLE, 1 },
Masahiro Yamada69c308e2015-09-30 21:07:18 +0900166 { "input-schmitt", PIN_CONFIG_INPUT_SCHMITT, 0 },
Masahiro Yamada3c4b23d2015-09-30 21:07:17 +0900167 { "input-schmitt-disable", PIN_CONFIG_INPUT_SCHMITT_ENABLE, 0 },
168 { "input-schmitt-enable", PIN_CONFIG_INPUT_SCHMITT_ENABLE, 1 },
Heiko Stübner9ee1f7d2013-06-14 17:42:49 +0200169 { "low-power-disable", PIN_CONFIG_LOW_POWER_MODE, 0 },
Masahiro Yamada3c4b23d2015-09-30 21:07:17 +0900170 { "low-power-enable", PIN_CONFIG_LOW_POWER_MODE, 1 },
Heiko Stübner7db9af42013-06-10 21:40:29 +0200171 { "output-high", PIN_CONFIG_OUTPUT, 1, },
Masahiro Yamada3c4b23d2015-09-30 21:07:17 +0900172 { "output-low", PIN_CONFIG_OUTPUT, 0, },
173 { "power-source", PIN_CONFIG_POWER_SOURCE, 0 },
174 { "slew-rate", PIN_CONFIG_SLEW_RATE, 0 },
Heiko Stübner7db9af42013-06-10 21:40:29 +0200175};
176
177/**
Linus Walleijf684e4a2015-01-12 00:45:55 +0100178 * parse_dt_cfg() - Parse DT pinconf parameters
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800179 * @np: DT node
Linus Walleijf684e4a2015-01-12 00:45:55 +0100180 * @params: Array of describing generic parameters
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800181 * @count: Number of entries in @params
182 * @cfg: Array of parsed config options
183 * @ncfg: Number of entries in @cfg
184 *
185 * Parse the config options described in @params from @np and puts the result
186 * in @cfg. @cfg does not need to be empty, entries are added beggining at
187 * @ncfg. @ncfg is updated to reflect the number of entries after parsing. @cfg
188 * needs to have enough memory allocated to hold all possible entries.
Heiko Stübner7db9af42013-06-10 21:40:29 +0200189 */
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800190static void parse_dt_cfg(struct device_node *np,
Linus Walleijf684e4a2015-01-12 00:45:55 +0100191 const struct pinconf_generic_params *params,
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800192 unsigned int count, unsigned long *cfg,
193 unsigned int *ncfg)
Heiko Stübner7db9af42013-06-10 21:40:29 +0200194{
Heiko Stübner7db9af42013-06-10 21:40:29 +0200195 int i;
Heiko Stübner7db9af42013-06-10 21:40:29 +0200196
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800197 for (i = 0; i < count; i++) {
198 u32 val;
199 int ret;
Linus Walleijf684e4a2015-01-12 00:45:55 +0100200 const struct pinconf_generic_params *par = &params[i];
Heiko Stübner7db9af42013-06-10 21:40:29 +0200201
Heiko Stübner7db9af42013-06-10 21:40:29 +0200202 ret = of_property_read_u32(np, par->property, &val);
203
204 /* property not found */
205 if (ret == -EINVAL)
206 continue;
207
208 /* use default value, when no value is specified */
209 if (ret)
210 val = par->default_value;
211
212 pr_debug("found %s with value %u\n", par->property, val);
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800213 cfg[*ncfg] = pinconf_to_config_packed(par->param, val);
214 (*ncfg)++;
Heiko Stübner7db9af42013-06-10 21:40:29 +0200215 }
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800216}
217
218/**
219 * pinconf_generic_parse_dt_config()
220 * parse the config properties into generic pinconfig values.
221 * @np: node containing the pinconfig properties
222 * @configs: array with nconfigs entries containing the generic pinconf values
223 * @nconfigs: umber of configurations
224 */
225int pinconf_generic_parse_dt_config(struct device_node *np,
226 struct pinctrl_dev *pctldev,
227 unsigned long **configs,
228 unsigned int *nconfigs)
229{
230 unsigned long *cfg;
231 unsigned int max_cfg, ncfg = 0;
232 int ret;
233
234 if (!np)
235 return -EINVAL;
236
237 /* allocate a temporary array big enough to hold one of each option */
238 max_cfg = ARRAY_SIZE(dt_params);
239 if (pctldev)
Linus Walleijf684e4a2015-01-12 00:45:55 +0100240 max_cfg += pctldev->desc->num_custom_params;
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800241 cfg = kcalloc(max_cfg, sizeof(*cfg), GFP_KERNEL);
242 if (!cfg)
243 return -ENOMEM;
244
245 parse_dt_cfg(np, dt_params, ARRAY_SIZE(dt_params), cfg, &ncfg);
Linus Walleijf684e4a2015-01-12 00:45:55 +0100246 if (pctldev && pctldev->desc->num_custom_params &&
247 pctldev->desc->custom_params)
248 parse_dt_cfg(np, pctldev->desc->custom_params,
249 pctldev->desc->num_custom_params, cfg, &ncfg);
Heiko Stübner7db9af42013-06-10 21:40:29 +0200250
Heiko Stübner6abab2d2013-06-14 17:43:55 +0200251 ret = 0;
252
Heiko Stübnere4a88442013-06-14 17:43:21 +0200253 /* no configs found at all */
254 if (ncfg == 0) {
255 *configs = NULL;
256 *nconfigs = 0;
Heiko Stübner6abab2d2013-06-14 17:43:55 +0200257 goto out;
Heiko Stübnere4a88442013-06-14 17:43:21 +0200258 }
259
Heiko Stübner7db9af42013-06-10 21:40:29 +0200260 /*
261 * Now limit the number of configs to the real number of
262 * found properties.
263 */
Benoit Tainedb388df2014-05-26 17:21:27 +0200264 *configs = kmemdup(cfg, ncfg * sizeof(unsigned long), GFP_KERNEL);
Heiko Stübner6abab2d2013-06-14 17:43:55 +0200265 if (!*configs) {
266 ret = -ENOMEM;
267 goto out;
268 }
Heiko Stübner7db9af42013-06-10 21:40:29 +0200269
Heiko Stübner7db9af42013-06-10 21:40:29 +0200270 *nconfigs = ncfg;
Heiko Stübner6abab2d2013-06-14 17:43:55 +0200271
272out:
273 kfree(cfg);
274 return ret;
Heiko Stübner7db9af42013-06-10 21:40:29 +0200275}
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530276
277int pinconf_generic_dt_subnode_to_map(struct pinctrl_dev *pctldev,
278 struct device_node *np, struct pinctrl_map **map,
Laxman Dewangan3287c242013-08-21 16:53:37 +0530279 unsigned *reserved_maps, unsigned *num_maps,
280 enum pinctrl_map_type type)
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530281{
282 int ret;
283 const char *function;
284 struct device *dev = pctldev->dev;
285 unsigned long *configs = NULL;
286 unsigned num_configs = 0;
Baruch Siachc7289502015-03-19 22:17:41 +0200287 unsigned reserve, strings_count;
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530288 struct property *prop;
289 const char *group;
Soren Brinkmann31c89c92015-01-09 07:43:45 -0800290 const char *subnode_target_type = "pins";
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530291
Baruch Siachc7289502015-03-19 22:17:41 +0200292 ret = of_property_count_strings(np, "pins");
293 if (ret < 0) {
294 ret = of_property_count_strings(np, "groups");
295 if (ret < 0)
296 /* skip this node; may contain config child nodes */
297 return 0;
298 if (type == PIN_MAP_TYPE_INVALID)
299 type = PIN_MAP_TYPE_CONFIGS_GROUP;
300 subnode_target_type = "groups";
301 } else {
302 if (type == PIN_MAP_TYPE_INVALID)
303 type = PIN_MAP_TYPE_CONFIGS_PIN;
304 }
305 strings_count = ret;
306
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530307 ret = of_property_read_string(np, "function", &function);
308 if (ret < 0) {
309 /* EINVAL=missing, which is fine since it's optional */
310 if (ret != -EINVAL)
Baruch Siach4024efb2015-03-19 22:17:42 +0200311 dev_err(dev, "%s: could not parse property function\n",
312 of_node_full_name(np));
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530313 function = NULL;
314 }
315
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800316 ret = pinconf_generic_parse_dt_config(np, pctldev, &configs,
317 &num_configs);
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530318 if (ret < 0) {
Baruch Siach4024efb2015-03-19 22:17:42 +0200319 dev_err(dev, "%s: could not parse node property\n",
320 of_node_full_name(np));
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530321 return ret;
322 }
323
324 reserve = 0;
325 if (function != NULL)
326 reserve++;
327 if (num_configs)
328 reserve++;
Soren Brinkmann31c89c92015-01-09 07:43:45 -0800329
Baruch Siachc7289502015-03-19 22:17:41 +0200330 reserve *= strings_count;
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530331
332 ret = pinctrl_utils_reserve_map(pctldev, map, reserved_maps,
333 num_maps, reserve);
334 if (ret < 0)
335 goto exit;
336
Soren Brinkmann31c89c92015-01-09 07:43:45 -0800337 of_property_for_each_string(np, subnode_target_type, prop, group) {
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530338 if (function) {
339 ret = pinctrl_utils_add_map_mux(pctldev, map,
340 reserved_maps, num_maps, group,
341 function);
342 if (ret < 0)
343 goto exit;
344 }
345
346 if (num_configs) {
347 ret = pinctrl_utils_add_map_configs(pctldev, map,
348 reserved_maps, num_maps, group, configs,
Laxman Dewangan3287c242013-08-21 16:53:37 +0530349 num_configs, type);
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530350 if (ret < 0)
351 goto exit;
352 }
353 }
354 ret = 0;
355
356exit:
357 kfree(configs);
358 return ret;
359}
360EXPORT_SYMBOL_GPL(pinconf_generic_dt_subnode_to_map);
361
362int pinconf_generic_dt_node_to_map(struct pinctrl_dev *pctldev,
363 struct device_node *np_config, struct pinctrl_map **map,
Laxman Dewangan3287c242013-08-21 16:53:37 +0530364 unsigned *num_maps, enum pinctrl_map_type type)
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530365{
366 unsigned reserved_maps;
367 struct device_node *np;
368 int ret;
369
370 reserved_maps = 0;
371 *map = NULL;
372 *num_maps = 0;
373
Baruch Siachc7289502015-03-19 22:17:41 +0200374 ret = pinconf_generic_dt_subnode_to_map(pctldev, np_config, map,
375 &reserved_maps, num_maps, type);
376 if (ret < 0)
377 goto exit;
378
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530379 for_each_child_of_node(np_config, np) {
380 ret = pinconf_generic_dt_subnode_to_map(pctldev, np, map,
Laxman Dewangan3287c242013-08-21 16:53:37 +0530381 &reserved_maps, num_maps, type);
Baruch Siachc7289502015-03-19 22:17:41 +0200382 if (ret < 0)
383 goto exit;
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530384 }
385 return 0;
Baruch Siachc7289502015-03-19 22:17:41 +0200386
387exit:
388 pinctrl_utils_dt_free_map(pctldev, *map, *num_maps);
389 return ret;
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530390}
391EXPORT_SYMBOL_GPL(pinconf_generic_dt_node_to_map);
392
Heiko Stübner7db9af42013-06-10 21:40:29 +0200393#endif