blob: b4f7f8a458eaf0fe9d8c6afc15ce3b70bb6822ad [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 Mondi42556242017-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),
Baolin Wang6606bc92017-08-17 14:50:36 +080050 PCONFDUMP(PIN_CONFIG_SLEEP_HARDWARE_STATE, "sleep hardware state", NULL, false),
Masahiro Yamada3c4b23d2015-09-30 21:07:17 +090051 PCONFDUMP(PIN_CONFIG_SLEW_RATE, "slew rate", NULL, true),
Linus Walleije0e1e392017-10-28 15:37:17 +020052 PCONFDUMP(PIN_CONFIG_SKEW_DELAY, "skew delay", NULL, true),
Linus Walleij394349f2011-11-24 18:27:15 +010053};
54
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -080055static void pinconf_generic_dump_one(struct pinctrl_dev *pctldev,
56 struct seq_file *s, const char *gname,
57 unsigned pin,
58 const struct pin_config_item *items,
Masahiro Yamadaa672eb52016-05-25 15:37:27 +090059 int nitems, int *print_sep)
Linus Walleij394349f2011-11-24 18:27:15 +010060{
Linus Walleij394349f2011-11-24 18:27:15 +010061 int i;
62
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -080063 for (i = 0; i < nitems; i++) {
Linus Walleij394349f2011-11-24 18:27:15 +010064 unsigned long config;
65 int ret;
66
67 /* We want to check out this parameter */
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -080068 config = pinconf_to_config_packed(items[i].param, 0);
69 if (gname)
70 ret = pin_config_group_get(dev_name(pctldev->dev),
71 gname, &config);
72 else
73 ret = pin_config_get_for_pin(pctldev, pin, &config);
Linus Walleij394349f2011-11-24 18:27:15 +010074 /* These are legal errors */
75 if (ret == -EINVAL || ret == -ENOTSUPP)
76 continue;
77 if (ret) {
78 seq_printf(s, "ERROR READING CONFIG SETTING %d ", i);
79 continue;
80 }
Masahiro Yamadaa672eb52016-05-25 15:37:27 +090081 /* comma between multiple configs */
82 if (*print_sep)
83 seq_puts(s, ", ");
84 *print_sep = 1;
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -080085 seq_puts(s, items[i].display);
Linus Walleij394349f2011-11-24 18:27:15 +010086 /* Print unit if available */
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -080087 if (items[i].has_arg) {
Soren Brinkmanneec45072014-10-16 10:11:29 -070088 seq_printf(s, " (%u",
89 pinconf_to_config_argument(config));
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -080090 if (items[i].format)
91 seq_printf(s, " %s)", items[i].format);
Soren Brinkmanneec45072014-10-16 10:11:29 -070092 else
93 seq_puts(s, ")");
94 }
Linus Walleij394349f2011-11-24 18:27:15 +010095 }
96}
97
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -080098/**
99 * pinconf_generic_dump_pins - Print information about pin or group of pins
100 * @pctldev: Pincontrol device
101 * @s: File to print to
102 * @gname: Group name specifying pins
103 * @pin: Pin number specyfying pin
104 *
105 * Print the pinconf configuration for the requested pin(s) to @s. Pins can be
106 * specified either by pin using @pin or by group using @gname. Only one needs
107 * to be specified the other can be NULL/0.
108 */
109void pinconf_generic_dump_pins(struct pinctrl_dev *pctldev, struct seq_file *s,
110 const char *gname, unsigned pin)
Linus Walleij394349f2011-11-24 18:27:15 +0100111{
112 const struct pinconf_ops *ops = pctldev->desc->confops;
Masahiro Yamadaa672eb52016-05-25 15:37:27 +0900113 int print_sep = 0;
Linus Walleij394349f2011-11-24 18:27:15 +0100114
115 if (!ops->is_generic)
116 return;
117
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800118 /* generic parameters */
119 pinconf_generic_dump_one(pctldev, s, gname, pin, conf_items,
Masahiro Yamadaa672eb52016-05-25 15:37:27 +0900120 ARRAY_SIZE(conf_items), &print_sep);
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800121 /* driver-specific parameters */
Linus Walleijf684e4a2015-01-12 00:45:55 +0100122 if (pctldev->desc->num_custom_params &&
123 pctldev->desc->custom_conf_items)
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800124 pinconf_generic_dump_one(pctldev, s, gname, pin,
Linus Walleijf684e4a2015-01-12 00:45:55 +0100125 pctldev->desc->custom_conf_items,
Masahiro Yamadaa672eb52016-05-25 15:37:27 +0900126 pctldev->desc->num_custom_params,
127 &print_sep);
Linus Walleij394349f2011-11-24 18:27:15 +0100128}
129
Haojian Zhuang9cfd1722013-02-17 19:42:53 +0800130void pinconf_generic_dump_config(struct pinctrl_dev *pctldev,
131 struct seq_file *s, unsigned long config)
132{
133 int i;
134
Sachin Kamatb6465422013-03-15 10:23:16 +0530135 for (i = 0; i < ARRAY_SIZE(conf_items); i++) {
Haojian Zhuang9cfd1722013-02-17 19:42:53 +0800136 if (pinconf_to_config_param(config) != conf_items[i].param)
137 continue;
138 seq_printf(s, "%s: 0x%x", conf_items[i].display,
139 pinconf_to_config_argument(config));
140 }
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800141
Linus Walleijf684e4a2015-01-12 00:45:55 +0100142 if (!pctldev->desc->num_custom_params ||
143 !pctldev->desc->custom_conf_items)
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800144 return;
145
Linus Walleijf684e4a2015-01-12 00:45:55 +0100146 for (i = 0; i < pctldev->desc->num_custom_params; i++) {
147 if (pinconf_to_config_param(config) !=
148 pctldev->desc->custom_conf_items[i].param)
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800149 continue;
Linus Walleijf684e4a2015-01-12 00:45:55 +0100150 seq_printf(s, "%s: 0x%x",
151 pctldev->desc->custom_conf_items[i].display,
152 pinconf_to_config_argument(config));
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800153 }
Haojian Zhuang9cfd1722013-02-17 19:42:53 +0800154}
155EXPORT_SYMBOL_GPL(pinconf_generic_dump_config);
Linus Walleij394349f2011-11-24 18:27:15 +0100156#endif
Heiko Stübner7db9af42013-06-10 21:40:29 +0200157
158#ifdef CONFIG_OF
Linus Walleijf684e4a2015-01-12 00:45:55 +0100159static const struct pinconf_generic_params dt_params[] = {
Masahiro Yamada3c4b23d2015-09-30 21:07:17 +0900160 { "bias-bus-hold", PIN_CONFIG_BIAS_BUS_HOLD, 0 },
Heiko Stübner7db9af42013-06-10 21:40:29 +0200161 { "bias-disable", PIN_CONFIG_BIAS_DISABLE, 0 },
162 { "bias-high-impedance", PIN_CONFIG_BIAS_HIGH_IMPEDANCE, 0 },
Heiko Stübner9ee1f7d2013-06-14 17:42:49 +0200163 { "bias-pull-up", PIN_CONFIG_BIAS_PULL_UP, 1 },
Heiko Stübner9ee1f7d2013-06-14 17:42:49 +0200164 { "bias-pull-pin-default", PIN_CONFIG_BIAS_PULL_PIN_DEFAULT, 1 },
Masahiro Yamada3c4b23d2015-09-30 21:07:17 +0900165 { "bias-pull-down", PIN_CONFIG_BIAS_PULL_DOWN, 1 },
Heiko Stübner7db9af42013-06-10 21:40:29 +0200166 { "drive-open-drain", PIN_CONFIG_DRIVE_OPEN_DRAIN, 0 },
167 { "drive-open-source", PIN_CONFIG_DRIVE_OPEN_SOURCE, 0 },
Masahiro Yamada3c4b23d2015-09-30 21:07:17 +0900168 { "drive-push-pull", PIN_CONFIG_DRIVE_PUSH_PULL, 0 },
Heiko Stübner7db9af42013-06-10 21:40:29 +0200169 { "drive-strength", PIN_CONFIG_DRIVE_STRENGTH, 0 },
Heiko Stübner7db9af42013-06-10 21:40:29 +0200170 { "input-debounce", PIN_CONFIG_INPUT_DEBOUNCE, 0 },
Masahiro Yamada3c4b23d2015-09-30 21:07:17 +0900171 { "input-disable", PIN_CONFIG_INPUT_ENABLE, 0 },
172 { "input-enable", PIN_CONFIG_INPUT_ENABLE, 1 },
Masahiro Yamada69c308e2015-09-30 21:07:18 +0900173 { "input-schmitt", PIN_CONFIG_INPUT_SCHMITT, 0 },
Masahiro Yamada3c4b23d2015-09-30 21:07:17 +0900174 { "input-schmitt-disable", PIN_CONFIG_INPUT_SCHMITT_ENABLE, 0 },
175 { "input-schmitt-enable", PIN_CONFIG_INPUT_SCHMITT_ENABLE, 1 },
Heiko Stübner9ee1f7d2013-06-14 17:42:49 +0200176 { "low-power-disable", PIN_CONFIG_LOW_POWER_MODE, 0 },
Masahiro Yamada3c4b23d2015-09-30 21:07:17 +0900177 { "low-power-enable", PIN_CONFIG_LOW_POWER_MODE, 1 },
Jacopo Mondi42556242017-06-22 12:00:58 +0200178 { "output-disable", PIN_CONFIG_OUTPUT_ENABLE, 0 },
179 { "output-enable", PIN_CONFIG_OUTPUT_ENABLE, 1 },
Heiko Stübner7db9af42013-06-10 21:40:29 +0200180 { "output-high", PIN_CONFIG_OUTPUT, 1, },
Masahiro Yamada3c4b23d2015-09-30 21:07:17 +0900181 { "output-low", PIN_CONFIG_OUTPUT, 0, },
182 { "power-source", PIN_CONFIG_POWER_SOURCE, 0 },
Baolin Wang6606bc92017-08-17 14:50:36 +0800183 { "sleep-hardware-state", PIN_CONFIG_SLEEP_HARDWARE_STATE, 0 },
Masahiro Yamada3c4b23d2015-09-30 21:07:17 +0900184 { "slew-rate", PIN_CONFIG_SLEW_RATE, 0 },
Linus Walleije0e1e392017-10-28 15:37:17 +0200185 { "skew-delay", PIN_CONFIG_SKEW_DELAY, 0 },
Heiko Stübner7db9af42013-06-10 21:40:29 +0200186};
187
188/**
Linus Walleijf684e4a2015-01-12 00:45:55 +0100189 * parse_dt_cfg() - Parse DT pinconf parameters
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800190 * @np: DT node
Linus Walleijf684e4a2015-01-12 00:45:55 +0100191 * @params: Array of describing generic parameters
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800192 * @count: Number of entries in @params
193 * @cfg: Array of parsed config options
194 * @ncfg: Number of entries in @cfg
195 *
196 * Parse the config options described in @params from @np and puts the result
Andy Shevchenko3ec440e2017-02-28 16:59:56 +0200197 * in @cfg. @cfg does not need to be empty, entries are added beginning at
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800198 * @ncfg. @ncfg is updated to reflect the number of entries after parsing. @cfg
199 * needs to have enough memory allocated to hold all possible entries.
Heiko Stübner7db9af42013-06-10 21:40:29 +0200200 */
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800201static void parse_dt_cfg(struct device_node *np,
Linus Walleijf684e4a2015-01-12 00:45:55 +0100202 const struct pinconf_generic_params *params,
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800203 unsigned int count, unsigned long *cfg,
204 unsigned int *ncfg)
Heiko Stübner7db9af42013-06-10 21:40:29 +0200205{
Heiko Stübner7db9af42013-06-10 21:40:29 +0200206 int i;
Heiko Stübner7db9af42013-06-10 21:40:29 +0200207
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800208 for (i = 0; i < count; i++) {
209 u32 val;
210 int ret;
Linus Walleijf684e4a2015-01-12 00:45:55 +0100211 const struct pinconf_generic_params *par = &params[i];
Heiko Stübner7db9af42013-06-10 21:40:29 +0200212
Heiko Stübner7db9af42013-06-10 21:40:29 +0200213 ret = of_property_read_u32(np, par->property, &val);
214
215 /* property not found */
216 if (ret == -EINVAL)
217 continue;
218
219 /* use default value, when no value is specified */
220 if (ret)
221 val = par->default_value;
222
223 pr_debug("found %s with value %u\n", par->property, val);
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800224 cfg[*ncfg] = pinconf_to_config_packed(par->param, val);
225 (*ncfg)++;
Heiko Stübner7db9af42013-06-10 21:40:29 +0200226 }
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800227}
228
229/**
230 * pinconf_generic_parse_dt_config()
231 * parse the config properties into generic pinconfig values.
232 * @np: node containing the pinconfig properties
233 * @configs: array with nconfigs entries containing the generic pinconf values
Yingjoe Chend9ac5e22015-11-25 20:13:23 +0800234 * must be freed when no longer necessary.
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800235 * @nconfigs: umber of configurations
236 */
237int pinconf_generic_parse_dt_config(struct device_node *np,
238 struct pinctrl_dev *pctldev,
239 unsigned long **configs,
240 unsigned int *nconfigs)
241{
242 unsigned long *cfg;
243 unsigned int max_cfg, ncfg = 0;
244 int ret;
245
246 if (!np)
247 return -EINVAL;
248
249 /* allocate a temporary array big enough to hold one of each option */
250 max_cfg = ARRAY_SIZE(dt_params);
251 if (pctldev)
Linus Walleijf684e4a2015-01-12 00:45:55 +0100252 max_cfg += pctldev->desc->num_custom_params;
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800253 cfg = kcalloc(max_cfg, sizeof(*cfg), GFP_KERNEL);
254 if (!cfg)
255 return -ENOMEM;
256
257 parse_dt_cfg(np, dt_params, ARRAY_SIZE(dt_params), cfg, &ncfg);
Linus Walleijf684e4a2015-01-12 00:45:55 +0100258 if (pctldev && pctldev->desc->num_custom_params &&
259 pctldev->desc->custom_params)
260 parse_dt_cfg(np, pctldev->desc->custom_params,
261 pctldev->desc->num_custom_params, cfg, &ncfg);
Heiko Stübner7db9af42013-06-10 21:40:29 +0200262
Heiko Stübner6abab2d2013-06-14 17:43:55 +0200263 ret = 0;
264
Heiko Stübnere4a88442013-06-14 17:43:21 +0200265 /* no configs found at all */
266 if (ncfg == 0) {
267 *configs = NULL;
268 *nconfigs = 0;
Heiko Stübner6abab2d2013-06-14 17:43:55 +0200269 goto out;
Heiko Stübnere4a88442013-06-14 17:43:21 +0200270 }
271
Heiko Stübner7db9af42013-06-10 21:40:29 +0200272 /*
273 * Now limit the number of configs to the real number of
274 * found properties.
275 */
Benoit Tainedb388df2014-05-26 17:21:27 +0200276 *configs = kmemdup(cfg, ncfg * sizeof(unsigned long), GFP_KERNEL);
Heiko Stübner6abab2d2013-06-14 17:43:55 +0200277 if (!*configs) {
278 ret = -ENOMEM;
279 goto out;
280 }
Heiko Stübner7db9af42013-06-10 21:40:29 +0200281
Heiko Stübner7db9af42013-06-10 21:40:29 +0200282 *nconfigs = ncfg;
Heiko Stübner6abab2d2013-06-14 17:43:55 +0200283
284out:
285 kfree(cfg);
286 return ret;
Heiko Stübner7db9af42013-06-10 21:40:29 +0200287}
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530288
289int pinconf_generic_dt_subnode_to_map(struct pinctrl_dev *pctldev,
290 struct device_node *np, struct pinctrl_map **map,
Laxman Dewangan3287c242013-08-21 16:53:37 +0530291 unsigned *reserved_maps, unsigned *num_maps,
292 enum pinctrl_map_type type)
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530293{
294 int ret;
295 const char *function;
296 struct device *dev = pctldev->dev;
297 unsigned long *configs = NULL;
298 unsigned num_configs = 0;
Baruch Siachc7289502015-03-19 22:17:41 +0200299 unsigned reserve, strings_count;
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530300 struct property *prop;
301 const char *group;
Soren Brinkmann31c89c92015-01-09 07:43:45 -0800302 const char *subnode_target_type = "pins";
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530303
Baruch Siachc7289502015-03-19 22:17:41 +0200304 ret = of_property_count_strings(np, "pins");
305 if (ret < 0) {
306 ret = of_property_count_strings(np, "groups");
307 if (ret < 0)
308 /* skip this node; may contain config child nodes */
309 return 0;
310 if (type == PIN_MAP_TYPE_INVALID)
311 type = PIN_MAP_TYPE_CONFIGS_GROUP;
312 subnode_target_type = "groups";
313 } else {
314 if (type == PIN_MAP_TYPE_INVALID)
315 type = PIN_MAP_TYPE_CONFIGS_PIN;
316 }
317 strings_count = ret;
318
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530319 ret = of_property_read_string(np, "function", &function);
320 if (ret < 0) {
321 /* EINVAL=missing, which is fine since it's optional */
322 if (ret != -EINVAL)
Rob Herringf5292d02017-07-18 16:43:23 -0500323 dev_err(dev, "%pOF: could not parse property function\n",
324 np);
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530325 function = NULL;
326 }
327
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800328 ret = pinconf_generic_parse_dt_config(np, pctldev, &configs,
329 &num_configs);
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530330 if (ret < 0) {
Rob Herringf5292d02017-07-18 16:43:23 -0500331 dev_err(dev, "%pOF: could not parse node property\n", np);
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530332 return ret;
333 }
334
335 reserve = 0;
336 if (function != NULL)
337 reserve++;
338 if (num_configs)
339 reserve++;
Soren Brinkmann31c89c92015-01-09 07:43:45 -0800340
Baruch Siachc7289502015-03-19 22:17:41 +0200341 reserve *= strings_count;
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530342
343 ret = pinctrl_utils_reserve_map(pctldev, map, reserved_maps,
344 num_maps, reserve);
345 if (ret < 0)
346 goto exit;
347
Soren Brinkmann31c89c92015-01-09 07:43:45 -0800348 of_property_for_each_string(np, subnode_target_type, prop, group) {
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530349 if (function) {
350 ret = pinctrl_utils_add_map_mux(pctldev, map,
351 reserved_maps, num_maps, group,
352 function);
353 if (ret < 0)
354 goto exit;
355 }
356
357 if (num_configs) {
358 ret = pinctrl_utils_add_map_configs(pctldev, map,
359 reserved_maps, num_maps, group, configs,
Laxman Dewangan3287c242013-08-21 16:53:37 +0530360 num_configs, type);
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530361 if (ret < 0)
362 goto exit;
363 }
364 }
365 ret = 0;
366
367exit:
368 kfree(configs);
369 return ret;
370}
371EXPORT_SYMBOL_GPL(pinconf_generic_dt_subnode_to_map);
372
373int pinconf_generic_dt_node_to_map(struct pinctrl_dev *pctldev,
374 struct device_node *np_config, struct pinctrl_map **map,
Laxman Dewangan3287c242013-08-21 16:53:37 +0530375 unsigned *num_maps, enum pinctrl_map_type type)
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530376{
377 unsigned reserved_maps;
378 struct device_node *np;
379 int ret;
380
381 reserved_maps = 0;
382 *map = NULL;
383 *num_maps = 0;
384
Baruch Siachc7289502015-03-19 22:17:41 +0200385 ret = pinconf_generic_dt_subnode_to_map(pctldev, np_config, map,
386 &reserved_maps, num_maps, type);
387 if (ret < 0)
388 goto exit;
389
Laxman Dewangane06c2ee2016-10-28 16:54:21 +0530390 for_each_available_child_of_node(np_config, np) {
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530391 ret = pinconf_generic_dt_subnode_to_map(pctldev, np, map,
Laxman Dewangan3287c242013-08-21 16:53:37 +0530392 &reserved_maps, num_maps, type);
Baruch Siachc7289502015-03-19 22:17:41 +0200393 if (ret < 0)
394 goto exit;
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530395 }
396 return 0;
Baruch Siachc7289502015-03-19 22:17:41 +0200397
398exit:
Irina Tirdead32f7fd2016-03-31 14:44:42 +0300399 pinctrl_utils_free_map(pctldev, *map, *num_maps);
Baruch Siachc7289502015-03-19 22:17:41 +0200400 return ret;
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530401}
402EXPORT_SYMBOL_GPL(pinconf_generic_dt_node_to_map);
403
Jon Hunter8dfebf52016-06-17 13:03:40 +0100404void pinconf_generic_dt_free_map(struct pinctrl_dev *pctldev,
405 struct pinctrl_map *map,
406 unsigned num_maps)
407{
408 pinctrl_utils_free_map(pctldev, map, num_maps);
409}
410EXPORT_SYMBOL_GPL(pinconf_generic_dt_free_map);
411
Heiko Stübner7db9af42013-06-10 21:40:29 +0200412#endif