blob: c150abb9049d776d48c4ef5d38b821dcea09cef7 [file] [log] [blame]
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001/*
2 * Functions for working with device tree overlays
3 *
4 * Copyright (C) 2012 Pantelis Antoniou <panto@antoniou-consulting.com>
5 * Copyright (C) 2012 Texas Instruments Inc.
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * version 2 as published by the Free Software Foundation.
10 */
Rob Herring606ad422016-06-15 08:32:18 -050011
12#define pr_fmt(fmt) "OF: overlay: " fmt
13
Pantelis Antoniou7518b5892014-10-28 22:35:58 +020014#include <linux/kernel.h>
15#include <linux/module.h>
16#include <linux/of.h>
17#include <linux/of_device.h>
18#include <linux/string.h>
19#include <linux/ctype.h>
20#include <linux/errno.h>
Pantelis Antoniou7518b5892014-10-28 22:35:58 +020021#include <linux/slab.h>
22#include <linux/err.h>
Mark Brown0d1886d2015-02-17 11:36:58 +090023#include <linux/idr.h>
Pantelis Antoniou7518b5892014-10-28 22:35:58 +020024
25#include "of_private.h"
26
27/**
Frank Rowand0290c4c2017-10-17 16:36:23 -070028 * struct fragment - info about fragment nodes in overlay expanded device tree
Pantelis Antoniou7518b5892014-10-28 22:35:58 +020029 * @target: target of the overlay operation
Frank Rowand0290c4c2017-10-17 16:36:23 -070030 * @overlay: pointer to the __overlay__ node
Pantelis Antoniou7518b5892014-10-28 22:35:58 +020031 */
Frank Rowand0290c4c2017-10-17 16:36:23 -070032struct fragment {
Pantelis Antoniou7518b5892014-10-28 22:35:58 +020033 struct device_node *target;
34 struct device_node *overlay;
35};
36
37/**
Frank Rowand0290c4c2017-10-17 16:36:23 -070038 * struct overlay_changeset
Frank Rowand3912b792017-10-17 16:36:30 -070039 * @ovcs_list: list on which we are located
Frank Rowande0a58f32017-10-17 16:36:31 -070040 * @overlay_tree: expanded device tree that contains the fragment nodes
Frank Rowand3912b792017-10-17 16:36:30 -070041 * @count: count of fragment structures
42 * @fragments: fragment nodes in the overlay expanded device tree
43 * @symbols_fragment: last element of @fragments[] is the __symbols__ node
44 * @cset: changeset to apply fragments to live device tree
Pantelis Antoniou7518b5892014-10-28 22:35:58 +020045 */
Frank Rowand0290c4c2017-10-17 16:36:23 -070046struct overlay_changeset {
Pantelis Antoniou7518b5892014-10-28 22:35:58 +020047 int id;
Frank Rowand0290c4c2017-10-17 16:36:23 -070048 struct list_head ovcs_list;
Frank Rowande0a58f32017-10-17 16:36:31 -070049 struct device_node *overlay_tree;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +020050 int count;
Frank Rowand0290c4c2017-10-17 16:36:23 -070051 struct fragment *fragments;
Frank Rowand3912b792017-10-17 16:36:30 -070052 bool symbols_fragment;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +020053 struct of_changeset cset;
54};
55
Frank Rowand24789c52017-10-17 16:36:26 -070056/* flags are sticky - once set, do not reset */
57static int devicetree_state_flags;
58#define DTSF_APPLY_FAIL 0x01
59#define DTSF_REVERT_FAIL 0x02
60
61/*
62 * If a changeset apply or revert encounters an error, an attempt will
63 * be made to undo partial changes, but may fail. If the undo fails
64 * we do not know the state of the devicetree.
65 */
66static int devicetree_corrupt(void)
67{
68 return devicetree_state_flags &
69 (DTSF_APPLY_FAIL | DTSF_REVERT_FAIL);
70}
71
Frank Rowand0290c4c2017-10-17 16:36:23 -070072static int build_changeset_next_level(struct overlay_changeset *ovcs,
73 struct device_node *target_node,
Frank Rowand3912b792017-10-17 16:36:30 -070074 const struct device_node *overlay_node);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +020075
Frank Rowandf948d6d2017-10-17 16:36:29 -070076/*
77 * of_resolve_phandles() finds the largest phandle in the live tree.
78 * of_overlay_apply() may add a larger phandle to the live tree.
79 * Do not allow race between two overlays being applied simultaneously:
80 * mutex_lock(&of_overlay_phandle_mutex)
81 * of_resolve_phandles()
82 * of_overlay_apply()
83 * mutex_unlock(&of_overlay_phandle_mutex)
84 */
85static DEFINE_MUTEX(of_overlay_phandle_mutex);
86
87void of_overlay_mutex_lock(void)
88{
89 mutex_lock(&of_overlay_phandle_mutex);
90}
91
92void of_overlay_mutex_unlock(void)
93{
94 mutex_unlock(&of_overlay_phandle_mutex);
95}
96
97
Frank Rowand61b4de42017-10-17 16:36:25 -070098static LIST_HEAD(ovcs_list);
99static DEFINE_IDR(ovcs_idr);
100
Frank Rowand0290c4c2017-10-17 16:36:23 -0700101static BLOCKING_NOTIFIER_HEAD(overlay_notify_chain);
Alan Tull39a842e2016-11-01 14:14:22 -0500102
103int of_overlay_notifier_register(struct notifier_block *nb)
104{
Frank Rowand0290c4c2017-10-17 16:36:23 -0700105 return blocking_notifier_chain_register(&overlay_notify_chain, nb);
Alan Tull39a842e2016-11-01 14:14:22 -0500106}
107EXPORT_SYMBOL_GPL(of_overlay_notifier_register);
108
109int of_overlay_notifier_unregister(struct notifier_block *nb)
110{
Frank Rowand0290c4c2017-10-17 16:36:23 -0700111 return blocking_notifier_chain_unregister(&overlay_notify_chain, nb);
Alan Tull39a842e2016-11-01 14:14:22 -0500112}
113EXPORT_SYMBOL_GPL(of_overlay_notifier_unregister);
114
Frank Rowand24789c52017-10-17 16:36:26 -0700115static char *of_overlay_action_name[] = {
116 "pre-apply",
117 "post-apply",
118 "pre-remove",
119 "post-remove",
120};
121
Frank Rowand0290c4c2017-10-17 16:36:23 -0700122static int overlay_notify(struct overlay_changeset *ovcs,
123 enum of_overlay_notify_action action)
Alan Tull39a842e2016-11-01 14:14:22 -0500124{
125 struct of_overlay_notify_data nd;
126 int i, ret;
127
Frank Rowand0290c4c2017-10-17 16:36:23 -0700128 for (i = 0; i < ovcs->count; i++) {
129 struct fragment *fragment = &ovcs->fragments[i];
Alan Tull39a842e2016-11-01 14:14:22 -0500130
Frank Rowand0290c4c2017-10-17 16:36:23 -0700131 nd.target = fragment->target;
132 nd.overlay = fragment->overlay;
Alan Tull39a842e2016-11-01 14:14:22 -0500133
Frank Rowand0290c4c2017-10-17 16:36:23 -0700134 ret = blocking_notifier_call_chain(&overlay_notify_chain,
Alan Tull39a842e2016-11-01 14:14:22 -0500135 action, &nd);
Frank Rowanda1d19bd2017-10-19 14:18:27 -0700136 if (ret == NOTIFY_OK || ret == NOTIFY_STOP)
Frank Rowand24789c52017-10-17 16:36:26 -0700137 return 0;
138 if (ret) {
139 ret = notifier_to_errno(ret);
140 pr_err("overlay changeset %s notifier error %d, target: %pOF\n",
141 of_overlay_action_name[action], ret, nd.target);
142 return ret;
143 }
Alan Tull39a842e2016-11-01 14:14:22 -0500144 }
145
146 return 0;
147}
148
Frank Rowand42b2e942017-10-17 16:36:24 -0700149/*
Frank Rowande0a58f32017-10-17 16:36:31 -0700150 * The values of properties in the "/__symbols__" node are paths in
151 * the ovcs->overlay_tree. When duplicating the properties, the paths
152 * need to be adjusted to be the correct path for the live device tree.
Frank Rowand42b2e942017-10-17 16:36:24 -0700153 *
Frank Rowande0a58f32017-10-17 16:36:31 -0700154 * The paths refer to a node in the subtree of a fragment node's "__overlay__"
155 * node, for example "/fragment@0/__overlay__/symbol_path_tail",
156 * where symbol_path_tail can be a single node or it may be a multi-node path.
Frank Rowand42b2e942017-10-17 16:36:24 -0700157 *
158 * The duplicated property value will be modified by replacing the
159 * "/fragment_name/__overlay/" portion of the value with the target
160 * path from the fragment node.
161 */
Frank Rowand0290c4c2017-10-17 16:36:23 -0700162static struct property *dup_and_fixup_symbol_prop(
163 struct overlay_changeset *ovcs, const struct property *prop)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200164{
Frank Rowand0290c4c2017-10-17 16:36:23 -0700165 struct fragment *fragment;
Frank Rowande0a58f32017-10-17 16:36:31 -0700166 struct property *new_prop;
167 struct device_node *fragment_node;
168 struct device_node *overlay_node;
169 const char *path;
170 const char *path_tail;
Frank Rowandd1651b02017-07-19 09:25:22 -0700171 const char *target_path;
172 int k;
Frank Rowandd1651b02017-07-19 09:25:22 -0700173 int overlay_name_len;
Frank Rowande0a58f32017-10-17 16:36:31 -0700174 int path_len;
175 int path_tail_len;
Frank Rowandd1651b02017-07-19 09:25:22 -0700176 int target_path_len;
177
178 if (!prop->value)
179 return NULL;
Frank Rowande0a58f32017-10-17 16:36:31 -0700180 if (strnlen(prop->value, prop->length) >= prop->length)
Frank Rowandd1651b02017-07-19 09:25:22 -0700181 return NULL;
Frank Rowande0a58f32017-10-17 16:36:31 -0700182 path = prop->value;
183 path_len = strlen(path);
184
185 if (path_len < 1)
186 return NULL;
187 fragment_node = __of_find_node_by_path(ovcs->overlay_tree, path + 1);
188 overlay_node = __of_find_node_by_path(fragment_node, "__overlay__/");
189 of_node_put(fragment_node);
190 of_node_put(overlay_node);
Frank Rowandd1651b02017-07-19 09:25:22 -0700191
Frank Rowand0290c4c2017-10-17 16:36:23 -0700192 for (k = 0; k < ovcs->count; k++) {
193 fragment = &ovcs->fragments[k];
Frank Rowande0a58f32017-10-17 16:36:31 -0700194 if (fragment->overlay == overlay_node)
Frank Rowandd1651b02017-07-19 09:25:22 -0700195 break;
196 }
Frank Rowand0290c4c2017-10-17 16:36:23 -0700197 if (k >= ovcs->count)
Frank Rowande0a58f32017-10-17 16:36:31 -0700198 return NULL;
Frank Rowandd1651b02017-07-19 09:25:22 -0700199
Frank Rowande0a58f32017-10-17 16:36:31 -0700200 overlay_name_len = snprintf(NULL, 0, "%pOF", fragment->overlay);
201
202 if (overlay_name_len > path_len)
203 return NULL;
204 path_tail = path + overlay_name_len;
205 path_tail_len = strlen(path_tail);
206
207 target_path = kasprintf(GFP_KERNEL, "%pOF", fragment->target);
208 if (!target_path)
209 return NULL;
Frank Rowandd1651b02017-07-19 09:25:22 -0700210 target_path_len = strlen(target_path);
211
Frank Rowande0a58f32017-10-17 16:36:31 -0700212 new_prop = kzalloc(sizeof(*new_prop), GFP_KERNEL);
213 if (!new_prop)
214 goto err_free_target_path;
Frank Rowandd1651b02017-07-19 09:25:22 -0700215
Frank Rowande0a58f32017-10-17 16:36:31 -0700216 new_prop->name = kstrdup(prop->name, GFP_KERNEL);
217 new_prop->length = target_path_len + path_tail_len + 1;
218 new_prop->value = kzalloc(new_prop->length, GFP_KERNEL);
219 if (!new_prop->name || !new_prop->value)
220 goto err_free_new_prop;
Frank Rowandd1651b02017-07-19 09:25:22 -0700221
Frank Rowande0a58f32017-10-17 16:36:31 -0700222 strcpy(new_prop->value, target_path);
223 strcpy(new_prop->value + target_path_len, path_tail);
Frank Rowandd1651b02017-07-19 09:25:22 -0700224
Frank Rowande0a58f32017-10-17 16:36:31 -0700225 of_property_set_flag(new_prop, OF_DYNAMIC);
Frank Rowandd1651b02017-07-19 09:25:22 -0700226
Frank Rowande0a58f32017-10-17 16:36:31 -0700227 return new_prop;
Frank Rowandd1651b02017-07-19 09:25:22 -0700228
Frank Rowande0a58f32017-10-17 16:36:31 -0700229err_free_new_prop:
230 kfree(new_prop->name);
231 kfree(new_prop->value);
232 kfree(new_prop);
233err_free_target_path:
234 kfree(target_path);
Frank Rowandd1651b02017-07-19 09:25:22 -0700235
Frank Rowandd1651b02017-07-19 09:25:22 -0700236 return NULL;
Frank Rowandd1651b02017-07-19 09:25:22 -0700237}
238
Frank Rowand0290c4c2017-10-17 16:36:23 -0700239/**
240 * add_changeset_property() - add @overlay_prop to overlay changeset
241 * @ovcs: overlay changeset
242 * @target_node: where to place @overlay_prop in live tree
243 * @overlay_prop: property to add or update, from overlay tree
Frank Rowand3912b792017-10-17 16:36:30 -0700244 * @is_symbols_prop: 1 if @overlay_prop is from node "/__symbols__"
Frank Rowand0290c4c2017-10-17 16:36:23 -0700245 *
246 * If @overlay_prop does not already exist in @target_node, add changeset entry
247 * to add @overlay_prop in @target_node, else add changeset entry to update
248 * value of @overlay_prop.
249 *
Frank Rowand646afc42017-10-17 16:36:21 -0700250 * Some special properties are not updated (no error returned).
Frank Rowand0290c4c2017-10-17 16:36:23 -0700251 *
Frank Rowand646afc42017-10-17 16:36:21 -0700252 * Update of property in symbols node is not allowed.
Frank Rowand0290c4c2017-10-17 16:36:23 -0700253 *
254 * Returns 0 on success, -ENOMEM if memory allocation failure, or -EINVAL if
255 * invalid @overlay.
Frank Rowand646afc42017-10-17 16:36:21 -0700256 */
Frank Rowand0290c4c2017-10-17 16:36:23 -0700257static int add_changeset_property(struct overlay_changeset *ovcs,
258 struct device_node *target_node,
259 struct property *overlay_prop,
Frank Rowand3912b792017-10-17 16:36:30 -0700260 bool is_symbols_prop)
Frank Rowandd1651b02017-07-19 09:25:22 -0700261{
Frank Rowand0290c4c2017-10-17 16:36:23 -0700262 struct property *new_prop = NULL, *prop;
Lixin Wangac0f3e32017-10-16 17:54:32 +0800263 int ret = 0;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200264
Frank Rowand0290c4c2017-10-17 16:36:23 -0700265 prop = of_find_property(target_node, overlay_prop->name, NULL);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200266
Frank Rowand0290c4c2017-10-17 16:36:23 -0700267 if (!of_prop_cmp(overlay_prop->name, "name") ||
268 !of_prop_cmp(overlay_prop->name, "phandle") ||
269 !of_prop_cmp(overlay_prop->name, "linux,phandle"))
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200270 return 0;
271
Frank Rowand3912b792017-10-17 16:36:30 -0700272 if (is_symbols_prop) {
Frank Rowand0290c4c2017-10-17 16:36:23 -0700273 if (prop)
Frank Rowandd1651b02017-07-19 09:25:22 -0700274 return -EINVAL;
Frank Rowand0290c4c2017-10-17 16:36:23 -0700275 new_prop = dup_and_fixup_symbol_prop(ovcs, overlay_prop);
Frank Rowandd1651b02017-07-19 09:25:22 -0700276 } else {
Frank Rowand0290c4c2017-10-17 16:36:23 -0700277 new_prop = __of_prop_dup(overlay_prop, GFP_KERNEL);
Frank Rowandd1651b02017-07-19 09:25:22 -0700278 }
279
Frank Rowand0290c4c2017-10-17 16:36:23 -0700280 if (!new_prop)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200281 return -ENOMEM;
282
Frank Rowand0290c4c2017-10-17 16:36:23 -0700283 if (!prop)
284 ret = of_changeset_add_property(&ovcs->cset, target_node,
285 new_prop);
Frank Rowand646afc42017-10-17 16:36:21 -0700286 else
Frank Rowand0290c4c2017-10-17 16:36:23 -0700287 ret = of_changeset_update_property(&ovcs->cset, target_node,
288 new_prop);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200289
Lixin Wangac0f3e32017-10-16 17:54:32 +0800290 if (ret) {
Frank Rowand0290c4c2017-10-17 16:36:23 -0700291 kfree(new_prop->name);
292 kfree(new_prop->value);
293 kfree(new_prop);
Lixin Wangac0f3e32017-10-16 17:54:32 +0800294 }
295 return ret;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200296}
297
Frank Rowand0290c4c2017-10-17 16:36:23 -0700298/**
299 * add_changeset_node() - add @node (and children) to overlay changeset
300 * @ovcs: overlay changeset
301 * @target_node: where to place @node in live tree
302 * @node: node from within overlay device tree fragment
303 *
304 * If @node does not already exist in @target_node, add changeset entry
305 * to add @node in @target_node.
306 *
307 * If @node already exists in @target_node, and the existing node has
308 * a phandle, the overlay node is not allowed to have a phandle.
309 *
310 * If @node has child nodes, add the children recursively via
311 * build_changeset_next_level().
312 *
313 * NOTE: Multiple mods of created nodes not supported.
Frank Rowand24789c52017-10-17 16:36:26 -0700314 * If more than one fragment contains a node that does not already exist
315 * in the live tree, then for each fragment of_changeset_attach_node()
316 * will add a changeset entry to add the node. When the changeset is
317 * applied, __of_attach_node() will attach the node twice (once for
318 * each fragment). At this point the device tree will be corrupted.
319 *
320 * TODO: add integrity check to ensure that multiple fragments do not
321 * create the same node.
Frank Rowand0290c4c2017-10-17 16:36:23 -0700322 *
323 * Returns 0 on success, -ENOMEM if memory allocation failure, or -EINVAL if
324 * invalid @overlay.
325 */
326static int add_changeset_node(struct overlay_changeset *ovcs,
327 struct device_node *target_node, struct device_node *node)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200328{
Frank Rowand0290c4c2017-10-17 16:36:23 -0700329 const char *node_kbasename;
Fabio Estevamd3a89162015-03-03 10:04:45 -0300330 struct device_node *tchild;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200331 int ret = 0;
332
Frank Rowand0290c4c2017-10-17 16:36:23 -0700333 node_kbasename = kbasename(node->full_name);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200334
Frank Rowand0290c4c2017-10-17 16:36:23 -0700335 for_each_child_of_node(target_node, tchild)
336 if (!of_node_cmp(node_kbasename, kbasename(tchild->full_name)))
Frank Rowandc1cd1e02017-07-19 09:25:21 -0700337 break;
338
Frank Rowand61b4de42017-10-17 16:36:25 -0700339 if (!tchild) {
Frank Rowand0290c4c2017-10-17 16:36:23 -0700340 tchild = __of_node_dup(node, "%pOF/%s",
341 target_node, node_kbasename);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200342 if (!tchild)
343 return -ENOMEM;
344
Frank Rowand0290c4c2017-10-17 16:36:23 -0700345 tchild->parent = target_node;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200346
Frank Rowand0290c4c2017-10-17 16:36:23 -0700347 ret = of_changeset_attach_node(&ovcs->cset, tchild);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200348 if (ret)
349 return ret;
350
Frank Rowand3912b792017-10-17 16:36:30 -0700351 return build_changeset_next_level(ovcs, tchild, node);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200352 }
353
Frank Rowand6d0f5472017-10-17 16:36:28 -0700354 if (node->phandle && tchild->phandle)
355 ret = -EINVAL;
356 else
Frank Rowand3912b792017-10-17 16:36:30 -0700357 ret = build_changeset_next_level(ovcs, tchild, node);
Frank Rowand61b4de42017-10-17 16:36:25 -0700358 of_node_put(tchild);
359
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200360 return ret;
361}
362
Frank Rowand0290c4c2017-10-17 16:36:23 -0700363/**
364 * build_changeset_next_level() - add level of overlay changeset
365 * @ovcs: overlay changeset
366 * @target_node: where to place @overlay_node in live tree
367 * @overlay_node: node from within an overlay device tree fragment
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200368 *
Frank Rowand0290c4c2017-10-17 16:36:23 -0700369 * Add the properties (if any) and nodes (if any) from @overlay_node to the
370 * @ovcs->cset changeset. If an added node has child nodes, they will
371 * be added recursively.
Frank Rowand646afc42017-10-17 16:36:21 -0700372 *
373 * Do not allow symbols node to have any children.
Frank Rowand0290c4c2017-10-17 16:36:23 -0700374 *
375 * Returns 0 on success, -ENOMEM if memory allocation failure, or -EINVAL if
376 * invalid @overlay_node.
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200377 */
Frank Rowand0290c4c2017-10-17 16:36:23 -0700378static int build_changeset_next_level(struct overlay_changeset *ovcs,
379 struct device_node *target_node,
Frank Rowand3912b792017-10-17 16:36:30 -0700380 const struct device_node *overlay_node)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200381{
382 struct device_node *child;
383 struct property *prop;
384 int ret;
385
Frank Rowand0290c4c2017-10-17 16:36:23 -0700386 for_each_property_of_node(overlay_node, prop) {
Frank Rowand3912b792017-10-17 16:36:30 -0700387 ret = add_changeset_property(ovcs, target_node, prop, 0);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200388 if (ret) {
Frank Rowand24789c52017-10-17 16:36:26 -0700389 pr_debug("Failed to apply prop @%pOF/%s, err=%d\n",
390 target_node, prop->name, ret);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200391 return ret;
392 }
393 }
394
Frank Rowand0290c4c2017-10-17 16:36:23 -0700395 for_each_child_of_node(overlay_node, child) {
396 ret = add_changeset_node(ovcs, target_node, child);
Frank Rowandbbed8792017-10-17 16:36:22 -0700397 if (ret) {
Frank Rowand24789c52017-10-17 16:36:26 -0700398 pr_debug("Failed to apply node @%pOF/%s, err=%d\n",
399 target_node, child->name, ret);
Julia Lawall001cf502015-10-22 11:02:48 +0200400 of_node_put(child);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200401 return ret;
402 }
403 }
404
405 return 0;
406}
407
Frank Rowand3912b792017-10-17 16:36:30 -0700408/*
409 * Add the properties from __overlay__ node to the @ovcs->cset changeset.
410 */
411static int build_changeset_symbols_node(struct overlay_changeset *ovcs,
412 struct device_node *target_node,
413 const struct device_node *overlay_symbols_node)
414{
415 struct property *prop;
416 int ret;
417
418 for_each_property_of_node(overlay_symbols_node, prop) {
419 ret = add_changeset_property(ovcs, target_node, prop, 1);
420 if (ret) {
421 pr_debug("Failed to apply prop @%pOF/%s, err=%d\n",
422 target_node, prop->name, ret);
423 return ret;
424 }
425 }
426
427 return 0;
428}
429
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200430/**
Frank Rowand0290c4c2017-10-17 16:36:23 -0700431 * build_changeset() - populate overlay changeset in @ovcs from @ovcs->fragments
432 * @ovcs: Overlay changeset
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200433 *
Frank Rowand0290c4c2017-10-17 16:36:23 -0700434 * Create changeset @ovcs->cset to contain the nodes and properties of the
435 * overlay device tree fragments in @ovcs->fragments[]. If an error occurs,
436 * any portions of the changeset that were successfully created will remain
437 * in @ovcs->cset.
438 *
439 * Returns 0 on success, -ENOMEM if memory allocation failure, or -EINVAL if
440 * invalid overlay in @ovcs->fragments[].
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200441 */
Frank Rowand0290c4c2017-10-17 16:36:23 -0700442static int build_changeset(struct overlay_changeset *ovcs)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200443{
Frank Rowand3912b792017-10-17 16:36:30 -0700444 struct fragment *fragment;
445 int fragments_count, i, ret;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200446
Frank Rowand3912b792017-10-17 16:36:30 -0700447 /*
448 * if there is a symbols fragment in ovcs->fragments[i] it is
449 * the final element in the array
450 */
451 if (ovcs->symbols_fragment)
452 fragments_count = ovcs->count - 1;
453 else
454 fragments_count = ovcs->count;
455
456 for (i = 0; i < fragments_count; i++) {
457 fragment = &ovcs->fragments[i];
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200458
Frank Rowand0290c4c2017-10-17 16:36:23 -0700459 ret = build_changeset_next_level(ovcs, fragment->target,
Frank Rowand3912b792017-10-17 16:36:30 -0700460 fragment->overlay);
461 if (ret) {
462 pr_debug("apply failed '%pOF'\n", fragment->target);
463 return ret;
464 }
465 }
466
467 if (ovcs->symbols_fragment) {
468 fragment = &ovcs->fragments[ovcs->count - 1];
469 ret = build_changeset_symbols_node(ovcs, fragment->target,
470 fragment->overlay);
Frank Rowand0290c4c2017-10-17 16:36:23 -0700471 if (ret) {
Frank Rowand24789c52017-10-17 16:36:26 -0700472 pr_debug("apply failed '%pOF'\n", fragment->target);
Frank Rowand0290c4c2017-10-17 16:36:23 -0700473 return ret;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200474 }
475 }
476
477 return 0;
478}
479
480/*
481 * Find the target node using a number of different strategies
Frank Rowand646afc42017-10-17 16:36:21 -0700482 * in order of preference:
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200483 *
Frank Rowand646afc42017-10-17 16:36:21 -0700484 * 1) "target" property containing the phandle of the target
485 * 2) "target-path" property containing the path of the target
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200486 */
487static struct device_node *find_target_node(struct device_node *info_node)
488{
489 const char *path;
490 u32 val;
491 int ret;
492
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200493 ret = of_property_read_u32(info_node, "target", &val);
Frank Rowandbbed8792017-10-17 16:36:22 -0700494 if (!ret)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200495 return of_find_node_by_phandle(val);
496
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200497 ret = of_property_read_string(info_node, "target-path", &path);
Frank Rowandbbed8792017-10-17 16:36:22 -0700498 if (!ret)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200499 return of_find_node_by_path(path);
500
Rob Herring606ad422016-06-15 08:32:18 -0500501 pr_err("Failed to find target for node %p (%s)\n",
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200502 info_node, info_node->name);
503
504 return NULL;
505}
506
507/**
Frank Rowand0290c4c2017-10-17 16:36:23 -0700508 * init_overlay_changeset() - initialize overlay changeset from overlay tree
509 * @ovcs Overlay changeset to build
510 * @tree: Contains all the overlay fragments and overlay fixup nodes
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200511 *
Frank Rowand0290c4c2017-10-17 16:36:23 -0700512 * Initialize @ovcs. Populate @ovcs->fragments with node information from
513 * the top level of @tree. The relevant top level nodes are the fragment
514 * nodes and the __symbols__ node. Any other top level node will be ignored.
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200515 *
Frank Rowand0290c4c2017-10-17 16:36:23 -0700516 * Returns 0 on success, -ENOMEM if memory allocation failure, -EINVAL if error
Frank Rowand61b4de42017-10-17 16:36:25 -0700517 * detected in @tree, or -ENOSPC if idr_alloc() error.
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200518 */
Frank Rowand0290c4c2017-10-17 16:36:23 -0700519static int init_overlay_changeset(struct overlay_changeset *ovcs,
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200520 struct device_node *tree)
521{
Frank Rowand61b4de42017-10-17 16:36:25 -0700522 struct device_node *node, *overlay_node;
Frank Rowand0290c4c2017-10-17 16:36:23 -0700523 struct fragment *fragment;
524 struct fragment *fragments;
525 int cnt, ret;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200526
Frank Rowand24789c52017-10-17 16:36:26 -0700527 /*
528 * Warn for some issues. Can not return -EINVAL for these until
529 * of_unittest_apply_overlay() is fixed to pass these checks.
530 */
531 if (!of_node_check_flag(tree, OF_DYNAMIC))
532 pr_debug("%s() tree is not dynamic\n", __func__);
533
534 if (!of_node_check_flag(tree, OF_DETACHED))
535 pr_debug("%s() tree is not detached\n", __func__);
536
537 if (!of_node_is_root(tree))
538 pr_debug("%s() tree is not root\n", __func__);
539
Frank Rowande0a58f32017-10-17 16:36:31 -0700540 ovcs->overlay_tree = tree;
541
Frank Rowand61b4de42017-10-17 16:36:25 -0700542 INIT_LIST_HEAD(&ovcs->ovcs_list);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200543
Frank Rowand61b4de42017-10-17 16:36:25 -0700544 of_changeset_init(&ovcs->cset);
545
546 ovcs->id = idr_alloc(&ovcs_idr, ovcs, 1, 0, GFP_KERNEL);
547 if (ovcs->id <= 0)
548 return ovcs->id;
549
550 cnt = 0;
551
552 /* fragment nodes */
553 for_each_child_of_node(tree, node) {
554 overlay_node = of_get_child_by_name(node, "__overlay__");
555 if (overlay_node) {
556 cnt++;
557 of_node_put(overlay_node);
558 }
559 }
560
561 node = of_get_child_by_name(tree, "__symbols__");
562 if (node) {
Frank Rowandd1651b02017-07-19 09:25:22 -0700563 cnt++;
Frank Rowand61b4de42017-10-17 16:36:25 -0700564 of_node_put(node);
565 }
Frank Rowandd1651b02017-07-19 09:25:22 -0700566
Frank Rowand0290c4c2017-10-17 16:36:23 -0700567 fragments = kcalloc(cnt, sizeof(*fragments), GFP_KERNEL);
Frank Rowand61b4de42017-10-17 16:36:25 -0700568 if (!fragments) {
569 ret = -ENOMEM;
570 goto err_free_idr;
571 }
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200572
573 cnt = 0;
574 for_each_child_of_node(tree, node) {
Frank Rowand61b4de42017-10-17 16:36:25 -0700575 fragment = &fragments[cnt];
576 fragment->overlay = of_get_child_by_name(node, "__overlay__");
577 if (fragment->overlay) {
578 fragment->target = find_target_node(node);
579 if (!fragment->target) {
580 of_node_put(fragment->overlay);
581 ret = -EINVAL;
582 goto err_free_fragments;
583 } else {
584 cnt++;
585 }
586 }
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200587 }
588
Frank Rowand3912b792017-10-17 16:36:30 -0700589 /*
590 * if there is a symbols fragment in ovcs->fragments[i] it is
591 * the final element in the array
592 */
Frank Rowandd1651b02017-07-19 09:25:22 -0700593 node = of_get_child_by_name(tree, "__symbols__");
594 if (node) {
Frank Rowand3912b792017-10-17 16:36:30 -0700595 ovcs->symbols_fragment = 1;
Frank Rowand0290c4c2017-10-17 16:36:23 -0700596 fragment = &fragments[cnt];
597 fragment->overlay = node;
598 fragment->target = of_find_node_by_path("/__symbols__");
Frank Rowandd1651b02017-07-19 09:25:22 -0700599
Frank Rowand0290c4c2017-10-17 16:36:23 -0700600 if (!fragment->target) {
Frank Rowand4ee7c0d2017-10-19 14:38:11 -0700601 pr_err("symbols in overlay, but not in live tree\n");
Frank Rowand61b4de42017-10-17 16:36:25 -0700602 ret = -EINVAL;
603 goto err_free_fragments;
Frank Rowandd1651b02017-07-19 09:25:22 -0700604 }
605
606 cnt++;
607 }
608
Frank Rowandbbed8792017-10-17 16:36:22 -0700609 if (!cnt) {
Frank Rowand61b4de42017-10-17 16:36:25 -0700610 ret = -EINVAL;
611 goto err_free_fragments;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200612 }
613
Frank Rowand0290c4c2017-10-17 16:36:23 -0700614 ovcs->count = cnt;
615 ovcs->fragments = fragments;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200616
617 return 0;
Frank Rowand61b4de42017-10-17 16:36:25 -0700618
Frank Rowand61b4de42017-10-17 16:36:25 -0700619err_free_fragments:
620 kfree(fragments);
621err_free_idr:
622 idr_remove(&ovcs_idr, ovcs->id);
623
Frank Rowand24789c52017-10-17 16:36:26 -0700624 pr_err("%s() failed, ret = %d\n", __func__, ret);
625
Frank Rowand61b4de42017-10-17 16:36:25 -0700626 return ret;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200627}
628
Frank Rowand61b4de42017-10-17 16:36:25 -0700629static void free_overlay_changeset(struct overlay_changeset *ovcs)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200630{
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200631 int i;
632
Frank Rowand61b4de42017-10-17 16:36:25 -0700633 if (!ovcs->cset.entries.next)
634 return;
635 of_changeset_destroy(&ovcs->cset);
636
637 if (ovcs->id)
638 idr_remove(&ovcs_idr, ovcs->id);
639
640 for (i = 0; i < ovcs->count; i++) {
Frank Rowand0290c4c2017-10-17 16:36:23 -0700641 of_node_put(ovcs->fragments[i].target);
642 of_node_put(ovcs->fragments[i].overlay);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200643 }
Frank Rowand0290c4c2017-10-17 16:36:23 -0700644 kfree(ovcs->fragments);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200645
Frank Rowand61b4de42017-10-17 16:36:25 -0700646 kfree(ovcs);
647}
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200648
649/**
Frank Rowand0290c4c2017-10-17 16:36:23 -0700650 * of_overlay_apply() - Create and apply an overlay changeset
651 * @tree: Expanded overlay device tree
Frank Rowand24789c52017-10-17 16:36:26 -0700652 * @ovcs_id: Pointer to overlay changeset id
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200653 *
Frank Rowand24789c52017-10-17 16:36:26 -0700654 * Creates and applies an overlay changeset.
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200655 *
Frank Rowand24789c52017-10-17 16:36:26 -0700656 * If an error occurs in a pre-apply notifier, then no changes are made
657 * to the device tree.
658 *
659
660 * A non-zero return value will not have created the changeset if error is from:
661 * - parameter checks
662 * - building the changeset
663 * - overlay changset pre-apply notifier
664 *
665 * If an error is returned by an overlay changeset pre-apply notifier
666 * then no further overlay changeset pre-apply notifier will be called.
667 *
668 * A non-zero return value will have created the changeset if error is from:
669 * - overlay changeset entry notifier
670 * - overlay changset post-apply notifier
671 *
672 * If an error is returned by an overlay changeset post-apply notifier
673 * then no further overlay changeset post-apply notifier will be called.
674 *
675 * If more than one notifier returns an error, then the last notifier
676 * error to occur is returned.
677 *
678 * If an error occurred while applying the overlay changeset, then an
679 * attempt is made to revert any changes that were made to the
680 * device tree. If there were any errors during the revert attempt
681 * then the state of the device tree can not be determined, and any
682 * following attempt to apply or remove an overlay changeset will be
683 * refused.
684 *
685 * Returns 0 on success, or a negative error number. Overlay changeset
686 * id is returned to *ovcs_id.
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200687 */
Frank Rowand24789c52017-10-17 16:36:26 -0700688
689int of_overlay_apply(struct device_node *tree, int *ovcs_id)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200690{
Frank Rowand0290c4c2017-10-17 16:36:23 -0700691 struct overlay_changeset *ovcs;
Frank Rowand24789c52017-10-17 16:36:26 -0700692 int ret = 0, ret_revert, ret_tmp;
693
694 *ovcs_id = 0;
695
696 if (devicetree_corrupt()) {
697 pr_err("devicetree state suspect, refuse to apply overlay\n");
698 ret = -EBUSY;
699 goto out;
700 }
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200701
Frank Rowand0290c4c2017-10-17 16:36:23 -0700702 ovcs = kzalloc(sizeof(*ovcs), GFP_KERNEL);
Frank Rowand24789c52017-10-17 16:36:26 -0700703 if (!ovcs) {
704 ret = -ENOMEM;
705 goto out;
706 }
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200707
Frank Rowandf948d6d2017-10-17 16:36:29 -0700708 of_overlay_mutex_lock();
709
710 ret = of_resolve_phandles(tree);
711 if (ret)
712 goto err_overlay_unlock;
713
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200714 mutex_lock(&of_mutex);
715
Frank Rowand0290c4c2017-10-17 16:36:23 -0700716 ret = init_overlay_changeset(ovcs, tree);
Frank Rowand24789c52017-10-17 16:36:26 -0700717 if (ret)
Frank Rowand61b4de42017-10-17 16:36:25 -0700718 goto err_free_overlay_changeset;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200719
Frank Rowand0290c4c2017-10-17 16:36:23 -0700720 ret = overlay_notify(ovcs, OF_OVERLAY_PRE_APPLY);
Frank Rowand24789c52017-10-17 16:36:26 -0700721 if (ret) {
722 pr_err("overlay changeset pre-apply notify error %d\n", ret);
Frank Rowand61b4de42017-10-17 16:36:25 -0700723 goto err_free_overlay_changeset;
Alan Tull39a842e2016-11-01 14:14:22 -0500724 }
725
Frank Rowand0290c4c2017-10-17 16:36:23 -0700726 ret = build_changeset(ovcs);
727 if (ret)
Frank Rowand61b4de42017-10-17 16:36:25 -0700728 goto err_free_overlay_changeset;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200729
Frank Rowand24789c52017-10-17 16:36:26 -0700730 ret_revert = 0;
731 ret = __of_changeset_apply_entries(&ovcs->cset, &ret_revert);
732 if (ret) {
733 if (ret_revert) {
734 pr_debug("overlay changeset revert error %d\n",
735 ret_revert);
736 devicetree_state_flags |= DTSF_APPLY_FAIL;
737 }
Frank Rowand61b4de42017-10-17 16:36:25 -0700738 goto err_free_overlay_changeset;
Frank Rowand24789c52017-10-17 16:36:26 -0700739 } else {
740 ret = __of_changeset_apply_notify(&ovcs->cset);
741 if (ret)
742 pr_err("overlay changeset entry notify error %d\n",
743 ret);
744 /* fall through */
745 }
Rob Herring606ad422016-06-15 08:32:18 -0500746
Frank Rowand0290c4c2017-10-17 16:36:23 -0700747 list_add_tail(&ovcs->ovcs_list, &ovcs_list);
Frank Rowand24789c52017-10-17 16:36:26 -0700748 *ovcs_id = ovcs->id;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200749
Frank Rowand24789c52017-10-17 16:36:26 -0700750 ret_tmp = overlay_notify(ovcs, OF_OVERLAY_POST_APPLY);
751 if (ret_tmp) {
752 pr_err("overlay changeset post-apply notify error %d\n",
753 ret_tmp);
754 if (!ret)
755 ret = ret_tmp;
756 }
Alan Tull39a842e2016-11-01 14:14:22 -0500757
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200758 mutex_unlock(&of_mutex);
Frank Rowandf948d6d2017-10-17 16:36:29 -0700759 of_overlay_mutex_unlock();
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200760
Frank Rowand24789c52017-10-17 16:36:26 -0700761 goto out;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200762
Frank Rowandf948d6d2017-10-17 16:36:29 -0700763err_overlay_unlock:
764 of_overlay_mutex_unlock();
765
Frank Rowand61b4de42017-10-17 16:36:25 -0700766err_free_overlay_changeset:
767 free_overlay_changeset(ovcs);
768
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200769 mutex_unlock(&of_mutex);
770
Frank Rowand24789c52017-10-17 16:36:26 -0700771out:
772 pr_debug("%s() err=%d\n", __func__, ret);
773
Frank Rowand0290c4c2017-10-17 16:36:23 -0700774 return ret;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200775}
Frank Rowand0290c4c2017-10-17 16:36:23 -0700776EXPORT_SYMBOL_GPL(of_overlay_apply);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200777
Frank Rowand646afc42017-10-17 16:36:21 -0700778/*
Frank Rowand0290c4c2017-10-17 16:36:23 -0700779 * Find @np in @tree.
780 *
781 * Returns 1 if @np is @tree or is contained in @tree, else 0
Frank Rowand646afc42017-10-17 16:36:21 -0700782 */
Frank Rowand0290c4c2017-10-17 16:36:23 -0700783static int find_node(struct device_node *tree, struct device_node *np)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200784{
785 struct device_node *child;
786
Frank Rowand0290c4c2017-10-17 16:36:23 -0700787 if (tree == np)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200788 return 1;
789
790 for_each_child_of_node(tree, child) {
Frank Rowand0290c4c2017-10-17 16:36:23 -0700791 if (find_node(child, np)) {
Julia Lawall001cf502015-10-22 11:02:48 +0200792 of_node_put(child);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200793 return 1;
Julia Lawall001cf502015-10-22 11:02:48 +0200794 }
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200795 }
796
797 return 0;
798}
799
Frank Rowand646afc42017-10-17 16:36:21 -0700800/*
Frank Rowand87f242c2017-10-17 16:36:27 -0700801 * Is @remove_ce_node a child of, a parent of, or the same as any
Frank Rowand0290c4c2017-10-17 16:36:23 -0700802 * node in an overlay changeset more topmost than @remove_ovcs?
803 *
804 * Returns 1 if found, else 0
Frank Rowand646afc42017-10-17 16:36:21 -0700805 */
Frank Rowand87f242c2017-10-17 16:36:27 -0700806static int node_overlaps_later_cs(struct overlay_changeset *remove_ovcs,
807 struct device_node *remove_ce_node)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200808{
Frank Rowand0290c4c2017-10-17 16:36:23 -0700809 struct overlay_changeset *ovcs;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200810 struct of_changeset_entry *ce;
811
Frank Rowand0290c4c2017-10-17 16:36:23 -0700812 list_for_each_entry_reverse(ovcs, &ovcs_list, ovcs_list) {
813 if (ovcs == remove_ovcs)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200814 break;
815
Frank Rowand0290c4c2017-10-17 16:36:23 -0700816 list_for_each_entry(ce, &ovcs->cset.entries, node) {
Frank Rowand87f242c2017-10-17 16:36:27 -0700817 if (find_node(ce->np, remove_ce_node)) {
818 pr_err("%s: #%d overlaps with #%d @%pOF\n",
Frank Rowand0290c4c2017-10-17 16:36:23 -0700819 __func__, remove_ovcs->id, ovcs->id,
Frank Rowand87f242c2017-10-17 16:36:27 -0700820 remove_ce_node);
821 return 1;
822 }
823 if (find_node(remove_ce_node, ce->np)) {
824 pr_err("%s: #%d overlaps with #%d @%pOF\n",
825 __func__, remove_ovcs->id, ovcs->id,
826 remove_ce_node);
Frank Rowand0290c4c2017-10-17 16:36:23 -0700827 return 1;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200828 }
829 }
830 }
831
Frank Rowand0290c4c2017-10-17 16:36:23 -0700832 return 0;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200833}
834
835/*
836 * We can safely remove the overlay only if it's the top-most one.
837 * Newly applied overlays are inserted at the tail of the overlay list,
838 * so a top most overlay is the one that is closest to the tail.
839 *
840 * The topmost check is done by exploiting this property. For each
841 * affected device node in the log list we check if this overlay is
842 * the one closest to the tail. If another overlay has affected this
843 * device node and is closest to the tail, then removal is not permited.
844 */
Frank Rowand0290c4c2017-10-17 16:36:23 -0700845static int overlay_removal_is_ok(struct overlay_changeset *remove_ovcs)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200846{
Frank Rowand0290c4c2017-10-17 16:36:23 -0700847 struct of_changeset_entry *remove_ce;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200848
Frank Rowand0290c4c2017-10-17 16:36:23 -0700849 list_for_each_entry(remove_ce, &remove_ovcs->cset.entries, node) {
Frank Rowand87f242c2017-10-17 16:36:27 -0700850 if (node_overlaps_later_cs(remove_ovcs, remove_ce->np)) {
Frank Rowand0290c4c2017-10-17 16:36:23 -0700851 pr_err("overlay #%d is not topmost\n", remove_ovcs->id);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200852 return 0;
853 }
854 }
855
856 return 1;
857}
858
859/**
Frank Rowand0290c4c2017-10-17 16:36:23 -0700860 * of_overlay_remove() - Revert and free an overlay changeset
Frank Rowand24789c52017-10-17 16:36:26 -0700861 * @ovcs_id: Pointer to overlay changeset id
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200862 *
Frank Rowand24789c52017-10-17 16:36:26 -0700863 * Removes an overlay if it is permissible. @ovcs_id was previously returned
Frank Rowand0290c4c2017-10-17 16:36:23 -0700864 * by of_overlay_apply().
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200865 *
Frank Rowand24789c52017-10-17 16:36:26 -0700866 * If an error occurred while attempting to revert the overlay changeset,
867 * then an attempt is made to re-apply any changeset entry that was
868 * reverted. If an error occurs on re-apply then the state of the device
869 * tree can not be determined, and any following attempt to apply or remove
870 * an overlay changeset will be refused.
871 *
872 * A non-zero return value will not revert the changeset if error is from:
873 * - parameter checks
874 * - overlay changset pre-remove notifier
875 * - overlay changeset entry revert
876 *
877 * If an error is returned by an overlay changeset pre-remove notifier
878 * then no further overlay changeset pre-remove notifier will be called.
879 *
880 * If more than one notifier returns an error, then the last notifier
881 * error to occur is returned.
882 *
883 * A non-zero return value will revert the changeset if error is from:
884 * - overlay changeset entry notifier
885 * - overlay changset post-remove notifier
886 *
887 * If an error is returned by an overlay changeset post-remove notifier
888 * then no further overlay changeset post-remove notifier will be called.
889 *
890 * Returns 0 on success, or a negative error number. *ovcs_id is set to
891 * zero after reverting the changeset, even if a subsequent error occurs.
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200892 */
Frank Rowand24789c52017-10-17 16:36:26 -0700893int of_overlay_remove(int *ovcs_id)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200894{
Frank Rowand0290c4c2017-10-17 16:36:23 -0700895 struct overlay_changeset *ovcs;
Frank Rowand24789c52017-10-17 16:36:26 -0700896 int ret, ret_apply, ret_tmp;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200897
Frank Rowand24789c52017-10-17 16:36:26 -0700898 ret = 0;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200899
Frank Rowand24789c52017-10-17 16:36:26 -0700900 if (devicetree_corrupt()) {
901 pr_err("suspect devicetree state, refuse to remove overlay\n");
Frank Rowand0290c4c2017-10-17 16:36:23 -0700902 ret = -EBUSY;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200903 goto out;
904 }
905
Frank Rowand24789c52017-10-17 16:36:26 -0700906 mutex_lock(&of_mutex);
907
908 ovcs = idr_find(&ovcs_idr, *ovcs_id);
909 if (!ovcs) {
910 ret = -ENODEV;
911 pr_err("remove: Could not find overlay #%d\n", *ovcs_id);
912 goto out_unlock;
913 }
914
915 if (!overlay_removal_is_ok(ovcs)) {
916 ret = -EBUSY;
917 goto out_unlock;
918 }
919
920 ret = overlay_notify(ovcs, OF_OVERLAY_PRE_REMOVE);
921 if (ret) {
922 pr_err("overlay changeset pre-remove notify error %d\n", ret);
923 goto out_unlock;
924 }
Frank Rowand61b4de42017-10-17 16:36:25 -0700925
Frank Rowand0290c4c2017-10-17 16:36:23 -0700926 list_del(&ovcs->ovcs_list);
Frank Rowand61b4de42017-10-17 16:36:25 -0700927
Frank Rowand24789c52017-10-17 16:36:26 -0700928 ret_apply = 0;
929 ret = __of_changeset_revert_entries(&ovcs->cset, &ret_apply);
930 if (ret) {
931 if (ret_apply)
932 devicetree_state_flags |= DTSF_REVERT_FAIL;
933 goto out_unlock;
934 } else {
935 ret = __of_changeset_revert_notify(&ovcs->cset);
936 if (ret) {
937 pr_err("overlay changeset entry notify error %d\n",
938 ret);
939 /* fall through - changeset was reverted */
940 }
941 }
Frank Rowand61b4de42017-10-17 16:36:25 -0700942
Frank Rowand24789c52017-10-17 16:36:26 -0700943 *ovcs_id = 0;
944
945 ret_tmp = overlay_notify(ovcs, OF_OVERLAY_POST_REMOVE);
946 if (ret_tmp) {
947 pr_err("overlay changeset post-remove notify error %d\n",
948 ret_tmp);
949 if (!ret)
950 ret = ret_tmp;
951 }
Frank Rowand61b4de42017-10-17 16:36:25 -0700952
953 free_overlay_changeset(ovcs);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200954
Frank Rowand24789c52017-10-17 16:36:26 -0700955out_unlock:
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200956 mutex_unlock(&of_mutex);
957
Frank Rowand24789c52017-10-17 16:36:26 -0700958out:
959 pr_debug("%s() err=%d\n", __func__, ret);
960
Frank Rowand0290c4c2017-10-17 16:36:23 -0700961 return ret;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200962}
Frank Rowand0290c4c2017-10-17 16:36:23 -0700963EXPORT_SYMBOL_GPL(of_overlay_remove);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200964
965/**
Frank Rowand0290c4c2017-10-17 16:36:23 -0700966 * of_overlay_remove_all() - Reverts and frees all overlay changesets
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200967 *
968 * Removes all overlays from the system in the correct order.
969 *
Geert Uytterhoeven94a8bf92015-05-21 14:10:26 +0200970 * Returns 0 on success, or a negative error number
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200971 */
Frank Rowand0290c4c2017-10-17 16:36:23 -0700972int of_overlay_remove_all(void)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200973{
Frank Rowand0290c4c2017-10-17 16:36:23 -0700974 struct overlay_changeset *ovcs, *ovcs_n;
Frank Rowand61b4de42017-10-17 16:36:25 -0700975 int ret;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200976
977 /* the tail of list is guaranteed to be safe to remove */
Frank Rowand0290c4c2017-10-17 16:36:23 -0700978 list_for_each_entry_safe_reverse(ovcs, ovcs_n, &ovcs_list, ovcs_list) {
Frank Rowand24789c52017-10-17 16:36:26 -0700979 ret = of_overlay_remove(&ovcs->id);
Frank Rowand61b4de42017-10-17 16:36:25 -0700980 if (ret)
981 return ret;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200982 }
983
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200984 return 0;
985}
Frank Rowand0290c4c2017-10-17 16:36:23 -0700986EXPORT_SYMBOL_GPL(of_overlay_remove_all);