Stephen Rothwell | 97e873e | 2007-05-01 16:26:07 +1000 | [diff] [blame] | 1 | /* |
| 2 | * Procedures for creating, accessing and interpreting the device tree. |
| 3 | * |
| 4 | * Paul Mackerras August 1996. |
| 5 | * Copyright (C) 1996-2005 Paul Mackerras. |
| 6 | * |
| 7 | * Adapted for 64bit PowerPC by Dave Engebretsen and Peter Bergner. |
| 8 | * {engebret|bergner}@us.ibm.com |
| 9 | * |
| 10 | * Adapted for sparc and sparc64 by David S. Miller davem@davemloft.net |
| 11 | * |
Grant Likely | e91edcf | 2009-10-15 10:58:09 -0600 | [diff] [blame] | 12 | * Reconsolidated from arch/x/kernel/prom.c by Stephen Rothwell and |
| 13 | * Grant Likely. |
Stephen Rothwell | 97e873e | 2007-05-01 16:26:07 +1000 | [diff] [blame] | 14 | * |
| 15 | * This program is free software; you can redistribute it and/or |
| 16 | * modify it under the terms of the GNU General Public License |
| 17 | * as published by the Free Software Foundation; either version |
| 18 | * 2 of the License, or (at your option) any later version. |
| 19 | */ |
Shawn Guo | 611cad7 | 2011-08-15 15:28:14 +0800 | [diff] [blame] | 20 | #include <linux/ctype.h> |
Stephen Rothwell | 97e873e | 2007-05-01 16:26:07 +1000 | [diff] [blame] | 21 | #include <linux/module.h> |
| 22 | #include <linux/of.h> |
Stephen Rothwell | 581b605 | 2007-04-24 16:46:53 +1000 | [diff] [blame] | 23 | #include <linux/spinlock.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 24 | #include <linux/slab.h> |
Jeremy Kerr | a9f2f63 | 2010-02-01 21:34:14 -0700 | [diff] [blame] | 25 | #include <linux/proc_fs.h> |
Stephen Rothwell | 581b605 | 2007-04-24 16:46:53 +1000 | [diff] [blame] | 26 | |
Shawn Guo | 611cad7 | 2011-08-15 15:28:14 +0800 | [diff] [blame] | 27 | /** |
| 28 | * struct alias_prop - Alias property in 'aliases' node |
| 29 | * @link: List node to link the structure in aliases_lookup list |
| 30 | * @alias: Alias property name |
| 31 | * @np: Pointer to device_node that the alias stands for |
| 32 | * @id: Index value from end of alias name |
| 33 | * @stem: Alias string without the index |
| 34 | * |
| 35 | * The structure represents one alias property of 'aliases' node as |
| 36 | * an entry in aliases_lookup list. |
| 37 | */ |
| 38 | struct alias_prop { |
| 39 | struct list_head link; |
| 40 | const char *alias; |
| 41 | struct device_node *np; |
| 42 | int id; |
| 43 | char stem[0]; |
| 44 | }; |
| 45 | |
| 46 | static LIST_HEAD(aliases_lookup); |
| 47 | |
Stephen Rothwell | 1ef4d42 | 2007-04-24 17:57:33 +1000 | [diff] [blame] | 48 | struct device_node *allnodes; |
Grant Likely | fc0bdae | 2010-02-14 07:13:55 -0700 | [diff] [blame] | 49 | struct device_node *of_chosen; |
Shawn Guo | 611cad7 | 2011-08-15 15:28:14 +0800 | [diff] [blame] | 50 | struct device_node *of_aliases; |
| 51 | |
| 52 | static DEFINE_MUTEX(of_aliases_mutex); |
Stephen Rothwell | 1ef4d42 | 2007-04-24 17:57:33 +1000 | [diff] [blame] | 53 | |
Stephen Rothwell | 581b605 | 2007-04-24 16:46:53 +1000 | [diff] [blame] | 54 | /* use when traversing tree through the allnext, child, sibling, |
| 55 | * or parent members of struct device_node. |
| 56 | */ |
| 57 | DEFINE_RWLOCK(devtree_lock); |
Stephen Rothwell | 97e873e | 2007-05-01 16:26:07 +1000 | [diff] [blame] | 58 | |
| 59 | int of_n_addr_cells(struct device_node *np) |
| 60 | { |
Jeremy Kerr | a9fadee | 2010-10-10 21:24:10 -0600 | [diff] [blame] | 61 | const __be32 *ip; |
Stephen Rothwell | 97e873e | 2007-05-01 16:26:07 +1000 | [diff] [blame] | 62 | |
| 63 | do { |
| 64 | if (np->parent) |
| 65 | np = np->parent; |
| 66 | ip = of_get_property(np, "#address-cells", NULL); |
| 67 | if (ip) |
Jeremy Kerr | 3371488 | 2010-01-30 01:45:26 -0700 | [diff] [blame] | 68 | return be32_to_cpup(ip); |
Stephen Rothwell | 97e873e | 2007-05-01 16:26:07 +1000 | [diff] [blame] | 69 | } while (np->parent); |
| 70 | /* No #address-cells property for the root node */ |
| 71 | return OF_ROOT_NODE_ADDR_CELLS_DEFAULT; |
| 72 | } |
| 73 | EXPORT_SYMBOL(of_n_addr_cells); |
| 74 | |
| 75 | int of_n_size_cells(struct device_node *np) |
| 76 | { |
Jeremy Kerr | a9fadee | 2010-10-10 21:24:10 -0600 | [diff] [blame] | 77 | const __be32 *ip; |
Stephen Rothwell | 97e873e | 2007-05-01 16:26:07 +1000 | [diff] [blame] | 78 | |
| 79 | do { |
| 80 | if (np->parent) |
| 81 | np = np->parent; |
| 82 | ip = of_get_property(np, "#size-cells", NULL); |
| 83 | if (ip) |
Jeremy Kerr | 3371488 | 2010-01-30 01:45:26 -0700 | [diff] [blame] | 84 | return be32_to_cpup(ip); |
Stephen Rothwell | 97e873e | 2007-05-01 16:26:07 +1000 | [diff] [blame] | 85 | } while (np->parent); |
| 86 | /* No #size-cells property for the root node */ |
| 87 | return OF_ROOT_NODE_SIZE_CELLS_DEFAULT; |
| 88 | } |
| 89 | EXPORT_SYMBOL(of_n_size_cells); |
| 90 | |
Grant Likely | 0f22dd3 | 2012-02-15 20:38:40 -0700 | [diff] [blame] | 91 | #if defined(CONFIG_OF_DYNAMIC) |
Grant Likely | 923f7e3 | 2010-01-28 13:52:53 -0700 | [diff] [blame] | 92 | /** |
| 93 | * of_node_get - Increment refcount of a node |
| 94 | * @node: Node to inc refcount, NULL is supported to |
| 95 | * simplify writing of callers |
| 96 | * |
| 97 | * Returns node. |
| 98 | */ |
| 99 | struct device_node *of_node_get(struct device_node *node) |
| 100 | { |
| 101 | if (node) |
| 102 | kref_get(&node->kref); |
| 103 | return node; |
| 104 | } |
| 105 | EXPORT_SYMBOL(of_node_get); |
| 106 | |
| 107 | static inline struct device_node *kref_to_device_node(struct kref *kref) |
| 108 | { |
| 109 | return container_of(kref, struct device_node, kref); |
| 110 | } |
| 111 | |
| 112 | /** |
| 113 | * of_node_release - release a dynamically allocated node |
| 114 | * @kref: kref element of the node to be released |
| 115 | * |
| 116 | * In of_node_put() this function is passed to kref_put() |
| 117 | * as the destructor. |
| 118 | */ |
| 119 | static void of_node_release(struct kref *kref) |
| 120 | { |
| 121 | struct device_node *node = kref_to_device_node(kref); |
| 122 | struct property *prop = node->properties; |
| 123 | |
| 124 | /* We should never be releasing nodes that haven't been detached. */ |
| 125 | if (!of_node_check_flag(node, OF_DETACHED)) { |
| 126 | pr_err("ERROR: Bad of_node_put() on %s\n", node->full_name); |
| 127 | dump_stack(); |
| 128 | kref_init(&node->kref); |
| 129 | return; |
| 130 | } |
| 131 | |
| 132 | if (!of_node_check_flag(node, OF_DYNAMIC)) |
| 133 | return; |
| 134 | |
| 135 | while (prop) { |
| 136 | struct property *next = prop->next; |
| 137 | kfree(prop->name); |
| 138 | kfree(prop->value); |
| 139 | kfree(prop); |
| 140 | prop = next; |
| 141 | |
| 142 | if (!prop) { |
| 143 | prop = node->deadprops; |
| 144 | node->deadprops = NULL; |
| 145 | } |
| 146 | } |
| 147 | kfree(node->full_name); |
| 148 | kfree(node->data); |
| 149 | kfree(node); |
| 150 | } |
| 151 | |
| 152 | /** |
| 153 | * of_node_put - Decrement refcount of a node |
| 154 | * @node: Node to dec refcount, NULL is supported to |
| 155 | * simplify writing of callers |
| 156 | * |
| 157 | */ |
| 158 | void of_node_put(struct device_node *node) |
| 159 | { |
| 160 | if (node) |
| 161 | kref_put(&node->kref, of_node_release); |
| 162 | } |
| 163 | EXPORT_SYMBOL(of_node_put); |
Grant Likely | 0f22dd3 | 2012-02-15 20:38:40 -0700 | [diff] [blame] | 164 | #endif /* CONFIG_OF_DYNAMIC */ |
Grant Likely | 923f7e3 | 2010-01-28 13:52:53 -0700 | [diff] [blame] | 165 | |
Stephen Rothwell | 581b605 | 2007-04-24 16:46:53 +1000 | [diff] [blame] | 166 | struct property *of_find_property(const struct device_node *np, |
| 167 | const char *name, |
| 168 | int *lenp) |
| 169 | { |
| 170 | struct property *pp; |
| 171 | |
Timur Tabi | 64e4566 | 2008-05-08 05:19:59 +1000 | [diff] [blame] | 172 | if (!np) |
| 173 | return NULL; |
| 174 | |
Stephen Rothwell | 581b605 | 2007-04-24 16:46:53 +1000 | [diff] [blame] | 175 | read_lock(&devtree_lock); |
Sachin Kamat | a3a7cab | 2012-06-27 09:44:45 +0530 | [diff] [blame] | 176 | for (pp = np->properties; pp; pp = pp->next) { |
Stephen Rothwell | 581b605 | 2007-04-24 16:46:53 +1000 | [diff] [blame] | 177 | if (of_prop_cmp(pp->name, name) == 0) { |
Sachin Kamat | a3a7cab | 2012-06-27 09:44:45 +0530 | [diff] [blame] | 178 | if (lenp) |
Stephen Rothwell | 581b605 | 2007-04-24 16:46:53 +1000 | [diff] [blame] | 179 | *lenp = pp->length; |
| 180 | break; |
| 181 | } |
| 182 | } |
| 183 | read_unlock(&devtree_lock); |
| 184 | |
| 185 | return pp; |
| 186 | } |
| 187 | EXPORT_SYMBOL(of_find_property); |
| 188 | |
Grant Likely | e91edcf | 2009-10-15 10:58:09 -0600 | [diff] [blame] | 189 | /** |
| 190 | * of_find_all_nodes - Get next node in global list |
| 191 | * @prev: Previous node or NULL to start iteration |
| 192 | * of_node_put() will be called on it |
| 193 | * |
| 194 | * Returns a node pointer with refcount incremented, use |
| 195 | * of_node_put() on it when done. |
| 196 | */ |
| 197 | struct device_node *of_find_all_nodes(struct device_node *prev) |
| 198 | { |
| 199 | struct device_node *np; |
| 200 | |
| 201 | read_lock(&devtree_lock); |
| 202 | np = prev ? prev->allnext : allnodes; |
| 203 | for (; np != NULL; np = np->allnext) |
| 204 | if (of_node_get(np)) |
| 205 | break; |
| 206 | of_node_put(prev); |
| 207 | read_unlock(&devtree_lock); |
| 208 | return np; |
| 209 | } |
| 210 | EXPORT_SYMBOL(of_find_all_nodes); |
| 211 | |
Stephen Rothwell | 97e873e | 2007-05-01 16:26:07 +1000 | [diff] [blame] | 212 | /* |
| 213 | * Find a property with a given name for a given node |
| 214 | * and return the value. |
| 215 | */ |
| 216 | const void *of_get_property(const struct device_node *np, const char *name, |
| 217 | int *lenp) |
| 218 | { |
| 219 | struct property *pp = of_find_property(np, name, lenp); |
| 220 | |
| 221 | return pp ? pp->value : NULL; |
| 222 | } |
| 223 | EXPORT_SYMBOL(of_get_property); |
Stephen Rothwell | 0081cbc | 2007-05-01 16:29:19 +1000 | [diff] [blame] | 224 | |
| 225 | /** Checks if the given "compat" string matches one of the strings in |
| 226 | * the device's "compatible" property |
| 227 | */ |
| 228 | int of_device_is_compatible(const struct device_node *device, |
| 229 | const char *compat) |
| 230 | { |
| 231 | const char* cp; |
| 232 | int cplen, l; |
| 233 | |
| 234 | cp = of_get_property(device, "compatible", &cplen); |
| 235 | if (cp == NULL) |
| 236 | return 0; |
| 237 | while (cplen > 0) { |
| 238 | if (of_compat_cmp(cp, compat, strlen(compat)) == 0) |
| 239 | return 1; |
| 240 | l = strlen(cp) + 1; |
| 241 | cp += l; |
| 242 | cplen -= l; |
| 243 | } |
| 244 | |
| 245 | return 0; |
| 246 | } |
| 247 | EXPORT_SYMBOL(of_device_is_compatible); |
Stephen Rothwell | e679c5f | 2007-04-24 17:16:16 +1000 | [diff] [blame] | 248 | |
| 249 | /** |
Grant Likely | 71a157e8e | 2010-02-01 21:34:14 -0700 | [diff] [blame] | 250 | * of_machine_is_compatible - Test root of device tree for a given compatible value |
Grant Likely | 1f43cfb | 2010-01-28 13:47:25 -0700 | [diff] [blame] | 251 | * @compat: compatible string to look for in root node's compatible property. |
| 252 | * |
| 253 | * Returns true if the root node has the given value in its |
| 254 | * compatible property. |
| 255 | */ |
Grant Likely | 71a157e8e | 2010-02-01 21:34:14 -0700 | [diff] [blame] | 256 | int of_machine_is_compatible(const char *compat) |
Grant Likely | 1f43cfb | 2010-01-28 13:47:25 -0700 | [diff] [blame] | 257 | { |
| 258 | struct device_node *root; |
| 259 | int rc = 0; |
| 260 | |
| 261 | root = of_find_node_by_path("/"); |
| 262 | if (root) { |
| 263 | rc = of_device_is_compatible(root, compat); |
| 264 | of_node_put(root); |
| 265 | } |
| 266 | return rc; |
| 267 | } |
Grant Likely | 71a157e8e | 2010-02-01 21:34:14 -0700 | [diff] [blame] | 268 | EXPORT_SYMBOL(of_machine_is_compatible); |
Grant Likely | 1f43cfb | 2010-01-28 13:47:25 -0700 | [diff] [blame] | 269 | |
| 270 | /** |
Josh Boyer | 834d97d | 2008-03-27 00:33:14 +1100 | [diff] [blame] | 271 | * of_device_is_available - check if a device is available for use |
| 272 | * |
| 273 | * @device: Node to check for availability |
| 274 | * |
| 275 | * Returns 1 if the status property is absent or set to "okay" or "ok", |
| 276 | * 0 otherwise |
| 277 | */ |
| 278 | int of_device_is_available(const struct device_node *device) |
| 279 | { |
| 280 | const char *status; |
| 281 | int statlen; |
| 282 | |
| 283 | status = of_get_property(device, "status", &statlen); |
| 284 | if (status == NULL) |
| 285 | return 1; |
| 286 | |
| 287 | if (statlen > 0) { |
| 288 | if (!strcmp(status, "okay") || !strcmp(status, "ok")) |
| 289 | return 1; |
| 290 | } |
| 291 | |
| 292 | return 0; |
| 293 | } |
| 294 | EXPORT_SYMBOL(of_device_is_available); |
| 295 | |
| 296 | /** |
Stephen Rothwell | e679c5f | 2007-04-24 17:16:16 +1000 | [diff] [blame] | 297 | * of_get_parent - Get a node's parent if any |
| 298 | * @node: Node to get parent |
| 299 | * |
| 300 | * Returns a node pointer with refcount incremented, use |
| 301 | * of_node_put() on it when done. |
| 302 | */ |
| 303 | struct device_node *of_get_parent(const struct device_node *node) |
| 304 | { |
| 305 | struct device_node *np; |
| 306 | |
| 307 | if (!node) |
| 308 | return NULL; |
| 309 | |
| 310 | read_lock(&devtree_lock); |
| 311 | np = of_node_get(node->parent); |
| 312 | read_unlock(&devtree_lock); |
| 313 | return np; |
| 314 | } |
| 315 | EXPORT_SYMBOL(of_get_parent); |
Stephen Rothwell | d1cd355 | 2007-04-24 17:21:29 +1000 | [diff] [blame] | 316 | |
| 317 | /** |
Michael Ellerman | f4eb010 | 2007-10-26 16:54:31 +1000 | [diff] [blame] | 318 | * of_get_next_parent - Iterate to a node's parent |
| 319 | * @node: Node to get parent of |
| 320 | * |
| 321 | * This is like of_get_parent() except that it drops the |
| 322 | * refcount on the passed node, making it suitable for iterating |
| 323 | * through a node's parents. |
| 324 | * |
| 325 | * Returns a node pointer with refcount incremented, use |
| 326 | * of_node_put() on it when done. |
| 327 | */ |
| 328 | struct device_node *of_get_next_parent(struct device_node *node) |
| 329 | { |
| 330 | struct device_node *parent; |
| 331 | |
| 332 | if (!node) |
| 333 | return NULL; |
| 334 | |
| 335 | read_lock(&devtree_lock); |
| 336 | parent = of_node_get(node->parent); |
| 337 | of_node_put(node); |
| 338 | read_unlock(&devtree_lock); |
| 339 | return parent; |
| 340 | } |
| 341 | |
| 342 | /** |
Stephen Rothwell | d1cd355 | 2007-04-24 17:21:29 +1000 | [diff] [blame] | 343 | * of_get_next_child - Iterate a node childs |
| 344 | * @node: parent node |
| 345 | * @prev: previous child of the parent node, or NULL to get first |
| 346 | * |
| 347 | * Returns a node pointer with refcount incremented, use |
| 348 | * of_node_put() on it when done. |
| 349 | */ |
| 350 | struct device_node *of_get_next_child(const struct device_node *node, |
| 351 | struct device_node *prev) |
| 352 | { |
| 353 | struct device_node *next; |
| 354 | |
| 355 | read_lock(&devtree_lock); |
| 356 | next = prev ? prev->sibling : node->child; |
| 357 | for (; next; next = next->sibling) |
| 358 | if (of_node_get(next)) |
| 359 | break; |
| 360 | of_node_put(prev); |
| 361 | read_unlock(&devtree_lock); |
| 362 | return next; |
| 363 | } |
| 364 | EXPORT_SYMBOL(of_get_next_child); |
Stephen Rothwell | 1ef4d42 | 2007-04-24 17:57:33 +1000 | [diff] [blame] | 365 | |
| 366 | /** |
Srinivas Kandagatla | 9c19761 | 2012-09-18 08:10:28 +0100 | [diff] [blame^] | 367 | * of_get_child_by_name - Find the child node by name for a given parent |
| 368 | * @node: parent node |
| 369 | * @name: child name to look for. |
| 370 | * |
| 371 | * This function looks for child node for given matching name |
| 372 | * |
| 373 | * Returns a node pointer if found, with refcount incremented, use |
| 374 | * of_node_put() on it when done. |
| 375 | * Returns NULL if node is not found. |
| 376 | */ |
| 377 | struct device_node *of_get_child_by_name(const struct device_node *node, |
| 378 | const char *name) |
| 379 | { |
| 380 | struct device_node *child; |
| 381 | |
| 382 | for_each_child_of_node(node, child) |
| 383 | if (child->name && (of_node_cmp(child->name, name) == 0)) |
| 384 | break; |
| 385 | return child; |
| 386 | } |
| 387 | EXPORT_SYMBOL(of_get_child_by_name); |
| 388 | |
| 389 | /** |
Stephen Rothwell | 1ef4d42 | 2007-04-24 17:57:33 +1000 | [diff] [blame] | 390 | * of_find_node_by_path - Find a node matching a full OF path |
| 391 | * @path: The full path to match |
| 392 | * |
| 393 | * Returns a node pointer with refcount incremented, use |
| 394 | * of_node_put() on it when done. |
| 395 | */ |
| 396 | struct device_node *of_find_node_by_path(const char *path) |
| 397 | { |
| 398 | struct device_node *np = allnodes; |
| 399 | |
| 400 | read_lock(&devtree_lock); |
| 401 | for (; np; np = np->allnext) { |
| 402 | if (np->full_name && (of_node_cmp(np->full_name, path) == 0) |
| 403 | && of_node_get(np)) |
| 404 | break; |
| 405 | } |
| 406 | read_unlock(&devtree_lock); |
| 407 | return np; |
| 408 | } |
| 409 | EXPORT_SYMBOL(of_find_node_by_path); |
| 410 | |
| 411 | /** |
| 412 | * of_find_node_by_name - Find a node by its "name" property |
| 413 | * @from: The node to start searching from or NULL, the node |
| 414 | * you pass will not be searched, only the next one |
| 415 | * will; typically, you pass what the previous call |
| 416 | * returned. of_node_put() will be called on it |
| 417 | * @name: The name string to match against |
| 418 | * |
| 419 | * Returns a node pointer with refcount incremented, use |
| 420 | * of_node_put() on it when done. |
| 421 | */ |
| 422 | struct device_node *of_find_node_by_name(struct device_node *from, |
| 423 | const char *name) |
| 424 | { |
| 425 | struct device_node *np; |
| 426 | |
| 427 | read_lock(&devtree_lock); |
| 428 | np = from ? from->allnext : allnodes; |
| 429 | for (; np; np = np->allnext) |
| 430 | if (np->name && (of_node_cmp(np->name, name) == 0) |
| 431 | && of_node_get(np)) |
| 432 | break; |
| 433 | of_node_put(from); |
| 434 | read_unlock(&devtree_lock); |
| 435 | return np; |
| 436 | } |
| 437 | EXPORT_SYMBOL(of_find_node_by_name); |
| 438 | |
| 439 | /** |
| 440 | * of_find_node_by_type - Find a node by its "device_type" property |
| 441 | * @from: The node to start searching from, or NULL to start searching |
| 442 | * the entire device tree. The node you pass will not be |
| 443 | * searched, only the next one will; typically, you pass |
| 444 | * what the previous call returned. of_node_put() will be |
| 445 | * called on from for you. |
| 446 | * @type: The type string to match against |
| 447 | * |
| 448 | * Returns a node pointer with refcount incremented, use |
| 449 | * of_node_put() on it when done. |
| 450 | */ |
| 451 | struct device_node *of_find_node_by_type(struct device_node *from, |
| 452 | const char *type) |
| 453 | { |
| 454 | struct device_node *np; |
| 455 | |
| 456 | read_lock(&devtree_lock); |
| 457 | np = from ? from->allnext : allnodes; |
| 458 | for (; np; np = np->allnext) |
| 459 | if (np->type && (of_node_cmp(np->type, type) == 0) |
| 460 | && of_node_get(np)) |
| 461 | break; |
| 462 | of_node_put(from); |
| 463 | read_unlock(&devtree_lock); |
| 464 | return np; |
| 465 | } |
| 466 | EXPORT_SYMBOL(of_find_node_by_type); |
| 467 | |
| 468 | /** |
| 469 | * of_find_compatible_node - Find a node based on type and one of the |
| 470 | * tokens in its "compatible" property |
| 471 | * @from: The node to start searching from or NULL, the node |
| 472 | * you pass will not be searched, only the next one |
| 473 | * will; typically, you pass what the previous call |
| 474 | * returned. of_node_put() will be called on it |
| 475 | * @type: The type string to match "device_type" or NULL to ignore |
| 476 | * @compatible: The string to match to one of the tokens in the device |
| 477 | * "compatible" list. |
| 478 | * |
| 479 | * Returns a node pointer with refcount incremented, use |
| 480 | * of_node_put() on it when done. |
| 481 | */ |
| 482 | struct device_node *of_find_compatible_node(struct device_node *from, |
| 483 | const char *type, const char *compatible) |
| 484 | { |
| 485 | struct device_node *np; |
| 486 | |
| 487 | read_lock(&devtree_lock); |
| 488 | np = from ? from->allnext : allnodes; |
| 489 | for (; np; np = np->allnext) { |
| 490 | if (type |
| 491 | && !(np->type && (of_node_cmp(np->type, type) == 0))) |
| 492 | continue; |
| 493 | if (of_device_is_compatible(np, compatible) && of_node_get(np)) |
| 494 | break; |
| 495 | } |
| 496 | of_node_put(from); |
| 497 | read_unlock(&devtree_lock); |
| 498 | return np; |
| 499 | } |
| 500 | EXPORT_SYMBOL(of_find_compatible_node); |
Grant Likely | 283029d | 2008-01-09 06:20:40 +1100 | [diff] [blame] | 501 | |
| 502 | /** |
Michael Ellerman | 1e291b1 | 2008-11-12 18:54:42 +0000 | [diff] [blame] | 503 | * of_find_node_with_property - Find a node which has a property with |
| 504 | * the given name. |
| 505 | * @from: The node to start searching from or NULL, the node |
| 506 | * you pass will not be searched, only the next one |
| 507 | * will; typically, you pass what the previous call |
| 508 | * returned. of_node_put() will be called on it |
| 509 | * @prop_name: The name of the property to look for. |
| 510 | * |
| 511 | * Returns a node pointer with refcount incremented, use |
| 512 | * of_node_put() on it when done. |
| 513 | */ |
| 514 | struct device_node *of_find_node_with_property(struct device_node *from, |
| 515 | const char *prop_name) |
| 516 | { |
| 517 | struct device_node *np; |
| 518 | struct property *pp; |
| 519 | |
| 520 | read_lock(&devtree_lock); |
| 521 | np = from ? from->allnext : allnodes; |
| 522 | for (; np; np = np->allnext) { |
Sachin Kamat | a3a7cab | 2012-06-27 09:44:45 +0530 | [diff] [blame] | 523 | for (pp = np->properties; pp; pp = pp->next) { |
Michael Ellerman | 1e291b1 | 2008-11-12 18:54:42 +0000 | [diff] [blame] | 524 | if (of_prop_cmp(pp->name, prop_name) == 0) { |
| 525 | of_node_get(np); |
| 526 | goto out; |
| 527 | } |
| 528 | } |
| 529 | } |
| 530 | out: |
| 531 | of_node_put(from); |
| 532 | read_unlock(&devtree_lock); |
| 533 | return np; |
| 534 | } |
| 535 | EXPORT_SYMBOL(of_find_node_with_property); |
| 536 | |
| 537 | /** |
Grant Likely | 283029d | 2008-01-09 06:20:40 +1100 | [diff] [blame] | 538 | * of_match_node - Tell if an device_node has a matching of_match structure |
| 539 | * @matches: array of of device match structures to search in |
| 540 | * @node: the of device structure to match against |
| 541 | * |
| 542 | * Low level utility function used by device matching. |
| 543 | */ |
| 544 | const struct of_device_id *of_match_node(const struct of_device_id *matches, |
| 545 | const struct device_node *node) |
| 546 | { |
Grant Likely | a52f07e | 2011-03-18 10:21:29 -0600 | [diff] [blame] | 547 | if (!matches) |
| 548 | return NULL; |
| 549 | |
Grant Likely | 283029d | 2008-01-09 06:20:40 +1100 | [diff] [blame] | 550 | while (matches->name[0] || matches->type[0] || matches->compatible[0]) { |
| 551 | int match = 1; |
| 552 | if (matches->name[0]) |
| 553 | match &= node->name |
| 554 | && !strcmp(matches->name, node->name); |
| 555 | if (matches->type[0]) |
| 556 | match &= node->type |
| 557 | && !strcmp(matches->type, node->type); |
Linus Torvalds | bc51b0c | 2012-07-10 12:49:32 -0700 | [diff] [blame] | 558 | if (matches->compatible[0]) |
| 559 | match &= of_device_is_compatible(node, |
| 560 | matches->compatible); |
| 561 | if (match) |
Grant Likely | 283029d | 2008-01-09 06:20:40 +1100 | [diff] [blame] | 562 | return matches; |
| 563 | matches++; |
| 564 | } |
| 565 | return NULL; |
| 566 | } |
| 567 | EXPORT_SYMBOL(of_match_node); |
| 568 | |
| 569 | /** |
| 570 | * of_find_matching_node - Find a node based on an of_device_id match |
| 571 | * table. |
| 572 | * @from: The node to start searching from or NULL, the node |
| 573 | * you pass will not be searched, only the next one |
| 574 | * will; typically, you pass what the previous call |
| 575 | * returned. of_node_put() will be called on it |
| 576 | * @matches: array of of device match structures to search in |
| 577 | * |
| 578 | * Returns a node pointer with refcount incremented, use |
| 579 | * of_node_put() on it when done. |
| 580 | */ |
| 581 | struct device_node *of_find_matching_node(struct device_node *from, |
| 582 | const struct of_device_id *matches) |
| 583 | { |
| 584 | struct device_node *np; |
| 585 | |
| 586 | read_lock(&devtree_lock); |
| 587 | np = from ? from->allnext : allnodes; |
| 588 | for (; np; np = np->allnext) { |
| 589 | if (of_match_node(matches, np) && of_node_get(np)) |
| 590 | break; |
| 591 | } |
| 592 | of_node_put(from); |
| 593 | read_unlock(&devtree_lock); |
| 594 | return np; |
| 595 | } |
| 596 | EXPORT_SYMBOL(of_find_matching_node); |
Grant Likely | 3f07af4 | 2008-07-25 22:25:13 -0400 | [diff] [blame] | 597 | |
| 598 | /** |
Grant Likely | 3f07af4 | 2008-07-25 22:25:13 -0400 | [diff] [blame] | 599 | * of_modalias_node - Lookup appropriate modalias for a device node |
| 600 | * @node: pointer to a device tree node |
| 601 | * @modalias: Pointer to buffer that modalias value will be copied into |
| 602 | * @len: Length of modalias value |
| 603 | * |
Grant Likely | 2ffe8c5 | 2010-06-08 07:48:19 -0600 | [diff] [blame] | 604 | * Based on the value of the compatible property, this routine will attempt |
| 605 | * to choose an appropriate modalias value for a particular device tree node. |
| 606 | * It does this by stripping the manufacturer prefix (as delimited by a ',') |
| 607 | * from the first entry in the compatible list property. |
Grant Likely | 3f07af4 | 2008-07-25 22:25:13 -0400 | [diff] [blame] | 608 | * |
Grant Likely | 2ffe8c5 | 2010-06-08 07:48:19 -0600 | [diff] [blame] | 609 | * This routine returns 0 on success, <0 on failure. |
Grant Likely | 3f07af4 | 2008-07-25 22:25:13 -0400 | [diff] [blame] | 610 | */ |
| 611 | int of_modalias_node(struct device_node *node, char *modalias, int len) |
| 612 | { |
Grant Likely | 2ffe8c5 | 2010-06-08 07:48:19 -0600 | [diff] [blame] | 613 | const char *compatible, *p; |
| 614 | int cplen; |
Grant Likely | 3f07af4 | 2008-07-25 22:25:13 -0400 | [diff] [blame] | 615 | |
| 616 | compatible = of_get_property(node, "compatible", &cplen); |
Grant Likely | 2ffe8c5 | 2010-06-08 07:48:19 -0600 | [diff] [blame] | 617 | if (!compatible || strlen(compatible) > cplen) |
Grant Likely | 3f07af4 | 2008-07-25 22:25:13 -0400 | [diff] [blame] | 618 | return -ENODEV; |
Grant Likely | 3f07af4 | 2008-07-25 22:25:13 -0400 | [diff] [blame] | 619 | p = strchr(compatible, ','); |
Grant Likely | 2ffe8c5 | 2010-06-08 07:48:19 -0600 | [diff] [blame] | 620 | strlcpy(modalias, p ? p + 1 : compatible, len); |
Grant Likely | 3f07af4 | 2008-07-25 22:25:13 -0400 | [diff] [blame] | 621 | return 0; |
| 622 | } |
| 623 | EXPORT_SYMBOL_GPL(of_modalias_node); |
| 624 | |
Anton Vorontsov | 64b60e0 | 2008-10-10 04:43:17 +0000 | [diff] [blame] | 625 | /** |
Jeremy Kerr | 89751a7 | 2010-02-01 21:34:11 -0700 | [diff] [blame] | 626 | * of_find_node_by_phandle - Find a node given a phandle |
| 627 | * @handle: phandle of the node to find |
| 628 | * |
| 629 | * Returns a node pointer with refcount incremented, use |
| 630 | * of_node_put() on it when done. |
| 631 | */ |
| 632 | struct device_node *of_find_node_by_phandle(phandle handle) |
| 633 | { |
| 634 | struct device_node *np; |
| 635 | |
| 636 | read_lock(&devtree_lock); |
| 637 | for (np = allnodes; np; np = np->allnext) |
| 638 | if (np->phandle == handle) |
| 639 | break; |
| 640 | of_node_get(np); |
| 641 | read_unlock(&devtree_lock); |
| 642 | return np; |
| 643 | } |
| 644 | EXPORT_SYMBOL(of_find_node_by_phandle); |
| 645 | |
| 646 | /** |
Rob Herring | 0e37363 | 2011-07-06 15:42:58 -0500 | [diff] [blame] | 647 | * of_property_read_u32_array - Find and read an array of 32 bit integers |
| 648 | * from a property. |
| 649 | * |
Thomas Abraham | a3b8536 | 2011-06-30 21:26:10 +0530 | [diff] [blame] | 650 | * @np: device node from which the property value is to be read. |
| 651 | * @propname: name of the property to be searched. |
| 652 | * @out_value: pointer to return value, modified only if return value is 0. |
| 653 | * |
Rob Herring | 0e37363 | 2011-07-06 15:42:58 -0500 | [diff] [blame] | 654 | * Search for a property in a device node and read 32-bit value(s) from |
Thomas Abraham | a3b8536 | 2011-06-30 21:26:10 +0530 | [diff] [blame] | 655 | * it. Returns 0 on success, -EINVAL if the property does not exist, |
| 656 | * -ENODATA if property does not have a value, and -EOVERFLOW if the |
| 657 | * property data isn't large enough. |
| 658 | * |
| 659 | * The out_value is modified only if a valid u32 value can be decoded. |
| 660 | */ |
Jamie Iles | aac285c | 2011-08-02 15:45:07 +0100 | [diff] [blame] | 661 | int of_property_read_u32_array(const struct device_node *np, |
| 662 | const char *propname, u32 *out_values, |
| 663 | size_t sz) |
Thomas Abraham | a3b8536 | 2011-06-30 21:26:10 +0530 | [diff] [blame] | 664 | { |
| 665 | struct property *prop = of_find_property(np, propname, NULL); |
Rob Herring | 0e37363 | 2011-07-06 15:42:58 -0500 | [diff] [blame] | 666 | const __be32 *val; |
Thomas Abraham | a3b8536 | 2011-06-30 21:26:10 +0530 | [diff] [blame] | 667 | |
| 668 | if (!prop) |
| 669 | return -EINVAL; |
| 670 | if (!prop->value) |
| 671 | return -ENODATA; |
Rob Herring | 0e37363 | 2011-07-06 15:42:58 -0500 | [diff] [blame] | 672 | if ((sz * sizeof(*out_values)) > prop->length) |
Thomas Abraham | a3b8536 | 2011-06-30 21:26:10 +0530 | [diff] [blame] | 673 | return -EOVERFLOW; |
Rob Herring | 0e37363 | 2011-07-06 15:42:58 -0500 | [diff] [blame] | 674 | |
| 675 | val = prop->value; |
| 676 | while (sz--) |
| 677 | *out_values++ = be32_to_cpup(val++); |
Thomas Abraham | a3b8536 | 2011-06-30 21:26:10 +0530 | [diff] [blame] | 678 | return 0; |
| 679 | } |
Rob Herring | 0e37363 | 2011-07-06 15:42:58 -0500 | [diff] [blame] | 680 | EXPORT_SYMBOL_GPL(of_property_read_u32_array); |
Thomas Abraham | a3b8536 | 2011-06-30 21:26:10 +0530 | [diff] [blame] | 681 | |
| 682 | /** |
Jamie Iles | 4cd7f7a | 2011-09-14 20:49:59 +0100 | [diff] [blame] | 683 | * of_property_read_u64 - Find and read a 64 bit integer from a property |
| 684 | * @np: device node from which the property value is to be read. |
| 685 | * @propname: name of the property to be searched. |
| 686 | * @out_value: pointer to return value, modified only if return value is 0. |
| 687 | * |
| 688 | * Search for a property in a device node and read a 64-bit value from |
| 689 | * it. Returns 0 on success, -EINVAL if the property does not exist, |
| 690 | * -ENODATA if property does not have a value, and -EOVERFLOW if the |
| 691 | * property data isn't large enough. |
| 692 | * |
| 693 | * The out_value is modified only if a valid u64 value can be decoded. |
| 694 | */ |
| 695 | int of_property_read_u64(const struct device_node *np, const char *propname, |
| 696 | u64 *out_value) |
| 697 | { |
| 698 | struct property *prop = of_find_property(np, propname, NULL); |
| 699 | |
| 700 | if (!prop) |
| 701 | return -EINVAL; |
| 702 | if (!prop->value) |
| 703 | return -ENODATA; |
| 704 | if (sizeof(*out_value) > prop->length) |
| 705 | return -EOVERFLOW; |
| 706 | *out_value = of_read_number(prop->value, 2); |
| 707 | return 0; |
| 708 | } |
| 709 | EXPORT_SYMBOL_GPL(of_property_read_u64); |
| 710 | |
| 711 | /** |
Thomas Abraham | a3b8536 | 2011-06-30 21:26:10 +0530 | [diff] [blame] | 712 | * of_property_read_string - Find and read a string from a property |
| 713 | * @np: device node from which the property value is to be read. |
| 714 | * @propname: name of the property to be searched. |
| 715 | * @out_string: pointer to null terminated return string, modified only if |
| 716 | * return value is 0. |
| 717 | * |
| 718 | * Search for a property in a device tree node and retrieve a null |
| 719 | * terminated string value (pointer to data, not a copy). Returns 0 on |
| 720 | * success, -EINVAL if the property does not exist, -ENODATA if property |
| 721 | * does not have a value, and -EILSEQ if the string is not null-terminated |
| 722 | * within the length of the property data. |
| 723 | * |
| 724 | * The out_string pointer is modified only if a valid string can be decoded. |
| 725 | */ |
Jamie Iles | aac285c | 2011-08-02 15:45:07 +0100 | [diff] [blame] | 726 | int of_property_read_string(struct device_node *np, const char *propname, |
Shawn Guo | f09bc83 | 2011-07-04 09:01:18 +0800 | [diff] [blame] | 727 | const char **out_string) |
Thomas Abraham | a3b8536 | 2011-06-30 21:26:10 +0530 | [diff] [blame] | 728 | { |
| 729 | struct property *prop = of_find_property(np, propname, NULL); |
| 730 | if (!prop) |
| 731 | return -EINVAL; |
| 732 | if (!prop->value) |
| 733 | return -ENODATA; |
| 734 | if (strnlen(prop->value, prop->length) >= prop->length) |
| 735 | return -EILSEQ; |
| 736 | *out_string = prop->value; |
| 737 | return 0; |
| 738 | } |
| 739 | EXPORT_SYMBOL_GPL(of_property_read_string); |
| 740 | |
| 741 | /** |
Benoit Cousson | 4fcd15a | 2011-09-27 17:45:43 +0200 | [diff] [blame] | 742 | * of_property_read_string_index - Find and read a string from a multiple |
| 743 | * strings property. |
| 744 | * @np: device node from which the property value is to be read. |
| 745 | * @propname: name of the property to be searched. |
| 746 | * @index: index of the string in the list of strings |
| 747 | * @out_string: pointer to null terminated return string, modified only if |
| 748 | * return value is 0. |
| 749 | * |
| 750 | * Search for a property in a device tree node and retrieve a null |
| 751 | * terminated string value (pointer to data, not a copy) in the list of strings |
| 752 | * contained in that property. |
| 753 | * Returns 0 on success, -EINVAL if the property does not exist, -ENODATA if |
| 754 | * property does not have a value, and -EILSEQ if the string is not |
| 755 | * null-terminated within the length of the property data. |
| 756 | * |
| 757 | * The out_string pointer is modified only if a valid string can be decoded. |
| 758 | */ |
| 759 | int of_property_read_string_index(struct device_node *np, const char *propname, |
| 760 | int index, const char **output) |
| 761 | { |
| 762 | struct property *prop = of_find_property(np, propname, NULL); |
| 763 | int i = 0; |
| 764 | size_t l = 0, total = 0; |
| 765 | const char *p; |
| 766 | |
| 767 | if (!prop) |
| 768 | return -EINVAL; |
| 769 | if (!prop->value) |
| 770 | return -ENODATA; |
| 771 | if (strnlen(prop->value, prop->length) >= prop->length) |
| 772 | return -EILSEQ; |
| 773 | |
| 774 | p = prop->value; |
| 775 | |
| 776 | for (i = 0; total < prop->length; total += l, p += l) { |
| 777 | l = strlen(p) + 1; |
Benoit Cousson | 88af7f5 | 2011-12-05 15:23:54 +0100 | [diff] [blame] | 778 | if (i++ == index) { |
Benoit Cousson | 4fcd15a | 2011-09-27 17:45:43 +0200 | [diff] [blame] | 779 | *output = p; |
| 780 | return 0; |
| 781 | } |
| 782 | } |
| 783 | return -ENODATA; |
| 784 | } |
| 785 | EXPORT_SYMBOL_GPL(of_property_read_string_index); |
| 786 | |
Grant Likely | 7aff0fe | 2011-12-12 09:25:58 -0700 | [diff] [blame] | 787 | /** |
| 788 | * of_property_match_string() - Find string in a list and return index |
| 789 | * @np: pointer to node containing string list property |
| 790 | * @propname: string list property name |
| 791 | * @string: pointer to string to search for in string list |
| 792 | * |
| 793 | * This function searches a string list property and returns the index |
| 794 | * of a specific string value. |
| 795 | */ |
| 796 | int of_property_match_string(struct device_node *np, const char *propname, |
| 797 | const char *string) |
| 798 | { |
| 799 | struct property *prop = of_find_property(np, propname, NULL); |
| 800 | size_t l; |
| 801 | int i; |
| 802 | const char *p, *end; |
| 803 | |
| 804 | if (!prop) |
| 805 | return -EINVAL; |
| 806 | if (!prop->value) |
| 807 | return -ENODATA; |
| 808 | |
| 809 | p = prop->value; |
| 810 | end = p + prop->length; |
| 811 | |
| 812 | for (i = 0; p < end; i++, p += l) { |
| 813 | l = strlen(p) + 1; |
| 814 | if (p + l > end) |
| 815 | return -EILSEQ; |
| 816 | pr_debug("comparing %s with %s\n", string, p); |
| 817 | if (strcmp(string, p) == 0) |
| 818 | return i; /* Found it; return index */ |
| 819 | } |
| 820 | return -ENODATA; |
| 821 | } |
| 822 | EXPORT_SYMBOL_GPL(of_property_match_string); |
Benoit Cousson | 4fcd15a | 2011-09-27 17:45:43 +0200 | [diff] [blame] | 823 | |
| 824 | /** |
| 825 | * of_property_count_strings - Find and return the number of strings from a |
| 826 | * multiple strings property. |
| 827 | * @np: device node from which the property value is to be read. |
| 828 | * @propname: name of the property to be searched. |
| 829 | * |
| 830 | * Search for a property in a device tree node and retrieve the number of null |
| 831 | * terminated string contain in it. Returns the number of strings on |
| 832 | * success, -EINVAL if the property does not exist, -ENODATA if property |
| 833 | * does not have a value, and -EILSEQ if the string is not null-terminated |
| 834 | * within the length of the property data. |
| 835 | */ |
| 836 | int of_property_count_strings(struct device_node *np, const char *propname) |
| 837 | { |
| 838 | struct property *prop = of_find_property(np, propname, NULL); |
| 839 | int i = 0; |
| 840 | size_t l = 0, total = 0; |
| 841 | const char *p; |
| 842 | |
| 843 | if (!prop) |
| 844 | return -EINVAL; |
| 845 | if (!prop->value) |
| 846 | return -ENODATA; |
| 847 | if (strnlen(prop->value, prop->length) >= prop->length) |
| 848 | return -EILSEQ; |
| 849 | |
| 850 | p = prop->value; |
| 851 | |
Benoit Cousson | 88af7f5 | 2011-12-05 15:23:54 +0100 | [diff] [blame] | 852 | for (i = 0; total < prop->length; total += l, p += l, i++) |
Benoit Cousson | 4fcd15a | 2011-09-27 17:45:43 +0200 | [diff] [blame] | 853 | l = strlen(p) + 1; |
Benoit Cousson | 88af7f5 | 2011-12-05 15:23:54 +0100 | [diff] [blame] | 854 | |
Benoit Cousson | 4fcd15a | 2011-09-27 17:45:43 +0200 | [diff] [blame] | 855 | return i; |
| 856 | } |
| 857 | EXPORT_SYMBOL_GPL(of_property_count_strings); |
| 858 | |
| 859 | /** |
Grant Likely | 739649c | 2009-04-25 12:52:40 +0000 | [diff] [blame] | 860 | * of_parse_phandle - Resolve a phandle property to a device_node pointer |
| 861 | * @np: Pointer to device node holding phandle property |
| 862 | * @phandle_name: Name of property holding a phandle value |
| 863 | * @index: For properties holding a table of phandles, this is the index into |
| 864 | * the table |
| 865 | * |
| 866 | * Returns the device_node pointer with refcount incremented. Use |
| 867 | * of_node_put() on it when done. |
| 868 | */ |
| 869 | struct device_node * |
| 870 | of_parse_phandle(struct device_node *np, const char *phandle_name, int index) |
| 871 | { |
Grant Likely | 9a6b2e5 | 2010-07-23 01:48:25 -0600 | [diff] [blame] | 872 | const __be32 *phandle; |
Grant Likely | 739649c | 2009-04-25 12:52:40 +0000 | [diff] [blame] | 873 | int size; |
| 874 | |
| 875 | phandle = of_get_property(np, phandle_name, &size); |
| 876 | if ((!phandle) || (size < sizeof(*phandle) * (index + 1))) |
| 877 | return NULL; |
| 878 | |
Grant Likely | 9a6b2e5 | 2010-07-23 01:48:25 -0600 | [diff] [blame] | 879 | return of_find_node_by_phandle(be32_to_cpup(phandle + index)); |
Grant Likely | 739649c | 2009-04-25 12:52:40 +0000 | [diff] [blame] | 880 | } |
| 881 | EXPORT_SYMBOL(of_parse_phandle); |
| 882 | |
| 883 | /** |
Grant Likely | 15c9a0a | 2011-12-12 09:25:57 -0700 | [diff] [blame] | 884 | * of_parse_phandle_with_args() - Find a node pointed by phandle in a list |
Anton Vorontsov | 64b60e0 | 2008-10-10 04:43:17 +0000 | [diff] [blame] | 885 | * @np: pointer to a device tree node containing a list |
| 886 | * @list_name: property name that contains a list |
| 887 | * @cells_name: property name that specifies phandles' arguments count |
| 888 | * @index: index of a phandle to parse out |
Grant Likely | 15c9a0a | 2011-12-12 09:25:57 -0700 | [diff] [blame] | 889 | * @out_args: optional pointer to output arguments structure (will be filled) |
Anton Vorontsov | 64b60e0 | 2008-10-10 04:43:17 +0000 | [diff] [blame] | 890 | * |
| 891 | * This function is useful to parse lists of phandles and their arguments. |
Grant Likely | 15c9a0a | 2011-12-12 09:25:57 -0700 | [diff] [blame] | 892 | * Returns 0 on success and fills out_args, on error returns appropriate |
| 893 | * errno value. |
| 894 | * |
| 895 | * Caller is responsible to call of_node_put() on the returned out_args->node |
| 896 | * pointer. |
Anton Vorontsov | 64b60e0 | 2008-10-10 04:43:17 +0000 | [diff] [blame] | 897 | * |
| 898 | * Example: |
| 899 | * |
| 900 | * phandle1: node1 { |
| 901 | * #list-cells = <2>; |
| 902 | * } |
| 903 | * |
| 904 | * phandle2: node2 { |
| 905 | * #list-cells = <1>; |
| 906 | * } |
| 907 | * |
| 908 | * node3 { |
| 909 | * list = <&phandle1 1 2 &phandle2 3>; |
| 910 | * } |
| 911 | * |
| 912 | * To get a device_node of the `node2' node you may call this: |
Grant Likely | 15c9a0a | 2011-12-12 09:25:57 -0700 | [diff] [blame] | 913 | * of_parse_phandle_with_args(node3, "list", "#list-cells", 1, &args); |
Anton Vorontsov | 64b60e0 | 2008-10-10 04:43:17 +0000 | [diff] [blame] | 914 | */ |
Grant Likely | 15c9a0a | 2011-12-12 09:25:57 -0700 | [diff] [blame] | 915 | int of_parse_phandle_with_args(struct device_node *np, const char *list_name, |
Anton Vorontsov | 64b60e0 | 2008-10-10 04:43:17 +0000 | [diff] [blame] | 916 | const char *cells_name, int index, |
Grant Likely | 15c9a0a | 2011-12-12 09:25:57 -0700 | [diff] [blame] | 917 | struct of_phandle_args *out_args) |
Anton Vorontsov | 64b60e0 | 2008-10-10 04:43:17 +0000 | [diff] [blame] | 918 | { |
Grant Likely | 15c9a0a | 2011-12-12 09:25:57 -0700 | [diff] [blame] | 919 | const __be32 *list, *list_end; |
| 920 | int size, cur_index = 0; |
| 921 | uint32_t count = 0; |
Anton Vorontsov | 64b60e0 | 2008-10-10 04:43:17 +0000 | [diff] [blame] | 922 | struct device_node *node = NULL; |
Grant Likely | 15c9a0a | 2011-12-12 09:25:57 -0700 | [diff] [blame] | 923 | phandle phandle; |
Anton Vorontsov | 64b60e0 | 2008-10-10 04:43:17 +0000 | [diff] [blame] | 924 | |
Grant Likely | 15c9a0a | 2011-12-12 09:25:57 -0700 | [diff] [blame] | 925 | /* Retrieve the phandle list property */ |
Anton Vorontsov | 64b60e0 | 2008-10-10 04:43:17 +0000 | [diff] [blame] | 926 | list = of_get_property(np, list_name, &size); |
Grant Likely | 15c9a0a | 2011-12-12 09:25:57 -0700 | [diff] [blame] | 927 | if (!list) |
Alexandre Courbot | 1af4c7f | 2012-06-29 13:57:58 +0900 | [diff] [blame] | 928 | return -ENOENT; |
Anton Vorontsov | 64b60e0 | 2008-10-10 04:43:17 +0000 | [diff] [blame] | 929 | list_end = list + size / sizeof(*list); |
| 930 | |
Grant Likely | 15c9a0a | 2011-12-12 09:25:57 -0700 | [diff] [blame] | 931 | /* Loop over the phandles until all the requested entry is found */ |
Anton Vorontsov | 64b60e0 | 2008-10-10 04:43:17 +0000 | [diff] [blame] | 932 | while (list < list_end) { |
Grant Likely | 15c9a0a | 2011-12-12 09:25:57 -0700 | [diff] [blame] | 933 | count = 0; |
Anton Vorontsov | 64b60e0 | 2008-10-10 04:43:17 +0000 | [diff] [blame] | 934 | |
Grant Likely | 15c9a0a | 2011-12-12 09:25:57 -0700 | [diff] [blame] | 935 | /* |
| 936 | * If phandle is 0, then it is an empty entry with no |
| 937 | * arguments. Skip forward to the next entry. |
| 938 | */ |
Grant Likely | 9a6b2e5 | 2010-07-23 01:48:25 -0600 | [diff] [blame] | 939 | phandle = be32_to_cpup(list++); |
Grant Likely | 15c9a0a | 2011-12-12 09:25:57 -0700 | [diff] [blame] | 940 | if (phandle) { |
| 941 | /* |
| 942 | * Find the provider node and parse the #*-cells |
| 943 | * property to determine the argument length |
| 944 | */ |
| 945 | node = of_find_node_by_phandle(phandle); |
| 946 | if (!node) { |
| 947 | pr_err("%s: could not find phandle\n", |
| 948 | np->full_name); |
| 949 | break; |
| 950 | } |
| 951 | if (of_property_read_u32(node, cells_name, &count)) { |
| 952 | pr_err("%s: could not get %s for %s\n", |
| 953 | np->full_name, cells_name, |
| 954 | node->full_name); |
| 955 | break; |
| 956 | } |
Anton Vorontsov | 64b60e0 | 2008-10-10 04:43:17 +0000 | [diff] [blame] | 957 | |
Grant Likely | 15c9a0a | 2011-12-12 09:25:57 -0700 | [diff] [blame] | 958 | /* |
| 959 | * Make sure that the arguments actually fit in the |
| 960 | * remaining property data length |
| 961 | */ |
| 962 | if (list + count > list_end) { |
| 963 | pr_err("%s: arguments longer than property\n", |
| 964 | np->full_name); |
| 965 | break; |
| 966 | } |
Anton Vorontsov | 64b60e0 | 2008-10-10 04:43:17 +0000 | [diff] [blame] | 967 | } |
| 968 | |
Grant Likely | 15c9a0a | 2011-12-12 09:25:57 -0700 | [diff] [blame] | 969 | /* |
| 970 | * All of the error cases above bail out of the loop, so at |
| 971 | * this point, the parsing is successful. If the requested |
| 972 | * index matches, then fill the out_args structure and return, |
| 973 | * or return -ENOENT for an empty entry. |
| 974 | */ |
| 975 | if (cur_index == index) { |
| 976 | if (!phandle) |
| 977 | return -ENOENT; |
Anton Vorontsov | 64b60e0 | 2008-10-10 04:43:17 +0000 | [diff] [blame] | 978 | |
Grant Likely | 15c9a0a | 2011-12-12 09:25:57 -0700 | [diff] [blame] | 979 | if (out_args) { |
| 980 | int i; |
| 981 | if (WARN_ON(count > MAX_PHANDLE_ARGS)) |
| 982 | count = MAX_PHANDLE_ARGS; |
| 983 | out_args->np = node; |
| 984 | out_args->args_count = count; |
| 985 | for (i = 0; i < count; i++) |
| 986 | out_args->args[i] = be32_to_cpup(list++); |
| 987 | } |
| 988 | return 0; |
Anton Vorontsov | 64b60e0 | 2008-10-10 04:43:17 +0000 | [diff] [blame] | 989 | } |
Anton Vorontsov | 64b60e0 | 2008-10-10 04:43:17 +0000 | [diff] [blame] | 990 | |
| 991 | of_node_put(node); |
| 992 | node = NULL; |
Grant Likely | 15c9a0a | 2011-12-12 09:25:57 -0700 | [diff] [blame] | 993 | list += count; |
Anton Vorontsov | 64b60e0 | 2008-10-10 04:43:17 +0000 | [diff] [blame] | 994 | cur_index++; |
| 995 | } |
| 996 | |
Grant Likely | 15c9a0a | 2011-12-12 09:25:57 -0700 | [diff] [blame] | 997 | /* Loop exited without finding a valid entry; return an error */ |
| 998 | if (node) |
| 999 | of_node_put(node); |
| 1000 | return -EINVAL; |
Anton Vorontsov | 64b60e0 | 2008-10-10 04:43:17 +0000 | [diff] [blame] | 1001 | } |
Grant Likely | 15c9a0a | 2011-12-12 09:25:57 -0700 | [diff] [blame] | 1002 | EXPORT_SYMBOL(of_parse_phandle_with_args); |
Grant Likely | 02af11b | 2009-11-23 20:16:45 -0700 | [diff] [blame] | 1003 | |
| 1004 | /** |
| 1005 | * prom_add_property - Add a property to a node |
| 1006 | */ |
| 1007 | int prom_add_property(struct device_node *np, struct property *prop) |
| 1008 | { |
| 1009 | struct property **next; |
| 1010 | unsigned long flags; |
| 1011 | |
| 1012 | prop->next = NULL; |
| 1013 | write_lock_irqsave(&devtree_lock, flags); |
| 1014 | next = &np->properties; |
| 1015 | while (*next) { |
| 1016 | if (strcmp(prop->name, (*next)->name) == 0) { |
| 1017 | /* duplicate ! don't insert it */ |
| 1018 | write_unlock_irqrestore(&devtree_lock, flags); |
| 1019 | return -1; |
| 1020 | } |
| 1021 | next = &(*next)->next; |
| 1022 | } |
| 1023 | *next = prop; |
| 1024 | write_unlock_irqrestore(&devtree_lock, flags); |
| 1025 | |
| 1026 | #ifdef CONFIG_PROC_DEVICETREE |
| 1027 | /* try to add to proc as well if it was initialized */ |
| 1028 | if (np->pde) |
| 1029 | proc_device_tree_add_prop(np->pde, prop); |
| 1030 | #endif /* CONFIG_PROC_DEVICETREE */ |
| 1031 | |
| 1032 | return 0; |
| 1033 | } |
| 1034 | |
| 1035 | /** |
| 1036 | * prom_remove_property - Remove a property from a node. |
| 1037 | * |
| 1038 | * Note that we don't actually remove it, since we have given out |
| 1039 | * who-knows-how-many pointers to the data using get-property. |
| 1040 | * Instead we just move the property to the "dead properties" |
| 1041 | * list, so it won't be found any more. |
| 1042 | */ |
| 1043 | int prom_remove_property(struct device_node *np, struct property *prop) |
| 1044 | { |
| 1045 | struct property **next; |
| 1046 | unsigned long flags; |
| 1047 | int found = 0; |
| 1048 | |
| 1049 | write_lock_irqsave(&devtree_lock, flags); |
| 1050 | next = &np->properties; |
| 1051 | while (*next) { |
| 1052 | if (*next == prop) { |
| 1053 | /* found the node */ |
| 1054 | *next = prop->next; |
| 1055 | prop->next = np->deadprops; |
| 1056 | np->deadprops = prop; |
| 1057 | found = 1; |
| 1058 | break; |
| 1059 | } |
| 1060 | next = &(*next)->next; |
| 1061 | } |
| 1062 | write_unlock_irqrestore(&devtree_lock, flags); |
| 1063 | |
| 1064 | if (!found) |
| 1065 | return -ENODEV; |
| 1066 | |
| 1067 | #ifdef CONFIG_PROC_DEVICETREE |
| 1068 | /* try to remove the proc node as well */ |
| 1069 | if (np->pde) |
| 1070 | proc_device_tree_remove_prop(np->pde, prop); |
| 1071 | #endif /* CONFIG_PROC_DEVICETREE */ |
| 1072 | |
| 1073 | return 0; |
| 1074 | } |
| 1075 | |
| 1076 | /* |
Dong Aisheng | 475d009 | 2012-07-11 15:16:37 +1000 | [diff] [blame] | 1077 | * prom_update_property - Update a property in a node, if the property does |
| 1078 | * not exist, add it. |
Grant Likely | 02af11b | 2009-11-23 20:16:45 -0700 | [diff] [blame] | 1079 | * |
| 1080 | * Note that we don't actually remove it, since we have given out |
| 1081 | * who-knows-how-many pointers to the data using get-property. |
| 1082 | * Instead we just move the property to the "dead properties" list, |
| 1083 | * and add the new property to the property list |
| 1084 | */ |
| 1085 | int prom_update_property(struct device_node *np, |
Dong Aisheng | 475d009 | 2012-07-11 15:16:37 +1000 | [diff] [blame] | 1086 | struct property *newprop) |
Grant Likely | 02af11b | 2009-11-23 20:16:45 -0700 | [diff] [blame] | 1087 | { |
Dong Aisheng | 475d009 | 2012-07-11 15:16:37 +1000 | [diff] [blame] | 1088 | struct property **next, *oldprop; |
Grant Likely | 02af11b | 2009-11-23 20:16:45 -0700 | [diff] [blame] | 1089 | unsigned long flags; |
| 1090 | int found = 0; |
| 1091 | |
Dong Aisheng | 475d009 | 2012-07-11 15:16:37 +1000 | [diff] [blame] | 1092 | if (!newprop->name) |
| 1093 | return -EINVAL; |
| 1094 | |
| 1095 | oldprop = of_find_property(np, newprop->name, NULL); |
| 1096 | if (!oldprop) |
| 1097 | return prom_add_property(np, newprop); |
| 1098 | |
Grant Likely | 02af11b | 2009-11-23 20:16:45 -0700 | [diff] [blame] | 1099 | write_lock_irqsave(&devtree_lock, flags); |
| 1100 | next = &np->properties; |
| 1101 | while (*next) { |
| 1102 | if (*next == oldprop) { |
| 1103 | /* found the node */ |
| 1104 | newprop->next = oldprop->next; |
| 1105 | *next = newprop; |
| 1106 | oldprop->next = np->deadprops; |
| 1107 | np->deadprops = oldprop; |
| 1108 | found = 1; |
| 1109 | break; |
| 1110 | } |
| 1111 | next = &(*next)->next; |
| 1112 | } |
| 1113 | write_unlock_irqrestore(&devtree_lock, flags); |
| 1114 | |
| 1115 | if (!found) |
| 1116 | return -ENODEV; |
| 1117 | |
| 1118 | #ifdef CONFIG_PROC_DEVICETREE |
| 1119 | /* try to add to proc as well if it was initialized */ |
| 1120 | if (np->pde) |
| 1121 | proc_device_tree_update_prop(np->pde, newprop, oldprop); |
| 1122 | #endif /* CONFIG_PROC_DEVICETREE */ |
| 1123 | |
| 1124 | return 0; |
| 1125 | } |
Grant Likely | fcdeb7f | 2010-01-29 05:04:33 -0700 | [diff] [blame] | 1126 | |
| 1127 | #if defined(CONFIG_OF_DYNAMIC) |
| 1128 | /* |
| 1129 | * Support for dynamic device trees. |
| 1130 | * |
| 1131 | * On some platforms, the device tree can be manipulated at runtime. |
| 1132 | * The routines in this section support adding, removing and changing |
| 1133 | * device tree nodes. |
| 1134 | */ |
| 1135 | |
| 1136 | /** |
| 1137 | * of_attach_node - Plug a device node into the tree and global list. |
| 1138 | */ |
| 1139 | void of_attach_node(struct device_node *np) |
| 1140 | { |
| 1141 | unsigned long flags; |
| 1142 | |
| 1143 | write_lock_irqsave(&devtree_lock, flags); |
| 1144 | np->sibling = np->parent->child; |
| 1145 | np->allnext = allnodes; |
| 1146 | np->parent->child = np; |
| 1147 | allnodes = np; |
| 1148 | write_unlock_irqrestore(&devtree_lock, flags); |
| 1149 | } |
| 1150 | |
| 1151 | /** |
| 1152 | * of_detach_node - "Unplug" a node from the device tree. |
| 1153 | * |
| 1154 | * The caller must hold a reference to the node. The memory associated with |
| 1155 | * the node is not freed until its refcount goes to zero. |
| 1156 | */ |
| 1157 | void of_detach_node(struct device_node *np) |
| 1158 | { |
| 1159 | struct device_node *parent; |
| 1160 | unsigned long flags; |
| 1161 | |
| 1162 | write_lock_irqsave(&devtree_lock, flags); |
| 1163 | |
| 1164 | parent = np->parent; |
| 1165 | if (!parent) |
| 1166 | goto out_unlock; |
| 1167 | |
| 1168 | if (allnodes == np) |
| 1169 | allnodes = np->allnext; |
| 1170 | else { |
| 1171 | struct device_node *prev; |
| 1172 | for (prev = allnodes; |
| 1173 | prev->allnext != np; |
| 1174 | prev = prev->allnext) |
| 1175 | ; |
| 1176 | prev->allnext = np->allnext; |
| 1177 | } |
| 1178 | |
| 1179 | if (parent->child == np) |
| 1180 | parent->child = np->sibling; |
| 1181 | else { |
| 1182 | struct device_node *prevsib; |
| 1183 | for (prevsib = np->parent->child; |
| 1184 | prevsib->sibling != np; |
| 1185 | prevsib = prevsib->sibling) |
| 1186 | ; |
| 1187 | prevsib->sibling = np->sibling; |
| 1188 | } |
| 1189 | |
| 1190 | of_node_set_flag(np, OF_DETACHED); |
| 1191 | |
| 1192 | out_unlock: |
| 1193 | write_unlock_irqrestore(&devtree_lock, flags); |
| 1194 | } |
| 1195 | #endif /* defined(CONFIG_OF_DYNAMIC) */ |
| 1196 | |
Shawn Guo | 611cad7 | 2011-08-15 15:28:14 +0800 | [diff] [blame] | 1197 | static void of_alias_add(struct alias_prop *ap, struct device_node *np, |
| 1198 | int id, const char *stem, int stem_len) |
| 1199 | { |
| 1200 | ap->np = np; |
| 1201 | ap->id = id; |
| 1202 | strncpy(ap->stem, stem, stem_len); |
| 1203 | ap->stem[stem_len] = 0; |
| 1204 | list_add_tail(&ap->link, &aliases_lookup); |
| 1205 | pr_debug("adding DT alias:%s: stem=%s id=%i node=%s\n", |
Grant Likely | 74a7f08 | 2012-06-15 11:50:25 -0600 | [diff] [blame] | 1206 | ap->alias, ap->stem, ap->id, of_node_full_name(np)); |
Shawn Guo | 611cad7 | 2011-08-15 15:28:14 +0800 | [diff] [blame] | 1207 | } |
| 1208 | |
| 1209 | /** |
| 1210 | * of_alias_scan - Scan all properties of 'aliases' node |
| 1211 | * |
| 1212 | * The function scans all the properties of 'aliases' node and populate |
| 1213 | * the the global lookup table with the properties. It returns the |
| 1214 | * number of alias_prop found, or error code in error case. |
| 1215 | * |
| 1216 | * @dt_alloc: An allocator that provides a virtual address to memory |
| 1217 | * for the resulting tree |
| 1218 | */ |
| 1219 | void of_alias_scan(void * (*dt_alloc)(u64 size, u64 align)) |
| 1220 | { |
| 1221 | struct property *pp; |
| 1222 | |
| 1223 | of_chosen = of_find_node_by_path("/chosen"); |
| 1224 | if (of_chosen == NULL) |
| 1225 | of_chosen = of_find_node_by_path("/chosen@0"); |
| 1226 | of_aliases = of_find_node_by_path("/aliases"); |
| 1227 | if (!of_aliases) |
| 1228 | return; |
| 1229 | |
Dong Aisheng | 8af0da9 | 2011-12-22 20:19:24 +0800 | [diff] [blame] | 1230 | for_each_property_of_node(of_aliases, pp) { |
Shawn Guo | 611cad7 | 2011-08-15 15:28:14 +0800 | [diff] [blame] | 1231 | const char *start = pp->name; |
| 1232 | const char *end = start + strlen(start); |
| 1233 | struct device_node *np; |
| 1234 | struct alias_prop *ap; |
| 1235 | int id, len; |
| 1236 | |
| 1237 | /* Skip those we do not want to proceed */ |
| 1238 | if (!strcmp(pp->name, "name") || |
| 1239 | !strcmp(pp->name, "phandle") || |
| 1240 | !strcmp(pp->name, "linux,phandle")) |
| 1241 | continue; |
| 1242 | |
| 1243 | np = of_find_node_by_path(pp->value); |
| 1244 | if (!np) |
| 1245 | continue; |
| 1246 | |
| 1247 | /* walk the alias backwards to extract the id and work out |
| 1248 | * the 'stem' string */ |
| 1249 | while (isdigit(*(end-1)) && end > start) |
| 1250 | end--; |
| 1251 | len = end - start; |
| 1252 | |
| 1253 | if (kstrtoint(end, 10, &id) < 0) |
| 1254 | continue; |
| 1255 | |
| 1256 | /* Allocate an alias_prop with enough space for the stem */ |
| 1257 | ap = dt_alloc(sizeof(*ap) + len + 1, 4); |
| 1258 | if (!ap) |
| 1259 | continue; |
| 1260 | ap->alias = start; |
| 1261 | of_alias_add(ap, np, id, start, len); |
| 1262 | } |
| 1263 | } |
| 1264 | |
| 1265 | /** |
| 1266 | * of_alias_get_id - Get alias id for the given device_node |
| 1267 | * @np: Pointer to the given device_node |
| 1268 | * @stem: Alias stem of the given device_node |
| 1269 | * |
| 1270 | * The function travels the lookup table to get alias id for the given |
| 1271 | * device_node and alias stem. It returns the alias id if find it. |
| 1272 | */ |
| 1273 | int of_alias_get_id(struct device_node *np, const char *stem) |
| 1274 | { |
| 1275 | struct alias_prop *app; |
| 1276 | int id = -ENODEV; |
| 1277 | |
| 1278 | mutex_lock(&of_aliases_mutex); |
| 1279 | list_for_each_entry(app, &aliases_lookup, link) { |
| 1280 | if (strcmp(app->stem, stem) != 0) |
| 1281 | continue; |
| 1282 | |
| 1283 | if (np == app->np) { |
| 1284 | id = app->id; |
| 1285 | break; |
| 1286 | } |
| 1287 | } |
| 1288 | mutex_unlock(&of_aliases_mutex); |
| 1289 | |
| 1290 | return id; |
| 1291 | } |
| 1292 | EXPORT_SYMBOL_GPL(of_alias_get_id); |
Stephen Warren | c541adc | 2012-04-04 09:27:46 -0600 | [diff] [blame] | 1293 | |
| 1294 | const __be32 *of_prop_next_u32(struct property *prop, const __be32 *cur, |
| 1295 | u32 *pu) |
| 1296 | { |
| 1297 | const void *curv = cur; |
| 1298 | |
| 1299 | if (!prop) |
| 1300 | return NULL; |
| 1301 | |
| 1302 | if (!cur) { |
| 1303 | curv = prop->value; |
| 1304 | goto out_val; |
| 1305 | } |
| 1306 | |
| 1307 | curv += sizeof(*cur); |
| 1308 | if (curv >= prop->value + prop->length) |
| 1309 | return NULL; |
| 1310 | |
| 1311 | out_val: |
| 1312 | *pu = be32_to_cpup(curv); |
| 1313 | return curv; |
| 1314 | } |
| 1315 | EXPORT_SYMBOL_GPL(of_prop_next_u32); |
| 1316 | |
| 1317 | const char *of_prop_next_string(struct property *prop, const char *cur) |
| 1318 | { |
| 1319 | const void *curv = cur; |
| 1320 | |
| 1321 | if (!prop) |
| 1322 | return NULL; |
| 1323 | |
| 1324 | if (!cur) |
| 1325 | return prop->value; |
| 1326 | |
| 1327 | curv += strlen(cur) + 1; |
| 1328 | if (curv >= prop->value + prop->length) |
| 1329 | return NULL; |
| 1330 | |
| 1331 | return curv; |
| 1332 | } |
| 1333 | EXPORT_SYMBOL_GPL(of_prop_next_string); |