1644ec0a9SSimon Glass /* 2644ec0a9SSimon Glass * Originally from Linux v4.9 3644ec0a9SSimon Glass * Copyright (C) 1996-2005 Paul Mackerras. 4644ec0a9SSimon Glass * 5644ec0a9SSimon Glass * Updates for PPC64 by Peter Bergner & David Engebretsen, IBM Corp. 6644ec0a9SSimon Glass * Updates for SPARC64 by David S. Miller 7644ec0a9SSimon Glass * Derived from PowerPC and Sparc prom.h files by Stephen Rothwell, IBM Corp. 8644ec0a9SSimon Glass * 9644ec0a9SSimon Glass * Copyright (c) 2017 Google, Inc 10644ec0a9SSimon Glass * Written by Simon Glass <sjg@chromium.org> 11644ec0a9SSimon Glass * 12644ec0a9SSimon Glass * Modified for U-Boot 13644ec0a9SSimon Glass * Copyright (c) 2017 Google, Inc 14644ec0a9SSimon Glass * 15644ec0a9SSimon Glass * SPDX-License-Identifier: GPL-2.0+ 16644ec0a9SSimon Glass */ 17644ec0a9SSimon Glass 18644ec0a9SSimon Glass #ifndef _DM_OF_ACCESS_H 19644ec0a9SSimon Glass #define _DM_OF_ACCESS_H 20644ec0a9SSimon Glass 21644ec0a9SSimon Glass #include <dm/of.h> 22644ec0a9SSimon Glass 23644ec0a9SSimon Glass /** 24644ec0a9SSimon Glass * of_find_all_nodes - Get next node in global list 25644ec0a9SSimon Glass * @prev: Previous node or NULL to start iteration 26644ec0a9SSimon Glass * of_node_put() will be called on it 27644ec0a9SSimon Glass * 28644ec0a9SSimon Glass * Returns a node pointer with refcount incremented, use 29644ec0a9SSimon Glass * of_node_put() on it when done. 30644ec0a9SSimon Glass */ 31644ec0a9SSimon Glass struct device_node *of_find_all_nodes(struct device_node *prev); 32644ec0a9SSimon Glass 33644ec0a9SSimon Glass #define for_each_of_allnodes_from(from, dn) \ 34644ec0a9SSimon Glass for (dn = of_find_all_nodes(from); dn; dn = of_find_all_nodes(dn)) 35644ec0a9SSimon Glass #define for_each_of_allnodes(dn) for_each_of_allnodes_from(NULL, dn) 36644ec0a9SSimon Glass 37644ec0a9SSimon Glass /* Dummy functions to mirror Linux. These are not used in U-Boot */ 38644ec0a9SSimon Glass #define of_node_get(x) (x) 39644ec0a9SSimon Glass static inline void of_node_put(const struct device_node *np) { } 40644ec0a9SSimon Glass 41644ec0a9SSimon Glass /** 42644ec0a9SSimon Glass * of_n_addr_cells() - Get the number of address cells for a node 43644ec0a9SSimon Glass * 44644ec0a9SSimon Glass * This walks back up the tree to find the closest #address-cells property 45644ec0a9SSimon Glass * which controls the given node. 46644ec0a9SSimon Glass * 47644ec0a9SSimon Glass * @np: Node pointer to check 48644ec0a9SSimon Glass * @return number of address cells this node uses 49644ec0a9SSimon Glass */ 50644ec0a9SSimon Glass int of_n_addr_cells(const struct device_node *np); 51644ec0a9SSimon Glass 52644ec0a9SSimon Glass /** 53644ec0a9SSimon Glass * of_n_size_cells() - Get the number of size cells for a node 54644ec0a9SSimon Glass * 55644ec0a9SSimon Glass * This walks back up the tree to find the closest #size-cells property 56644ec0a9SSimon Glass * which controls the given node. 57644ec0a9SSimon Glass * 58644ec0a9SSimon Glass * @np: Node pointer to check 59644ec0a9SSimon Glass * @return number of size cells this node uses 60644ec0a9SSimon Glass */ 61644ec0a9SSimon Glass int of_n_size_cells(const struct device_node *np); 62644ec0a9SSimon Glass 63644ec0a9SSimon Glass /** 64878d68c0SSimon Glass * of_simple_addr_cells() - Get the address cells property in a node 65878d68c0SSimon Glass * 66878d68c0SSimon Glass * This function matches fdt_address_cells(). 67878d68c0SSimon Glass * 68878d68c0SSimon Glass * @np: Node pointer to check 69878d68c0SSimon Glass * @return value of #address-cells property in this node, or 2 if none 70878d68c0SSimon Glass */ 71878d68c0SSimon Glass int of_simple_addr_cells(const struct device_node *np); 72878d68c0SSimon Glass 73878d68c0SSimon Glass /** 74878d68c0SSimon Glass * of_simple_size_cells() - Get the size cells property in a node 75878d68c0SSimon Glass * 76878d68c0SSimon Glass * This function matches fdt_size_cells(). 77878d68c0SSimon Glass * 78878d68c0SSimon Glass * @np: Node pointer to check 79878d68c0SSimon Glass * @return value of #size-cells property in this node, or 2 if none 80878d68c0SSimon Glass */ 81878d68c0SSimon Glass int of_simple_size_cells(const struct device_node *np); 82878d68c0SSimon Glass 83878d68c0SSimon Glass /** 84644ec0a9SSimon Glass * of_find_property() - find a property in a node 85644ec0a9SSimon Glass * 86644ec0a9SSimon Glass * @np: Pointer to device node holding property 87644ec0a9SSimon Glass * @name: Name of property 88644ec0a9SSimon Glass * @lenp: If non-NULL, returns length of property 89644ec0a9SSimon Glass * @return pointer to property, or NULL if not found 90644ec0a9SSimon Glass */ 91644ec0a9SSimon Glass struct property *of_find_property(const struct device_node *np, 92644ec0a9SSimon Glass const char *name, int *lenp); 93644ec0a9SSimon Glass 94644ec0a9SSimon Glass /** 95644ec0a9SSimon Glass * of_get_property() - get a property value 96644ec0a9SSimon Glass * 97644ec0a9SSimon Glass * Find a property with a given name for a given node and return the value. 98644ec0a9SSimon Glass * 99644ec0a9SSimon Glass * @np: Pointer to device node holding property 100644ec0a9SSimon Glass * @name: Name of property 101644ec0a9SSimon Glass * @lenp: If non-NULL, returns length of property 102644ec0a9SSimon Glass * @return pointer to property value, or NULL if not found 103644ec0a9SSimon Glass */ 104644ec0a9SSimon Glass const void *of_get_property(const struct device_node *np, const char *name, 105644ec0a9SSimon Glass int *lenp); 106644ec0a9SSimon Glass 107644ec0a9SSimon Glass /** 108644ec0a9SSimon Glass * of_device_is_compatible() - Check if the node matches given constraints 109644ec0a9SSimon Glass * @device: pointer to node 110644ec0a9SSimon Glass * @compat: required compatible string, NULL or "" for any match 111644ec0a9SSimon Glass * @type: required device_type value, NULL or "" for any match 112644ec0a9SSimon Glass * @name: required node name, NULL or "" for any match 113644ec0a9SSimon Glass * 114644ec0a9SSimon Glass * Checks if the given @compat, @type and @name strings match the 115644ec0a9SSimon Glass * properties of the given @device. A constraints can be skipped by 116644ec0a9SSimon Glass * passing NULL or an empty string as the constraint. 117644ec0a9SSimon Glass * 118644ec0a9SSimon Glass * @return 0 for no match, and a positive integer on match. The return 119644ec0a9SSimon Glass * value is a relative score with larger values indicating better 120644ec0a9SSimon Glass * matches. The score is weighted for the most specific compatible value 121644ec0a9SSimon Glass * to get the highest score. Matching type is next, followed by matching 122644ec0a9SSimon Glass * name. Practically speaking, this results in the following priority 123644ec0a9SSimon Glass * order for matches: 124644ec0a9SSimon Glass * 125644ec0a9SSimon Glass * 1. specific compatible && type && name 126644ec0a9SSimon Glass * 2. specific compatible && type 127644ec0a9SSimon Glass * 3. specific compatible && name 128644ec0a9SSimon Glass * 4. specific compatible 129644ec0a9SSimon Glass * 5. general compatible && type && name 130644ec0a9SSimon Glass * 6. general compatible && type 131644ec0a9SSimon Glass * 7. general compatible && name 132644ec0a9SSimon Glass * 8. general compatible 133644ec0a9SSimon Glass * 9. type && name 134644ec0a9SSimon Glass * 10. type 135644ec0a9SSimon Glass * 11. name 136644ec0a9SSimon Glass */ 137644ec0a9SSimon Glass int of_device_is_compatible(const struct device_node *np, const char *compat, 138644ec0a9SSimon Glass const char *type, const char *name); 139644ec0a9SSimon Glass 140644ec0a9SSimon Glass /** 141644ec0a9SSimon Glass * of_device_is_available() - check if a device is available for use 142644ec0a9SSimon Glass * 143644ec0a9SSimon Glass * @device: Node to check for availability 144644ec0a9SSimon Glass * 145644ec0a9SSimon Glass * @return true if the status property is absent or set to "okay", false 146644ec0a9SSimon Glass * otherwise 147644ec0a9SSimon Glass */ 148644ec0a9SSimon Glass bool of_device_is_available(const struct device_node *np); 149644ec0a9SSimon Glass 150644ec0a9SSimon Glass /** 151644ec0a9SSimon Glass * of_get_parent() - Get a node's parent, if any 152644ec0a9SSimon Glass * 153644ec0a9SSimon Glass * @node: Node to check 154644ec0a9SSimon Glass * @eturns a node pointer, or NULL if none 155644ec0a9SSimon Glass */ 156644ec0a9SSimon Glass struct device_node *of_get_parent(const struct device_node *np); 157644ec0a9SSimon Glass 158644ec0a9SSimon Glass /** 159644ec0a9SSimon Glass * of_find_node_opts_by_path() - Find a node matching a full OF path 160644ec0a9SSimon Glass * 161644ec0a9SSimon Glass * @path: Either the full path to match, or if the path does not start with 162644ec0a9SSimon Glass * '/', the name of a property of the /aliases node (an alias). In the 163644ec0a9SSimon Glass * case of an alias, the node matching the alias' value will be returned. 164644ec0a9SSimon Glass * @opts: Address of a pointer into which to store the start of an options 165644ec0a9SSimon Glass * string appended to the end of the path with a ':' separator. Can be NULL 166644ec0a9SSimon Glass * 167644ec0a9SSimon Glass * Valid paths: 168644ec0a9SSimon Glass * /foo/bar Full path 169644ec0a9SSimon Glass * foo Valid alias 170644ec0a9SSimon Glass * foo/bar Valid alias + relative path 171644ec0a9SSimon Glass * 172644ec0a9SSimon Glass * @return a node pointer or NULL if not found 173644ec0a9SSimon Glass */ 174644ec0a9SSimon Glass struct device_node *of_find_node_opts_by_path(const char *path, 175644ec0a9SSimon Glass const char **opts); 176644ec0a9SSimon Glass 177644ec0a9SSimon Glass static inline struct device_node *of_find_node_by_path(const char *path) 178644ec0a9SSimon Glass { 179644ec0a9SSimon Glass return of_find_node_opts_by_path(path, NULL); 180644ec0a9SSimon Glass } 181644ec0a9SSimon Glass 182644ec0a9SSimon Glass /** 183644ec0a9SSimon Glass * of_find_compatible_node() - find a node based on its compatible string 184644ec0a9SSimon Glass * 185644ec0a9SSimon Glass * Find a node based on type and one of the tokens in its "compatible" property 186644ec0a9SSimon Glass * @from: Node to start searching from or NULL. the node you pass will not be 187644ec0a9SSimon Glass * searched, only the next one will; typically, you pass what the previous 188644ec0a9SSimon Glass * call returned. 189644ec0a9SSimon Glass * @type: The type string to match "device_type" or NULL to ignore 190644ec0a9SSimon Glass * @compatible: The string to match to one of the tokens in the device 191644ec0a9SSimon Glass * "compatible" list. 192644ec0a9SSimon Glass * @return node pointer or NULL if not found 193644ec0a9SSimon Glass */ 194644ec0a9SSimon Glass struct device_node *of_find_compatible_node(struct device_node *from, 195644ec0a9SSimon Glass const char *type, const char *compatible); 196644ec0a9SSimon Glass 197644ec0a9SSimon Glass /** 198644ec0a9SSimon Glass * of_find_node_by_phandle() - Find a node given a phandle 199644ec0a9SSimon Glass * 200644ec0a9SSimon Glass * @handle: phandle of the node to find 201644ec0a9SSimon Glass * 202644ec0a9SSimon Glass * @return node pointer, or NULL if not found 203644ec0a9SSimon Glass */ 204644ec0a9SSimon Glass struct device_node *of_find_node_by_phandle(phandle handle); 205644ec0a9SSimon Glass 206644ec0a9SSimon Glass /** 207644ec0a9SSimon Glass * of_read_u32() - Find and read a 32-bit integer from a property 208644ec0a9SSimon Glass * 209644ec0a9SSimon Glass * Search for a property in a device node and read a 32-bit value from 210644ec0a9SSimon Glass * it. 211644ec0a9SSimon Glass * 212644ec0a9SSimon Glass * @np: device node from which the property value is to be read. 213644ec0a9SSimon Glass * @propname: name of the property to be searched. 214644ec0a9SSimon Glass * @outp: pointer to return value, modified only if return value is 0. 215644ec0a9SSimon Glass * 216644ec0a9SSimon Glass * @return 0 on success, -EINVAL if the property does not exist, 217644ec0a9SSimon Glass * -ENODATA if property does not have a value, and -EOVERFLOW if the 218644ec0a9SSimon Glass * property data isn't large enough. 219644ec0a9SSimon Glass */ 220644ec0a9SSimon Glass int of_read_u32(const struct device_node *np, const char *propname, u32 *outp); 221644ec0a9SSimon Glass 222644ec0a9SSimon Glass /** 223*d59cf5aeSJoseph Chen * of_property_read_u64 - Find and read a 64 bit integer from a property 224*d59cf5aeSJoseph Chen * @np: device node from which the property value is to be read. 225*d59cf5aeSJoseph Chen * @propname: name of the property to be searched. 226*d59cf5aeSJoseph Chen * @out_value: pointer to return value, modified only if return value is 0. 227*d59cf5aeSJoseph Chen * 228*d59cf5aeSJoseph Chen * Search for a property in a device node and read a 64-bit value from 229*d59cf5aeSJoseph Chen * it. Returns 0 on success, -EINVAL if the property does not exist, 230*d59cf5aeSJoseph Chen * -ENODATA if property does not have a value, and -EOVERFLOW if the 231*d59cf5aeSJoseph Chen * property data isn't large enough. 232*d59cf5aeSJoseph Chen * 233*d59cf5aeSJoseph Chen * The out_value is modified only if a valid u64 value can be decoded. 234*d59cf5aeSJoseph Chen */ 235*d59cf5aeSJoseph Chen int of_property_read_u64(const struct device_node *np, const char *propname, 236*d59cf5aeSJoseph Chen u64 *out_value); 237*d59cf5aeSJoseph Chen 238*d59cf5aeSJoseph Chen /** 239644ec0a9SSimon Glass * of_read_u32_array() - Find and read an array of 32 bit integers 240644ec0a9SSimon Glass * 241644ec0a9SSimon Glass * Search for a property in a device node and read 32-bit value(s) from 242644ec0a9SSimon Glass * it. 243644ec0a9SSimon Glass * 244644ec0a9SSimon Glass * @np: device node from which the property value is to be read. 245644ec0a9SSimon Glass * @propname: name of the property to be searched. 246644ec0a9SSimon Glass * @out_values: pointer to return value, modified only if return value is 0. 247644ec0a9SSimon Glass * @sz: number of array elements to read 248644ec0a9SSimon Glass * @return 0 on success, -EINVAL if the property does not exist, -ENODATA 249644ec0a9SSimon Glass * if property does not have a value, and -EOVERFLOW is longer than sz. 250644ec0a9SSimon Glass */ 251644ec0a9SSimon Glass int of_read_u32_array(const struct device_node *np, const char *propname, 252644ec0a9SSimon Glass u32 *out_values, size_t sz); 253644ec0a9SSimon Glass 254644ec0a9SSimon Glass /** 255644ec0a9SSimon Glass * of_property_match_string() - Find string in a list and return index 256644ec0a9SSimon Glass * 257644ec0a9SSimon Glass * This function searches a string list property and returns the index 258644ec0a9SSimon Glass * of a specific string value. 259644ec0a9SSimon Glass * 260644ec0a9SSimon Glass * @np: pointer to node containing string list property 261644ec0a9SSimon Glass * @propname: string list property name 262644ec0a9SSimon Glass * @string: pointer to string to search for in string list 263644ec0a9SSimon Glass * @return 0 on success, -EINVAL if the property does not exist, -ENODATA 264644ec0a9SSimon Glass * if property does not have a value, and -EOVERFLOW is longer than sz. 265644ec0a9SSimon Glass */ 266644ec0a9SSimon Glass int of_property_match_string(const struct device_node *np, const char *propname, 267644ec0a9SSimon Glass const char *string); 268644ec0a9SSimon Glass 269644ec0a9SSimon Glass int of_property_read_string_helper(const struct device_node *np, 270644ec0a9SSimon Glass const char *propname, const char **out_strs, 271644ec0a9SSimon Glass size_t sz, int index); 272644ec0a9SSimon Glass 273644ec0a9SSimon Glass /** 274644ec0a9SSimon Glass * of_property_read_string_index() - Find and read a string from a multiple 275644ec0a9SSimon Glass * strings property. 276644ec0a9SSimon Glass * @np: device node from which the property value is to be read. 277644ec0a9SSimon Glass * @propname: name of the property to be searched. 278644ec0a9SSimon Glass * @index: index of the string in the list of strings 279644ec0a9SSimon Glass * @out_string: pointer to null terminated return string, modified only if 280644ec0a9SSimon Glass * return value is 0. 281644ec0a9SSimon Glass * 282644ec0a9SSimon Glass * Search for a property in a device tree node and retrieve a null 283644ec0a9SSimon Glass * terminated string value (pointer to data, not a copy) in the list of strings 284644ec0a9SSimon Glass * contained in that property. 285644ec0a9SSimon Glass * Returns 0 on success, -EINVAL if the property does not exist, -ENODATA if 286644ec0a9SSimon Glass * property does not have a value, and -EILSEQ if the string is not 287644ec0a9SSimon Glass * null-terminated within the length of the property data. 288644ec0a9SSimon Glass * 289644ec0a9SSimon Glass * The out_string pointer is modified only if a valid string can be decoded. 290644ec0a9SSimon Glass */ 291644ec0a9SSimon Glass static inline int of_property_read_string_index(const struct device_node *np, 292644ec0a9SSimon Glass const char *propname, 293644ec0a9SSimon Glass int index, const char **output) 294644ec0a9SSimon Glass { 295644ec0a9SSimon Glass int rc = of_property_read_string_helper(np, propname, output, 1, index); 296644ec0a9SSimon Glass return rc < 0 ? rc : 0; 297644ec0a9SSimon Glass } 298644ec0a9SSimon Glass 299644ec0a9SSimon Glass /** 3008c293d6aSSimon Glass * of_property_count_strings() - Find and return the number of strings from a 3018c293d6aSSimon Glass * multiple strings property. 3028c293d6aSSimon Glass * @np: device node from which the property value is to be read. 3038c293d6aSSimon Glass * @propname: name of the property to be searched. 3048c293d6aSSimon Glass * 3058c293d6aSSimon Glass * Search for a property in a device tree node and retrieve the number of null 3068c293d6aSSimon Glass * terminated string contain in it. Returns the number of strings on 3078c293d6aSSimon Glass * success, -EINVAL if the property does not exist, -ENODATA if property 3088c293d6aSSimon Glass * does not have a value, and -EILSEQ if the string is not null-terminated 3098c293d6aSSimon Glass * within the length of the property data. 3108c293d6aSSimon Glass */ 3118c293d6aSSimon Glass static inline int of_property_count_strings(const struct device_node *np, 3128c293d6aSSimon Glass const char *propname) 3138c293d6aSSimon Glass { 3148c293d6aSSimon Glass return of_property_read_string_helper(np, propname, NULL, 0, 0); 3158c293d6aSSimon Glass } 3168c293d6aSSimon Glass 3178c293d6aSSimon Glass /** 318644ec0a9SSimon Glass * of_parse_phandle - Resolve a phandle property to a device_node pointer 319644ec0a9SSimon Glass * @np: Pointer to device node holding phandle property 320644ec0a9SSimon Glass * @phandle_name: Name of property holding a phandle value 321644ec0a9SSimon Glass * @index: For properties holding a table of phandles, this is the index into 322644ec0a9SSimon Glass * the table 323644ec0a9SSimon Glass * 324644ec0a9SSimon Glass * Returns the device_node pointer with refcount incremented. Use 325644ec0a9SSimon Glass * of_node_put() on it when done. 326644ec0a9SSimon Glass */ 327644ec0a9SSimon Glass struct device_node *of_parse_phandle(const struct device_node *np, 328644ec0a9SSimon Glass const char *phandle_name, int index); 329644ec0a9SSimon Glass 330644ec0a9SSimon Glass /** 331644ec0a9SSimon Glass * of_parse_phandle_with_args() - Find a node pointed by phandle in a list 332644ec0a9SSimon Glass * 333644ec0a9SSimon Glass * @np: pointer to a device tree node containing a list 334644ec0a9SSimon Glass * @list_name: property name that contains a list 335644ec0a9SSimon Glass * @cells_name: property name that specifies phandles' arguments count 336644ec0a9SSimon Glass * @index: index of a phandle to parse out 337644ec0a9SSimon Glass * @out_args: optional pointer to output arguments structure (will be filled) 338644ec0a9SSimon Glass * @return 0 on success (with @out_args filled out if not NULL), -ENOENT if 339644ec0a9SSimon Glass * @list_name does not exist, -EINVAL if a phandle was not found, 340644ec0a9SSimon Glass * @cells_name could not be found, the arguments were truncated or there 341644ec0a9SSimon Glass * were too many arguments. 342644ec0a9SSimon Glass * 343644ec0a9SSimon Glass * This function is useful to parse lists of phandles and their arguments. 344644ec0a9SSimon Glass * Returns 0 on success and fills out_args, on error returns appropriate 345644ec0a9SSimon Glass * errno value. 346644ec0a9SSimon Glass * 347644ec0a9SSimon Glass * Caller is responsible to call of_node_put() on the returned out_args->np 348644ec0a9SSimon Glass * pointer. 349644ec0a9SSimon Glass * 350644ec0a9SSimon Glass * Example: 351644ec0a9SSimon Glass * 352644ec0a9SSimon Glass * phandle1: node1 { 353644ec0a9SSimon Glass * #list-cells = <2>; 354644ec0a9SSimon Glass * } 355644ec0a9SSimon Glass * 356644ec0a9SSimon Glass * phandle2: node2 { 357644ec0a9SSimon Glass * #list-cells = <1>; 358644ec0a9SSimon Glass * } 359644ec0a9SSimon Glass * 360644ec0a9SSimon Glass * node3 { 361644ec0a9SSimon Glass * list = <&phandle1 1 2 &phandle2 3>; 362644ec0a9SSimon Glass * } 363644ec0a9SSimon Glass * 364644ec0a9SSimon Glass * To get a device_node of the `node2' node you may call this: 365644ec0a9SSimon Glass * of_parse_phandle_with_args(node3, "list", "#list-cells", 1, &args); 366644ec0a9SSimon Glass */ 367644ec0a9SSimon Glass int of_parse_phandle_with_args(const struct device_node *np, 368644ec0a9SSimon Glass const char *list_name, const char *cells_name, 369644ec0a9SSimon Glass int index, struct of_phandle_args *out_args); 370644ec0a9SSimon Glass 371644ec0a9SSimon Glass /** 372642346aeSPatrice Chotard * of_count_phandle_with_args() - Count the number of phandle in a list 373642346aeSPatrice Chotard * 374642346aeSPatrice Chotard * @np: pointer to a device tree node containing a list 375642346aeSPatrice Chotard * @list_name: property name that contains a list 376642346aeSPatrice Chotard * @cells_name: property name that specifies phandles' arguments count 377642346aeSPatrice Chotard * @return number of phandle found, -ENOENT if 378642346aeSPatrice Chotard * @list_name does not exist, -EINVAL if a phandle was not found, 379642346aeSPatrice Chotard * @cells_name could not be found, the arguments were truncated or there 380642346aeSPatrice Chotard * were too many arguments. 381642346aeSPatrice Chotard * 382642346aeSPatrice Chotard * Returns number of phandle found on success, on error returns appropriate 383642346aeSPatrice Chotard * errno value. 384642346aeSPatrice Chotard * 385642346aeSPatrice Chotard */ 386642346aeSPatrice Chotard int of_count_phandle_with_args(const struct device_node *np, 387642346aeSPatrice Chotard const char *list_name, const char *cells_name); 388642346aeSPatrice Chotard 389642346aeSPatrice Chotard /** 390644ec0a9SSimon Glass * of_alias_scan() - Scan all properties of the 'aliases' node 391644ec0a9SSimon Glass * 392644ec0a9SSimon Glass * The function scans all the properties of the 'aliases' node and populates 393644ec0a9SSimon Glass * the lookup table with the properties. It returns the number of alias 394644ec0a9SSimon Glass * properties found, or an error code in case of failure. 395644ec0a9SSimon Glass * 396644ec0a9SSimon Glass * @return 9 if OK, -ENOMEM if not enough memory 397644ec0a9SSimon Glass */ 398644ec0a9SSimon Glass int of_alias_scan(void); 399644ec0a9SSimon Glass 400644ec0a9SSimon Glass /** 401644ec0a9SSimon Glass * of_alias_get_id - Get alias id for the given device_node 402644ec0a9SSimon Glass * 403644ec0a9SSimon Glass * Travels the lookup table to get the alias id for the given device_node and 404644ec0a9SSimon Glass * alias stem. 405644ec0a9SSimon Glass * 406644ec0a9SSimon Glass * @np: Pointer to the given device_node 407644ec0a9SSimon Glass * @stem: Alias stem of the given device_node 408644ec0a9SSimon Glass * @return alias ID, if found, else -ENODEV 409644ec0a9SSimon Glass */ 410644ec0a9SSimon Glass int of_alias_get_id(const struct device_node *np, const char *stem); 411644ec0a9SSimon Glass 412644ec0a9SSimon Glass /** 4132e02c4e2SJoseph Chen * of_alias_get_dev - Get device_node by given stem and alias id 4142e02c4e2SJoseph Chen * 4152e02c4e2SJoseph Chen * Travels the lookup table to get the device_node by given stem and alias id. 4162e02c4e2SJoseph Chen * 4172e02c4e2SJoseph Chen * @stem: Alias stem of the given device_node 4182e02c4e2SJoseph Chen * @id: Alias id of the given device_node 4192e02c4e2SJoseph Chen * @return device_node, if found, else NULL 4202e02c4e2SJoseph Chen */ 4212e02c4e2SJoseph Chen struct device_node *of_alias_get_dev(const char *stem, int id); 4222e02c4e2SJoseph Chen 4232e02c4e2SJoseph Chen /** 4242e02c4e2SJoseph Chen * of_alias_dump - Dump of alias nodes added in aliases_lookup. 4252e02c4e2SJoseph Chen */ 4262e02c4e2SJoseph Chen struct device_node *of_alias_dump(void); 4272e02c4e2SJoseph Chen 4282e02c4e2SJoseph Chen /** 429644ec0a9SSimon Glass * of_get_stdout() - Get node to use for stdout 430644ec0a9SSimon Glass * 431644ec0a9SSimon Glass * @return node referred to by stdout-path alias, or NULL if none 432644ec0a9SSimon Glass */ 433644ec0a9SSimon Glass struct device_node *of_get_stdout(void); 434644ec0a9SSimon Glass 435644ec0a9SSimon Glass #endif 436