blob: eb811185448cf474f70736847f6006cf19467f83 [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);
Gavin Shan18322372015-11-05 00:12:49 +110042extern int __of_changeset_apply(struct of_changeset *ocs);
43extern int __of_changeset_revert(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
Patrick Dalyfc006912018-05-18 14:01:34 -070052#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
Pantelis Antoniou69843392014-07-04 19:58:47 +030075/**
76 * General utilities for working with live trees.
77 *
78 * All functions with two leading underscores operate
79 * without taking node references, so you either have to
80 * own the devtree lock or work on detached trees only.
81 */
82struct property *__of_prop_dup(const struct property *prop, gfp_t allocflags);
Grant Likelye5179582014-11-17 22:31:32 +000083__printf(2, 3) struct device_node *__of_node_dup(const struct device_node *np, const char *fmt, ...);
Pantelis Antoniou69843392014-07-04 19:58:47 +030084
Grant Likelya25095d2014-07-15 23:25:43 -060085extern const void *__of_get_property(const struct device_node *np,
86 const char *name, int *lenp);
Pantelis Antonioud8c50082014-07-04 19:58:46 +030087extern int __of_add_property(struct device_node *np, struct property *prop);
Grant Likely8a2b22a2014-07-23 17:05:06 -060088extern int __of_add_property_sysfs(struct device_node *np,
89 struct property *prop);
Pantelis Antonioud8c50082014-07-04 19:58:46 +030090extern int __of_remove_property(struct device_node *np, struct property *prop);
Grant Likely8a2b22a2014-07-23 17:05:06 -060091extern void __of_remove_property_sysfs(struct device_node *np,
92 struct property *prop);
Pantelis Antonioud8c50082014-07-04 19:58:46 +030093extern int __of_update_property(struct device_node *np,
94 struct property *newprop, struct property **oldprop);
Grant Likely8a2b22a2014-07-23 17:05:06 -060095extern void __of_update_property_sysfs(struct device_node *np,
96 struct property *newprop, struct property *oldprop);
Pantelis Antonioud8c50082014-07-04 19:58:46 +030097
98extern void __of_attach_node(struct device_node *np);
Grant Likely8a2b22a2014-07-23 17:05:06 -060099extern int __of_attach_node_sysfs(struct device_node *np);
Pantelis Antonioud8c50082014-07-04 19:58:46 +0300100extern void __of_detach_node(struct device_node *np);
Grant Likely8a2b22a2014-07-23 17:05:06 -0600101extern void __of_detach_node_sysfs(struct device_node *np);
Pantelis Antonioud8c50082014-07-04 19:58:46 +0300102
Frank Rowandd9fc8802016-06-16 10:51:46 -0700103extern void __of_sysfs_remove_bin_file(struct device_node *np,
104 struct property *prop);
105
Frank Rowandf64054b2018-02-23 14:23:10 +0530106/* illegal phandle value (set when unresolved) */
107#define OF_PHANDLE_ILLEGAL 0xdeadbeef
108
Frank Rowande80f6cf2018-02-23 14:31:39 +0530109extern void __init of_populate_phandle_cache_early(void);
110
Pantelis Antoniou201c9102014-07-04 19:58:49 +0300111/* iterators for transactions, used for overlays */
112/* forward iterator */
113#define for_each_transaction_entry(_oft, _te) \
114 list_for_each_entry(_te, &(_oft)->te_list, node)
115
116/* reverse iterator */
117#define for_each_transaction_entry_reverse(_oft, _te) \
118 list_for_each_entry_reverse(_te, &(_oft)->te_list, node)
119
Stepan Moskovchenkoced4eec2012-12-06 14:55:41 -0800120#endif /* _LINUX_OF_PRIVATE_H */