xref: /openbmc/linux/drivers/pinctrl/devicetree.c (revision 2f5947df)
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  * Device tree integration for the pin control subsystem
4  *
5  * Copyright (C) 2012 NVIDIA CORPORATION. All rights reserved.
6  */
7 
8 #include <linux/device.h>
9 #include <linux/of.h>
10 #include <linux/pinctrl/pinctrl.h>
11 #include <linux/slab.h>
12 
13 #include "core.h"
14 #include "devicetree.h"
15 
16 /**
17  * struct pinctrl_dt_map - mapping table chunk parsed from device tree
18  * @node: list node for struct pinctrl's @dt_maps field
19  * @pctldev: the pin controller that allocated this struct, and will free it
20  * @maps: the mapping table entries
21  */
22 struct pinctrl_dt_map {
23 	struct list_head node;
24 	struct pinctrl_dev *pctldev;
25 	struct pinctrl_map *map;
26 	unsigned num_maps;
27 };
28 
29 static void dt_free_map(struct pinctrl_dev *pctldev,
30 		     struct pinctrl_map *map, unsigned num_maps)
31 {
32 	if (pctldev) {
33 		const struct pinctrl_ops *ops = pctldev->desc->pctlops;
34 		if (ops->dt_free_map)
35 			ops->dt_free_map(pctldev, map, num_maps);
36 	} else {
37 		/* There is no pctldev for PIN_MAP_TYPE_DUMMY_STATE */
38 		kfree(map);
39 	}
40 }
41 
42 void pinctrl_dt_free_maps(struct pinctrl *p)
43 {
44 	struct pinctrl_dt_map *dt_map, *n1;
45 
46 	list_for_each_entry_safe(dt_map, n1, &p->dt_maps, node) {
47 		pinctrl_unregister_map(dt_map->map);
48 		list_del(&dt_map->node);
49 		dt_free_map(dt_map->pctldev, dt_map->map,
50 			    dt_map->num_maps);
51 		kfree(dt_map);
52 	}
53 
54 	of_node_put(p->dev->of_node);
55 }
56 
57 static int dt_remember_or_free_map(struct pinctrl *p, const char *statename,
58 				   struct pinctrl_dev *pctldev,
59 				   struct pinctrl_map *map, unsigned num_maps)
60 {
61 	int i;
62 	struct pinctrl_dt_map *dt_map;
63 
64 	/* Initialize common mapping table entry fields */
65 	for (i = 0; i < num_maps; i++) {
66 		map[i].dev_name = dev_name(p->dev);
67 		map[i].name = statename;
68 		if (pctldev)
69 			map[i].ctrl_dev_name = dev_name(pctldev->dev);
70 	}
71 
72 	/* Remember the converted mapping table entries */
73 	dt_map = kzalloc(sizeof(*dt_map), GFP_KERNEL);
74 	if (!dt_map) {
75 		dt_free_map(pctldev, map, num_maps);
76 		return -ENOMEM;
77 	}
78 
79 	dt_map->pctldev = pctldev;
80 	dt_map->map = map;
81 	dt_map->num_maps = num_maps;
82 	list_add_tail(&dt_map->node, &p->dt_maps);
83 
84 	return pinctrl_register_map(map, num_maps, false);
85 }
86 
87 struct pinctrl_dev *of_pinctrl_get(struct device_node *np)
88 {
89 	return get_pinctrl_dev_from_of_node(np);
90 }
91 
92 static int dt_to_map_one_config(struct pinctrl *p,
93 				struct pinctrl_dev *hog_pctldev,
94 				const char *statename,
95 				struct device_node *np_config)
96 {
97 	struct pinctrl_dev *pctldev = NULL;
98 	struct device_node *np_pctldev;
99 	const struct pinctrl_ops *ops;
100 	int ret;
101 	struct pinctrl_map *map;
102 	unsigned num_maps;
103 	bool allow_default = false;
104 
105 	/* Find the pin controller containing np_config */
106 	np_pctldev = of_node_get(np_config);
107 	for (;;) {
108 		if (!allow_default)
109 			allow_default = of_property_read_bool(np_pctldev,
110 							      "pinctrl-use-default");
111 
112 		np_pctldev = of_get_next_parent(np_pctldev);
113 		if (!np_pctldev || of_node_is_root(np_pctldev)) {
114 			of_node_put(np_pctldev);
115 			/* keep deferring if modules are enabled unless we've timed out */
116 			if (IS_ENABLED(CONFIG_MODULES) && !allow_default)
117 				return driver_deferred_probe_check_state_continue(p->dev);
118 
119 			return driver_deferred_probe_check_state(p->dev);
120 		}
121 		/* If we're creating a hog we can use the passed pctldev */
122 		if (hog_pctldev && (np_pctldev == p->dev->of_node)) {
123 			pctldev = hog_pctldev;
124 			break;
125 		}
126 		pctldev = get_pinctrl_dev_from_of_node(np_pctldev);
127 		if (pctldev)
128 			break;
129 		/* Do not defer probing of hogs (circular loop) */
130 		if (np_pctldev == p->dev->of_node) {
131 			of_node_put(np_pctldev);
132 			return -ENODEV;
133 		}
134 	}
135 	of_node_put(np_pctldev);
136 
137 	/*
138 	 * Call pinctrl driver to parse device tree node, and
139 	 * generate mapping table entries
140 	 */
141 	ops = pctldev->desc->pctlops;
142 	if (!ops->dt_node_to_map) {
143 		dev_err(p->dev, "pctldev %s doesn't support DT\n",
144 			dev_name(pctldev->dev));
145 		return -ENODEV;
146 	}
147 	ret = ops->dt_node_to_map(pctldev, np_config, &map, &num_maps);
148 	if (ret < 0)
149 		return ret;
150 
151 	/* Stash the mapping table chunk away for later use */
152 	return dt_remember_or_free_map(p, statename, pctldev, map, num_maps);
153 }
154 
155 static int dt_remember_dummy_state(struct pinctrl *p, const char *statename)
156 {
157 	struct pinctrl_map *map;
158 
159 	map = kzalloc(sizeof(*map), GFP_KERNEL);
160 	if (!map)
161 		return -ENOMEM;
162 
163 	/* There is no pctldev for PIN_MAP_TYPE_DUMMY_STATE */
164 	map->type = PIN_MAP_TYPE_DUMMY_STATE;
165 
166 	return dt_remember_or_free_map(p, statename, NULL, map, 1);
167 }
168 
169 bool pinctrl_dt_has_hogs(struct pinctrl_dev *pctldev)
170 {
171 	struct device_node *np;
172 	struct property *prop;
173 	int size;
174 
175 	np = pctldev->dev->of_node;
176 	if (!np)
177 		return false;
178 
179 	prop = of_find_property(np, "pinctrl-0", &size);
180 
181 	return prop ? true : false;
182 }
183 
184 int pinctrl_dt_to_map(struct pinctrl *p, struct pinctrl_dev *pctldev)
185 {
186 	struct device_node *np = p->dev->of_node;
187 	int state, ret;
188 	char *propname;
189 	struct property *prop;
190 	const char *statename;
191 	const __be32 *list;
192 	int size, config;
193 	phandle phandle;
194 	struct device_node *np_config;
195 
196 	/* CONFIG_OF enabled, p->dev not instantiated from DT */
197 	if (!np) {
198 		if (of_have_populated_dt())
199 			dev_dbg(p->dev,
200 				"no of_node; not parsing pinctrl DT\n");
201 		return 0;
202 	}
203 
204 	/* We may store pointers to property names within the node */
205 	of_node_get(np);
206 
207 	/* For each defined state ID */
208 	for (state = 0; ; state++) {
209 		/* Retrieve the pinctrl-* property */
210 		propname = kasprintf(GFP_KERNEL, "pinctrl-%d", state);
211 		prop = of_find_property(np, propname, &size);
212 		kfree(propname);
213 		if (!prop) {
214 			if (state == 0) {
215 				of_node_put(np);
216 				return -ENODEV;
217 			}
218 			break;
219 		}
220 		list = prop->value;
221 		size /= sizeof(*list);
222 
223 		/* Determine whether pinctrl-names property names the state */
224 		ret = of_property_read_string_index(np, "pinctrl-names",
225 						    state, &statename);
226 		/*
227 		 * If not, statename is just the integer state ID. But rather
228 		 * than dynamically allocate it and have to free it later,
229 		 * just point part way into the property name for the string.
230 		 */
231 		if (ret < 0) {
232 			/* strlen("pinctrl-") == 8 */
233 			statename = prop->name + 8;
234 		}
235 
236 		/* For every referenced pin configuration node in it */
237 		for (config = 0; config < size; config++) {
238 			phandle = be32_to_cpup(list++);
239 
240 			/* Look up the pin configuration node */
241 			np_config = of_find_node_by_phandle(phandle);
242 			if (!np_config) {
243 				dev_err(p->dev,
244 					"prop %s index %i invalid phandle\n",
245 					prop->name, config);
246 				ret = -EINVAL;
247 				goto err;
248 			}
249 
250 			/* Parse the node */
251 			ret = dt_to_map_one_config(p, pctldev, statename,
252 						   np_config);
253 			of_node_put(np_config);
254 			if (ret < 0)
255 				goto err;
256 		}
257 
258 		/* No entries in DT? Generate a dummy state table entry */
259 		if (!size) {
260 			ret = dt_remember_dummy_state(p, statename);
261 			if (ret < 0)
262 				goto err;
263 		}
264 	}
265 
266 	return 0;
267 
268 err:
269 	pinctrl_dt_free_maps(p);
270 	return ret;
271 }
272 
273 /*
274  * For pinctrl binding, typically #pinctrl-cells is for the pin controller
275  * device, so either parent or grandparent. See pinctrl-bindings.txt.
276  */
277 static int pinctrl_find_cells_size(const struct device_node *np)
278 {
279 	const char *cells_name = "#pinctrl-cells";
280 	int cells_size, error;
281 
282 	error = of_property_read_u32(np->parent, cells_name, &cells_size);
283 	if (error) {
284 		error = of_property_read_u32(np->parent->parent,
285 					     cells_name, &cells_size);
286 		if (error)
287 			return -ENOENT;
288 	}
289 
290 	return cells_size;
291 }
292 
293 /**
294  * pinctrl_get_list_and_count - Gets the list and it's cell size and number
295  * @np: pointer to device node with the property
296  * @list_name: property that contains the list
297  * @list: pointer for the list found
298  * @cells_size: pointer for the cell size found
299  * @nr_elements: pointer for the number of elements found
300  *
301  * Typically np is a single pinctrl entry containing the list.
302  */
303 static int pinctrl_get_list_and_count(const struct device_node *np,
304 				      const char *list_name,
305 				      const __be32 **list,
306 				      int *cells_size,
307 				      int *nr_elements)
308 {
309 	int size;
310 
311 	*cells_size = 0;
312 	*nr_elements = 0;
313 
314 	*list = of_get_property(np, list_name, &size);
315 	if (!*list)
316 		return -ENOENT;
317 
318 	*cells_size = pinctrl_find_cells_size(np);
319 	if (*cells_size < 0)
320 		return -ENOENT;
321 
322 	/* First element is always the index within the pinctrl device */
323 	*nr_elements = (size / sizeof(**list)) / (*cells_size + 1);
324 
325 	return 0;
326 }
327 
328 /**
329  * pinctrl_count_index_with_args - Count number of elements in a pinctrl entry
330  * @np: pointer to device node with the property
331  * @list_name: property that contains the list
332  *
333  * Counts the number of elements in a pinctrl array consisting of an index
334  * within the controller and a number of u32 entries specified for each
335  * entry. Note that device_node is always for the parent pin controller device.
336  */
337 int pinctrl_count_index_with_args(const struct device_node *np,
338 				  const char *list_name)
339 {
340 	const __be32 *list;
341 	int size, nr_cells, error;
342 
343 	error = pinctrl_get_list_and_count(np, list_name, &list,
344 					   &nr_cells, &size);
345 	if (error)
346 		return error;
347 
348 	return size;
349 }
350 EXPORT_SYMBOL_GPL(pinctrl_count_index_with_args);
351 
352 /**
353  * pinctrl_copy_args - Populates of_phandle_args based on index
354  * @np: pointer to device node with the property
355  * @list: pointer to a list with the elements
356  * @index: entry within the list of elements
357  * @nr_cells: number of cells in the list
358  * @nr_elem: number of elements for each entry in the list
359  * @out_args: returned values
360  *
361  * Populates the of_phandle_args based on the index in the list.
362  */
363 static int pinctrl_copy_args(const struct device_node *np,
364 			     const __be32 *list,
365 			     int index, int nr_cells, int nr_elem,
366 			     struct of_phandle_args *out_args)
367 {
368 	int i;
369 
370 	memset(out_args, 0, sizeof(*out_args));
371 	out_args->np = (struct device_node *)np;
372 	out_args->args_count = nr_cells + 1;
373 
374 	if (index >= nr_elem)
375 		return -EINVAL;
376 
377 	list += index * (nr_cells + 1);
378 
379 	for (i = 0; i < nr_cells + 1; i++)
380 		out_args->args[i] = be32_to_cpup(list++);
381 
382 	return 0;
383 }
384 
385 /**
386  * pinctrl_parse_index_with_args - Find a node pointed by index in a list
387  * @np: pointer to device node with the property
388  * @list_name: property that contains the list
389  * @index: index within the list
390  * @out_arts: entries in the list pointed by index
391  *
392  * Finds the selected element in a pinctrl array consisting of an index
393  * within the controller and a number of u32 entries specified for each
394  * entry. Note that device_node is always for the parent pin controller device.
395  */
396 int pinctrl_parse_index_with_args(const struct device_node *np,
397 				  const char *list_name, int index,
398 				  struct of_phandle_args *out_args)
399 {
400 	const __be32 *list;
401 	int nr_elem, nr_cells, error;
402 
403 	error = pinctrl_get_list_and_count(np, list_name, &list,
404 					   &nr_cells, &nr_elem);
405 	if (error || !nr_cells)
406 		return error;
407 
408 	error = pinctrl_copy_args(np, list, index, nr_cells, nr_elem,
409 				  out_args);
410 	if (error)
411 		return error;
412 
413 	return 0;
414 }
415 EXPORT_SYMBOL_GPL(pinctrl_parse_index_with_args);
416