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 /** 223644ec0a9SSimon Glass * of_read_u32_array() - Find and read an array of 32 bit integers 224644ec0a9SSimon Glass * 225644ec0a9SSimon Glass * Search for a property in a device node and read 32-bit value(s) from 226644ec0a9SSimon Glass * it. 227644ec0a9SSimon Glass * 228644ec0a9SSimon Glass * @np: device node from which the property value is to be read. 229644ec0a9SSimon Glass * @propname: name of the property to be searched. 230644ec0a9SSimon Glass * @out_values: pointer to return value, modified only if return value is 0. 231644ec0a9SSimon Glass * @sz: number of array elements to read 232644ec0a9SSimon Glass * @return 0 on success, -EINVAL if the property does not exist, -ENODATA 233644ec0a9SSimon Glass * if property does not have a value, and -EOVERFLOW is longer than sz. 234644ec0a9SSimon Glass */ 235644ec0a9SSimon Glass int of_read_u32_array(const struct device_node *np, const char *propname, 236644ec0a9SSimon Glass u32 *out_values, size_t sz); 237644ec0a9SSimon Glass 238644ec0a9SSimon Glass /** 239644ec0a9SSimon Glass * of_property_match_string() - Find string in a list and return index 240644ec0a9SSimon Glass * 241644ec0a9SSimon Glass * This function searches a string list property and returns the index 242644ec0a9SSimon Glass * of a specific string value. 243644ec0a9SSimon Glass * 244644ec0a9SSimon Glass * @np: pointer to node containing string list property 245644ec0a9SSimon Glass * @propname: string list property name 246644ec0a9SSimon Glass * @string: pointer to string to search for in string list 247644ec0a9SSimon Glass * @return 0 on success, -EINVAL if the property does not exist, -ENODATA 248644ec0a9SSimon Glass * if property does not have a value, and -EOVERFLOW is longer than sz. 249644ec0a9SSimon Glass */ 250644ec0a9SSimon Glass int of_property_match_string(const struct device_node *np, const char *propname, 251644ec0a9SSimon Glass const char *string); 252644ec0a9SSimon Glass 253644ec0a9SSimon Glass int of_property_read_string_helper(const struct device_node *np, 254644ec0a9SSimon Glass const char *propname, const char **out_strs, 255644ec0a9SSimon Glass size_t sz, int index); 256644ec0a9SSimon Glass 257644ec0a9SSimon Glass /** 258644ec0a9SSimon Glass * of_property_read_string_index() - Find and read a string from a multiple 259644ec0a9SSimon Glass * strings property. 260644ec0a9SSimon Glass * @np: device node from which the property value is to be read. 261644ec0a9SSimon Glass * @propname: name of the property to be searched. 262644ec0a9SSimon Glass * @index: index of the string in the list of strings 263644ec0a9SSimon Glass * @out_string: pointer to null terminated return string, modified only if 264644ec0a9SSimon Glass * return value is 0. 265644ec0a9SSimon Glass * 266644ec0a9SSimon Glass * Search for a property in a device tree node and retrieve a null 267644ec0a9SSimon Glass * terminated string value (pointer to data, not a copy) in the list of strings 268644ec0a9SSimon Glass * contained in that property. 269644ec0a9SSimon Glass * Returns 0 on success, -EINVAL if the property does not exist, -ENODATA if 270644ec0a9SSimon Glass * property does not have a value, and -EILSEQ if the string is not 271644ec0a9SSimon Glass * null-terminated within the length of the property data. 272644ec0a9SSimon Glass * 273644ec0a9SSimon Glass * The out_string pointer is modified only if a valid string can be decoded. 274644ec0a9SSimon Glass */ 275644ec0a9SSimon Glass static inline int of_property_read_string_index(const struct device_node *np, 276644ec0a9SSimon Glass const char *propname, 277644ec0a9SSimon Glass int index, const char **output) 278644ec0a9SSimon Glass { 279644ec0a9SSimon Glass int rc = of_property_read_string_helper(np, propname, output, 1, index); 280644ec0a9SSimon Glass return rc < 0 ? rc : 0; 281644ec0a9SSimon Glass } 282644ec0a9SSimon Glass 283644ec0a9SSimon Glass /** 2848c293d6aSSimon Glass * of_property_count_strings() - Find and return the number of strings from a 2858c293d6aSSimon Glass * multiple strings property. 2868c293d6aSSimon Glass * @np: device node from which the property value is to be read. 2878c293d6aSSimon Glass * @propname: name of the property to be searched. 2888c293d6aSSimon Glass * 2898c293d6aSSimon Glass * Search for a property in a device tree node and retrieve the number of null 2908c293d6aSSimon Glass * terminated string contain in it. Returns the number of strings on 2918c293d6aSSimon Glass * success, -EINVAL if the property does not exist, -ENODATA if property 2928c293d6aSSimon Glass * does not have a value, and -EILSEQ if the string is not null-terminated 2938c293d6aSSimon Glass * within the length of the property data. 2948c293d6aSSimon Glass */ 2958c293d6aSSimon Glass static inline int of_property_count_strings(const struct device_node *np, 2968c293d6aSSimon Glass const char *propname) 2978c293d6aSSimon Glass { 2988c293d6aSSimon Glass return of_property_read_string_helper(np, propname, NULL, 0, 0); 2998c293d6aSSimon Glass } 3008c293d6aSSimon Glass 3018c293d6aSSimon Glass /** 302644ec0a9SSimon Glass * of_parse_phandle - Resolve a phandle property to a device_node pointer 303644ec0a9SSimon Glass * @np: Pointer to device node holding phandle property 304644ec0a9SSimon Glass * @phandle_name: Name of property holding a phandle value 305644ec0a9SSimon Glass * @index: For properties holding a table of phandles, this is the index into 306644ec0a9SSimon Glass * the table 307644ec0a9SSimon Glass * 308644ec0a9SSimon Glass * Returns the device_node pointer with refcount incremented. Use 309644ec0a9SSimon Glass * of_node_put() on it when done. 310644ec0a9SSimon Glass */ 311644ec0a9SSimon Glass struct device_node *of_parse_phandle(const struct device_node *np, 312644ec0a9SSimon Glass const char *phandle_name, int index); 313644ec0a9SSimon Glass 314644ec0a9SSimon Glass /** 315644ec0a9SSimon Glass * of_parse_phandle_with_args() - Find a node pointed by phandle in a list 316644ec0a9SSimon Glass * 317644ec0a9SSimon Glass * @np: pointer to a device tree node containing a list 318644ec0a9SSimon Glass * @list_name: property name that contains a list 319644ec0a9SSimon Glass * @cells_name: property name that specifies phandles' arguments count 320644ec0a9SSimon Glass * @index: index of a phandle to parse out 321644ec0a9SSimon Glass * @out_args: optional pointer to output arguments structure (will be filled) 322644ec0a9SSimon Glass * @return 0 on success (with @out_args filled out if not NULL), -ENOENT if 323644ec0a9SSimon Glass * @list_name does not exist, -EINVAL if a phandle was not found, 324644ec0a9SSimon Glass * @cells_name could not be found, the arguments were truncated or there 325644ec0a9SSimon Glass * were too many arguments. 326644ec0a9SSimon Glass * 327644ec0a9SSimon Glass * This function is useful to parse lists of phandles and their arguments. 328644ec0a9SSimon Glass * Returns 0 on success and fills out_args, on error returns appropriate 329644ec0a9SSimon Glass * errno value. 330644ec0a9SSimon Glass * 331644ec0a9SSimon Glass * Caller is responsible to call of_node_put() on the returned out_args->np 332644ec0a9SSimon Glass * pointer. 333644ec0a9SSimon Glass * 334644ec0a9SSimon Glass * Example: 335644ec0a9SSimon Glass * 336644ec0a9SSimon Glass * phandle1: node1 { 337644ec0a9SSimon Glass * #list-cells = <2>; 338644ec0a9SSimon Glass * } 339644ec0a9SSimon Glass * 340644ec0a9SSimon Glass * phandle2: node2 { 341644ec0a9SSimon Glass * #list-cells = <1>; 342644ec0a9SSimon Glass * } 343644ec0a9SSimon Glass * 344644ec0a9SSimon Glass * node3 { 345644ec0a9SSimon Glass * list = <&phandle1 1 2 &phandle2 3>; 346644ec0a9SSimon Glass * } 347644ec0a9SSimon Glass * 348644ec0a9SSimon Glass * To get a device_node of the `node2' node you may call this: 349644ec0a9SSimon Glass * of_parse_phandle_with_args(node3, "list", "#list-cells", 1, &args); 350644ec0a9SSimon Glass */ 351644ec0a9SSimon Glass int of_parse_phandle_with_args(const struct device_node *np, 352644ec0a9SSimon Glass const char *list_name, const char *cells_name, 353644ec0a9SSimon Glass int index, struct of_phandle_args *out_args); 354644ec0a9SSimon Glass 355644ec0a9SSimon Glass /** 356642346aeSPatrice Chotard * of_count_phandle_with_args() - Count the number of phandle in a list 357642346aeSPatrice Chotard * 358642346aeSPatrice Chotard * @np: pointer to a device tree node containing a list 359642346aeSPatrice Chotard * @list_name: property name that contains a list 360642346aeSPatrice Chotard * @cells_name: property name that specifies phandles' arguments count 361642346aeSPatrice Chotard * @return number of phandle found, -ENOENT if 362642346aeSPatrice Chotard * @list_name does not exist, -EINVAL if a phandle was not found, 363642346aeSPatrice Chotard * @cells_name could not be found, the arguments were truncated or there 364642346aeSPatrice Chotard * were too many arguments. 365642346aeSPatrice Chotard * 366642346aeSPatrice Chotard * Returns number of phandle found on success, on error returns appropriate 367642346aeSPatrice Chotard * errno value. 368642346aeSPatrice Chotard * 369642346aeSPatrice Chotard */ 370642346aeSPatrice Chotard int of_count_phandle_with_args(const struct device_node *np, 371642346aeSPatrice Chotard const char *list_name, const char *cells_name); 372642346aeSPatrice Chotard 373642346aeSPatrice Chotard /** 374644ec0a9SSimon Glass * of_alias_scan() - Scan all properties of the 'aliases' node 375644ec0a9SSimon Glass * 376644ec0a9SSimon Glass * The function scans all the properties of the 'aliases' node and populates 377644ec0a9SSimon Glass * the lookup table with the properties. It returns the number of alias 378644ec0a9SSimon Glass * properties found, or an error code in case of failure. 379644ec0a9SSimon Glass * 380644ec0a9SSimon Glass * @return 9 if OK, -ENOMEM if not enough memory 381644ec0a9SSimon Glass */ 382644ec0a9SSimon Glass int of_alias_scan(void); 383644ec0a9SSimon Glass 384644ec0a9SSimon Glass /** 385644ec0a9SSimon Glass * of_alias_get_id - Get alias id for the given device_node 386644ec0a9SSimon Glass * 387644ec0a9SSimon Glass * Travels the lookup table to get the alias id for the given device_node and 388644ec0a9SSimon Glass * alias stem. 389644ec0a9SSimon Glass * 390644ec0a9SSimon Glass * @np: Pointer to the given device_node 391644ec0a9SSimon Glass * @stem: Alias stem of the given device_node 392644ec0a9SSimon Glass * @return alias ID, if found, else -ENODEV 393644ec0a9SSimon Glass */ 394644ec0a9SSimon Glass int of_alias_get_id(const struct device_node *np, const char *stem); 395644ec0a9SSimon Glass 396644ec0a9SSimon Glass /** 397*2e02c4e2SJoseph Chen * of_alias_get_dev - Get device_node by given stem and alias id 398*2e02c4e2SJoseph Chen * 399*2e02c4e2SJoseph Chen * Travels the lookup table to get the device_node by given stem and alias id. 400*2e02c4e2SJoseph Chen * 401*2e02c4e2SJoseph Chen * @stem: Alias stem of the given device_node 402*2e02c4e2SJoseph Chen * @id: Alias id of the given device_node 403*2e02c4e2SJoseph Chen * @return device_node, if found, else NULL 404*2e02c4e2SJoseph Chen */ 405*2e02c4e2SJoseph Chen struct device_node *of_alias_get_dev(const char *stem, int id); 406*2e02c4e2SJoseph Chen 407*2e02c4e2SJoseph Chen /** 408*2e02c4e2SJoseph Chen * of_alias_dump - Dump of alias nodes added in aliases_lookup. 409*2e02c4e2SJoseph Chen */ 410*2e02c4e2SJoseph Chen struct device_node *of_alias_dump(void); 411*2e02c4e2SJoseph Chen 412*2e02c4e2SJoseph Chen /** 413644ec0a9SSimon Glass * of_get_stdout() - Get node to use for stdout 414644ec0a9SSimon Glass * 415644ec0a9SSimon Glass * @return node referred to by stdout-path alias, or NULL if none 416644ec0a9SSimon Glass */ 417644ec0a9SSimon Glass struct device_node *of_get_stdout(void); 418644ec0a9SSimon Glass 419644ec0a9SSimon Glass #endif 420