blob: 0c609e7d0334c1636b76148b70651bf23321c29d [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;
27 char stem[0];
28};
29
Pantelis Antoniouc05aba22014-07-04 19:58:03 +030030extern struct mutex of_mutex;
Stepan Moskovchenkoced4eec2012-12-06 14:55:41 -080031extern struct list_head aliases_lookup;
Grant Likely8a2b22a22014-07-23 17:05:06 -060032extern struct kset *of_kset;
33
Grant Likely6afc0dc2014-06-26 15:40:48 +010034#if defined(CONFIG_OF_DYNAMIC)
35extern int of_property_notify(int action, struct device_node *np,
Grant Likely259092a2014-07-16 12:48:23 -060036 struct property *prop, struct property *old_prop);
Grant Likely6afc0dc2014-06-26 15:40:48 +010037extern void of_node_release(struct kobject *kobj);
Frank Rowand24789c52017-10-17 16:36:26 -070038extern int __of_changeset_apply_entries(struct of_changeset *ocs,
39 int *ret_revert);
40extern int __of_changeset_apply_notify(struct of_changeset *ocs);
41extern int __of_changeset_revert_entries(struct of_changeset *ocs,
42 int *ret_apply);
43extern int __of_changeset_revert_notify(struct of_changeset *ocs);
Grant Likely6afc0dc2014-06-26 15:40:48 +010044#else /* CONFIG_OF_DYNAMIC */
45static inline int of_property_notify(int action, struct device_node *np,
Grant Likely259092a2014-07-16 12:48:23 -060046 struct property *prop, struct property *old_prop)
Grant Likely6afc0dc2014-06-26 15:40:48 +010047{
48 return 0;
49}
50#endif /* CONFIG_OF_DYNAMIC */
51
Rob Herringb56b5522017-10-04 14:09:40 -050052#if defined(CONFIG_OF_KOBJ)
53int of_node_is_attached(struct device_node *node);
54int __of_add_property_sysfs(struct device_node *np, struct property *pp);
55void __of_remove_property_sysfs(struct device_node *np, struct property *prop);
56void __of_update_property_sysfs(struct device_node *np, struct property *newprop,
57 struct property *oldprop);
58int __of_attach_node_sysfs(struct device_node *np);
59void __of_detach_node_sysfs(struct device_node *np);
60#else
61static inline int __of_add_property_sysfs(struct device_node *np, struct property *pp)
62{
63 return 0;
64}
65static inline void __of_remove_property_sysfs(struct device_node *np, struct property *prop) {}
66static inline void __of_update_property_sysfs(struct device_node *np,
67 struct property *newprop, struct property *oldprop) {}
68static inline int __of_attach_node_sysfs(struct device_node *np)
69{
70 return 0;
71}
72static inline void __of_detach_node_sysfs(struct device_node *np) {}
73#endif
74
Frank Rowandf948d6d2017-10-17 16:36:29 -070075#if defined(CONFIG_OF_RESOLVE)
76int of_resolve_phandles(struct device_node *tree);
77#endif
78
79#if defined(CONFIG_OF_OVERLAY)
80void of_overlay_mutex_lock(void);
81void of_overlay_mutex_unlock(void);
82#else
83static inline void of_overlay_mutex_lock(void) {};
84static inline void of_overlay_mutex_unlock(void) {};
85#endif
86
Arnd Bergmann5d4dd652017-04-28 11:44:12 +020087#if defined(CONFIG_OF_UNITTEST) && defined(CONFIG_OF_OVERLAY)
Frank Rowand81d0848f2017-04-25 17:09:54 -070088extern void __init unittest_unflatten_overlay_base(void);
89#else
90static inline void unittest_unflatten_overlay_base(void) {};
91#endif
92
93extern void *__unflatten_device_tree(const void *blob,
94 struct device_node *dad,
95 struct device_node **mynodes,
96 void *(*dt_alloc)(u64 size, u64 align),
97 bool detached);
98
Pantelis Antoniou69843392014-07-04 19:58:47 +030099/**
100 * General utilities for working with live trees.
101 *
102 * All functions with two leading underscores operate
103 * without taking node references, so you either have to
104 * own the devtree lock or work on detached trees only.
105 */
106struct property *__of_prop_dup(const struct property *prop, gfp_t allocflags);
Grant Likelye5179582014-11-17 22:31:32 +0000107__printf(2, 3) struct device_node *__of_node_dup(const struct device_node *np, const char *fmt, ...);
Pantelis Antoniou69843392014-07-04 19:58:47 +0300108
Frank Rowande0a58f32017-10-17 16:36:31 -0700109struct device_node *__of_find_node_by_path(struct device_node *parent,
110 const char *path);
Rob Herring27497e12017-06-02 12:43:18 -0500111struct device_node *__of_find_node_by_full_path(struct device_node *node,
112 const char *path);
113
Grant Likelya25095d2014-07-15 23:25:43 -0600114extern const void *__of_get_property(const struct device_node *np,
115 const char *name, int *lenp);
Pantelis Antonioud8c50082014-07-04 19:58:46 +0300116extern int __of_add_property(struct device_node *np, struct property *prop);
Grant Likely8a2b22a22014-07-23 17:05:06 -0600117extern int __of_add_property_sysfs(struct device_node *np,
118 struct property *prop);
Pantelis Antonioud8c50082014-07-04 19:58:46 +0300119extern int __of_remove_property(struct device_node *np, struct property *prop);
Grant Likely8a2b22a22014-07-23 17:05:06 -0600120extern void __of_remove_property_sysfs(struct device_node *np,
121 struct property *prop);
Pantelis Antonioud8c50082014-07-04 19:58:46 +0300122extern int __of_update_property(struct device_node *np,
123 struct property *newprop, struct property **oldprop);
Grant Likely8a2b22a22014-07-23 17:05:06 -0600124extern void __of_update_property_sysfs(struct device_node *np,
125 struct property *newprop, struct property *oldprop);
Pantelis Antonioud8c50082014-07-04 19:58:46 +0300126
Grant Likely8a2b22a22014-07-23 17:05:06 -0600127extern int __of_attach_node_sysfs(struct device_node *np);
Pantelis Antonioud8c50082014-07-04 19:58:46 +0300128extern void __of_detach_node(struct device_node *np);
Grant Likely8a2b22a22014-07-23 17:05:06 -0600129extern void __of_detach_node_sysfs(struct device_node *np);
Pantelis Antonioud8c50082014-07-04 19:58:46 +0300130
Frank Rowandd9fc8802016-06-16 10:51:46 -0700131extern void __of_sysfs_remove_bin_file(struct device_node *np,
132 struct property *prop);
133
Pantelis Antoniou201c9102014-07-04 19:58:49 +0300134/* iterators for transactions, used for overlays */
135/* forward iterator */
136#define for_each_transaction_entry(_oft, _te) \
137 list_for_each_entry(_te, &(_oft)->te_list, node)
138
139/* reverse iterator */
140#define for_each_transaction_entry_reverse(_oft, _te) \
141 list_for_each_entry_reverse(_te, &(_oft)->te_list, node)
142
Stepan Moskovchenkoced4eec2012-12-06 14:55:41 -0800143#endif /* _LINUX_OF_PRIVATE_H */