1 /* SPDX-License-Identifier: GPL-2.0+ */ 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. 13 */ 14 #include <linux/types.h> 15 #include <linux/bitops.h> 16 #include <linux/errno.h> 17 #include <linux/kobject.h> 18 #include <linux/mod_devicetable.h> 19 #include <linux/spinlock.h> 20 #include <linux/topology.h> 21 #include <linux/notifier.h> 22 #include <linux/property.h> 23 #include <linux/list.h> 24 25 #include <asm/byteorder.h> 26 #include <asm/errno.h> 27 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; 36 #if defined(CONFIG_OF_DYNAMIC) || defined(CONFIG_SPARC) 37 unsigned long _flags; 38 #endif 39 #if defined(CONFIG_OF_PROMTREE) 40 unsigned int unique_id; 41 #endif 42 #if defined(CONFIG_OF_KOBJ) 43 struct bin_attribute attr; 44 #endif 45 }; 46 47 #if defined(CONFIG_SPARC) 48 struct of_irq_controller; 49 #endif 50 51 struct device_node { 52 const char *name; 53 phandle phandle; 54 const char *full_name; 55 struct fwnode_handle fwnode; 56 57 struct property *properties; 58 struct property *deadprops; /* removed properties */ 59 struct device_node *parent; 60 struct device_node *child; 61 struct device_node *sibling; 62 #if defined(CONFIG_OF_KOBJ) 63 struct kobject kobj; 64 #endif 65 unsigned long _flags; 66 void *data; 67 #if defined(CONFIG_SPARC) 68 unsigned int unique_id; 69 struct of_irq_controller *irq_trans; 70 #endif 71 }; 72 73 #define MAX_PHANDLE_ARGS 16 74 struct of_phandle_args { 75 struct device_node *np; 76 int args_count; 77 uint32_t args[MAX_PHANDLE_ARGS]; 78 }; 79 80 struct of_phandle_iterator { 81 /* Common iterator information */ 82 const char *cells_name; 83 int cell_count; 84 const struct device_node *parent; 85 86 /* List size information */ 87 const __be32 *list_end; 88 const __be32 *phandle_end; 89 90 /* Current position state */ 91 const __be32 *cur; 92 uint32_t cur_count; 93 phandle phandle; 94 struct device_node *node; 95 }; 96 97 struct of_reconfig_data { 98 struct device_node *dn; 99 struct property *prop; 100 struct property *old_prop; 101 }; 102 103 /* initialize a node */ 104 extern struct kobj_type of_node_ktype; 105 extern const struct fwnode_operations of_fwnode_ops; 106 static inline void of_node_init(struct device_node *node) 107 { 108 #if defined(CONFIG_OF_KOBJ) 109 kobject_init(&node->kobj, &of_node_ktype); 110 #endif 111 fwnode_init(&node->fwnode, &of_fwnode_ops); 112 } 113 114 #if defined(CONFIG_OF_KOBJ) 115 #define of_node_kobj(n) (&(n)->kobj) 116 #else 117 #define of_node_kobj(n) NULL 118 #endif 119 120 #ifdef CONFIG_OF_DYNAMIC 121 extern struct device_node *of_node_get(struct device_node *node); 122 extern void of_node_put(struct device_node *node); 123 #else /* CONFIG_OF_DYNAMIC */ 124 /* Dummy ref counting routines - to be implemented later */ 125 static inline struct device_node *of_node_get(struct device_node *node) 126 { 127 return node; 128 } 129 static inline void of_node_put(struct device_node *node) { } 130 #endif /* !CONFIG_OF_DYNAMIC */ 131 132 /* Pointer for first entry in chain of all nodes. */ 133 extern struct device_node *of_root; 134 extern struct device_node *of_chosen; 135 extern struct device_node *of_aliases; 136 extern struct device_node *of_stdout; 137 extern raw_spinlock_t devtree_lock; 138 139 /* 140 * struct device_node flag descriptions 141 * (need to be visible even when !CONFIG_OF) 142 */ 143 #define OF_DYNAMIC 1 /* (and properties) allocated via kmalloc */ 144 #define OF_DETACHED 2 /* detached from the device tree */ 145 #define OF_POPULATED 3 /* device already created */ 146 #define OF_POPULATED_BUS 4 /* platform bus created for children */ 147 #define OF_OVERLAY 5 /* allocated for an overlay */ 148 #define OF_OVERLAY_FREE_CSET 6 /* in overlay cset being freed */ 149 150 #define OF_BAD_ADDR ((u64)-1) 151 152 #ifdef CONFIG_OF 153 void of_core_init(void); 154 155 static inline bool is_of_node(const struct fwnode_handle *fwnode) 156 { 157 return !IS_ERR_OR_NULL(fwnode) && fwnode->ops == &of_fwnode_ops; 158 } 159 160 #define to_of_node(__fwnode) \ 161 ({ \ 162 typeof(__fwnode) __to_of_node_fwnode = (__fwnode); \ 163 \ 164 is_of_node(__to_of_node_fwnode) ? \ 165 container_of(__to_of_node_fwnode, \ 166 struct device_node, fwnode) : \ 167 NULL; \ 168 }) 169 170 #define of_fwnode_handle(node) \ 171 ({ \ 172 typeof(node) __of_fwnode_handle_node = (node); \ 173 \ 174 __of_fwnode_handle_node ? \ 175 &__of_fwnode_handle_node->fwnode : NULL; \ 176 }) 177 178 static inline bool of_have_populated_dt(void) 179 { 180 return of_root != NULL; 181 } 182 183 static inline bool of_node_is_root(const struct device_node *node) 184 { 185 return node && (node->parent == NULL); 186 } 187 188 static inline int of_node_check_flag(const struct device_node *n, unsigned long flag) 189 { 190 return test_bit(flag, &n->_flags); 191 } 192 193 static inline int of_node_test_and_set_flag(struct device_node *n, 194 unsigned long flag) 195 { 196 return test_and_set_bit(flag, &n->_flags); 197 } 198 199 static inline void of_node_set_flag(struct device_node *n, unsigned long flag) 200 { 201 set_bit(flag, &n->_flags); 202 } 203 204 static inline void of_node_clear_flag(struct device_node *n, unsigned long flag) 205 { 206 clear_bit(flag, &n->_flags); 207 } 208 209 #if defined(CONFIG_OF_DYNAMIC) || defined(CONFIG_SPARC) 210 static inline int of_property_check_flag(struct property *p, unsigned long flag) 211 { 212 return test_bit(flag, &p->_flags); 213 } 214 215 static inline void of_property_set_flag(struct property *p, unsigned long flag) 216 { 217 set_bit(flag, &p->_flags); 218 } 219 220 static inline void of_property_clear_flag(struct property *p, unsigned long flag) 221 { 222 clear_bit(flag, &p->_flags); 223 } 224 #endif 225 226 extern struct device_node *__of_find_all_nodes(struct device_node *prev); 227 extern struct device_node *of_find_all_nodes(struct device_node *prev); 228 229 /* 230 * OF address retrieval & translation 231 */ 232 233 /* Helper to read a big number; size is in cells (not bytes) */ 234 static inline u64 of_read_number(const __be32 *cell, int size) 235 { 236 u64 r = 0; 237 for (; size--; cell++) 238 r = (r << 32) | be32_to_cpu(*cell); 239 return r; 240 } 241 242 /* Like of_read_number, but we want an unsigned long result */ 243 static inline unsigned long of_read_ulong(const __be32 *cell, int size) 244 { 245 /* toss away upper bits if unsigned long is smaller than u64 */ 246 return of_read_number(cell, size); 247 } 248 249 #if defined(CONFIG_SPARC) 250 #include <asm/prom.h> 251 #endif 252 253 #define OF_IS_DYNAMIC(x) test_bit(OF_DYNAMIC, &x->_flags) 254 #define OF_MARK_DYNAMIC(x) set_bit(OF_DYNAMIC, &x->_flags) 255 256 extern bool of_node_name_eq(const struct device_node *np, const char *name); 257 extern bool of_node_name_prefix(const struct device_node *np, const char *prefix); 258 259 static inline const char *of_node_full_name(const struct device_node *np) 260 { 261 return np ? np->full_name : "<no-node>"; 262 } 263 264 #define for_each_of_allnodes_from(from, dn) \ 265 for (dn = __of_find_all_nodes(from); dn; dn = __of_find_all_nodes(dn)) 266 #define for_each_of_allnodes(dn) for_each_of_allnodes_from(NULL, dn) 267 extern struct device_node *of_find_node_by_name(struct device_node *from, 268 const char *name); 269 extern struct device_node *of_find_node_by_type(struct device_node *from, 270 const char *type); 271 extern struct device_node *of_find_compatible_node(struct device_node *from, 272 const char *type, const char *compat); 273 extern struct device_node *of_find_matching_node_and_match( 274 struct device_node *from, 275 const struct of_device_id *matches, 276 const struct of_device_id **match); 277 278 extern struct device_node *of_find_node_opts_by_path(const char *path, 279 const char **opts); 280 static inline struct device_node *of_find_node_by_path(const char *path) 281 { 282 return of_find_node_opts_by_path(path, NULL); 283 } 284 285 extern struct device_node *of_find_node_by_phandle(phandle handle); 286 extern struct device_node *of_get_parent(const struct device_node *node); 287 extern struct device_node *of_get_next_parent(struct device_node *node); 288 extern struct device_node *of_get_next_child(const struct device_node *node, 289 struct device_node *prev); 290 extern struct device_node *of_get_next_available_child( 291 const struct device_node *node, struct device_node *prev); 292 293 extern struct device_node *of_get_compatible_child(const struct device_node *parent, 294 const char *compatible); 295 extern struct device_node *of_get_child_by_name(const struct device_node *node, 296 const char *name); 297 298 /* cache lookup */ 299 extern struct device_node *of_find_next_cache_node(const struct device_node *); 300 extern int of_find_last_cache_level(unsigned int cpu); 301 extern struct device_node *of_find_node_with_property( 302 struct device_node *from, const char *prop_name); 303 304 extern struct property *of_find_property(const struct device_node *np, 305 const char *name, 306 int *lenp); 307 extern int of_property_count_elems_of_size(const struct device_node *np, 308 const char *propname, int elem_size); 309 extern int of_property_read_u32_index(const struct device_node *np, 310 const char *propname, 311 u32 index, u32 *out_value); 312 extern int of_property_read_u64_index(const struct device_node *np, 313 const char *propname, 314 u32 index, u64 *out_value); 315 extern int of_property_read_variable_u8_array(const struct device_node *np, 316 const char *propname, u8 *out_values, 317 size_t sz_min, size_t sz_max); 318 extern int of_property_read_variable_u16_array(const struct device_node *np, 319 const char *propname, u16 *out_values, 320 size_t sz_min, size_t sz_max); 321 extern int of_property_read_variable_u32_array(const struct device_node *np, 322 const char *propname, 323 u32 *out_values, 324 size_t sz_min, 325 size_t sz_max); 326 extern int of_property_read_u64(const struct device_node *np, 327 const char *propname, u64 *out_value); 328 extern int of_property_read_variable_u64_array(const struct device_node *np, 329 const char *propname, 330 u64 *out_values, 331 size_t sz_min, 332 size_t sz_max); 333 334 extern int of_property_read_string(const struct device_node *np, 335 const char *propname, 336 const char **out_string); 337 extern int of_property_match_string(const struct device_node *np, 338 const char *propname, 339 const char *string); 340 extern int of_property_read_string_helper(const struct device_node *np, 341 const char *propname, 342 const char **out_strs, size_t sz, int index); 343 extern int of_device_is_compatible(const struct device_node *device, 344 const char *); 345 extern int of_device_compatible_match(struct device_node *device, 346 const char *const *compat); 347 extern bool of_device_is_available(const struct device_node *device); 348 extern bool of_device_is_big_endian(const struct device_node *device); 349 extern const void *of_get_property(const struct device_node *node, 350 const char *name, 351 int *lenp); 352 extern struct device_node *of_get_cpu_node(int cpu, unsigned int *thread); 353 extern struct device_node *of_get_next_cpu_node(struct device_node *prev); 354 extern struct device_node *of_get_cpu_state_node(struct device_node *cpu_node, 355 int index); 356 extern u64 of_get_cpu_hwid(struct device_node *cpun, unsigned int thread); 357 358 #define for_each_property_of_node(dn, pp) \ 359 for (pp = dn->properties; pp != NULL; pp = pp->next) 360 361 extern int of_n_addr_cells(struct device_node *np); 362 extern int of_n_size_cells(struct device_node *np); 363 extern const struct of_device_id *of_match_node( 364 const struct of_device_id *matches, const struct device_node *node); 365 extern int of_modalias_node(struct device_node *node, char *modalias, int len); 366 extern void of_print_phandle_args(const char *msg, const struct of_phandle_args *args); 367 extern int __of_parse_phandle_with_args(const struct device_node *np, 368 const char *list_name, const char *cells_name, int cell_count, 369 int index, struct of_phandle_args *out_args); 370 extern int of_parse_phandle_with_args_map(const struct device_node *np, 371 const char *list_name, const char *stem_name, int index, 372 struct of_phandle_args *out_args); 373 extern int of_count_phandle_with_args(const struct device_node *np, 374 const char *list_name, const char *cells_name); 375 376 /* phandle iterator functions */ 377 extern int of_phandle_iterator_init(struct of_phandle_iterator *it, 378 const struct device_node *np, 379 const char *list_name, 380 const char *cells_name, 381 int cell_count); 382 383 extern int of_phandle_iterator_next(struct of_phandle_iterator *it); 384 extern int of_phandle_iterator_args(struct of_phandle_iterator *it, 385 uint32_t *args, 386 int size); 387 388 extern void of_alias_scan(void * (*dt_alloc)(u64 size, u64 align)); 389 extern int of_alias_get_id(struct device_node *np, const char *stem); 390 extern int of_alias_get_highest_id(const char *stem); 391 392 extern int of_machine_is_compatible(const char *compat); 393 394 extern int of_add_property(struct device_node *np, struct property *prop); 395 extern int of_remove_property(struct device_node *np, struct property *prop); 396 extern int of_update_property(struct device_node *np, struct property *newprop); 397 398 /* For updating the device tree at runtime */ 399 #define OF_RECONFIG_ATTACH_NODE 0x0001 400 #define OF_RECONFIG_DETACH_NODE 0x0002 401 #define OF_RECONFIG_ADD_PROPERTY 0x0003 402 #define OF_RECONFIG_REMOVE_PROPERTY 0x0004 403 #define OF_RECONFIG_UPDATE_PROPERTY 0x0005 404 405 extern int of_attach_node(struct device_node *); 406 extern int of_detach_node(struct device_node *); 407 408 #define of_match_ptr(_ptr) (_ptr) 409 410 /* 411 * struct property *prop; 412 * const __be32 *p; 413 * u32 u; 414 * 415 * of_property_for_each_u32(np, "propname", prop, p, u) 416 * printk("U32 value: %x\n", u); 417 */ 418 const __be32 *of_prop_next_u32(struct property *prop, const __be32 *cur, 419 u32 *pu); 420 /* 421 * struct property *prop; 422 * const char *s; 423 * 424 * of_property_for_each_string(np, "propname", prop, s) 425 * printk("String value: %s\n", s); 426 */ 427 const char *of_prop_next_string(struct property *prop, const char *cur); 428 429 bool of_console_check(struct device_node *dn, char *name, int index); 430 431 extern int of_cpu_node_to_id(struct device_node *np); 432 433 int of_map_id(struct device_node *np, u32 id, 434 const char *map_name, const char *map_mask_name, 435 struct device_node **target, u32 *id_out); 436 437 phys_addr_t of_dma_get_max_cpu_address(struct device_node *np); 438 439 struct kimage; 440 void *of_kexec_alloc_and_setup_fdt(const struct kimage *image, 441 unsigned long initrd_load_addr, 442 unsigned long initrd_len, 443 const char *cmdline, size_t extra_fdt_size); 444 #else /* CONFIG_OF */ 445 446 static inline void of_core_init(void) 447 { 448 } 449 450 static inline bool is_of_node(const struct fwnode_handle *fwnode) 451 { 452 return false; 453 } 454 455 static inline struct device_node *to_of_node(const struct fwnode_handle *fwnode) 456 { 457 return NULL; 458 } 459 460 static inline bool of_node_name_eq(const struct device_node *np, const char *name) 461 { 462 return false; 463 } 464 465 static inline bool of_node_name_prefix(const struct device_node *np, const char *prefix) 466 { 467 return false; 468 } 469 470 static inline const char* of_node_full_name(const struct device_node *np) 471 { 472 return "<no-node>"; 473 } 474 475 static inline struct device_node *of_find_node_by_name(struct device_node *from, 476 const char *name) 477 { 478 return NULL; 479 } 480 481 static inline struct device_node *of_find_node_by_type(struct device_node *from, 482 const char *type) 483 { 484 return NULL; 485 } 486 487 static inline struct device_node *of_find_matching_node_and_match( 488 struct device_node *from, 489 const struct of_device_id *matches, 490 const struct of_device_id **match) 491 { 492 return NULL; 493 } 494 495 static inline struct device_node *of_find_node_by_path(const char *path) 496 { 497 return NULL; 498 } 499 500 static inline struct device_node *of_find_node_opts_by_path(const char *path, 501 const char **opts) 502 { 503 return NULL; 504 } 505 506 static inline struct device_node *of_find_node_by_phandle(phandle handle) 507 { 508 return NULL; 509 } 510 511 static inline struct device_node *of_get_parent(const struct device_node *node) 512 { 513 return NULL; 514 } 515 516 static inline struct device_node *of_get_next_parent(struct device_node *node) 517 { 518 return NULL; 519 } 520 521 static inline struct device_node *of_get_next_child( 522 const struct device_node *node, struct device_node *prev) 523 { 524 return NULL; 525 } 526 527 static inline struct device_node *of_get_next_available_child( 528 const struct device_node *node, struct device_node *prev) 529 { 530 return NULL; 531 } 532 533 static inline struct device_node *of_find_node_with_property( 534 struct device_node *from, const char *prop_name) 535 { 536 return NULL; 537 } 538 539 #define of_fwnode_handle(node) NULL 540 541 static inline bool of_have_populated_dt(void) 542 { 543 return false; 544 } 545 546 static inline struct device_node *of_get_compatible_child(const struct device_node *parent, 547 const char *compatible) 548 { 549 return NULL; 550 } 551 552 static inline struct device_node *of_get_child_by_name( 553 const struct device_node *node, 554 const char *name) 555 { 556 return NULL; 557 } 558 559 static inline int of_device_is_compatible(const struct device_node *device, 560 const char *name) 561 { 562 return 0; 563 } 564 565 static inline int of_device_compatible_match(struct device_node *device, 566 const char *const *compat) 567 { 568 return 0; 569 } 570 571 static inline bool of_device_is_available(const struct device_node *device) 572 { 573 return false; 574 } 575 576 static inline bool of_device_is_big_endian(const struct device_node *device) 577 { 578 return false; 579 } 580 581 static inline struct property *of_find_property(const struct device_node *np, 582 const char *name, 583 int *lenp) 584 { 585 return NULL; 586 } 587 588 static inline struct device_node *of_find_compatible_node( 589 struct device_node *from, 590 const char *type, 591 const char *compat) 592 { 593 return NULL; 594 } 595 596 static inline int of_property_count_elems_of_size(const struct device_node *np, 597 const char *propname, int elem_size) 598 { 599 return -ENOSYS; 600 } 601 602 static inline int of_property_read_u32_index(const struct device_node *np, 603 const char *propname, u32 index, u32 *out_value) 604 { 605 return -ENOSYS; 606 } 607 608 static inline int of_property_read_u64_index(const struct device_node *np, 609 const char *propname, u32 index, u64 *out_value) 610 { 611 return -ENOSYS; 612 } 613 614 static inline const void *of_get_property(const struct device_node *node, 615 const char *name, 616 int *lenp) 617 { 618 return NULL; 619 } 620 621 static inline struct device_node *of_get_cpu_node(int cpu, 622 unsigned int *thread) 623 { 624 return NULL; 625 } 626 627 static inline struct device_node *of_get_next_cpu_node(struct device_node *prev) 628 { 629 return NULL; 630 } 631 632 static inline struct device_node *of_get_cpu_state_node(struct device_node *cpu_node, 633 int index) 634 { 635 return NULL; 636 } 637 638 static inline int of_n_addr_cells(struct device_node *np) 639 { 640 return 0; 641 642 } 643 static inline int of_n_size_cells(struct device_node *np) 644 { 645 return 0; 646 } 647 648 static inline int of_property_read_variable_u8_array(const struct device_node *np, 649 const char *propname, u8 *out_values, 650 size_t sz_min, size_t sz_max) 651 { 652 return -ENOSYS; 653 } 654 655 static inline int of_property_read_variable_u16_array(const struct device_node *np, 656 const char *propname, u16 *out_values, 657 size_t sz_min, size_t sz_max) 658 { 659 return -ENOSYS; 660 } 661 662 static inline int of_property_read_variable_u32_array(const struct device_node *np, 663 const char *propname, 664 u32 *out_values, 665 size_t sz_min, 666 size_t sz_max) 667 { 668 return -ENOSYS; 669 } 670 671 static inline int of_property_read_u64(const struct device_node *np, 672 const char *propname, u64 *out_value) 673 { 674 return -ENOSYS; 675 } 676 677 static inline int of_property_read_variable_u64_array(const struct device_node *np, 678 const char *propname, 679 u64 *out_values, 680 size_t sz_min, 681 size_t sz_max) 682 { 683 return -ENOSYS; 684 } 685 686 static inline int of_property_read_string(const struct device_node *np, 687 const char *propname, 688 const char **out_string) 689 { 690 return -ENOSYS; 691 } 692 693 static inline int of_property_match_string(const struct device_node *np, 694 const char *propname, 695 const char *string) 696 { 697 return -ENOSYS; 698 } 699 700 static inline int of_property_read_string_helper(const struct device_node *np, 701 const char *propname, 702 const char **out_strs, size_t sz, int index) 703 { 704 return -ENOSYS; 705 } 706 707 static inline int __of_parse_phandle_with_args(const struct device_node *np, 708 const char *list_name, 709 const char *cells_name, 710 int cell_count, 711 int index, 712 struct of_phandle_args *out_args) 713 { 714 return -ENOSYS; 715 } 716 717 static inline int of_parse_phandle_with_args_map(const struct device_node *np, 718 const char *list_name, 719 const char *stem_name, 720 int index, 721 struct of_phandle_args *out_args) 722 { 723 return -ENOSYS; 724 } 725 726 static inline int of_count_phandle_with_args(const struct device_node *np, 727 const char *list_name, 728 const char *cells_name) 729 { 730 return -ENOSYS; 731 } 732 733 static inline int of_phandle_iterator_init(struct of_phandle_iterator *it, 734 const struct device_node *np, 735 const char *list_name, 736 const char *cells_name, 737 int cell_count) 738 { 739 return -ENOSYS; 740 } 741 742 static inline int of_phandle_iterator_next(struct of_phandle_iterator *it) 743 { 744 return -ENOSYS; 745 } 746 747 static inline int of_phandle_iterator_args(struct of_phandle_iterator *it, 748 uint32_t *args, 749 int size) 750 { 751 return 0; 752 } 753 754 static inline int of_alias_get_id(struct device_node *np, const char *stem) 755 { 756 return -ENOSYS; 757 } 758 759 static inline int of_alias_get_highest_id(const char *stem) 760 { 761 return -ENOSYS; 762 } 763 764 static inline int of_machine_is_compatible(const char *compat) 765 { 766 return 0; 767 } 768 769 static inline int of_add_property(struct device_node *np, struct property *prop) 770 { 771 return 0; 772 } 773 774 static inline int of_remove_property(struct device_node *np, struct property *prop) 775 { 776 return 0; 777 } 778 779 static inline bool of_console_check(const struct device_node *dn, const char *name, int index) 780 { 781 return false; 782 } 783 784 static inline const __be32 *of_prop_next_u32(struct property *prop, 785 const __be32 *cur, u32 *pu) 786 { 787 return NULL; 788 } 789 790 static inline const char *of_prop_next_string(struct property *prop, 791 const char *cur) 792 { 793 return NULL; 794 } 795 796 static inline int of_node_check_flag(struct device_node *n, unsigned long flag) 797 { 798 return 0; 799 } 800 801 static inline int of_node_test_and_set_flag(struct device_node *n, 802 unsigned long flag) 803 { 804 return 0; 805 } 806 807 static inline void of_node_set_flag(struct device_node *n, unsigned long flag) 808 { 809 } 810 811 static inline void of_node_clear_flag(struct device_node *n, unsigned long flag) 812 { 813 } 814 815 static inline int of_property_check_flag(struct property *p, unsigned long flag) 816 { 817 return 0; 818 } 819 820 static inline void of_property_set_flag(struct property *p, unsigned long flag) 821 { 822 } 823 824 static inline void of_property_clear_flag(struct property *p, unsigned long flag) 825 { 826 } 827 828 static inline int of_cpu_node_to_id(struct device_node *np) 829 { 830 return -ENODEV; 831 } 832 833 static inline int of_map_id(struct device_node *np, u32 id, 834 const char *map_name, const char *map_mask_name, 835 struct device_node **target, u32 *id_out) 836 { 837 return -EINVAL; 838 } 839 840 static inline phys_addr_t of_dma_get_max_cpu_address(struct device_node *np) 841 { 842 return PHYS_ADDR_MAX; 843 } 844 845 #define of_match_ptr(_ptr) NULL 846 #define of_match_node(_matches, _node) NULL 847 #endif /* CONFIG_OF */ 848 849 /* Default string compare functions, Allow arch asm/prom.h to override */ 850 #if !defined(of_compat_cmp) 851 #define of_compat_cmp(s1, s2, l) strcasecmp((s1), (s2)) 852 #define of_prop_cmp(s1, s2) strcmp((s1), (s2)) 853 #define of_node_cmp(s1, s2) strcasecmp((s1), (s2)) 854 #endif 855 856 static inline int of_prop_val_eq(struct property *p1, struct property *p2) 857 { 858 return p1->length == p2->length && 859 !memcmp(p1->value, p2->value, (size_t)p1->length); 860 } 861 862 #if defined(CONFIG_OF) && defined(CONFIG_NUMA) 863 extern int of_node_to_nid(struct device_node *np); 864 #else 865 static inline int of_node_to_nid(struct device_node *device) 866 { 867 return NUMA_NO_NODE; 868 } 869 #endif 870 871 #ifdef CONFIG_OF_NUMA 872 extern int of_numa_init(void); 873 #else 874 static inline int of_numa_init(void) 875 { 876 return -ENOSYS; 877 } 878 #endif 879 880 static inline struct device_node *of_find_matching_node( 881 struct device_node *from, 882 const struct of_device_id *matches) 883 { 884 return of_find_matching_node_and_match(from, matches, NULL); 885 } 886 887 static inline const char *of_node_get_device_type(const struct device_node *np) 888 { 889 return of_get_property(np, "device_type", NULL); 890 } 891 892 static inline bool of_node_is_type(const struct device_node *np, const char *type) 893 { 894 const char *match = of_node_get_device_type(np); 895 896 return np && match && type && !strcmp(match, type); 897 } 898 899 /** 900 * of_parse_phandle - Resolve a phandle property to a device_node pointer 901 * @np: Pointer to device node holding phandle property 902 * @phandle_name: Name of property holding a phandle value 903 * @index: For properties holding a table of phandles, this is the index into 904 * the table 905 * 906 * Return: The device_node pointer with refcount incremented. Use 907 * of_node_put() on it when done. 908 */ 909 static inline struct device_node *of_parse_phandle(const struct device_node *np, 910 const char *phandle_name, 911 int index) 912 { 913 struct of_phandle_args args; 914 915 if (__of_parse_phandle_with_args(np, phandle_name, NULL, 0, 916 index, &args)) 917 return NULL; 918 919 return args.np; 920 } 921 922 /** 923 * of_parse_phandle_with_args() - Find a node pointed by phandle in a list 924 * @np: pointer to a device tree node containing a list 925 * @list_name: property name that contains a list 926 * @cells_name: property name that specifies phandles' arguments count 927 * @index: index of a phandle to parse out 928 * @out_args: optional pointer to output arguments structure (will be filled) 929 * 930 * This function is useful to parse lists of phandles and their arguments. 931 * Returns 0 on success and fills out_args, on error returns appropriate 932 * errno value. 933 * 934 * Caller is responsible to call of_node_put() on the returned out_args->np 935 * pointer. 936 * 937 * Example:: 938 * 939 * phandle1: node1 { 940 * #list-cells = <2>; 941 * }; 942 * 943 * phandle2: node2 { 944 * #list-cells = <1>; 945 * }; 946 * 947 * node3 { 948 * list = <&phandle1 1 2 &phandle2 3>; 949 * }; 950 * 951 * To get a device_node of the ``node2`` node you may call this: 952 * of_parse_phandle_with_args(node3, "list", "#list-cells", 1, &args); 953 */ 954 static inline int of_parse_phandle_with_args(const struct device_node *np, 955 const char *list_name, 956 const char *cells_name, 957 int index, 958 struct of_phandle_args *out_args) 959 { 960 int cell_count = -1; 961 962 /* If cells_name is NULL we assume a cell count of 0 */ 963 if (!cells_name) 964 cell_count = 0; 965 966 return __of_parse_phandle_with_args(np, list_name, cells_name, 967 cell_count, index, out_args); 968 } 969 970 /** 971 * of_parse_phandle_with_fixed_args() - Find a node pointed by phandle in a list 972 * @np: pointer to a device tree node containing a list 973 * @list_name: property name that contains a list 974 * @cell_count: number of argument cells following the phandle 975 * @index: index of a phandle to parse out 976 * @out_args: optional pointer to output arguments structure (will be filled) 977 * 978 * This function is useful to parse lists of phandles and their arguments. 979 * Returns 0 on success and fills out_args, on error returns appropriate 980 * errno value. 981 * 982 * Caller is responsible to call of_node_put() on the returned out_args->np 983 * pointer. 984 * 985 * Example:: 986 * 987 * phandle1: node1 { 988 * }; 989 * 990 * phandle2: node2 { 991 * }; 992 * 993 * node3 { 994 * list = <&phandle1 0 2 &phandle2 2 3>; 995 * }; 996 * 997 * To get a device_node of the ``node2`` node you may call this: 998 * of_parse_phandle_with_fixed_args(node3, "list", 2, 1, &args); 999 */ 1000 static inline int of_parse_phandle_with_fixed_args(const struct device_node *np, 1001 const char *list_name, 1002 int cell_count, 1003 int index, 1004 struct of_phandle_args *out_args) 1005 { 1006 return __of_parse_phandle_with_args(np, list_name, NULL, cell_count, 1007 index, out_args); 1008 } 1009 1010 /** 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. 1018 * 1019 * Return: The number of elements on sucess, -EINVAL if the property does 1020 * not exist or its length does not match a multiple of u8 and -ENODATA if the 1021 * property does not have a value. 1022 */ 1023 static inline int of_property_count_u8_elems(const struct device_node *np, 1024 const char *propname) 1025 { 1026 return of_property_count_elems_of_size(np, propname, sizeof(u8)); 1027 } 1028 1029 /** 1030 * of_property_count_u16_elems - Count the number of u16 elements in a property 1031 * 1032 * @np: device node from which the property value is to be read. 1033 * @propname: name of the property to be searched. 1034 * 1035 * Search for a property in a device node and count the number of u16 elements 1036 * in it. 1037 * 1038 * Return: The number of elements on sucess, -EINVAL if the property does 1039 * not exist or its length does not match a multiple of u16 and -ENODATA if the 1040 * property does not have a value. 1041 */ 1042 static inline int of_property_count_u16_elems(const struct device_node *np, 1043 const char *propname) 1044 { 1045 return of_property_count_elems_of_size(np, propname, sizeof(u16)); 1046 } 1047 1048 /** 1049 * of_property_count_u32_elems - Count the number of u32 elements in a property 1050 * 1051 * @np: device node from which the property value is to be read. 1052 * @propname: name of the property to be searched. 1053 * 1054 * Search for a property in a device node and count the number of u32 elements 1055 * in it. 1056 * 1057 * Return: The number of elements on sucess, -EINVAL if the property does 1058 * not exist or its length does not match a multiple of u32 and -ENODATA if the 1059 * property does not have a value. 1060 */ 1061 static inline int of_property_count_u32_elems(const struct device_node *np, 1062 const char *propname) 1063 { 1064 return of_property_count_elems_of_size(np, propname, sizeof(u32)); 1065 } 1066 1067 /** 1068 * of_property_count_u64_elems - Count the number of u64 elements in a property 1069 * 1070 * @np: device node from which the property value is to be read. 1071 * @propname: name of the property to be searched. 1072 * 1073 * Search for a property in a device node and count the number of u64 elements 1074 * in it. 1075 * 1076 * Return: The number of elements on sucess, -EINVAL if the property does 1077 * not exist or its length does not match a multiple of u64 and -ENODATA if the 1078 * property does not have a value. 1079 */ 1080 static inline int of_property_count_u64_elems(const struct device_node *np, 1081 const char *propname) 1082 { 1083 return of_property_count_elems_of_size(np, propname, sizeof(u64)); 1084 } 1085 1086 /** 1087 * of_property_read_string_array() - Read an array of strings from a multiple 1088 * strings property. 1089 * @np: device node from which the property value is to be read. 1090 * @propname: name of the property to be searched. 1091 * @out_strs: output array of string pointers. 1092 * @sz: number of array elements to read. 1093 * 1094 * Search for a property in a device tree node and retrieve a list of 1095 * terminated string values (pointer to data, not a copy) in that property. 1096 * 1097 * Return: If @out_strs is NULL, the number of strings in the property is returned. 1098 */ 1099 static inline int of_property_read_string_array(const struct device_node *np, 1100 const char *propname, const char **out_strs, 1101 size_t sz) 1102 { 1103 return of_property_read_string_helper(np, propname, out_strs, sz, 0); 1104 } 1105 1106 /** 1107 * of_property_count_strings() - Find and return the number of strings from a 1108 * multiple strings property. 1109 * @np: device node from which the property value is to be read. 1110 * @propname: name of the property to be searched. 1111 * 1112 * Search for a property in a device tree node and retrieve the number of null 1113 * terminated string contain in it. 1114 * 1115 * Return: The number of strings on success, -EINVAL if the property does not 1116 * exist, -ENODATA if property does not have a value, and -EILSEQ if the string 1117 * is not null-terminated within the length of the property data. 1118 */ 1119 static inline int of_property_count_strings(const struct device_node *np, 1120 const char *propname) 1121 { 1122 return of_property_read_string_helper(np, propname, NULL, 0, 0); 1123 } 1124 1125 /** 1126 * of_property_read_string_index() - Find and read a string from a multiple 1127 * strings property. 1128 * @np: device node from which the property value is to be read. 1129 * @propname: name of the property to be searched. 1130 * @index: index of the string in the list of strings 1131 * @output: pointer to null terminated return string, modified only if 1132 * return value is 0. 1133 * 1134 * Search for a property in a device tree node and retrieve a null 1135 * terminated string value (pointer to data, not a copy) in the list of strings 1136 * contained in that property. 1137 * 1138 * Return: 0 on success, -EINVAL if the property does not exist, -ENODATA if 1139 * property does not have a value, and -EILSEQ if the string is not 1140 * null-terminated within the length of the property data. 1141 * 1142 * The out_string pointer is modified only if a valid string can be decoded. 1143 */ 1144 static inline int of_property_read_string_index(const struct device_node *np, 1145 const char *propname, 1146 int index, const char **output) 1147 { 1148 int rc = of_property_read_string_helper(np, propname, output, 1, index); 1149 return rc < 0 ? rc : 0; 1150 } 1151 1152 /** 1153 * of_property_read_bool - Find a property 1154 * @np: device node from which the property value is to be read. 1155 * @propname: name of the property to be searched. 1156 * 1157 * Search for a property in a device node. 1158 * 1159 * Return: true if the property exists false otherwise. 1160 */ 1161 static inline bool of_property_read_bool(const struct device_node *np, 1162 const char *propname) 1163 { 1164 struct property *prop = of_find_property(np, propname, NULL); 1165 1166 return prop ? true : false; 1167 } 1168 1169 /** 1170 * of_property_read_u8_array - Find and read an array of u8 from a property. 1171 * 1172 * @np: device node from which the property value is to be read. 1173 * @propname: name of the property to be searched. 1174 * @out_values: pointer to return value, modified only if return value is 0. 1175 * @sz: number of array elements to read 1176 * 1177 * Search for a property in a device node and read 8-bit value(s) from 1178 * it. 1179 * 1180 * dts entry of array should be like: 1181 * ``property = /bits/ 8 <0x50 0x60 0x70>;`` 1182 * 1183 * Return: 0 on success, -EINVAL if the property does not exist, 1184 * -ENODATA if property does not have a value, and -EOVERFLOW if the 1185 * property data isn't large enough. 1186 * 1187 * The out_values is modified only if a valid u8 value can be decoded. 1188 */ 1189 static inline int of_property_read_u8_array(const struct device_node *np, 1190 const char *propname, 1191 u8 *out_values, size_t sz) 1192 { 1193 int ret = of_property_read_variable_u8_array(np, propname, out_values, 1194 sz, 0); 1195 if (ret >= 0) 1196 return 0; 1197 else 1198 return ret; 1199 } 1200 1201 /** 1202 * of_property_read_u16_array - Find and read an array of u16 from a property. 1203 * 1204 * @np: device node from which the property value is to be read. 1205 * @propname: name of the property to be searched. 1206 * @out_values: pointer to return value, modified only if return value is 0. 1207 * @sz: number of array elements to read 1208 * 1209 * Search for a property in a device node and read 16-bit value(s) from 1210 * it. 1211 * 1212 * dts entry of array should be like: 1213 * ``property = /bits/ 16 <0x5000 0x6000 0x7000>;`` 1214 * 1215 * Return: 0 on success, -EINVAL if the property does not exist, 1216 * -ENODATA if property does not have a value, and -EOVERFLOW if the 1217 * property data isn't large enough. 1218 * 1219 * The out_values is modified only if a valid u16 value can be decoded. 1220 */ 1221 static inline int of_property_read_u16_array(const struct device_node *np, 1222 const char *propname, 1223 u16 *out_values, size_t sz) 1224 { 1225 int ret = of_property_read_variable_u16_array(np, propname, out_values, 1226 sz, 0); 1227 if (ret >= 0) 1228 return 0; 1229 else 1230 return ret; 1231 } 1232 1233 /** 1234 * of_property_read_u32_array - Find and read an array of 32 bit integers 1235 * from a property. 1236 * 1237 * @np: device node from which the property value is to be read. 1238 * @propname: name of the property to be searched. 1239 * @out_values: pointer to return value, modified only if return value is 0. 1240 * @sz: number of array elements to read 1241 * 1242 * Search for a property in a device node and read 32-bit value(s) from 1243 * it. 1244 * 1245 * Return: 0 on success, -EINVAL if the property does not exist, 1246 * -ENODATA if property does not have a value, and -EOVERFLOW if the 1247 * property data isn't large enough. 1248 * 1249 * The out_values is modified only if a valid u32 value can be decoded. 1250 */ 1251 static inline int of_property_read_u32_array(const struct device_node *np, 1252 const char *propname, 1253 u32 *out_values, size_t sz) 1254 { 1255 int ret = of_property_read_variable_u32_array(np, propname, out_values, 1256 sz, 0); 1257 if (ret >= 0) 1258 return 0; 1259 else 1260 return ret; 1261 } 1262 1263 /** 1264 * of_property_read_u64_array - Find and read an array of 64 bit integers 1265 * from a property. 1266 * 1267 * @np: device node from which the property value is to be read. 1268 * @propname: name of the property to be searched. 1269 * @out_values: pointer to return value, modified only if return value is 0. 1270 * @sz: number of array elements to read 1271 * 1272 * Search for a property in a device node and read 64-bit value(s) from 1273 * it. 1274 * 1275 * Return: 0 on success, -EINVAL if the property does not exist, 1276 * -ENODATA if property does not have a value, and -EOVERFLOW if the 1277 * property data isn't large enough. 1278 * 1279 * The out_values is modified only if a valid u64 value can be decoded. 1280 */ 1281 static inline int of_property_read_u64_array(const struct device_node *np, 1282 const char *propname, 1283 u64 *out_values, size_t sz) 1284 { 1285 int ret = of_property_read_variable_u64_array(np, propname, out_values, 1286 sz, 0); 1287 if (ret >= 0) 1288 return 0; 1289 else 1290 return ret; 1291 } 1292 1293 static inline int of_property_read_u8(const struct device_node *np, 1294 const char *propname, 1295 u8 *out_value) 1296 { 1297 return of_property_read_u8_array(np, propname, out_value, 1); 1298 } 1299 1300 static inline int of_property_read_u16(const struct device_node *np, 1301 const char *propname, 1302 u16 *out_value) 1303 { 1304 return of_property_read_u16_array(np, propname, out_value, 1); 1305 } 1306 1307 static inline int of_property_read_u32(const struct device_node *np, 1308 const char *propname, 1309 u32 *out_value) 1310 { 1311 return of_property_read_u32_array(np, propname, out_value, 1); 1312 } 1313 1314 static inline int of_property_read_s32(const struct device_node *np, 1315 const char *propname, 1316 s32 *out_value) 1317 { 1318 return of_property_read_u32(np, propname, (u32*) out_value); 1319 } 1320 1321 #define of_for_each_phandle(it, err, np, ln, cn, cc) \ 1322 for (of_phandle_iterator_init((it), (np), (ln), (cn), (cc)), \ 1323 err = of_phandle_iterator_next(it); \ 1324 err == 0; \ 1325 err = of_phandle_iterator_next(it)) 1326 1327 #define of_property_for_each_u32(np, propname, prop, p, u) \ 1328 for (prop = of_find_property(np, propname, NULL), \ 1329 p = of_prop_next_u32(prop, NULL, &u); \ 1330 p; \ 1331 p = of_prop_next_u32(prop, p, &u)) 1332 1333 #define of_property_for_each_string(np, propname, prop, s) \ 1334 for (prop = of_find_property(np, propname, NULL), \ 1335 s = of_prop_next_string(prop, NULL); \ 1336 s; \ 1337 s = of_prop_next_string(prop, s)) 1338 1339 #define for_each_node_by_name(dn, name) \ 1340 for (dn = of_find_node_by_name(NULL, name); dn; \ 1341 dn = of_find_node_by_name(dn, name)) 1342 #define for_each_node_by_type(dn, type) \ 1343 for (dn = of_find_node_by_type(NULL, type); dn; \ 1344 dn = of_find_node_by_type(dn, type)) 1345 #define for_each_compatible_node(dn, type, compatible) \ 1346 for (dn = of_find_compatible_node(NULL, type, compatible); dn; \ 1347 dn = of_find_compatible_node(dn, type, compatible)) 1348 #define for_each_matching_node(dn, matches) \ 1349 for (dn = of_find_matching_node(NULL, matches); dn; \ 1350 dn = of_find_matching_node(dn, matches)) 1351 #define for_each_matching_node_and_match(dn, matches, match) \ 1352 for (dn = of_find_matching_node_and_match(NULL, matches, match); \ 1353 dn; dn = of_find_matching_node_and_match(dn, matches, match)) 1354 1355 #define for_each_child_of_node(parent, child) \ 1356 for (child = of_get_next_child(parent, NULL); child != NULL; \ 1357 child = of_get_next_child(parent, child)) 1358 #define for_each_available_child_of_node(parent, child) \ 1359 for (child = of_get_next_available_child(parent, NULL); child != NULL; \ 1360 child = of_get_next_available_child(parent, child)) 1361 1362 #define for_each_of_cpu_node(cpu) \ 1363 for (cpu = of_get_next_cpu_node(NULL); cpu != NULL; \ 1364 cpu = of_get_next_cpu_node(cpu)) 1365 1366 #define for_each_node_with_property(dn, prop_name) \ 1367 for (dn = of_find_node_with_property(NULL, prop_name); dn; \ 1368 dn = of_find_node_with_property(dn, prop_name)) 1369 1370 static inline int of_get_child_count(const struct device_node *np) 1371 { 1372 struct device_node *child; 1373 int num = 0; 1374 1375 for_each_child_of_node(np, child) 1376 num++; 1377 1378 return num; 1379 } 1380 1381 static inline int of_get_available_child_count(const struct device_node *np) 1382 { 1383 struct device_node *child; 1384 int num = 0; 1385 1386 for_each_available_child_of_node(np, child) 1387 num++; 1388 1389 return num; 1390 } 1391 1392 #define _OF_DECLARE_STUB(table, name, compat, fn, fn_type) \ 1393 static const struct of_device_id __of_table_##name \ 1394 __attribute__((unused)) \ 1395 = { .compatible = compat, \ 1396 .data = (fn == (fn_type)NULL) ? fn : fn } 1397 1398 #if defined(CONFIG_OF) && !defined(MODULE) 1399 #define _OF_DECLARE(table, name, compat, fn, fn_type) \ 1400 static const struct of_device_id __of_table_##name \ 1401 __used __section("__" #table "_of_table") \ 1402 __aligned(__alignof__(struct of_device_id)) \ 1403 = { .compatible = compat, \ 1404 .data = (fn == (fn_type)NULL) ? fn : fn } 1405 #else 1406 #define _OF_DECLARE(table, name, compat, fn, fn_type) \ 1407 _OF_DECLARE_STUB(table, name, compat, fn, fn_type) 1408 #endif 1409 1410 typedef int (*of_init_fn_2)(struct device_node *, struct device_node *); 1411 typedef int (*of_init_fn_1_ret)(struct device_node *); 1412 typedef void (*of_init_fn_1)(struct device_node *); 1413 1414 #define OF_DECLARE_1(table, name, compat, fn) \ 1415 _OF_DECLARE(table, name, compat, fn, of_init_fn_1) 1416 #define OF_DECLARE_1_RET(table, name, compat, fn) \ 1417 _OF_DECLARE(table, name, compat, fn, of_init_fn_1_ret) 1418 #define OF_DECLARE_2(table, name, compat, fn) \ 1419 _OF_DECLARE(table, name, compat, fn, of_init_fn_2) 1420 1421 /** 1422 * struct of_changeset_entry - Holds a changeset entry 1423 * 1424 * @node: list_head for the log list 1425 * @action: notifier action 1426 * @np: pointer to the device node affected 1427 * @prop: pointer to the property affected 1428 * @old_prop: hold a pointer to the original property 1429 * 1430 * Every modification of the device tree during a changeset 1431 * is held in a list of of_changeset_entry structures. 1432 * That way we can recover from a partial application, or we can 1433 * revert the changeset 1434 */ 1435 struct of_changeset_entry { 1436 struct list_head node; 1437 unsigned long action; 1438 struct device_node *np; 1439 struct property *prop; 1440 struct property *old_prop; 1441 }; 1442 1443 /** 1444 * struct of_changeset - changeset tracker structure 1445 * 1446 * @entries: list_head for the changeset entries 1447 * 1448 * changesets are a convenient way to apply bulk changes to the 1449 * live tree. In case of an error, changes are rolled-back. 1450 * changesets live on after initial application, and if not 1451 * destroyed after use, they can be reverted in one single call. 1452 */ 1453 struct of_changeset { 1454 struct list_head entries; 1455 }; 1456 1457 enum of_reconfig_change { 1458 OF_RECONFIG_NO_CHANGE = 0, 1459 OF_RECONFIG_CHANGE_ADD, 1460 OF_RECONFIG_CHANGE_REMOVE, 1461 }; 1462 1463 #ifdef CONFIG_OF_DYNAMIC 1464 extern int of_reconfig_notifier_register(struct notifier_block *); 1465 extern int of_reconfig_notifier_unregister(struct notifier_block *); 1466 extern int of_reconfig_notify(unsigned long, struct of_reconfig_data *rd); 1467 extern int of_reconfig_get_state_change(unsigned long action, 1468 struct of_reconfig_data *arg); 1469 1470 extern void of_changeset_init(struct of_changeset *ocs); 1471 extern void of_changeset_destroy(struct of_changeset *ocs); 1472 extern int of_changeset_apply(struct of_changeset *ocs); 1473 extern int of_changeset_revert(struct of_changeset *ocs); 1474 extern int of_changeset_action(struct of_changeset *ocs, 1475 unsigned long action, struct device_node *np, 1476 struct property *prop); 1477 1478 static inline int of_changeset_attach_node(struct of_changeset *ocs, 1479 struct device_node *np) 1480 { 1481 return of_changeset_action(ocs, OF_RECONFIG_ATTACH_NODE, np, NULL); 1482 } 1483 1484 static inline int of_changeset_detach_node(struct of_changeset *ocs, 1485 struct device_node *np) 1486 { 1487 return of_changeset_action(ocs, OF_RECONFIG_DETACH_NODE, np, NULL); 1488 } 1489 1490 static inline int of_changeset_add_property(struct of_changeset *ocs, 1491 struct device_node *np, struct property *prop) 1492 { 1493 return of_changeset_action(ocs, OF_RECONFIG_ADD_PROPERTY, np, prop); 1494 } 1495 1496 static inline int of_changeset_remove_property(struct of_changeset *ocs, 1497 struct device_node *np, struct property *prop) 1498 { 1499 return of_changeset_action(ocs, OF_RECONFIG_REMOVE_PROPERTY, np, prop); 1500 } 1501 1502 static inline int of_changeset_update_property(struct of_changeset *ocs, 1503 struct device_node *np, struct property *prop) 1504 { 1505 return of_changeset_action(ocs, OF_RECONFIG_UPDATE_PROPERTY, np, prop); 1506 } 1507 #else /* CONFIG_OF_DYNAMIC */ 1508 static inline int of_reconfig_notifier_register(struct notifier_block *nb) 1509 { 1510 return -EINVAL; 1511 } 1512 static inline int of_reconfig_notifier_unregister(struct notifier_block *nb) 1513 { 1514 return -EINVAL; 1515 } 1516 static inline int of_reconfig_notify(unsigned long action, 1517 struct of_reconfig_data *arg) 1518 { 1519 return -EINVAL; 1520 } 1521 static inline int of_reconfig_get_state_change(unsigned long action, 1522 struct of_reconfig_data *arg) 1523 { 1524 return -EINVAL; 1525 } 1526 #endif /* CONFIG_OF_DYNAMIC */ 1527 1528 /** 1529 * of_device_is_system_power_controller - Tells if system-power-controller is found for device_node 1530 * @np: Pointer to the given device_node 1531 * 1532 * Return: true if present false otherwise 1533 */ 1534 static inline bool of_device_is_system_power_controller(const struct device_node *np) 1535 { 1536 return of_property_read_bool(np, "system-power-controller"); 1537 } 1538 1539 /* 1540 * Overlay support 1541 */ 1542 1543 enum of_overlay_notify_action { 1544 OF_OVERLAY_INIT = 0, /* kzalloc() of ovcs sets this value */ 1545 OF_OVERLAY_PRE_APPLY, 1546 OF_OVERLAY_POST_APPLY, 1547 OF_OVERLAY_PRE_REMOVE, 1548 OF_OVERLAY_POST_REMOVE, 1549 }; 1550 1551 static inline char *of_overlay_action_name(enum of_overlay_notify_action action) 1552 { 1553 static char *of_overlay_action_name[] = { 1554 "init", 1555 "pre-apply", 1556 "post-apply", 1557 "pre-remove", 1558 "post-remove", 1559 }; 1560 1561 return of_overlay_action_name[action]; 1562 } 1563 1564 struct of_overlay_notify_data { 1565 struct device_node *overlay; 1566 struct device_node *target; 1567 }; 1568 1569 #ifdef CONFIG_OF_OVERLAY 1570 1571 int of_overlay_fdt_apply(const void *overlay_fdt, u32 overlay_fdt_size, 1572 int *ovcs_id); 1573 int of_overlay_remove(int *ovcs_id); 1574 int of_overlay_remove_all(void); 1575 1576 int of_overlay_notifier_register(struct notifier_block *nb); 1577 int of_overlay_notifier_unregister(struct notifier_block *nb); 1578 1579 #else 1580 1581 static inline int of_overlay_fdt_apply(void *overlay_fdt, u32 overlay_fdt_size, 1582 int *ovcs_id) 1583 { 1584 return -ENOTSUPP; 1585 } 1586 1587 static inline int of_overlay_remove(int *ovcs_id) 1588 { 1589 return -ENOTSUPP; 1590 } 1591 1592 static inline int of_overlay_remove_all(void) 1593 { 1594 return -ENOTSUPP; 1595 } 1596 1597 static inline int of_overlay_notifier_register(struct notifier_block *nb) 1598 { 1599 return 0; 1600 } 1601 1602 static inline int of_overlay_notifier_unregister(struct notifier_block *nb) 1603 { 1604 return 0; 1605 } 1606 1607 #endif 1608 1609 #endif /* _LINUX_OF_H */ 1610