diff options
| author | Rob Herring <robh@kernel.org> | 2017-10-03 12:37:04 -0400 |
|---|---|---|
| committer | Rob Herring <robh@kernel.org> | 2017-10-03 16:03:47 -0400 |
| commit | 4201d057ea91c3d6efd2db65219bc91fae413bc2 (patch) | |
| tree | 8cb0f6ad01e4cb5d09c18d32931e7ea10a55df10 /scripts/dtc/libfdt | |
| parent | 4322323058f010274564006d61945187a15b6361 (diff) | |
scripts/dtc: Update to upstream version v1.4.5-3-gb1a60033c110
This adds the following commits from upstream:
b1a60033c110 tests: Add a test for overlays syntactic sugar
737b2df39cc8 overlay: Add syntactic sugar version of overlays
497432fd2131 checks: Use proper format modifier for size_t
22a65c5331c2 dtc: Bump version to v1.4.5
c575d8059fff Add fdtoverlay to .gitignore
b6a6f9490d19 fdtoverlay: Sanity check blob size
8c1eb1526d2d pylibfdt: Use Python2 explicitly
ee3d26f6960b checks: add interrupts property check
c1e7738988f5 checks: add gpio binding properties check
b3bbac02d5e3 checks: add phandle with arg property checks
fe50bd1ecc1d fdtget: Split out cell list display into a new function
62d812308d11 README: Add a note about test_tree1.dts
5bed86aee9e8 pylibfdt: Add support for fdt_subnode_offset()
46f31b65b3b3 pylibfdt: Add support for fdt_node_offset_by_phandle()
a3ae43723687 pylibfdt: Add support for fdt_parent_offset()
a198af80344c pylibfdt: Add support for fdt_get_phandle()
b9eba92ea50f tests: Return a failure code when any tests fail
155faf6cc209 pylibfdt: Use local pylibfdt module
50e5cd07f325 pylibfdt: Add a test for use of uint32_t
ab78860f09f5 pylibfdt: Add stdint include to fix uint32_t
36f511fb1113 tests: Add stacked overlay tests on fdtoverlay
1bb00655d3e5 fdt: Allow stacked overlays phandle references
a33c2247ac8d Introduce fdt_setprop_placeholder() method
0016f8c2aa32 dtc: change default phandles to ePAPR style instead of both
e3b9a9588a35 tests: fdtoverlay unit test
42409146f2db fdtoverlay: A tool that applies overlays
aae22722fc8d manual: Document missing options
13ce6e1c2fc4 dtc: fix sprintf() format string error, again
d990b8013889 Makefile: Fix build on MSYS2 and Cygwin
51f56dedf8ea Clean up shared library compile/link options
21a2bc896e3d Suppress expected error message in fdtdump test
2a42b14d0d03 dtc: check.c fix compile error
a10cb3c818d3 Fix get_node_by_path string equality check
548aea2c436a fdtdump: Discourage use of fdtdump
c2258841a785 fdtdump: Fix over-zealous version check
9067ee4be0e6 Fix a few whitespace and style nits
e56f2b07be38 pylibfdt: Use setup.py to build the swig file
896f1c133265 pylibfdt: Use Makefile constructs to implement NO_PYTHON
90db6d9989ca pylibfdt: Allow setup.py to operate stand-alone
e20d9658cd8f Add Coverity Scan support
b04a2cf08862 pylibfdt: Fix code style in setup.py
1c5170d3a466 pylibfdt: Rename libfdt.swig to libfdt.i
580a9f6c2880 Add a libfdt function to write a property placeholder
ab15256d8d02 pylibfdt: Use the call function to simplify the Makefile
9f2e3a3a1f19 pylibfdt: Use the correct libfdt version in the module
e91c652af215 pylibfdt: Enable installation of Python module
8a892fd85d94 pylibfdt: Allow building to be disabled
741cdff85d3e .travis.yml: Add builds with and without Python library prerequisites
14c4171f4f9a pylibfdt: Use package_dir to set the package directory
89a5062ab231 pylibfdt: Use environment to pass C flags and files
4e0e0d049757 pylibfdt: Allow pkg-config to be supplied in the environment
6afd7d9688f5 Correct typo: s/pylibgfdt/pylibfdt/
Signed-off-by: Rob Herring <robh@kernel.org>
Diffstat (limited to 'scripts/dtc/libfdt')
| -rw-r--r-- | scripts/dtc/libfdt/fdt_addresses.c | 96 | ||||
| -rw-r--r-- | scripts/dtc/libfdt/fdt_empty_tree.c | 1 | ||||
| -rw-r--r-- | scripts/dtc/libfdt/fdt_overlay.c | 861 | ||||
| -rw-r--r-- | scripts/dtc/libfdt/fdt_ro.c | 4 | ||||
| -rw-r--r-- | scripts/dtc/libfdt/fdt_rw.c | 24 | ||||
| -rw-r--r-- | scripts/dtc/libfdt/fdt_sw.c | 16 | ||||
| -rw-r--r-- | scripts/dtc/libfdt/fdt_wip.c | 4 | ||||
| -rw-r--r-- | scripts/dtc/libfdt/libfdt.h | 47 |
8 files changed, 1041 insertions, 12 deletions
diff --git a/scripts/dtc/libfdt/fdt_addresses.c b/scripts/dtc/libfdt/fdt_addresses.c new file mode 100644 index 000000000000..eff4dbcc729d --- /dev/null +++ b/scripts/dtc/libfdt/fdt_addresses.c | |||
| @@ -0,0 +1,96 @@ | |||
| 1 | /* | ||
| 2 | * libfdt - Flat Device Tree manipulation | ||
| 3 | * Copyright (C) 2014 David Gibson <david@gibson.dropbear.id.au> | ||
| 4 | * | ||
| 5 | * libfdt is dual licensed: you can use it either under the terms of | ||
| 6 | * the GPL, or the BSD license, at your option. | ||
| 7 | * | ||
| 8 | * a) This library is free software; you can redistribute it and/or | ||
| 9 | * modify it under the terms of the GNU General Public License as | ||
| 10 | * published by the Free Software Foundation; either version 2 of the | ||
| 11 | * License, or (at your option) any later version. | ||
| 12 | * | ||
| 13 | * This library is distributed in the hope that it will be useful, | ||
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 16 | * GNU General Public License for more details. | ||
| 17 | * | ||
| 18 | * You should have received a copy of the GNU General Public | ||
| 19 | * License along with this library; if not, write to the Free | ||
| 20 | * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, | ||
| 21 | * MA 02110-1301 USA | ||
| 22 | * | ||
| 23 | * Alternatively, | ||
| 24 | * | ||
| 25 | * b) Redistribution and use in source and binary forms, with or | ||
| 26 | * without modification, are permitted provided that the following | ||
| 27 | * conditions are met: | ||
| 28 | * | ||
| 29 | * 1. Redistributions of source code must retain the above | ||
| 30 | * copyright notice, this list of conditions and the following | ||
| 31 | * disclaimer. | ||
| 32 | * 2. Redistributions in binary form must reproduce the above | ||
| 33 | * copyright notice, this list of conditions and the following | ||
| 34 | * disclaimer in the documentation and/or other materials | ||
| 35 | * provided with the distribution. | ||
| 36 | * | ||
| 37 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND | ||
| 38 | * CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, | ||
| 39 | * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF | ||
| 40 | * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
| 41 | * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR | ||
| 42 | * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | ||
| 43 | * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT | ||
| 44 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
| 45 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
| 46 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN | ||
| 47 | * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR | ||
| 48 | * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, | ||
| 49 | * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
| 50 | */ | ||
| 51 | #include "libfdt_env.h" | ||
| 52 | |||
| 53 | #include <fdt.h> | ||
| 54 | #include <libfdt.h> | ||
| 55 | |||
| 56 | #include "libfdt_internal.h" | ||
| 57 | |||
| 58 | int fdt_address_cells(const void *fdt, int nodeoffset) | ||
| 59 | { | ||
| 60 | const fdt32_t *ac; | ||
| 61 | int val; | ||
| 62 | int len; | ||
| 63 | |||
| 64 | ac = fdt_getprop(fdt, nodeoffset, "#address-cells", &len); | ||
| 65 | if (!ac) | ||
| 66 | return 2; | ||
| 67 | |||
| 68 | if (len != sizeof(*ac)) | ||
| 69 | return -FDT_ERR_BADNCELLS; | ||
| 70 | |||
| 71 | val = fdt32_to_cpu(*ac); | ||
| 72 | if ((val <= 0) || (val > FDT_MAX_NCELLS)) | ||
| 73 | return -FDT_ERR_BADNCELLS; | ||
| 74 | |||
| 75 | return val; | ||
| 76 | } | ||
| 77 | |||
| 78 | int fdt_size_cells(const void *fdt, int nodeoffset) | ||
| 79 | { | ||
| 80 | const fdt32_t *sc; | ||
| 81 | int val; | ||
| 82 | int len; | ||
| 83 | |||
| 84 | sc = fdt_getprop(fdt, nodeoffset, "#size-cells", &len); | ||
| 85 | if (!sc) | ||
| 86 | return 2; | ||
| 87 | |||
| 88 | if (len != sizeof(*sc)) | ||
| 89 | return -FDT_ERR_BADNCELLS; | ||
| 90 | |||
| 91 | val = fdt32_to_cpu(*sc); | ||
| 92 | if ((val < 0) || (val > FDT_MAX_NCELLS)) | ||
| 93 | return -FDT_ERR_BADNCELLS; | ||
| 94 | |||
| 95 | return val; | ||
| 96 | } | ||
diff --git a/scripts/dtc/libfdt/fdt_empty_tree.c b/scripts/dtc/libfdt/fdt_empty_tree.c index f72d13b1d19c..f2ae9b77c285 100644 --- a/scripts/dtc/libfdt/fdt_empty_tree.c +++ b/scripts/dtc/libfdt/fdt_empty_tree.c | |||
| @@ -81,4 +81,3 @@ int fdt_create_empty_tree(void *buf, int bufsize) | |||
| 81 | 81 | ||
| 82 | return fdt_open_into(buf, buf, bufsize); | 82 | return fdt_open_into(buf, buf, bufsize); |
| 83 | } | 83 | } |
| 84 | |||
diff --git a/scripts/dtc/libfdt/fdt_overlay.c b/scripts/dtc/libfdt/fdt_overlay.c new file mode 100644 index 000000000000..bd81241e6658 --- /dev/null +++ b/scripts/dtc/libfdt/fdt_overlay.c | |||
| @@ -0,0 +1,861 @@ | |||
| 1 | #include "libfdt_env.h" | ||
| 2 | |||
| 3 | #include <fdt.h> | ||
| 4 | #include <libfdt.h> | ||
| 5 | |||
| 6 | #include "libfdt_internal.h" | ||
| 7 | |||
| 8 | /** | ||
| 9 | * overlay_get_target_phandle - retrieves the target phandle of a fragment | ||
| 10 | * @fdto: pointer to the device tree overlay blob | ||
| 11 | * @fragment: node offset of the fragment in the overlay | ||
| 12 | * | ||
| 13 | * overlay_get_target_phandle() retrieves the target phandle of an | ||
| 14 | * overlay fragment when that fragment uses a phandle (target | ||
| 15 | * property) instead of a path (target-path property). | ||
| 16 | * | ||
| 17 | * returns: | ||
| 18 | * the phandle pointed by the target property | ||
| 19 | * 0, if the phandle was not found | ||
| 20 | * -1, if the phandle was malformed | ||
| 21 | */ | ||
| 22 | static uint32_t overlay_get_target_phandle(const void *fdto, int fragment) | ||
| 23 | { | ||
| 24 | const fdt32_t *val; | ||
| 25 | int len; | ||
| 26 | |||
| 27 | val = fdt_getprop(fdto, fragment, "target", &len); | ||
| 28 | if (!val) | ||
| 29 | return 0; | ||
| 30 | |||
| 31 | if ((len != sizeof(*val)) || (fdt32_to_cpu(*val) == (uint32_t)-1)) | ||
| 32 | return (uint32_t)-1; | ||
| 33 | |||
| 34 | return fdt32_to_cpu(*val); | ||
| 35 | } | ||
| 36 | |||
| 37 | /** | ||
| 38 | * overlay_get_target - retrieves the offset of a fragment's target | ||
| 39 | * @fdt: Base device tree blob | ||
| 40 | * @fdto: Device tree overlay blob | ||
| 41 | * @fragment: node offset of the fragment in the overlay | ||
| 42 | * @pathp: pointer which receives the path of the target (or NULL) | ||
| 43 | * | ||
| 44 | * overlay_get_target() retrieves the target offset in the base | ||
| 45 | * device tree of a fragment, no matter how the actual targetting is | ||
| 46 | * done (through a phandle or a path) | ||
| 47 | * | ||
| 48 | * returns: | ||
| 49 | * the targetted node offset in the base device tree | ||
| 50 | * Negative error code on error | ||
| 51 | */ | ||
| 52 | static int overlay_get_target(const void *fdt, const void *fdto, | ||
| 53 | int fragment, char const **pathp) | ||
| 54 | { | ||
| 55 | uint32_t phandle; | ||
| 56 | const char *path = NULL; | ||
| 57 | int path_len = 0, ret; | ||
| 58 | |||
| 59 | /* Try first to do a phandle based lookup */ | ||
| 60 | phandle = overlay_get_target_phandle(fdto, fragment); | ||
| 61 | if (phandle == (uint32_t)-1) | ||
| 62 | return -FDT_ERR_BADPHANDLE; | ||
| 63 | |||
| 64 | /* no phandle, try path */ | ||
| 65 | if (!phandle) { | ||
| 66 | /* And then a path based lookup */ | ||
| 67 | path = fdt_getprop(fdto, fragment, "target-path", &path_len); | ||
| 68 | if (path) | ||
| 69 | ret = fdt_path_offset(fdt, path); | ||
| 70 | else | ||
| 71 | ret = path_len; | ||
| 72 | } else | ||
| 73 | ret = fdt_node_offset_by_phandle(fdt, phandle); | ||
| 74 | |||
| 75 | /* | ||
| 76 | * If we haven't found either a target or a | ||
| 77 | * target-path property in a node that contains a | ||
| 78 | * __overlay__ subnode (we wouldn't be called | ||
| 79 | * otherwise), consider it a improperly written | ||
| 80 | * overlay | ||
| 81 | */ | ||
| 82 | if (ret < 0 && path_len == -FDT_ERR_NOTFOUND) | ||
| 83 | ret = -FDT_ERR_BADOVERLAY; | ||
| 84 | |||
| 85 | /* return on error */ | ||
| 86 | if (ret < 0) | ||
| 87 | return ret; | ||
| 88 | |||
| 89 | /* return pointer to path (if available) */ | ||
| 90 | if (pathp) | ||
| 91 | *pathp = path ? path : NULL; | ||
| 92 | |||
| 93 | return ret; | ||
| 94 | } | ||
| 95 | |||
| 96 | /** | ||
| 97 | * overlay_phandle_add_offset - Increases a phandle by an offset | ||
| 98 | * @fdt: Base device tree blob | ||
| 99 | * @node: Device tree overlay blob | ||
| 100 | * @name: Name of the property to modify (phandle or linux,phandle) | ||
| 101 | * @delta: offset to apply | ||
| 102 | * | ||
| 103 | * overlay_phandle_add_offset() increments a node phandle by a given | ||
| 104 | * offset. | ||
| 105 | * | ||
| 106 | * returns: | ||
| 107 | * 0 on success. | ||
| 108 | * Negative error code on error | ||
| 109 | */ | ||
| 110 | static int overlay_phandle_add_offset(void *fdt, int node, | ||
| 111 | const char *name, uint32_t delta) | ||
| 112 | { | ||
| 113 | const fdt32_t *val; | ||
| 114 | uint32_t adj_val; | ||
| 115 | int len; | ||
| 116 | |||
| 117 | val = fdt_getprop(fdt, node, name, &len); | ||
| 118 | if (!val) | ||
| 119 | return len; | ||
| 120 | |||
| 121 | if (len != sizeof(*val)) | ||
| 122 | return -FDT_ERR_BADPHANDLE; | ||
| 123 | |||
| 124 | adj_val = fdt32_to_cpu(*val); | ||
| 125 | if ((adj_val + delta) < adj_val) | ||
| 126 | return -FDT_ERR_NOPHANDLES; | ||
| 127 | |||
| 128 | adj_val += delta; | ||
| 129 | if (adj_val == (uint32_t)-1) | ||
| 130 | return -FDT_ERR_NOPHANDLES; | ||
| 131 | |||
| 132 | return fdt_setprop_inplace_u32(fdt, node, name, adj_val); | ||
| 133 | } | ||
| 134 | |||
| 135 | /** | ||
| 136 | * overlay_adjust_node_phandles - Offsets the phandles of a node | ||
| 137 | * @fdto: Device tree overlay blob | ||
| 138 | * @node: Offset of the node we want to adjust | ||
| 139 | * @delta: Offset to shift the phandles of | ||
| 140 | * | ||
| 141 | * overlay_adjust_node_phandles() adds a constant to all the phandles | ||
| 142 | * of a given node. This is mainly use as part of the overlay | ||
| 143 | * application process, when we want to update all the overlay | ||
| 144 | * phandles to not conflict with the overlays of the base device tree. | ||
| 145 | * | ||
| 146 | * returns: | ||
| 147 | * 0 on success | ||
| 148 | * Negative error code on failure | ||
| 149 | */ | ||
| 150 | static int overlay_adjust_node_phandles(void *fdto, int node, | ||
| 151 | uint32_t delta) | ||
| 152 | { | ||
| 153 | int child; | ||
| 154 | int ret; | ||
| 155 | |||
| 156 | ret = overlay_phandle_add_offset(fdto, node, "phandle", delta); | ||
| 157 | if (ret && ret != -FDT_ERR_NOTFOUND) | ||
| 158 | return ret; | ||
| 159 | |||
| 160 | ret = overlay_phandle_add_offset(fdto, node, "linux,phandle", delta); | ||
| 161 | if (ret && ret != -FDT_ERR_NOTFOUND) | ||
| 162 | return ret; | ||
| 163 | |||
| 164 | fdt_for_each_subnode(child, fdto, node) { | ||
| 165 | ret = overlay_adjust_node_phandles(fdto, child, delta); | ||
| 166 | if (ret) | ||
| 167 | return ret; | ||
| 168 | } | ||
| 169 | |||
| 170 | return 0; | ||
| 171 | } | ||
| 172 | |||
| 173 | /** | ||
| 174 | * overlay_adjust_local_phandles - Adjust the phandles of a whole overlay | ||
| 175 | * @fdto: Device tree overlay blob | ||
| 176 | * @delta: Offset to shift the phandles of | ||
| 177 | * | ||
| 178 | * overlay_adjust_local_phandles() adds a constant to all the | ||
| 179 | * phandles of an overlay. This is mainly use as part of the overlay | ||
| 180 | * application process, when we want to update all the overlay | ||
| 181 | * phandles to not conflict with the overlays of the base device tree. | ||
| 182 | * | ||
| 183 | * returns: | ||
| 184 | * 0 on success | ||
| 185 | * Negative error code on failure | ||
| 186 | */ | ||
| 187 | static int overlay_adjust_local_phandles(void *fdto, uint32_t delta) | ||
| 188 | { | ||
| 189 | /* | ||
| 190 | * Start adjusting the phandles from the overlay root | ||
| 191 | */ | ||
| 192 | return overlay_adjust_node_phandles(fdto, 0, delta); | ||
| 193 | } | ||
| 194 | |||
| 195 | /** | ||
| 196 | * overlay_update_local_node_references - Adjust the overlay references | ||
| 197 | * @fdto: Device tree overlay blob | ||
| 198 | * @tree_node: Node offset of the node to operate on | ||
| 199 | * @fixup_node: Node offset of the matching local fixups node | ||
| 200 | * @delta: Offset to shift the phandles of | ||
| 201 | * | ||
| 202 | * overlay_update_local_nodes_references() update the phandles | ||
| 203 | * pointing to a node within the device tree overlay by adding a | ||
| 204 | * constant delta. | ||
| 205 | * | ||
| 206 | * This is mainly used as part of a device tree application process, | ||
| 207 | * where you want the device tree overlays phandles to not conflict | ||
| 208 | * with the ones from the base device tree before merging them. | ||
| 209 | * | ||
| 210 | * returns: | ||
| 211 | * 0 on success | ||
| 212 | * Negative error code on failure | ||
| 213 | */ | ||
| 214 | static int overlay_update_local_node_references(void *fdto, | ||
| 215 | int tree_node, | ||
| 216 | int fixup_node, | ||
| 217 | uint32_t delta) | ||
| 218 | { | ||
| 219 | int fixup_prop; | ||
| 220 | int fixup_child; | ||
| 221 | int ret; | ||
| 222 | |||
| 223 | fdt_for_each_property_offset(fixup_prop, fdto, fixup_node) { | ||
| 224 | const fdt32_t *fixup_val; | ||
| 225 | const char *tree_val; | ||
| 226 | const char *name; | ||
| 227 | int fixup_len; | ||
| 228 | int tree_len; | ||
| 229 | int i; | ||
| 230 | |||
| 231 | fixup_val = fdt_getprop_by_offset(fdto, fixup_prop, | ||
| 232 | &name, &fixup_len); | ||
| 233 | if (!fixup_val) | ||
| 234 | return fixup_len; | ||
| 235 | |||
| 236 | if (fixup_len % sizeof(uint32_t)) | ||
| 237 | return -FDT_ERR_BADOVERLAY; | ||
| 238 | |||
| 239 | tree_val = fdt_getprop(fdto, tree_node, name, &tree_len); | ||
| 240 | if (!tree_val) { | ||
| 241 | if (tree_len == -FDT_ERR_NOTFOUND) | ||
| 242 | return -FDT_ERR_BADOVERLAY; | ||
| 243 | |||
| 244 | return tree_len; | ||
| 245 | } | ||
| 246 | |||
| 247 | for (i = 0; i < (fixup_len / sizeof(uint32_t)); i++) { | ||
| 248 | fdt32_t adj_val; | ||
| 249 | uint32_t poffset; | ||
| 250 | |||
| 251 | poffset = fdt32_to_cpu(fixup_val[i]); | ||
| 252 | |||
| 253 | /* | ||
| 254 | * phandles to fixup can be unaligned. | ||
| 255 | * | ||
| 256 | * Use a memcpy for the architectures that do | ||
| 257 | * not support unaligned accesses. | ||
| 258 | */ | ||
| 259 | memcpy(&adj_val, tree_val + poffset, sizeof(adj_val)); | ||
| 260 | |||
| 261 | adj_val = cpu_to_fdt32(fdt32_to_cpu(adj_val) + delta); | ||
| 262 | |||
| 263 | ret = fdt_setprop_inplace_namelen_partial(fdto, | ||
| 264 | tree_node, | ||
| 265 | name, | ||
| 266 | strlen(name), | ||
| 267 | poffset, | ||
| 268 | &adj_val, | ||
| 269 | sizeof(adj_val)); | ||
| 270 | if (ret == -FDT_ERR_NOSPACE) | ||
| 271 | return -FDT_ERR_BADOVERLAY; | ||
| 272 | |||
| 273 | if (ret) | ||
| 274 | return ret; | ||
| 275 | } | ||
| 276 | } | ||
| 277 | |||
| 278 | fdt_for_each_subnode(fixup_child, fdto, fixup_node) { | ||
| 279 | const char *fixup_child_name = fdt_get_name(fdto, fixup_child, | ||
| 280 | NULL); | ||
| 281 | int tree_child; | ||
| 282 | |||
| 283 | tree_child = fdt_subnode_offset(fdto, tree_node, | ||
| 284 | fixup_child_name); | ||
| 285 | if (tree_child == -FDT_ERR_NOTFOUND) | ||
| 286 | return -FDT_ERR_BADOVERLAY; | ||
| 287 | if (tree_child < 0) | ||
| 288 | return tree_child; | ||
| 289 | |||
| 290 | ret = overlay_update_local_node_references(fdto, | ||
| 291 | tree_child, | ||
| 292 | fixup_child, | ||
| 293 | delta); | ||
| 294 | if (ret) | ||
| 295 | return ret; | ||
| 296 | } | ||
| 297 | |||
| 298 | return 0; | ||
| 299 | } | ||
| 300 | |||
| 301 | /** | ||
| 302 | * overlay_update_local_references - Adjust the overlay references | ||
| 303 | * @fdto: Device tree overlay blob | ||
| 304 | * @delta: Offset to shift the phandles of | ||
| 305 | * | ||
| 306 | * overlay_update_local_references() update all the phandles pointing | ||
| 307 | * to a node within the device tree overlay by adding a constant | ||
| 308 | * delta to not conflict with the base overlay. | ||
| 309 | * | ||
| 310 | * This is mainly used as part of a device tree application process, | ||
| 311 | * where you want the device tree overlays phandles to not conflict | ||
| 312 | * with the ones from the base device tree before merging them. | ||
| 313 | * | ||
| 314 | * returns: | ||
| 315 | * 0 on success | ||
| 316 | * Negative error code on failure | ||
| 317 | */ | ||
| 318 | static int overlay_update_local_references(void *fdto, uint32_t delta) | ||
| 319 | { | ||
| 320 | int fixups; | ||
| 321 | |||
| 322 | fixups = fdt_path_offset(fdto, "/__local_fixups__"); | ||
| 323 | if (fixups < 0) { | ||
| 324 | /* There's no local phandles to adjust, bail out */ | ||
| 325 | if (fixups == -FDT_ERR_NOTFOUND) | ||
| 326 | return 0; | ||
| 327 | |||
| 328 | return fixups; | ||
| 329 | } | ||
| 330 | |||
| 331 | /* | ||
| 332 | * Update our local references from the root of the tree | ||
| 333 | */ | ||
| 334 | return overlay_update_local_node_references(fdto, 0, fixups, | ||
| 335 | delta); | ||
| 336 | } | ||
| 337 | |||
| 338 | /** | ||
| 339 | * overlay_fixup_one_phandle - Set an overlay phandle to the base one | ||
| 340 | * @fdt: Base Device Tree blob | ||
| 341 | * @fdto: Device tree overlay blob | ||
| 342 | * @symbols_off: Node offset of the symbols node in the base device tree | ||
| 343 | * @path: Path to a node holding a phandle in the overlay | ||
| 344 | * @path_len: number of path characters to consider | ||
| 345 | * @name: Name of the property holding the phandle reference in the overlay | ||
| 346 | * @name_len: number of name characters to consider | ||
| 347 | * @poffset: Offset within the overlay property where the phandle is stored | ||
| 348 | * @label: Label of the node referenced by the phandle | ||
| 349 | * | ||
| 350 | * overlay_fixup_one_phandle() resolves an overlay phandle pointing to | ||
| 351 | * a node in the base device tree. | ||
| 352 | * | ||
| 353 | * This is part of the device tree overlay application process, when | ||
| 354 | * you want all the phandles in the overlay to point to the actual | ||
| 355 | * base dt nodes. | ||
| 356 | * | ||
| 357 | * returns: | ||
| 358 | * 0 on success | ||
| 359 | * Negative error code on failure | ||
| 360 | */ | ||
| 361 | static int overlay_fixup_one_phandle(void *fdt, void *fdto, | ||
| 362 | int symbols_off, | ||
| 363 | const char *path, uint32_t path_len, | ||
| 364 | const char *name, uint32_t name_len, | ||
| 365 | int poffset, const char *label) | ||
| 366 | { | ||
| 367 | const char *symbol_path; | ||
| 368 | uint32_t phandle; | ||
| 369 | fdt32_t phandle_prop; | ||
| 370 | int symbol_off, fixup_off; | ||
| 371 | int prop_len; | ||
| 372 | |||
| 373 | if (symbols_off < 0) | ||
| 374 | return symbols_off; | ||
| 375 | |||
| 376 | symbol_path = fdt_getprop(fdt, symbols_off, label, | ||
| 377 | &prop_len); | ||
| 378 | if (!symbol_path) | ||
| 379 | return prop_len; | ||
| 380 | |||
| 381 | symbol_off = fdt_path_offset(fdt, symbol_path); | ||
| 382 | if (symbol_off < 0) | ||
| 383 | return symbol_off; | ||
| 384 | |||
| 385 | phandle = fdt_get_phandle(fdt, symbol_off); | ||
| 386 | if (!phandle) | ||
| 387 | return -FDT_ERR_NOTFOUND; | ||
| 388 | |||
| 389 | fixup_off = fdt_path_offset_namelen(fdto, path, path_len); | ||
| 390 | if (fixup_off == -FDT_ERR_NOTFOUND) | ||
| 391 | return -FDT_ERR_BADOVERLAY; | ||
| 392 | if (fixup_off < 0) | ||
| 393 | return fixup_off; | ||
| 394 | |||
| 395 | phandle_prop = cpu_to_fdt32(phandle); | ||
| 396 | return fdt_setprop_inplace_namelen_partial(fdto, fixup_off, | ||
| 397 | name, name_len, poffset, | ||
| 398 | &phandle_prop, | ||
| 399 | sizeof(phandle_prop)); | ||
| 400 | }; | ||
| 401 | |||
| 402 | /** | ||
| 403 | * overlay_fixup_phandle - Set an overlay phandle to the base one | ||
| 404 | * @fdt: Base Device Tree blob | ||
| 405 | * @fdto: Device tree overlay blob | ||
| 406 | * @symbols_off: Node offset of the symbols node in the base device tree | ||
| 407 | * @property: Property offset in the overlay holding the list of fixups | ||
| 408 | * | ||
| 409 | * overlay_fixup_phandle() resolves all the overlay phandles pointed | ||
| 410 | * to in a __fixups__ property, and updates them to match the phandles | ||
| 411 | * in use in the base device tree. | ||
| 412 | * | ||
| 413 | * This is part of the device tree overlay application process, when | ||
| 414 | * you want all the phandles in the overlay to point to the actual | ||
| 415 | * base dt nodes. | ||
| 416 | * | ||
| 417 | * returns: | ||
| 418 | * 0 on success | ||
| 419 | * Negative error code on failure | ||
| 420 | */ | ||
| 421 | static int overlay_fixup_phandle(void *fdt, void *fdto, int symbols_off, | ||
| 422 | int property) | ||
| 423 | { | ||
| 424 | const char *value; | ||
| 425 | const char *label; | ||
| 426 | int len; | ||
| 427 | |||
| 428 | value = fdt_getprop_by_offset(fdto, property, | ||
| 429 | &label, &len); | ||
| 430 | if (!value) { | ||
| 431 | if (len == -FDT_ERR_NOTFOUND) | ||
| 432 | return -FDT_ERR_INTERNAL; | ||
| 433 | |||
| 434 | return len; | ||
| 435 | } | ||
| 436 | |||
| 437 | do { | ||
| 438 | const char *path, *name, *fixup_end; | ||
| 439 | const char *fixup_str = value; | ||
| 440 | uint32_t path_len, name_len; | ||
| 441 | uint32_t fixup_len; | ||
| 442 | char *sep, *endptr; | ||
| 443 | int poffset, ret; | ||
| 444 | |||
| 445 | fixup_end = memchr(value, '\0', len); | ||
| 446 | if (!fixup_end) | ||
| 447 | return -FDT_ERR_BADOVERLAY; | ||
| 448 | fixup_len = fixup_end - fixup_str; | ||
| 449 | |||
| 450 | len -= fixup_len + 1; | ||
| 451 | value += fixup_len + 1; | ||
| 452 | |||
| 453 | path = fixup_str; | ||
| 454 | sep = memchr(fixup_str, ':', fixup_len); | ||
| 455 | if (!sep || *sep != ':') | ||
| 456 | return -FDT_ERR_BADOVERLAY; | ||
| 457 | |||
| 458 | path_len = sep - path; | ||
| 459 | if (path_len == (fixup_len - 1)) | ||
| 460 | return -FDT_ERR_BADOVERLAY; | ||
| 461 | |||
| 462 | fixup_len -= path_len + 1; | ||
| 463 | name = sep + 1; | ||
| 464 | sep = memchr(name, ':', fixup_len); | ||
| 465 | if (!sep || *sep != ':') | ||
| 466 | return -FDT_ERR_BADOVERLAY; | ||
| 467 | |||
| 468 | name_len = sep - name; | ||
| 469 | if (!name_len) | ||
| 470 | return -FDT_ERR_BADOVERLAY; | ||
| 471 | |||
| 472 | poffset = strtoul(sep + 1, &endptr, 10); | ||
| 473 | if ((*endptr != '\0') || (endptr <= (sep + 1))) | ||
| 474 | return -FDT_ERR_BADOVERLAY; | ||
| 475 | |||
| 476 | ret = overlay_fixup_one_phandle(fdt, fdto, symbols_off, | ||
| 477 | path, path_len, name, name_len, | ||
| 478 | poffset, label); | ||
| 479 | if (ret) | ||
| 480 | return ret; | ||
| 481 | } while (len > 0); | ||
| 482 | |||
| 483 | return 0; | ||
| 484 | } | ||
| 485 | |||
| 486 | /** | ||
| 487 | * overlay_fixup_phandles - Resolve the overlay phandles to the base | ||
| 488 | * device tree | ||
| 489 | * @fdt: Base Device Tree blob | ||
| 490 | * @fdto: Device tree overlay blob | ||
| 491 | * | ||
| 492 | * overlay_fixup_phandles() resolves all the overlay phandles pointing | ||
| 493 | * to nodes in the base device tree. | ||
| 494 | * | ||
| 495 | * This is one of the steps of the device tree overlay application | ||
| 496 | * process, when you want all the phandles in the overlay to point to | ||
| 497 | * the actual base dt nodes. | ||
| 498 | * | ||
| 499 | * returns: | ||
| 500 | * 0 on success | ||
| 501 | * Negative error code on failure | ||
| 502 | */ | ||
| 503 | static int overlay_fixup_phandles(void *fdt, void *fdto) | ||
| 504 | { | ||
| 505 | int fixups_off, symbols_off; | ||
| 506 | int property; | ||
| 507 | |||
| 508 | /* We can have overlays without any fixups */ | ||
| 509 | fixups_off = fdt_path_offset(fdto, "/__fixups__"); | ||
| 510 | if (fixups_off == -FDT_ERR_NOTFOUND) | ||
| 511 | return 0; /* nothing to do */ | ||
| 512 | if (fixups_off < 0) | ||
| 513 | return fixups_off; | ||
| 514 | |||
| 515 | /* And base DTs without symbols */ | ||
| 516 | symbols_off = fdt_path_offset(fdt, "/__symbols__"); | ||
| 517 | if ((symbols_off < 0 && (symbols_off != -FDT_ERR_NOTFOUND))) | ||
| 518 | return symbols_off; | ||
| 519 | |||
| 520 | fdt_for_each_property_offset(property, fdto, fixups_off) { | ||
| 521 | int ret; | ||
| 522 | |||
| 523 | ret = overlay_fixup_phandle(fdt, fdto, symbols_off, property); | ||
| 524 | if (ret) | ||
| 525 | return ret; | ||
| 526 | } | ||
| 527 | |||
| 528 | return 0; | ||
| 529 | } | ||
| 530 | |||
| 531 | /** | ||
| 532 | * overlay_apply_node - Merges a node into the base device tree | ||
| 533 | * @fdt: Base Device Tree blob | ||
| 534 | * @target: Node offset in the base device tree to apply the fragment to | ||
| 535 | * @fdto: Device tree overlay blob | ||
| 536 | * @node: Node offset in the overlay holding the changes to merge | ||
| 537 | * | ||
| 538 | * overlay_apply_node() merges a node into a target base device tree | ||
| 539 | * node pointed. | ||
| 540 | * | ||
| 541 | * This is part of the final step in the device tree overlay | ||
| 542 | * application process, when all the phandles have been adjusted and | ||
| 543 | * resolved and you just have to merge overlay into the base device | ||
| 544 | * tree. | ||
| 545 | * | ||
| 546 | * returns: | ||
| 547 | * 0 on success | ||
| 548 | * Negative error code on failure | ||
| 549 | */ | ||
| 550 | static int overlay_apply_node(void *fdt, int target, | ||
| 551 | void *fdto, int node) | ||
| 552 | { | ||
| 553 | int property; | ||
| 554 | int subnode; | ||
| 555 | |||
| 556 | fdt_for_each_property_offset(property, fdto, node) { | ||
| 557 | const char *name; | ||
| 558 | const void *prop; | ||
| 559 | int prop_len; | ||
| 560 | int ret; | ||
| 561 | |||
| 562 | prop = fdt_getprop_by_offset(fdto, property, &name, | ||
| 563 | &prop_len); | ||
| 564 | if (prop_len == -FDT_ERR_NOTFOUND) | ||
| 565 | return -FDT_ERR_INTERNAL; | ||
| 566 | if (prop_len < 0) | ||
| 567 | return prop_len; | ||
| 568 | |||
| 569 | ret = fdt_setprop(fdt, target, name, prop, prop_len); | ||
| 570 | if (ret) | ||
| 571 | return ret; | ||
| 572 | } | ||
| 573 | |||
| 574 | fdt_for_each_subnode(subnode, fdto, node) { | ||
| 575 | const char *name = fdt_get_name(fdto, subnode, NULL); | ||
| 576 | int nnode; | ||
| 577 | int ret; | ||
| 578 | |||
| 579 | nnode = fdt_add_subnode(fdt, target, name); | ||
| 580 | if (nnode == -FDT_ERR_EXISTS) { | ||
| 581 | nnode = fdt_subnode_offset(fdt, target, name); | ||
| 582 | if (nnode == -FDT_ERR_NOTFOUND) | ||
| 583 | return -FDT_ERR_INTERNAL; | ||
| 584 | } | ||
| 585 | |||
| 586 | if (nnode < 0) | ||
| 587 | return nnode; | ||
| 588 | |||
| 589 | ret = overlay_apply_node(fdt, nnode, fdto, subnode); | ||
| 590 | if (ret) | ||
| 591 | return ret; | ||
| 592 | } | ||
| 593 | |||
| 594 | return 0; | ||
| 595 | } | ||
| 596 | |||
| 597 | /** | ||
| 598 | * overlay_merge - Merge an overlay into its base device tree | ||
| 599 | * @fdt: Base Device Tree blob | ||
| 600 | * @fdto: Device tree overlay blob | ||
| 601 | * | ||
| 602 | * overlay_merge() merges an overlay into its base device tree. | ||
| 603 | * | ||
| 604 | * This is the next to last step in the device tree overlay application | ||
| 605 | * process, when all the phandles have been adjusted and resolved and | ||
| 606 | * you just have to merge overlay into the base device tree. | ||
| 607 | * | ||
| 608 | * returns: | ||
| 609 | * 0 on success | ||
| 610 | * Negative error code on failure | ||
| 611 | */ | ||
| 612 | static int overlay_merge(void *fdt, void *fdto) | ||
| 613 | { | ||
| 614 | int fragment; | ||
| 615 | |||
| 616 | fdt_for_each_subnode(fragment, fdto, 0) { | ||
| 617 | int overlay; | ||
| 618 | int target; | ||
| 619 | int ret; | ||
| 620 | |||
| 621 | /* | ||
| 622 | * Each fragments will have an __overlay__ node. If | ||
| 623 | * they don't, it's not supposed to be merged | ||
| 624 | */ | ||
| 625 | overlay = fdt_subnode_offset(fdto, fragment, "__overlay__"); | ||
| 626 | if (overlay == -FDT_ERR_NOTFOUND) | ||
| 627 | continue; | ||
| 628 | |||
| 629 | if (overlay < 0) | ||
| 630 | return overlay; | ||
| 631 | |||
| 632 | target = overlay_get_target(fdt, fdto, fragment, NULL); | ||
| 633 | if (target < 0) | ||
| 634 | return target; | ||
| 635 | |||
| 636 | ret = overlay_apply_node(fdt, target, fdto, overlay); | ||
| 637 | if (ret) | ||
| 638 | return ret; | ||
| 639 | } | ||
| 640 | |||
| 641 | return 0; | ||
| 642 | } | ||
| 643 | |||
| 644 | static int get_path_len(const void *fdt, int nodeoffset) | ||
| 645 | { | ||
| 646 | int len = 0, namelen; | ||
| 647 | const char *name; | ||
| 648 | |||
| 649 | FDT_CHECK_HEADER(fdt); | ||
| 650 | |||
| 651 | for (;;) { | ||
| 652 | name = fdt_get_name(fdt, nodeoffset, &namelen); | ||
| 653 | if (!name) | ||
| 654 | return namelen; | ||
| 655 | |||
| 656 | /* root? we're done */ | ||
| 657 | if (namelen == 0) | ||
| 658 | break; | ||
| 659 | |||
| 660 | nodeoffset = fdt_parent_offset(fdt, nodeoffset); | ||
| 661 | if (nodeoffset < 0) | ||
| 662 | return nodeoffset; | ||
| 663 | len += namelen + 1; | ||
| 664 | } | ||
| 665 | |||
| 666 | /* in case of root pretend it's "/" */ | ||
| 667 | if (len == 0) | ||
| 668 | len++; | ||
| 669 | return len; | ||
| 670 | } | ||
| 671 | |||
| 672 | /** | ||
| 673 | * overlay_symbol_update - Update the symbols of base tree after a merge | ||
| 674 | * @fdt: Base Device Tree blob | ||
| 675 | * @fdto: Device tree overlay blob | ||
| 676 | * | ||
| 677 | * overlay_symbol_update() updates the symbols of the base tree with the | ||
| 678 | * symbols of the applied overlay | ||
| 679 | * | ||
| 680 | * This is the last step in the device tree overlay application | ||
| 681 | * process, allowing the reference of overlay symbols by subsequent | ||
| 682 | * overlay operations. | ||
| 683 | * | ||
| 684 | * returns: | ||
| 685 | * 0 on success | ||
| 686 | * Negative error code on failure | ||
| 687 | */ | ||
| 688 | static int overlay_symbol_update(void *fdt, void *fdto) | ||
| 689 | { | ||
| 690 | int root_sym, ov_sym, prop, path_len, fragment, target; | ||
| 691 | int len, frag_name_len, ret, rel_path_len; | ||
| 692 | const char *s, *e; | ||
| 693 | const char *path; | ||
| 694 | const char *name; | ||
| 695 | const char *frag_name; | ||
| 696 | const char *rel_path; | ||
| 697 | const char *target_path; | ||
| 698 | char *buf; | ||
| 699 | void *p; | ||
| 700 | |||
| 701 | ov_sym = fdt_subnode_offset(fdto, 0, "__symbols__"); | ||
| 702 | |||
| 703 | /* if no overlay symbols exist no problem */ | ||
| 704 | if (ov_sym < 0) | ||
| 705 | return 0; | ||
| 706 | |||
| 707 | root_sym = fdt_subnode_offset(fdt, 0, "__symbols__"); | ||
| 708 | |||
| 709 | /* it no root symbols exist we should create them */ | ||
| 710 | if (root_sym == -FDT_ERR_NOTFOUND) | ||
| 711 | root_sym = fdt_add_subnode(fdt, 0, "__symbols__"); | ||
| 712 | |||
| 713 | /* any error is fatal now */ | ||
| 714 | if (root_sym < 0) | ||
| 715 | return root_sym; | ||
| 716 | |||
| 717 | /* iterate over each overlay symbol */ | ||
| 718 | fdt_for_each_property_offset(prop, fdto, ov_sym) { | ||
| 719 | path = fdt_getprop_by_offset(fdto, prop, &name, &path_len); | ||
| 720 | if (!path) | ||
| 721 | return path_len; | ||
| 722 | |||
| 723 | /* verify it's a string property (terminated by a single \0) */ | ||
| 724 | if (path_len < 1 || memchr(path, '\0', path_len) != &path[path_len - 1]) | ||
| 725 | return -FDT_ERR_BADVALUE; | ||
| 726 | |||
| 727 | /* keep end marker to avoid strlen() */ | ||
| 728 | e = path + path_len; | ||
| 729 | |||
| 730 | /* format: /<fragment-name>/__overlay__/<relative-subnode-path> */ | ||
| 731 | |||
| 732 | if (*path != '/') | ||
| 733 | return -FDT_ERR_BADVALUE; | ||
| 734 | |||
| 735 | /* get fragment name first */ | ||
| 736 | s = strchr(path + 1, '/'); | ||
| 737 | if (!s) | ||
| 738 | return -FDT_ERR_BADOVERLAY; | ||
| 739 | |||
| 740 | frag_name = path + 1; | ||
| 741 | frag_name_len = s - path - 1; | ||
| 742 | |||
| 743 | /* verify format; safe since "s" lies in \0 terminated prop */ | ||
| 744 | len = sizeof("/__overlay__/") - 1; | ||
| 745 | if ((e - s) < len || memcmp(s, "/__overlay__/", len)) | ||
| 746 | return -FDT_ERR_BADOVERLAY; | ||
| 747 | |||
| 748 | rel_path = s + len; | ||
| 749 | rel_path_len = e - rel_path; | ||
| 750 | |||
| 751 | /* find the fragment index in which the symbol lies */ | ||
| 752 | ret = fdt_subnode_offset_namelen(fdto, 0, frag_name, | ||
| 753 | frag_name_len); | ||
| 754 | /* not found? */ | ||
| 755 | if (ret < 0) | ||
| 756 | return -FDT_ERR_BADOVERLAY; | ||
| 757 | fragment = ret; | ||
| 758 | |||
| 759 | /* an __overlay__ subnode must exist */ | ||
| 760 | ret = fdt_subnode_offset(fdto, fragment, "__overlay__"); | ||
| 761 | if (ret < 0) | ||
| 762 | return -FDT_ERR_BADOVERLAY; | ||
| 763 | |||
| 764 | /* get the target of the fragment */ | ||
| 765 | ret = overlay_get_target(fdt, fdto, fragment, &target_path); | ||
| 766 | if (ret < 0) | ||
| 767 | return ret; | ||
| 768 | target = ret; | ||
| 769 | |||
| 770 | /* if we have a target path use */ | ||
| 771 | if (!target_path) { | ||
| 772 | ret = get_path_len(fdt, target); | ||
| 773 | if (ret < 0) | ||
| 774 | return ret; | ||
| 775 | len = ret; | ||
| 776 | } else { | ||
| 777 | len = strlen(target_path); | ||
| 778 | } | ||
| 779 | |||
| 780 | ret = fdt_setprop_placeholder(fdt, root_sym, name, | ||
| 781 | len + (len > 1) + rel_path_len + 1, &p); | ||
| 782 | if (ret < 0) | ||
| 783 | return ret; | ||
| 784 | |||
| 785 | if (!target_path) { | ||
| 786 | /* again in case setprop_placeholder changed it */ | ||
| 787 | ret = overlay_get_target(fdt, fdto, fragment, &target_path); | ||
| 788 | if (ret < 0) | ||
| 789 | return ret; | ||
| 790 | target = ret; | ||
| 791 | } | ||
| 792 | |||
| 793 | buf = p; | ||
| 794 | if (len > 1) { /* target is not root */ | ||
| 795 | if (!target_path) { | ||
| 796 | ret = fdt_get_path(fdt, target, buf, len + 1); | ||
| 797 | if (ret < 0) | ||
| 798 | return ret; | ||
| 799 | } else | ||
| 800 | memcpy(buf, target_path, len + 1); | ||
| 801 | |||
| 802 | } else | ||
| 803 | len--; | ||
| 804 | |||
| 805 | buf[len] = '/'; | ||
| 806 | memcpy(buf + len + 1, rel_path, rel_path_len); | ||
| 807 | buf[len + 1 + rel_path_len] = '\0'; | ||
| 808 | } | ||
| 809 | |||
| 810 | return 0; | ||
| 811 | } | ||
| 812 | |||
| 813 | int fdt_overlay_apply(void *fdt, void *fdto) | ||
| 814 | { | ||
| 815 | uint32_t delta = fdt_get_max_phandle(fdt); | ||
| 816 | int ret; | ||
| 817 | |||
| 818 | FDT_CHECK_HEADER(fdt); | ||
| 819 | FDT_CHECK_HEADER(fdto); | ||
| 820 | |||
| 821 | ret = overlay_adjust_local_phandles(fdto, delta); | ||
| 822 | if (ret) | ||
| 823 | goto err; | ||
| 824 | |||
| 825 | ret = overlay_update_local_references(fdto, delta); | ||
| 826 | if (ret) | ||
| 827 | goto err; | ||
| 828 | |||
| 829 | ret = overlay_fixup_phandles(fdt, fdto); | ||
| 830 | if (ret) | ||
| 831 | goto err; | ||
| 832 | |||
| 833 | ret = overlay_merge(fdt, fdto); | ||
| 834 | if (ret) | ||
| 835 | goto err; | ||
| 836 | |||
| 837 | ret = overlay_symbol_update(fdt, fdto); | ||
| 838 | if (ret) | ||
| 839 | goto err; | ||
| 840 | |||
| 841 | /* | ||
| 842 | * The overlay has been damaged, erase its magic. | ||
| 843 | */ | ||
| 844 | fdt_set_magic(fdto, ~0); | ||
| 845 | |||
| 846 | return 0; | ||
| 847 | |||
| 848 | err: | ||
| 849 | /* | ||
| 850 | * The overlay might have been damaged, erase its magic. | ||
| 851 | */ | ||
| 852 | fdt_set_magic(fdto, ~0); | ||
| 853 | |||
| 854 | /* | ||
| 855 | * The base device tree might have been damaged, erase its | ||
| 856 | * magic. | ||
| 857 | */ | ||
| 858 | fdt_set_magic(fdt, ~0); | ||
| 859 | |||
| 860 | return ret; | ||
| 861 | } | ||
diff --git a/scripts/dtc/libfdt/fdt_ro.c b/scripts/dtc/libfdt/fdt_ro.c index 3d00d2eee0e3..08de2cce674d 100644 --- a/scripts/dtc/libfdt/fdt_ro.c +++ b/scripts/dtc/libfdt/fdt_ro.c | |||
| @@ -60,7 +60,7 @@ static int _fdt_nodename_eq(const void *fdt, int offset, | |||
| 60 | { | 60 | { |
| 61 | const char *p = fdt_offset_ptr(fdt, offset + FDT_TAGSIZE, len+1); | 61 | const char *p = fdt_offset_ptr(fdt, offset + FDT_TAGSIZE, len+1); |
| 62 | 62 | ||
| 63 | if (! p) | 63 | if (!p) |
| 64 | /* short match */ | 64 | /* short match */ |
| 65 | return 0; | 65 | return 0; |
| 66 | 66 | ||
| @@ -327,7 +327,7 @@ const void *fdt_getprop_namelen(const void *fdt, int nodeoffset, | |||
| 327 | const struct fdt_property *prop; | 327 | const struct fdt_property *prop; |
| 328 | 328 | ||
| 329 | prop = fdt_get_property_namelen(fdt, nodeoffset, name, namelen, lenp); | 329 | prop = fdt_get_property_namelen(fdt, nodeoffset, name, namelen, lenp); |
| 330 | if (! prop) | 330 | if (!prop) |
| 331 | return NULL; | 331 | return NULL; |
| 332 | 332 | ||
| 333 | return prop->data; | 333 | return prop->data; |
diff --git a/scripts/dtc/libfdt/fdt_rw.c b/scripts/dtc/libfdt/fdt_rw.c index 3fd5847377c9..5c3a2bb0bc6b 100644 --- a/scripts/dtc/libfdt/fdt_rw.c +++ b/scripts/dtc/libfdt/fdt_rw.c | |||
| @@ -207,7 +207,7 @@ static int _fdt_resize_property(void *fdt, int nodeoffset, const char *name, | |||
| 207 | int err; | 207 | int err; |
| 208 | 208 | ||
| 209 | *prop = fdt_get_property_w(fdt, nodeoffset, name, &oldlen); | 209 | *prop = fdt_get_property_w(fdt, nodeoffset, name, &oldlen); |
| 210 | if (! (*prop)) | 210 | if (!*prop) |
| 211 | return oldlen; | 211 | return oldlen; |
| 212 | 212 | ||
| 213 | if ((err = _fdt_splice_struct(fdt, (*prop)->data, FDT_TAGALIGN(oldlen), | 213 | if ((err = _fdt_splice_struct(fdt, (*prop)->data, FDT_TAGALIGN(oldlen), |
| @@ -269,8 +269,8 @@ int fdt_set_name(void *fdt, int nodeoffset, const char *name) | |||
| 269 | return 0; | 269 | return 0; |
| 270 | } | 270 | } |
| 271 | 271 | ||
| 272 | int fdt_setprop(void *fdt, int nodeoffset, const char *name, | 272 | int fdt_setprop_placeholder(void *fdt, int nodeoffset, const char *name, |
| 273 | const void *val, int len) | 273 | int len, void **prop_data) |
| 274 | { | 274 | { |
| 275 | struct fdt_property *prop; | 275 | struct fdt_property *prop; |
| 276 | int err; | 276 | int err; |
| @@ -283,8 +283,22 @@ int fdt_setprop(void *fdt, int nodeoffset, const char *name, | |||
| 283 | if (err) | 283 | if (err) |
| 284 | return err; | 284 | return err; |
| 285 | 285 | ||
| 286 | *prop_data = prop->data; | ||
| 287 | return 0; | ||
| 288 | } | ||
| 289 | |||
| 290 | int fdt_setprop(void *fdt, int nodeoffset, const char *name, | ||
| 291 | const void *val, int len) | ||
| 292 | { | ||
| 293 | void *prop_data; | ||
| 294 | int err; | ||
| 295 | |||
| 296 | err = fdt_setprop_placeholder(fdt, nodeoffset, name, len, &prop_data); | ||
| 297 | if (err) | ||
| 298 | return err; | ||
| 299 | |||
| 286 | if (len) | 300 | if (len) |
| 287 | memcpy(prop->data, val, len); | 301 | memcpy(prop_data, val, len); |
| 288 | return 0; | 302 | return 0; |
| 289 | } | 303 | } |
| 290 | 304 | ||
| @@ -323,7 +337,7 @@ int fdt_delprop(void *fdt, int nodeoffset, const char *name) | |||
| 323 | FDT_RW_CHECK_HEADER(fdt); | 337 | FDT_RW_CHECK_HEADER(fdt); |
| 324 | 338 | ||
| 325 | prop = fdt_get_property_w(fdt, nodeoffset, name, &len); | 339 | prop = fdt_get_property_w(fdt, nodeoffset, name, &len); |
| 326 | if (! prop) | 340 | if (!prop) |
| 327 | return len; | 341 | return len; |
| 328 | 342 | ||
| 329 | proplen = sizeof(*prop) + FDT_TAGALIGN(len); | 343 | proplen = sizeof(*prop) + FDT_TAGALIGN(len); |
diff --git a/scripts/dtc/libfdt/fdt_sw.c b/scripts/dtc/libfdt/fdt_sw.c index 6a804859fd0c..2bd15e7aef87 100644 --- a/scripts/dtc/libfdt/fdt_sw.c +++ b/scripts/dtc/libfdt/fdt_sw.c | |||
| @@ -220,7 +220,7 @@ static int _fdt_find_add_string(void *fdt, const char *s) | |||
| 220 | return offset; | 220 | return offset; |
| 221 | } | 221 | } |
| 222 | 222 | ||
| 223 | int fdt_property(void *fdt, const char *name, const void *val, int len) | 223 | int fdt_property_placeholder(void *fdt, const char *name, int len, void **valp) |
| 224 | { | 224 | { |
| 225 | struct fdt_property *prop; | 225 | struct fdt_property *prop; |
| 226 | int nameoff; | 226 | int nameoff; |
| @@ -238,7 +238,19 @@ int fdt_property(void *fdt, const char *name, const void *val, int len) | |||
| 238 | prop->tag = cpu_to_fdt32(FDT_PROP); | 238 | prop->tag = cpu_to_fdt32(FDT_PROP); |
| 239 | prop->nameoff = cpu_to_fdt32(nameoff); | 239 | prop->nameoff = cpu_to_fdt32(nameoff); |
| 240 | prop->len = cpu_to_fdt32(len); | 240 | prop->len = cpu_to_fdt32(len); |
| 241 | memcpy(prop->data, val, len); | 241 | *valp = prop->data; |
| 242 | return 0; | ||
| 243 | } | ||
| 244 | |||
| 245 | int fdt_property(void *fdt, const char *name, const void *val, int len) | ||
| 246 | { | ||
| 247 | void *ptr; | ||
| 248 | int ret; | ||
| 249 | |||
| 250 | ret = fdt_property_placeholder(fdt, name, len, &ptr); | ||
| 251 | if (ret) | ||
| 252 | return ret; | ||
| 253 | memcpy(ptr, val, len); | ||
| 242 | return 0; | 254 | return 0; |
| 243 | } | 255 | } |
| 244 | 256 | ||
diff --git a/scripts/dtc/libfdt/fdt_wip.c b/scripts/dtc/libfdt/fdt_wip.c index 6aaab399929c..5e859198622b 100644 --- a/scripts/dtc/libfdt/fdt_wip.c +++ b/scripts/dtc/libfdt/fdt_wip.c | |||
| @@ -82,7 +82,7 @@ int fdt_setprop_inplace(void *fdt, int nodeoffset, const char *name, | |||
| 82 | int proplen; | 82 | int proplen; |
| 83 | 83 | ||
| 84 | propval = fdt_getprop(fdt, nodeoffset, name, &proplen); | 84 | propval = fdt_getprop(fdt, nodeoffset, name, &proplen); |
| 85 | if (! propval) | 85 | if (!propval) |
| 86 | return proplen; | 86 | return proplen; |
| 87 | 87 | ||
| 88 | if (proplen != len) | 88 | if (proplen != len) |
| @@ -107,7 +107,7 @@ int fdt_nop_property(void *fdt, int nodeoffset, const char *name) | |||
| 107 | int len; | 107 | int len; |
| 108 | 108 | ||
| 109 | prop = fdt_get_property_w(fdt, nodeoffset, name, &len); | 109 | prop = fdt_get_property_w(fdt, nodeoffset, name, &len); |
| 110 | if (! prop) | 110 | if (!prop) |
| 111 | return len; | 111 | return len; |
| 112 | 112 | ||
| 113 | _fdt_nop_region(prop, len + sizeof(*prop)); | 113 | _fdt_nop_region(prop, len + sizeof(*prop)); |
diff --git a/scripts/dtc/libfdt/libfdt.h b/scripts/dtc/libfdt/libfdt.h index ba86caa73d01..7f83023ee109 100644 --- a/scripts/dtc/libfdt/libfdt.h +++ b/scripts/dtc/libfdt/libfdt.h | |||
| @@ -1314,6 +1314,22 @@ static inline int fdt_property_cell(void *fdt, const char *name, uint32_t val) | |||
| 1314 | { | 1314 | { |
| 1315 | return fdt_property_u32(fdt, name, val); | 1315 | return fdt_property_u32(fdt, name, val); |
| 1316 | } | 1316 | } |
| 1317 | |||
| 1318 | /** | ||
| 1319 | * fdt_property_placeholder - add a new property and return a ptr to its value | ||
| 1320 | * | ||
| 1321 | * @fdt: pointer to the device tree blob | ||
| 1322 | * @name: name of property to add | ||
| 1323 | * @len: length of property value in bytes | ||
| 1324 | * @valp: returns a pointer to where where the value should be placed | ||
| 1325 | * | ||
| 1326 | * returns: | ||
| 1327 | * 0, on success | ||
| 1328 | * -FDT_ERR_BADMAGIC, | ||
| 1329 | * -FDT_ERR_NOSPACE, standard meanings | ||
| 1330 | */ | ||
| 1331 | int fdt_property_placeholder(void *fdt, const char *name, int len, void **valp); | ||
| 1332 | |||
| 1317 | #define fdt_property_string(fdt, name, str) \ | 1333 | #define fdt_property_string(fdt, name, str) \ |
| 1318 | fdt_property(fdt, name, str, strlen(str)+1) | 1334 | fdt_property(fdt, name, str, strlen(str)+1) |
| 1319 | int fdt_end_node(void *fdt); | 1335 | int fdt_end_node(void *fdt); |
| @@ -1433,6 +1449,37 @@ int fdt_setprop(void *fdt, int nodeoffset, const char *name, | |||
| 1433 | const void *val, int len); | 1449 | const void *val, int len); |
| 1434 | 1450 | ||
| 1435 | /** | 1451 | /** |
| 1452 | * fdt_setprop _placeholder - allocate space for a property | ||
| 1453 | * @fdt: pointer to the device tree blob | ||
| 1454 | * @nodeoffset: offset of the node whose property to change | ||
| 1455 | * @name: name of the property to change | ||
| 1456 | * @len: length of the property value | ||
| 1457 | * @prop_data: return pointer to property data | ||
| 1458 | * | ||
| 1459 | * fdt_setprop_placeholer() allocates the named property in the given node. | ||
| 1460 | * If the property exists it is resized. In either case a pointer to the | ||
| 1461 | * property data is returned. | ||
| 1462 | * | ||
| 1463 | * This function may insert or delete data from the blob, and will | ||
| 1464 | * therefore change the offsets of some existing nodes. | ||
| 1465 | * | ||
| 1466 | * returns: | ||
| 1467 | * 0, on success | ||
| 1468 | * -FDT_ERR_NOSPACE, there is insufficient free space in the blob to | ||
| 1469 | * contain the new property value | ||
| 1470 | * -FDT_ERR_BADOFFSET, nodeoffset did not point to FDT_BEGIN_NODE tag | ||
| 1471 | * -FDT_ERR_BADLAYOUT, | ||
| 1472 | * -FDT_ERR_BADMAGIC, | ||
| 1473 | * -FDT_ERR_BADVERSION, | ||
| 1474 | * -FDT_ERR_BADSTATE, | ||
| 1475 | * -FDT_ERR_BADSTRUCTURE, | ||
| 1476 | * -FDT_ERR_BADLAYOUT, | ||
| 1477 | * -FDT_ERR_TRUNCATED, standard meanings | ||
| 1478 | */ | ||
| 1479 | int fdt_setprop_placeholder(void *fdt, int nodeoffset, const char *name, | ||
| 1480 | int len, void **prop_data); | ||
| 1481 | |||
| 1482 | /** | ||
| 1436 | * fdt_setprop_u32 - set a property to a 32-bit integer | 1483 | * fdt_setprop_u32 - set a property to a 32-bit integer |
| 1437 | * @fdt: pointer to the device tree blob | 1484 | * @fdt: pointer to the device tree blob |
| 1438 | * @nodeoffset: offset of the node whose property to change | 1485 | * @nodeoffset: offset of the node whose property to change |
