Rob Herring | af6074f | 2017-12-27 12:55:14 -0600 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Stepan Moskovchenko | ced4eec | 2012-12-06 14:55:41 -0800 | [diff] [blame] | 2 | #ifndef _LINUX_OF_PRIVATE_H |
| 3 | #define _LINUX_OF_PRIVATE_H |
| 4 | /* |
| 5 | * Private symbols used by OF support code |
| 6 | * |
| 7 | * Paul Mackerras August 1996. |
| 8 | * Copyright (C) 1996-2005 Paul Mackerras. |
Stepan Moskovchenko | ced4eec | 2012-12-06 14:55:41 -0800 | [diff] [blame] | 9 | */ |
| 10 | |
Frank Rowand | 48d499b | 2021-04-08 15:45:08 -0500 | [diff] [blame] | 11 | #define FDT_ALIGN_SIZE 8 |
| 12 | |
Stepan Moskovchenko | ced4eec | 2012-12-06 14:55:41 -0800 | [diff] [blame] | 13 | /** |
| 14 | * struct alias_prop - Alias property in 'aliases' node |
| 15 | * @link: List node to link the structure in aliases_lookup list |
| 16 | * @alias: Alias property name |
| 17 | * @np: Pointer to device_node that the alias stands for |
| 18 | * @id: Index value from end of alias name |
| 19 | * @stem: Alias string without the index |
| 20 | * |
| 21 | * The structure represents one alias property of 'aliases' node as |
| 22 | * an entry in aliases_lookup list. |
| 23 | */ |
| 24 | struct alias_prop { |
| 25 | struct list_head link; |
| 26 | const char *alias; |
| 27 | struct device_node *np; |
| 28 | int id; |
Gustavo A. R. Silva | f437756 | 2020-03-19 18:10:58 -0500 | [diff] [blame] | 29 | char stem[]; |
Stepan Moskovchenko | ced4eec | 2012-12-06 14:55:41 -0800 | [diff] [blame] | 30 | }; |
| 31 | |
Rob Herring | 00b7d1c | 2018-08-29 17:21:45 -0500 | [diff] [blame] | 32 | #if defined(CONFIG_SPARC) |
| 33 | #define OF_ROOT_NODE_ADDR_CELLS_DEFAULT 2 |
| 34 | #else |
| 35 | #define OF_ROOT_NODE_ADDR_CELLS_DEFAULT 1 |
| 36 | #endif |
| 37 | |
| 38 | #define OF_ROOT_NODE_SIZE_CELLS_DEFAULT 1 |
| 39 | |
Pantelis Antoniou | c05aba2 | 2014-07-04 19:58:03 +0300 | [diff] [blame] | 40 | extern struct mutex of_mutex; |
Stepan Moskovchenko | ced4eec | 2012-12-06 14:55:41 -0800 | [diff] [blame] | 41 | extern struct list_head aliases_lookup; |
Grant Likely | 8a2b22a2 | 2014-07-23 17:05:06 -0600 | [diff] [blame] | 42 | extern struct kset *of_kset; |
| 43 | |
Grant Likely | 6afc0dc | 2014-06-26 15:40:48 +0100 | [diff] [blame] | 44 | #if defined(CONFIG_OF_DYNAMIC) |
| 45 | extern int of_property_notify(int action, struct device_node *np, |
Grant Likely | 259092a | 2014-07-16 12:48:23 -0600 | [diff] [blame] | 46 | struct property *prop, struct property *old_prop); |
Grant Likely | 6afc0dc | 2014-06-26 15:40:48 +0100 | [diff] [blame] | 47 | extern void of_node_release(struct kobject *kobj); |
Frank Rowand | 24789c5 | 2017-10-17 16:36:26 -0700 | [diff] [blame] | 48 | extern int __of_changeset_apply_entries(struct of_changeset *ocs, |
| 49 | int *ret_revert); |
| 50 | extern int __of_changeset_apply_notify(struct of_changeset *ocs); |
| 51 | extern int __of_changeset_revert_entries(struct of_changeset *ocs, |
| 52 | int *ret_apply); |
| 53 | extern int __of_changeset_revert_notify(struct of_changeset *ocs); |
Grant Likely | 6afc0dc | 2014-06-26 15:40:48 +0100 | [diff] [blame] | 54 | #else /* CONFIG_OF_DYNAMIC */ |
| 55 | static inline int of_property_notify(int action, struct device_node *np, |
Grant Likely | 259092a | 2014-07-16 12:48:23 -0600 | [diff] [blame] | 56 | struct property *prop, struct property *old_prop) |
Grant Likely | 6afc0dc | 2014-06-26 15:40:48 +0100 | [diff] [blame] | 57 | { |
| 58 | return 0; |
| 59 | } |
| 60 | #endif /* CONFIG_OF_DYNAMIC */ |
| 61 | |
Rob Herring | b56b552 | 2017-10-04 14:09:40 -0500 | [diff] [blame] | 62 | #if defined(CONFIG_OF_KOBJ) |
Nathan Lynch | 6effc88 | 2021-10-14 12:30:23 -0500 | [diff] [blame] | 63 | int of_node_is_attached(const struct device_node *node); |
Rob Herring | b56b552 | 2017-10-04 14:09:40 -0500 | [diff] [blame] | 64 | int __of_add_property_sysfs(struct device_node *np, struct property *pp); |
| 65 | void __of_remove_property_sysfs(struct device_node *np, struct property *prop); |
| 66 | void __of_update_property_sysfs(struct device_node *np, struct property *newprop, |
| 67 | struct property *oldprop); |
| 68 | int __of_attach_node_sysfs(struct device_node *np); |
| 69 | void __of_detach_node_sysfs(struct device_node *np); |
| 70 | #else |
| 71 | static inline int __of_add_property_sysfs(struct device_node *np, struct property *pp) |
| 72 | { |
| 73 | return 0; |
| 74 | } |
| 75 | static inline void __of_remove_property_sysfs(struct device_node *np, struct property *prop) {} |
| 76 | static inline void __of_update_property_sysfs(struct device_node *np, |
| 77 | struct property *newprop, struct property *oldprop) {} |
| 78 | static inline int __of_attach_node_sysfs(struct device_node *np) |
| 79 | { |
| 80 | return 0; |
| 81 | } |
| 82 | static inline void __of_detach_node_sysfs(struct device_node *np) {} |
| 83 | #endif |
| 84 | |
Frank Rowand | f948d6d | 2017-10-17 16:36:29 -0700 | [diff] [blame] | 85 | #if defined(CONFIG_OF_RESOLVE) |
| 86 | int of_resolve_phandles(struct device_node *tree); |
| 87 | #endif |
| 88 | |
Rob Herring | 90dc0d1 | 2019-12-06 16:27:41 -0600 | [diff] [blame] | 89 | void __of_phandle_cache_inv_entry(phandle handle); |
Frank Rowand | 5801169 | 2018-12-18 11:40:03 -0800 | [diff] [blame] | 90 | |
Frank Rowand | f948d6d | 2017-10-17 16:36:29 -0700 | [diff] [blame] | 91 | #if defined(CONFIG_OF_OVERLAY) |
| 92 | void of_overlay_mutex_lock(void); |
| 93 | void of_overlay_mutex_unlock(void); |
| 94 | #else |
| 95 | static inline void of_overlay_mutex_lock(void) {}; |
| 96 | static inline void of_overlay_mutex_unlock(void) {}; |
| 97 | #endif |
| 98 | |
Arnd Bergmann | 5d4dd65 | 2017-04-28 11:44:12 +0200 | [diff] [blame] | 99 | #if defined(CONFIG_OF_UNITTEST) && defined(CONFIG_OF_OVERLAY) |
Frank Rowand | 81d0848f | 2017-04-25 17:09:54 -0700 | [diff] [blame] | 100 | extern void __init unittest_unflatten_overlay_base(void); |
| 101 | #else |
| 102 | static inline void unittest_unflatten_overlay_base(void) {}; |
| 103 | #endif |
| 104 | |
| 105 | extern void *__unflatten_device_tree(const void *blob, |
| 106 | struct device_node *dad, |
| 107 | struct device_node **mynodes, |
| 108 | void *(*dt_alloc)(u64 size, u64 align), |
| 109 | bool detached); |
| 110 | |
Pantelis Antoniou | 6984339 | 2014-07-04 19:58:47 +0300 | [diff] [blame] | 111 | /** |
| 112 | * General utilities for working with live trees. |
| 113 | * |
| 114 | * All functions with two leading underscores operate |
| 115 | * without taking node references, so you either have to |
| 116 | * own the devtree lock or work on detached trees only. |
| 117 | */ |
| 118 | struct property *__of_prop_dup(const struct property *prop, gfp_t allocflags); |
Frank Rowand | b89dae1 | 2018-02-26 14:01:23 -0800 | [diff] [blame] | 119 | struct device_node *__of_node_dup(const struct device_node *np, |
| 120 | const char *full_name); |
Pantelis Antoniou | 6984339 | 2014-07-04 19:58:47 +0300 | [diff] [blame] | 121 | |
Frank Rowand | e0a58f3 | 2017-10-17 16:36:31 -0700 | [diff] [blame] | 122 | struct device_node *__of_find_node_by_path(struct device_node *parent, |
| 123 | const char *path); |
Rob Herring | 27497e1 | 2017-06-02 12:43:18 -0500 | [diff] [blame] | 124 | struct device_node *__of_find_node_by_full_path(struct device_node *node, |
| 125 | const char *path); |
| 126 | |
Grant Likely | a25095d | 2014-07-15 23:25:43 -0600 | [diff] [blame] | 127 | extern const void *__of_get_property(const struct device_node *np, |
| 128 | const char *name, int *lenp); |
Pantelis Antoniou | d8c5008 | 2014-07-04 19:58:46 +0300 | [diff] [blame] | 129 | extern int __of_add_property(struct device_node *np, struct property *prop); |
| 130 | extern int __of_remove_property(struct device_node *np, struct property *prop); |
| 131 | extern int __of_update_property(struct device_node *np, |
| 132 | struct property *newprop, struct property **oldprop); |
| 133 | |
Pantelis Antoniou | d8c5008 | 2014-07-04 19:58:46 +0300 | [diff] [blame] | 134 | extern void __of_detach_node(struct device_node *np); |
| 135 | |
Frank Rowand | d9fc880 | 2016-06-16 10:51:46 -0700 | [diff] [blame] | 136 | extern void __of_sysfs_remove_bin_file(struct device_node *np, |
| 137 | struct property *prop); |
| 138 | |
Frank Rowand | 0b3ce78 | 2018-03-04 16:14:47 -0800 | [diff] [blame] | 139 | /* illegal phandle value (set when unresolved) */ |
| 140 | #define OF_PHANDLE_ILLEGAL 0xdeadbeef |
| 141 | |
Pantelis Antoniou | 201c910 | 2014-07-04 19:58:49 +0300 | [diff] [blame] | 142 | /* iterators for transactions, used for overlays */ |
| 143 | /* forward iterator */ |
| 144 | #define for_each_transaction_entry(_oft, _te) \ |
| 145 | list_for_each_entry(_te, &(_oft)->te_list, node) |
| 146 | |
| 147 | /* reverse iterator */ |
| 148 | #define for_each_transaction_entry_reverse(_oft, _te) \ |
| 149 | list_for_each_entry_reverse(_te, &(_oft)->te_list, node) |
| 150 | |
Robin Murphy | b68ac8d | 2019-07-02 18:42:39 +0100 | [diff] [blame] | 151 | extern int of_bus_n_addr_cells(struct device_node *np); |
| 152 | extern int of_bus_n_size_cells(struct device_node *np); |
| 153 | |
Jim Quinlan | e0d0727 | 2020-09-17 18:43:40 +0200 | [diff] [blame] | 154 | struct bus_dma_region; |
| 155 | #if defined(CONFIG_OF_ADDRESS) && defined(CONFIG_HAS_DMA) |
| 156 | int of_dma_get_range(struct device_node *np, |
| 157 | const struct bus_dma_region **map); |
Rob Herring | 6e6faf6 | 2019-09-05 11:53:27 +0100 | [diff] [blame] | 158 | #else |
Jim Quinlan | e0d0727 | 2020-09-17 18:43:40 +0200 | [diff] [blame] | 159 | static inline int of_dma_get_range(struct device_node *np, |
| 160 | const struct bus_dma_region **map) |
Rob Herring | 6e6faf6 | 2019-09-05 11:53:27 +0100 | [diff] [blame] | 161 | { |
| 162 | return -ENODEV; |
| 163 | } |
| 164 | #endif |
| 165 | |
Rob Herring | 12d55d3 | 2021-05-27 14:38:41 -0500 | [diff] [blame] | 166 | void fdt_init_reserved_mem(void); |
| 167 | void fdt_reserved_mem_save_node(unsigned long node, const char *uname, |
| 168 | phys_addr_t base, phys_addr_t size); |
| 169 | |
Stepan Moskovchenko | ced4eec | 2012-12-06 14:55:41 -0800 | [diff] [blame] | 170 | #endif /* _LINUX_OF_PRIVATE_H */ |