blob: 248730567dbe11d68ce44d4c03d68e4b2d46725b [file] [log] [blame]
Stepan Moskovchenkoced4eec2012-12-06 14:55:41 -08001#ifndef _LINUX_OF_PRIVATE_H
2#define _LINUX_OF_PRIVATE_H
3/*
4 * Private symbols used by OF support code
5 *
6 * Paul Mackerras August 1996.
7 * Copyright (C) 1996-2005 Paul Mackerras.
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version
12 * 2 of the License, or (at your option) any later version.
13 */
14
15/**
16 * struct alias_prop - Alias property in 'aliases' node
17 * @link: List node to link the structure in aliases_lookup list
18 * @alias: Alias property name
19 * @np: Pointer to device_node that the alias stands for
20 * @id: Index value from end of alias name
21 * @stem: Alias string without the index
22 *
23 * The structure represents one alias property of 'aliases' node as
24 * an entry in aliases_lookup list.
25 */
26struct alias_prop {
27 struct list_head link;
28 const char *alias;
29 struct device_node *np;
30 int id;
31 char stem[0];
32};
33
Pantelis Antoniouc05aba22014-07-04 19:58:03 +030034extern struct mutex of_mutex;
Stepan Moskovchenkoced4eec2012-12-06 14:55:41 -080035extern struct list_head aliases_lookup;
Grant Likely8a2b22a2014-07-23 17:05:06 -060036extern struct kset *of_kset;
37
Grant Likely6afc0dc2014-06-26 15:40:48 +010038#if defined(CONFIG_OF_DYNAMIC)
39extern int of_property_notify(int action, struct device_node *np,
Grant Likely259092a2014-07-16 12:48:23 -060040 struct property *prop, struct property *old_prop);
Grant Likely6afc0dc2014-06-26 15:40:48 +010041extern void of_node_release(struct kobject *kobj);
Frank Rowand24789c52017-10-17 16:36:26 -070042extern int __of_changeset_apply_entries(struct of_changeset *ocs,
43 int *ret_revert);
44extern int __of_changeset_apply_notify(struct of_changeset *ocs);
45extern int __of_changeset_revert_entries(struct of_changeset *ocs,
46 int *ret_apply);
47extern int __of_changeset_revert_notify(struct of_changeset *ocs);
Grant Likely6afc0dc2014-06-26 15:40:48 +010048#else /* CONFIG_OF_DYNAMIC */
49static inline int of_property_notify(int action, struct device_node *np,
Grant Likely259092a2014-07-16 12:48:23 -060050 struct property *prop, struct property *old_prop)
Grant Likely6afc0dc2014-06-26 15:40:48 +010051{
52 return 0;
53}
54#endif /* CONFIG_OF_DYNAMIC */
55
Rob Herringb56b5522017-10-04 14:09:40 -050056#if defined(CONFIG_OF_KOBJ)
57int of_node_is_attached(struct device_node *node);
58int __of_add_property_sysfs(struct device_node *np, struct property *pp);
59void __of_remove_property_sysfs(struct device_node *np, struct property *prop);
60void __of_update_property_sysfs(struct device_node *np, struct property *newprop,
61 struct property *oldprop);
62int __of_attach_node_sysfs(struct device_node *np);
63void __of_detach_node_sysfs(struct device_node *np);
64#else
65static inline int __of_add_property_sysfs(struct device_node *np, struct property *pp)
66{
67 return 0;
68}
69static inline void __of_remove_property_sysfs(struct device_node *np, struct property *prop) {}
70static inline void __of_update_property_sysfs(struct device_node *np,
71 struct property *newprop, struct property *oldprop) {}
72static inline int __of_attach_node_sysfs(struct device_node *np)
73{
74 return 0;
75}
76static inline void __of_detach_node_sysfs(struct device_node *np) {}
77#endif
78
Frank Rowandf948d6d2017-10-17 16:36:29 -070079#if defined(CONFIG_OF_RESOLVE)
80int of_resolve_phandles(struct device_node *tree);
81#endif
82
83#if defined(CONFIG_OF_OVERLAY)
84void of_overlay_mutex_lock(void);
85void of_overlay_mutex_unlock(void);
86#else
87static inline void of_overlay_mutex_lock(void) {};
88static inline void of_overlay_mutex_unlock(void) {};
89#endif
90
Arnd Bergmann5d4dd652017-04-28 11:44:12 +020091#if defined(CONFIG_OF_UNITTEST) && defined(CONFIG_OF_OVERLAY)
Frank Rowand81d0848f2017-04-25 17:09:54 -070092extern void __init unittest_unflatten_overlay_base(void);
93#else
94static inline void unittest_unflatten_overlay_base(void) {};
95#endif
96
97extern void *__unflatten_device_tree(const void *blob,
98 struct device_node *dad,
99 struct device_node **mynodes,
100 void *(*dt_alloc)(u64 size, u64 align),
101 bool detached);
102
Pantelis Antoniou69843392014-07-04 19:58:47 +0300103/**
104 * General utilities for working with live trees.
105 *
106 * All functions with two leading underscores operate
107 * without taking node references, so you either have to
108 * own the devtree lock or work on detached trees only.
109 */
110struct property *__of_prop_dup(const struct property *prop, gfp_t allocflags);
Grant Likelye5179582014-11-17 22:31:32 +0000111__printf(2, 3) struct device_node *__of_node_dup(const struct device_node *np, const char *fmt, ...);
Pantelis Antoniou69843392014-07-04 19:58:47 +0300112
Rob Herring27497e12017-06-02 12:43:18 -0500113struct device_node *__of_find_node_by_full_path(struct device_node *node,
114 const char *path);
115
Grant Likelya25095d2014-07-15 23:25:43 -0600116extern const void *__of_get_property(const struct device_node *np,
117 const char *name, int *lenp);
Pantelis Antonioud8c50082014-07-04 19:58:46 +0300118extern int __of_add_property(struct device_node *np, struct property *prop);
Grant Likely8a2b22a2014-07-23 17:05:06 -0600119extern int __of_add_property_sysfs(struct device_node *np,
120 struct property *prop);
Pantelis Antonioud8c50082014-07-04 19:58:46 +0300121extern int __of_remove_property(struct device_node *np, struct property *prop);
Grant Likely8a2b22a2014-07-23 17:05:06 -0600122extern void __of_remove_property_sysfs(struct device_node *np,
123 struct property *prop);
Pantelis Antonioud8c50082014-07-04 19:58:46 +0300124extern int __of_update_property(struct device_node *np,
125 struct property *newprop, struct property **oldprop);
Grant Likely8a2b22a2014-07-23 17:05:06 -0600126extern void __of_update_property_sysfs(struct device_node *np,
127 struct property *newprop, struct property *oldprop);
Pantelis Antonioud8c50082014-07-04 19:58:46 +0300128
Grant Likely8a2b22a2014-07-23 17:05:06 -0600129extern int __of_attach_node_sysfs(struct device_node *np);
Pantelis Antonioud8c50082014-07-04 19:58:46 +0300130extern void __of_detach_node(struct device_node *np);
Grant Likely8a2b22a2014-07-23 17:05:06 -0600131extern void __of_detach_node_sysfs(struct device_node *np);
Pantelis Antonioud8c50082014-07-04 19:58:46 +0300132
Frank Rowandd9fc8802016-06-16 10:51:46 -0700133extern void __of_sysfs_remove_bin_file(struct device_node *np,
134 struct property *prop);
135
Pantelis Antoniou201c9102014-07-04 19:58:49 +0300136/* iterators for transactions, used for overlays */
137/* forward iterator */
138#define for_each_transaction_entry(_oft, _te) \
139 list_for_each_entry(_te, &(_oft)->te_list, node)
140
141/* reverse iterator */
142#define for_each_transaction_entry_reverse(_oft, _te) \
143 list_for_each_entry_reverse(_te, &(_oft)->te_list, node)
144
Stepan Moskovchenkoced4eec2012-12-06 14:55:41 -0800145#endif /* _LINUX_OF_PRIVATE_H */