Skip to content

Commit bd817cb

Browse files
committed
dtoverlay: Adjust fixups if a phandle is deleted
Some overlays use boolean parameters as a way to delete a property. If that property contained a phandle value (i.e. if the source had the reference to a label on a node) then there will be a fixup that must be deleted, otherwise the kernel will fail to apply the overlay. Signed-off-by: Phil Elwell <[email protected]>
1 parent 4470261 commit bd817cb

File tree

1 file changed

+16
-3
lines changed

1 file changed

+16
-3
lines changed

dtmerge/dtoverlay.c

+16-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Copyright (c) 2016-2023 Raspberry Pi Ltd.
2+
Copyright (c) 2016-2025 Raspberry Pi Ltd.
33
All rights reserved.
44
55
Redistribution and use in source and binary forms, with or without
@@ -384,7 +384,7 @@ static int dtoverlay_set_node_name(DTBLOB_T *dtb, int node_off,
384384
int err = 0;
385385

386386
// Fixups and local-fixups both use node names, so this
387-
// function must be patch them up when a node is renamed
387+
// function must patch them up when a node is renamed
388388
// unless the fixups have already been applied.
389389
// Calculating a node's name is expensive, so only do it if
390390
// necessary. Since renaming a node can move things around,
@@ -1900,7 +1900,20 @@ int dtoverlay_override_one_target(int override_type,
19001900
case DTOVERRIDE_BOOLEAN:
19011901
case DTOVERRIDE_BOOLEAN_INV:
19021902
/* This is a boolean property (present->true, absent->false) */
1903-
if (override_int ^ (override_type == DTOVERRIDE_BOOLEAN_INV))
1903+
/* Either way, any fixups will need to be deleted */
1904+
fdt_getprop(dtb->fdt, node_off, prop_name, &prop_len);
1905+
if (prop_len > 0)
1906+
{
1907+
char cell_target_loc[DTOVERLAY_MAX_PATH];
1908+
int path_len;
1909+
fdt_get_path(dtb->fdt, node_off, cell_target_loc,
1910+
sizeof(cell_target_loc));
1911+
path_len = strlen(cell_target_loc);
1912+
snprintf(cell_target_loc + path_len, sizeof(cell_target_loc) - path_len, ":%s:%d", prop_name, target_off);
1913+
dtoverlay_delete_fixup(dtb, cell_target_loc);
1914+
}
1915+
1916+
if (!!override_int ^ (override_type == DTOVERRIDE_BOOLEAN_INV))
19041917
err = fdt_setprop(dtb->fdt, node_off, prop_name, NULL, 0);
19051918
else
19061919
{

0 commit comments

Comments
 (0)