blob: edc682249c00156a37b8d30caaaca00e29a1bcc5 [file] [log] [blame]
Rob Herringaf6074f2017-12-27 12:55:14 -06001/* SPDX-License-Identifier: GPL-2.0+ */
Stepan Moskovchenkoced4eec2012-12-06 14:55:41 -08002#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 Moskovchenkoced4eec2012-12-06 14:55:41 -08009 */
10
11/**
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
18 *
19 * The structure represents one alias property of 'aliases' node as
20 * an entry in aliases_lookup list.
21 */
22struct alias_prop {
23 struct list_head link;
24 const char *alias;
25 struct device_node *np;
26 int id;
Gustavo A. R. Silvaf4377562020-03-19 18:10:58 -050027 char stem[];
Stepan Moskovchenkoced4eec2012-12-06 14:55:41 -080028};
29
Rob Herring00b7d1c2018-08-29 17:21:45 -050030#if defined(CONFIG_SPARC)
31#define OF_ROOT_NODE_ADDR_CELLS_DEFAULT 2
32#else
33#define OF_ROOT_NODE_ADDR_CELLS_DEFAULT 1
34#endif
35
36#define OF_ROOT_NODE_SIZE_CELLS_DEFAULT 1
37
Pantelis Antoniouc05aba22014-07-04 19:58:03 +030038extern struct mutex of_mutex;
Stepan Moskovchenkoced4eec2012-12-06 14:55:41 -080039extern struct list_head aliases_lookup;
Grant Likely8a2b22a22014-07-23 17:05:06 -060040extern struct kset *of_kset;
41
Grant Likely6afc0dc2014-06-26 15:40:48 +010042#if defined(CONFIG_OF_DYNAMIC)
43extern int of_property_notify(int action, struct device_node *np,
Grant Likely259092a2014-07-16 12:48:23 -060044 struct property *prop, struct property *old_prop);
Grant Likely6afc0dc2014-06-26 15:40:48 +010045extern void of_node_release(struct kobject *kobj);
Frank Rowand24789c52017-10-17 16:36:26 -070046extern int __of_changeset_apply_entries(struct of_changeset *ocs,
47 int *ret_revert);
48extern int __of_changeset_apply_notify(struct of_changeset *ocs);
49extern int __of_changeset_revert_entries(struct of_changeset *ocs,
50 int *ret_apply);
51extern int __of_changeset_revert_notify(struct of_changeset *ocs);
Grant Likely6afc0dc2014-06-26 15:40:48 +010052#else /* CONFIG_OF_DYNAMIC */
53static inline int of_property_notify(int action, struct device_node *np,
Grant Likely259092a2014-07-16 12:48:23 -060054 struct property *prop, struct property *old_prop)
Grant Likely6afc0dc2014-06-26 15:40:48 +010055{
56 return 0;
57}
58#endif /* CONFIG_OF_DYNAMIC */
59
Rob Herringb56b5522017-10-04 14:09:40 -050060#if defined(CONFIG_OF_KOBJ)
61int of_node_is_attached(struct device_node *node);
62int __of_add_property_sysfs(struct device_node *np, struct property *pp);
63void __of_remove_property_sysfs(struct device_node *np, struct property *prop);
64void __of_update_property_sysfs(struct device_node *np, struct property *newprop,
65 struct property *oldprop);
66int __of_attach_node_sysfs(struct device_node *np);
67void __of_detach_node_sysfs(struct device_node *np);
68#else
69static inline int __of_add_property_sysfs(struct device_node *np, struct property *pp)
70{
71 return 0;
72}
73static inline void __of_remove_property_sysfs(struct device_node *np, struct property *prop) {}
74static inline void __of_update_property_sysfs(struct device_node *np,
75 struct property *newprop, struct property *oldprop) {}
76static inline int __of_attach_node_sysfs(struct device_node *np)
77{
78 return 0;
79}
80static inline void __of_detach_node_sysfs(struct device_node *np) {}
81#endif
82
Frank Rowandf948d6d2017-10-17 16:36:29 -070083#if defined(CONFIG_OF_RESOLVE)
84int of_resolve_phandles(struct device_node *tree);
85#endif
86
Rob Herring90dc0d12019-12-06 16:27:41 -060087void __of_phandle_cache_inv_entry(phandle handle);
Frank Rowand58011692018-12-18 11:40:03 -080088
Frank Rowandf948d6d2017-10-17 16:36:29 -070089#if defined(CONFIG_OF_OVERLAY)
90void of_overlay_mutex_lock(void);
91void of_overlay_mutex_unlock(void);
92#else
93static inline void of_overlay_mutex_lock(void) {};
94static inline void of_overlay_mutex_unlock(void) {};
95#endif
96
Arnd Bergmann5d4dd652017-04-28 11:44:12 +020097#if defined(CONFIG_OF_UNITTEST) && defined(CONFIG_OF_OVERLAY)
Frank Rowand81d0848f2017-04-25 17:09:54 -070098extern void __init unittest_unflatten_overlay_base(void);
99#else
100static inline void unittest_unflatten_overlay_base(void) {};
101#endif
102
103extern 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),
107 bool detached);
108
Pantelis Antoniou69843392014-07-04 19:58:47 +0300109/**
110 * General utilities for working with live trees.
111 *
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.
115 */
116struct property *__of_prop_dup(const struct property *prop, gfp_t allocflags);
Frank Rowandb89dae12018-02-26 14:01:23 -0800117struct device_node *__of_node_dup(const struct device_node *np,
118 const char *full_name);
Pantelis Antoniou69843392014-07-04 19:58:47 +0300119
Frank Rowande0a58f32017-10-17 16:36:31 -0700120struct device_node *__of_find_node_by_path(struct device_node *parent,
121 const char *path);
Rob Herring27497e12017-06-02 12:43:18 -0500122struct device_node *__of_find_node_by_full_path(struct device_node *node,
123 const char *path);
124
Grant Likelya25095d2014-07-15 23:25:43 -0600125extern const void *__of_get_property(const struct device_node *np,
126 const char *name, int *lenp);
Pantelis Antonioud8c50082014-07-04 19:58:46 +0300127extern int __of_add_property(struct device_node *np, struct property *prop);
Grant Likely8a2b22a22014-07-23 17:05:06 -0600128extern int __of_add_property_sysfs(struct device_node *np,
129 struct property *prop);
Pantelis Antonioud8c50082014-07-04 19:58:46 +0300130extern int __of_remove_property(struct device_node *np, struct property *prop);
Grant Likely8a2b22a22014-07-23 17:05:06 -0600131extern void __of_remove_property_sysfs(struct device_node *np,
132 struct property *prop);
Pantelis Antonioud8c50082014-07-04 19:58:46 +0300133extern int __of_update_property(struct device_node *np,
134 struct property *newprop, struct property **oldprop);
Grant Likely8a2b22a22014-07-23 17:05:06 -0600135extern void __of_update_property_sysfs(struct device_node *np,
136 struct property *newprop, struct property *oldprop);
Pantelis Antonioud8c50082014-07-04 19:58:46 +0300137
Grant Likely8a2b22a22014-07-23 17:05:06 -0600138extern int __of_attach_node_sysfs(struct device_node *np);
Pantelis Antonioud8c50082014-07-04 19:58:46 +0300139extern void __of_detach_node(struct device_node *np);
Grant Likely8a2b22a22014-07-23 17:05:06 -0600140extern void __of_detach_node_sysfs(struct device_node *np);
Pantelis Antonioud8c50082014-07-04 19:58:46 +0300141
Frank Rowandd9fc8802016-06-16 10:51:46 -0700142extern void __of_sysfs_remove_bin_file(struct device_node *np,
143 struct property *prop);
144
Frank Rowand0b3ce782018-03-04 16:14:47 -0800145/* illegal phandle value (set when unresolved) */
146#define OF_PHANDLE_ILLEGAL 0xdeadbeef
147
Pantelis Antoniou201c9102014-07-04 19:58:49 +0300148/* 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)
152
153/* reverse iterator */
154#define for_each_transaction_entry_reverse(_oft, _te) \
155 list_for_each_entry_reverse(_te, &(_oft)->te_list, node)
156
Robin Murphyb68ac8d2019-07-02 18:42:39 +0100157extern int of_bus_n_addr_cells(struct device_node *np);
158extern int of_bus_n_size_cells(struct device_node *np);
159
Rob Herring6e6faf62019-09-05 11:53:27 +0100160#ifdef CONFIG_OF_ADDRESS
161extern int of_dma_get_range(struct device_node *np, u64 *dma_addr,
162 u64 *paddr, u64 *size);
163#else
164static inline int of_dma_get_range(struct device_node *np, u64 *dma_addr,
165 u64 *paddr, u64 *size)
166{
167 return -ENODEV;
168}
169#endif
170
Stepan Moskovchenkoced4eec2012-12-06 14:55:41 -0800171#endif /* _LINUX_OF_PRIVATE_H */