Rob Herring | af6074f | 2017-12-27 12:55:14 -0600 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Stephen Rothwell | 76c1ce7 | 2007-05-01 16:19:07 +1000 | [diff] [blame] | 2 | #ifndef _LINUX_OF_H |
| 3 | #define _LINUX_OF_H |
| 4 | /* |
| 5 | * Definitions for talking to the Open Firmware PROM on |
| 6 | * Power Macintosh and other computers. |
| 7 | * |
| 8 | * Copyright (C) 1996-2005 Paul Mackerras. |
| 9 | * |
| 10 | * Updates for PPC64 by Peter Bergner & David Engebretsen, IBM Corp. |
| 11 | * Updates for SPARC64 by David S. Miller |
| 12 | * Derived from PowerPC and Sparc prom.h files by Stephen Rothwell, IBM Corp. |
Stephen Rothwell | 76c1ce7 | 2007-05-01 16:19:07 +1000 | [diff] [blame] | 13 | */ |
| 14 | #include <linux/types.h> |
Jiri Slaby | 1977f03 | 2007-10-18 23:40:25 -0700 | [diff] [blame] | 15 | #include <linux/bitops.h> |
Kalle Valo | e51130c | 2011-10-06 15:40:44 +0300 | [diff] [blame] | 16 | #include <linux/errno.h> |
Grant Likely | 75b57ec | 2014-02-20 18:02:11 +0000 | [diff] [blame] | 17 | #include <linux/kobject.h> |
Grant Likely | 283029d | 2008-01-09 06:20:40 +1100 | [diff] [blame] | 18 | #include <linux/mod_devicetable.h> |
Grant Likely | 0d351c3 | 2010-02-14 14:13:57 -0700 | [diff] [blame] | 19 | #include <linux/spinlock.h> |
Paul Mundt | 5ca4db6 | 2012-06-03 22:04:34 -0700 | [diff] [blame] | 20 | #include <linux/topology.h> |
Nathan Fontenot | 1cf3d8b | 2012-10-02 16:57:57 +0000 | [diff] [blame] | 21 | #include <linux/notifier.h> |
Rafael J. Wysocki | b31384f | 2014-11-04 01:28:56 +0100 | [diff] [blame] | 22 | #include <linux/property.h> |
Pantelis Antoniou | 7518b589 | 2014-10-28 22:35:58 +0200 | [diff] [blame] | 23 | #include <linux/list.h> |
Stephen Rothwell | 76c1ce7 | 2007-05-01 16:19:07 +1000 | [diff] [blame] | 24 | |
Jeremy Kerr | 2e89e68 | 2010-01-30 01:41:49 -0700 | [diff] [blame] | 25 | #include <asm/byteorder.h> |
Paul Gortmaker | d0a9940 | 2011-10-29 10:17:06 -0400 | [diff] [blame] | 26 | #include <asm/errno.h> |
Jeremy Kerr | 2e89e68 | 2010-01-30 01:41:49 -0700 | [diff] [blame] | 27 | |
Grant Likely | 731581e | 2009-10-15 10:57:46 -0600 | [diff] [blame] | 28 | typedef u32 phandle; |
| 29 | typedef u32 ihandle; |
| 30 | |
| 31 | struct property { |
| 32 | char *name; |
| 33 | int length; |
| 34 | void *value; |
| 35 | struct property *next; |
Rob Herring | 16bba30 | 2017-10-04 14:30:02 -0500 | [diff] [blame] | 36 | #if defined(CONFIG_OF_DYNAMIC) || defined(CONFIG_SPARC) |
Grant Likely | 731581e | 2009-10-15 10:57:46 -0600 | [diff] [blame] | 37 | unsigned long _flags; |
Rob Herring | 16bba30 | 2017-10-04 14:30:02 -0500 | [diff] [blame] | 38 | #endif |
Rob Herring | 36689ec | 2017-09-29 20:08:28 -0500 | [diff] [blame] | 39 | #if defined(CONFIG_OF_PROMTREE) |
Grant Likely | 731581e | 2009-10-15 10:57:46 -0600 | [diff] [blame] | 40 | unsigned int unique_id; |
Rob Herring | 36689ec | 2017-09-29 20:08:28 -0500 | [diff] [blame] | 41 | #endif |
Rob Herring | b56b552 | 2017-10-04 14:09:40 -0500 | [diff] [blame] | 42 | #if defined(CONFIG_OF_KOBJ) |
Grant Likely | 75b57ec | 2014-02-20 18:02:11 +0000 | [diff] [blame] | 43 | struct bin_attribute attr; |
Rob Herring | b56b552 | 2017-10-04 14:09:40 -0500 | [diff] [blame] | 44 | #endif |
Grant Likely | 731581e | 2009-10-15 10:57:46 -0600 | [diff] [blame] | 45 | }; |
| 46 | |
Grant Likely | 6f19249 | 2009-10-15 10:57:49 -0600 | [diff] [blame] | 47 | #if defined(CONFIG_SPARC) |
| 48 | struct of_irq_controller; |
| 49 | #endif |
| 50 | |
| 51 | struct device_node { |
| 52 | const char *name; |
| 53 | const char *type; |
Grant Likely | 6016a36 | 2010-01-28 14:06:53 -0700 | [diff] [blame] | 54 | phandle phandle; |
Grant Likely | c22618a | 2012-11-14 22:37:12 +0000 | [diff] [blame] | 55 | const char *full_name; |
Rafael J. Wysocki | 8a0662d | 2014-11-04 14:03:59 +0100 | [diff] [blame] | 56 | struct fwnode_handle fwnode; |
Grant Likely | 6f19249 | 2009-10-15 10:57:49 -0600 | [diff] [blame] | 57 | |
| 58 | struct property *properties; |
| 59 | struct property *deadprops; /* removed properties */ |
| 60 | struct device_node *parent; |
| 61 | struct device_node *child; |
| 62 | struct device_node *sibling; |
Rob Herring | b56b552 | 2017-10-04 14:09:40 -0500 | [diff] [blame] | 63 | #if defined(CONFIG_OF_KOBJ) |
Grant Likely | 75b57ec | 2014-02-20 18:02:11 +0000 | [diff] [blame] | 64 | struct kobject kobj; |
Rob Herring | b56b552 | 2017-10-04 14:09:40 -0500 | [diff] [blame] | 65 | #endif |
Grant Likely | 6f19249 | 2009-10-15 10:57:49 -0600 | [diff] [blame] | 66 | unsigned long _flags; |
| 67 | void *data; |
| 68 | #if defined(CONFIG_SPARC) |
Grant Likely | c22618a | 2012-11-14 22:37:12 +0000 | [diff] [blame] | 69 | const char *path_component_name; |
Grant Likely | 6f19249 | 2009-10-15 10:57:49 -0600 | [diff] [blame] | 70 | unsigned int unique_id; |
| 71 | struct of_irq_controller *irq_trans; |
| 72 | #endif |
| 73 | }; |
| 74 | |
Andreas Herrmann | b66548e2 | 2014-01-17 12:08:30 +0100 | [diff] [blame] | 75 | #define MAX_PHANDLE_ARGS 16 |
Grant Likely | 15c9a0a | 2011-12-12 09:25:57 -0700 | [diff] [blame] | 76 | struct of_phandle_args { |
| 77 | struct device_node *np; |
| 78 | int args_count; |
| 79 | uint32_t args[MAX_PHANDLE_ARGS]; |
| 80 | }; |
| 81 | |
Joerg Roedel | 74e1fbb | 2016-04-04 17:49:17 +0200 | [diff] [blame] | 82 | struct of_phandle_iterator { |
| 83 | /* Common iterator information */ |
| 84 | const char *cells_name; |
| 85 | int cell_count; |
| 86 | const struct device_node *parent; |
| 87 | |
| 88 | /* List size information */ |
| 89 | const __be32 *list_end; |
| 90 | const __be32 *phandle_end; |
| 91 | |
| 92 | /* Current position state */ |
| 93 | const __be32 *cur; |
| 94 | uint32_t cur_count; |
| 95 | phandle phandle; |
| 96 | struct device_node *node; |
| 97 | }; |
| 98 | |
Grant Likely | f5242e5 | 2014-11-24 17:58:01 +0000 | [diff] [blame] | 99 | struct of_reconfig_data { |
| 100 | struct device_node *dn; |
| 101 | struct property *prop; |
| 102 | struct property *old_prop; |
| 103 | }; |
| 104 | |
Pantelis Antoniou | 0829f6d | 2013-12-13 20:08:59 +0200 | [diff] [blame] | 105 | /* initialize a node */ |
| 106 | extern struct kobj_type of_node_ktype; |
Sakari Ailus | 3708184 | 2017-06-06 12:37:37 +0300 | [diff] [blame] | 107 | extern const struct fwnode_operations of_fwnode_ops; |
Pantelis Antoniou | 0829f6d | 2013-12-13 20:08:59 +0200 | [diff] [blame] | 108 | static inline void of_node_init(struct device_node *node) |
| 109 | { |
Rob Herring | b56b552 | 2017-10-04 14:09:40 -0500 | [diff] [blame] | 110 | #if defined(CONFIG_OF_KOBJ) |
Pantelis Antoniou | 0829f6d | 2013-12-13 20:08:59 +0200 | [diff] [blame] | 111 | kobject_init(&node->kobj, &of_node_ktype); |
Rob Herring | b56b552 | 2017-10-04 14:09:40 -0500 | [diff] [blame] | 112 | #endif |
Sakari Ailus | 3708184 | 2017-06-06 12:37:37 +0300 | [diff] [blame] | 113 | node->fwnode.ops = &of_fwnode_ops; |
Pantelis Antoniou | 0829f6d | 2013-12-13 20:08:59 +0200 | [diff] [blame] | 114 | } |
| 115 | |
Rob Herring | b56b552 | 2017-10-04 14:09:40 -0500 | [diff] [blame] | 116 | #if defined(CONFIG_OF_KOBJ) |
Rob Herring | 0c3c234 | 2017-10-04 14:04:01 -0500 | [diff] [blame] | 117 | #define of_node_kobj(n) (&(n)->kobj) |
Rob Herring | b56b552 | 2017-10-04 14:09:40 -0500 | [diff] [blame] | 118 | #else |
| 119 | #define of_node_kobj(n) NULL |
| 120 | #endif |
Pantelis Antoniou | 0829f6d | 2013-12-13 20:08:59 +0200 | [diff] [blame] | 121 | |
Grant Likely | 0f22dd3 | 2012-02-15 20:38:40 -0700 | [diff] [blame] | 122 | #ifdef CONFIG_OF_DYNAMIC |
| 123 | extern struct device_node *of_node_get(struct device_node *node); |
| 124 | extern void of_node_put(struct device_node *node); |
| 125 | #else /* CONFIG_OF_DYNAMIC */ |
Rob Herring | 3ecdd05 | 2011-12-13 09:13:54 -0600 | [diff] [blame] | 126 | /* Dummy ref counting routines - to be implemented later */ |
| 127 | static inline struct device_node *of_node_get(struct device_node *node) |
| 128 | { |
| 129 | return node; |
| 130 | } |
Grant Likely | 0f22dd3 | 2012-02-15 20:38:40 -0700 | [diff] [blame] | 131 | static inline void of_node_put(struct device_node *node) { } |
| 132 | #endif /* !CONFIG_OF_DYNAMIC */ |
Rob Herring | 3ecdd05 | 2011-12-13 09:13:54 -0600 | [diff] [blame] | 133 | |
Grant Likely | 41f8800 | 2009-11-23 20:07:01 -0700 | [diff] [blame] | 134 | /* Pointer for first entry in chain of all nodes. */ |
Grant Likely | 5063e25 | 2014-10-03 16:28:27 +0100 | [diff] [blame] | 135 | extern struct device_node *of_root; |
Grant Likely | fc0bdae | 2010-02-14 07:13:55 -0700 | [diff] [blame] | 136 | extern struct device_node *of_chosen; |
Shawn Guo | 611cad7 | 2011-08-15 15:28:14 +0800 | [diff] [blame] | 137 | extern struct device_node *of_aliases; |
Grant Likely | a752ee5 | 2014-03-28 08:12:18 -0700 | [diff] [blame] | 138 | extern struct device_node *of_stdout; |
Thomas Gleixner | d6d3c4e | 2013-02-06 15:30:56 -0500 | [diff] [blame] | 139 | extern raw_spinlock_t devtree_lock; |
Grant Likely | 41f8800 | 2009-11-23 20:07:01 -0700 | [diff] [blame] | 140 | |
Pantelis Antoniou | 391b459 | 2015-04-24 12:41:56 +0300 | [diff] [blame] | 141 | /* flag descriptions (need to be visible even when !CONFIG_OF) */ |
| 142 | #define OF_DYNAMIC 1 /* node and properties were allocated via kmalloc */ |
| 143 | #define OF_DETACHED 2 /* node has been detached from the device tree */ |
| 144 | #define OF_POPULATED 3 /* device already created for the node */ |
| 145 | #define OF_POPULATED_BUS 4 /* of_platform_populate recursed to children of this node */ |
| 146 | |
Guenter Roeck | b1d06b6 | 2015-11-06 19:28:22 -0800 | [diff] [blame] | 147 | #define OF_BAD_ADDR ((u64)-1) |
| 148 | |
Hans de Goede | 6d09dc6 | 2014-11-14 13:26:52 +0100 | [diff] [blame] | 149 | #ifdef CONFIG_OF |
Sudeep Holla | 194ec93 | 2015-05-14 15:28:24 +0100 | [diff] [blame] | 150 | void of_core_init(void); |
| 151 | |
Sakari Ailus | d20dc14 | 2017-05-24 17:53:55 +0300 | [diff] [blame] | 152 | static inline bool is_of_node(const struct fwnode_handle *fwnode) |
Rafael J. Wysocki | 8a0662d | 2014-11-04 14:03:59 +0100 | [diff] [blame] | 153 | { |
Sakari Ailus | db3e50f | 2017-07-21 14:39:31 +0300 | [diff] [blame] | 154 | return !IS_ERR_OR_NULL(fwnode) && fwnode->ops == &of_fwnode_ops; |
Rafael J. Wysocki | 8a0662d | 2014-11-04 14:03:59 +0100 | [diff] [blame] | 155 | } |
| 156 | |
Sakari Ailus | d20dc14 | 2017-05-24 17:53:55 +0300 | [diff] [blame] | 157 | #define to_of_node(__fwnode) \ |
| 158 | ({ \ |
| 159 | typeof(__fwnode) __to_of_node_fwnode = (__fwnode); \ |
| 160 | \ |
| 161 | is_of_node(__to_of_node_fwnode) ? \ |
| 162 | container_of(__to_of_node_fwnode, \ |
| 163 | struct device_node, fwnode) : \ |
| 164 | NULL; \ |
| 165 | }) |
Rafael J. Wysocki | 8a0662d | 2014-11-04 14:03:59 +0100 | [diff] [blame] | 166 | |
Sakari Ailus | debd3a3 | 2017-05-24 17:53:54 +0300 | [diff] [blame] | 167 | #define of_fwnode_handle(node) \ |
| 168 | ({ \ |
| 169 | typeof(node) __of_fwnode_handle_node = (node); \ |
| 170 | \ |
| 171 | __of_fwnode_handle_node ? \ |
| 172 | &__of_fwnode_handle_node->fwnode : NULL; \ |
| 173 | }) |
Sakari Ailus | 6783183 | 2017-03-28 10:52:23 +0300 | [diff] [blame] | 174 | |
Sebastian Andrzej Siewior | 3bcbaf6 | 2011-02-22 21:07:46 +0100 | [diff] [blame] | 175 | static inline bool of_have_populated_dt(void) |
| 176 | { |
Grant Likely | 5063e25 | 2014-10-03 16:28:27 +0100 | [diff] [blame] | 177 | return of_root != NULL; |
Sebastian Andrzej Siewior | 3bcbaf6 | 2011-02-22 21:07:46 +0100 | [diff] [blame] | 178 | } |
| 179 | |
Andres Salomon | 035ebef | 2010-07-13 09:42:26 +0000 | [diff] [blame] | 180 | static inline bool of_node_is_root(const struct device_node *node) |
| 181 | { |
| 182 | return node && (node->parent == NULL); |
| 183 | } |
| 184 | |
Grant Likely | 5043631 | 2009-10-15 10:57:58 -0600 | [diff] [blame] | 185 | static inline int of_node_check_flag(struct device_node *n, unsigned long flag) |
| 186 | { |
| 187 | return test_bit(flag, &n->_flags); |
| 188 | } |
| 189 | |
Pawel Moll | c6e126d | 2014-05-15 16:55:24 +0100 | [diff] [blame] | 190 | static inline int of_node_test_and_set_flag(struct device_node *n, |
| 191 | unsigned long flag) |
| 192 | { |
| 193 | return test_and_set_bit(flag, &n->_flags); |
| 194 | } |
| 195 | |
Grant Likely | 5043631 | 2009-10-15 10:57:58 -0600 | [diff] [blame] | 196 | static inline void of_node_set_flag(struct device_node *n, unsigned long flag) |
| 197 | { |
| 198 | set_bit(flag, &n->_flags); |
| 199 | } |
| 200 | |
Pantelis Antoniou | 588453c | 2013-11-08 17:03:56 +0200 | [diff] [blame] | 201 | static inline void of_node_clear_flag(struct device_node *n, unsigned long flag) |
| 202 | { |
| 203 | clear_bit(flag, &n->_flags); |
| 204 | } |
| 205 | |
Rob Herring | 16bba30 | 2017-10-04 14:30:02 -0500 | [diff] [blame] | 206 | #if defined(CONFIG_OF_DYNAMIC) || defined(CONFIG_SPARC) |
Pantelis Antoniou | 588453c | 2013-11-08 17:03:56 +0200 | [diff] [blame] | 207 | static inline int of_property_check_flag(struct property *p, unsigned long flag) |
| 208 | { |
| 209 | return test_bit(flag, &p->_flags); |
| 210 | } |
| 211 | |
| 212 | static inline void of_property_set_flag(struct property *p, unsigned long flag) |
| 213 | { |
| 214 | set_bit(flag, &p->_flags); |
| 215 | } |
| 216 | |
| 217 | static inline void of_property_clear_flag(struct property *p, unsigned long flag) |
| 218 | { |
| 219 | clear_bit(flag, &p->_flags); |
| 220 | } |
Rob Herring | 16bba30 | 2017-10-04 14:30:02 -0500 | [diff] [blame] | 221 | #endif |
Pantelis Antoniou | 588453c | 2013-11-08 17:03:56 +0200 | [diff] [blame] | 222 | |
Grant Likely | 5063e25 | 2014-10-03 16:28:27 +0100 | [diff] [blame] | 223 | extern struct device_node *__of_find_all_nodes(struct device_node *prev); |
Grant Likely | e91edcf | 2009-10-15 10:58:09 -0600 | [diff] [blame] | 224 | extern struct device_node *of_find_all_nodes(struct device_node *prev); |
| 225 | |
Grant Likely | b6caf2a | 2009-10-15 10:58:00 -0600 | [diff] [blame] | 226 | /* |
Lennert Buytenhek | 3d6b882 | 2011-02-22 18:18:51 +0100 | [diff] [blame] | 227 | * OF address retrieval & translation |
Grant Likely | b6caf2a | 2009-10-15 10:58:00 -0600 | [diff] [blame] | 228 | */ |
| 229 | |
| 230 | /* Helper to read a big number; size is in cells (not bytes) */ |
Jeremy Kerr | 2e89e68 | 2010-01-30 01:41:49 -0700 | [diff] [blame] | 231 | static inline u64 of_read_number(const __be32 *cell, int size) |
Grant Likely | b6caf2a | 2009-10-15 10:58:00 -0600 | [diff] [blame] | 232 | { |
| 233 | u64 r = 0; |
| 234 | while (size--) |
Jeremy Kerr | 2e89e68 | 2010-01-30 01:41:49 -0700 | [diff] [blame] | 235 | r = (r << 32) | be32_to_cpu(*(cell++)); |
Grant Likely | b6caf2a | 2009-10-15 10:58:00 -0600 | [diff] [blame] | 236 | return r; |
| 237 | } |
| 238 | |
| 239 | /* Like of_read_number, but we want an unsigned long result */ |
Jeremy Kerr | 2e89e68 | 2010-01-30 01:41:49 -0700 | [diff] [blame] | 240 | static inline unsigned long of_read_ulong(const __be32 *cell, int size) |
Grant Likely | b6caf2a | 2009-10-15 10:58:00 -0600 | [diff] [blame] | 241 | { |
Grant Likely | 2be09cb | 2009-11-23 20:16:46 -0700 | [diff] [blame] | 242 | /* toss away upper bits if unsigned long is smaller than u64 */ |
| 243 | return of_read_number(cell, size); |
Grant Likely | b6caf2a | 2009-10-15 10:58:00 -0600 | [diff] [blame] | 244 | } |
Grant Likely | b6caf2a | 2009-10-15 10:58:00 -0600 | [diff] [blame] | 245 | |
Rob Herring | b5b4bb3 | 2013-09-07 14:08:20 -0500 | [diff] [blame] | 246 | #if defined(CONFIG_SPARC) |
Stephen Rothwell | 76c1ce7 | 2007-05-01 16:19:07 +1000 | [diff] [blame] | 247 | #include <asm/prom.h> |
Rob Herring | b5b4bb3 | 2013-09-07 14:08:20 -0500 | [diff] [blame] | 248 | #endif |
Stephen Rothwell | 76c1ce7 | 2007-05-01 16:19:07 +1000 | [diff] [blame] | 249 | |
Grant Likely | 7c7b60c | 2010-02-14 07:13:50 -0700 | [diff] [blame] | 250 | /* Default #address and #size cells. Allow arch asm/prom.h to override */ |
| 251 | #if !defined(OF_ROOT_NODE_ADDR_CELLS_DEFAULT) |
| 252 | #define OF_ROOT_NODE_ADDR_CELLS_DEFAULT 1 |
| 253 | #define OF_ROOT_NODE_SIZE_CELLS_DEFAULT 1 |
| 254 | #endif |
| 255 | |
Grant Likely | 61e955d | 2009-10-15 10:57:51 -0600 | [diff] [blame] | 256 | #define OF_IS_DYNAMIC(x) test_bit(OF_DYNAMIC, &x->_flags) |
| 257 | #define OF_MARK_DYNAMIC(x) set_bit(OF_DYNAMIC, &x->_flags) |
| 258 | |
Rob Herring | f42b0e18 | 2018-08-27 07:50:47 -0500 | [diff] [blame] | 259 | extern bool of_node_name_eq(const struct device_node *np, const char *name); |
| 260 | extern bool of_node_name_prefix(const struct device_node *np, const char *prefix); |
| 261 | |
Steffen Trumtrar | c0a05bf | 2012-12-18 11:32:03 +0100 | [diff] [blame] | 262 | static inline const char *of_node_full_name(const struct device_node *np) |
Grant Likely | 74a7f08 | 2012-06-15 11:50:25 -0600 | [diff] [blame] | 263 | { |
| 264 | return np ? np->full_name : "<no-node>"; |
| 265 | } |
| 266 | |
Grant Likely | 5063e25 | 2014-10-03 16:28:27 +0100 | [diff] [blame] | 267 | #define for_each_of_allnodes_from(from, dn) \ |
| 268 | for (dn = __of_find_all_nodes(from); dn; dn = __of_find_all_nodes(dn)) |
| 269 | #define for_each_of_allnodes(dn) for_each_of_allnodes_from(NULL, dn) |
Stephen Rothwell | 76c1ce7 | 2007-05-01 16:19:07 +1000 | [diff] [blame] | 270 | extern struct device_node *of_find_node_by_name(struct device_node *from, |
| 271 | const char *name); |
Stephen Rothwell | 76c1ce7 | 2007-05-01 16:19:07 +1000 | [diff] [blame] | 272 | extern struct device_node *of_find_node_by_type(struct device_node *from, |
| 273 | const char *type); |
Stephen Rothwell | 76c1ce7 | 2007-05-01 16:19:07 +1000 | [diff] [blame] | 274 | extern struct device_node *of_find_compatible_node(struct device_node *from, |
| 275 | const char *type, const char *compat); |
Stephen Warren | 50c8af4 | 2012-11-20 16:12:20 -0700 | [diff] [blame] | 276 | extern struct device_node *of_find_matching_node_and_match( |
| 277 | struct device_node *from, |
| 278 | const struct of_device_id *matches, |
| 279 | const struct of_device_id **match); |
Rob Herring | 662372e | 2014-02-03 08:53:44 -0600 | [diff] [blame] | 280 | |
Leif Lindholm | 75c28c0 | 2014-11-28 11:34:28 +0000 | [diff] [blame] | 281 | extern struct device_node *of_find_node_opts_by_path(const char *path, |
| 282 | const char **opts); |
| 283 | static inline struct device_node *of_find_node_by_path(const char *path) |
| 284 | { |
| 285 | return of_find_node_opts_by_path(path, NULL); |
| 286 | } |
| 287 | |
Stephen Rothwell | 76c1ce7 | 2007-05-01 16:19:07 +1000 | [diff] [blame] | 288 | extern struct device_node *of_find_node_by_phandle(phandle handle); |
| 289 | extern struct device_node *of_get_parent(const struct device_node *node); |
Michael Ellerman | f4eb010 | 2007-10-26 16:54:31 +1000 | [diff] [blame] | 290 | extern struct device_node *of_get_next_parent(struct device_node *node); |
Stephen Rothwell | 76c1ce7 | 2007-05-01 16:19:07 +1000 | [diff] [blame] | 291 | extern struct device_node *of_get_next_child(const struct device_node *node, |
| 292 | struct device_node *prev); |
Timur Tabi | 3296193 | 2012-08-14 13:20:23 +0000 | [diff] [blame] | 293 | extern struct device_node *of_get_next_available_child( |
| 294 | const struct device_node *node, struct device_node *prev); |
| 295 | |
Johan Hovold | 36156f9 | 2018-08-27 10:21:45 +0200 | [diff] [blame] | 296 | extern struct device_node *of_get_compatible_child(const struct device_node *parent, |
| 297 | const char *compatible); |
Srinivas Kandagatla | 9c19761 | 2012-09-18 08:10:28 +0100 | [diff] [blame] | 298 | extern struct device_node *of_get_child_by_name(const struct device_node *node, |
| 299 | const char *name); |
Bryan Wu | 954e04b | 2013-09-24 10:38:26 -0700 | [diff] [blame] | 300 | |
Sudeep KarkadaNagesha | a3e31b4 | 2013-09-18 11:53:05 +0100 | [diff] [blame] | 301 | /* cache lookup */ |
| 302 | extern struct device_node *of_find_next_cache_node(const struct device_node *); |
Sudeep Holla | 5fa2353 | 2017-01-16 10:40:43 +0000 | [diff] [blame] | 303 | extern int of_find_last_cache_level(unsigned int cpu); |
Michael Ellerman | 1e291b14 | 2008-11-12 18:54:42 +0000 | [diff] [blame] | 304 | extern struct device_node *of_find_node_with_property( |
| 305 | struct device_node *from, const char *prop_name); |
Michael Ellerman | 1e291b14 | 2008-11-12 18:54:42 +0000 | [diff] [blame] | 306 | |
Stephen Rothwell | 76c1ce7 | 2007-05-01 16:19:07 +1000 | [diff] [blame] | 307 | extern struct property *of_find_property(const struct device_node *np, |
| 308 | const char *name, |
| 309 | int *lenp); |
Heiko Stuebner | ad54a0c | 2014-02-12 01:00:34 +0100 | [diff] [blame] | 310 | extern int of_property_count_elems_of_size(const struct device_node *np, |
| 311 | const char *propname, int elem_size); |
Tony Prisk | 3daf372 | 2013-03-23 17:02:15 +1300 | [diff] [blame] | 312 | extern int of_property_read_u32_index(const struct device_node *np, |
| 313 | const char *propname, |
| 314 | u32 index, u32 *out_value); |
Alistair Popple | 2475a2b | 2017-04-03 19:51:42 +1000 | [diff] [blame] | 315 | extern int of_property_read_u64_index(const struct device_node *np, |
| 316 | const char *propname, |
| 317 | u32 index, u64 *out_value); |
Richard Fitzgerald | a67e947 | 2016-09-12 14:01:29 +0100 | [diff] [blame] | 318 | extern int of_property_read_variable_u8_array(const struct device_node *np, |
| 319 | const char *propname, u8 *out_values, |
| 320 | size_t sz_min, size_t sz_max); |
| 321 | extern int of_property_read_variable_u16_array(const struct device_node *np, |
| 322 | const char *propname, u16 *out_values, |
| 323 | size_t sz_min, size_t sz_max); |
| 324 | extern int of_property_read_variable_u32_array(const struct device_node *np, |
| 325 | const char *propname, |
| 326 | u32 *out_values, |
| 327 | size_t sz_min, |
| 328 | size_t sz_max); |
Jamie Iles | 4cd7f7a | 2011-09-14 20:49:59 +0100 | [diff] [blame] | 329 | extern int of_property_read_u64(const struct device_node *np, |
| 330 | const char *propname, u64 *out_value); |
Richard Fitzgerald | a67e947 | 2016-09-12 14:01:29 +0100 | [diff] [blame] | 331 | extern int of_property_read_variable_u64_array(const struct device_node *np, |
| 332 | const char *propname, |
| 333 | u64 *out_values, |
| 334 | size_t sz_min, |
| 335 | size_t sz_max); |
Rob Herring | 0e37363 | 2011-07-06 15:42:58 -0500 | [diff] [blame] | 336 | |
David Rivshin | fe99c70 | 2016-03-02 16:35:51 -0500 | [diff] [blame] | 337 | extern int of_property_read_string(const struct device_node *np, |
Jamie Iles | aac285c | 2011-08-02 15:45:07 +0100 | [diff] [blame] | 338 | const char *propname, |
| 339 | const char **out_string); |
David Rivshin | fe99c70 | 2016-03-02 16:35:51 -0500 | [diff] [blame] | 340 | extern int of_property_match_string(const struct device_node *np, |
Grant Likely | 7aff0fe | 2011-12-12 09:25:58 -0700 | [diff] [blame] | 341 | const char *propname, |
| 342 | const char *string); |
David Rivshin | fe99c70 | 2016-03-02 16:35:51 -0500 | [diff] [blame] | 343 | extern int of_property_read_string_helper(const struct device_node *np, |
Grant Likely | a87fa1d | 2014-11-03 15:15:35 +0000 | [diff] [blame] | 344 | const char *propname, |
| 345 | const char **out_strs, size_t sz, int index); |
Stephen Rothwell | 76c1ce7 | 2007-05-01 16:19:07 +1000 | [diff] [blame] | 346 | extern int of_device_is_compatible(const struct device_node *device, |
| 347 | const char *); |
Benjamin Herrenschmidt | b9c13fe3 | 2016-07-08 08:35:59 +1000 | [diff] [blame] | 348 | extern int of_device_compatible_match(struct device_node *device, |
| 349 | const char *const *compat); |
Kevin Cernekee | 53a4ab9 | 2014-11-12 12:54:01 -0800 | [diff] [blame] | 350 | extern bool of_device_is_available(const struct device_node *device); |
Kevin Cernekee | 37786c7 | 2015-04-09 13:05:14 -0700 | [diff] [blame] | 351 | extern bool of_device_is_big_endian(const struct device_node *device); |
Stephen Rothwell | 76c1ce7 | 2007-05-01 16:19:07 +1000 | [diff] [blame] | 352 | extern const void *of_get_property(const struct device_node *node, |
| 353 | const char *name, |
| 354 | int *lenp); |
Sudeep KarkadaNagesha | 183912d | 2013-08-15 14:01:40 +0100 | [diff] [blame] | 355 | extern struct device_node *of_get_cpu_node(int cpu, unsigned int *thread); |
Rob Herring | f1f207e | 2018-08-22 15:04:40 -0500 | [diff] [blame^] | 356 | extern struct device_node *of_get_next_cpu_node(struct device_node *prev); |
| 357 | |
Dong Aisheng | 8af0da9 | 2011-12-22 20:19:24 +0800 | [diff] [blame] | 358 | #define for_each_property_of_node(dn, pp) \ |
| 359 | for (pp = dn->properties; pp != NULL; pp = pp->next) |
Shawn Guo | 611cad7 | 2011-08-15 15:28:14 +0800 | [diff] [blame] | 360 | |
Stephen Rothwell | 76c1ce7 | 2007-05-01 16:19:07 +1000 | [diff] [blame] | 361 | extern int of_n_addr_cells(struct device_node *np); |
| 362 | extern int of_n_size_cells(struct device_node *np); |
Grant Likely | 283029d | 2008-01-09 06:20:40 +1100 | [diff] [blame] | 363 | extern const struct of_device_id *of_match_node( |
| 364 | const struct of_device_id *matches, const struct device_node *node); |
Grant Likely | 3f07af4 | 2008-07-25 22:25:13 -0400 | [diff] [blame] | 365 | extern int of_modalias_node(struct device_node *node, char *modalias, int len); |
Grant Likely | 624cfca | 2013-10-11 22:05:10 +0100 | [diff] [blame] | 366 | extern void of_print_phandle_args(const char *msg, const struct of_phandle_args *args); |
Steffen Trumtrar | b8fbdc4 | 2012-11-22 12:16:43 +0100 | [diff] [blame] | 367 | extern struct device_node *of_parse_phandle(const struct device_node *np, |
Grant Likely | 739649c | 2009-04-25 12:52:40 +0000 | [diff] [blame] | 368 | const char *phandle_name, |
| 369 | int index); |
Guennadi Liakhovetski | 93c667c | 2012-12-10 20:41:30 +0100 | [diff] [blame] | 370 | extern int of_parse_phandle_with_args(const struct device_node *np, |
Anton Vorontsov | 64b60e0 | 2008-10-10 04:43:17 +0000 | [diff] [blame] | 371 | const char *list_name, const char *cells_name, int index, |
Grant Likely | 15c9a0a | 2011-12-12 09:25:57 -0700 | [diff] [blame] | 372 | struct of_phandle_args *out_args); |
Stephen Boyd | bd6f2fd | 2018-01-30 18:36:16 -0800 | [diff] [blame] | 373 | extern int of_parse_phandle_with_args_map(const struct device_node *np, |
| 374 | const char *list_name, const char *stem_name, int index, |
| 375 | struct of_phandle_args *out_args); |
Stephen Warren | 035fd94 | 2013-08-14 15:27:10 -0600 | [diff] [blame] | 376 | extern int of_parse_phandle_with_fixed_args(const struct device_node *np, |
| 377 | const char *list_name, int cells_count, int index, |
| 378 | struct of_phandle_args *out_args); |
Grant Likely | bd69f73 | 2013-02-10 22:57:21 +0000 | [diff] [blame] | 379 | extern int of_count_phandle_with_args(const struct device_node *np, |
| 380 | const char *list_name, const char *cells_name); |
Stephen Rothwell | 76c1ce7 | 2007-05-01 16:19:07 +1000 | [diff] [blame] | 381 | |
Joerg Roedel | 74e1fbb | 2016-04-04 17:49:17 +0200 | [diff] [blame] | 382 | /* phandle iterator functions */ |
| 383 | extern int of_phandle_iterator_init(struct of_phandle_iterator *it, |
| 384 | const struct device_node *np, |
| 385 | const char *list_name, |
| 386 | const char *cells_name, |
| 387 | int cell_count); |
| 388 | |
Joerg Roedel | cd209b4 | 2016-04-04 17:49:18 +0200 | [diff] [blame] | 389 | extern int of_phandle_iterator_next(struct of_phandle_iterator *it); |
Joerg Roedel | abdaa77 | 2016-04-04 17:49:21 +0200 | [diff] [blame] | 390 | extern int of_phandle_iterator_args(struct of_phandle_iterator *it, |
| 391 | uint32_t *args, |
| 392 | int size); |
Joerg Roedel | cd209b4 | 2016-04-04 17:49:18 +0200 | [diff] [blame] | 393 | |
Shawn Guo | 611cad7 | 2011-08-15 15:28:14 +0800 | [diff] [blame] | 394 | extern void of_alias_scan(void * (*dt_alloc)(u64 size, u64 align)); |
| 395 | extern int of_alias_get_id(struct device_node *np, const char *stem); |
Wolfram Sang | 351d224 | 2015-03-12 17:17:58 +0100 | [diff] [blame] | 396 | extern int of_alias_get_highest_id(const char *stem); |
Shawn Guo | 611cad7 | 2011-08-15 15:28:14 +0800 | [diff] [blame] | 397 | |
Grant Likely | 21b082e | 2010-02-14 07:13:38 -0700 | [diff] [blame] | 398 | extern int of_machine_is_compatible(const char *compat); |
| 399 | |
Nathan Fontenot | 79d1c71 | 2012-10-02 16:58:46 +0000 | [diff] [blame] | 400 | extern int of_add_property(struct device_node *np, struct property *prop); |
| 401 | extern int of_remove_property(struct device_node *np, struct property *prop); |
| 402 | extern int of_update_property(struct device_node *np, struct property *newprop); |
Grant Likely | 21b082e | 2010-02-14 07:13:38 -0700 | [diff] [blame] | 403 | |
Grant Likely | fcdeb7f | 2010-01-29 05:04:33 -0700 | [diff] [blame] | 404 | /* For updating the device tree at runtime */ |
Nathan Fontenot | 1cf3d8b | 2012-10-02 16:57:57 +0000 | [diff] [blame] | 405 | #define OF_RECONFIG_ATTACH_NODE 0x0001 |
| 406 | #define OF_RECONFIG_DETACH_NODE 0x0002 |
| 407 | #define OF_RECONFIG_ADD_PROPERTY 0x0003 |
| 408 | #define OF_RECONFIG_REMOVE_PROPERTY 0x0004 |
| 409 | #define OF_RECONFIG_UPDATE_PROPERTY 0x0005 |
| 410 | |
Nathan Fontenot | 1cf3d8b | 2012-10-02 16:57:57 +0000 | [diff] [blame] | 411 | extern int of_attach_node(struct device_node *); |
| 412 | extern int of_detach_node(struct device_node *); |
Grant Likely | fcdeb7f | 2010-01-29 05:04:33 -0700 | [diff] [blame] | 413 | |
Ben Dooks | 3a1e362 | 2011-08-03 10:11:42 +0100 | [diff] [blame] | 414 | #define of_match_ptr(_ptr) (_ptr) |
Stephen Warren | c541adc | 2012-04-04 09:27:46 -0600 | [diff] [blame] | 415 | |
Richard Fitzgerald | a67e947 | 2016-09-12 14:01:29 +0100 | [diff] [blame] | 416 | /** |
| 417 | * of_property_read_u8_array - Find and read an array of u8 from a property. |
| 418 | * |
| 419 | * @np: device node from which the property value is to be read. |
| 420 | * @propname: name of the property to be searched. |
| 421 | * @out_values: pointer to return value, modified only if return value is 0. |
| 422 | * @sz: number of array elements to read |
| 423 | * |
| 424 | * Search for a property in a device node and read 8-bit value(s) from |
| 425 | * it. Returns 0 on success, -EINVAL if the property does not exist, |
| 426 | * -ENODATA if property does not have a value, and -EOVERFLOW if the |
| 427 | * property data isn't large enough. |
| 428 | * |
| 429 | * dts entry of array should be like: |
| 430 | * property = /bits/ 8 <0x50 0x60 0x70>; |
| 431 | * |
| 432 | * The out_values is modified only if a valid u8 value can be decoded. |
| 433 | */ |
| 434 | static inline int of_property_read_u8_array(const struct device_node *np, |
| 435 | const char *propname, |
| 436 | u8 *out_values, size_t sz) |
| 437 | { |
| 438 | int ret = of_property_read_variable_u8_array(np, propname, out_values, |
| 439 | sz, 0); |
| 440 | if (ret >= 0) |
| 441 | return 0; |
| 442 | else |
| 443 | return ret; |
| 444 | } |
| 445 | |
| 446 | /** |
| 447 | * of_property_read_u16_array - Find and read an array of u16 from a property. |
| 448 | * |
| 449 | * @np: device node from which the property value is to be read. |
| 450 | * @propname: name of the property to be searched. |
| 451 | * @out_values: pointer to return value, modified only if return value is 0. |
| 452 | * @sz: number of array elements to read |
| 453 | * |
| 454 | * Search for a property in a device node and read 16-bit value(s) from |
| 455 | * it. Returns 0 on success, -EINVAL if the property does not exist, |
| 456 | * -ENODATA if property does not have a value, and -EOVERFLOW if the |
| 457 | * property data isn't large enough. |
| 458 | * |
| 459 | * dts entry of array should be like: |
| 460 | * property = /bits/ 16 <0x5000 0x6000 0x7000>; |
| 461 | * |
| 462 | * The out_values is modified only if a valid u16 value can be decoded. |
| 463 | */ |
| 464 | static inline int of_property_read_u16_array(const struct device_node *np, |
| 465 | const char *propname, |
| 466 | u16 *out_values, size_t sz) |
| 467 | { |
| 468 | int ret = of_property_read_variable_u16_array(np, propname, out_values, |
| 469 | sz, 0); |
| 470 | if (ret >= 0) |
| 471 | return 0; |
| 472 | else |
| 473 | return ret; |
| 474 | } |
| 475 | |
| 476 | /** |
| 477 | * of_property_read_u32_array - Find and read an array of 32 bit integers |
| 478 | * from a property. |
| 479 | * |
| 480 | * @np: device node from which the property value is to be read. |
| 481 | * @propname: name of the property to be searched. |
| 482 | * @out_values: pointer to return value, modified only if return value is 0. |
| 483 | * @sz: number of array elements to read |
| 484 | * |
| 485 | * Search for a property in a device node and read 32-bit value(s) from |
| 486 | * it. Returns 0 on success, -EINVAL if the property does not exist, |
| 487 | * -ENODATA if property does not have a value, and -EOVERFLOW if the |
| 488 | * property data isn't large enough. |
| 489 | * |
| 490 | * The out_values is modified only if a valid u32 value can be decoded. |
| 491 | */ |
| 492 | static inline int of_property_read_u32_array(const struct device_node *np, |
| 493 | const char *propname, |
| 494 | u32 *out_values, size_t sz) |
| 495 | { |
| 496 | int ret = of_property_read_variable_u32_array(np, propname, out_values, |
| 497 | sz, 0); |
| 498 | if (ret >= 0) |
| 499 | return 0; |
| 500 | else |
| 501 | return ret; |
| 502 | } |
| 503 | |
| 504 | /** |
| 505 | * of_property_read_u64_array - Find and read an array of 64 bit integers |
| 506 | * from a property. |
| 507 | * |
| 508 | * @np: device node from which the property value is to be read. |
| 509 | * @propname: name of the property to be searched. |
| 510 | * @out_values: pointer to return value, modified only if return value is 0. |
| 511 | * @sz: number of array elements to read |
| 512 | * |
| 513 | * Search for a property in a device node and read 64-bit value(s) from |
| 514 | * it. Returns 0 on success, -EINVAL if the property does not exist, |
| 515 | * -ENODATA if property does not have a value, and -EOVERFLOW if the |
| 516 | * property data isn't large enough. |
| 517 | * |
| 518 | * The out_values is modified only if a valid u64 value can be decoded. |
| 519 | */ |
| 520 | static inline int of_property_read_u64_array(const struct device_node *np, |
| 521 | const char *propname, |
| 522 | u64 *out_values, size_t sz) |
| 523 | { |
| 524 | int ret = of_property_read_variable_u64_array(np, propname, out_values, |
| 525 | sz, 0); |
| 526 | if (ret >= 0) |
| 527 | return 0; |
| 528 | else |
| 529 | return ret; |
| 530 | } |
| 531 | |
Stephen Warren | c541adc | 2012-04-04 09:27:46 -0600 | [diff] [blame] | 532 | /* |
| 533 | * struct property *prop; |
| 534 | * const __be32 *p; |
| 535 | * u32 u; |
| 536 | * |
| 537 | * of_property_for_each_u32(np, "propname", prop, p, u) |
| 538 | * printk("U32 value: %x\n", u); |
| 539 | */ |
| 540 | const __be32 *of_prop_next_u32(struct property *prop, const __be32 *cur, |
| 541 | u32 *pu); |
Stephen Warren | c541adc | 2012-04-04 09:27:46 -0600 | [diff] [blame] | 542 | /* |
| 543 | * struct property *prop; |
| 544 | * const char *s; |
| 545 | * |
| 546 | * of_property_for_each_string(np, "propname", prop, s) |
| 547 | * printk("String value: %s\n", s); |
| 548 | */ |
| 549 | const char *of_prop_next_string(struct property *prop, const char *cur); |
Stephen Warren | c541adc | 2012-04-04 09:27:46 -0600 | [diff] [blame] | 550 | |
Grant Likely | 3482f2c | 2014-03-27 17:18:55 -0700 | [diff] [blame] | 551 | bool of_console_check(struct device_node *dn, char *name, int index); |
Sascha Hauer | 5c19e95 | 2013-08-05 14:40:44 +0200 | [diff] [blame] | 552 | |
Suzuki K Poulose | a0e71cd | 2018-01-02 11:25:27 +0000 | [diff] [blame] | 553 | extern int of_cpu_node_to_id(struct device_node *np); |
| 554 | |
Shawn Guo | b98c023 | 2011-07-08 16:27:33 +0800 | [diff] [blame] | 555 | #else /* CONFIG_OF */ |
Sebastian Andrzej Siewior | 3bcbaf6 | 2011-02-22 21:07:46 +0100 | [diff] [blame] | 556 | |
Sudeep Holla | 194ec93 | 2015-05-14 15:28:24 +0100 | [diff] [blame] | 557 | static inline void of_core_init(void) |
| 558 | { |
| 559 | } |
| 560 | |
Sakari Ailus | d20dc14 | 2017-05-24 17:53:55 +0300 | [diff] [blame] | 561 | static inline bool is_of_node(const struct fwnode_handle *fwnode) |
Rafael J. Wysocki | 8a0662d | 2014-11-04 14:03:59 +0100 | [diff] [blame] | 562 | { |
| 563 | return false; |
| 564 | } |
| 565 | |
Sakari Ailus | d20dc14 | 2017-05-24 17:53:55 +0300 | [diff] [blame] | 566 | static inline struct device_node *to_of_node(const struct fwnode_handle *fwnode) |
Rafael J. Wysocki | 8a0662d | 2014-11-04 14:03:59 +0100 | [diff] [blame] | 567 | { |
| 568 | return NULL; |
| 569 | } |
| 570 | |
Rob Herring | f42b0e18 | 2018-08-27 07:50:47 -0500 | [diff] [blame] | 571 | static inline bool of_node_name_eq(const struct device_node *np, const char *name) |
| 572 | { |
| 573 | return false; |
| 574 | } |
| 575 | |
| 576 | static inline bool of_node_name_prefix(const struct device_node *np, const char *prefix) |
| 577 | { |
| 578 | return false; |
| 579 | } |
| 580 | |
Stephen Rothwell | 4c358e1 | 2014-05-15 14:44:30 +1000 | [diff] [blame] | 581 | static inline const char* of_node_full_name(const struct device_node *np) |
Grant Likely | 74a7f08 | 2012-06-15 11:50:25 -0600 | [diff] [blame] | 582 | { |
| 583 | return "<no-node>"; |
| 584 | } |
| 585 | |
Peter Ujfalusi | 1cc44f4 | 2012-09-10 13:46:24 +0300 | [diff] [blame] | 586 | static inline struct device_node *of_find_node_by_name(struct device_node *from, |
| 587 | const char *name) |
| 588 | { |
| 589 | return NULL; |
| 590 | } |
| 591 | |
Rob Herring | 662372e | 2014-02-03 08:53:44 -0600 | [diff] [blame] | 592 | static inline struct device_node *of_find_node_by_type(struct device_node *from, |
| 593 | const char *type) |
| 594 | { |
| 595 | return NULL; |
| 596 | } |
| 597 | |
| 598 | static inline struct device_node *of_find_matching_node_and_match( |
| 599 | struct device_node *from, |
| 600 | const struct of_device_id *matches, |
| 601 | const struct of_device_id **match) |
| 602 | { |
| 603 | return NULL; |
| 604 | } |
| 605 | |
Alexander Shiyan | 20cd477 | 2014-04-16 10:49:20 +0400 | [diff] [blame] | 606 | static inline struct device_node *of_find_node_by_path(const char *path) |
| 607 | { |
| 608 | return NULL; |
| 609 | } |
| 610 | |
Leif Lindholm | 75c28c0 | 2014-11-28 11:34:28 +0000 | [diff] [blame] | 611 | static inline struct device_node *of_find_node_opts_by_path(const char *path, |
| 612 | const char **opts) |
| 613 | { |
| 614 | return NULL; |
| 615 | } |
| 616 | |
Suman Anna | ce16b9d | 2015-06-17 11:53:53 -0500 | [diff] [blame] | 617 | static inline struct device_node *of_find_node_by_phandle(phandle handle) |
| 618 | { |
| 619 | return NULL; |
| 620 | } |
| 621 | |
Alexander Shiyan | 066ec1d | 2013-04-09 19:47:40 +0400 | [diff] [blame] | 622 | static inline struct device_node *of_get_parent(const struct device_node *node) |
| 623 | { |
| 624 | return NULL; |
| 625 | } |
| 626 | |
Rob Herring | 662372e | 2014-02-03 08:53:44 -0600 | [diff] [blame] | 627 | static inline struct device_node *of_get_next_child( |
| 628 | const struct device_node *node, struct device_node *prev) |
| 629 | { |
| 630 | return NULL; |
| 631 | } |
| 632 | |
| 633 | static inline struct device_node *of_get_next_available_child( |
| 634 | const struct device_node *node, struct device_node *prev) |
| 635 | { |
| 636 | return NULL; |
| 637 | } |
| 638 | |
| 639 | static inline struct device_node *of_find_node_with_property( |
| 640 | struct device_node *from, const char *prop_name) |
| 641 | { |
| 642 | return NULL; |
| 643 | } |
| 644 | |
Sakari Ailus | 6783183 | 2017-03-28 10:52:23 +0300 | [diff] [blame] | 645 | #define of_fwnode_handle(node) NULL |
| 646 | |
Sebastian Andrzej Siewior | 3bcbaf6 | 2011-02-22 21:07:46 +0100 | [diff] [blame] | 647 | static inline bool of_have_populated_dt(void) |
| 648 | { |
| 649 | return false; |
| 650 | } |
| 651 | |
Johan Hovold | 36156f9 | 2018-08-27 10:21:45 +0200 | [diff] [blame] | 652 | static inline struct device_node *of_get_compatible_child(const struct device_node *parent, |
| 653 | const char *compatible) |
| 654 | { |
| 655 | return NULL; |
| 656 | } |
| 657 | |
Olof Johansson | 25c040c | 2012-10-07 10:40:54 -0700 | [diff] [blame] | 658 | static inline struct device_node *of_get_child_by_name( |
| 659 | const struct device_node *node, |
| 660 | const char *name) |
| 661 | { |
| 662 | return NULL; |
| 663 | } |
| 664 | |
Rajendra Nayak | 36a0904 | 2011-10-10 21:49:35 +0530 | [diff] [blame] | 665 | static inline int of_device_is_compatible(const struct device_node *device, |
| 666 | const char *name) |
| 667 | { |
| 668 | return 0; |
| 669 | } |
| 670 | |
Geert Uytterhoeven | 3bc1630 | 2017-04-25 19:38:48 +0200 | [diff] [blame] | 671 | static inline int of_device_compatible_match(struct device_node *device, |
| 672 | const char *const *compat) |
| 673 | { |
| 674 | return 0; |
| 675 | } |
| 676 | |
Kevin Cernekee | 53a4ab9 | 2014-11-12 12:54:01 -0800 | [diff] [blame] | 677 | static inline bool of_device_is_available(const struct device_node *device) |
Rob Herring | d719569 | 2013-03-20 16:56:18 -0500 | [diff] [blame] | 678 | { |
Kevin Cernekee | 53a4ab9 | 2014-11-12 12:54:01 -0800 | [diff] [blame] | 679 | return false; |
Rob Herring | d719569 | 2013-03-20 16:56:18 -0500 | [diff] [blame] | 680 | } |
| 681 | |
Kevin Cernekee | 37786c7 | 2015-04-09 13:05:14 -0700 | [diff] [blame] | 682 | static inline bool of_device_is_big_endian(const struct device_node *device) |
| 683 | { |
| 684 | return false; |
| 685 | } |
| 686 | |
Stephen Warren | aba3dff | 2011-09-21 13:23:10 -0600 | [diff] [blame] | 687 | static inline struct property *of_find_property(const struct device_node *np, |
| 688 | const char *name, |
| 689 | int *lenp) |
| 690 | { |
| 691 | return NULL; |
| 692 | } |
| 693 | |
Shawn Guo | 2261cc6 | 2012-02-15 10:47:42 -0800 | [diff] [blame] | 694 | static inline struct device_node *of_find_compatible_node( |
| 695 | struct device_node *from, |
| 696 | const char *type, |
| 697 | const char *compat) |
| 698 | { |
| 699 | return NULL; |
| 700 | } |
| 701 | |
Heiko Stuebner | ad54a0c | 2014-02-12 01:00:34 +0100 | [diff] [blame] | 702 | static inline int of_property_count_elems_of_size(const struct device_node *np, |
| 703 | const char *propname, int elem_size) |
| 704 | { |
| 705 | return -ENOSYS; |
| 706 | } |
| 707 | |
Viresh Kumar | be19324 | 2012-11-20 10:15:19 +0530 | [diff] [blame] | 708 | static inline int of_property_read_u8_array(const struct device_node *np, |
| 709 | const char *propname, u8 *out_values, size_t sz) |
| 710 | { |
| 711 | return -ENOSYS; |
| 712 | } |
| 713 | |
| 714 | static inline int of_property_read_u16_array(const struct device_node *np, |
| 715 | const char *propname, u16 *out_values, size_t sz) |
| 716 | { |
| 717 | return -ENOSYS; |
| 718 | } |
| 719 | |
Shawn Guo | b98c023 | 2011-07-08 16:27:33 +0800 | [diff] [blame] | 720 | static inline int of_property_read_u32_array(const struct device_node *np, |
Jamie Iles | aac285c | 2011-08-02 15:45:07 +0100 | [diff] [blame] | 721 | const char *propname, |
| 722 | u32 *out_values, size_t sz) |
Shawn Guo | b98c023 | 2011-07-08 16:27:33 +0800 | [diff] [blame] | 723 | { |
| 724 | return -ENOSYS; |
| 725 | } |
| 726 | |
Rafael J. Wysocki | b31384f | 2014-11-04 01:28:56 +0100 | [diff] [blame] | 727 | static inline int of_property_read_u64_array(const struct device_node *np, |
| 728 | const char *propname, |
| 729 | u64 *out_values, size_t sz) |
| 730 | { |
| 731 | return -ENOSYS; |
| 732 | } |
| 733 | |
Arnd Bergmann | 96c623e | 2017-11-06 14:26:10 +0100 | [diff] [blame] | 734 | static inline int of_property_read_u32_index(const struct device_node *np, |
| 735 | const char *propname, u32 index, u32 *out_value) |
Shawn Guo | b98c023 | 2011-07-08 16:27:33 +0800 | [diff] [blame] | 736 | { |
| 737 | return -ENOSYS; |
| 738 | } |
| 739 | |
Arnd Bergmann | 96c623e | 2017-11-06 14:26:10 +0100 | [diff] [blame] | 740 | static inline int of_property_read_u64_index(const struct device_node *np, |
| 741 | const char *propname, u32 index, u64 *out_value) |
Benoit Cousson | 4fcd15a | 2011-09-27 17:45:43 +0200 | [diff] [blame] | 742 | { |
| 743 | return -ENOSYS; |
| 744 | } |
| 745 | |
Stephen Warren | 89272b8 | 2011-08-05 16:50:30 -0600 | [diff] [blame] | 746 | static inline const void *of_get_property(const struct device_node *node, |
| 747 | const char *name, |
| 748 | int *lenp) |
| 749 | { |
| 750 | return NULL; |
| 751 | } |
| 752 | |
Sudeep KarkadaNagesha | 183912d | 2013-08-15 14:01:40 +0100 | [diff] [blame] | 753 | static inline struct device_node *of_get_cpu_node(int cpu, |
| 754 | unsigned int *thread) |
| 755 | { |
| 756 | return NULL; |
| 757 | } |
| 758 | |
Rob Herring | f1f207e | 2018-08-22 15:04:40 -0500 | [diff] [blame^] | 759 | static inline struct device_node *of_get_next_cpu_node(struct device_node *prev) |
| 760 | { |
| 761 | return NULL; |
| 762 | } |
| 763 | |
Arnd Bergmann | 8a1ac5d | 2017-10-13 15:57:40 -0700 | [diff] [blame] | 764 | static inline int of_n_addr_cells(struct device_node *np) |
| 765 | { |
| 766 | return 0; |
| 767 | |
| 768 | } |
| 769 | static inline int of_n_size_cells(struct device_node *np) |
| 770 | { |
| 771 | return 0; |
| 772 | } |
| 773 | |
Arnd Bergmann | 96c623e | 2017-11-06 14:26:10 +0100 | [diff] [blame] | 774 | static inline int of_property_read_variable_u8_array(const struct device_node *np, |
| 775 | const char *propname, u8 *out_values, |
| 776 | size_t sz_min, size_t sz_max) |
| 777 | { |
| 778 | return -ENOSYS; |
| 779 | } |
| 780 | |
| 781 | static inline int of_property_read_variable_u16_array(const struct device_node *np, |
| 782 | const char *propname, u16 *out_values, |
| 783 | size_t sz_min, size_t sz_max) |
| 784 | { |
| 785 | return -ENOSYS; |
| 786 | } |
| 787 | |
| 788 | static inline int of_property_read_variable_u32_array(const struct device_node *np, |
| 789 | const char *propname, |
| 790 | u32 *out_values, |
| 791 | size_t sz_min, |
| 792 | size_t sz_max) |
| 793 | { |
| 794 | return -ENOSYS; |
| 795 | } |
| 796 | |
Jamie Iles | 4cd7f7a | 2011-09-14 20:49:59 +0100 | [diff] [blame] | 797 | static inline int of_property_read_u64(const struct device_node *np, |
| 798 | const char *propname, u64 *out_value) |
| 799 | { |
| 800 | return -ENOSYS; |
| 801 | } |
| 802 | |
Arnd Bergmann | 96c623e | 2017-11-06 14:26:10 +0100 | [diff] [blame] | 803 | static inline int of_property_read_variable_u64_array(const struct device_node *np, |
| 804 | const char *propname, |
| 805 | u64 *out_values, |
| 806 | size_t sz_min, |
| 807 | size_t sz_max) |
| 808 | { |
| 809 | return -ENOSYS; |
| 810 | } |
| 811 | |
| 812 | static inline int of_property_read_string(const struct device_node *np, |
| 813 | const char *propname, |
| 814 | const char **out_string) |
| 815 | { |
| 816 | return -ENOSYS; |
| 817 | } |
| 818 | |
David Rivshin | fe99c70 | 2016-03-02 16:35:51 -0500 | [diff] [blame] | 819 | static inline int of_property_match_string(const struct device_node *np, |
Thierry Reding | bd3d550 | 2012-04-13 16:18:34 +0200 | [diff] [blame] | 820 | const char *propname, |
| 821 | const char *string) |
| 822 | { |
| 823 | return -ENOSYS; |
| 824 | } |
| 825 | |
Arnd Bergmann | 96c623e | 2017-11-06 14:26:10 +0100 | [diff] [blame] | 826 | static inline int of_property_read_string_helper(const struct device_node *np, |
| 827 | const char *propname, |
| 828 | const char **out_strs, size_t sz, int index) |
| 829 | { |
| 830 | return -ENOSYS; |
| 831 | } |
| 832 | |
Steffen Trumtrar | b8fbdc4 | 2012-11-22 12:16:43 +0100 | [diff] [blame] | 833 | static inline struct device_node *of_parse_phandle(const struct device_node *np, |
Rajendra Nayak | 36a0904 | 2011-10-10 21:49:35 +0530 | [diff] [blame] | 834 | const char *phandle_name, |
| 835 | int index) |
| 836 | { |
| 837 | return NULL; |
| 838 | } |
| 839 | |
Kuninori Morimoto | e93aeea | 2016-05-25 01:15:04 +0000 | [diff] [blame] | 840 | static inline int of_parse_phandle_with_args(const struct device_node *np, |
Thierry Reding | e05e507 | 2012-04-13 16:19:21 +0200 | [diff] [blame] | 841 | const char *list_name, |
| 842 | const char *cells_name, |
| 843 | int index, |
| 844 | struct of_phandle_args *out_args) |
| 845 | { |
| 846 | return -ENOSYS; |
| 847 | } |
| 848 | |
Stephen Boyd | bd6f2fd | 2018-01-30 18:36:16 -0800 | [diff] [blame] | 849 | static inline int of_parse_phandle_with_args_map(const struct device_node *np, |
| 850 | const char *list_name, |
| 851 | const char *stem_name, |
| 852 | int index, |
| 853 | struct of_phandle_args *out_args) |
| 854 | { |
| 855 | return -ENOSYS; |
| 856 | } |
| 857 | |
Stephen Warren | 035fd94 | 2013-08-14 15:27:10 -0600 | [diff] [blame] | 858 | static inline int of_parse_phandle_with_fixed_args(const struct device_node *np, |
| 859 | const char *list_name, int cells_count, int index, |
| 860 | struct of_phandle_args *out_args) |
| 861 | { |
| 862 | return -ENOSYS; |
| 863 | } |
| 864 | |
Grant Likely | bd69f73 | 2013-02-10 22:57:21 +0000 | [diff] [blame] | 865 | static inline int of_count_phandle_with_args(struct device_node *np, |
| 866 | const char *list_name, |
| 867 | const char *cells_name) |
| 868 | { |
| 869 | return -ENOSYS; |
| 870 | } |
| 871 | |
Joerg Roedel | 74e1fbb | 2016-04-04 17:49:17 +0200 | [diff] [blame] | 872 | static inline int of_phandle_iterator_init(struct of_phandle_iterator *it, |
| 873 | const struct device_node *np, |
| 874 | const char *list_name, |
| 875 | const char *cells_name, |
| 876 | int cell_count) |
| 877 | { |
| 878 | return -ENOSYS; |
| 879 | } |
| 880 | |
Joerg Roedel | cd209b4 | 2016-04-04 17:49:18 +0200 | [diff] [blame] | 881 | static inline int of_phandle_iterator_next(struct of_phandle_iterator *it) |
| 882 | { |
| 883 | return -ENOSYS; |
| 884 | } |
| 885 | |
Joerg Roedel | abdaa77 | 2016-04-04 17:49:21 +0200 | [diff] [blame] | 886 | static inline int of_phandle_iterator_args(struct of_phandle_iterator *it, |
| 887 | uint32_t *args, |
| 888 | int size) |
| 889 | { |
| 890 | return 0; |
| 891 | } |
| 892 | |
Nicolas Ferre | ed5f886 | 2011-10-27 11:07:28 +0200 | [diff] [blame] | 893 | static inline int of_alias_get_id(struct device_node *np, const char *stem) |
| 894 | { |
| 895 | return -ENOSYS; |
| 896 | } |
| 897 | |
Wolfram Sang | 351d224 | 2015-03-12 17:17:58 +0100 | [diff] [blame] | 898 | static inline int of_alias_get_highest_id(const char *stem) |
| 899 | { |
| 900 | return -ENOSYS; |
| 901 | } |
| 902 | |
Stephen Warren | 50e07f8 | 2011-10-25 14:01:26 +0200 | [diff] [blame] | 903 | static inline int of_machine_is_compatible(const char *compat) |
| 904 | { |
| 905 | return 0; |
| 906 | } |
| 907 | |
Grant Likely | 3482f2c | 2014-03-27 17:18:55 -0700 | [diff] [blame] | 908 | static inline bool of_console_check(const struct device_node *dn, const char *name, int index) |
Sascha Hauer | 5c19e95 | 2013-08-05 14:40:44 +0200 | [diff] [blame] | 909 | { |
Grant Likely | 3482f2c | 2014-03-27 17:18:55 -0700 | [diff] [blame] | 910 | return false; |
Sascha Hauer | 5c19e95 | 2013-08-05 14:40:44 +0200 | [diff] [blame] | 911 | } |
| 912 | |
Sebastian Andrzej Siewior | 2adfffa | 2013-06-17 16:48:13 +0200 | [diff] [blame] | 913 | static inline const __be32 *of_prop_next_u32(struct property *prop, |
| 914 | const __be32 *cur, u32 *pu) |
| 915 | { |
| 916 | return NULL; |
| 917 | } |
| 918 | |
| 919 | static inline const char *of_prop_next_string(struct property *prop, |
| 920 | const char *cur) |
| 921 | { |
| 922 | return NULL; |
| 923 | } |
| 924 | |
Pantelis Antoniou | 0384e8c | 2015-01-21 19:05:57 +0200 | [diff] [blame] | 925 | static inline int of_node_check_flag(struct device_node *n, unsigned long flag) |
| 926 | { |
| 927 | return 0; |
| 928 | } |
| 929 | |
| 930 | static inline int of_node_test_and_set_flag(struct device_node *n, |
| 931 | unsigned long flag) |
| 932 | { |
| 933 | return 0; |
| 934 | } |
| 935 | |
| 936 | static inline void of_node_set_flag(struct device_node *n, unsigned long flag) |
| 937 | { |
| 938 | } |
| 939 | |
| 940 | static inline void of_node_clear_flag(struct device_node *n, unsigned long flag) |
| 941 | { |
| 942 | } |
| 943 | |
| 944 | static inline int of_property_check_flag(struct property *p, unsigned long flag) |
| 945 | { |
| 946 | return 0; |
| 947 | } |
| 948 | |
| 949 | static inline void of_property_set_flag(struct property *p, unsigned long flag) |
| 950 | { |
| 951 | } |
| 952 | |
| 953 | static inline void of_property_clear_flag(struct property *p, unsigned long flag) |
| 954 | { |
| 955 | } |
| 956 | |
Suzuki K Poulose | a0e71cd | 2018-01-02 11:25:27 +0000 | [diff] [blame] | 957 | static inline int of_cpu_node_to_id(struct device_node *np) |
| 958 | { |
| 959 | return -ENODEV; |
| 960 | } |
| 961 | |
Ben Dooks | 3a1e362 | 2011-08-03 10:11:42 +0100 | [diff] [blame] | 962 | #define of_match_ptr(_ptr) NULL |
Nicolas Ferre | 5762c20 | 2011-10-24 11:53:32 +0200 | [diff] [blame] | 963 | #define of_match_node(_matches, _node) NULL |
Jeremy Kerr | 9dfbf20 | 2010-02-14 07:13:43 -0700 | [diff] [blame] | 964 | #endif /* CONFIG_OF */ |
Shawn Guo | b98c023 | 2011-07-08 16:27:33 +0800 | [diff] [blame] | 965 | |
Adam Thomson | 613e972 | 2016-06-21 18:50:20 +0100 | [diff] [blame] | 966 | /* Default string compare functions, Allow arch asm/prom.h to override */ |
| 967 | #if !defined(of_compat_cmp) |
| 968 | #define of_compat_cmp(s1, s2, l) strcasecmp((s1), (s2)) |
| 969 | #define of_prop_cmp(s1, s2) strcmp((s1), (s2)) |
| 970 | #define of_node_cmp(s1, s2) strcasecmp((s1), (s2)) |
| 971 | #endif |
| 972 | |
Rob Herring | 0c3f061 | 2013-09-17 10:42:50 -0500 | [diff] [blame] | 973 | #if defined(CONFIG_OF) && defined(CONFIG_NUMA) |
| 974 | extern int of_node_to_nid(struct device_node *np); |
| 975 | #else |
Konstantin Khlebnikov | c8fff7b | 2015-04-08 19:59:20 +0300 | [diff] [blame] | 976 | static inline int of_node_to_nid(struct device_node *device) |
| 977 | { |
| 978 | return NUMA_NO_NODE; |
| 979 | } |
Paul Mundt | 5ca4db6 | 2012-06-03 22:04:34 -0700 | [diff] [blame] | 980 | #endif |
| 981 | |
David Daney | 298535c | 2016-04-08 15:50:25 -0700 | [diff] [blame] | 982 | #ifdef CONFIG_OF_NUMA |
| 983 | extern int of_numa_init(void); |
| 984 | #else |
| 985 | static inline int of_numa_init(void) |
| 986 | { |
| 987 | return -ENOSYS; |
| 988 | } |
| 989 | #endif |
| 990 | |
Rob Herring | 662372e | 2014-02-03 08:53:44 -0600 | [diff] [blame] | 991 | static inline struct device_node *of_find_matching_node( |
| 992 | struct device_node *from, |
| 993 | const struct of_device_id *matches) |
| 994 | { |
| 995 | return of_find_matching_node_and_match(from, matches, NULL); |
| 996 | } |
| 997 | |
Rob Herring | 0413bed | 2018-08-28 15:10:48 -0500 | [diff] [blame] | 998 | static inline const char *of_node_get_device_type(const struct device_node *np) |
| 999 | { |
| 1000 | return of_get_property(np, "type", NULL); |
| 1001 | } |
| 1002 | |
| 1003 | static inline bool of_node_is_type(const struct device_node *np, const char *type) |
| 1004 | { |
| 1005 | const char *match = of_node_get_device_type(np); |
| 1006 | |
| 1007 | return np && match && type && !strcmp(match, type); |
| 1008 | } |
| 1009 | |
Jean-Christophe PLAGNIOL-VILLARD | fa4d34c | 2012-02-07 12:12:51 +0800 | [diff] [blame] | 1010 | /** |
Heiko Stuebner | ad54a0c | 2014-02-12 01:00:34 +0100 | [diff] [blame] | 1011 | * of_property_count_u8_elems - Count the number of u8 elements in a property |
| 1012 | * |
| 1013 | * @np: device node from which the property value is to be read. |
| 1014 | * @propname: name of the property to be searched. |
| 1015 | * |
| 1016 | * Search for a property in a device node and count the number of u8 elements |
| 1017 | * in it. Returns number of elements on sucess, -EINVAL if the property does |
| 1018 | * not exist or its length does not match a multiple of u8 and -ENODATA if the |
| 1019 | * property does not have a value. |
| 1020 | */ |
| 1021 | static inline int of_property_count_u8_elems(const struct device_node *np, |
| 1022 | const char *propname) |
| 1023 | { |
| 1024 | return of_property_count_elems_of_size(np, propname, sizeof(u8)); |
| 1025 | } |
| 1026 | |
| 1027 | /** |
| 1028 | * of_property_count_u16_elems - Count the number of u16 elements in a property |
| 1029 | * |
| 1030 | * @np: device node from which the property value is to be read. |
| 1031 | * @propname: name of the property to be searched. |
| 1032 | * |
| 1033 | * Search for a property in a device node and count the number of u16 elements |
| 1034 | * in it. Returns number of elements on sucess, -EINVAL if the property does |
| 1035 | * not exist or its length does not match a multiple of u16 and -ENODATA if the |
| 1036 | * property does not have a value. |
| 1037 | */ |
| 1038 | static inline int of_property_count_u16_elems(const struct device_node *np, |
| 1039 | const char *propname) |
| 1040 | { |
| 1041 | return of_property_count_elems_of_size(np, propname, sizeof(u16)); |
| 1042 | } |
| 1043 | |
| 1044 | /** |
| 1045 | * of_property_count_u32_elems - Count the number of u32 elements in a property |
| 1046 | * |
| 1047 | * @np: device node from which the property value is to be read. |
| 1048 | * @propname: name of the property to be searched. |
| 1049 | * |
| 1050 | * Search for a property in a device node and count the number of u32 elements |
| 1051 | * in it. Returns number of elements on sucess, -EINVAL if the property does |
| 1052 | * not exist or its length does not match a multiple of u32 and -ENODATA if the |
| 1053 | * property does not have a value. |
| 1054 | */ |
| 1055 | static inline int of_property_count_u32_elems(const struct device_node *np, |
| 1056 | const char *propname) |
| 1057 | { |
| 1058 | return of_property_count_elems_of_size(np, propname, sizeof(u32)); |
| 1059 | } |
| 1060 | |
| 1061 | /** |
| 1062 | * of_property_count_u64_elems - Count the number of u64 elements in a property |
| 1063 | * |
| 1064 | * @np: device node from which the property value is to be read. |
| 1065 | * @propname: name of the property to be searched. |
| 1066 | * |
| 1067 | * Search for a property in a device node and count the number of u64 elements |
| 1068 | * in it. Returns number of elements on sucess, -EINVAL if the property does |
| 1069 | * not exist or its length does not match a multiple of u64 and -ENODATA if the |
| 1070 | * property does not have a value. |
| 1071 | */ |
| 1072 | static inline int of_property_count_u64_elems(const struct device_node *np, |
| 1073 | const char *propname) |
| 1074 | { |
| 1075 | return of_property_count_elems_of_size(np, propname, sizeof(u64)); |
| 1076 | } |
| 1077 | |
Jean-Christophe PLAGNIOL-VILLARD | fa4d34c | 2012-02-07 12:12:51 +0800 | [diff] [blame] | 1078 | /** |
Grant Likely | a87fa1d | 2014-11-03 15:15:35 +0000 | [diff] [blame] | 1079 | * of_property_read_string_array() - Read an array of strings from a multiple |
| 1080 | * strings property. |
| 1081 | * @np: device node from which the property value is to be read. |
| 1082 | * @propname: name of the property to be searched. |
| 1083 | * @out_strs: output array of string pointers. |
| 1084 | * @sz: number of array elements to read. |
| 1085 | * |
| 1086 | * Search for a property in a device tree node and retrieve a list of |
| 1087 | * terminated string values (pointer to data, not a copy) in that property. |
| 1088 | * |
| 1089 | * If @out_strs is NULL, the number of strings in the property is returned. |
| 1090 | */ |
David Rivshin | fe99c70 | 2016-03-02 16:35:51 -0500 | [diff] [blame] | 1091 | static inline int of_property_read_string_array(const struct device_node *np, |
Grant Likely | a87fa1d | 2014-11-03 15:15:35 +0000 | [diff] [blame] | 1092 | const char *propname, const char **out_strs, |
| 1093 | size_t sz) |
| 1094 | { |
| 1095 | return of_property_read_string_helper(np, propname, out_strs, sz, 0); |
| 1096 | } |
| 1097 | |
| 1098 | /** |
| 1099 | * of_property_count_strings() - Find and return the number of strings from a |
| 1100 | * multiple strings property. |
| 1101 | * @np: device node from which the property value is to be read. |
| 1102 | * @propname: name of the property to be searched. |
| 1103 | * |
| 1104 | * Search for a property in a device tree node and retrieve the number of null |
| 1105 | * terminated string contain in it. Returns the number of strings on |
| 1106 | * success, -EINVAL if the property does not exist, -ENODATA if property |
| 1107 | * does not have a value, and -EILSEQ if the string is not null-terminated |
| 1108 | * within the length of the property data. |
| 1109 | */ |
David Rivshin | fe99c70 | 2016-03-02 16:35:51 -0500 | [diff] [blame] | 1110 | static inline int of_property_count_strings(const struct device_node *np, |
Grant Likely | a87fa1d | 2014-11-03 15:15:35 +0000 | [diff] [blame] | 1111 | const char *propname) |
| 1112 | { |
| 1113 | return of_property_read_string_helper(np, propname, NULL, 0, 0); |
| 1114 | } |
| 1115 | |
| 1116 | /** |
| 1117 | * of_property_read_string_index() - Find and read a string from a multiple |
| 1118 | * strings property. |
| 1119 | * @np: device node from which the property value is to be read. |
| 1120 | * @propname: name of the property to be searched. |
| 1121 | * @index: index of the string in the list of strings |
| 1122 | * @out_string: pointer to null terminated return string, modified only if |
| 1123 | * return value is 0. |
| 1124 | * |
| 1125 | * Search for a property in a device tree node and retrieve a null |
| 1126 | * terminated string value (pointer to data, not a copy) in the list of strings |
| 1127 | * contained in that property. |
| 1128 | * Returns 0 on success, -EINVAL if the property does not exist, -ENODATA if |
| 1129 | * property does not have a value, and -EILSEQ if the string is not |
| 1130 | * null-terminated within the length of the property data. |
| 1131 | * |
| 1132 | * The out_string pointer is modified only if a valid string can be decoded. |
| 1133 | */ |
David Rivshin | fe99c70 | 2016-03-02 16:35:51 -0500 | [diff] [blame] | 1134 | static inline int of_property_read_string_index(const struct device_node *np, |
Grant Likely | a87fa1d | 2014-11-03 15:15:35 +0000 | [diff] [blame] | 1135 | const char *propname, |
| 1136 | int index, const char **output) |
| 1137 | { |
| 1138 | int rc = of_property_read_string_helper(np, propname, output, 1, index); |
| 1139 | return rc < 0 ? rc : 0; |
| 1140 | } |
| 1141 | |
| 1142 | /** |
Jean-Christophe PLAGNIOL-VILLARD | fa4d34c | 2012-02-07 12:12:51 +0800 | [diff] [blame] | 1143 | * of_property_read_bool - Findfrom a property |
| 1144 | * @np: device node from which the property value is to be read. |
| 1145 | * @propname: name of the property to be searched. |
| 1146 | * |
| 1147 | * Search for a property in a device node. |
Geert Uytterhoeven | 31712c9 | 2015-05-04 19:42:19 +0200 | [diff] [blame] | 1148 | * Returns true if the property exists false otherwise. |
Jean-Christophe PLAGNIOL-VILLARD | fa4d34c | 2012-02-07 12:12:51 +0800 | [diff] [blame] | 1149 | */ |
| 1150 | static inline bool of_property_read_bool(const struct device_node *np, |
| 1151 | const char *propname) |
| 1152 | { |
| 1153 | struct property *prop = of_find_property(np, propname, NULL); |
| 1154 | |
| 1155 | return prop ? true : false; |
| 1156 | } |
| 1157 | |
Viresh Kumar | be19324 | 2012-11-20 10:15:19 +0530 | [diff] [blame] | 1158 | static inline int of_property_read_u8(const struct device_node *np, |
| 1159 | const char *propname, |
| 1160 | u8 *out_value) |
| 1161 | { |
| 1162 | return of_property_read_u8_array(np, propname, out_value, 1); |
| 1163 | } |
| 1164 | |
| 1165 | static inline int of_property_read_u16(const struct device_node *np, |
| 1166 | const char *propname, |
| 1167 | u16 *out_value) |
| 1168 | { |
| 1169 | return of_property_read_u16_array(np, propname, out_value, 1); |
| 1170 | } |
| 1171 | |
Shawn Guo | b98c023 | 2011-07-08 16:27:33 +0800 | [diff] [blame] | 1172 | static inline int of_property_read_u32(const struct device_node *np, |
Jamie Iles | aac285c | 2011-08-02 15:45:07 +0100 | [diff] [blame] | 1173 | const char *propname, |
Shawn Guo | b98c023 | 2011-07-08 16:27:33 +0800 | [diff] [blame] | 1174 | u32 *out_value) |
| 1175 | { |
| 1176 | return of_property_read_u32_array(np, propname, out_value, 1); |
| 1177 | } |
| 1178 | |
Sebastian Reichel | e7a00e4 | 2014-04-06 12:52:11 +0200 | [diff] [blame] | 1179 | static inline int of_property_read_s32(const struct device_node *np, |
| 1180 | const char *propname, |
| 1181 | s32 *out_value) |
| 1182 | { |
| 1183 | return of_property_read_u32(np, propname, (u32*) out_value); |
| 1184 | } |
| 1185 | |
Joerg Roedel | f623ce9 | 2016-04-04 17:49:20 +0200 | [diff] [blame] | 1186 | #define of_for_each_phandle(it, err, np, ln, cn, cc) \ |
| 1187 | for (of_phandle_iterator_init((it), (np), (ln), (cn), (cc)), \ |
| 1188 | err = of_phandle_iterator_next(it); \ |
| 1189 | err == 0; \ |
| 1190 | err = of_phandle_iterator_next(it)) |
| 1191 | |
Sebastian Andrzej Siewior | 2adfffa | 2013-06-17 16:48:13 +0200 | [diff] [blame] | 1192 | #define of_property_for_each_u32(np, propname, prop, p, u) \ |
| 1193 | for (prop = of_find_property(np, propname, NULL), \ |
| 1194 | p = of_prop_next_u32(prop, NULL, &u); \ |
| 1195 | p; \ |
| 1196 | p = of_prop_next_u32(prop, p, &u)) |
| 1197 | |
| 1198 | #define of_property_for_each_string(np, propname, prop, s) \ |
| 1199 | for (prop = of_find_property(np, propname, NULL), \ |
| 1200 | s = of_prop_next_string(prop, NULL); \ |
| 1201 | s; \ |
| 1202 | s = of_prop_next_string(prop, s)) |
| 1203 | |
Rob Herring | 662372e | 2014-02-03 08:53:44 -0600 | [diff] [blame] | 1204 | #define for_each_node_by_name(dn, name) \ |
| 1205 | for (dn = of_find_node_by_name(NULL, name); dn; \ |
| 1206 | dn = of_find_node_by_name(dn, name)) |
| 1207 | #define for_each_node_by_type(dn, type) \ |
| 1208 | for (dn = of_find_node_by_type(NULL, type); dn; \ |
| 1209 | dn = of_find_node_by_type(dn, type)) |
| 1210 | #define for_each_compatible_node(dn, type, compatible) \ |
| 1211 | for (dn = of_find_compatible_node(NULL, type, compatible); dn; \ |
| 1212 | dn = of_find_compatible_node(dn, type, compatible)) |
| 1213 | #define for_each_matching_node(dn, matches) \ |
| 1214 | for (dn = of_find_matching_node(NULL, matches); dn; \ |
| 1215 | dn = of_find_matching_node(dn, matches)) |
| 1216 | #define for_each_matching_node_and_match(dn, matches, match) \ |
| 1217 | for (dn = of_find_matching_node_and_match(NULL, matches, match); \ |
| 1218 | dn; dn = of_find_matching_node_and_match(dn, matches, match)) |
| 1219 | |
| 1220 | #define for_each_child_of_node(parent, child) \ |
| 1221 | for (child = of_get_next_child(parent, NULL); child != NULL; \ |
| 1222 | child = of_get_next_child(parent, child)) |
| 1223 | #define for_each_available_child_of_node(parent, child) \ |
| 1224 | for (child = of_get_next_available_child(parent, NULL); child != NULL; \ |
| 1225 | child = of_get_next_available_child(parent, child)) |
| 1226 | |
Rob Herring | f1f207e | 2018-08-22 15:04:40 -0500 | [diff] [blame^] | 1227 | #define for_each_of_cpu_node(cpu) \ |
| 1228 | for (cpu = of_get_next_cpu_node(NULL); cpu != NULL; \ |
| 1229 | cpu = of_get_next_cpu_node(cpu)) |
| 1230 | |
Rob Herring | 662372e | 2014-02-03 08:53:44 -0600 | [diff] [blame] | 1231 | #define for_each_node_with_property(dn, prop_name) \ |
| 1232 | for (dn = of_find_node_with_property(NULL, prop_name); dn; \ |
| 1233 | dn = of_find_node_with_property(dn, prop_name)) |
| 1234 | |
| 1235 | static inline int of_get_child_count(const struct device_node *np) |
| 1236 | { |
| 1237 | struct device_node *child; |
| 1238 | int num = 0; |
| 1239 | |
| 1240 | for_each_child_of_node(np, child) |
| 1241 | num++; |
| 1242 | |
| 1243 | return num; |
| 1244 | } |
| 1245 | |
| 1246 | static inline int of_get_available_child_count(const struct device_node *np) |
| 1247 | { |
| 1248 | struct device_node *child; |
| 1249 | int num = 0; |
| 1250 | |
| 1251 | for_each_available_child_of_node(np, child) |
| 1252 | num++; |
| 1253 | |
| 1254 | return num; |
| 1255 | } |
| 1256 | |
Masahiro Yamada | 71f50c6 | 2016-01-22 01:33:51 +0900 | [diff] [blame] | 1257 | #if defined(CONFIG_OF) && !defined(MODULE) |
Rob Herring | 54196cc | 2014-05-08 16:09:24 -0500 | [diff] [blame] | 1258 | #define _OF_DECLARE(table, name, compat, fn, fn_type) \ |
| 1259 | static const struct of_device_id __of_table_##name \ |
| 1260 | __used __section(__##table##_of_table) \ |
| 1261 | = { .compatible = compat, \ |
| 1262 | .data = (fn == (fn_type)NULL) ? fn : fn } |
| 1263 | #else |
Thierry Reding | 5f56358 | 2014-10-02 16:01:10 +0200 | [diff] [blame] | 1264 | #define _OF_DECLARE(table, name, compat, fn, fn_type) \ |
Rob Herring | 54196cc | 2014-05-08 16:09:24 -0500 | [diff] [blame] | 1265 | static const struct of_device_id __of_table_##name \ |
| 1266 | __attribute__((unused)) \ |
| 1267 | = { .compatible = compat, \ |
| 1268 | .data = (fn == (fn_type)NULL) ? fn : fn } |
| 1269 | #endif |
| 1270 | |
| 1271 | typedef int (*of_init_fn_2)(struct device_node *, struct device_node *); |
Daniel Lezcano | c35d929 | 2016-04-18 23:06:48 +0200 | [diff] [blame] | 1272 | typedef int (*of_init_fn_1_ret)(struct device_node *); |
Rob Herring | 54196cc | 2014-05-08 16:09:24 -0500 | [diff] [blame] | 1273 | typedef void (*of_init_fn_1)(struct device_node *); |
| 1274 | |
| 1275 | #define OF_DECLARE_1(table, name, compat, fn) \ |
| 1276 | _OF_DECLARE(table, name, compat, fn, of_init_fn_1) |
Daniel Lezcano | c35d929 | 2016-04-18 23:06:48 +0200 | [diff] [blame] | 1277 | #define OF_DECLARE_1_RET(table, name, compat, fn) \ |
| 1278 | _OF_DECLARE(table, name, compat, fn, of_init_fn_1_ret) |
Rob Herring | 54196cc | 2014-05-08 16:09:24 -0500 | [diff] [blame] | 1279 | #define OF_DECLARE_2(table, name, compat, fn) \ |
| 1280 | _OF_DECLARE(table, name, compat, fn, of_init_fn_2) |
| 1281 | |
Pantelis Antoniou | 201c910 | 2014-07-04 19:58:49 +0300 | [diff] [blame] | 1282 | /** |
| 1283 | * struct of_changeset_entry - Holds a changeset entry |
| 1284 | * |
| 1285 | * @node: list_head for the log list |
| 1286 | * @action: notifier action |
| 1287 | * @np: pointer to the device node affected |
| 1288 | * @prop: pointer to the property affected |
| 1289 | * @old_prop: hold a pointer to the original property |
| 1290 | * |
| 1291 | * Every modification of the device tree during a changeset |
| 1292 | * is held in a list of of_changeset_entry structures. |
| 1293 | * That way we can recover from a partial application, or we can |
| 1294 | * revert the changeset |
| 1295 | */ |
| 1296 | struct of_changeset_entry { |
| 1297 | struct list_head node; |
| 1298 | unsigned long action; |
| 1299 | struct device_node *np; |
| 1300 | struct property *prop; |
| 1301 | struct property *old_prop; |
| 1302 | }; |
| 1303 | |
| 1304 | /** |
| 1305 | * struct of_changeset - changeset tracker structure |
| 1306 | * |
| 1307 | * @entries: list_head for the changeset entries |
| 1308 | * |
| 1309 | * changesets are a convenient way to apply bulk changes to the |
| 1310 | * live tree. In case of an error, changes are rolled-back. |
| 1311 | * changesets live on after initial application, and if not |
| 1312 | * destroyed after use, they can be reverted in one single call. |
| 1313 | */ |
| 1314 | struct of_changeset { |
| 1315 | struct list_head entries; |
| 1316 | }; |
| 1317 | |
Pantelis Antoniou | b53a234 | 2014-10-28 22:33:53 +0200 | [diff] [blame] | 1318 | enum of_reconfig_change { |
| 1319 | OF_RECONFIG_NO_CHANGE = 0, |
| 1320 | OF_RECONFIG_CHANGE_ADD, |
| 1321 | OF_RECONFIG_CHANGE_REMOVE, |
| 1322 | }; |
| 1323 | |
Pantelis Antoniou | 201c910 | 2014-07-04 19:58:49 +0300 | [diff] [blame] | 1324 | #ifdef CONFIG_OF_DYNAMIC |
Grant Likely | f6892d1 | 2014-11-21 15:14:58 +0000 | [diff] [blame] | 1325 | extern int of_reconfig_notifier_register(struct notifier_block *); |
| 1326 | extern int of_reconfig_notifier_unregister(struct notifier_block *); |
Grant Likely | f5242e5 | 2014-11-24 17:58:01 +0000 | [diff] [blame] | 1327 | extern int of_reconfig_notify(unsigned long, struct of_reconfig_data *rd); |
| 1328 | extern int of_reconfig_get_state_change(unsigned long action, |
| 1329 | struct of_reconfig_data *arg); |
Grant Likely | f6892d1 | 2014-11-21 15:14:58 +0000 | [diff] [blame] | 1330 | |
Pantelis Antoniou | 201c910 | 2014-07-04 19:58:49 +0300 | [diff] [blame] | 1331 | extern void of_changeset_init(struct of_changeset *ocs); |
| 1332 | extern void of_changeset_destroy(struct of_changeset *ocs); |
| 1333 | extern int of_changeset_apply(struct of_changeset *ocs); |
| 1334 | extern int of_changeset_revert(struct of_changeset *ocs); |
| 1335 | extern int of_changeset_action(struct of_changeset *ocs, |
| 1336 | unsigned long action, struct device_node *np, |
| 1337 | struct property *prop); |
| 1338 | |
| 1339 | static inline int of_changeset_attach_node(struct of_changeset *ocs, |
| 1340 | struct device_node *np) |
| 1341 | { |
| 1342 | return of_changeset_action(ocs, OF_RECONFIG_ATTACH_NODE, np, NULL); |
| 1343 | } |
| 1344 | |
| 1345 | static inline int of_changeset_detach_node(struct of_changeset *ocs, |
| 1346 | struct device_node *np) |
| 1347 | { |
| 1348 | return of_changeset_action(ocs, OF_RECONFIG_DETACH_NODE, np, NULL); |
| 1349 | } |
| 1350 | |
| 1351 | static inline int of_changeset_add_property(struct of_changeset *ocs, |
| 1352 | struct device_node *np, struct property *prop) |
| 1353 | { |
| 1354 | return of_changeset_action(ocs, OF_RECONFIG_ADD_PROPERTY, np, prop); |
| 1355 | } |
| 1356 | |
| 1357 | static inline int of_changeset_remove_property(struct of_changeset *ocs, |
| 1358 | struct device_node *np, struct property *prop) |
| 1359 | { |
| 1360 | return of_changeset_action(ocs, OF_RECONFIG_REMOVE_PROPERTY, np, prop); |
| 1361 | } |
| 1362 | |
| 1363 | static inline int of_changeset_update_property(struct of_changeset *ocs, |
| 1364 | struct device_node *np, struct property *prop) |
| 1365 | { |
| 1366 | return of_changeset_action(ocs, OF_RECONFIG_UPDATE_PROPERTY, np, prop); |
| 1367 | } |
Grant Likely | f6892d1 | 2014-11-21 15:14:58 +0000 | [diff] [blame] | 1368 | #else /* CONFIG_OF_DYNAMIC */ |
| 1369 | static inline int of_reconfig_notifier_register(struct notifier_block *nb) |
| 1370 | { |
| 1371 | return -EINVAL; |
| 1372 | } |
| 1373 | static inline int of_reconfig_notifier_unregister(struct notifier_block *nb) |
| 1374 | { |
| 1375 | return -EINVAL; |
| 1376 | } |
Grant Likely | f5242e5 | 2014-11-24 17:58:01 +0000 | [diff] [blame] | 1377 | static inline int of_reconfig_notify(unsigned long action, |
| 1378 | struct of_reconfig_data *arg) |
Grant Likely | f6892d1 | 2014-11-21 15:14:58 +0000 | [diff] [blame] | 1379 | { |
| 1380 | return -EINVAL; |
| 1381 | } |
Grant Likely | f5242e5 | 2014-11-24 17:58:01 +0000 | [diff] [blame] | 1382 | static inline int of_reconfig_get_state_change(unsigned long action, |
| 1383 | struct of_reconfig_data *arg) |
Grant Likely | f6892d1 | 2014-11-21 15:14:58 +0000 | [diff] [blame] | 1384 | { |
| 1385 | return -EINVAL; |
| 1386 | } |
| 1387 | #endif /* CONFIG_OF_DYNAMIC */ |
Pantelis Antoniou | 201c910 | 2014-07-04 19:58:49 +0300 | [diff] [blame] | 1388 | |
Romain Perier | a4b4e04 | 2014-10-14 06:31:09 +0000 | [diff] [blame] | 1389 | /** |
Romain Perier | 8f73110 | 2014-11-25 12:28:25 +0000 | [diff] [blame] | 1390 | * of_device_is_system_power_controller - Tells if system-power-controller is found for device_node |
Romain Perier | a4b4e04 | 2014-10-14 06:31:09 +0000 | [diff] [blame] | 1391 | * @np: Pointer to the given device_node |
| 1392 | * |
| 1393 | * return true if present false otherwise |
| 1394 | */ |
Romain Perier | 8f73110 | 2014-11-25 12:28:25 +0000 | [diff] [blame] | 1395 | static inline bool of_device_is_system_power_controller(const struct device_node *np) |
Romain Perier | a4b4e04 | 2014-10-14 06:31:09 +0000 | [diff] [blame] | 1396 | { |
Romain Perier | 8f73110 | 2014-11-25 12:28:25 +0000 | [diff] [blame] | 1397 | return of_property_read_bool(np, "system-power-controller"); |
Romain Perier | a4b4e04 | 2014-10-14 06:31:09 +0000 | [diff] [blame] | 1398 | } |
| 1399 | |
Linus Torvalds | 7ef58b3 | 2014-12-11 13:06:58 -0800 | [diff] [blame] | 1400 | /** |
Pantelis Antoniou | 7518b589 | 2014-10-28 22:35:58 +0200 | [diff] [blame] | 1401 | * Overlay support |
| 1402 | */ |
| 1403 | |
Alan Tull | 39a842e | 2016-11-01 14:14:22 -0500 | [diff] [blame] | 1404 | enum of_overlay_notify_action { |
Frank Rowand | 24789c5 | 2017-10-17 16:36:26 -0700 | [diff] [blame] | 1405 | OF_OVERLAY_PRE_APPLY = 0, |
Alan Tull | 39a842e | 2016-11-01 14:14:22 -0500 | [diff] [blame] | 1406 | OF_OVERLAY_POST_APPLY, |
| 1407 | OF_OVERLAY_PRE_REMOVE, |
| 1408 | OF_OVERLAY_POST_REMOVE, |
| 1409 | }; |
| 1410 | |
| 1411 | struct of_overlay_notify_data { |
| 1412 | struct device_node *overlay; |
| 1413 | struct device_node *target; |
| 1414 | }; |
| 1415 | |
Pantelis Antoniou | 7518b589 | 2014-10-28 22:35:58 +0200 | [diff] [blame] | 1416 | #ifdef CONFIG_OF_OVERLAY |
| 1417 | |
Frank Rowand | 39a751a | 2018-02-12 00:19:42 -0800 | [diff] [blame] | 1418 | int of_overlay_fdt_apply(const void *overlay_fdt, u32 overlay_fdt_size, |
| 1419 | int *ovcs_id); |
Frank Rowand | 24789c5 | 2017-10-17 16:36:26 -0700 | [diff] [blame] | 1420 | int of_overlay_remove(int *ovcs_id); |
Frank Rowand | 0290c4c | 2017-10-17 16:36:23 -0700 | [diff] [blame] | 1421 | int of_overlay_remove_all(void); |
Pantelis Antoniou | 7518b589 | 2014-10-28 22:35:58 +0200 | [diff] [blame] | 1422 | |
Alan Tull | 39a842e | 2016-11-01 14:14:22 -0500 | [diff] [blame] | 1423 | int of_overlay_notifier_register(struct notifier_block *nb); |
| 1424 | int of_overlay_notifier_unregister(struct notifier_block *nb); |
| 1425 | |
Pantelis Antoniou | 7518b589 | 2014-10-28 22:35:58 +0200 | [diff] [blame] | 1426 | #else |
| 1427 | |
Frank Rowand | 39a751a | 2018-02-12 00:19:42 -0800 | [diff] [blame] | 1428 | static inline int of_overlay_fdt_apply(void *overlay_fdt, int *ovcs_id) |
Pantelis Antoniou | 7518b589 | 2014-10-28 22:35:58 +0200 | [diff] [blame] | 1429 | { |
| 1430 | return -ENOTSUPP; |
| 1431 | } |
| 1432 | |
Frank Rowand | 24789c5 | 2017-10-17 16:36:26 -0700 | [diff] [blame] | 1433 | static inline int of_overlay_remove(int *ovcs_id) |
Pantelis Antoniou | 7518b589 | 2014-10-28 22:35:58 +0200 | [diff] [blame] | 1434 | { |
| 1435 | return -ENOTSUPP; |
| 1436 | } |
| 1437 | |
Frank Rowand | 0290c4c | 2017-10-17 16:36:23 -0700 | [diff] [blame] | 1438 | static inline int of_overlay_remove_all(void) |
Pantelis Antoniou | 7518b589 | 2014-10-28 22:35:58 +0200 | [diff] [blame] | 1439 | { |
| 1440 | return -ENOTSUPP; |
| 1441 | } |
| 1442 | |
Alan Tull | 39a842e | 2016-11-01 14:14:22 -0500 | [diff] [blame] | 1443 | static inline int of_overlay_notifier_register(struct notifier_block *nb) |
| 1444 | { |
| 1445 | return 0; |
| 1446 | } |
| 1447 | |
| 1448 | static inline int of_overlay_notifier_unregister(struct notifier_block *nb) |
| 1449 | { |
| 1450 | return 0; |
| 1451 | } |
| 1452 | |
Pantelis Antoniou | 7518b589 | 2014-10-28 22:35:58 +0200 | [diff] [blame] | 1453 | #endif |
| 1454 | |
Stephen Rothwell | 76c1ce7 | 2007-05-01 16:19:07 +1000 | [diff] [blame] | 1455 | #endif /* _LINUX_OF_H */ |