blob: 4ccd71bbc72a2164db5378f54e2a193d3d9269a4 [file] [log] [blame]
Thomas Gleixneraf873fc2019-05-28 09:57:21 -07001// SPDX-License-Identifier: GPL-2.0-only
Linus Walleij394349f2011-11-24 18:27:15 +01002/*
3 * Core driver for the generic pin config portions of the pin control subsystem
4 *
5 * Copyright (C) 2011 ST-Ericsson SA
6 * Written on behalf of Linaro for ST-Ericsson
7 *
8 * Author: Linus Walleij <linus.walleij@linaro.org>
Linus Walleij394349f2011-11-24 18:27:15 +01009 */
10
11#define pr_fmt(fmt) "generic pinconfig core: " fmt
12
13#include <linux/kernel.h>
Haojian Zhuang9cfd1722013-02-17 19:42:53 +080014#include <linux/module.h>
Linus Walleij394349f2011-11-24 18:27:15 +010015#include <linux/init.h>
16#include <linux/device.h>
17#include <linux/slab.h>
18#include <linux/debugfs.h>
19#include <linux/seq_file.h>
20#include <linux/pinctrl/pinctrl.h>
21#include <linux/pinctrl/pinconf.h>
22#include <linux/pinctrl/pinconf-generic.h>
Heiko Stübner7db9af42013-06-10 21:40:29 +020023#include <linux/of.h>
Linus Walleij394349f2011-11-24 18:27:15 +010024#include "core.h"
25#include "pinconf.h"
Laxman Dewangane81c8f12013-08-06 18:42:34 +053026#include "pinctrl-utils.h"
Linus Walleij394349f2011-11-24 18:27:15 +010027
28#ifdef CONFIG_DEBUG_FS
Soren Brinkmann2500bcc2014-11-03 11:05:25 -080029static const struct pin_config_item conf_items[] = {
Masahiro Yamada3c4b23d2015-09-30 21:07:17 +090030 PCONFDUMP(PIN_CONFIG_BIAS_BUS_HOLD, "input bias bus hold", NULL, false),
Soren Brinkmanneec45072014-10-16 10:11:29 -070031 PCONFDUMP(PIN_CONFIG_BIAS_DISABLE, "input bias disabled", NULL, false),
32 PCONFDUMP(PIN_CONFIG_BIAS_HIGH_IMPEDANCE, "input bias high impedance", NULL, false),
Soren Brinkmanneec45072014-10-16 10:11:29 -070033 PCONFDUMP(PIN_CONFIG_BIAS_PULL_DOWN, "input bias pull down", NULL, false),
Heiko Stübner7970cb72013-06-06 16:44:25 +020034 PCONFDUMP(PIN_CONFIG_BIAS_PULL_PIN_DEFAULT,
Soren Brinkmanneec45072014-10-16 10:11:29 -070035 "input bias pull to pin specific state", NULL, false),
Masahiro Yamada3c4b23d2015-09-30 21:07:17 +090036 PCONFDUMP(PIN_CONFIG_BIAS_PULL_UP, "input bias pull up", NULL, false),
Soren Brinkmanneec45072014-10-16 10:11:29 -070037 PCONFDUMP(PIN_CONFIG_DRIVE_OPEN_DRAIN, "output drive open drain", NULL, false),
38 PCONFDUMP(PIN_CONFIG_DRIVE_OPEN_SOURCE, "output drive open source", NULL, false),
Masahiro Yamada3c4b23d2015-09-30 21:07:17 +090039 PCONFDUMP(PIN_CONFIG_DRIVE_PUSH_PULL, "output drive push pull", NULL, false),
Soren Brinkmanneec45072014-10-16 10:11:29 -070040 PCONFDUMP(PIN_CONFIG_DRIVE_STRENGTH, "output drive strength", "mA", true),
Soren Brinkmanneec45072014-10-16 10:11:29 -070041 PCONFDUMP(PIN_CONFIG_INPUT_DEBOUNCE, "input debounce", "usec", true),
Masahiro Yamada3c4b23d2015-09-30 21:07:17 +090042 PCONFDUMP(PIN_CONFIG_INPUT_ENABLE, "input enabled", NULL, false),
43 PCONFDUMP(PIN_CONFIG_INPUT_SCHMITT, "input schmitt trigger", NULL, false),
44 PCONFDUMP(PIN_CONFIG_INPUT_SCHMITT_ENABLE, "input schmitt enabled", NULL, false),
Soren Brinkmanneec45072014-10-16 10:11:29 -070045 PCONFDUMP(PIN_CONFIG_LOW_POWER_MODE, "pin low power", "mode", true),
Jacopo Mondi42556242017-06-22 12:00:58 +020046 PCONFDUMP(PIN_CONFIG_OUTPUT_ENABLE, "output enabled", NULL, false),
Soren Brinkmanneec45072014-10-16 10:11:29 -070047 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),
Baolin Wang6606bc92017-08-17 14:50:36 +080049 PCONFDUMP(PIN_CONFIG_SLEEP_HARDWARE_STATE, "sleep hardware state", NULL, false),
Masahiro Yamada3c4b23d2015-09-30 21:07:17 +090050 PCONFDUMP(PIN_CONFIG_SLEW_RATE, "slew rate", NULL, true),
Linus Walleije0e1e392017-10-28 15:37:17 +020051 PCONFDUMP(PIN_CONFIG_SKEW_DELAY, "skew delay", NULL, true),
Linus Walleij394349f2011-11-24 18:27:15 +010052};
53
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -080054static void pinconf_generic_dump_one(struct pinctrl_dev *pctldev,
55 struct seq_file *s, const char *gname,
56 unsigned pin,
57 const struct pin_config_item *items,
Masahiro Yamadaa672eb52016-05-25 15:37:27 +090058 int nitems, int *print_sep)
Linus Walleij394349f2011-11-24 18:27:15 +010059{
Linus Walleij394349f2011-11-24 18:27:15 +010060 int i;
61
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -080062 for (i = 0; i < nitems; i++) {
Linus Walleij394349f2011-11-24 18:27:15 +010063 unsigned long config;
64 int ret;
65
66 /* We want to check out this parameter */
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -080067 config = pinconf_to_config_packed(items[i].param, 0);
68 if (gname)
69 ret = pin_config_group_get(dev_name(pctldev->dev),
70 gname, &config);
71 else
72 ret = pin_config_get_for_pin(pctldev, pin, &config);
Linus Walleij394349f2011-11-24 18:27:15 +010073 /* These are legal errors */
74 if (ret == -EINVAL || ret == -ENOTSUPP)
75 continue;
76 if (ret) {
77 seq_printf(s, "ERROR READING CONFIG SETTING %d ", i);
78 continue;
79 }
Masahiro Yamadaa672eb52016-05-25 15:37:27 +090080 /* comma between multiple configs */
81 if (*print_sep)
82 seq_puts(s, ", ");
83 *print_sep = 1;
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -080084 seq_puts(s, items[i].display);
Linus Walleij394349f2011-11-24 18:27:15 +010085 /* Print unit if available */
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -080086 if (items[i].has_arg) {
Soren Brinkmanneec45072014-10-16 10:11:29 -070087 seq_printf(s, " (%u",
88 pinconf_to_config_argument(config));
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -080089 if (items[i].format)
90 seq_printf(s, " %s)", items[i].format);
Soren Brinkmanneec45072014-10-16 10:11:29 -070091 else
92 seq_puts(s, ")");
93 }
Linus Walleij394349f2011-11-24 18:27:15 +010094 }
95}
96
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -080097/**
98 * pinconf_generic_dump_pins - Print information about pin or group of pins
99 * @pctldev: Pincontrol device
100 * @s: File to print to
101 * @gname: Group name specifying pins
102 * @pin: Pin number specyfying pin
103 *
104 * Print the pinconf configuration for the requested pin(s) to @s. Pins can be
105 * specified either by pin using @pin or by group using @gname. Only one needs
106 * to be specified the other can be NULL/0.
107 */
108void pinconf_generic_dump_pins(struct pinctrl_dev *pctldev, struct seq_file *s,
109 const char *gname, unsigned pin)
Linus Walleij394349f2011-11-24 18:27:15 +0100110{
111 const struct pinconf_ops *ops = pctldev->desc->confops;
Masahiro Yamadaa672eb52016-05-25 15:37:27 +0900112 int print_sep = 0;
Linus Walleij394349f2011-11-24 18:27:15 +0100113
114 if (!ops->is_generic)
115 return;
116
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800117 /* generic parameters */
118 pinconf_generic_dump_one(pctldev, s, gname, pin, conf_items,
Masahiro Yamadaa672eb52016-05-25 15:37:27 +0900119 ARRAY_SIZE(conf_items), &print_sep);
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800120 /* driver-specific parameters */
Linus Walleijf684e4a2015-01-12 00:45:55 +0100121 if (pctldev->desc->num_custom_params &&
122 pctldev->desc->custom_conf_items)
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800123 pinconf_generic_dump_one(pctldev, s, gname, pin,
Linus Walleijf684e4a2015-01-12 00:45:55 +0100124 pctldev->desc->custom_conf_items,
Masahiro Yamadaa672eb52016-05-25 15:37:27 +0900125 pctldev->desc->num_custom_params,
126 &print_sep);
Linus Walleij394349f2011-11-24 18:27:15 +0100127}
128
Haojian Zhuang9cfd1722013-02-17 19:42:53 +0800129void pinconf_generic_dump_config(struct pinctrl_dev *pctldev,
130 struct seq_file *s, unsigned long config)
131{
132 int i;
133
Sachin Kamatb6465422013-03-15 10:23:16 +0530134 for (i = 0; i < ARRAY_SIZE(conf_items); i++) {
Haojian Zhuang9cfd1722013-02-17 19:42:53 +0800135 if (pinconf_to_config_param(config) != conf_items[i].param)
136 continue;
137 seq_printf(s, "%s: 0x%x", conf_items[i].display,
138 pinconf_to_config_argument(config));
139 }
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800140
Linus Walleijf684e4a2015-01-12 00:45:55 +0100141 if (!pctldev->desc->num_custom_params ||
142 !pctldev->desc->custom_conf_items)
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800143 return;
144
Linus Walleijf684e4a2015-01-12 00:45:55 +0100145 for (i = 0; i < pctldev->desc->num_custom_params; i++) {
146 if (pinconf_to_config_param(config) !=
147 pctldev->desc->custom_conf_items[i].param)
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800148 continue;
Linus Walleijf684e4a2015-01-12 00:45:55 +0100149 seq_printf(s, "%s: 0x%x",
150 pctldev->desc->custom_conf_items[i].display,
151 pinconf_to_config_argument(config));
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800152 }
Haojian Zhuang9cfd1722013-02-17 19:42:53 +0800153}
154EXPORT_SYMBOL_GPL(pinconf_generic_dump_config);
Linus Walleij394349f2011-11-24 18:27:15 +0100155#endif
Heiko Stübner7db9af42013-06-10 21:40:29 +0200156
157#ifdef CONFIG_OF
Linus Walleijf684e4a2015-01-12 00:45:55 +0100158static const struct pinconf_generic_params dt_params[] = {
Masahiro Yamada3c4b23d2015-09-30 21:07:17 +0900159 { "bias-bus-hold", PIN_CONFIG_BIAS_BUS_HOLD, 0 },
Heiko Stübner7db9af42013-06-10 21:40:29 +0200160 { "bias-disable", PIN_CONFIG_BIAS_DISABLE, 0 },
161 { "bias-high-impedance", PIN_CONFIG_BIAS_HIGH_IMPEDANCE, 0 },
Heiko Stübner9ee1f7d2013-06-14 17:42:49 +0200162 { "bias-pull-up", PIN_CONFIG_BIAS_PULL_UP, 1 },
Heiko Stübner9ee1f7d2013-06-14 17:42:49 +0200163 { "bias-pull-pin-default", PIN_CONFIG_BIAS_PULL_PIN_DEFAULT, 1 },
Masahiro Yamada3c4b23d2015-09-30 21:07:17 +0900164 { "bias-pull-down", PIN_CONFIG_BIAS_PULL_DOWN, 1 },
Heiko Stübner7db9af42013-06-10 21:40:29 +0200165 { "drive-open-drain", PIN_CONFIG_DRIVE_OPEN_DRAIN, 0 },
166 { "drive-open-source", PIN_CONFIG_DRIVE_OPEN_SOURCE, 0 },
Masahiro Yamada3c4b23d2015-09-30 21:07:17 +0900167 { "drive-push-pull", PIN_CONFIG_DRIVE_PUSH_PULL, 0 },
Heiko Stübner7db9af42013-06-10 21:40:29 +0200168 { "drive-strength", PIN_CONFIG_DRIVE_STRENGTH, 0 },
Heiko Stübner7db9af42013-06-10 21:40:29 +0200169 { "input-debounce", PIN_CONFIG_INPUT_DEBOUNCE, 0 },
Masahiro Yamada3c4b23d2015-09-30 21:07:17 +0900170 { "input-disable", PIN_CONFIG_INPUT_ENABLE, 0 },
171 { "input-enable", PIN_CONFIG_INPUT_ENABLE, 1 },
Masahiro Yamada69c308e2015-09-30 21:07:18 +0900172 { "input-schmitt", PIN_CONFIG_INPUT_SCHMITT, 0 },
Masahiro Yamada3c4b23d2015-09-30 21:07:17 +0900173 { "input-schmitt-disable", PIN_CONFIG_INPUT_SCHMITT_ENABLE, 0 },
174 { "input-schmitt-enable", PIN_CONFIG_INPUT_SCHMITT_ENABLE, 1 },
Heiko Stübner9ee1f7d2013-06-14 17:42:49 +0200175 { "low-power-disable", PIN_CONFIG_LOW_POWER_MODE, 0 },
Masahiro Yamada3c4b23d2015-09-30 21:07:17 +0900176 { "low-power-enable", PIN_CONFIG_LOW_POWER_MODE, 1 },
Jacopo Mondi42556242017-06-22 12:00:58 +0200177 { "output-disable", PIN_CONFIG_OUTPUT_ENABLE, 0 },
178 { "output-enable", PIN_CONFIG_OUTPUT_ENABLE, 1 },
Heiko Stübner7db9af42013-06-10 21:40:29 +0200179 { "output-high", PIN_CONFIG_OUTPUT, 1, },
Masahiro Yamada3c4b23d2015-09-30 21:07:17 +0900180 { "output-low", PIN_CONFIG_OUTPUT, 0, },
181 { "power-source", PIN_CONFIG_POWER_SOURCE, 0 },
Baolin Wang6606bc92017-08-17 14:50:36 +0800182 { "sleep-hardware-state", PIN_CONFIG_SLEEP_HARDWARE_STATE, 0 },
Masahiro Yamada3c4b23d2015-09-30 21:07:17 +0900183 { "slew-rate", PIN_CONFIG_SLEW_RATE, 0 },
Linus Walleije0e1e392017-10-28 15:37:17 +0200184 { "skew-delay", PIN_CONFIG_SKEW_DELAY, 0 },
Heiko Stübner7db9af42013-06-10 21:40:29 +0200185};
186
187/**
Linus Walleijf684e4a2015-01-12 00:45:55 +0100188 * parse_dt_cfg() - Parse DT pinconf parameters
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800189 * @np: DT node
Linus Walleijf684e4a2015-01-12 00:45:55 +0100190 * @params: Array of describing generic parameters
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800191 * @count: Number of entries in @params
192 * @cfg: Array of parsed config options
193 * @ncfg: Number of entries in @cfg
194 *
195 * Parse the config options described in @params from @np and puts the result
Andy Shevchenko3ec440e2017-02-28 16:59:56 +0200196 * in @cfg. @cfg does not need to be empty, entries are added beginning at
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800197 * @ncfg. @ncfg is updated to reflect the number of entries after parsing. @cfg
198 * needs to have enough memory allocated to hold all possible entries.
Heiko Stübner7db9af42013-06-10 21:40:29 +0200199 */
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800200static void parse_dt_cfg(struct device_node *np,
Linus Walleijf684e4a2015-01-12 00:45:55 +0100201 const struct pinconf_generic_params *params,
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800202 unsigned int count, unsigned long *cfg,
203 unsigned int *ncfg)
Heiko Stübner7db9af42013-06-10 21:40:29 +0200204{
Heiko Stübner7db9af42013-06-10 21:40:29 +0200205 int i;
Heiko Stübner7db9af42013-06-10 21:40:29 +0200206
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800207 for (i = 0; i < count; i++) {
208 u32 val;
209 int ret;
Linus Walleijf684e4a2015-01-12 00:45:55 +0100210 const struct pinconf_generic_params *par = &params[i];
Heiko Stübner7db9af42013-06-10 21:40:29 +0200211
Heiko Stübner7db9af42013-06-10 21:40:29 +0200212 ret = of_property_read_u32(np, par->property, &val);
213
214 /* property not found */
215 if (ret == -EINVAL)
216 continue;
217
218 /* use default value, when no value is specified */
219 if (ret)
220 val = par->default_value;
221
222 pr_debug("found %s with value %u\n", par->property, val);
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800223 cfg[*ncfg] = pinconf_to_config_packed(par->param, val);
224 (*ncfg)++;
Heiko Stübner7db9af42013-06-10 21:40:29 +0200225 }
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800226}
227
228/**
229 * pinconf_generic_parse_dt_config()
230 * parse the config properties into generic pinconfig values.
231 * @np: node containing the pinconfig properties
232 * @configs: array with nconfigs entries containing the generic pinconf values
Yingjoe Chend9ac5e22015-11-25 20:13:23 +0800233 * must be freed when no longer necessary.
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800234 * @nconfigs: umber of configurations
235 */
236int pinconf_generic_parse_dt_config(struct device_node *np,
237 struct pinctrl_dev *pctldev,
238 unsigned long **configs,
239 unsigned int *nconfigs)
240{
241 unsigned long *cfg;
242 unsigned int max_cfg, ncfg = 0;
243 int ret;
244
245 if (!np)
246 return -EINVAL;
247
248 /* allocate a temporary array big enough to hold one of each option */
249 max_cfg = ARRAY_SIZE(dt_params);
250 if (pctldev)
Linus Walleijf684e4a2015-01-12 00:45:55 +0100251 max_cfg += pctldev->desc->num_custom_params;
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800252 cfg = kcalloc(max_cfg, sizeof(*cfg), GFP_KERNEL);
253 if (!cfg)
254 return -ENOMEM;
255
256 parse_dt_cfg(np, dt_params, ARRAY_SIZE(dt_params), cfg, &ncfg);
Linus Walleijf684e4a2015-01-12 00:45:55 +0100257 if (pctldev && pctldev->desc->num_custom_params &&
258 pctldev->desc->custom_params)
259 parse_dt_cfg(np, pctldev->desc->custom_params,
260 pctldev->desc->num_custom_params, cfg, &ncfg);
Heiko Stübner7db9af42013-06-10 21:40:29 +0200261
Heiko Stübner6abab2d42013-06-14 17:43:55 +0200262 ret = 0;
263
Heiko Stübnere4a88442013-06-14 17:43:21 +0200264 /* no configs found at all */
265 if (ncfg == 0) {
266 *configs = NULL;
267 *nconfigs = 0;
Heiko Stübner6abab2d42013-06-14 17:43:55 +0200268 goto out;
Heiko Stübnere4a88442013-06-14 17:43:21 +0200269 }
270
Heiko Stübner7db9af42013-06-10 21:40:29 +0200271 /*
272 * Now limit the number of configs to the real number of
273 * found properties.
274 */
Benoit Tainedb388df2014-05-26 17:21:27 +0200275 *configs = kmemdup(cfg, ncfg * sizeof(unsigned long), GFP_KERNEL);
Heiko Stübner6abab2d42013-06-14 17:43:55 +0200276 if (!*configs) {
277 ret = -ENOMEM;
278 goto out;
279 }
Heiko Stübner7db9af42013-06-10 21:40:29 +0200280
Heiko Stübner7db9af42013-06-10 21:40:29 +0200281 *nconfigs = ncfg;
Heiko Stübner6abab2d42013-06-14 17:43:55 +0200282
283out:
284 kfree(cfg);
285 return ret;
Heiko Stübner7db9af42013-06-10 21:40:29 +0200286}
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530287
288int pinconf_generic_dt_subnode_to_map(struct pinctrl_dev *pctldev,
289 struct device_node *np, struct pinctrl_map **map,
Laxman Dewangan3287c242013-08-21 16:53:37 +0530290 unsigned *reserved_maps, unsigned *num_maps,
291 enum pinctrl_map_type type)
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530292{
293 int ret;
294 const char *function;
295 struct device *dev = pctldev->dev;
296 unsigned long *configs = NULL;
297 unsigned num_configs = 0;
Baruch Siachc7289502015-03-19 22:17:41 +0200298 unsigned reserve, strings_count;
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530299 struct property *prop;
300 const char *group;
Soren Brinkmann31c89c92015-01-09 07:43:45 -0800301 const char *subnode_target_type = "pins";
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530302
Baruch Siachc7289502015-03-19 22:17:41 +0200303 ret = of_property_count_strings(np, "pins");
304 if (ret < 0) {
305 ret = of_property_count_strings(np, "groups");
306 if (ret < 0)
307 /* skip this node; may contain config child nodes */
308 return 0;
309 if (type == PIN_MAP_TYPE_INVALID)
310 type = PIN_MAP_TYPE_CONFIGS_GROUP;
311 subnode_target_type = "groups";
312 } else {
313 if (type == PIN_MAP_TYPE_INVALID)
314 type = PIN_MAP_TYPE_CONFIGS_PIN;
315 }
316 strings_count = ret;
317
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530318 ret = of_property_read_string(np, "function", &function);
319 if (ret < 0) {
320 /* EINVAL=missing, which is fine since it's optional */
321 if (ret != -EINVAL)
Rob Herringf5292d02017-07-18 16:43:23 -0500322 dev_err(dev, "%pOF: could not parse property function\n",
323 np);
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530324 function = NULL;
325 }
326
Soren Brinkmanndd4d01f2015-01-09 07:43:46 -0800327 ret = pinconf_generic_parse_dt_config(np, pctldev, &configs,
328 &num_configs);
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530329 if (ret < 0) {
Rob Herringf5292d02017-07-18 16:43:23 -0500330 dev_err(dev, "%pOF: could not parse node property\n", np);
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530331 return ret;
332 }
333
334 reserve = 0;
335 if (function != NULL)
336 reserve++;
337 if (num_configs)
338 reserve++;
Soren Brinkmann31c89c92015-01-09 07:43:45 -0800339
Baruch Siachc7289502015-03-19 22:17:41 +0200340 reserve *= strings_count;
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530341
342 ret = pinctrl_utils_reserve_map(pctldev, map, reserved_maps,
343 num_maps, reserve);
344 if (ret < 0)
345 goto exit;
346
Soren Brinkmann31c89c92015-01-09 07:43:45 -0800347 of_property_for_each_string(np, subnode_target_type, prop, group) {
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530348 if (function) {
349 ret = pinctrl_utils_add_map_mux(pctldev, map,
350 reserved_maps, num_maps, group,
351 function);
352 if (ret < 0)
353 goto exit;
354 }
355
356 if (num_configs) {
357 ret = pinctrl_utils_add_map_configs(pctldev, map,
358 reserved_maps, num_maps, group, configs,
Laxman Dewangan3287c242013-08-21 16:53:37 +0530359 num_configs, type);
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530360 if (ret < 0)
361 goto exit;
362 }
363 }
364 ret = 0;
365
366exit:
367 kfree(configs);
368 return ret;
369}
370EXPORT_SYMBOL_GPL(pinconf_generic_dt_subnode_to_map);
371
372int pinconf_generic_dt_node_to_map(struct pinctrl_dev *pctldev,
373 struct device_node *np_config, struct pinctrl_map **map,
Laxman Dewangan3287c242013-08-21 16:53:37 +0530374 unsigned *num_maps, enum pinctrl_map_type type)
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530375{
376 unsigned reserved_maps;
377 struct device_node *np;
378 int ret;
379
380 reserved_maps = 0;
381 *map = NULL;
382 *num_maps = 0;
383
Baruch Siachc7289502015-03-19 22:17:41 +0200384 ret = pinconf_generic_dt_subnode_to_map(pctldev, np_config, map,
385 &reserved_maps, num_maps, type);
386 if (ret < 0)
387 goto exit;
388
Laxman Dewangane06c2ee2016-10-28 16:54:21 +0530389 for_each_available_child_of_node(np_config, np) {
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530390 ret = pinconf_generic_dt_subnode_to_map(pctldev, np, map,
Laxman Dewangan3287c242013-08-21 16:53:37 +0530391 &reserved_maps, num_maps, type);
Baruch Siachc7289502015-03-19 22:17:41 +0200392 if (ret < 0)
393 goto exit;
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530394 }
395 return 0;
Baruch Siachc7289502015-03-19 22:17:41 +0200396
397exit:
Irina Tirdead32f7fd2016-03-31 14:44:42 +0300398 pinctrl_utils_free_map(pctldev, *map, *num_maps);
Baruch Siachc7289502015-03-19 22:17:41 +0200399 return ret;
Laxman Dewangane81c8f12013-08-06 18:42:34 +0530400}
401EXPORT_SYMBOL_GPL(pinconf_generic_dt_node_to_map);
402
Jon Hunter8dfebf52016-06-17 13:03:40 +0100403void pinconf_generic_dt_free_map(struct pinctrl_dev *pctldev,
404 struct pinctrl_map *map,
405 unsigned num_maps)
406{
407 pinctrl_utils_free_map(pctldev, map, num_maps);
408}
409EXPORT_SYMBOL_GPL(pinconf_generic_dt_free_map);
410
Heiko Stübner7db9af42013-06-10 21:40:29 +0200411#endif