blob: d80160cf34bb7e7f27839d26405565ca8af828b3 [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 Rowand48d499b2021-04-08 15:45:08 -050060 * @fdt: base of memory allocated to hold aligned 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/**
Lee Jonesf957d5b2021-03-18 10:40:35 +0000143 * of_overlay_notifier_unregister() - Unregister notifier for overlay operations
Jan Kiszka83ef4772018-04-26 13:00:30 +0200144 * @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 Rowand478ff642020-04-16 16:42:49 -0500264 kfree(target_path);
265
Frank Rowande0a58f32017-10-17 16:36:31 -0700266 return new_prop;
Frank Rowandd1651b02017-07-19 09:25:22 -0700267
Frank Rowande0a58f32017-10-17 16:36:31 -0700268err_free_new_prop:
269 kfree(new_prop->name);
270 kfree(new_prop->value);
271 kfree(new_prop);
272err_free_target_path:
273 kfree(target_path);
Frank Rowandd1651b02017-07-19 09:25:22 -0700274
Frank Rowandd1651b02017-07-19 09:25:22 -0700275 return NULL;
Frank Rowandd1651b02017-07-19 09:25:22 -0700276}
277
Frank Rowand0290c4c2017-10-17 16:36:23 -0700278/**
279 * add_changeset_property() - add @overlay_prop to overlay changeset
280 * @ovcs: overlay changeset
Frank Rowand6b4955b2018-10-04 20:28:08 -0700281 * @target: where @overlay_prop will be placed
Frank Rowand0290c4c2017-10-17 16:36:23 -0700282 * @overlay_prop: property to add or update, from overlay tree
Frank Rowand3912b792017-10-17 16:36:30 -0700283 * @is_symbols_prop: 1 if @overlay_prop is from node "/__symbols__"
Frank Rowand0290c4c2017-10-17 16:36:23 -0700284 *
Frank Rowand6b4955b2018-10-04 20:28:08 -0700285 * If @overlay_prop does not already exist in live devicetree, add changeset
286 * entry to add @overlay_prop in @target, else add changeset entry to update
Frank Rowand0290c4c2017-10-17 16:36:23 -0700287 * value of @overlay_prop.
288 *
Frank Rowand6b4955b2018-10-04 20:28:08 -0700289 * @target may be either in the live devicetree or in a new subtree that
290 * is contained in the changeset.
291 *
Frank Rowand6f751182018-10-04 20:32:04 -0700292 * Some special properties are not added or updated (no error returned):
293 * "name", "phandle", "linux,phandle".
294 *
295 * Properties "#address-cells" and "#size-cells" are not updated if they
296 * are already in the live tree, but if present in the live tree, the values
297 * in the overlay must match the values in the live tree.
Frank Rowand0290c4c2017-10-17 16:36:23 -0700298 *
Frank Rowand646afc42017-10-17 16:36:21 -0700299 * Update of property in symbols node is not allowed.
Frank Rowand0290c4c2017-10-17 16:36:23 -0700300 *
Rob Herring8c8239c2021-03-25 10:47:12 -0600301 * Return: 0 on success, -ENOMEM if memory allocation failure, or -EINVAL if
Frank Rowand0290c4c2017-10-17 16:36:23 -0700302 * invalid @overlay.
Frank Rowand646afc42017-10-17 16:36:21 -0700303 */
Frank Rowand0290c4c2017-10-17 16:36:23 -0700304static int add_changeset_property(struct overlay_changeset *ovcs,
Frank Rowand6b4955b2018-10-04 20:28:08 -0700305 struct target *target, struct property *overlay_prop,
Frank Rowand3912b792017-10-17 16:36:30 -0700306 bool is_symbols_prop)
Frank Rowandd1651b02017-07-19 09:25:22 -0700307{
Frank Rowand0290c4c2017-10-17 16:36:23 -0700308 struct property *new_prop = NULL, *prop;
Lixin Wangac0f3e32017-10-16 17:54:32 +0800309 int ret = 0;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200310
Frank Rowandf9627882018-10-12 19:21:16 -0700311 if (target->in_livetree)
312 if (!of_prop_cmp(overlay_prop->name, "name") ||
313 !of_prop_cmp(overlay_prop->name, "phandle") ||
314 !of_prop_cmp(overlay_prop->name, "linux,phandle"))
315 return 0;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200316
Frank Rowand6b4955b2018-10-04 20:28:08 -0700317 if (target->in_livetree)
318 prop = of_find_property(target->np, overlay_prop->name, NULL);
319 else
320 prop = NULL;
321
Frank Rowand637392a2019-11-21 13:16:56 -0600322 if (prop) {
323 if (!of_prop_cmp(prop->name, "#address-cells")) {
324 if (!of_prop_val_eq(prop, overlay_prop)) {
325 pr_err("ERROR: changing value of #address-cells is not allowed in %pOF\n",
326 target->np);
327 ret = -EINVAL;
328 }
329 return ret;
330
331 } else if (!of_prop_cmp(prop->name, "#size-cells")) {
332 if (!of_prop_val_eq(prop, overlay_prop)) {
333 pr_err("ERROR: changing value of #size-cells is not allowed in %pOF\n",
334 target->np);
335 ret = -EINVAL;
336 }
337 return ret;
338 }
339 }
340
Frank Rowand3912b792017-10-17 16:36:30 -0700341 if (is_symbols_prop) {
Frank Rowand0290c4c2017-10-17 16:36:23 -0700342 if (prop)
Frank Rowandd1651b02017-07-19 09:25:22 -0700343 return -EINVAL;
Frank Rowand0290c4c2017-10-17 16:36:23 -0700344 new_prop = dup_and_fixup_symbol_prop(ovcs, overlay_prop);
Frank Rowandd1651b02017-07-19 09:25:22 -0700345 } else {
Frank Rowand0290c4c2017-10-17 16:36:23 -0700346 new_prop = __of_prop_dup(overlay_prop, GFP_KERNEL);
Frank Rowandd1651b02017-07-19 09:25:22 -0700347 }
348
Frank Rowand0290c4c2017-10-17 16:36:23 -0700349 if (!new_prop)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200350 return -ENOMEM;
351
Frank Rowand6f751182018-10-04 20:32:04 -0700352 if (!prop) {
Frank Rowandf9627882018-10-12 19:21:16 -0700353 if (!target->in_livetree) {
354 new_prop->next = target->np->deadprops;
355 target->np->deadprops = new_prop;
356 }
Frank Rowand6b4955b2018-10-04 20:28:08 -0700357 ret = of_changeset_add_property(&ovcs->cset, target->np,
Frank Rowand0290c4c2017-10-17 16:36:23 -0700358 new_prop);
Frank Rowand6f751182018-10-04 20:32:04 -0700359 } else {
Frank Rowand6b4955b2018-10-04 20:28:08 -0700360 ret = of_changeset_update_property(&ovcs->cset, target->np,
Frank Rowand0290c4c2017-10-17 16:36:23 -0700361 new_prop);
Frank Rowand6f751182018-10-04 20:32:04 -0700362 }
363
Frank Rowand637392a2019-11-21 13:16:56 -0600364 if (!of_node_check_flag(target->np, OF_OVERLAY))
Frank Rowand6f751182018-10-04 20:32:04 -0700365 pr_err("WARNING: memory leak will occur if overlay removed, property: %pOF/%s\n",
366 target->np, new_prop->name);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200367
Lixin Wangac0f3e32017-10-16 17:54:32 +0800368 if (ret) {
Frank Rowand0290c4c2017-10-17 16:36:23 -0700369 kfree(new_prop->name);
370 kfree(new_prop->value);
371 kfree(new_prop);
Lixin Wangac0f3e32017-10-16 17:54:32 +0800372 }
373 return ret;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200374}
375
Frank Rowand0290c4c2017-10-17 16:36:23 -0700376/**
377 * add_changeset_node() - add @node (and children) to overlay changeset
Frank Rowand6b4955b2018-10-04 20:28:08 -0700378 * @ovcs: overlay changeset
379 * @target: where @node will be placed in live tree or changeset
380 * @node: node from within overlay device tree fragment
Frank Rowand0290c4c2017-10-17 16:36:23 -0700381 *
Frank Rowand6b4955b2018-10-04 20:28:08 -0700382 * If @node does not already exist in @target, add changeset entry
383 * to add @node in @target.
Frank Rowand0290c4c2017-10-17 16:36:23 -0700384 *
Frank Rowand6b4955b2018-10-04 20:28:08 -0700385 * If @node already exists in @target, and the existing node has
Frank Rowand0290c4c2017-10-17 16:36:23 -0700386 * a phandle, the overlay node is not allowed to have a phandle.
387 *
388 * If @node has child nodes, add the children recursively via
389 * build_changeset_next_level().
390 *
Frank Rowandb89dae12018-02-26 14:01:23 -0800391 * NOTE_1: A live devicetree created from a flattened device tree (FDT) will
392 * not contain the full path in node->full_name. Thus an overlay
393 * created from an FDT also will not contain the full path in
394 * node->full_name. However, a live devicetree created from Open
395 * Firmware may have the full path in node->full_name.
396 *
397 * add_changeset_node() follows the FDT convention and does not include
398 * the full path in node->full_name. Even though it expects the overlay
399 * to not contain the full path, it uses kbasename() to remove the
400 * full path should it exist. It also uses kbasename() in comparisons
401 * to nodes in the live devicetree so that it can apply an overlay to
402 * a live devicetree created from Open Firmware.
403 *
404 * NOTE_2: Multiple mods of created nodes not supported.
Frank Rowand0290c4c2017-10-17 16:36:23 -0700405 *
Rob Herring8c8239c2021-03-25 10:47:12 -0600406 * Return: 0 on success, -ENOMEM if memory allocation failure, or -EINVAL if
Frank Rowand0290c4c2017-10-17 16:36:23 -0700407 * invalid @overlay.
408 */
409static int add_changeset_node(struct overlay_changeset *ovcs,
Frank Rowand6b4955b2018-10-04 20:28:08 -0700410 struct target *target, struct device_node *node)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200411{
Frank Rowand0290c4c2017-10-17 16:36:23 -0700412 const char *node_kbasename;
Frank Rowandf9627882018-10-12 19:21:16 -0700413 const __be32 *phandle;
Fabio Estevamd3a89162015-03-03 10:04:45 -0300414 struct device_node *tchild;
Frank Rowand6b4955b2018-10-04 20:28:08 -0700415 struct target target_child;
Frank Rowandf9627882018-10-12 19:21:16 -0700416 int ret = 0, size;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200417
Frank Rowand0290c4c2017-10-17 16:36:23 -0700418 node_kbasename = kbasename(node->full_name);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200419
Frank Rowand6b4955b2018-10-04 20:28:08 -0700420 for_each_child_of_node(target->np, tchild)
Frank Rowand0290c4c2017-10-17 16:36:23 -0700421 if (!of_node_cmp(node_kbasename, kbasename(tchild->full_name)))
Frank Rowandc1cd1e02017-07-19 09:25:21 -0700422 break;
423
Frank Rowand61b4de42017-10-17 16:36:25 -0700424 if (!tchild) {
Frank Rowand8814dc42018-10-04 20:29:01 -0700425 tchild = __of_node_dup(NULL, node_kbasename);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200426 if (!tchild)
427 return -ENOMEM;
428
Frank Rowand6b4955b2018-10-04 20:28:08 -0700429 tchild->parent = target->np;
Frank Rowandf9627882018-10-12 19:21:16 -0700430 tchild->name = __of_get_property(node, "name", NULL);
Frank Rowandf9627882018-10-12 19:21:16 -0700431
432 if (!tchild->name)
433 tchild->name = "<NULL>";
Frank Rowandf9627882018-10-12 19:21:16 -0700434
435 /* ignore obsolete "linux,phandle" */
436 phandle = __of_get_property(node, "phandle", &size);
437 if (phandle && (size == 4))
438 tchild->phandle = be32_to_cpup(phandle);
439
Frank Rowand144552c72018-10-04 20:24:17 -0700440 of_node_set_flag(tchild, OF_OVERLAY);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200441
Frank Rowand0290c4c2017-10-17 16:36:23 -0700442 ret = of_changeset_attach_node(&ovcs->cset, tchild);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200443 if (ret)
444 return ret;
445
Frank Rowand6b4955b2018-10-04 20:28:08 -0700446 target_child.np = tchild;
447 target_child.in_livetree = false;
448
449 ret = build_changeset_next_level(ovcs, &target_child, node);
Frank Rowand7c528e42018-10-04 20:25:13 -0700450 of_node_put(tchild);
451 return ret;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200452 }
453
Frank Rowand6b4955b2018-10-04 20:28:08 -0700454 if (node->phandle && tchild->phandle) {
Frank Rowand6d0f5472017-10-17 16:36:28 -0700455 ret = -EINVAL;
Frank Rowand6b4955b2018-10-04 20:28:08 -0700456 } else {
457 target_child.np = tchild;
458 target_child.in_livetree = target->in_livetree;
459 ret = build_changeset_next_level(ovcs, &target_child, node);
460 }
Frank Rowand61b4de42017-10-17 16:36:25 -0700461 of_node_put(tchild);
462
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200463 return ret;
464}
465
Frank Rowand0290c4c2017-10-17 16:36:23 -0700466/**
467 * build_changeset_next_level() - add level of overlay changeset
468 * @ovcs: overlay changeset
Frank Rowand6b4955b2018-10-04 20:28:08 -0700469 * @target: where to place @overlay_node in live tree
Frank Rowand0290c4c2017-10-17 16:36:23 -0700470 * @overlay_node: node from within an overlay device tree fragment
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200471 *
Frank Rowand0290c4c2017-10-17 16:36:23 -0700472 * Add the properties (if any) and nodes (if any) from @overlay_node to the
473 * @ovcs->cset changeset. If an added node has child nodes, they will
474 * be added recursively.
Frank Rowand646afc42017-10-17 16:36:21 -0700475 *
476 * Do not allow symbols node to have any children.
Frank Rowand0290c4c2017-10-17 16:36:23 -0700477 *
Rob Herring8c8239c2021-03-25 10:47:12 -0600478 * Return: 0 on success, -ENOMEM if memory allocation failure, or -EINVAL if
Frank Rowand0290c4c2017-10-17 16:36:23 -0700479 * invalid @overlay_node.
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200480 */
Frank Rowand0290c4c2017-10-17 16:36:23 -0700481static int build_changeset_next_level(struct overlay_changeset *ovcs,
Frank Rowand6b4955b2018-10-04 20:28:08 -0700482 struct target *target, const struct device_node *overlay_node)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200483{
484 struct device_node *child;
485 struct property *prop;
486 int ret;
487
Frank Rowand0290c4c2017-10-17 16:36:23 -0700488 for_each_property_of_node(overlay_node, prop) {
Frank Rowand6b4955b2018-10-04 20:28:08 -0700489 ret = add_changeset_property(ovcs, target, prop, 0);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200490 if (ret) {
Frank Rowand24789c52017-10-17 16:36:26 -0700491 pr_debug("Failed to apply prop @%pOF/%s, err=%d\n",
Frank Rowand6b4955b2018-10-04 20:28:08 -0700492 target->np, prop->name, ret);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200493 return ret;
494 }
495 }
496
Frank Rowand0290c4c2017-10-17 16:36:23 -0700497 for_each_child_of_node(overlay_node, child) {
Frank Rowand6b4955b2018-10-04 20:28:08 -0700498 ret = add_changeset_node(ovcs, target, child);
Frank Rowandbbed8792017-10-17 16:36:22 -0700499 if (ret) {
Rob Herringa613b262018-08-27 20:00:19 -0500500 pr_debug("Failed to apply node @%pOF/%pOFn, err=%d\n",
Frank Rowand6b4955b2018-10-04 20:28:08 -0700501 target->np, child, ret);
Julia Lawall001cf502015-10-22 11:02:48 +0200502 of_node_put(child);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200503 return ret;
504 }
505 }
506
507 return 0;
508}
509
Frank Rowand3912b792017-10-17 16:36:30 -0700510/*
511 * Add the properties from __overlay__ node to the @ovcs->cset changeset.
512 */
513static int build_changeset_symbols_node(struct overlay_changeset *ovcs,
Frank Rowand6b4955b2018-10-04 20:28:08 -0700514 struct target *target,
Frank Rowand3912b792017-10-17 16:36:30 -0700515 const struct device_node *overlay_symbols_node)
516{
517 struct property *prop;
518 int ret;
519
520 for_each_property_of_node(overlay_symbols_node, prop) {
Frank Rowand6b4955b2018-10-04 20:28:08 -0700521 ret = add_changeset_property(ovcs, target, prop, 1);
Frank Rowand3912b792017-10-17 16:36:30 -0700522 if (ret) {
Frank Rowanda15e8242018-10-04 20:33:35 -0700523 pr_debug("Failed to apply symbols prop @%pOF/%s, err=%d\n",
Frank Rowand6b4955b2018-10-04 20:28:08 -0700524 target->np, prop->name, ret);
Frank Rowand3912b792017-10-17 16:36:30 -0700525 return ret;
526 }
527 }
528
529 return 0;
530}
531
Frank Rowand2fe0e872018-10-04 20:36:18 -0700532static int find_dup_cset_node_entry(struct overlay_changeset *ovcs,
533 struct of_changeset_entry *ce_1)
Frank Rowandc1682632018-10-04 20:35:14 -0700534{
Frank Rowand2fe0e872018-10-04 20:36:18 -0700535 struct of_changeset_entry *ce_2;
Frank Rowandc1682632018-10-04 20:35:14 -0700536 char *fn_1, *fn_2;
Frank Rowand2fe0e872018-10-04 20:36:18 -0700537 int node_path_match;
Frank Rowandc1682632018-10-04 20:35:14 -0700538
Frank Rowand2fe0e872018-10-04 20:36:18 -0700539 if (ce_1->action != OF_RECONFIG_ATTACH_NODE &&
540 ce_1->action != OF_RECONFIG_DETACH_NODE)
541 return 0;
Frank Rowandc1682632018-10-04 20:35:14 -0700542
Frank Rowand2fe0e872018-10-04 20:36:18 -0700543 ce_2 = ce_1;
544 list_for_each_entry_continue(ce_2, &ovcs->cset.entries, node) {
545 if ((ce_2->action != OF_RECONFIG_ATTACH_NODE &&
546 ce_2->action != OF_RECONFIG_DETACH_NODE) ||
547 of_node_cmp(ce_1->np->full_name, ce_2->np->full_name))
548 continue;
Frank Rowandc1682632018-10-04 20:35:14 -0700549
Frank Rowand2fe0e872018-10-04 20:36:18 -0700550 fn_1 = kasprintf(GFP_KERNEL, "%pOF", ce_1->np);
551 fn_2 = kasprintf(GFP_KERNEL, "%pOF", ce_2->np);
552 node_path_match = !strcmp(fn_1, fn_2);
553 kfree(fn_1);
554 kfree(fn_2);
555 if (node_path_match) {
556 pr_err("ERROR: multiple fragments add and/or delete node %pOF\n",
557 ce_1->np);
558 return -EINVAL;
Frank Rowandc1682632018-10-04 20:35:14 -0700559 }
560 }
561
562 return 0;
563}
564
Frank Rowand2fe0e872018-10-04 20:36:18 -0700565static int find_dup_cset_prop(struct overlay_changeset *ovcs,
566 struct of_changeset_entry *ce_1)
567{
568 struct of_changeset_entry *ce_2;
569 char *fn_1, *fn_2;
570 int node_path_match;
571
572 if (ce_1->action != OF_RECONFIG_ADD_PROPERTY &&
573 ce_1->action != OF_RECONFIG_REMOVE_PROPERTY &&
574 ce_1->action != OF_RECONFIG_UPDATE_PROPERTY)
575 return 0;
576
577 ce_2 = ce_1;
578 list_for_each_entry_continue(ce_2, &ovcs->cset.entries, node) {
579 if ((ce_2->action != OF_RECONFIG_ADD_PROPERTY &&
580 ce_2->action != OF_RECONFIG_REMOVE_PROPERTY &&
581 ce_2->action != OF_RECONFIG_UPDATE_PROPERTY) ||
582 of_node_cmp(ce_1->np->full_name, ce_2->np->full_name))
583 continue;
584
585 fn_1 = kasprintf(GFP_KERNEL, "%pOF", ce_1->np);
586 fn_2 = kasprintf(GFP_KERNEL, "%pOF", ce_2->np);
587 node_path_match = !strcmp(fn_1, fn_2);
588 kfree(fn_1);
589 kfree(fn_2);
590 if (node_path_match &&
591 !of_prop_cmp(ce_1->prop->name, ce_2->prop->name)) {
592 pr_err("ERROR: multiple fragments add, update, and/or delete property %pOF/%s\n",
593 ce_1->np, ce_1->prop->name);
594 return -EINVAL;
595 }
596 }
597
598 return 0;
599}
600
601/**
602 * changeset_dup_entry_check() - check for duplicate entries
603 * @ovcs: Overlay changeset
604 *
605 * Check changeset @ovcs->cset for multiple {add or delete} node entries for
606 * the same node or duplicate {add, delete, or update} properties entries
607 * for the same property.
608 *
Rob Herring8c8239c2021-03-25 10:47:12 -0600609 * Return: 0 on success, or -EINVAL if duplicate changeset entry found.
Frank Rowand2fe0e872018-10-04 20:36:18 -0700610 */
611static int changeset_dup_entry_check(struct overlay_changeset *ovcs)
612{
613 struct of_changeset_entry *ce_1;
614 int dup_entry = 0;
615
616 list_for_each_entry(ce_1, &ovcs->cset.entries, node) {
617 dup_entry |= find_dup_cset_node_entry(ovcs, ce_1);
618 dup_entry |= find_dup_cset_prop(ovcs, ce_1);
619 }
620
621 return dup_entry ? -EINVAL : 0;
622}
623
Frank Rowandc1682632018-10-04 20:35:14 -0700624/**
Frank Rowand0290c4c2017-10-17 16:36:23 -0700625 * build_changeset() - populate overlay changeset in @ovcs from @ovcs->fragments
626 * @ovcs: Overlay changeset
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200627 *
Frank Rowand0290c4c2017-10-17 16:36:23 -0700628 * Create changeset @ovcs->cset to contain the nodes and properties of the
629 * overlay device tree fragments in @ovcs->fragments[]. If an error occurs,
630 * any portions of the changeset that were successfully created will remain
631 * in @ovcs->cset.
632 *
Rob Herring8c8239c2021-03-25 10:47:12 -0600633 * Return: 0 on success, -ENOMEM if memory allocation failure, or -EINVAL if
Frank Rowand0290c4c2017-10-17 16:36:23 -0700634 * invalid overlay in @ovcs->fragments[].
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200635 */
Frank Rowand0290c4c2017-10-17 16:36:23 -0700636static int build_changeset(struct overlay_changeset *ovcs)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200637{
Frank Rowand3912b792017-10-17 16:36:30 -0700638 struct fragment *fragment;
Frank Rowand6b4955b2018-10-04 20:28:08 -0700639 struct target target;
Frank Rowand3912b792017-10-17 16:36:30 -0700640 int fragments_count, i, ret;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200641
Frank Rowand3912b792017-10-17 16:36:30 -0700642 /*
643 * if there is a symbols fragment in ovcs->fragments[i] it is
644 * the final element in the array
645 */
646 if (ovcs->symbols_fragment)
647 fragments_count = ovcs->count - 1;
648 else
649 fragments_count = ovcs->count;
650
651 for (i = 0; i < fragments_count; i++) {
652 fragment = &ovcs->fragments[i];
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200653
Frank Rowand6b4955b2018-10-04 20:28:08 -0700654 target.np = fragment->target;
655 target.in_livetree = true;
656 ret = build_changeset_next_level(ovcs, &target,
Frank Rowand3912b792017-10-17 16:36:30 -0700657 fragment->overlay);
658 if (ret) {
Frank Rowanda15e8242018-10-04 20:33:35 -0700659 pr_debug("fragment apply failed '%pOF'\n",
660 fragment->target);
Frank Rowand3912b792017-10-17 16:36:30 -0700661 return ret;
662 }
663 }
664
665 if (ovcs->symbols_fragment) {
666 fragment = &ovcs->fragments[ovcs->count - 1];
Frank Rowand6b4955b2018-10-04 20:28:08 -0700667
668 target.np = fragment->target;
669 target.in_livetree = true;
670 ret = build_changeset_symbols_node(ovcs, &target,
Frank Rowand3912b792017-10-17 16:36:30 -0700671 fragment->overlay);
Frank Rowand0290c4c2017-10-17 16:36:23 -0700672 if (ret) {
Frank Rowanda15e8242018-10-04 20:33:35 -0700673 pr_debug("symbols fragment apply failed '%pOF'\n",
674 fragment->target);
Frank Rowand0290c4c2017-10-17 16:36:23 -0700675 return ret;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200676 }
677 }
678
Frank Rowand2fe0e872018-10-04 20:36:18 -0700679 return changeset_dup_entry_check(ovcs);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200680}
681
682/*
683 * Find the target node using a number of different strategies
Frank Rowand646afc42017-10-17 16:36:21 -0700684 * in order of preference:
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200685 *
Frank Rowand646afc42017-10-17 16:36:21 -0700686 * 1) "target" property containing the phandle of the target
687 * 2) "target-path" property containing the path of the target
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200688 */
Frank Rowand6b4955b2018-10-04 20:28:08 -0700689static struct device_node *find_target(struct device_node *info_node)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200690{
Frank Rowande547c002018-02-12 00:25:04 -0800691 struct device_node *node;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200692 const char *path;
693 u32 val;
694 int ret;
695
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200696 ret = of_property_read_u32(info_node, "target", &val);
Frank Rowande547c002018-02-12 00:25:04 -0800697 if (!ret) {
698 node = of_find_node_by_phandle(val);
699 if (!node)
700 pr_err("find target, node: %pOF, phandle 0x%x not found\n",
701 info_node, val);
702 return node;
703 }
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200704
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200705 ret = of_property_read_string(info_node, "target-path", &path);
Frank Rowande547c002018-02-12 00:25:04 -0800706 if (!ret) {
707 node = of_find_node_by_path(path);
708 if (!node)
709 pr_err("find target, node: %pOF, path '%s' not found\n",
710 info_node, path);
711 return node;
712 }
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200713
Frank Rowande547c002018-02-12 00:25:04 -0800714 pr_err("find target, node: %pOF, no target property\n", info_node);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200715
716 return NULL;
717}
718
719/**
Frank Rowand0290c4c2017-10-17 16:36:23 -0700720 * init_overlay_changeset() - initialize overlay changeset from overlay tree
Frank Rowand39a751a2018-02-12 00:19:42 -0800721 * @ovcs: Overlay changeset to build
Frank Rowand48d499b2021-04-08 15:45:08 -0500722 * @fdt: base of memory allocated to hold aligned FDT that was unflattened to create @tree
723 * @tree: Contains the overlay fragments and overlay fixup nodes
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200724 *
Frank Rowand0290c4c2017-10-17 16:36:23 -0700725 * Initialize @ovcs. Populate @ovcs->fragments with node information from
726 * the top level of @tree. The relevant top level nodes are the fragment
727 * nodes and the __symbols__ node. Any other top level node will be ignored.
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200728 *
Rob Herring8c8239c2021-03-25 10:47:12 -0600729 * Return: 0 on success, -ENOMEM if memory allocation failure, -EINVAL if error
Frank Rowand61b4de42017-10-17 16:36:25 -0700730 * detected in @tree, or -ENOSPC if idr_alloc() error.
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200731 */
Frank Rowand0290c4c2017-10-17 16:36:23 -0700732static int init_overlay_changeset(struct overlay_changeset *ovcs,
Frank Rowand39a751a2018-02-12 00:19:42 -0800733 const void *fdt, struct device_node *tree)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200734{
Frank Rowand61b4de42017-10-17 16:36:25 -0700735 struct device_node *node, *overlay_node;
Frank Rowand0290c4c2017-10-17 16:36:23 -0700736 struct fragment *fragment;
737 struct fragment *fragments;
Geert Uytterhoeven1352f092017-12-05 16:27:02 +0100738 int cnt, id, ret;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200739
Frank Rowand24789c52017-10-17 16:36:26 -0700740 /*
741 * Warn for some issues. Can not return -EINVAL for these until
742 * of_unittest_apply_overlay() is fixed to pass these checks.
743 */
744 if (!of_node_check_flag(tree, OF_DYNAMIC))
745 pr_debug("%s() tree is not dynamic\n", __func__);
746
747 if (!of_node_check_flag(tree, OF_DETACHED))
748 pr_debug("%s() tree is not detached\n", __func__);
749
750 if (!of_node_is_root(tree))
751 pr_debug("%s() tree is not root\n", __func__);
752
Frank Rowande0a58f32017-10-17 16:36:31 -0700753 ovcs->overlay_tree = tree;
Frank Rowand39a751a2018-02-12 00:19:42 -0800754 ovcs->fdt = fdt;
Frank Rowande0a58f32017-10-17 16:36:31 -0700755
Frank Rowand61b4de42017-10-17 16:36:25 -0700756 INIT_LIST_HEAD(&ovcs->ovcs_list);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200757
Frank Rowand61b4de42017-10-17 16:36:25 -0700758 of_changeset_init(&ovcs->cset);
759
Geert Uytterhoeven1352f092017-12-05 16:27:02 +0100760 id = idr_alloc(&ovcs_idr, ovcs, 1, 0, GFP_KERNEL);
761 if (id <= 0)
762 return id;
Frank Rowand61b4de42017-10-17 16:36:25 -0700763
764 cnt = 0;
765
766 /* fragment nodes */
767 for_each_child_of_node(tree, node) {
768 overlay_node = of_get_child_by_name(node, "__overlay__");
769 if (overlay_node) {
770 cnt++;
771 of_node_put(overlay_node);
772 }
773 }
774
775 node = of_get_child_by_name(tree, "__symbols__");
776 if (node) {
Frank Rowandd1651b02017-07-19 09:25:22 -0700777 cnt++;
Frank Rowand61b4de42017-10-17 16:36:25 -0700778 of_node_put(node);
779 }
Frank Rowandd1651b02017-07-19 09:25:22 -0700780
Frank Rowand0290c4c2017-10-17 16:36:23 -0700781 fragments = kcalloc(cnt, sizeof(*fragments), GFP_KERNEL);
Frank Rowand61b4de42017-10-17 16:36:25 -0700782 if (!fragments) {
783 ret = -ENOMEM;
784 goto err_free_idr;
785 }
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200786
787 cnt = 0;
788 for_each_child_of_node(tree, node) {
Geert Uytterhoeven35e691e2017-12-08 14:13:02 +0100789 overlay_node = of_get_child_by_name(node, "__overlay__");
Geert Uytterhoeven589b7542017-12-08 14:13:03 +0100790 if (!overlay_node)
791 continue;
Geert Uytterhoeven6de67de2017-11-28 09:26:33 +0100792
Geert Uytterhoeven589b7542017-12-08 14:13:03 +0100793 fragment = &fragments[cnt];
794 fragment->overlay = overlay_node;
Frank Rowand6b4955b2018-10-04 20:28:08 -0700795 fragment->target = find_target(node);
Geert Uytterhoeven589b7542017-12-08 14:13:03 +0100796 if (!fragment->target) {
797 of_node_put(fragment->overlay);
798 ret = -EINVAL;
kernel test robotc4d74f02021-03-22 19:21:39 +0100799 of_node_put(node);
Geert Uytterhoeven589b7542017-12-08 14:13:03 +0100800 goto err_free_fragments;
Frank Rowand61b4de42017-10-17 16:36:25 -0700801 }
Geert Uytterhoeven589b7542017-12-08 14:13:03 +0100802
803 cnt++;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200804 }
805
Frank Rowand3912b792017-10-17 16:36:30 -0700806 /*
807 * if there is a symbols fragment in ovcs->fragments[i] it is
808 * the final element in the array
809 */
Frank Rowandd1651b02017-07-19 09:25:22 -0700810 node = of_get_child_by_name(tree, "__symbols__");
811 if (node) {
Frank Rowand3912b792017-10-17 16:36:30 -0700812 ovcs->symbols_fragment = 1;
Frank Rowand0290c4c2017-10-17 16:36:23 -0700813 fragment = &fragments[cnt];
814 fragment->overlay = node;
815 fragment->target = of_find_node_by_path("/__symbols__");
Frank Rowandd1651b02017-07-19 09:25:22 -0700816
Frank Rowand0290c4c2017-10-17 16:36:23 -0700817 if (!fragment->target) {
Frank Rowand4ee7c0d2017-10-19 14:38:11 -0700818 pr_err("symbols in overlay, but not in live tree\n");
Frank Rowand61b4de42017-10-17 16:36:25 -0700819 ret = -EINVAL;
820 goto err_free_fragments;
Frank Rowandd1651b02017-07-19 09:25:22 -0700821 }
822
823 cnt++;
824 }
825
Frank Rowandbbed8792017-10-17 16:36:22 -0700826 if (!cnt) {
Frank Rowand39a751a2018-02-12 00:19:42 -0800827 pr_err("no fragments or symbols in overlay\n");
Frank Rowand61b4de42017-10-17 16:36:25 -0700828 ret = -EINVAL;
829 goto err_free_fragments;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200830 }
831
Geert Uytterhoeven1352f092017-12-05 16:27:02 +0100832 ovcs->id = id;
Frank Rowand0290c4c2017-10-17 16:36:23 -0700833 ovcs->count = cnt;
834 ovcs->fragments = fragments;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200835
836 return 0;
Frank Rowand61b4de42017-10-17 16:36:25 -0700837
Frank Rowand61b4de42017-10-17 16:36:25 -0700838err_free_fragments:
839 kfree(fragments);
840err_free_idr:
Geert Uytterhoeven1352f092017-12-05 16:27:02 +0100841 idr_remove(&ovcs_idr, id);
Frank Rowand61b4de42017-10-17 16:36:25 -0700842
Frank Rowand24789c52017-10-17 16:36:26 -0700843 pr_err("%s() failed, ret = %d\n", __func__, ret);
844
Frank Rowand61b4de42017-10-17 16:36:25 -0700845 return ret;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200846}
847
Frank Rowand61b4de42017-10-17 16:36:25 -0700848static void free_overlay_changeset(struct overlay_changeset *ovcs)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200849{
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200850 int i;
851
Geert Uytterhoeven1352f092017-12-05 16:27:02 +0100852 if (ovcs->cset.entries.next)
853 of_changeset_destroy(&ovcs->cset);
Frank Rowand61b4de42017-10-17 16:36:25 -0700854
855 if (ovcs->id)
856 idr_remove(&ovcs_idr, ovcs->id);
857
858 for (i = 0; i < ovcs->count; i++) {
Frank Rowand0290c4c2017-10-17 16:36:23 -0700859 of_node_put(ovcs->fragments[i].target);
860 of_node_put(ovcs->fragments[i].overlay);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200861 }
Frank Rowand0290c4c2017-10-17 16:36:23 -0700862 kfree(ovcs->fragments);
Frank Rowand39a751a2018-02-12 00:19:42 -0800863 /*
Jan Kiszka83ef4772018-04-26 13:00:30 +0200864 * There should be no live pointers into ovcs->overlay_tree and
865 * ovcs->fdt due to the policy that overlay notifiers are not allowed
866 * to retain pointers into the overlay devicetree.
Frank Rowand39a751a2018-02-12 00:19:42 -0800867 */
Jan Kiszka83ef4772018-04-26 13:00:30 +0200868 kfree(ovcs->overlay_tree);
869 kfree(ovcs->fdt);
Frank Rowand61b4de42017-10-17 16:36:25 -0700870 kfree(ovcs);
871}
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200872
Frank Rowand39a751a2018-02-12 00:19:42 -0800873/*
874 * internal documentation
875 *
Frank Rowand0290c4c2017-10-17 16:36:23 -0700876 * of_overlay_apply() - Create and apply an overlay changeset
Frank Rowand48d499b2021-04-08 15:45:08 -0500877 * @fdt: base of memory allocated to hold the aligned FDT
Frank Rowand0290c4c2017-10-17 16:36:23 -0700878 * @tree: Expanded overlay device tree
Frank Rowand24789c52017-10-17 16:36:26 -0700879 * @ovcs_id: Pointer to overlay changeset id
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200880 *
Frank Rowand24789c52017-10-17 16:36:26 -0700881 * Creates and applies an overlay changeset.
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200882 *
Frank Rowand24789c52017-10-17 16:36:26 -0700883 * If an error occurs in a pre-apply notifier, then no changes are made
884 * to the device tree.
885 *
886
887 * A non-zero return value will not have created the changeset if error is from:
888 * - parameter checks
889 * - building the changeset
Geert Uytterhoevene9d92e42017-11-28 09:25:23 +0100890 * - overlay changeset pre-apply notifier
Frank Rowand24789c52017-10-17 16:36:26 -0700891 *
892 * If an error is returned by an overlay changeset pre-apply notifier
893 * then no further overlay changeset pre-apply notifier will be called.
894 *
895 * A non-zero return value will have created the changeset if error is from:
896 * - overlay changeset entry notifier
Geert Uytterhoevene9d92e42017-11-28 09:25:23 +0100897 * - overlay changeset post-apply notifier
Frank Rowand24789c52017-10-17 16:36:26 -0700898 *
899 * If an error is returned by an overlay changeset post-apply notifier
900 * then no further overlay changeset post-apply notifier will be called.
901 *
902 * If more than one notifier returns an error, then the last notifier
903 * error to occur is returned.
904 *
905 * If an error occurred while applying the overlay changeset, then an
906 * attempt is made to revert any changes that were made to the
907 * device tree. If there were any errors during the revert attempt
908 * then the state of the device tree can not be determined, and any
909 * following attempt to apply or remove an overlay changeset will be
910 * refused.
911 *
912 * Returns 0 on success, or a negative error number. Overlay changeset
913 * id is returned to *ovcs_id.
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200914 */
Frank Rowand24789c52017-10-17 16:36:26 -0700915
Frank Rowand39a751a2018-02-12 00:19:42 -0800916static int of_overlay_apply(const void *fdt, struct device_node *tree,
917 int *ovcs_id)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200918{
Frank Rowand0290c4c2017-10-17 16:36:23 -0700919 struct overlay_changeset *ovcs;
Frank Rowand24789c52017-10-17 16:36:26 -0700920 int ret = 0, ret_revert, ret_tmp;
921
Frank Rowand39a751a2018-02-12 00:19:42 -0800922 /*
923 * As of this point, fdt and tree belong to the overlay changeset.
924 * overlay changeset code is responsible for freeing them.
925 */
Frank Rowand24789c52017-10-17 16:36:26 -0700926
927 if (devicetree_corrupt()) {
928 pr_err("devicetree state suspect, refuse to apply overlay\n");
Frank Rowand39a751a2018-02-12 00:19:42 -0800929 kfree(fdt);
930 kfree(tree);
Frank Rowand24789c52017-10-17 16:36:26 -0700931 ret = -EBUSY;
932 goto out;
933 }
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200934
Frank Rowand0290c4c2017-10-17 16:36:23 -0700935 ovcs = kzalloc(sizeof(*ovcs), GFP_KERNEL);
Frank Rowand24789c52017-10-17 16:36:26 -0700936 if (!ovcs) {
Frank Rowand39a751a2018-02-12 00:19:42 -0800937 kfree(fdt);
938 kfree(tree);
Frank Rowand24789c52017-10-17 16:36:26 -0700939 ret = -ENOMEM;
940 goto out;
941 }
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200942
Frank Rowandf948d6d2017-10-17 16:36:29 -0700943 of_overlay_mutex_lock();
Geert Uytterhoeven5e474812017-12-05 16:27:03 +0100944 mutex_lock(&of_mutex);
Frank Rowandf948d6d2017-10-17 16:36:29 -0700945
946 ret = of_resolve_phandles(tree);
947 if (ret)
Frank Rowand39a751a2018-02-12 00:19:42 -0800948 goto err_free_tree;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200949
Frank Rowand39a751a2018-02-12 00:19:42 -0800950 ret = init_overlay_changeset(ovcs, fdt, tree);
Frank Rowand24789c52017-10-17 16:36:26 -0700951 if (ret)
Frank Rowand39a751a2018-02-12 00:19:42 -0800952 goto err_free_tree;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200953
Frank Rowand39a751a2018-02-12 00:19:42 -0800954 /*
955 * after overlay_notify(), ovcs->overlay_tree related pointers may have
956 * leaked to drivers, so can not kfree() tree, aka ovcs->overlay_tree;
Frank Rowand48d499b2021-04-08 15:45:08 -0500957 * and can not free memory containing aligned fdt. The aligned fdt
958 * is contained within the memory at ovcs->fdt, possibly at an offset
959 * from ovcs->fdt.
Frank Rowand39a751a2018-02-12 00:19:42 -0800960 */
Frank Rowand0290c4c2017-10-17 16:36:23 -0700961 ret = overlay_notify(ovcs, OF_OVERLAY_PRE_APPLY);
Frank Rowand24789c52017-10-17 16:36:26 -0700962 if (ret) {
963 pr_err("overlay changeset pre-apply notify error %d\n", ret);
Frank Rowand61b4de42017-10-17 16:36:25 -0700964 goto err_free_overlay_changeset;
Alan Tull39a842e2016-11-01 14:14:22 -0500965 }
966
Frank Rowand0290c4c2017-10-17 16:36:23 -0700967 ret = build_changeset(ovcs);
968 if (ret)
Frank Rowand61b4de42017-10-17 16:36:25 -0700969 goto err_free_overlay_changeset;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200970
Frank Rowand24789c52017-10-17 16:36:26 -0700971 ret_revert = 0;
972 ret = __of_changeset_apply_entries(&ovcs->cset, &ret_revert);
973 if (ret) {
974 if (ret_revert) {
975 pr_debug("overlay changeset revert error %d\n",
976 ret_revert);
977 devicetree_state_flags |= DTSF_APPLY_FAIL;
978 }
Frank Rowand61b4de42017-10-17 16:36:25 -0700979 goto err_free_overlay_changeset;
Frank Rowand24789c52017-10-17 16:36:26 -0700980 }
Rob Herring606ad422016-06-15 08:32:18 -0500981
Geert Uytterhoeven6de67de2017-11-28 09:26:33 +0100982 ret = __of_changeset_apply_notify(&ovcs->cset);
983 if (ret)
Frank Rowanda15e8242018-10-04 20:33:35 -0700984 pr_err("overlay apply changeset entry notify error %d\n", ret);
Geert Uytterhoeven6de67de2017-11-28 09:26:33 +0100985 /* notify failure is not fatal, continue */
986
Frank Rowand0290c4c2017-10-17 16:36:23 -0700987 list_add_tail(&ovcs->ovcs_list, &ovcs_list);
Frank Rowand24789c52017-10-17 16:36:26 -0700988 *ovcs_id = ovcs->id;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200989
Frank Rowand24789c52017-10-17 16:36:26 -0700990 ret_tmp = overlay_notify(ovcs, OF_OVERLAY_POST_APPLY);
991 if (ret_tmp) {
992 pr_err("overlay changeset post-apply notify error %d\n",
993 ret_tmp);
994 if (!ret)
995 ret = ret_tmp;
996 }
Alan Tull39a842e2016-11-01 14:14:22 -0500997
Geert Uytterhoeven5e474812017-12-05 16:27:03 +0100998 goto out_unlock;
Frank Rowandf948d6d2017-10-17 16:36:29 -0700999
Frank Rowand39a751a2018-02-12 00:19:42 -08001000err_free_tree:
1001 kfree(fdt);
1002 kfree(tree);
1003
Frank Rowand61b4de42017-10-17 16:36:25 -07001004err_free_overlay_changeset:
1005 free_overlay_changeset(ovcs);
1006
Geert Uytterhoeven5e474812017-12-05 16:27:03 +01001007out_unlock:
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001008 mutex_unlock(&of_mutex);
Geert Uytterhoeven5e474812017-12-05 16:27:03 +01001009 of_overlay_mutex_unlock();
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001010
Frank Rowand24789c52017-10-17 16:36:26 -07001011out:
1012 pr_debug("%s() err=%d\n", __func__, ret);
1013
Frank Rowand0290c4c2017-10-17 16:36:23 -07001014 return ret;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001015}
Frank Rowand39a751a2018-02-12 00:19:42 -08001016
1017int of_overlay_fdt_apply(const void *overlay_fdt, u32 overlay_fdt_size,
1018 int *ovcs_id)
1019{
Frank Rowand48d499b2021-04-08 15:45:08 -05001020 void *new_fdt;
1021 void *new_fdt_align;
Frank Rowand39a751a2018-02-12 00:19:42 -08001022 int ret;
1023 u32 size;
Frank Rowand649cab52021-04-04 22:28:45 -05001024 struct device_node *overlay_root = NULL;
Frank Rowand39a751a2018-02-12 00:19:42 -08001025
1026 *ovcs_id = 0;
Frank Rowand39a751a2018-02-12 00:19:42 -08001027
1028 if (overlay_fdt_size < sizeof(struct fdt_header) ||
1029 fdt_check_header(overlay_fdt)) {
1030 pr_err("Invalid overlay_fdt header\n");
1031 return -EINVAL;
1032 }
1033
1034 size = fdt_totalsize(overlay_fdt);
1035 if (overlay_fdt_size < size)
1036 return -EINVAL;
1037
1038 /*
1039 * Must create permanent copy of FDT because of_fdt_unflatten_tree()
1040 * will create pointers to the passed in FDT in the unflattened tree.
1041 */
Frank Rowand48d499b2021-04-08 15:45:08 -05001042 new_fdt = kmalloc(size + FDT_ALIGN_SIZE, GFP_KERNEL);
Frank Rowand39a751a2018-02-12 00:19:42 -08001043 if (!new_fdt)
1044 return -ENOMEM;
1045
Frank Rowand48d499b2021-04-08 15:45:08 -05001046 new_fdt_align = PTR_ALIGN(new_fdt, FDT_ALIGN_SIZE);
1047 memcpy(new_fdt_align, overlay_fdt, size);
1048
1049 of_fdt_unflatten_tree(new_fdt_align, NULL, &overlay_root);
Frank Rowand39a751a2018-02-12 00:19:42 -08001050 if (!overlay_root) {
1051 pr_err("unable to unflatten overlay_fdt\n");
1052 ret = -EINVAL;
1053 goto out_free_new_fdt;
1054 }
1055
1056 ret = of_overlay_apply(new_fdt, overlay_root, ovcs_id);
1057 if (ret < 0) {
1058 /*
1059 * new_fdt and overlay_root now belong to the overlay
1060 * changeset.
1061 * overlay changeset code is responsible for freeing them.
1062 */
1063 goto out;
1064 }
1065
1066 return 0;
1067
1068
1069out_free_new_fdt:
1070 kfree(new_fdt);
1071
1072out:
1073 return ret;
1074}
1075EXPORT_SYMBOL_GPL(of_overlay_fdt_apply);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001076
Frank Rowand646afc42017-10-17 16:36:21 -07001077/*
Frank Rowand0290c4c2017-10-17 16:36:23 -07001078 * Find @np in @tree.
1079 *
1080 * Returns 1 if @np is @tree or is contained in @tree, else 0
Frank Rowand646afc42017-10-17 16:36:21 -07001081 */
Frank Rowand0290c4c2017-10-17 16:36:23 -07001082static int find_node(struct device_node *tree, struct device_node *np)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001083{
1084 struct device_node *child;
1085
Frank Rowand0290c4c2017-10-17 16:36:23 -07001086 if (tree == np)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001087 return 1;
1088
1089 for_each_child_of_node(tree, child) {
Frank Rowand0290c4c2017-10-17 16:36:23 -07001090 if (find_node(child, np)) {
Julia Lawall001cf502015-10-22 11:02:48 +02001091 of_node_put(child);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001092 return 1;
Julia Lawall001cf502015-10-22 11:02:48 +02001093 }
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001094 }
1095
1096 return 0;
1097}
1098
Frank Rowand646afc42017-10-17 16:36:21 -07001099/*
Frank Rowand87f242c2017-10-17 16:36:27 -07001100 * Is @remove_ce_node a child of, a parent of, or the same as any
Frank Rowand0290c4c2017-10-17 16:36:23 -07001101 * node in an overlay changeset more topmost than @remove_ovcs?
1102 *
1103 * Returns 1 if found, else 0
Frank Rowand646afc42017-10-17 16:36:21 -07001104 */
Frank Rowand87f242c2017-10-17 16:36:27 -07001105static int node_overlaps_later_cs(struct overlay_changeset *remove_ovcs,
1106 struct device_node *remove_ce_node)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001107{
Frank Rowand0290c4c2017-10-17 16:36:23 -07001108 struct overlay_changeset *ovcs;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001109 struct of_changeset_entry *ce;
1110
Frank Rowand0290c4c2017-10-17 16:36:23 -07001111 list_for_each_entry_reverse(ovcs, &ovcs_list, ovcs_list) {
1112 if (ovcs == remove_ovcs)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001113 break;
1114
Frank Rowand0290c4c2017-10-17 16:36:23 -07001115 list_for_each_entry(ce, &ovcs->cset.entries, node) {
Frank Rowand87f242c2017-10-17 16:36:27 -07001116 if (find_node(ce->np, remove_ce_node)) {
1117 pr_err("%s: #%d overlaps with #%d @%pOF\n",
Frank Rowand0290c4c2017-10-17 16:36:23 -07001118 __func__, remove_ovcs->id, ovcs->id,
Frank Rowand87f242c2017-10-17 16:36:27 -07001119 remove_ce_node);
1120 return 1;
1121 }
1122 if (find_node(remove_ce_node, ce->np)) {
1123 pr_err("%s: #%d overlaps with #%d @%pOF\n",
1124 __func__, remove_ovcs->id, ovcs->id,
1125 remove_ce_node);
Frank Rowand0290c4c2017-10-17 16:36:23 -07001126 return 1;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001127 }
1128 }
1129 }
1130
Frank Rowand0290c4c2017-10-17 16:36:23 -07001131 return 0;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001132}
1133
1134/*
1135 * We can safely remove the overlay only if it's the top-most one.
1136 * Newly applied overlays are inserted at the tail of the overlay list,
1137 * so a top most overlay is the one that is closest to the tail.
1138 *
1139 * The topmost check is done by exploiting this property. For each
1140 * affected device node in the log list we check if this overlay is
1141 * the one closest to the tail. If another overlay has affected this
1142 * device node and is closest to the tail, then removal is not permited.
1143 */
Frank Rowand0290c4c2017-10-17 16:36:23 -07001144static int overlay_removal_is_ok(struct overlay_changeset *remove_ovcs)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001145{
Frank Rowand0290c4c2017-10-17 16:36:23 -07001146 struct of_changeset_entry *remove_ce;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001147
Frank Rowand0290c4c2017-10-17 16:36:23 -07001148 list_for_each_entry(remove_ce, &remove_ovcs->cset.entries, node) {
Frank Rowand87f242c2017-10-17 16:36:27 -07001149 if (node_overlaps_later_cs(remove_ovcs, remove_ce->np)) {
Frank Rowand0290c4c2017-10-17 16:36:23 -07001150 pr_err("overlay #%d is not topmost\n", remove_ovcs->id);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001151 return 0;
1152 }
1153 }
1154
1155 return 1;
1156}
1157
1158/**
Frank Rowand0290c4c2017-10-17 16:36:23 -07001159 * of_overlay_remove() - Revert and free an overlay changeset
Frank Rowand24789c52017-10-17 16:36:26 -07001160 * @ovcs_id: Pointer to overlay changeset id
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001161 *
Frank Rowand24789c52017-10-17 16:36:26 -07001162 * Removes an overlay if it is permissible. @ovcs_id was previously returned
Geert Uytterhoevena5142662018-03-09 11:44:47 +01001163 * by of_overlay_fdt_apply().
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001164 *
Frank Rowand24789c52017-10-17 16:36:26 -07001165 * If an error occurred while attempting to revert the overlay changeset,
1166 * then an attempt is made to re-apply any changeset entry that was
1167 * reverted. If an error occurs on re-apply then the state of the device
1168 * tree can not be determined, and any following attempt to apply or remove
1169 * an overlay changeset will be refused.
1170 *
1171 * A non-zero return value will not revert the changeset if error is from:
1172 * - parameter checks
Geert Uytterhoevene9d92e42017-11-28 09:25:23 +01001173 * - overlay changeset pre-remove notifier
Frank Rowand24789c52017-10-17 16:36:26 -07001174 * - overlay changeset entry revert
1175 *
1176 * If an error is returned by an overlay changeset pre-remove notifier
1177 * then no further overlay changeset pre-remove notifier will be called.
1178 *
1179 * If more than one notifier returns an error, then the last notifier
1180 * error to occur is returned.
1181 *
1182 * A non-zero return value will revert the changeset if error is from:
1183 * - overlay changeset entry notifier
Geert Uytterhoevene9d92e42017-11-28 09:25:23 +01001184 * - overlay changeset post-remove notifier
Frank Rowand24789c52017-10-17 16:36:26 -07001185 *
1186 * If an error is returned by an overlay changeset post-remove notifier
1187 * then no further overlay changeset post-remove notifier will be called.
1188 *
Rob Herringaed43492021-04-21 10:39:36 -05001189 * Return: 0 on success, or a negative error number. *@ovcs_id is set to
Frank Rowand24789c52017-10-17 16:36:26 -07001190 * zero after reverting the changeset, even if a subsequent error occurs.
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001191 */
Frank Rowand24789c52017-10-17 16:36:26 -07001192int of_overlay_remove(int *ovcs_id)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001193{
Frank Rowand0290c4c2017-10-17 16:36:23 -07001194 struct overlay_changeset *ovcs;
Frank Rowand24789c52017-10-17 16:36:26 -07001195 int ret, ret_apply, ret_tmp;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001196
Frank Rowand24789c52017-10-17 16:36:26 -07001197 if (devicetree_corrupt()) {
1198 pr_err("suspect devicetree state, refuse to remove overlay\n");
Frank Rowand0290c4c2017-10-17 16:36:23 -07001199 ret = -EBUSY;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001200 goto out;
1201 }
1202
Frank Rowand24789c52017-10-17 16:36:26 -07001203 mutex_lock(&of_mutex);
1204
1205 ovcs = idr_find(&ovcs_idr, *ovcs_id);
1206 if (!ovcs) {
1207 ret = -ENODEV;
1208 pr_err("remove: Could not find overlay #%d\n", *ovcs_id);
1209 goto out_unlock;
1210 }
1211
1212 if (!overlay_removal_is_ok(ovcs)) {
1213 ret = -EBUSY;
1214 goto out_unlock;
1215 }
1216
1217 ret = overlay_notify(ovcs, OF_OVERLAY_PRE_REMOVE);
1218 if (ret) {
1219 pr_err("overlay changeset pre-remove notify error %d\n", ret);
1220 goto out_unlock;
1221 }
Frank Rowand61b4de42017-10-17 16:36:25 -07001222
Frank Rowand0290c4c2017-10-17 16:36:23 -07001223 list_del(&ovcs->ovcs_list);
Frank Rowand61b4de42017-10-17 16:36:25 -07001224
Frank Rowand24789c52017-10-17 16:36:26 -07001225 ret_apply = 0;
1226 ret = __of_changeset_revert_entries(&ovcs->cset, &ret_apply);
1227 if (ret) {
1228 if (ret_apply)
1229 devicetree_state_flags |= DTSF_REVERT_FAIL;
1230 goto out_unlock;
Frank Rowand24789c52017-10-17 16:36:26 -07001231 }
Frank Rowand61b4de42017-10-17 16:36:25 -07001232
Geert Uytterhoeven6de67de2017-11-28 09:26:33 +01001233 ret = __of_changeset_revert_notify(&ovcs->cset);
1234 if (ret)
Frank Rowanda15e8242018-10-04 20:33:35 -07001235 pr_err("overlay remove changeset entry notify error %d\n", ret);
Geert Uytterhoeven6de67de2017-11-28 09:26:33 +01001236 /* notify failure is not fatal, continue */
1237
Frank Rowand24789c52017-10-17 16:36:26 -07001238 *ovcs_id = 0;
1239
1240 ret_tmp = overlay_notify(ovcs, OF_OVERLAY_POST_REMOVE);
1241 if (ret_tmp) {
1242 pr_err("overlay changeset post-remove notify error %d\n",
1243 ret_tmp);
1244 if (!ret)
1245 ret = ret_tmp;
1246 }
Frank Rowand61b4de42017-10-17 16:36:25 -07001247
1248 free_overlay_changeset(ovcs);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001249
Frank Rowand24789c52017-10-17 16:36:26 -07001250out_unlock:
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001251 mutex_unlock(&of_mutex);
1252
Frank Rowand24789c52017-10-17 16:36:26 -07001253out:
1254 pr_debug("%s() err=%d\n", __func__, ret);
1255
Frank Rowand0290c4c2017-10-17 16:36:23 -07001256 return ret;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001257}
Frank Rowand0290c4c2017-10-17 16:36:23 -07001258EXPORT_SYMBOL_GPL(of_overlay_remove);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001259
1260/**
Frank Rowand0290c4c2017-10-17 16:36:23 -07001261 * of_overlay_remove_all() - Reverts and frees all overlay changesets
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001262 *
1263 * Removes all overlays from the system in the correct order.
1264 *
Rob Herring8c8239c2021-03-25 10:47:12 -06001265 * Return: 0 on success, or a negative error number
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001266 */
Frank Rowand0290c4c2017-10-17 16:36:23 -07001267int of_overlay_remove_all(void)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001268{
Frank Rowand0290c4c2017-10-17 16:36:23 -07001269 struct overlay_changeset *ovcs, *ovcs_n;
Frank Rowand61b4de42017-10-17 16:36:25 -07001270 int ret;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001271
1272 /* the tail of list is guaranteed to be safe to remove */
Frank Rowand0290c4c2017-10-17 16:36:23 -07001273 list_for_each_entry_safe_reverse(ovcs, ovcs_n, &ovcs_list, ovcs_list) {
Frank Rowand24789c52017-10-17 16:36:26 -07001274 ret = of_overlay_remove(&ovcs->id);
Frank Rowand61b4de42017-10-17 16:36:25 -07001275 if (ret)
1276 return ret;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001277 }
1278
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001279 return 0;
1280}
Frank Rowand0290c4c2017-10-17 16:36:23 -07001281EXPORT_SYMBOL_GPL(of_overlay_remove_all);