blob: 36357f571df283e84c5cae1ac2c25e7b439f6c99 [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
Arnd Bergmann5d4dd652017-04-28 11:44:12 +020079#if defined(CONFIG_OF_UNITTEST) && defined(CONFIG_OF_OVERLAY)
Frank Rowand81d0848f2017-04-25 17:09:54 -070080extern void __init unittest_unflatten_overlay_base(void);
81#else
82static inline void unittest_unflatten_overlay_base(void) {};
83#endif
84
85extern void *__unflatten_device_tree(const void *blob,
86 struct device_node *dad,
87 struct device_node **mynodes,
88 void *(*dt_alloc)(u64 size, u64 align),
89 bool detached);
90
Pantelis Antoniou69843392014-07-04 19:58:47 +030091/**
92 * General utilities for working with live trees.
93 *
94 * All functions with two leading underscores operate
95 * without taking node references, so you either have to
96 * own the devtree lock or work on detached trees only.
97 */
98struct property *__of_prop_dup(const struct property *prop, gfp_t allocflags);
Grant Likelye5179582014-11-17 22:31:32 +000099__printf(2, 3) struct device_node *__of_node_dup(const struct device_node *np, const char *fmt, ...);
Pantelis Antoniou69843392014-07-04 19:58:47 +0300100
Rob Herring27497e12017-06-02 12:43:18 -0500101struct device_node *__of_find_node_by_full_path(struct device_node *node,
102 const char *path);
103
Grant Likelya25095d2014-07-15 23:25:43 -0600104extern const void *__of_get_property(const struct device_node *np,
105 const char *name, int *lenp);
Pantelis Antonioud8c50082014-07-04 19:58:46 +0300106extern int __of_add_property(struct device_node *np, struct property *prop);
Grant Likely8a2b22a2014-07-23 17:05:06 -0600107extern int __of_add_property_sysfs(struct device_node *np,
108 struct property *prop);
Pantelis Antonioud8c50082014-07-04 19:58:46 +0300109extern int __of_remove_property(struct device_node *np, struct property *prop);
Grant Likely8a2b22a2014-07-23 17:05:06 -0600110extern void __of_remove_property_sysfs(struct device_node *np,
111 struct property *prop);
Pantelis Antonioud8c50082014-07-04 19:58:46 +0300112extern int __of_update_property(struct device_node *np,
113 struct property *newprop, struct property **oldprop);
Grant Likely8a2b22a2014-07-23 17:05:06 -0600114extern void __of_update_property_sysfs(struct device_node *np,
115 struct property *newprop, struct property *oldprop);
Pantelis Antonioud8c50082014-07-04 19:58:46 +0300116
Grant Likely8a2b22a2014-07-23 17:05:06 -0600117extern int __of_attach_node_sysfs(struct device_node *np);
Pantelis Antonioud8c50082014-07-04 19:58:46 +0300118extern void __of_detach_node(struct device_node *np);
Grant Likely8a2b22a2014-07-23 17:05:06 -0600119extern void __of_detach_node_sysfs(struct device_node *np);
Pantelis Antonioud8c50082014-07-04 19:58:46 +0300120
Frank Rowandd9fc8802016-06-16 10:51:46 -0700121extern void __of_sysfs_remove_bin_file(struct device_node *np,
122 struct property *prop);
123
Pantelis Antoniou201c9102014-07-04 19:58:49 +0300124/* iterators for transactions, used for overlays */
125/* forward iterator */
126#define for_each_transaction_entry(_oft, _te) \
127 list_for_each_entry(_te, &(_oft)->te_list, node)
128
129/* reverse iterator */
130#define for_each_transaction_entry_reverse(_oft, _te) \
131 list_for_each_entry_reverse(_te, &(_oft)->te_list, node)
132
Stepan Moskovchenkoced4eec2012-12-06 14:55:41 -0800133#endif /* _LINUX_OF_PRIVATE_H */