|
1 | 1 | /*
|
2 |
| -Copyright (c) 2016-2023 Raspberry Pi Ltd. |
| 2 | +Copyright (c) 2016-2025 Raspberry Pi Ltd. |
3 | 3 | All rights reserved.
|
4 | 4 |
|
5 | 5 | 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,
|
384 | 384 | int err = 0;
|
385 | 385 |
|
386 | 386 | // 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 |
388 | 388 | // unless the fixups have already been applied.
|
389 | 389 | // Calculating a node's name is expensive, so only do it if
|
390 | 390 | // necessary. Since renaming a node can move things around,
|
@@ -1900,7 +1900,20 @@ int dtoverlay_override_one_target(int override_type,
|
1900 | 1900 | case DTOVERRIDE_BOOLEAN:
|
1901 | 1901 | case DTOVERRIDE_BOOLEAN_INV:
|
1902 | 1902 | /* 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)) |
1904 | 1917 | err = fdt_setprop(dtb->fdt, node_off, prop_name, NULL, 0);
|
1905 | 1918 | else
|
1906 | 1919 | {
|
|
0 commit comments