1 /* SPDX-License-Identifier: GPL-2.0+ */
2 #ifndef _LINUX_OF_PRIVATE_H
3 #define _LINUX_OF_PRIVATE_H
5 * Private symbols used by OF support code
7 * Paul Mackerras August 1996.
8 * Copyright (C) 1996-2005 Paul Mackerras.
12 * struct alias_prop - Alias property in 'aliases' node
13 * @link: List node to link the structure in aliases_lookup list
14 * @alias: Alias property name
15 * @np: Pointer to device_node that the alias stands for
16 * @id: Index value from end of alias name
17 * @stem: Alias string without the index
19 * The structure represents one alias property of 'aliases' node as
20 * an entry in aliases_lookup list.
23 struct list_head link
;
25 struct device_node
*np
;
30 #if defined(CONFIG_SPARC)
31 #define OF_ROOT_NODE_ADDR_CELLS_DEFAULT 2
33 #define OF_ROOT_NODE_ADDR_CELLS_DEFAULT 1
36 #define OF_ROOT_NODE_SIZE_CELLS_DEFAULT 1
38 extern struct mutex of_mutex
;
39 extern struct list_head aliases_lookup
;
40 extern struct kset
*of_kset
;
42 #if defined(CONFIG_OF_DYNAMIC)
43 extern int of_property_notify(int action
, struct device_node
*np
,
44 struct property
*prop
, struct property
*old_prop
);
45 extern void of_node_release(struct kobject
*kobj
);
46 extern int __of_changeset_apply_entries(struct of_changeset
*ocs
,
48 extern int __of_changeset_apply_notify(struct of_changeset
*ocs
);
49 extern int __of_changeset_revert_entries(struct of_changeset
*ocs
,
51 extern int __of_changeset_revert_notify(struct of_changeset
*ocs
);
52 #else /* CONFIG_OF_DYNAMIC */
53 static inline int of_property_notify(int action
, struct device_node
*np
,
54 struct property
*prop
, struct property
*old_prop
)
58 #endif /* CONFIG_OF_DYNAMIC */
60 #if defined(CONFIG_OF_KOBJ)
61 int of_node_is_attached(struct device_node
*node
);
62 int __of_add_property_sysfs(struct device_node
*np
, struct property
*pp
);
63 void __of_remove_property_sysfs(struct device_node
*np
, struct property
*prop
);
64 void __of_update_property_sysfs(struct device_node
*np
, struct property
*newprop
,
65 struct property
*oldprop
);
66 int __of_attach_node_sysfs(struct device_node
*np
);
67 void __of_detach_node_sysfs(struct device_node
*np
);
69 static inline int __of_add_property_sysfs(struct device_node
*np
, struct property
*pp
)
73 static inline void __of_remove_property_sysfs(struct device_node
*np
, struct property
*prop
) {}
74 static inline void __of_update_property_sysfs(struct device_node
*np
,
75 struct property
*newprop
, struct property
*oldprop
) {}
76 static inline int __of_attach_node_sysfs(struct device_node
*np
)
80 static inline void __of_detach_node_sysfs(struct device_node
*np
) {}
83 #if defined(CONFIG_OF_RESOLVE)
84 int of_resolve_phandles(struct device_node
*tree
);
87 void __of_phandle_cache_inv_entry(phandle handle
);
89 #if defined(CONFIG_OF_OVERLAY)
90 void of_overlay_mutex_lock(void);
91 void of_overlay_mutex_unlock(void);
93 static inline void of_overlay_mutex_lock(void) {};
94 static inline void of_overlay_mutex_unlock(void) {};
97 #if defined(CONFIG_OF_UNITTEST) && defined(CONFIG_OF_OVERLAY)
98 extern void __init
unittest_unflatten_overlay_base(void);
100 static inline void unittest_unflatten_overlay_base(void) {};
103 extern void *__unflatten_device_tree(const void *blob
,
104 struct device_node
*dad
,
105 struct device_node
**mynodes
,
106 void *(*dt_alloc
)(u64 size
, u64 align
),
110 * General utilities for working with live trees.
112 * All functions with two leading underscores operate
113 * without taking node references, so you either have to
114 * own the devtree lock or work on detached trees only.
116 struct property
*__of_prop_dup(const struct property
*prop
, gfp_t allocflags
);
117 struct device_node
*__of_node_dup(const struct device_node
*np
,
118 const char *full_name
);
120 struct device_node
*__of_find_node_by_path(struct device_node
*parent
,
122 struct device_node
*__of_find_node_by_full_path(struct device_node
*node
,
125 extern const void *__of_get_property(const struct device_node
*np
,
126 const char *name
, int *lenp
);
127 extern int __of_add_property(struct device_node
*np
, struct property
*prop
);
128 extern int __of_add_property_sysfs(struct device_node
*np
,
129 struct property
*prop
);
130 extern int __of_remove_property(struct device_node
*np
, struct property
*prop
);
131 extern void __of_remove_property_sysfs(struct device_node
*np
,
132 struct property
*prop
);
133 extern int __of_update_property(struct device_node
*np
,
134 struct property
*newprop
, struct property
**oldprop
);
135 extern void __of_update_property_sysfs(struct device_node
*np
,
136 struct property
*newprop
, struct property
*oldprop
);
138 extern int __of_attach_node_sysfs(struct device_node
*np
);
139 extern void __of_detach_node(struct device_node
*np
);
140 extern void __of_detach_node_sysfs(struct device_node
*np
);
142 extern void __of_sysfs_remove_bin_file(struct device_node
*np
,
143 struct property
*prop
);
145 /* illegal phandle value (set when unresolved) */
146 #define OF_PHANDLE_ILLEGAL 0xdeadbeef
148 /* iterators for transactions, used for overlays */
149 /* forward iterator */
150 #define for_each_transaction_entry(_oft, _te) \
151 list_for_each_entry(_te, &(_oft)->te_list, node)
153 /* reverse iterator */
154 #define for_each_transaction_entry_reverse(_oft, _te) \
155 list_for_each_entry_reverse(_te, &(_oft)->te_list, node)
157 extern int of_bus_n_addr_cells(struct device_node
*np
);
158 extern int of_bus_n_size_cells(struct device_node
*np
);
160 #ifdef CONFIG_OF_ADDRESS
161 extern int of_dma_get_range(struct device_node
*np
, u64
*dma_addr
,
162 u64
*paddr
, u64
*size
);
164 static inline int of_dma_get_range(struct device_node
*np
, u64
*dma_addr
,
165 u64
*paddr
, u64
*size
)
171 #endif /* _LINUX_OF_PRIVATE_H */