blob: 184cc2c4a9317415435c5dda0574d15f0b9caf0c [file] [log] [blame]
Rob Herringaf6074f2017-12-27 12:55:14 -06001// SPDX-License-Identifier: GPL-2.0
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02002/*
3 * Functions for working with device tree overlays
4 *
5 * Copyright (C) 2012 Pantelis Antoniou <panto@antoniou-consulting.com>
6 * Copyright (C) 2012 Texas Instruments Inc.
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02007 */
Rob Herring606ad422016-06-15 08:32:18 -05008
9#define pr_fmt(fmt) "OF: overlay: " fmt
10
Pantelis Antoniou7518b5892014-10-28 22:35:58 +020011#include <linux/kernel.h>
12#include <linux/module.h>
13#include <linux/of.h>
14#include <linux/of_device.h>
Frank Rowand39a751a2018-02-12 00:19:42 -080015#include <linux/of_fdt.h>
Pantelis Antoniou7518b5892014-10-28 22:35:58 +020016#include <linux/string.h>
17#include <linux/ctype.h>
18#include <linux/errno.h>
Pantelis Antoniou7518b5892014-10-28 22:35:58 +020019#include <linux/slab.h>
Frank Rowand39a751a2018-02-12 00:19:42 -080020#include <linux/libfdt.h>
Pantelis Antoniou7518b5892014-10-28 22:35:58 +020021#include <linux/err.h>
Mark Brown0d1886d2015-02-17 11:36:58 +090022#include <linux/idr.h>
Pantelis Antoniou7518b5892014-10-28 22:35:58 +020023
24#include "of_private.h"
25
26/**
Frank Rowand6b4955b2018-10-04 20:28:08 -070027 * struct target - info about current target node as recursing through overlay
28 * @np: node where current level of overlay will be applied
29 * @in_livetree: @np is a node in the live devicetree
30 *
31 * Used in the algorithm to create the portion of a changeset that describes
32 * an overlay fragment, which is a devicetree subtree. Initially @np is a node
33 * in the live devicetree where the overlay subtree is targeted to be grafted
34 * into. When recursing to the next level of the overlay subtree, the target
35 * also recurses to the next level of the live devicetree, as long as overlay
36 * subtree node also exists in the live devicetree. When a node in the overlay
37 * subtree does not exist at the same level in the live devicetree, target->np
38 * points to a newly allocated node, and all subsequent targets in the subtree
39 * will be newly allocated nodes.
40 */
41struct target {
42 struct device_node *np;
43 bool in_livetree;
44};
45
46/**
Frank Rowand0290c4c2017-10-17 16:36:23 -070047 * struct fragment - info about fragment nodes in overlay expanded device tree
Pantelis Antoniou7518b5892014-10-28 22:35:58 +020048 * @target: target of the overlay operation
Frank Rowand0290c4c2017-10-17 16:36:23 -070049 * @overlay: pointer to the __overlay__ node
Pantelis Antoniou7518b5892014-10-28 22:35:58 +020050 */
Frank Rowand0290c4c2017-10-17 16:36:23 -070051struct fragment {
Pantelis Antoniou7518b5892014-10-28 22:35:58 +020052 struct device_node *overlay;
Frank Rowand81225ea2018-10-04 20:30:40 -070053 struct device_node *target;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +020054};
55
56/**
Frank Rowand0290c4c2017-10-17 16:36:23 -070057 * struct overlay_changeset
Frank Rowand39a751a2018-02-12 00:19:42 -080058 * @id: changeset identifier
Frank Rowand3912b792017-10-17 16:36:30 -070059 * @ovcs_list: list on which we are located
Frank Rowand39a751a2018-02-12 00:19:42 -080060 * @fdt: FDT that was unflattened to create @overlay_tree
Frank Rowande0a58f32017-10-17 16:36:31 -070061 * @overlay_tree: expanded device tree that contains the fragment nodes
Frank Rowand3912b792017-10-17 16:36:30 -070062 * @count: count of fragment structures
63 * @fragments: fragment nodes in the overlay expanded device tree
64 * @symbols_fragment: last element of @fragments[] is the __symbols__ node
65 * @cset: changeset to apply fragments to live device tree
Pantelis Antoniou7518b5892014-10-28 22:35:58 +020066 */
Frank Rowand0290c4c2017-10-17 16:36:23 -070067struct overlay_changeset {
Pantelis Antoniou7518b5892014-10-28 22:35:58 +020068 int id;
Frank Rowand0290c4c2017-10-17 16:36:23 -070069 struct list_head ovcs_list;
Frank Rowand39a751a2018-02-12 00:19:42 -080070 const void *fdt;
Frank Rowande0a58f32017-10-17 16:36:31 -070071 struct device_node *overlay_tree;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +020072 int count;
Frank Rowand0290c4c2017-10-17 16:36:23 -070073 struct fragment *fragments;
Frank Rowand3912b792017-10-17 16:36:30 -070074 bool symbols_fragment;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +020075 struct of_changeset cset;
76};
77
Frank Rowand24789c52017-10-17 16:36:26 -070078/* flags are sticky - once set, do not reset */
79static int devicetree_state_flags;
80#define DTSF_APPLY_FAIL 0x01
81#define DTSF_REVERT_FAIL 0x02
82
83/*
84 * If a changeset apply or revert encounters an error, an attempt will
85 * be made to undo partial changes, but may fail. If the undo fails
86 * we do not know the state of the devicetree.
87 */
88static int devicetree_corrupt(void)
89{
90 return devicetree_state_flags &
91 (DTSF_APPLY_FAIL | DTSF_REVERT_FAIL);
92}
93
Frank Rowand0290c4c2017-10-17 16:36:23 -070094static int build_changeset_next_level(struct overlay_changeset *ovcs,
Frank Rowand6b4955b2018-10-04 20:28:08 -070095 struct target *target, const struct device_node *overlay_node);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +020096
Frank Rowandf948d6d2017-10-17 16:36:29 -070097/*
98 * of_resolve_phandles() finds the largest phandle in the live tree.
99 * of_overlay_apply() may add a larger phandle to the live tree.
100 * Do not allow race between two overlays being applied simultaneously:
101 * mutex_lock(&of_overlay_phandle_mutex)
102 * of_resolve_phandles()
103 * of_overlay_apply()
104 * mutex_unlock(&of_overlay_phandle_mutex)
105 */
106static DEFINE_MUTEX(of_overlay_phandle_mutex);
107
108void of_overlay_mutex_lock(void)
109{
110 mutex_lock(&of_overlay_phandle_mutex);
111}
112
113void of_overlay_mutex_unlock(void)
114{
115 mutex_unlock(&of_overlay_phandle_mutex);
116}
117
118
Frank Rowand61b4de42017-10-17 16:36:25 -0700119static LIST_HEAD(ovcs_list);
120static DEFINE_IDR(ovcs_idr);
121
Frank Rowand0290c4c2017-10-17 16:36:23 -0700122static BLOCKING_NOTIFIER_HEAD(overlay_notify_chain);
Alan Tull39a842e2016-11-01 14:14:22 -0500123
Jan Kiszka83ef4772018-04-26 13:00:30 +0200124/**
125 * of_overlay_notifier_register() - Register notifier for overlay operations
126 * @nb: Notifier block to register
127 *
128 * Register for notification on overlay operations on device tree nodes. The
129 * reported actions definied by @of_reconfig_change. The notifier callback
130 * furthermore receives a pointer to the affected device tree node.
131 *
132 * Note that a notifier callback is not supposed to store pointers to a device
133 * tree node or its content beyond @OF_OVERLAY_POST_REMOVE corresponding to the
134 * respective node it received.
135 */
Alan Tull39a842e2016-11-01 14:14:22 -0500136int of_overlay_notifier_register(struct notifier_block *nb)
137{
Frank Rowand0290c4c2017-10-17 16:36:23 -0700138 return blocking_notifier_chain_register(&overlay_notify_chain, nb);
Alan Tull39a842e2016-11-01 14:14:22 -0500139}
140EXPORT_SYMBOL_GPL(of_overlay_notifier_register);
141
Jan Kiszka83ef4772018-04-26 13:00:30 +0200142/**
143 * of_overlay_notifier_register() - Unregister notifier for overlay operations
144 * @nb: Notifier block to unregister
145 */
Alan Tull39a842e2016-11-01 14:14:22 -0500146int of_overlay_notifier_unregister(struct notifier_block *nb)
147{
Frank Rowand0290c4c2017-10-17 16:36:23 -0700148 return blocking_notifier_chain_unregister(&overlay_notify_chain, nb);
Alan Tull39a842e2016-11-01 14:14:22 -0500149}
150EXPORT_SYMBOL_GPL(of_overlay_notifier_unregister);
151
Frank Rowand24789c52017-10-17 16:36:26 -0700152static char *of_overlay_action_name[] = {
153 "pre-apply",
154 "post-apply",
155 "pre-remove",
156 "post-remove",
157};
158
Frank Rowand0290c4c2017-10-17 16:36:23 -0700159static int overlay_notify(struct overlay_changeset *ovcs,
160 enum of_overlay_notify_action action)
Alan Tull39a842e2016-11-01 14:14:22 -0500161{
162 struct of_overlay_notify_data nd;
163 int i, ret;
164
Frank Rowand0290c4c2017-10-17 16:36:23 -0700165 for (i = 0; i < ovcs->count; i++) {
166 struct fragment *fragment = &ovcs->fragments[i];
Alan Tull39a842e2016-11-01 14:14:22 -0500167
Frank Rowand0290c4c2017-10-17 16:36:23 -0700168 nd.target = fragment->target;
169 nd.overlay = fragment->overlay;
Alan Tull39a842e2016-11-01 14:14:22 -0500170
Frank Rowand0290c4c2017-10-17 16:36:23 -0700171 ret = blocking_notifier_call_chain(&overlay_notify_chain,
Alan Tull39a842e2016-11-01 14:14:22 -0500172 action, &nd);
Frank Rowanda1d19bd2017-10-19 14:18:27 -0700173 if (ret == NOTIFY_OK || ret == NOTIFY_STOP)
Frank Rowand24789c52017-10-17 16:36:26 -0700174 return 0;
175 if (ret) {
176 ret = notifier_to_errno(ret);
177 pr_err("overlay changeset %s notifier error %d, target: %pOF\n",
178 of_overlay_action_name[action], ret, nd.target);
179 return ret;
180 }
Alan Tull39a842e2016-11-01 14:14:22 -0500181 }
182
183 return 0;
184}
185
Frank Rowand42b2e942017-10-17 16:36:24 -0700186/*
Frank Rowande0a58f32017-10-17 16:36:31 -0700187 * The values of properties in the "/__symbols__" node are paths in
188 * the ovcs->overlay_tree. When duplicating the properties, the paths
189 * need to be adjusted to be the correct path for the live device tree.
Frank Rowand42b2e942017-10-17 16:36:24 -0700190 *
Frank Rowande0a58f32017-10-17 16:36:31 -0700191 * The paths refer to a node in the subtree of a fragment node's "__overlay__"
192 * node, for example "/fragment@0/__overlay__/symbol_path_tail",
193 * where symbol_path_tail can be a single node or it may be a multi-node path.
Frank Rowand42b2e942017-10-17 16:36:24 -0700194 *
195 * The duplicated property value will be modified by replacing the
196 * "/fragment_name/__overlay/" portion of the value with the target
197 * path from the fragment node.
198 */
Frank Rowand0290c4c2017-10-17 16:36:23 -0700199static struct property *dup_and_fixup_symbol_prop(
200 struct overlay_changeset *ovcs, const struct property *prop)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200201{
Frank Rowand0290c4c2017-10-17 16:36:23 -0700202 struct fragment *fragment;
Frank Rowande0a58f32017-10-17 16:36:31 -0700203 struct property *new_prop;
204 struct device_node *fragment_node;
205 struct device_node *overlay_node;
206 const char *path;
207 const char *path_tail;
Frank Rowandd1651b02017-07-19 09:25:22 -0700208 const char *target_path;
209 int k;
Frank Rowandd1651b02017-07-19 09:25:22 -0700210 int overlay_name_len;
Frank Rowande0a58f32017-10-17 16:36:31 -0700211 int path_len;
212 int path_tail_len;
Frank Rowandd1651b02017-07-19 09:25:22 -0700213 int target_path_len;
214
215 if (!prop->value)
216 return NULL;
Frank Rowande0a58f32017-10-17 16:36:31 -0700217 if (strnlen(prop->value, prop->length) >= prop->length)
Frank Rowandd1651b02017-07-19 09:25:22 -0700218 return NULL;
Frank Rowande0a58f32017-10-17 16:36:31 -0700219 path = prop->value;
220 path_len = strlen(path);
221
222 if (path_len < 1)
223 return NULL;
224 fragment_node = __of_find_node_by_path(ovcs->overlay_tree, path + 1);
225 overlay_node = __of_find_node_by_path(fragment_node, "__overlay__/");
226 of_node_put(fragment_node);
227 of_node_put(overlay_node);
Frank Rowandd1651b02017-07-19 09:25:22 -0700228
Frank Rowand0290c4c2017-10-17 16:36:23 -0700229 for (k = 0; k < ovcs->count; k++) {
230 fragment = &ovcs->fragments[k];
Frank Rowande0a58f32017-10-17 16:36:31 -0700231 if (fragment->overlay == overlay_node)
Frank Rowandd1651b02017-07-19 09:25:22 -0700232 break;
233 }
Frank Rowand0290c4c2017-10-17 16:36:23 -0700234 if (k >= ovcs->count)
Frank Rowande0a58f32017-10-17 16:36:31 -0700235 return NULL;
Frank Rowandd1651b02017-07-19 09:25:22 -0700236
Frank Rowande0a58f32017-10-17 16:36:31 -0700237 overlay_name_len = snprintf(NULL, 0, "%pOF", fragment->overlay);
238
239 if (overlay_name_len > path_len)
240 return NULL;
241 path_tail = path + overlay_name_len;
242 path_tail_len = strlen(path_tail);
243
244 target_path = kasprintf(GFP_KERNEL, "%pOF", fragment->target);
245 if (!target_path)
246 return NULL;
Frank Rowandd1651b02017-07-19 09:25:22 -0700247 target_path_len = strlen(target_path);
248
Frank Rowande0a58f32017-10-17 16:36:31 -0700249 new_prop = kzalloc(sizeof(*new_prop), GFP_KERNEL);
250 if (!new_prop)
251 goto err_free_target_path;
Frank Rowandd1651b02017-07-19 09:25:22 -0700252
Frank Rowande0a58f32017-10-17 16:36:31 -0700253 new_prop->name = kstrdup(prop->name, GFP_KERNEL);
254 new_prop->length = target_path_len + path_tail_len + 1;
255 new_prop->value = kzalloc(new_prop->length, GFP_KERNEL);
256 if (!new_prop->name || !new_prop->value)
257 goto err_free_new_prop;
Frank Rowandd1651b02017-07-19 09:25:22 -0700258
Frank Rowande0a58f32017-10-17 16:36:31 -0700259 strcpy(new_prop->value, target_path);
260 strcpy(new_prop->value + target_path_len, path_tail);
Frank Rowandd1651b02017-07-19 09:25:22 -0700261
Frank Rowande0a58f32017-10-17 16:36:31 -0700262 of_property_set_flag(new_prop, OF_DYNAMIC);
Frank Rowandd1651b02017-07-19 09:25:22 -0700263
Frank Rowande0a58f32017-10-17 16:36:31 -0700264 return new_prop;
Frank Rowandd1651b02017-07-19 09:25:22 -0700265
Frank Rowande0a58f32017-10-17 16:36:31 -0700266err_free_new_prop:
267 kfree(new_prop->name);
268 kfree(new_prop->value);
269 kfree(new_prop);
270err_free_target_path:
271 kfree(target_path);
Frank Rowandd1651b02017-07-19 09:25:22 -0700272
Frank Rowandd1651b02017-07-19 09:25:22 -0700273 return NULL;
Frank Rowandd1651b02017-07-19 09:25:22 -0700274}
275
Frank Rowand0290c4c2017-10-17 16:36:23 -0700276/**
277 * add_changeset_property() - add @overlay_prop to overlay changeset
278 * @ovcs: overlay changeset
Frank Rowand6b4955b2018-10-04 20:28:08 -0700279 * @target: where @overlay_prop will be placed
Frank Rowand0290c4c2017-10-17 16:36:23 -0700280 * @overlay_prop: property to add or update, from overlay tree
Frank Rowand3912b792017-10-17 16:36:30 -0700281 * @is_symbols_prop: 1 if @overlay_prop is from node "/__symbols__"
Frank Rowand0290c4c2017-10-17 16:36:23 -0700282 *
Frank Rowand6b4955b2018-10-04 20:28:08 -0700283 * If @overlay_prop does not already exist in live devicetree, add changeset
284 * entry to add @overlay_prop in @target, else add changeset entry to update
Frank Rowand0290c4c2017-10-17 16:36:23 -0700285 * value of @overlay_prop.
286 *
Frank Rowand6b4955b2018-10-04 20:28:08 -0700287 * @target may be either in the live devicetree or in a new subtree that
288 * is contained in the changeset.
289 *
Frank Rowand6f751182018-10-04 20:32:04 -0700290 * Some special properties are not added or updated (no error returned):
291 * "name", "phandle", "linux,phandle".
292 *
293 * Properties "#address-cells" and "#size-cells" are not updated if they
294 * are already in the live tree, but if present in the live tree, the values
295 * in the overlay must match the values in the live tree.
Frank Rowand0290c4c2017-10-17 16:36:23 -0700296 *
Frank Rowand646afc42017-10-17 16:36:21 -0700297 * Update of property in symbols node is not allowed.
Frank Rowand0290c4c2017-10-17 16:36:23 -0700298 *
299 * Returns 0 on success, -ENOMEM if memory allocation failure, or -EINVAL if
300 * invalid @overlay.
Frank Rowand646afc42017-10-17 16:36:21 -0700301 */
Frank Rowand0290c4c2017-10-17 16:36:23 -0700302static int add_changeset_property(struct overlay_changeset *ovcs,
Frank Rowand6b4955b2018-10-04 20:28:08 -0700303 struct target *target, struct property *overlay_prop,
Frank Rowand3912b792017-10-17 16:36:30 -0700304 bool is_symbols_prop)
Frank Rowandd1651b02017-07-19 09:25:22 -0700305{
Frank Rowand0290c4c2017-10-17 16:36:23 -0700306 struct property *new_prop = NULL, *prop;
Lixin Wangac0f3e32017-10-16 17:54:32 +0800307 int ret = 0;
Frank Rowand6f751182018-10-04 20:32:04 -0700308 bool check_for_non_overlay_node = false;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200309
Frank Rowand0290c4c2017-10-17 16:36:23 -0700310 if (!of_prop_cmp(overlay_prop->name, "name") ||
311 !of_prop_cmp(overlay_prop->name, "phandle") ||
312 !of_prop_cmp(overlay_prop->name, "linux,phandle"))
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200313 return 0;
314
Frank Rowand6b4955b2018-10-04 20:28:08 -0700315 if (target->in_livetree)
316 prop = of_find_property(target->np, overlay_prop->name, NULL);
317 else
318 prop = NULL;
319
Frank Rowand3912b792017-10-17 16:36:30 -0700320 if (is_symbols_prop) {
Frank Rowand0290c4c2017-10-17 16:36:23 -0700321 if (prop)
Frank Rowandd1651b02017-07-19 09:25:22 -0700322 return -EINVAL;
Frank Rowand0290c4c2017-10-17 16:36:23 -0700323 new_prop = dup_and_fixup_symbol_prop(ovcs, overlay_prop);
Frank Rowandd1651b02017-07-19 09:25:22 -0700324 } else {
Frank Rowand0290c4c2017-10-17 16:36:23 -0700325 new_prop = __of_prop_dup(overlay_prop, GFP_KERNEL);
Frank Rowandd1651b02017-07-19 09:25:22 -0700326 }
327
Frank Rowand0290c4c2017-10-17 16:36:23 -0700328 if (!new_prop)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200329 return -ENOMEM;
330
Frank Rowand6f751182018-10-04 20:32:04 -0700331 if (!prop) {
332 check_for_non_overlay_node = true;
Frank Rowand6b4955b2018-10-04 20:28:08 -0700333 ret = of_changeset_add_property(&ovcs->cset, target->np,
Frank Rowand0290c4c2017-10-17 16:36:23 -0700334 new_prop);
Frank Rowand6f751182018-10-04 20:32:04 -0700335 } else if (!of_prop_cmp(prop->name, "#address-cells")) {
336 if (!of_prop_val_eq(prop, new_prop)) {
337 pr_err("ERROR: changing value of #address-cells is not allowed in %pOF\n",
338 target->np);
339 ret = -EINVAL;
340 }
341 } else if (!of_prop_cmp(prop->name, "#size-cells")) {
342 if (!of_prop_val_eq(prop, new_prop)) {
343 pr_err("ERROR: changing value of #size-cells is not allowed in %pOF\n",
344 target->np);
345 ret = -EINVAL;
346 }
347 } else {
348 check_for_non_overlay_node = true;
Frank Rowand6b4955b2018-10-04 20:28:08 -0700349 ret = of_changeset_update_property(&ovcs->cset, target->np,
Frank Rowand0290c4c2017-10-17 16:36:23 -0700350 new_prop);
Frank Rowand6f751182018-10-04 20:32:04 -0700351 }
352
353 if (check_for_non_overlay_node &&
354 !of_node_check_flag(target->np, OF_OVERLAY))
355 pr_err("WARNING: memory leak will occur if overlay removed, property: %pOF/%s\n",
356 target->np, new_prop->name);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200357
Lixin Wangac0f3e32017-10-16 17:54:32 +0800358 if (ret) {
Frank Rowand0290c4c2017-10-17 16:36:23 -0700359 kfree(new_prop->name);
360 kfree(new_prop->value);
361 kfree(new_prop);
Lixin Wangac0f3e32017-10-16 17:54:32 +0800362 }
363 return ret;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200364}
365
Frank Rowand0290c4c2017-10-17 16:36:23 -0700366/**
367 * add_changeset_node() - add @node (and children) to overlay changeset
Frank Rowand6b4955b2018-10-04 20:28:08 -0700368 * @ovcs: overlay changeset
369 * @target: where @node will be placed in live tree or changeset
370 * @node: node from within overlay device tree fragment
Frank Rowand0290c4c2017-10-17 16:36:23 -0700371 *
Frank Rowand6b4955b2018-10-04 20:28:08 -0700372 * If @node does not already exist in @target, add changeset entry
373 * to add @node in @target.
Frank Rowand0290c4c2017-10-17 16:36:23 -0700374 *
Frank Rowand6b4955b2018-10-04 20:28:08 -0700375 * If @node already exists in @target, and the existing node has
Frank Rowand0290c4c2017-10-17 16:36:23 -0700376 * a phandle, the overlay node is not allowed to have a phandle.
377 *
378 * If @node has child nodes, add the children recursively via
379 * build_changeset_next_level().
380 *
Frank Rowandb89dae12018-02-26 14:01:23 -0800381 * NOTE_1: A live devicetree created from a flattened device tree (FDT) will
382 * not contain the full path in node->full_name. Thus an overlay
383 * created from an FDT also will not contain the full path in
384 * node->full_name. However, a live devicetree created from Open
385 * Firmware may have the full path in node->full_name.
386 *
387 * add_changeset_node() follows the FDT convention and does not include
388 * the full path in node->full_name. Even though it expects the overlay
389 * to not contain the full path, it uses kbasename() to remove the
390 * full path should it exist. It also uses kbasename() in comparisons
391 * to nodes in the live devicetree so that it can apply an overlay to
392 * a live devicetree created from Open Firmware.
393 *
394 * NOTE_2: Multiple mods of created nodes not supported.
Frank Rowand0290c4c2017-10-17 16:36:23 -0700395 *
396 * Returns 0 on success, -ENOMEM if memory allocation failure, or -EINVAL if
397 * invalid @overlay.
398 */
399static int add_changeset_node(struct overlay_changeset *ovcs,
Frank Rowand6b4955b2018-10-04 20:28:08 -0700400 struct target *target, struct device_node *node)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200401{
Frank Rowand0290c4c2017-10-17 16:36:23 -0700402 const char *node_kbasename;
Fabio Estevamd3a89162015-03-03 10:04:45 -0300403 struct device_node *tchild;
Frank Rowand6b4955b2018-10-04 20:28:08 -0700404 struct target target_child;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200405 int ret = 0;
406
Frank Rowand0290c4c2017-10-17 16:36:23 -0700407 node_kbasename = kbasename(node->full_name);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200408
Frank Rowand6b4955b2018-10-04 20:28:08 -0700409 for_each_child_of_node(target->np, tchild)
Frank Rowand0290c4c2017-10-17 16:36:23 -0700410 if (!of_node_cmp(node_kbasename, kbasename(tchild->full_name)))
Frank Rowandc1cd1e02017-07-19 09:25:21 -0700411 break;
412
Frank Rowand61b4de42017-10-17 16:36:25 -0700413 if (!tchild) {
Frank Rowand8814dc42018-10-04 20:29:01 -0700414 tchild = __of_node_dup(NULL, node_kbasename);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200415 if (!tchild)
416 return -ENOMEM;
417
Frank Rowand6b4955b2018-10-04 20:28:08 -0700418 tchild->parent = target->np;
Frank Rowand144552c72018-10-04 20:24:17 -0700419 of_node_set_flag(tchild, OF_OVERLAY);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200420
Frank Rowand0290c4c2017-10-17 16:36:23 -0700421 ret = of_changeset_attach_node(&ovcs->cset, tchild);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200422 if (ret)
423 return ret;
424
Frank Rowand6b4955b2018-10-04 20:28:08 -0700425 target_child.np = tchild;
426 target_child.in_livetree = false;
427
428 ret = build_changeset_next_level(ovcs, &target_child, node);
Frank Rowand7c528e42018-10-04 20:25:13 -0700429 of_node_put(tchild);
430 return ret;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200431 }
432
Frank Rowand6b4955b2018-10-04 20:28:08 -0700433 if (node->phandle && tchild->phandle) {
Frank Rowand6d0f5472017-10-17 16:36:28 -0700434 ret = -EINVAL;
Frank Rowand6b4955b2018-10-04 20:28:08 -0700435 } else {
436 target_child.np = tchild;
437 target_child.in_livetree = target->in_livetree;
438 ret = build_changeset_next_level(ovcs, &target_child, node);
439 }
Frank Rowand61b4de42017-10-17 16:36:25 -0700440 of_node_put(tchild);
441
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200442 return ret;
443}
444
Frank Rowand0290c4c2017-10-17 16:36:23 -0700445/**
446 * build_changeset_next_level() - add level of overlay changeset
447 * @ovcs: overlay changeset
Frank Rowand6b4955b2018-10-04 20:28:08 -0700448 * @target: where to place @overlay_node in live tree
Frank Rowand0290c4c2017-10-17 16:36:23 -0700449 * @overlay_node: node from within an overlay device tree fragment
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200450 *
Frank Rowand0290c4c2017-10-17 16:36:23 -0700451 * Add the properties (if any) and nodes (if any) from @overlay_node to the
452 * @ovcs->cset changeset. If an added node has child nodes, they will
453 * be added recursively.
Frank Rowand646afc42017-10-17 16:36:21 -0700454 *
455 * Do not allow symbols node to have any children.
Frank Rowand0290c4c2017-10-17 16:36:23 -0700456 *
457 * Returns 0 on success, -ENOMEM if memory allocation failure, or -EINVAL if
458 * invalid @overlay_node.
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200459 */
Frank Rowand0290c4c2017-10-17 16:36:23 -0700460static int build_changeset_next_level(struct overlay_changeset *ovcs,
Frank Rowand6b4955b2018-10-04 20:28:08 -0700461 struct target *target, const struct device_node *overlay_node)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200462{
463 struct device_node *child;
464 struct property *prop;
465 int ret;
466
Frank Rowand0290c4c2017-10-17 16:36:23 -0700467 for_each_property_of_node(overlay_node, prop) {
Frank Rowand6b4955b2018-10-04 20:28:08 -0700468 ret = add_changeset_property(ovcs, target, prop, 0);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200469 if (ret) {
Frank Rowand24789c52017-10-17 16:36:26 -0700470 pr_debug("Failed to apply prop @%pOF/%s, err=%d\n",
Frank Rowand6b4955b2018-10-04 20:28:08 -0700471 target->np, prop->name, ret);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200472 return ret;
473 }
474 }
475
Frank Rowand0290c4c2017-10-17 16:36:23 -0700476 for_each_child_of_node(overlay_node, child) {
Frank Rowand6b4955b2018-10-04 20:28:08 -0700477 ret = add_changeset_node(ovcs, target, child);
Frank Rowandbbed8792017-10-17 16:36:22 -0700478 if (ret) {
Rob Herringa613b262018-08-27 20:00:19 -0500479 pr_debug("Failed to apply node @%pOF/%pOFn, err=%d\n",
Frank Rowand6b4955b2018-10-04 20:28:08 -0700480 target->np, child, ret);
Julia Lawall001cf502015-10-22 11:02:48 +0200481 of_node_put(child);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200482 return ret;
483 }
484 }
485
486 return 0;
487}
488
Frank Rowand3912b792017-10-17 16:36:30 -0700489/*
490 * Add the properties from __overlay__ node to the @ovcs->cset changeset.
491 */
492static int build_changeset_symbols_node(struct overlay_changeset *ovcs,
Frank Rowand6b4955b2018-10-04 20:28:08 -0700493 struct target *target,
Frank Rowand3912b792017-10-17 16:36:30 -0700494 const struct device_node *overlay_symbols_node)
495{
496 struct property *prop;
497 int ret;
498
499 for_each_property_of_node(overlay_symbols_node, prop) {
Frank Rowand6b4955b2018-10-04 20:28:08 -0700500 ret = add_changeset_property(ovcs, target, prop, 1);
Frank Rowand3912b792017-10-17 16:36:30 -0700501 if (ret) {
Frank Rowanda15e8242018-10-04 20:33:35 -0700502 pr_debug("Failed to apply symbols prop @%pOF/%s, err=%d\n",
Frank Rowand6b4955b2018-10-04 20:28:08 -0700503 target->np, prop->name, ret);
Frank Rowand3912b792017-10-17 16:36:30 -0700504 return ret;
505 }
506 }
507
508 return 0;
509}
510
Frank Rowand2fe0e872018-10-04 20:36:18 -0700511static int find_dup_cset_node_entry(struct overlay_changeset *ovcs,
512 struct of_changeset_entry *ce_1)
Frank Rowandc1682632018-10-04 20:35:14 -0700513{
Frank Rowand2fe0e872018-10-04 20:36:18 -0700514 struct of_changeset_entry *ce_2;
Frank Rowandc1682632018-10-04 20:35:14 -0700515 char *fn_1, *fn_2;
Frank Rowand2fe0e872018-10-04 20:36:18 -0700516 int node_path_match;
Frank Rowandc1682632018-10-04 20:35:14 -0700517
Frank Rowand2fe0e872018-10-04 20:36:18 -0700518 if (ce_1->action != OF_RECONFIG_ATTACH_NODE &&
519 ce_1->action != OF_RECONFIG_DETACH_NODE)
520 return 0;
Frank Rowandc1682632018-10-04 20:35:14 -0700521
Frank Rowand2fe0e872018-10-04 20:36:18 -0700522 ce_2 = ce_1;
523 list_for_each_entry_continue(ce_2, &ovcs->cset.entries, node) {
524 if ((ce_2->action != OF_RECONFIG_ATTACH_NODE &&
525 ce_2->action != OF_RECONFIG_DETACH_NODE) ||
526 of_node_cmp(ce_1->np->full_name, ce_2->np->full_name))
527 continue;
Frank Rowandc1682632018-10-04 20:35:14 -0700528
Frank Rowand2fe0e872018-10-04 20:36:18 -0700529 fn_1 = kasprintf(GFP_KERNEL, "%pOF", ce_1->np);
530 fn_2 = kasprintf(GFP_KERNEL, "%pOF", ce_2->np);
531 node_path_match = !strcmp(fn_1, fn_2);
532 kfree(fn_1);
533 kfree(fn_2);
534 if (node_path_match) {
535 pr_err("ERROR: multiple fragments add and/or delete node %pOF\n",
536 ce_1->np);
537 return -EINVAL;
Frank Rowandc1682632018-10-04 20:35:14 -0700538 }
539 }
540
541 return 0;
542}
543
Frank Rowand2fe0e872018-10-04 20:36:18 -0700544static int find_dup_cset_prop(struct overlay_changeset *ovcs,
545 struct of_changeset_entry *ce_1)
546{
547 struct of_changeset_entry *ce_2;
548 char *fn_1, *fn_2;
549 int node_path_match;
550
551 if (ce_1->action != OF_RECONFIG_ADD_PROPERTY &&
552 ce_1->action != OF_RECONFIG_REMOVE_PROPERTY &&
553 ce_1->action != OF_RECONFIG_UPDATE_PROPERTY)
554 return 0;
555
556 ce_2 = ce_1;
557 list_for_each_entry_continue(ce_2, &ovcs->cset.entries, node) {
558 if ((ce_2->action != OF_RECONFIG_ADD_PROPERTY &&
559 ce_2->action != OF_RECONFIG_REMOVE_PROPERTY &&
560 ce_2->action != OF_RECONFIG_UPDATE_PROPERTY) ||
561 of_node_cmp(ce_1->np->full_name, ce_2->np->full_name))
562 continue;
563
564 fn_1 = kasprintf(GFP_KERNEL, "%pOF", ce_1->np);
565 fn_2 = kasprintf(GFP_KERNEL, "%pOF", ce_2->np);
566 node_path_match = !strcmp(fn_1, fn_2);
567 kfree(fn_1);
568 kfree(fn_2);
569 if (node_path_match &&
570 !of_prop_cmp(ce_1->prop->name, ce_2->prop->name)) {
571 pr_err("ERROR: multiple fragments add, update, and/or delete property %pOF/%s\n",
572 ce_1->np, ce_1->prop->name);
573 return -EINVAL;
574 }
575 }
576
577 return 0;
578}
579
580/**
581 * changeset_dup_entry_check() - check for duplicate entries
582 * @ovcs: Overlay changeset
583 *
584 * Check changeset @ovcs->cset for multiple {add or delete} node entries for
585 * the same node or duplicate {add, delete, or update} properties entries
586 * for the same property.
587 *
588 * Returns 0 on success, or -EINVAL if duplicate changeset entry found.
589 */
590static int changeset_dup_entry_check(struct overlay_changeset *ovcs)
591{
592 struct of_changeset_entry *ce_1;
593 int dup_entry = 0;
594
595 list_for_each_entry(ce_1, &ovcs->cset.entries, node) {
596 dup_entry |= find_dup_cset_node_entry(ovcs, ce_1);
597 dup_entry |= find_dup_cset_prop(ovcs, ce_1);
598 }
599
600 return dup_entry ? -EINVAL : 0;
601}
602
Frank Rowandc1682632018-10-04 20:35:14 -0700603/**
Frank Rowand0290c4c2017-10-17 16:36:23 -0700604 * build_changeset() - populate overlay changeset in @ovcs from @ovcs->fragments
605 * @ovcs: Overlay changeset
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200606 *
Frank Rowand0290c4c2017-10-17 16:36:23 -0700607 * Create changeset @ovcs->cset to contain the nodes and properties of the
608 * overlay device tree fragments in @ovcs->fragments[]. If an error occurs,
609 * any portions of the changeset that were successfully created will remain
610 * in @ovcs->cset.
611 *
612 * Returns 0 on success, -ENOMEM if memory allocation failure, or -EINVAL if
613 * invalid overlay in @ovcs->fragments[].
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200614 */
Frank Rowand0290c4c2017-10-17 16:36:23 -0700615static int build_changeset(struct overlay_changeset *ovcs)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200616{
Frank Rowand3912b792017-10-17 16:36:30 -0700617 struct fragment *fragment;
Frank Rowand6b4955b2018-10-04 20:28:08 -0700618 struct target target;
Frank Rowand3912b792017-10-17 16:36:30 -0700619 int fragments_count, i, ret;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200620
Frank Rowand3912b792017-10-17 16:36:30 -0700621 /*
622 * if there is a symbols fragment in ovcs->fragments[i] it is
623 * the final element in the array
624 */
625 if (ovcs->symbols_fragment)
626 fragments_count = ovcs->count - 1;
627 else
628 fragments_count = ovcs->count;
629
630 for (i = 0; i < fragments_count; i++) {
631 fragment = &ovcs->fragments[i];
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200632
Frank Rowand6b4955b2018-10-04 20:28:08 -0700633 target.np = fragment->target;
634 target.in_livetree = true;
635 ret = build_changeset_next_level(ovcs, &target,
Frank Rowand3912b792017-10-17 16:36:30 -0700636 fragment->overlay);
637 if (ret) {
Frank Rowanda15e8242018-10-04 20:33:35 -0700638 pr_debug("fragment apply failed '%pOF'\n",
639 fragment->target);
Frank Rowand3912b792017-10-17 16:36:30 -0700640 return ret;
641 }
642 }
643
644 if (ovcs->symbols_fragment) {
645 fragment = &ovcs->fragments[ovcs->count - 1];
Frank Rowand6b4955b2018-10-04 20:28:08 -0700646
647 target.np = fragment->target;
648 target.in_livetree = true;
649 ret = build_changeset_symbols_node(ovcs, &target,
Frank Rowand3912b792017-10-17 16:36:30 -0700650 fragment->overlay);
Frank Rowand0290c4c2017-10-17 16:36:23 -0700651 if (ret) {
Frank Rowanda15e8242018-10-04 20:33:35 -0700652 pr_debug("symbols fragment apply failed '%pOF'\n",
653 fragment->target);
Frank Rowand0290c4c2017-10-17 16:36:23 -0700654 return ret;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200655 }
656 }
657
Frank Rowand2fe0e872018-10-04 20:36:18 -0700658 return changeset_dup_entry_check(ovcs);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200659}
660
661/*
662 * Find the target node using a number of different strategies
Frank Rowand646afc42017-10-17 16:36:21 -0700663 * in order of preference:
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200664 *
Frank Rowand646afc42017-10-17 16:36:21 -0700665 * 1) "target" property containing the phandle of the target
666 * 2) "target-path" property containing the path of the target
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200667 */
Frank Rowand6b4955b2018-10-04 20:28:08 -0700668static struct device_node *find_target(struct device_node *info_node)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200669{
Frank Rowande547c002018-02-12 00:25:04 -0800670 struct device_node *node;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200671 const char *path;
672 u32 val;
673 int ret;
674
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200675 ret = of_property_read_u32(info_node, "target", &val);
Frank Rowande547c002018-02-12 00:25:04 -0800676 if (!ret) {
677 node = of_find_node_by_phandle(val);
678 if (!node)
679 pr_err("find target, node: %pOF, phandle 0x%x not found\n",
680 info_node, val);
681 return node;
682 }
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200683
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200684 ret = of_property_read_string(info_node, "target-path", &path);
Frank Rowande547c002018-02-12 00:25:04 -0800685 if (!ret) {
686 node = of_find_node_by_path(path);
687 if (!node)
688 pr_err("find target, node: %pOF, path '%s' not found\n",
689 info_node, path);
690 return node;
691 }
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200692
Frank Rowande547c002018-02-12 00:25:04 -0800693 pr_err("find target, node: %pOF, no target property\n", info_node);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200694
695 return NULL;
696}
697
698/**
Frank Rowand0290c4c2017-10-17 16:36:23 -0700699 * init_overlay_changeset() - initialize overlay changeset from overlay tree
Frank Rowand39a751a2018-02-12 00:19:42 -0800700 * @ovcs: Overlay changeset to build
701 * @fdt: the FDT that was unflattened to create @tree
Frank Rowand0290c4c2017-10-17 16:36:23 -0700702 * @tree: Contains all the overlay fragments and overlay fixup nodes
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200703 *
Frank Rowand0290c4c2017-10-17 16:36:23 -0700704 * Initialize @ovcs. Populate @ovcs->fragments with node information from
705 * the top level of @tree. The relevant top level nodes are the fragment
706 * nodes and the __symbols__ node. Any other top level node will be ignored.
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200707 *
Frank Rowand0290c4c2017-10-17 16:36:23 -0700708 * Returns 0 on success, -ENOMEM if memory allocation failure, -EINVAL if error
Frank Rowand61b4de42017-10-17 16:36:25 -0700709 * detected in @tree, or -ENOSPC if idr_alloc() error.
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200710 */
Frank Rowand0290c4c2017-10-17 16:36:23 -0700711static int init_overlay_changeset(struct overlay_changeset *ovcs,
Frank Rowand39a751a2018-02-12 00:19:42 -0800712 const void *fdt, struct device_node *tree)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200713{
Frank Rowand61b4de42017-10-17 16:36:25 -0700714 struct device_node *node, *overlay_node;
Frank Rowand0290c4c2017-10-17 16:36:23 -0700715 struct fragment *fragment;
716 struct fragment *fragments;
Geert Uytterhoeven1352f092017-12-05 16:27:02 +0100717 int cnt, id, ret;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200718
Frank Rowand24789c52017-10-17 16:36:26 -0700719 /*
720 * Warn for some issues. Can not return -EINVAL for these until
721 * of_unittest_apply_overlay() is fixed to pass these checks.
722 */
723 if (!of_node_check_flag(tree, OF_DYNAMIC))
724 pr_debug("%s() tree is not dynamic\n", __func__);
725
726 if (!of_node_check_flag(tree, OF_DETACHED))
727 pr_debug("%s() tree is not detached\n", __func__);
728
729 if (!of_node_is_root(tree))
730 pr_debug("%s() tree is not root\n", __func__);
731
Frank Rowande0a58f32017-10-17 16:36:31 -0700732 ovcs->overlay_tree = tree;
Frank Rowand39a751a2018-02-12 00:19:42 -0800733 ovcs->fdt = fdt;
Frank Rowande0a58f32017-10-17 16:36:31 -0700734
Frank Rowand61b4de42017-10-17 16:36:25 -0700735 INIT_LIST_HEAD(&ovcs->ovcs_list);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200736
Frank Rowand61b4de42017-10-17 16:36:25 -0700737 of_changeset_init(&ovcs->cset);
738
Geert Uytterhoeven1352f092017-12-05 16:27:02 +0100739 id = idr_alloc(&ovcs_idr, ovcs, 1, 0, GFP_KERNEL);
740 if (id <= 0)
741 return id;
Frank Rowand61b4de42017-10-17 16:36:25 -0700742
743 cnt = 0;
744
745 /* fragment nodes */
746 for_each_child_of_node(tree, node) {
747 overlay_node = of_get_child_by_name(node, "__overlay__");
748 if (overlay_node) {
749 cnt++;
750 of_node_put(overlay_node);
751 }
752 }
753
754 node = of_get_child_by_name(tree, "__symbols__");
755 if (node) {
Frank Rowandd1651b02017-07-19 09:25:22 -0700756 cnt++;
Frank Rowand61b4de42017-10-17 16:36:25 -0700757 of_node_put(node);
758 }
Frank Rowandd1651b02017-07-19 09:25:22 -0700759
Frank Rowand0290c4c2017-10-17 16:36:23 -0700760 fragments = kcalloc(cnt, sizeof(*fragments), GFP_KERNEL);
Frank Rowand61b4de42017-10-17 16:36:25 -0700761 if (!fragments) {
762 ret = -ENOMEM;
763 goto err_free_idr;
764 }
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200765
766 cnt = 0;
767 for_each_child_of_node(tree, node) {
Geert Uytterhoeven35e691e2017-12-08 14:13:02 +0100768 overlay_node = of_get_child_by_name(node, "__overlay__");
Geert Uytterhoeven589b7542017-12-08 14:13:03 +0100769 if (!overlay_node)
770 continue;
Geert Uytterhoeven6de67de2017-11-28 09:26:33 +0100771
Geert Uytterhoeven589b7542017-12-08 14:13:03 +0100772 fragment = &fragments[cnt];
773 fragment->overlay = overlay_node;
Frank Rowand6b4955b2018-10-04 20:28:08 -0700774 fragment->target = find_target(node);
Geert Uytterhoeven589b7542017-12-08 14:13:03 +0100775 if (!fragment->target) {
776 of_node_put(fragment->overlay);
777 ret = -EINVAL;
778 goto err_free_fragments;
Frank Rowand61b4de42017-10-17 16:36:25 -0700779 }
Geert Uytterhoeven589b7542017-12-08 14:13:03 +0100780
781 cnt++;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200782 }
783
Frank Rowand3912b792017-10-17 16:36:30 -0700784 /*
785 * if there is a symbols fragment in ovcs->fragments[i] it is
786 * the final element in the array
787 */
Frank Rowandd1651b02017-07-19 09:25:22 -0700788 node = of_get_child_by_name(tree, "__symbols__");
789 if (node) {
Frank Rowand3912b792017-10-17 16:36:30 -0700790 ovcs->symbols_fragment = 1;
Frank Rowand0290c4c2017-10-17 16:36:23 -0700791 fragment = &fragments[cnt];
792 fragment->overlay = node;
793 fragment->target = of_find_node_by_path("/__symbols__");
Frank Rowandd1651b02017-07-19 09:25:22 -0700794
Frank Rowand0290c4c2017-10-17 16:36:23 -0700795 if (!fragment->target) {
Frank Rowand4ee7c0d2017-10-19 14:38:11 -0700796 pr_err("symbols in overlay, but not in live tree\n");
Frank Rowand61b4de42017-10-17 16:36:25 -0700797 ret = -EINVAL;
798 goto err_free_fragments;
Frank Rowandd1651b02017-07-19 09:25:22 -0700799 }
800
801 cnt++;
802 }
803
Frank Rowandbbed8792017-10-17 16:36:22 -0700804 if (!cnt) {
Frank Rowand39a751a2018-02-12 00:19:42 -0800805 pr_err("no fragments or symbols in overlay\n");
Frank Rowand61b4de42017-10-17 16:36:25 -0700806 ret = -EINVAL;
807 goto err_free_fragments;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200808 }
809
Geert Uytterhoeven1352f092017-12-05 16:27:02 +0100810 ovcs->id = id;
Frank Rowand0290c4c2017-10-17 16:36:23 -0700811 ovcs->count = cnt;
812 ovcs->fragments = fragments;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200813
814 return 0;
Frank Rowand61b4de42017-10-17 16:36:25 -0700815
Frank Rowand61b4de42017-10-17 16:36:25 -0700816err_free_fragments:
817 kfree(fragments);
818err_free_idr:
Geert Uytterhoeven1352f092017-12-05 16:27:02 +0100819 idr_remove(&ovcs_idr, id);
Frank Rowand61b4de42017-10-17 16:36:25 -0700820
Frank Rowand24789c52017-10-17 16:36:26 -0700821 pr_err("%s() failed, ret = %d\n", __func__, ret);
822
Frank Rowand61b4de42017-10-17 16:36:25 -0700823 return ret;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200824}
825
Frank Rowand61b4de42017-10-17 16:36:25 -0700826static void free_overlay_changeset(struct overlay_changeset *ovcs)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200827{
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200828 int i;
829
Geert Uytterhoeven1352f092017-12-05 16:27:02 +0100830 if (ovcs->cset.entries.next)
831 of_changeset_destroy(&ovcs->cset);
Frank Rowand61b4de42017-10-17 16:36:25 -0700832
833 if (ovcs->id)
834 idr_remove(&ovcs_idr, ovcs->id);
835
836 for (i = 0; i < ovcs->count; i++) {
Frank Rowand0290c4c2017-10-17 16:36:23 -0700837 of_node_put(ovcs->fragments[i].target);
838 of_node_put(ovcs->fragments[i].overlay);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200839 }
Frank Rowand0290c4c2017-10-17 16:36:23 -0700840 kfree(ovcs->fragments);
Frank Rowand39a751a2018-02-12 00:19:42 -0800841 /*
Jan Kiszka83ef4772018-04-26 13:00:30 +0200842 * There should be no live pointers into ovcs->overlay_tree and
843 * ovcs->fdt due to the policy that overlay notifiers are not allowed
844 * to retain pointers into the overlay devicetree.
Frank Rowand39a751a2018-02-12 00:19:42 -0800845 */
Jan Kiszka83ef4772018-04-26 13:00:30 +0200846 kfree(ovcs->overlay_tree);
847 kfree(ovcs->fdt);
Frank Rowand61b4de42017-10-17 16:36:25 -0700848 kfree(ovcs);
849}
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200850
Frank Rowand39a751a2018-02-12 00:19:42 -0800851/*
852 * internal documentation
853 *
Frank Rowand0290c4c2017-10-17 16:36:23 -0700854 * of_overlay_apply() - Create and apply an overlay changeset
Frank Rowand39a751a2018-02-12 00:19:42 -0800855 * @fdt: the FDT that was unflattened to create @tree
Frank Rowand0290c4c2017-10-17 16:36:23 -0700856 * @tree: Expanded overlay device tree
Frank Rowand24789c52017-10-17 16:36:26 -0700857 * @ovcs_id: Pointer to overlay changeset id
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200858 *
Frank Rowand24789c52017-10-17 16:36:26 -0700859 * Creates and applies an overlay changeset.
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200860 *
Frank Rowand24789c52017-10-17 16:36:26 -0700861 * If an error occurs in a pre-apply notifier, then no changes are made
862 * to the device tree.
863 *
864
865 * A non-zero return value will not have created the changeset if error is from:
866 * - parameter checks
867 * - building the changeset
Geert Uytterhoevene9d92e42017-11-28 09:25:23 +0100868 * - overlay changeset pre-apply notifier
Frank Rowand24789c52017-10-17 16:36:26 -0700869 *
870 * If an error is returned by an overlay changeset pre-apply notifier
871 * then no further overlay changeset pre-apply notifier will be called.
872 *
873 * A non-zero return value will have created the changeset if error is from:
874 * - overlay changeset entry notifier
Geert Uytterhoevene9d92e42017-11-28 09:25:23 +0100875 * - overlay changeset post-apply notifier
Frank Rowand24789c52017-10-17 16:36:26 -0700876 *
877 * If an error is returned by an overlay changeset post-apply notifier
878 * then no further overlay changeset post-apply 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 * If an error occurred while applying the overlay changeset, then an
884 * attempt is made to revert any changes that were made to the
885 * device tree. If there were any errors during the revert attempt
886 * then the state of the device tree can not be determined, and any
887 * following attempt to apply or remove an overlay changeset will be
888 * refused.
889 *
890 * Returns 0 on success, or a negative error number. Overlay changeset
891 * id is returned to *ovcs_id.
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200892 */
Frank Rowand24789c52017-10-17 16:36:26 -0700893
Frank Rowand39a751a2018-02-12 00:19:42 -0800894static int of_overlay_apply(const void *fdt, struct device_node *tree,
895 int *ovcs_id)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200896{
Frank Rowand0290c4c2017-10-17 16:36:23 -0700897 struct overlay_changeset *ovcs;
Frank Rowand24789c52017-10-17 16:36:26 -0700898 int ret = 0, ret_revert, ret_tmp;
899
Frank Rowand39a751a2018-02-12 00:19:42 -0800900 /*
901 * As of this point, fdt and tree belong to the overlay changeset.
902 * overlay changeset code is responsible for freeing them.
903 */
Frank Rowand24789c52017-10-17 16:36:26 -0700904
905 if (devicetree_corrupt()) {
906 pr_err("devicetree state suspect, refuse to apply overlay\n");
Frank Rowand39a751a2018-02-12 00:19:42 -0800907 kfree(fdt);
908 kfree(tree);
Frank Rowand24789c52017-10-17 16:36:26 -0700909 ret = -EBUSY;
910 goto out;
911 }
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200912
Frank Rowand0290c4c2017-10-17 16:36:23 -0700913 ovcs = kzalloc(sizeof(*ovcs), GFP_KERNEL);
Frank Rowand24789c52017-10-17 16:36:26 -0700914 if (!ovcs) {
Frank Rowand39a751a2018-02-12 00:19:42 -0800915 kfree(fdt);
916 kfree(tree);
Frank Rowand24789c52017-10-17 16:36:26 -0700917 ret = -ENOMEM;
918 goto out;
919 }
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200920
Frank Rowandf948d6d2017-10-17 16:36:29 -0700921 of_overlay_mutex_lock();
Geert Uytterhoeven5e474812017-12-05 16:27:03 +0100922 mutex_lock(&of_mutex);
Frank Rowandf948d6d2017-10-17 16:36:29 -0700923
924 ret = of_resolve_phandles(tree);
925 if (ret)
Frank Rowand39a751a2018-02-12 00:19:42 -0800926 goto err_free_tree;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200927
Frank Rowand39a751a2018-02-12 00:19:42 -0800928 ret = init_overlay_changeset(ovcs, fdt, tree);
Frank Rowand24789c52017-10-17 16:36:26 -0700929 if (ret)
Frank Rowand39a751a2018-02-12 00:19:42 -0800930 goto err_free_tree;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200931
Frank Rowand39a751a2018-02-12 00:19:42 -0800932 /*
933 * after overlay_notify(), ovcs->overlay_tree related pointers may have
934 * leaked to drivers, so can not kfree() tree, aka ovcs->overlay_tree;
935 * and can not free fdt, aka ovcs->fdt
936 */
Frank Rowand0290c4c2017-10-17 16:36:23 -0700937 ret = overlay_notify(ovcs, OF_OVERLAY_PRE_APPLY);
Frank Rowand24789c52017-10-17 16:36:26 -0700938 if (ret) {
939 pr_err("overlay changeset pre-apply notify error %d\n", ret);
Frank Rowand61b4de42017-10-17 16:36:25 -0700940 goto err_free_overlay_changeset;
Alan Tull39a842e2016-11-01 14:14:22 -0500941 }
942
Frank Rowand0290c4c2017-10-17 16:36:23 -0700943 ret = build_changeset(ovcs);
944 if (ret)
Frank Rowand61b4de42017-10-17 16:36:25 -0700945 goto err_free_overlay_changeset;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200946
Frank Rowand24789c52017-10-17 16:36:26 -0700947 ret_revert = 0;
948 ret = __of_changeset_apply_entries(&ovcs->cset, &ret_revert);
949 if (ret) {
950 if (ret_revert) {
951 pr_debug("overlay changeset revert error %d\n",
952 ret_revert);
953 devicetree_state_flags |= DTSF_APPLY_FAIL;
954 }
Frank Rowand61b4de42017-10-17 16:36:25 -0700955 goto err_free_overlay_changeset;
Frank Rowand24789c52017-10-17 16:36:26 -0700956 }
Rob Herring606ad422016-06-15 08:32:18 -0500957
Frank Rowandb9952b52018-07-12 14:00:07 -0700958 of_populate_phandle_cache();
959
Geert Uytterhoeven6de67de2017-11-28 09:26:33 +0100960 ret = __of_changeset_apply_notify(&ovcs->cset);
961 if (ret)
Frank Rowanda15e8242018-10-04 20:33:35 -0700962 pr_err("overlay apply changeset entry notify error %d\n", ret);
Geert Uytterhoeven6de67de2017-11-28 09:26:33 +0100963 /* notify failure is not fatal, continue */
964
Frank Rowand0290c4c2017-10-17 16:36:23 -0700965 list_add_tail(&ovcs->ovcs_list, &ovcs_list);
Frank Rowand24789c52017-10-17 16:36:26 -0700966 *ovcs_id = ovcs->id;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200967
Frank Rowand24789c52017-10-17 16:36:26 -0700968 ret_tmp = overlay_notify(ovcs, OF_OVERLAY_POST_APPLY);
969 if (ret_tmp) {
970 pr_err("overlay changeset post-apply notify error %d\n",
971 ret_tmp);
972 if (!ret)
973 ret = ret_tmp;
974 }
Alan Tull39a842e2016-11-01 14:14:22 -0500975
Geert Uytterhoeven5e474812017-12-05 16:27:03 +0100976 goto out_unlock;
Frank Rowandf948d6d2017-10-17 16:36:29 -0700977
Frank Rowand39a751a2018-02-12 00:19:42 -0800978err_free_tree:
979 kfree(fdt);
980 kfree(tree);
981
Frank Rowand61b4de42017-10-17 16:36:25 -0700982err_free_overlay_changeset:
983 free_overlay_changeset(ovcs);
984
Geert Uytterhoeven5e474812017-12-05 16:27:03 +0100985out_unlock:
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200986 mutex_unlock(&of_mutex);
Geert Uytterhoeven5e474812017-12-05 16:27:03 +0100987 of_overlay_mutex_unlock();
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200988
Frank Rowand24789c52017-10-17 16:36:26 -0700989out:
990 pr_debug("%s() err=%d\n", __func__, ret);
991
Frank Rowand0290c4c2017-10-17 16:36:23 -0700992 return ret;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200993}
Frank Rowand39a751a2018-02-12 00:19:42 -0800994
995int of_overlay_fdt_apply(const void *overlay_fdt, u32 overlay_fdt_size,
996 int *ovcs_id)
997{
998 const void *new_fdt;
999 int ret;
1000 u32 size;
1001 struct device_node *overlay_root;
1002
1003 *ovcs_id = 0;
1004 ret = 0;
1005
1006 if (overlay_fdt_size < sizeof(struct fdt_header) ||
1007 fdt_check_header(overlay_fdt)) {
1008 pr_err("Invalid overlay_fdt header\n");
1009 return -EINVAL;
1010 }
1011
1012 size = fdt_totalsize(overlay_fdt);
1013 if (overlay_fdt_size < size)
1014 return -EINVAL;
1015
1016 /*
1017 * Must create permanent copy of FDT because of_fdt_unflatten_tree()
1018 * will create pointers to the passed in FDT in the unflattened tree.
1019 */
1020 new_fdt = kmemdup(overlay_fdt, size, GFP_KERNEL);
1021 if (!new_fdt)
1022 return -ENOMEM;
1023
1024 of_fdt_unflatten_tree(new_fdt, NULL, &overlay_root);
1025 if (!overlay_root) {
1026 pr_err("unable to unflatten overlay_fdt\n");
1027 ret = -EINVAL;
1028 goto out_free_new_fdt;
1029 }
1030
1031 ret = of_overlay_apply(new_fdt, overlay_root, ovcs_id);
1032 if (ret < 0) {
1033 /*
1034 * new_fdt and overlay_root now belong to the overlay
1035 * changeset.
1036 * overlay changeset code is responsible for freeing them.
1037 */
1038 goto out;
1039 }
1040
1041 return 0;
1042
1043
1044out_free_new_fdt:
1045 kfree(new_fdt);
1046
1047out:
1048 return ret;
1049}
1050EXPORT_SYMBOL_GPL(of_overlay_fdt_apply);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001051
Frank Rowand646afc42017-10-17 16:36:21 -07001052/*
Frank Rowand0290c4c2017-10-17 16:36:23 -07001053 * Find @np in @tree.
1054 *
1055 * Returns 1 if @np is @tree or is contained in @tree, else 0
Frank Rowand646afc42017-10-17 16:36:21 -07001056 */
Frank Rowand0290c4c2017-10-17 16:36:23 -07001057static int find_node(struct device_node *tree, struct device_node *np)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001058{
1059 struct device_node *child;
1060
Frank Rowand0290c4c2017-10-17 16:36:23 -07001061 if (tree == np)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001062 return 1;
1063
1064 for_each_child_of_node(tree, child) {
Frank Rowand0290c4c2017-10-17 16:36:23 -07001065 if (find_node(child, np)) {
Julia Lawall001cf502015-10-22 11:02:48 +02001066 of_node_put(child);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001067 return 1;
Julia Lawall001cf502015-10-22 11:02:48 +02001068 }
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001069 }
1070
1071 return 0;
1072}
1073
Frank Rowand646afc42017-10-17 16:36:21 -07001074/*
Frank Rowand87f242c2017-10-17 16:36:27 -07001075 * Is @remove_ce_node a child of, a parent of, or the same as any
Frank Rowand0290c4c2017-10-17 16:36:23 -07001076 * node in an overlay changeset more topmost than @remove_ovcs?
1077 *
1078 * Returns 1 if found, else 0
Frank Rowand646afc42017-10-17 16:36:21 -07001079 */
Frank Rowand87f242c2017-10-17 16:36:27 -07001080static int node_overlaps_later_cs(struct overlay_changeset *remove_ovcs,
1081 struct device_node *remove_ce_node)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001082{
Frank Rowand0290c4c2017-10-17 16:36:23 -07001083 struct overlay_changeset *ovcs;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001084 struct of_changeset_entry *ce;
1085
Frank Rowand0290c4c2017-10-17 16:36:23 -07001086 list_for_each_entry_reverse(ovcs, &ovcs_list, ovcs_list) {
1087 if (ovcs == remove_ovcs)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001088 break;
1089
Frank Rowand0290c4c2017-10-17 16:36:23 -07001090 list_for_each_entry(ce, &ovcs->cset.entries, node) {
Frank Rowand87f242c2017-10-17 16:36:27 -07001091 if (find_node(ce->np, remove_ce_node)) {
1092 pr_err("%s: #%d overlaps with #%d @%pOF\n",
Frank Rowand0290c4c2017-10-17 16:36:23 -07001093 __func__, remove_ovcs->id, ovcs->id,
Frank Rowand87f242c2017-10-17 16:36:27 -07001094 remove_ce_node);
1095 return 1;
1096 }
1097 if (find_node(remove_ce_node, ce->np)) {
1098 pr_err("%s: #%d overlaps with #%d @%pOF\n",
1099 __func__, remove_ovcs->id, ovcs->id,
1100 remove_ce_node);
Frank Rowand0290c4c2017-10-17 16:36:23 -07001101 return 1;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001102 }
1103 }
1104 }
1105
Frank Rowand0290c4c2017-10-17 16:36:23 -07001106 return 0;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001107}
1108
1109/*
1110 * We can safely remove the overlay only if it's the top-most one.
1111 * Newly applied overlays are inserted at the tail of the overlay list,
1112 * so a top most overlay is the one that is closest to the tail.
1113 *
1114 * The topmost check is done by exploiting this property. For each
1115 * affected device node in the log list we check if this overlay is
1116 * the one closest to the tail. If another overlay has affected this
1117 * device node and is closest to the tail, then removal is not permited.
1118 */
Frank Rowand0290c4c2017-10-17 16:36:23 -07001119static int overlay_removal_is_ok(struct overlay_changeset *remove_ovcs)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001120{
Frank Rowand0290c4c2017-10-17 16:36:23 -07001121 struct of_changeset_entry *remove_ce;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001122
Frank Rowand0290c4c2017-10-17 16:36:23 -07001123 list_for_each_entry(remove_ce, &remove_ovcs->cset.entries, node) {
Frank Rowand87f242c2017-10-17 16:36:27 -07001124 if (node_overlaps_later_cs(remove_ovcs, remove_ce->np)) {
Frank Rowand0290c4c2017-10-17 16:36:23 -07001125 pr_err("overlay #%d is not topmost\n", remove_ovcs->id);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001126 return 0;
1127 }
1128 }
1129
1130 return 1;
1131}
1132
1133/**
Frank Rowand0290c4c2017-10-17 16:36:23 -07001134 * of_overlay_remove() - Revert and free an overlay changeset
Frank Rowand24789c52017-10-17 16:36:26 -07001135 * @ovcs_id: Pointer to overlay changeset id
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001136 *
Frank Rowand24789c52017-10-17 16:36:26 -07001137 * Removes an overlay if it is permissible. @ovcs_id was previously returned
Geert Uytterhoevena5142662018-03-09 11:44:47 +01001138 * by of_overlay_fdt_apply().
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001139 *
Frank Rowand24789c52017-10-17 16:36:26 -07001140 * If an error occurred while attempting to revert the overlay changeset,
1141 * then an attempt is made to re-apply any changeset entry that was
1142 * reverted. If an error occurs on re-apply then the state of the device
1143 * tree can not be determined, and any following attempt to apply or remove
1144 * an overlay changeset will be refused.
1145 *
1146 * A non-zero return value will not revert the changeset if error is from:
1147 * - parameter checks
Geert Uytterhoevene9d92e42017-11-28 09:25:23 +01001148 * - overlay changeset pre-remove notifier
Frank Rowand24789c52017-10-17 16:36:26 -07001149 * - overlay changeset entry revert
1150 *
1151 * If an error is returned by an overlay changeset pre-remove notifier
1152 * then no further overlay changeset pre-remove notifier will be called.
1153 *
1154 * If more than one notifier returns an error, then the last notifier
1155 * error to occur is returned.
1156 *
1157 * A non-zero return value will revert the changeset if error is from:
1158 * - overlay changeset entry notifier
Geert Uytterhoevene9d92e42017-11-28 09:25:23 +01001159 * - overlay changeset post-remove notifier
Frank Rowand24789c52017-10-17 16:36:26 -07001160 *
1161 * If an error is returned by an overlay changeset post-remove notifier
1162 * then no further overlay changeset post-remove notifier will be called.
1163 *
1164 * Returns 0 on success, or a negative error number. *ovcs_id is set to
1165 * zero after reverting the changeset, even if a subsequent error occurs.
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001166 */
Frank Rowand24789c52017-10-17 16:36:26 -07001167int of_overlay_remove(int *ovcs_id)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001168{
Frank Rowand0290c4c2017-10-17 16:36:23 -07001169 struct overlay_changeset *ovcs;
Frank Rowand24789c52017-10-17 16:36:26 -07001170 int ret, ret_apply, ret_tmp;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001171
Frank Rowand24789c52017-10-17 16:36:26 -07001172 ret = 0;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001173
Frank Rowand24789c52017-10-17 16:36:26 -07001174 if (devicetree_corrupt()) {
1175 pr_err("suspect devicetree state, refuse to remove overlay\n");
Frank Rowand0290c4c2017-10-17 16:36:23 -07001176 ret = -EBUSY;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001177 goto out;
1178 }
1179
Frank Rowand24789c52017-10-17 16:36:26 -07001180 mutex_lock(&of_mutex);
1181
1182 ovcs = idr_find(&ovcs_idr, *ovcs_id);
1183 if (!ovcs) {
1184 ret = -ENODEV;
1185 pr_err("remove: Could not find overlay #%d\n", *ovcs_id);
1186 goto out_unlock;
1187 }
1188
1189 if (!overlay_removal_is_ok(ovcs)) {
1190 ret = -EBUSY;
1191 goto out_unlock;
1192 }
1193
1194 ret = overlay_notify(ovcs, OF_OVERLAY_PRE_REMOVE);
1195 if (ret) {
1196 pr_err("overlay changeset pre-remove notify error %d\n", ret);
1197 goto out_unlock;
1198 }
Frank Rowand61b4de42017-10-17 16:36:25 -07001199
Frank Rowand0290c4c2017-10-17 16:36:23 -07001200 list_del(&ovcs->ovcs_list);
Frank Rowand61b4de42017-10-17 16:36:25 -07001201
Frank Rowandb9952b52018-07-12 14:00:07 -07001202 /*
1203 * Disable phandle cache. Avoids race condition that would arise
1204 * from removing cache entry when the associated node is deleted.
1205 */
1206 of_free_phandle_cache();
1207
Frank Rowand24789c52017-10-17 16:36:26 -07001208 ret_apply = 0;
1209 ret = __of_changeset_revert_entries(&ovcs->cset, &ret_apply);
Frank Rowandb9952b52018-07-12 14:00:07 -07001210
1211 of_populate_phandle_cache();
1212
Frank Rowand24789c52017-10-17 16:36:26 -07001213 if (ret) {
1214 if (ret_apply)
1215 devicetree_state_flags |= DTSF_REVERT_FAIL;
1216 goto out_unlock;
Frank Rowand24789c52017-10-17 16:36:26 -07001217 }
Frank Rowand61b4de42017-10-17 16:36:25 -07001218
Geert Uytterhoeven6de67de2017-11-28 09:26:33 +01001219 ret = __of_changeset_revert_notify(&ovcs->cset);
1220 if (ret)
Frank Rowanda15e8242018-10-04 20:33:35 -07001221 pr_err("overlay remove changeset entry notify error %d\n", ret);
Geert Uytterhoeven6de67de2017-11-28 09:26:33 +01001222 /* notify failure is not fatal, continue */
1223
Frank Rowand24789c52017-10-17 16:36:26 -07001224 *ovcs_id = 0;
1225
1226 ret_tmp = overlay_notify(ovcs, OF_OVERLAY_POST_REMOVE);
1227 if (ret_tmp) {
1228 pr_err("overlay changeset post-remove notify error %d\n",
1229 ret_tmp);
1230 if (!ret)
1231 ret = ret_tmp;
1232 }
Frank Rowand61b4de42017-10-17 16:36:25 -07001233
1234 free_overlay_changeset(ovcs);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001235
Frank Rowand24789c52017-10-17 16:36:26 -07001236out_unlock:
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001237 mutex_unlock(&of_mutex);
1238
Frank Rowand24789c52017-10-17 16:36:26 -07001239out:
1240 pr_debug("%s() err=%d\n", __func__, ret);
1241
Frank Rowand0290c4c2017-10-17 16:36:23 -07001242 return ret;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001243}
Frank Rowand0290c4c2017-10-17 16:36:23 -07001244EXPORT_SYMBOL_GPL(of_overlay_remove);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001245
1246/**
Frank Rowand0290c4c2017-10-17 16:36:23 -07001247 * of_overlay_remove_all() - Reverts and frees all overlay changesets
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001248 *
1249 * Removes all overlays from the system in the correct order.
1250 *
Geert Uytterhoeven94a8bf92015-05-21 14:10:26 +02001251 * Returns 0 on success, or a negative error number
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001252 */
Frank Rowand0290c4c2017-10-17 16:36:23 -07001253int of_overlay_remove_all(void)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001254{
Frank Rowand0290c4c2017-10-17 16:36:23 -07001255 struct overlay_changeset *ovcs, *ovcs_n;
Frank Rowand61b4de42017-10-17 16:36:25 -07001256 int ret;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001257
1258 /* the tail of list is guaranteed to be safe to remove */
Frank Rowand0290c4c2017-10-17 16:36:23 -07001259 list_for_each_entry_safe_reverse(ovcs, ovcs_n, &ovcs_list, ovcs_list) {
Frank Rowand24789c52017-10-17 16:36:26 -07001260 ret = of_overlay_remove(&ovcs->id);
Frank Rowand61b4de42017-10-17 16:36:25 -07001261 if (ret)
1262 return ret;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001263 }
1264
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001265 return 0;
1266}
Frank Rowand0290c4c2017-10-17 16:36:23 -07001267EXPORT_SYMBOL_GPL(of_overlay_remove_all);