1 // SPDX-License-Identifier: GPL-2.0-only
3 * Device tree integration for the pin control subsystem
5 * Copyright (C) 2012 NVIDIA CORPORATION. All rights reserved.
8 #include <linux/device.h>
10 #include <linux/pinctrl/pinctrl.h>
11 #include <linux/slab.h>
14 #include "devicetree.h"
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
22 struct pinctrl_dt_map
{
23 struct list_head node
;
24 struct pinctrl_dev
*pctldev
;
25 struct pinctrl_map
*map
;
29 static void dt_free_map(struct pinctrl_dev
*pctldev
,
30 struct pinctrl_map
*map
, unsigned num_maps
)
34 for (i
= 0; i
< num_maps
; ++i
) {
35 kfree_const(map
[i
].dev_name
);
36 map
[i
].dev_name
= NULL
;
40 const struct pinctrl_ops
*ops
= pctldev
->desc
->pctlops
;
42 ops
->dt_free_map(pctldev
, map
, num_maps
);
44 /* There is no pctldev for PIN_MAP_TYPE_DUMMY_STATE */
49 void pinctrl_dt_free_maps(struct pinctrl
*p
)
51 struct pinctrl_dt_map
*dt_map
, *n1
;
53 list_for_each_entry_safe(dt_map
, n1
, &p
->dt_maps
, node
) {
54 pinctrl_unregister_mappings(dt_map
->map
);
55 list_del(&dt_map
->node
);
56 dt_free_map(dt_map
->pctldev
, dt_map
->map
,
61 of_node_put(p
->dev
->of_node
);
64 static int dt_remember_or_free_map(struct pinctrl
*p
, const char *statename
,
65 struct pinctrl_dev
*pctldev
,
66 struct pinctrl_map
*map
, unsigned num_maps
)
69 struct pinctrl_dt_map
*dt_map
;
71 /* Initialize common mapping table entry fields */
72 for (i
= 0; i
< num_maps
; i
++) {
75 devname
= kstrdup_const(dev_name(p
->dev
), GFP_KERNEL
);
79 map
[i
].dev_name
= devname
;
80 map
[i
].name
= statename
;
82 map
[i
].ctrl_dev_name
= dev_name(pctldev
->dev
);
85 /* Remember the converted mapping table entries */
86 dt_map
= kzalloc(sizeof(*dt_map
), GFP_KERNEL
);
90 dt_map
->pctldev
= pctldev
;
92 dt_map
->num_maps
= num_maps
;
93 list_add_tail(&dt_map
->node
, &p
->dt_maps
);
95 return pinctrl_register_mappings(map
, num_maps
);
98 dt_free_map(pctldev
, map
, num_maps
);
102 struct pinctrl_dev
*of_pinctrl_get(struct device_node
*np
)
104 return get_pinctrl_dev_from_of_node(np
);
107 static int dt_to_map_one_config(struct pinctrl
*p
,
108 struct pinctrl_dev
*hog_pctldev
,
109 const char *statename
,
110 struct device_node
*np_config
)
112 struct pinctrl_dev
*pctldev
= NULL
;
113 struct device_node
*np_pctldev
;
114 const struct pinctrl_ops
*ops
;
116 struct pinctrl_map
*map
;
118 bool allow_default
= false;
120 /* Find the pin controller containing np_config */
121 np_pctldev
= of_node_get(np_config
);
124 allow_default
= of_property_read_bool(np_pctldev
,
125 "pinctrl-use-default");
127 np_pctldev
= of_get_next_parent(np_pctldev
);
128 if (!np_pctldev
|| of_node_is_root(np_pctldev
)) {
129 of_node_put(np_pctldev
);
130 /* keep deferring if modules are enabled unless we've timed out */
131 if (IS_ENABLED(CONFIG_MODULES
) && !allow_default
)
132 return driver_deferred_probe_check_state_continue(p
->dev
);
134 return driver_deferred_probe_check_state(p
->dev
);
136 /* If we're creating a hog we can use the passed pctldev */
137 if (hog_pctldev
&& (np_pctldev
== p
->dev
->of_node
)) {
138 pctldev
= hog_pctldev
;
141 pctldev
= get_pinctrl_dev_from_of_node(np_pctldev
);
144 /* Do not defer probing of hogs (circular loop) */
145 if (np_pctldev
== p
->dev
->of_node
) {
146 of_node_put(np_pctldev
);
150 of_node_put(np_pctldev
);
153 * Call pinctrl driver to parse device tree node, and
154 * generate mapping table entries
156 ops
= pctldev
->desc
->pctlops
;
157 if (!ops
->dt_node_to_map
) {
158 dev_err(p
->dev
, "pctldev %s doesn't support DT\n",
159 dev_name(pctldev
->dev
));
162 ret
= ops
->dt_node_to_map(pctldev
, np_config
, &map
, &num_maps
);
165 else if (num_maps
== 0) {
167 * If we have no valid maps (maybe caused by empty pinctrl node
168 * or typing error) ther is no need remember this, so just
172 "there is not valid maps for state %s\n", statename
);
176 /* Stash the mapping table chunk away for later use */
177 return dt_remember_or_free_map(p
, statename
, pctldev
, map
, num_maps
);
180 static int dt_remember_dummy_state(struct pinctrl
*p
, const char *statename
)
182 struct pinctrl_map
*map
;
184 map
= kzalloc(sizeof(*map
), GFP_KERNEL
);
188 /* There is no pctldev for PIN_MAP_TYPE_DUMMY_STATE */
189 map
->type
= PIN_MAP_TYPE_DUMMY_STATE
;
191 return dt_remember_or_free_map(p
, statename
, NULL
, map
, 1);
194 int pinctrl_dt_to_map(struct pinctrl
*p
, struct pinctrl_dev
*pctldev
)
196 struct device_node
*np
= p
->dev
->of_node
;
199 struct property
*prop
;
200 const char *statename
;
204 struct device_node
*np_config
;
206 /* CONFIG_OF enabled, p->dev not instantiated from DT */
208 if (of_have_populated_dt())
210 "no of_node; not parsing pinctrl DT\n");
214 /* We may store pointers to property names within the node */
217 /* For each defined state ID */
218 for (state
= 0; ; state
++) {
219 /* Retrieve the pinctrl-* property */
220 propname
= kasprintf(GFP_KERNEL
, "pinctrl-%d", state
);
221 prop
= of_find_property(np
, propname
, &size
);
231 size
/= sizeof(*list
);
233 /* Determine whether pinctrl-names property names the state */
234 ret
= of_property_read_string_index(np
, "pinctrl-names",
237 * If not, statename is just the integer state ID. But rather
238 * than dynamically allocate it and have to free it later,
239 * just point part way into the property name for the string.
242 statename
= prop
->name
+ strlen("pinctrl-");
244 /* For every referenced pin configuration node in it */
245 for (config
= 0; config
< size
; config
++) {
246 phandle
= be32_to_cpup(list
++);
248 /* Look up the pin configuration node */
249 np_config
= of_find_node_by_phandle(phandle
);
252 "prop %s index %i invalid phandle\n",
259 ret
= dt_to_map_one_config(p
, pctldev
, statename
,
261 of_node_put(np_config
);
266 /* No entries in DT? Generate a dummy state table entry */
268 ret
= dt_remember_dummy_state(p
, statename
);
277 pinctrl_dt_free_maps(p
);
282 * For pinctrl binding, typically #pinctrl-cells is for the pin controller
283 * device, so either parent or grandparent. See pinctrl-bindings.txt.
285 static int pinctrl_find_cells_size(const struct device_node
*np
)
287 const char *cells_name
= "#pinctrl-cells";
288 int cells_size
, error
;
290 error
= of_property_read_u32(np
->parent
, cells_name
, &cells_size
);
292 error
= of_property_read_u32(np
->parent
->parent
,
293 cells_name
, &cells_size
);
302 * pinctrl_get_list_and_count - Gets the list and it's cell size and number
303 * @np: pointer to device node with the property
304 * @list_name: property that contains the list
305 * @list: pointer for the list found
306 * @cells_size: pointer for the cell size found
307 * @nr_elements: pointer for the number of elements found
309 * Typically np is a single pinctrl entry containing the list.
311 static int pinctrl_get_list_and_count(const struct device_node
*np
,
312 const char *list_name
,
322 *list
= of_get_property(np
, list_name
, &size
);
326 *cells_size
= pinctrl_find_cells_size(np
);
330 /* First element is always the index within the pinctrl device */
331 *nr_elements
= (size
/ sizeof(**list
)) / (*cells_size
+ 1);
337 * pinctrl_count_index_with_args - Count number of elements in a pinctrl entry
338 * @np: pointer to device node with the property
339 * @list_name: property that contains the list
341 * Counts the number of elements in a pinctrl array consisting of an index
342 * within the controller and a number of u32 entries specified for each
343 * entry. Note that device_node is always for the parent pin controller device.
345 int pinctrl_count_index_with_args(const struct device_node
*np
,
346 const char *list_name
)
349 int size
, nr_cells
, error
;
351 error
= pinctrl_get_list_and_count(np
, list_name
, &list
,
358 EXPORT_SYMBOL_GPL(pinctrl_count_index_with_args
);
361 * pinctrl_copy_args - Populates of_phandle_args based on index
362 * @np: pointer to device node with the property
363 * @list: pointer to a list with the elements
364 * @index: entry within the list of elements
365 * @nr_cells: number of cells in the list
366 * @nr_elem: number of elements for each entry in the list
367 * @out_args: returned values
369 * Populates the of_phandle_args based on the index in the list.
371 static int pinctrl_copy_args(const struct device_node
*np
,
373 int index
, int nr_cells
, int nr_elem
,
374 struct of_phandle_args
*out_args
)
378 memset(out_args
, 0, sizeof(*out_args
));
379 out_args
->np
= (struct device_node
*)np
;
380 out_args
->args_count
= nr_cells
+ 1;
382 if (index
>= nr_elem
)
385 list
+= index
* (nr_cells
+ 1);
387 for (i
= 0; i
< nr_cells
+ 1; i
++)
388 out_args
->args
[i
] = be32_to_cpup(list
++);
394 * pinctrl_parse_index_with_args - Find a node pointed by index in a list
395 * @np: pointer to device node with the property
396 * @list_name: property that contains the list
397 * @index: index within the list
398 * @out_arts: entries in the list pointed by index
400 * Finds the selected element in a pinctrl array consisting of an index
401 * within the controller and a number of u32 entries specified for each
402 * entry. Note that device_node is always for the parent pin controller device.
404 int pinctrl_parse_index_with_args(const struct device_node
*np
,
405 const char *list_name
, int index
,
406 struct of_phandle_args
*out_args
)
409 int nr_elem
, nr_cells
, error
;
411 error
= pinctrl_get_list_and_count(np
, list_name
, &list
,
412 &nr_cells
, &nr_elem
);
413 if (error
|| !nr_cells
)
416 error
= pinctrl_copy_args(np
, list
, index
, nr_cells
, nr_elem
,
423 EXPORT_SYMBOL_GPL(pinctrl_parse_index_with_args
);