Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Simon Glass | 644ec0a | 2017-05-18 20:08:54 -0600 | [diff] [blame] | 2 | /* |
| 3 | * Originally from Linux v4.9 |
| 4 | * Copyright (C) 1996-2005 Paul Mackerras. |
| 5 | * |
| 6 | * Updates for PPC64 by Peter Bergner & David Engebretsen, IBM Corp. |
| 7 | * Updates for SPARC64 by David S. Miller |
| 8 | * Derived from PowerPC and Sparc prom.h files by Stephen Rothwell, IBM Corp. |
| 9 | * |
| 10 | * Copyright (c) 2017 Google, Inc |
| 11 | * Written by Simon Glass <sjg@chromium.org> |
| 12 | * |
| 13 | * Modified for U-Boot |
| 14 | * Copyright (c) 2017 Google, Inc |
Simon Glass | 644ec0a | 2017-05-18 20:08:54 -0600 | [diff] [blame] | 15 | */ |
| 16 | |
| 17 | #ifndef _DM_OF_ACCESS_H |
| 18 | #define _DM_OF_ACCESS_H |
| 19 | |
| 20 | #include <dm/of.h> |
| 21 | |
| 22 | /** |
| 23 | * of_find_all_nodes - Get next node in global list |
| 24 | * @prev: Previous node or NULL to start iteration |
| 25 | * of_node_put() will be called on it |
| 26 | * |
| 27 | * Returns a node pointer with refcount incremented, use |
| 28 | * of_node_put() on it when done. |
| 29 | */ |
| 30 | struct device_node *of_find_all_nodes(struct device_node *prev); |
| 31 | |
| 32 | #define for_each_of_allnodes_from(from, dn) \ |
| 33 | for (dn = of_find_all_nodes(from); dn; dn = of_find_all_nodes(dn)) |
| 34 | #define for_each_of_allnodes(dn) for_each_of_allnodes_from(NULL, dn) |
| 35 | |
| 36 | /* Dummy functions to mirror Linux. These are not used in U-Boot */ |
| 37 | #define of_node_get(x) (x) |
| 38 | static inline void of_node_put(const struct device_node *np) { } |
| 39 | |
| 40 | /** |
| 41 | * of_n_addr_cells() - Get the number of address cells for a node |
| 42 | * |
| 43 | * This walks back up the tree to find the closest #address-cells property |
| 44 | * which controls the given node. |
| 45 | * |
| 46 | * @np: Node pointer to check |
Patrick Delaunay | be74f71 | 2022-01-12 10:53:49 +0100 | [diff] [blame^] | 47 | * Return: number of address cells this node uses |
Simon Glass | 644ec0a | 2017-05-18 20:08:54 -0600 | [diff] [blame] | 48 | */ |
| 49 | int of_n_addr_cells(const struct device_node *np); |
| 50 | |
| 51 | /** |
| 52 | * of_n_size_cells() - Get the number of size cells for a node |
| 53 | * |
| 54 | * This walks back up the tree to find the closest #size-cells property |
| 55 | * which controls the given node. |
| 56 | * |
| 57 | * @np: Node pointer to check |
Patrick Delaunay | be74f71 | 2022-01-12 10:53:49 +0100 | [diff] [blame^] | 58 | * Return: number of size cells this node uses |
Simon Glass | 644ec0a | 2017-05-18 20:08:54 -0600 | [diff] [blame] | 59 | */ |
| 60 | int of_n_size_cells(const struct device_node *np); |
| 61 | |
| 62 | /** |
Simon Glass | 878d68c | 2017-06-12 06:21:31 -0600 | [diff] [blame] | 63 | * of_simple_addr_cells() - Get the address cells property in a node |
| 64 | * |
| 65 | * This function matches fdt_address_cells(). |
| 66 | * |
| 67 | * @np: Node pointer to check |
Patrick Delaunay | be74f71 | 2022-01-12 10:53:49 +0100 | [diff] [blame^] | 68 | * Return: value of #address-cells property in this node, or 2 if none |
Simon Glass | 878d68c | 2017-06-12 06:21:31 -0600 | [diff] [blame] | 69 | */ |
| 70 | int of_simple_addr_cells(const struct device_node *np); |
| 71 | |
| 72 | /** |
| 73 | * of_simple_size_cells() - Get the size cells property in a node |
| 74 | * |
| 75 | * This function matches fdt_size_cells(). |
| 76 | * |
| 77 | * @np: Node pointer to check |
Patrick Delaunay | be74f71 | 2022-01-12 10:53:49 +0100 | [diff] [blame^] | 78 | * Return: value of #size-cells property in this node, or 2 if none |
Simon Glass | 878d68c | 2017-06-12 06:21:31 -0600 | [diff] [blame] | 79 | */ |
| 80 | int of_simple_size_cells(const struct device_node *np); |
| 81 | |
| 82 | /** |
Simon Glass | 644ec0a | 2017-05-18 20:08:54 -0600 | [diff] [blame] | 83 | * of_find_property() - find a property in a node |
| 84 | * |
| 85 | * @np: Pointer to device node holding property |
| 86 | * @name: Name of property |
| 87 | * @lenp: If non-NULL, returns length of property |
Patrick Delaunay | be74f71 | 2022-01-12 10:53:49 +0100 | [diff] [blame^] | 88 | * Return: pointer to property, or NULL if not found |
Simon Glass | 644ec0a | 2017-05-18 20:08:54 -0600 | [diff] [blame] | 89 | */ |
| 90 | struct property *of_find_property(const struct device_node *np, |
| 91 | const char *name, int *lenp); |
| 92 | |
| 93 | /** |
| 94 | * of_get_property() - get a property value |
| 95 | * |
| 96 | * Find a property with a given name for a given node and return the value. |
| 97 | * |
| 98 | * @np: Pointer to device node holding property |
| 99 | * @name: Name of property |
| 100 | * @lenp: If non-NULL, returns length of property |
Patrick Delaunay | be74f71 | 2022-01-12 10:53:49 +0100 | [diff] [blame^] | 101 | * Return: pointer to property value, or NULL if not found |
Simon Glass | 644ec0a | 2017-05-18 20:08:54 -0600 | [diff] [blame] | 102 | */ |
| 103 | const void *of_get_property(const struct device_node *np, const char *name, |
| 104 | int *lenp); |
| 105 | |
| 106 | /** |
Patrick Delaunay | ce891fca | 2020-01-13 11:34:56 +0100 | [diff] [blame] | 107 | * of_get_first_property()- get to the pointer of the first property |
| 108 | * |
| 109 | * Get pointer to the first property of the node, it is used to iterate |
| 110 | * and read all the property with of_get_next_property_by_prop(). |
| 111 | * |
| 112 | * @np: Pointer to device node |
Patrick Delaunay | be74f71 | 2022-01-12 10:53:49 +0100 | [diff] [blame^] | 113 | * Return: pointer to property or NULL if not found |
Patrick Delaunay | ce891fca | 2020-01-13 11:34:56 +0100 | [diff] [blame] | 114 | */ |
| 115 | const struct property *of_get_first_property(const struct device_node *np); |
| 116 | |
| 117 | /** |
| 118 | * of_get_next_property() - get to the pointer of the next property |
| 119 | * |
| 120 | * Get pointer to the next property of the node, it is used to iterate |
| 121 | * and read all the property with of_get_property_by_prop(). |
| 122 | * |
| 123 | * @np: Pointer to device node |
| 124 | * @property: pointer of the current property |
Patrick Delaunay | be74f71 | 2022-01-12 10:53:49 +0100 | [diff] [blame^] | 125 | * Return: pointer to next property or NULL if not found |
Patrick Delaunay | ce891fca | 2020-01-13 11:34:56 +0100 | [diff] [blame] | 126 | */ |
| 127 | const struct property *of_get_next_property(const struct device_node *np, |
| 128 | const struct property *property); |
| 129 | |
| 130 | /** |
| 131 | * of_get_property_by_prop() - get a property value of a node property |
| 132 | * |
| 133 | * Get value for the property identified by node and property pointer. |
| 134 | * |
Patrick Delaunay | be74f71 | 2022-01-12 10:53:49 +0100 | [diff] [blame^] | 135 | * @np: Pointer to device node |
Patrick Delaunay | ce891fca | 2020-01-13 11:34:56 +0100 | [diff] [blame] | 136 | * @property: pointer of the property to read |
Patrick Delaunay | be74f71 | 2022-01-12 10:53:49 +0100 | [diff] [blame^] | 137 | * @name: place to property name on success |
Patrick Delaunay | ce891fca | 2020-01-13 11:34:56 +0100 | [diff] [blame] | 138 | * @lenp: place to put length on success |
Patrick Delaunay | be74f71 | 2022-01-12 10:53:49 +0100 | [diff] [blame^] | 139 | * Return: pointer to property value or NULL if error |
Patrick Delaunay | ce891fca | 2020-01-13 11:34:56 +0100 | [diff] [blame] | 140 | */ |
| 141 | const void *of_get_property_by_prop(const struct device_node *np, |
| 142 | const struct property *property, |
| 143 | const char **name, |
| 144 | int *lenp); |
| 145 | |
| 146 | /** |
Simon Glass | 644ec0a | 2017-05-18 20:08:54 -0600 | [diff] [blame] | 147 | * of_device_is_compatible() - Check if the node matches given constraints |
Patrick Delaunay | be74f71 | 2022-01-12 10:53:49 +0100 | [diff] [blame^] | 148 | * @np: Pointer to device node |
Simon Glass | 644ec0a | 2017-05-18 20:08:54 -0600 | [diff] [blame] | 149 | * @compat: required compatible string, NULL or "" for any match |
| 150 | * @type: required device_type value, NULL or "" for any match |
| 151 | * @name: required node name, NULL or "" for any match |
| 152 | * |
| 153 | * Checks if the given @compat, @type and @name strings match the |
| 154 | * properties of the given @device. A constraints can be skipped by |
| 155 | * passing NULL or an empty string as the constraint. |
| 156 | * |
Patrick Delaunay | be74f71 | 2022-01-12 10:53:49 +0100 | [diff] [blame^] | 157 | * Return: 0 for no match, and a positive integer on match. The return |
Simon Glass | 644ec0a | 2017-05-18 20:08:54 -0600 | [diff] [blame] | 158 | * value is a relative score with larger values indicating better |
| 159 | * matches. The score is weighted for the most specific compatible value |
| 160 | * to get the highest score. Matching type is next, followed by matching |
| 161 | * name. Practically speaking, this results in the following priority |
| 162 | * order for matches: |
| 163 | * |
| 164 | * 1. specific compatible && type && name |
| 165 | * 2. specific compatible && type |
| 166 | * 3. specific compatible && name |
| 167 | * 4. specific compatible |
| 168 | * 5. general compatible && type && name |
| 169 | * 6. general compatible && type |
| 170 | * 7. general compatible && name |
| 171 | * 8. general compatible |
| 172 | * 9. type && name |
| 173 | * 10. type |
| 174 | * 11. name |
| 175 | */ |
| 176 | int of_device_is_compatible(const struct device_node *np, const char *compat, |
| 177 | const char *type, const char *name); |
| 178 | |
| 179 | /** |
| 180 | * of_device_is_available() - check if a device is available for use |
| 181 | * |
Patrick Delaunay | be74f71 | 2022-01-12 10:53:49 +0100 | [diff] [blame^] | 182 | * @np: Pointer to device node to check for availability |
Simon Glass | 644ec0a | 2017-05-18 20:08:54 -0600 | [diff] [blame] | 183 | * |
Patrick Delaunay | be74f71 | 2022-01-12 10:53:49 +0100 | [diff] [blame^] | 184 | * Return: true if the status property is absent or set to "okay", false |
Simon Glass | 644ec0a | 2017-05-18 20:08:54 -0600 | [diff] [blame] | 185 | * otherwise |
| 186 | */ |
| 187 | bool of_device_is_available(const struct device_node *np); |
| 188 | |
| 189 | /** |
| 190 | * of_get_parent() - Get a node's parent, if any |
| 191 | * |
Patrick Delaunay | be74f71 | 2022-01-12 10:53:49 +0100 | [diff] [blame^] | 192 | * @np: Pointer to device node to check |
| 193 | * Return: a node pointer, or NULL if none |
Simon Glass | 644ec0a | 2017-05-18 20:08:54 -0600 | [diff] [blame] | 194 | */ |
| 195 | struct device_node *of_get_parent(const struct device_node *np); |
| 196 | |
| 197 | /** |
| 198 | * of_find_node_opts_by_path() - Find a node matching a full OF path |
| 199 | * |
| 200 | * @path: Either the full path to match, or if the path does not start with |
| 201 | * '/', the name of a property of the /aliases node (an alias). In the |
| 202 | * case of an alias, the node matching the alias' value will be returned. |
| 203 | * @opts: Address of a pointer into which to store the start of an options |
| 204 | * string appended to the end of the path with a ':' separator. Can be NULL |
| 205 | * |
| 206 | * Valid paths: |
| 207 | * /foo/bar Full path |
| 208 | * foo Valid alias |
| 209 | * foo/bar Valid alias + relative path |
| 210 | * |
Patrick Delaunay | be74f71 | 2022-01-12 10:53:49 +0100 | [diff] [blame^] | 211 | * Return: a node pointer or NULL if not found |
Simon Glass | 644ec0a | 2017-05-18 20:08:54 -0600 | [diff] [blame] | 212 | */ |
| 213 | struct device_node *of_find_node_opts_by_path(const char *path, |
| 214 | const char **opts); |
| 215 | |
| 216 | static inline struct device_node *of_find_node_by_path(const char *path) |
| 217 | { |
| 218 | return of_find_node_opts_by_path(path, NULL); |
| 219 | } |
| 220 | |
| 221 | /** |
| 222 | * of_find_compatible_node() - find a node based on its compatible string |
| 223 | * |
| 224 | * Find a node based on type and one of the tokens in its "compatible" property |
| 225 | * @from: Node to start searching from or NULL. the node you pass will not be |
| 226 | * searched, only the next one will; typically, you pass what the previous |
| 227 | * call returned. |
| 228 | * @type: The type string to match "device_type" or NULL to ignore |
| 229 | * @compatible: The string to match to one of the tokens in the device |
| 230 | * "compatible" list. |
Patrick Delaunay | be74f71 | 2022-01-12 10:53:49 +0100 | [diff] [blame^] | 231 | * Return: node pointer or NULL if not found |
Simon Glass | 644ec0a | 2017-05-18 20:08:54 -0600 | [diff] [blame] | 232 | */ |
| 233 | struct device_node *of_find_compatible_node(struct device_node *from, |
| 234 | const char *type, const char *compatible); |
| 235 | |
| 236 | /** |
Jens Wiklander | 61fba0f | 2018-08-20 11:09:58 +0200 | [diff] [blame] | 237 | * of_find_node_by_prop_value() - find a node with a given property value |
| 238 | * |
| 239 | * Find a node based on a property value. |
| 240 | * @from: Node to start searching from or NULL. the node you pass will not be |
| 241 | * searched, only the next one will; typically, you pass what the previous |
| 242 | * call returned. |
| 243 | * @propname: property name to check |
| 244 | * @propval: property value to search for |
| 245 | * @proplen: length of the value in propval |
Patrick Delaunay | be74f71 | 2022-01-12 10:53:49 +0100 | [diff] [blame^] | 246 | * Return: node pointer or NULL if not found |
Jens Wiklander | 61fba0f | 2018-08-20 11:09:58 +0200 | [diff] [blame] | 247 | */ |
| 248 | struct device_node *of_find_node_by_prop_value(struct device_node *from, |
| 249 | const char *propname, |
| 250 | const void *propval, |
| 251 | int proplen); |
| 252 | /** |
Simon Glass | 644ec0a | 2017-05-18 20:08:54 -0600 | [diff] [blame] | 253 | * of_find_node_by_phandle() - Find a node given a phandle |
| 254 | * |
| 255 | * @handle: phandle of the node to find |
| 256 | * |
Patrick Delaunay | be74f71 | 2022-01-12 10:53:49 +0100 | [diff] [blame^] | 257 | * Return: node pointer, or NULL if not found |
Simon Glass | 644ec0a | 2017-05-18 20:08:54 -0600 | [diff] [blame] | 258 | */ |
| 259 | struct device_node *of_find_node_by_phandle(phandle handle); |
| 260 | |
| 261 | /** |
| 262 | * of_read_u32() - Find and read a 32-bit integer from a property |
| 263 | * |
| 264 | * Search for a property in a device node and read a 32-bit value from |
| 265 | * it. |
| 266 | * |
| 267 | * @np: device node from which the property value is to be read. |
| 268 | * @propname: name of the property to be searched. |
| 269 | * @outp: pointer to return value, modified only if return value is 0. |
| 270 | * |
Patrick Delaunay | be74f71 | 2022-01-12 10:53:49 +0100 | [diff] [blame^] | 271 | * Return: 0 on success, -EINVAL if the property does not exist, |
Simon Glass | 644ec0a | 2017-05-18 20:08:54 -0600 | [diff] [blame] | 272 | * -ENODATA if property does not have a value, and -EOVERFLOW if the |
| 273 | * property data isn't large enough. |
| 274 | */ |
| 275 | int of_read_u32(const struct device_node *np, const char *propname, u32 *outp); |
| 276 | |
| 277 | /** |
Dario Binacchi | 4bb7075 | 2020-03-29 18:04:41 +0200 | [diff] [blame] | 278 | * of_read_u32_index() - Find and read a 32-bit value from a multi-value |
| 279 | * property |
| 280 | * |
| 281 | * Search for a property in a device node and read a 32-bit value from |
| 282 | * it. |
| 283 | * |
| 284 | * @np: device node from which the property value is to be read. |
| 285 | * @propname: name of the property to be searched. |
| 286 | * @index: index of the u32 in the list of values |
| 287 | * @outp: pointer to return value, modified only if return value is 0. |
| 288 | * |
Patrick Delaunay | be74f71 | 2022-01-12 10:53:49 +0100 | [diff] [blame^] | 289 | * Return: |
| 290 | * 0 on success, -EINVAL if the property does not exist, |
| 291 | * -ENODATA if property does not have a value, and -EOVERFLOW if the |
| 292 | * property data isn't large enough. |
Dario Binacchi | 4bb7075 | 2020-03-29 18:04:41 +0200 | [diff] [blame] | 293 | */ |
| 294 | int of_read_u32_index(const struct device_node *np, const char *propname, |
| 295 | int index, u32 *outp); |
| 296 | |
| 297 | /** |
Simon Glass | 7e5196c | 2018-06-11 13:07:10 -0600 | [diff] [blame] | 298 | * of_read_u64() - Find and read a 64-bit integer from a property |
| 299 | * |
| 300 | * Search for a property in a device node and read a 64-bit value from |
| 301 | * it. |
| 302 | * |
| 303 | * @np: device node from which the property value is to be read. |
| 304 | * @propname: name of the property to be searched. |
| 305 | * @outp: pointer to return value, modified only if return value is 0. |
| 306 | * |
Patrick Delaunay | be74f71 | 2022-01-12 10:53:49 +0100 | [diff] [blame^] | 307 | * Return: |
| 308 | * 0 on success, -EINVAL if the property does not exist, |
| 309 | * -ENODATA if property does not have a value, and -EOVERFLOW if the |
| 310 | * property data isn't large enough. |
Simon Glass | 7e5196c | 2018-06-11 13:07:10 -0600 | [diff] [blame] | 311 | */ |
| 312 | int of_read_u64(const struct device_node *np, const char *propname, u64 *outp); |
| 313 | |
| 314 | /** |
Simon Glass | 644ec0a | 2017-05-18 20:08:54 -0600 | [diff] [blame] | 315 | * of_read_u32_array() - Find and read an array of 32 bit integers |
| 316 | * |
| 317 | * Search for a property in a device node and read 32-bit value(s) from |
| 318 | * it. |
| 319 | * |
| 320 | * @np: device node from which the property value is to be read. |
| 321 | * @propname: name of the property to be searched. |
| 322 | * @out_values: pointer to return value, modified only if return value is 0. |
| 323 | * @sz: number of array elements to read |
Patrick Delaunay | be74f71 | 2022-01-12 10:53:49 +0100 | [diff] [blame^] | 324 | * Return: |
| 325 | * 0 on success, -EINVAL if the property does not exist, -ENODATA |
| 326 | * if property does not have a value, and -EOVERFLOW is longer than sz. |
Simon Glass | 644ec0a | 2017-05-18 20:08:54 -0600 | [diff] [blame] | 327 | */ |
| 328 | int of_read_u32_array(const struct device_node *np, const char *propname, |
| 329 | u32 *out_values, size_t sz); |
| 330 | |
| 331 | /** |
| 332 | * of_property_match_string() - Find string in a list and return index |
| 333 | * |
| 334 | * This function searches a string list property and returns the index |
| 335 | * of a specific string value. |
| 336 | * |
| 337 | * @np: pointer to node containing string list property |
| 338 | * @propname: string list property name |
| 339 | * @string: pointer to string to search for in string list |
Patrick Delaunay | be74f71 | 2022-01-12 10:53:49 +0100 | [diff] [blame^] | 340 | * Return: |
| 341 | * 0 on success, -EINVAL if the property does not exist, -ENODATA |
| 342 | * if property does not have a value, and -EOVERFLOW is longer than sz. |
Simon Glass | 644ec0a | 2017-05-18 20:08:54 -0600 | [diff] [blame] | 343 | */ |
| 344 | int of_property_match_string(const struct device_node *np, const char *propname, |
| 345 | const char *string); |
| 346 | |
| 347 | int of_property_read_string_helper(const struct device_node *np, |
| 348 | const char *propname, const char **out_strs, |
| 349 | size_t sz, int index); |
| 350 | |
| 351 | /** |
| 352 | * of_property_read_string_index() - Find and read a string from a multiple |
| 353 | * strings property. |
| 354 | * @np: device node from which the property value is to be read. |
| 355 | * @propname: name of the property to be searched. |
| 356 | * @index: index of the string in the list of strings |
Patrick Delaunay | be74f71 | 2022-01-12 10:53:49 +0100 | [diff] [blame^] | 357 | * @output: pointer to null terminated return string, modified only if |
Simon Glass | 644ec0a | 2017-05-18 20:08:54 -0600 | [diff] [blame] | 358 | * return value is 0. |
| 359 | * |
| 360 | * Search for a property in a device tree node and retrieve a null |
| 361 | * terminated string value (pointer to data, not a copy) in the list of strings |
| 362 | * contained in that property. |
Patrick Delaunay | be74f71 | 2022-01-12 10:53:49 +0100 | [diff] [blame^] | 363 | * |
| 364 | * Return: |
| 365 | * 0 on success, -EINVAL if the property does not exist, -ENODATA if |
| 366 | * property does not have a value, and -EILSEQ if the string is not |
| 367 | * null-terminated within the length of the property data. |
Simon Glass | 644ec0a | 2017-05-18 20:08:54 -0600 | [diff] [blame] | 368 | * |
| 369 | * The out_string pointer is modified only if a valid string can be decoded. |
| 370 | */ |
| 371 | static inline int of_property_read_string_index(const struct device_node *np, |
| 372 | const char *propname, |
| 373 | int index, const char **output) |
| 374 | { |
| 375 | int rc = of_property_read_string_helper(np, propname, output, 1, index); |
| 376 | return rc < 0 ? rc : 0; |
| 377 | } |
| 378 | |
| 379 | /** |
Simon Glass | 8c293d6 | 2017-06-12 06:21:28 -0600 | [diff] [blame] | 380 | * of_property_count_strings() - Find and return the number of strings from a |
| 381 | * multiple strings property. |
| 382 | * @np: device node from which the property value is to be read. |
| 383 | * @propname: name of the property to be searched. |
| 384 | * |
| 385 | * Search for a property in a device tree node and retrieve the number of null |
Patrick Delaunay | be74f71 | 2022-01-12 10:53:49 +0100 | [diff] [blame^] | 386 | * terminated string contain in it. |
| 387 | * |
| 388 | * Return: |
| 389 | * the number of strings on success, -EINVAL if the property does not exist, |
| 390 | * -ENODATA if property does not have a value, and -EILSEQ if the string is |
| 391 | * not null-terminated within the length of the property data. |
Simon Glass | 8c293d6 | 2017-06-12 06:21:28 -0600 | [diff] [blame] | 392 | */ |
| 393 | static inline int of_property_count_strings(const struct device_node *np, |
| 394 | const char *propname) |
| 395 | { |
| 396 | return of_property_read_string_helper(np, propname, NULL, 0, 0); |
| 397 | } |
| 398 | |
| 399 | /** |
Simon Glass | 644ec0a | 2017-05-18 20:08:54 -0600 | [diff] [blame] | 400 | * of_parse_phandle - Resolve a phandle property to a device_node pointer |
| 401 | * @np: Pointer to device node holding phandle property |
| 402 | * @phandle_name: Name of property holding a phandle value |
| 403 | * @index: For properties holding a table of phandles, this is the index into |
| 404 | * the table |
| 405 | * |
Patrick Delaunay | be74f71 | 2022-01-12 10:53:49 +0100 | [diff] [blame^] | 406 | * Return: |
| 407 | * the device_node pointer with refcount incremented. Use |
| 408 | * of_node_put() on it when done. |
Simon Glass | 644ec0a | 2017-05-18 20:08:54 -0600 | [diff] [blame] | 409 | */ |
| 410 | struct device_node *of_parse_phandle(const struct device_node *np, |
| 411 | const char *phandle_name, int index); |
| 412 | |
| 413 | /** |
| 414 | * of_parse_phandle_with_args() - Find a node pointed by phandle in a list |
| 415 | * |
| 416 | * @np: pointer to a device tree node containing a list |
| 417 | * @list_name: property name that contains a list |
| 418 | * @cells_name: property name that specifies phandles' arguments count |
Patrick Delaunay | 01d89e3 | 2020-09-10 18:26:17 +0200 | [diff] [blame] | 419 | * @cells_count: Cell count to use if @cells_name is NULL |
Simon Glass | 644ec0a | 2017-05-18 20:08:54 -0600 | [diff] [blame] | 420 | * @index: index of a phandle to parse out |
| 421 | * @out_args: optional pointer to output arguments structure (will be filled) |
Patrick Delaunay | be74f71 | 2022-01-12 10:53:49 +0100 | [diff] [blame^] | 422 | * Return: |
| 423 | * 0 on success (with @out_args filled out if not NULL), -ENOENT if |
| 424 | * @list_name does not exist, -EINVAL if a phandle was not found, |
| 425 | * @cells_name could not be found, the arguments were truncated or there |
| 426 | * were too many arguments. |
Simon Glass | 644ec0a | 2017-05-18 20:08:54 -0600 | [diff] [blame] | 427 | * |
| 428 | * This function is useful to parse lists of phandles and their arguments. |
| 429 | * Returns 0 on success and fills out_args, on error returns appropriate |
| 430 | * errno value. |
| 431 | * |
| 432 | * Caller is responsible to call of_node_put() on the returned out_args->np |
| 433 | * pointer. |
| 434 | * |
| 435 | * Example: |
| 436 | * |
Patrick Delaunay | be74f71 | 2022-01-12 10:53:49 +0100 | [diff] [blame^] | 437 | * .. code-block:: |
Simon Glass | 644ec0a | 2017-05-18 20:08:54 -0600 | [diff] [blame] | 438 | * |
Patrick Delaunay | be74f71 | 2022-01-12 10:53:49 +0100 | [diff] [blame^] | 439 | * phandle1: node1 { |
| 440 | * #list-cells = <2>; |
| 441 | * }; |
| 442 | * phandle2: node2 { |
| 443 | * #list-cells = <1>; |
| 444 | * }; |
| 445 | * node3 { |
| 446 | * list = <&phandle1 1 2 &phandle2 3>; |
| 447 | * }; |
Simon Glass | 644ec0a | 2017-05-18 20:08:54 -0600 | [diff] [blame] | 448 | * |
| 449 | * To get a device_node of the `node2' node you may call this: |
| 450 | * of_parse_phandle_with_args(node3, "list", "#list-cells", 1, &args); |
| 451 | */ |
| 452 | int of_parse_phandle_with_args(const struct device_node *np, |
| 453 | const char *list_name, const char *cells_name, |
Patrick Delaunay | 01d89e3 | 2020-09-10 18:26:17 +0200 | [diff] [blame] | 454 | int cells_count, int index, |
| 455 | struct of_phandle_args *out_args); |
Simon Glass | 644ec0a | 2017-05-18 20:08:54 -0600 | [diff] [blame] | 456 | |
| 457 | /** |
Patrice Chotard | 642346a | 2017-07-18 11:57:08 +0200 | [diff] [blame] | 458 | * of_count_phandle_with_args() - Count the number of phandle in a list |
| 459 | * |
| 460 | * @np: pointer to a device tree node containing a list |
| 461 | * @list_name: property name that contains a list |
| 462 | * @cells_name: property name that specifies phandles' arguments count |
Patrick Delaunay | 89f6830 | 2020-09-25 09:41:14 +0200 | [diff] [blame] | 463 | * @cells_count: Cell count to use if @cells_name is NULL |
Patrick Delaunay | be74f71 | 2022-01-12 10:53:49 +0100 | [diff] [blame^] | 464 | * Return: |
| 465 | * number of phandle found, -ENOENT if @list_name does not exist, |
| 466 | * -EINVAL if a phandle was not found, @cells_name could not be found, |
| 467 | * the arguments were truncated or there were too many arguments. |
Patrice Chotard | 642346a | 2017-07-18 11:57:08 +0200 | [diff] [blame] | 468 | * |
| 469 | * Returns number of phandle found on success, on error returns appropriate |
| 470 | * errno value. |
Patrice Chotard | 642346a | 2017-07-18 11:57:08 +0200 | [diff] [blame] | 471 | */ |
| 472 | int of_count_phandle_with_args(const struct device_node *np, |
Patrick Delaunay | 89f6830 | 2020-09-25 09:41:14 +0200 | [diff] [blame] | 473 | const char *list_name, const char *cells_name, |
| 474 | int cells_count); |
Patrice Chotard | 642346a | 2017-07-18 11:57:08 +0200 | [diff] [blame] | 475 | |
| 476 | /** |
Simon Glass | 644ec0a | 2017-05-18 20:08:54 -0600 | [diff] [blame] | 477 | * of_alias_scan() - Scan all properties of the 'aliases' node |
| 478 | * |
| 479 | * The function scans all the properties of the 'aliases' node and populates |
| 480 | * the lookup table with the properties. It returns the number of alias |
| 481 | * properties found, or an error code in case of failure. |
| 482 | * |
Patrick Delaunay | be74f71 | 2022-01-12 10:53:49 +0100 | [diff] [blame^] | 483 | * Return: 9 if OK, -ENOMEM if not enough memory |
Simon Glass | 644ec0a | 2017-05-18 20:08:54 -0600 | [diff] [blame] | 484 | */ |
| 485 | int of_alias_scan(void); |
| 486 | |
| 487 | /** |
| 488 | * of_alias_get_id - Get alias id for the given device_node |
| 489 | * |
| 490 | * Travels the lookup table to get the alias id for the given device_node and |
| 491 | * alias stem. |
| 492 | * |
| 493 | * @np: Pointer to the given device_node |
| 494 | * @stem: Alias stem of the given device_node |
Patrick Delaunay | be74f71 | 2022-01-12 10:53:49 +0100 | [diff] [blame^] | 495 | * Return: alias ID, if found, else -ENODEV |
Simon Glass | 644ec0a | 2017-05-18 20:08:54 -0600 | [diff] [blame] | 496 | */ |
| 497 | int of_alias_get_id(const struct device_node *np, const char *stem); |
| 498 | |
| 499 | /** |
Michal Simek | 5ebc7c7 | 2019-01-31 16:30:57 +0100 | [diff] [blame] | 500 | * of_alias_get_highest_id - Get highest alias id for the given stem |
| 501 | * @stem: Alias stem to be examined |
| 502 | * |
| 503 | * The function travels the lookup table to get the highest alias id for the |
| 504 | * given alias stem. |
Patrick Delaunay | be74f71 | 2022-01-12 10:53:49 +0100 | [diff] [blame^] | 505 | * Return: alias ID, if found, else -1 |
Michal Simek | 5ebc7c7 | 2019-01-31 16:30:57 +0100 | [diff] [blame] | 506 | */ |
| 507 | int of_alias_get_highest_id(const char *stem); |
| 508 | |
| 509 | /** |
Simon Glass | 644ec0a | 2017-05-18 20:08:54 -0600 | [diff] [blame] | 510 | * of_get_stdout() - Get node to use for stdout |
| 511 | * |
Patrick Delaunay | be74f71 | 2022-01-12 10:53:49 +0100 | [diff] [blame^] | 512 | * Return: node referred to by stdout-path alias, or NULL if none |
Simon Glass | 644ec0a | 2017-05-18 20:08:54 -0600 | [diff] [blame] | 513 | */ |
| 514 | struct device_node *of_get_stdout(void); |
| 515 | |
| 516 | #endif |