Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Simon Glass | 44d3a30 | 2013-05-08 08:06:00 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2013, Google Inc. |
| 4 | * |
| 5 | * (C) Copyright 2008 Semihalf |
| 6 | * |
| 7 | * (C) Copyright 2000-2006 |
| 8 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
Simon Glass | 44d3a30 | 2013-05-08 08:06:00 +0000 | [diff] [blame] | 9 | */ |
| 10 | |
Matthias Schiffer | e91d660 | 2023-12-11 12:03:17 +0100 | [diff] [blame] | 11 | #include <command.h> |
Simon Glass | 44d3a30 | 2013-05-08 08:06:00 +0000 | [diff] [blame] | 12 | #include <fdt_support.h> |
Simon Goldschmidt | e2237a2 | 2019-01-14 22:38:17 +0100 | [diff] [blame] | 13 | #include <fdtdec.h> |
Simon Glass | cdbff9f | 2019-08-01 09:46:50 -0600 | [diff] [blame] | 14 | #include <env.h> |
Simon Glass | 44d3a30 | 2013-05-08 08:06:00 +0000 | [diff] [blame] | 15 | #include <errno.h> |
| 16 | #include <image.h> |
Simon Glass | 4d72caa | 2020-05-10 11:40:01 -0600 | [diff] [blame] | 17 | #include <lmb.h> |
Simon Glass | f7ae49f | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 18 | #include <log.h> |
Simon Glass | 336d461 | 2020-02-03 07:36:16 -0700 | [diff] [blame] | 19 | #include <malloc.h> |
Simon Glass | 401d1c4 | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 20 | #include <asm/global_data.h> |
Masahiro Yamada | b08c8c4 | 2018-03-05 01:20:11 +0900 | [diff] [blame] | 21 | #include <linux/libfdt.h> |
Joe Hershberger | 0eb25b6 | 2015-03-22 17:08:59 -0500 | [diff] [blame] | 22 | #include <mapmem.h> |
Simon Glass | 44d3a30 | 2013-05-08 08:06:00 +0000 | [diff] [blame] | 23 | #include <asm/io.h> |
Simon Glass | 98887ab | 2022-07-30 15:52:31 -0600 | [diff] [blame] | 24 | #include <dm/ofnode.h> |
Heiko Stuebner | 6ccb05e | 2019-10-23 16:46:40 +0200 | [diff] [blame] | 25 | #include <tee/optee.h> |
Simon Glass | 44d3a30 | 2013-05-08 08:06:00 +0000 | [diff] [blame] | 26 | |
Simon Glass | 44d3a30 | 2013-05-08 08:06:00 +0000 | [diff] [blame] | 27 | DECLARE_GLOBAL_DATA_PTR; |
| 28 | |
| 29 | static void fdt_error(const char *msg) |
| 30 | { |
| 31 | puts("ERROR: "); |
| 32 | puts(msg); |
| 33 | puts(" - must RESET the board to recover.\n"); |
| 34 | } |
| 35 | |
Tom Rini | c76c93a | 2019-05-23 07:14:07 -0400 | [diff] [blame] | 36 | #if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT) |
Simon Glass | f3543e6 | 2022-09-06 20:26:52 -0600 | [diff] [blame] | 37 | static const struct legacy_img_hdr *image_get_fdt(ulong fdt_addr) |
Simon Glass | 44d3a30 | 2013-05-08 08:06:00 +0000 | [diff] [blame] | 38 | { |
Simon Glass | f3543e6 | 2022-09-06 20:26:52 -0600 | [diff] [blame] | 39 | const struct legacy_img_hdr *fdt_hdr = map_sysmem(fdt_addr, 0); |
Simon Glass | 44d3a30 | 2013-05-08 08:06:00 +0000 | [diff] [blame] | 40 | |
| 41 | image_print_contents(fdt_hdr); |
| 42 | |
| 43 | puts(" Verifying Checksum ... "); |
| 44 | if (!image_check_hcrc(fdt_hdr)) { |
| 45 | fdt_error("fdt header checksum invalid"); |
| 46 | return NULL; |
| 47 | } |
| 48 | |
| 49 | if (!image_check_dcrc(fdt_hdr)) { |
| 50 | fdt_error("fdt checksum invalid"); |
| 51 | return NULL; |
| 52 | } |
| 53 | puts("OK\n"); |
| 54 | |
| 55 | if (!image_check_type(fdt_hdr, IH_TYPE_FLATDT)) { |
| 56 | fdt_error("uImage is not a fdt"); |
| 57 | return NULL; |
| 58 | } |
| 59 | if (image_get_comp(fdt_hdr) != IH_COMP_NONE) { |
| 60 | fdt_error("uImage is compressed"); |
| 61 | return NULL; |
| 62 | } |
Masahiro Yamada | 2f0877c | 2013-09-19 12:10:18 +0900 | [diff] [blame] | 63 | if (fdt_check_header((void *)image_get_data(fdt_hdr)) != 0) { |
Simon Glass | 44d3a30 | 2013-05-08 08:06:00 +0000 | [diff] [blame] | 64 | fdt_error("uImage data is not a fdt"); |
| 65 | return NULL; |
| 66 | } |
| 67 | return fdt_hdr; |
| 68 | } |
Heiko Schocher | 21d29f7 | 2014-05-28 11:33:33 +0200 | [diff] [blame] | 69 | #endif |
Simon Glass | 44d3a30 | 2013-05-08 08:06:00 +0000 | [diff] [blame] | 70 | |
Simon Goldschmidt | e2237a2 | 2019-01-14 22:38:17 +0100 | [diff] [blame] | 71 | static void boot_fdt_reserve_region(struct lmb *lmb, uint64_t addr, |
Patrick Delaunay | f46959c | 2021-05-07 14:50:33 +0200 | [diff] [blame] | 72 | uint64_t size, enum lmb_flags flags) |
Simon Goldschmidt | e2237a2 | 2019-01-14 22:38:17 +0100 | [diff] [blame] | 73 | { |
Patrick Delaunay | e1d7ed3 | 2019-03-06 14:23:52 +0100 | [diff] [blame] | 74 | long ret; |
Simon Goldschmidt | e2237a2 | 2019-01-14 22:38:17 +0100 | [diff] [blame] | 75 | |
Patrick Delaunay | f46959c | 2021-05-07 14:50:33 +0200 | [diff] [blame] | 76 | ret = lmb_reserve_flags(lmb, addr, size, flags); |
Patrick Delaunay | e1d7ed3 | 2019-03-06 14:23:52 +0100 | [diff] [blame] | 77 | if (ret >= 0) { |
Patrick Delaunay | f46959c | 2021-05-07 14:50:33 +0200 | [diff] [blame] | 78 | debug(" reserving fdt memory region: addr=%llx size=%llx flags=%x\n", |
| 79 | (unsigned long long)addr, |
| 80 | (unsigned long long)size, flags); |
Simon Goldschmidt | e2237a2 | 2019-01-14 22:38:17 +0100 | [diff] [blame] | 81 | } else { |
| 82 | puts("ERROR: reserving fdt memory region failed "); |
Patrick Delaunay | f46959c | 2021-05-07 14:50:33 +0200 | [diff] [blame] | 83 | printf("(addr=%llx size=%llx flags=%x)\n", |
| 84 | (unsigned long long)addr, |
| 85 | (unsigned long long)size, flags); |
Simon Goldschmidt | e2237a2 | 2019-01-14 22:38:17 +0100 | [diff] [blame] | 86 | } |
| 87 | } |
| 88 | |
Simon Glass | 44d3a30 | 2013-05-08 08:06:00 +0000 | [diff] [blame] | 89 | /** |
Simon Goldschmidt | e2237a2 | 2019-01-14 22:38:17 +0100 | [diff] [blame] | 90 | * boot_fdt_add_mem_rsv_regions - Mark the memreserve and reserved-memory |
| 91 | * sections as unusable |
Simon Glass | 44d3a30 | 2013-05-08 08:06:00 +0000 | [diff] [blame] | 92 | * @lmb: pointer to lmb handle, will be used for memory mgmt |
| 93 | * @fdt_blob: pointer to fdt blob base address |
| 94 | * |
Simon Goldschmidt | e2237a2 | 2019-01-14 22:38:17 +0100 | [diff] [blame] | 95 | * Adds the and reserved-memorymemreserve regions in the dtb to the lmb block. |
| 96 | * Adding the memreserve regions prevents u-boot from using them to store the |
| 97 | * initrd or the fdt blob. |
Simon Glass | 44d3a30 | 2013-05-08 08:06:00 +0000 | [diff] [blame] | 98 | */ |
| 99 | void boot_fdt_add_mem_rsv_regions(struct lmb *lmb, void *fdt_blob) |
| 100 | { |
| 101 | uint64_t addr, size; |
Simon Goldschmidt | e2237a2 | 2019-01-14 22:38:17 +0100 | [diff] [blame] | 102 | int i, total, ret; |
| 103 | int nodeoffset, subnode; |
| 104 | struct fdt_resource res; |
Patrick Delaunay | f46959c | 2021-05-07 14:50:33 +0200 | [diff] [blame] | 105 | enum lmb_flags flags; |
Simon Glass | 44d3a30 | 2013-05-08 08:06:00 +0000 | [diff] [blame] | 106 | |
| 107 | if (fdt_check_header(fdt_blob) != 0) |
| 108 | return; |
| 109 | |
Simon Goldschmidt | e2237a2 | 2019-01-14 22:38:17 +0100 | [diff] [blame] | 110 | /* process memreserve sections */ |
Simon Glass | 44d3a30 | 2013-05-08 08:06:00 +0000 | [diff] [blame] | 111 | total = fdt_num_mem_rsv(fdt_blob); |
| 112 | for (i = 0; i < total; i++) { |
| 113 | if (fdt_get_mem_rsv(fdt_blob, i, &addr, &size) != 0) |
| 114 | continue; |
Patrick Delaunay | f46959c | 2021-05-07 14:50:33 +0200 | [diff] [blame] | 115 | boot_fdt_reserve_region(lmb, addr, size, LMB_NONE); |
Simon Goldschmidt | e2237a2 | 2019-01-14 22:38:17 +0100 | [diff] [blame] | 116 | } |
| 117 | |
| 118 | /* process reserved-memory */ |
| 119 | nodeoffset = fdt_subnode_offset(fdt_blob, 0, "reserved-memory"); |
| 120 | if (nodeoffset >= 0) { |
| 121 | subnode = fdt_first_subnode(fdt_blob, nodeoffset); |
| 122 | while (subnode >= 0) { |
| 123 | /* check if this subnode has a reg property */ |
| 124 | ret = fdt_get_resource(fdt_blob, subnode, "reg", 0, |
| 125 | &res); |
Thirupathaiah Annapureddy | 28b417c | 2020-01-06 22:21:42 -0800 | [diff] [blame] | 126 | if (!ret && fdtdec_get_is_enabled(fdt_blob, subnode)) { |
Patrick Delaunay | f46959c | 2021-05-07 14:50:33 +0200 | [diff] [blame] | 127 | flags = LMB_NONE; |
| 128 | if (fdtdec_get_bool(fdt_blob, subnode, |
| 129 | "no-map")) |
| 130 | flags = LMB_NOMAP; |
Simon Goldschmidt | e2237a2 | 2019-01-14 22:38:17 +0100 | [diff] [blame] | 131 | addr = res.start; |
| 132 | size = res.end - res.start + 1; |
Patrick Delaunay | f46959c | 2021-05-07 14:50:33 +0200 | [diff] [blame] | 133 | boot_fdt_reserve_region(lmb, addr, size, flags); |
Simon Goldschmidt | e2237a2 | 2019-01-14 22:38:17 +0100 | [diff] [blame] | 134 | } |
| 135 | |
| 136 | subnode = fdt_next_subnode(fdt_blob, subnode); |
| 137 | } |
Simon Glass | 44d3a30 | 2013-05-08 08:06:00 +0000 | [diff] [blame] | 138 | } |
| 139 | } |
| 140 | |
| 141 | /** |
| 142 | * boot_relocate_fdt - relocate flat device tree |
| 143 | * @lmb: pointer to lmb handle, will be used for memory mgmt |
| 144 | * @of_flat_tree: pointer to a char* variable, will hold fdt start address |
| 145 | * @of_size: pointer to a ulong variable, will hold fdt length |
| 146 | * |
| 147 | * boot_relocate_fdt() allocates a region of memory within the bootmap and |
| 148 | * relocates the of_flat_tree into that region, even if the fdt is already in |
| 149 | * the bootmap. It also expands the size of the fdt by CONFIG_SYS_FDT_PAD |
| 150 | * bytes. |
| 151 | * |
| 152 | * of_flat_tree and of_size are set to final (after relocation) values |
| 153 | * |
| 154 | * returns: |
| 155 | * 0 - success |
| 156 | * 1 - failure |
| 157 | */ |
| 158 | int boot_relocate_fdt(struct lmb *lmb, char **of_flat_tree, ulong *of_size) |
| 159 | { |
Marek Vasut | 16da853 | 2024-04-14 20:37:20 +0200 | [diff] [blame] | 160 | u64 start, size, usable, addr, low, mapsize; |
Simon Glass | 44d3a30 | 2013-05-08 08:06:00 +0000 | [diff] [blame] | 161 | void *fdt_blob = *of_flat_tree; |
| 162 | void *of_start = NULL; |
| 163 | char *fdt_high; |
| 164 | ulong of_len = 0; |
Marek Vasut | a96d565 | 2022-04-08 02:09:19 +0200 | [diff] [blame] | 165 | int bank; |
Simon Glass | 44d3a30 | 2013-05-08 08:06:00 +0000 | [diff] [blame] | 166 | int err; |
| 167 | int disable_relocation = 0; |
| 168 | |
| 169 | /* nothing to do */ |
| 170 | if (*of_size == 0) |
| 171 | return 0; |
| 172 | |
| 173 | if (fdt_check_header(fdt_blob) != 0) { |
| 174 | fdt_error("image is not a fdt"); |
| 175 | goto error; |
| 176 | } |
| 177 | |
| 178 | /* position on a 4K boundary before the alloc_current */ |
| 179 | /* Pad the FDT by a specified amount */ |
| 180 | of_len = *of_size + CONFIG_SYS_FDT_PAD; |
| 181 | |
| 182 | /* If fdt_high is set use it to select the relocation address */ |
Simon Glass | 00caae6 | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 183 | fdt_high = env_get("fdt_high"); |
Simon Glass | 44d3a30 | 2013-05-08 08:06:00 +0000 | [diff] [blame] | 184 | if (fdt_high) { |
Simon Glass | 1951193 | 2022-10-11 09:47:10 -0600 | [diff] [blame] | 185 | ulong desired_addr = hextoul(fdt_high, NULL); |
Simon Glass | 44d3a30 | 2013-05-08 08:06:00 +0000 | [diff] [blame] | 186 | |
Simon Glass | 1951193 | 2022-10-11 09:47:10 -0600 | [diff] [blame] | 187 | if (desired_addr == ~0UL) { |
Simon Glass | 44d3a30 | 2013-05-08 08:06:00 +0000 | [diff] [blame] | 188 | /* All ones means use fdt in place */ |
| 189 | of_start = fdt_blob; |
Simon Glass | 1951193 | 2022-10-11 09:47:10 -0600 | [diff] [blame] | 190 | lmb_reserve(lmb, map_to_sysmem(of_start), of_len); |
Simon Glass | 44d3a30 | 2013-05-08 08:06:00 +0000 | [diff] [blame] | 191 | disable_relocation = 1; |
| 192 | } else if (desired_addr) { |
Simon Glass | 1951193 | 2022-10-11 09:47:10 -0600 | [diff] [blame] | 193 | addr = lmb_alloc_base(lmb, of_len, 0x1000, |
| 194 | desired_addr); |
| 195 | of_start = map_sysmem(addr, of_len); |
Simon Glass | 44d3a30 | 2013-05-08 08:06:00 +0000 | [diff] [blame] | 196 | if (of_start == NULL) { |
| 197 | puts("Failed using fdt_high value for Device Tree"); |
| 198 | goto error; |
| 199 | } |
| 200 | } else { |
Simon Glass | 1951193 | 2022-10-11 09:47:10 -0600 | [diff] [blame] | 201 | addr = lmb_alloc(lmb, of_len, 0x1000); |
| 202 | of_start = map_sysmem(addr, of_len); |
Simon Glass | 44d3a30 | 2013-05-08 08:06:00 +0000 | [diff] [blame] | 203 | } |
| 204 | } else { |
Marek Vasut | a96d565 | 2022-04-08 02:09:19 +0200 | [diff] [blame] | 205 | mapsize = env_get_bootm_mapsize(); |
| 206 | low = env_get_bootm_low(); |
| 207 | of_start = NULL; |
| 208 | |
| 209 | for (bank = 0; bank < CONFIG_NR_DRAM_BANKS; bank++) { |
| 210 | start = gd->bd->bi_dram[bank].start; |
| 211 | size = gd->bd->bi_dram[bank].size; |
| 212 | |
| 213 | /* DRAM bank addresses are too low, skip it. */ |
| 214 | if (start + size < low) |
| 215 | continue; |
| 216 | |
Marek Vasut | a96d565 | 2022-04-08 02:09:19 +0200 | [diff] [blame] | 217 | /* |
| 218 | * At least part of this DRAM bank is usable, try |
Marek Vasut | c7afe41 | 2024-03-26 23:13:16 +0100 | [diff] [blame] | 219 | * using the DRAM bank up to 'usable' address limit |
| 220 | * for LMB allocation. |
Marek Vasut | a96d565 | 2022-04-08 02:09:19 +0200 | [diff] [blame] | 221 | */ |
Marek Vasut | c7afe41 | 2024-03-26 23:13:16 +0100 | [diff] [blame] | 222 | usable = min(start + size, low + mapsize); |
Marek Vasut | f5178dd | 2024-03-26 23:13:15 +0100 | [diff] [blame] | 223 | addr = lmb_alloc_base(lmb, of_len, 0x1000, usable); |
| 224 | of_start = map_sysmem(addr, of_len); |
Marek Vasut | a96d565 | 2022-04-08 02:09:19 +0200 | [diff] [blame] | 225 | /* Allocation succeeded, use this block. */ |
| 226 | if (of_start != NULL) |
| 227 | break; |
| 228 | |
| 229 | /* |
| 230 | * Reduce the mapping size in the next bank |
| 231 | * by the size of attempt in current bank. |
| 232 | */ |
Marek Vasut | a4df06e | 2024-03-26 23:13:11 +0100 | [diff] [blame] | 233 | mapsize -= usable - max(start, low); |
Marek Vasut | a96d565 | 2022-04-08 02:09:19 +0200 | [diff] [blame] | 234 | if (!mapsize) |
| 235 | break; |
| 236 | } |
Simon Glass | 44d3a30 | 2013-05-08 08:06:00 +0000 | [diff] [blame] | 237 | } |
| 238 | |
| 239 | if (of_start == NULL) { |
| 240 | puts("device tree - allocation error\n"); |
| 241 | goto error; |
| 242 | } |
| 243 | |
| 244 | if (disable_relocation) { |
| 245 | /* |
| 246 | * We assume there is space after the existing fdt to use |
| 247 | * for padding |
| 248 | */ |
| 249 | fdt_set_totalsize(of_start, of_len); |
| 250 | printf(" Using Device Tree in place at %p, end %p\n", |
| 251 | of_start, of_start + of_len - 1); |
| 252 | } else { |
| 253 | debug("## device tree at %p ... %p (len=%ld [0x%lX])\n", |
| 254 | fdt_blob, fdt_blob + *of_size - 1, of_len, of_len); |
| 255 | |
| 256 | printf(" Loading Device Tree to %p, end %p ... ", |
| 257 | of_start, of_start + of_len - 1); |
| 258 | |
| 259 | err = fdt_open_into(fdt_blob, of_start, of_len); |
| 260 | if (err != 0) { |
| 261 | fdt_error("fdt move failed"); |
| 262 | goto error; |
| 263 | } |
| 264 | puts("OK\n"); |
| 265 | } |
| 266 | |
| 267 | *of_flat_tree = of_start; |
| 268 | *of_size = of_len; |
| 269 | |
Simon Glass | 3a09f38 | 2023-02-05 15:36:30 -0700 | [diff] [blame] | 270 | if (IS_ENABLED(CONFIG_CMD_FDT)) |
Simon Goldschmidt | 596be5f | 2018-12-17 20:14:42 +0100 | [diff] [blame] | 271 | set_working_fdt_addr(map_to_sysmem(*of_flat_tree)); |
Simon Glass | 44d3a30 | 2013-05-08 08:06:00 +0000 | [diff] [blame] | 272 | return 0; |
| 273 | |
| 274 | error: |
| 275 | return 1; |
| 276 | } |
| 277 | |
Simon Glass | 44d3a30 | 2013-05-08 08:06:00 +0000 | [diff] [blame] | 278 | /** |
Simon Glass | 4cb35b7 | 2021-09-25 19:43:41 -0600 | [diff] [blame] | 279 | * select_fdt() - Select and locate the FDT to use |
| 280 | * |
| 281 | * @images: pointer to the bootm images structure |
| 282 | * @select: name of FDT to select, or NULL for any |
| 283 | * @arch: expected FDT architecture |
| 284 | * @fdt_addrp: pointer to a ulong variable, will hold FDT pointer |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 285 | * Return: 0 if OK, -ENOPKG if no FDT (but an error should not be reported), |
Simon Glass | 4cb35b7 | 2021-09-25 19:43:41 -0600 | [diff] [blame] | 286 | * other -ve value on other error |
| 287 | */ |
| 288 | |
Simon Glass | d9d7c20 | 2022-09-06 20:26:50 -0600 | [diff] [blame] | 289 | static int select_fdt(struct bootm_headers *images, const char *select, u8 arch, |
Simon Glass | 4cb35b7 | 2021-09-25 19:43:41 -0600 | [diff] [blame] | 290 | ulong *fdt_addrp) |
| 291 | { |
| 292 | const char *buf; |
| 293 | ulong fdt_addr; |
| 294 | |
| 295 | #if CONFIG_IS_ENABLED(FIT) |
| 296 | const char *fit_uname_config = images->fit_uname_cfg; |
| 297 | const char *fit_uname_fdt = NULL; |
| 298 | ulong default_addr; |
| 299 | int fdt_noffset; |
| 300 | |
| 301 | if (select) { |
| 302 | /* |
| 303 | * If the FDT blob comes from the FIT image and the |
| 304 | * FIT image address is omitted in the command line |
| 305 | * argument, try to use ramdisk or os FIT image |
| 306 | * address or default load address. |
| 307 | */ |
| 308 | if (images->fit_uname_rd) |
| 309 | default_addr = (ulong)images->fit_hdr_rd; |
| 310 | else if (images->fit_uname_os) |
| 311 | default_addr = (ulong)images->fit_hdr_os; |
| 312 | else |
| 313 | default_addr = image_load_addr; |
| 314 | |
| 315 | if (fit_parse_conf(select, default_addr, &fdt_addr, |
| 316 | &fit_uname_config)) { |
| 317 | debug("* fdt: config '%s' from image at 0x%08lx\n", |
| 318 | fit_uname_config, fdt_addr); |
| 319 | } else if (fit_parse_subimage(select, default_addr, &fdt_addr, |
| 320 | &fit_uname_fdt)) { |
| 321 | debug("* fdt: subimage '%s' from image at 0x%08lx\n", |
| 322 | fit_uname_fdt, fdt_addr); |
| 323 | } else |
| 324 | #endif |
| 325 | { |
| 326 | fdt_addr = hextoul(select, NULL); |
| 327 | debug("* fdt: cmdline image address = 0x%08lx\n", |
| 328 | fdt_addr); |
| 329 | } |
| 330 | #if CONFIG_IS_ENABLED(FIT) |
| 331 | } else { |
| 332 | /* use FIT configuration provided in first bootm |
| 333 | * command argument |
| 334 | */ |
| 335 | fdt_addr = map_to_sysmem(images->fit_hdr_os); |
| 336 | fdt_noffset = fit_get_node_from_config(images, FIT_FDT_PROP, |
| 337 | fdt_addr); |
| 338 | if (fdt_noffset == -ENOENT) |
| 339 | return -ENOPKG; |
| 340 | else if (fdt_noffset < 0) |
| 341 | return fdt_noffset; |
| 342 | } |
| 343 | #endif |
| 344 | debug("## Checking for 'FDT'/'FDT Image' at %08lx\n", |
| 345 | fdt_addr); |
| 346 | |
| 347 | /* |
| 348 | * Check if there is an FDT image at the |
| 349 | * address provided in the second bootm argument |
| 350 | * check image type, for FIT images get a FIT node. |
| 351 | */ |
| 352 | buf = map_sysmem(fdt_addr, 0); |
| 353 | switch (genimg_get_format(buf)) { |
| 354 | #if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT) |
| 355 | case IMAGE_FORMAT_LEGACY: { |
Simon Glass | f3543e6 | 2022-09-06 20:26:52 -0600 | [diff] [blame] | 356 | const struct legacy_img_hdr *fdt_hdr; |
Simon Glass | 4cb35b7 | 2021-09-25 19:43:41 -0600 | [diff] [blame] | 357 | ulong load, load_end; |
| 358 | ulong image_start, image_data, image_end; |
| 359 | |
| 360 | /* verify fdt_addr points to a valid image header */ |
| 361 | printf("## Flattened Device Tree from Legacy Image at %08lx\n", |
| 362 | fdt_addr); |
| 363 | fdt_hdr = image_get_fdt(fdt_addr); |
| 364 | if (!fdt_hdr) |
| 365 | return -ENOPKG; |
| 366 | |
| 367 | /* |
| 368 | * move image data to the load address, |
| 369 | * make sure we don't overwrite initial image |
| 370 | */ |
| 371 | image_start = (ulong)fdt_hdr; |
| 372 | image_data = (ulong)image_get_data(fdt_hdr); |
| 373 | image_end = image_get_image_end(fdt_hdr); |
| 374 | |
| 375 | load = image_get_load(fdt_hdr); |
| 376 | load_end = load + image_get_data_size(fdt_hdr); |
| 377 | |
| 378 | if (load == image_start || |
| 379 | load == image_data) { |
| 380 | fdt_addr = load; |
| 381 | break; |
| 382 | } |
| 383 | |
| 384 | if ((load < image_end) && (load_end > image_start)) { |
| 385 | fdt_error("fdt overwritten"); |
| 386 | return -EFAULT; |
| 387 | } |
| 388 | |
| 389 | debug(" Loading FDT from 0x%08lx to 0x%08lx\n", |
| 390 | image_data, load); |
| 391 | |
| 392 | memmove((void *)load, |
| 393 | (void *)image_data, |
| 394 | image_get_data_size(fdt_hdr)); |
| 395 | |
| 396 | fdt_addr = load; |
| 397 | break; |
| 398 | } |
| 399 | #endif |
| 400 | case IMAGE_FORMAT_FIT: |
| 401 | /* |
| 402 | * This case will catch both: new uImage format |
| 403 | * (libfdt based) and raw FDT blob (also libfdt |
| 404 | * based). |
| 405 | */ |
| 406 | #if CONFIG_IS_ENABLED(FIT) |
| 407 | /* check FDT blob vs FIT blob */ |
| 408 | if (!fit_check_format(buf, IMAGE_SIZE_INVAL)) { |
| 409 | ulong load, len; |
| 410 | |
| 411 | fdt_noffset = boot_get_fdt_fit(images, fdt_addr, |
| 412 | &fit_uname_fdt, |
| 413 | &fit_uname_config, |
| 414 | arch, &load, &len); |
| 415 | |
| 416 | if (fdt_noffset < 0) |
| 417 | return -ENOENT; |
| 418 | |
| 419 | images->fit_hdr_fdt = map_sysmem(fdt_addr, 0); |
| 420 | images->fit_uname_fdt = fit_uname_fdt; |
| 421 | images->fit_noffset_fdt = fdt_noffset; |
| 422 | fdt_addr = load; |
| 423 | |
| 424 | break; |
| 425 | } else |
| 426 | #endif |
| 427 | { |
| 428 | /* |
| 429 | * FDT blob |
| 430 | */ |
| 431 | debug("* fdt: raw FDT blob\n"); |
| 432 | printf("## Flattened Device Tree blob at %08lx\n", |
| 433 | (long)fdt_addr); |
| 434 | } |
| 435 | break; |
| 436 | default: |
| 437 | puts("ERROR: Did not find a cmdline Flattened Device Tree\n"); |
| 438 | return -ENOENT; |
| 439 | } |
| 440 | *fdt_addrp = fdt_addr; |
| 441 | |
| 442 | return 0; |
| 443 | } |
| 444 | |
Simon Glass | 0aa923a | 2023-11-18 14:05:10 -0700 | [diff] [blame] | 445 | int boot_get_fdt(void *buf, const char *select, uint arch, |
Simon Glass | ba5e3f7 | 2023-11-18 14:05:09 -0700 | [diff] [blame] | 446 | struct bootm_headers *images, char **of_flat_tree, |
| 447 | ulong *of_size) |
Simon Glass | 44d3a30 | 2013-05-08 08:06:00 +0000 | [diff] [blame] | 448 | { |
Simon Glass | 0aa923a | 2023-11-18 14:05:10 -0700 | [diff] [blame] | 449 | char *fdt_blob = NULL; |
| 450 | ulong fdt_addr; |
Simon Glass | 44d3a30 | 2013-05-08 08:06:00 +0000 | [diff] [blame] | 451 | |
| 452 | *of_flat_tree = NULL; |
| 453 | *of_size = 0; |
| 454 | |
Simon Glass | 983c72f | 2013-06-11 11:14:46 -0700 | [diff] [blame] | 455 | if (select || genimg_has_config(images)) { |
Simon Glass | 4cb35b7 | 2021-09-25 19:43:41 -0600 | [diff] [blame] | 456 | int ret; |
Simon Glass | a2198cd | 2021-09-25 19:43:40 -0600 | [diff] [blame] | 457 | |
Simon Glass | 4cb35b7 | 2021-09-25 19:43:41 -0600 | [diff] [blame] | 458 | ret = select_fdt(images, select, arch, &fdt_addr); |
| 459 | if (ret == -ENOPKG) |
| 460 | goto no_fdt; |
| 461 | else if (ret) |
| 462 | return 1; |
Simon Glass | 53f375f | 2013-05-16 13:53:23 +0000 | [diff] [blame] | 463 | printf(" Booting using the fdt blob at %#08lx\n", fdt_addr); |
| 464 | fdt_blob = map_sysmem(fdt_addr, 0); |
Simon Glass | 44d3a30 | 2013-05-08 08:06:00 +0000 | [diff] [blame] | 465 | } else if (images->legacy_hdr_valid && |
| 466 | image_check_type(&images->legacy_hdr_os_copy, |
| 467 | IH_TYPE_MULTI)) { |
| 468 | ulong fdt_data, fdt_len; |
| 469 | |
| 470 | /* |
| 471 | * Now check if we have a legacy multi-component image, |
| 472 | * get second entry data start address and len. |
| 473 | */ |
| 474 | printf("## Flattened Device Tree from multi component Image at %08lX\n", |
| 475 | (ulong)images->legacy_hdr_os); |
| 476 | |
| 477 | image_multi_getimg(images->legacy_hdr_os, 2, &fdt_data, |
| 478 | &fdt_len); |
| 479 | if (fdt_len) { |
| 480 | fdt_blob = (char *)fdt_data; |
| 481 | printf(" Booting using the fdt at 0x%p\n", fdt_blob); |
| 482 | |
| 483 | if (fdt_check_header(fdt_blob) != 0) { |
| 484 | fdt_error("image is not a fdt"); |
| 485 | goto error; |
| 486 | } |
| 487 | |
| 488 | if (fdt_totalsize(fdt_blob) != fdt_len) { |
| 489 | fdt_error("fdt size != image size"); |
| 490 | goto error; |
| 491 | } |
| 492 | } else { |
| 493 | debug("## No Flattened Device Tree\n"); |
Suriyan Ramasami | 48aead7 | 2014-11-27 13:24:16 -0800 | [diff] [blame] | 494 | goto no_fdt; |
Simon Glass | 44d3a30 | 2013-05-08 08:06:00 +0000 | [diff] [blame] | 495 | } |
Shawn Guo | 6a7b406 | 2019-01-15 22:26:37 +0800 | [diff] [blame] | 496 | #ifdef CONFIG_ANDROID_BOOT_IMAGE |
| 497 | } else if (genimg_get_format(buf) == IMAGE_FORMAT_ANDROID) { |
Safae Ouajih | 636da20 | 2023-02-06 00:50:17 +0100 | [diff] [blame] | 498 | void *hdr = buf; |
chenshuo | 6e31458 | 2020-07-20 08:48:15 +0800 | [diff] [blame] | 499 | ulong fdt_data, fdt_len; |
| 500 | u32 fdt_size, dtb_idx; |
| 501 | /* |
| 502 | * Firstly check if this android boot image has dtb field. |
| 503 | */ |
| 504 | dtb_idx = (u32)env_get_ulong("adtb_idx", 10, 0); |
Mattijs Korpershoek | 58fed99 | 2024-07-10 10:40:02 +0200 | [diff] [blame] | 505 | if (android_image_get_dtb_by_index((ulong)hdr, get_avendor_bootimg_addr(), |
Safae Ouajih | e058176 | 2023-02-06 00:50:11 +0100 | [diff] [blame] | 506 | dtb_idx, &fdt_addr, &fdt_size)) { |
chenshuo | 6e31458 | 2020-07-20 08:48:15 +0800 | [diff] [blame] | 507 | fdt_blob = (char *)map_sysmem(fdt_addr, 0); |
| 508 | if (fdt_check_header(fdt_blob)) |
| 509 | goto no_fdt; |
Shawn Guo | 6a7b406 | 2019-01-15 22:26:37 +0800 | [diff] [blame] | 510 | |
chenshuo | 6e31458 | 2020-07-20 08:48:15 +0800 | [diff] [blame] | 511 | debug("## Using FDT in Android image dtb area with idx %u\n", dtb_idx); |
| 512 | } else if (!android_image_get_second(hdr, &fdt_data, &fdt_len) && |
| 513 | !fdt_check_header((char *)fdt_data)) { |
Eugeniu Rosca | 18b8f2c | 2019-04-01 12:45:36 +0200 | [diff] [blame] | 514 | fdt_blob = (char *)fdt_data; |
| 515 | if (fdt_totalsize(fdt_blob) != fdt_len) |
| 516 | goto error; |
Shawn Guo | 6a7b406 | 2019-01-15 22:26:37 +0800 | [diff] [blame] | 517 | |
Eugeniu Rosca | 18b8f2c | 2019-04-01 12:45:36 +0200 | [diff] [blame] | 518 | debug("## Using FDT in Android image second area\n"); |
| 519 | } else { |
Eugeniu Rosca | 6239267 | 2019-04-01 12:52:52 +0200 | [diff] [blame] | 520 | fdt_addr = env_get_hex("fdtaddr", 0); |
| 521 | if (!fdt_addr) |
| 522 | goto no_fdt; |
Shawn Guo | 6a7b406 | 2019-01-15 22:26:37 +0800 | [diff] [blame] | 523 | |
Eugeniu Rosca | 6239267 | 2019-04-01 12:52:52 +0200 | [diff] [blame] | 524 | fdt_blob = map_sysmem(fdt_addr, 0); |
| 525 | if (fdt_check_header(fdt_blob)) |
| 526 | goto no_fdt; |
Shawn Guo | 6a7b406 | 2019-01-15 22:26:37 +0800 | [diff] [blame] | 527 | |
Eugeniu Rosca | 6239267 | 2019-04-01 12:52:52 +0200 | [diff] [blame] | 528 | debug("## Using FDT at ${fdtaddr}=Ox%lx\n", fdt_addr); |
Eugeniu Rosca | 18b8f2c | 2019-04-01 12:45:36 +0200 | [diff] [blame] | 529 | } |
Shawn Guo | 6a7b406 | 2019-01-15 22:26:37 +0800 | [diff] [blame] | 530 | #endif |
Simon Glass | 44d3a30 | 2013-05-08 08:06:00 +0000 | [diff] [blame] | 531 | } else { |
| 532 | debug("## No Flattened Device Tree\n"); |
Suriyan Ramasami | 48aead7 | 2014-11-27 13:24:16 -0800 | [diff] [blame] | 533 | goto no_fdt; |
Simon Glass | 44d3a30 | 2013-05-08 08:06:00 +0000 | [diff] [blame] | 534 | } |
| 535 | |
| 536 | *of_flat_tree = fdt_blob; |
| 537 | *of_size = fdt_totalsize(fdt_blob); |
| 538 | debug(" of_flat_tree at 0x%08lx size 0x%08lx\n", |
| 539 | (ulong)*of_flat_tree, *of_size); |
| 540 | |
| 541 | return 0; |
| 542 | |
Suriyan Ramasami | 48aead7 | 2014-11-27 13:24:16 -0800 | [diff] [blame] | 543 | no_fdt: |
Eugeniu Rosca | 8028182 | 2019-04-01 12:45:35 +0200 | [diff] [blame] | 544 | debug("Continuing to boot without FDT\n"); |
| 545 | return 0; |
Simon Glass | 44d3a30 | 2013-05-08 08:06:00 +0000 | [diff] [blame] | 546 | error: |
Simon Glass | 44d3a30 | 2013-05-08 08:06:00 +0000 | [diff] [blame] | 547 | return 1; |
| 548 | } |
Simon Glass | 13d0698 | 2013-05-08 08:06:01 +0000 | [diff] [blame] | 549 | |
| 550 | /* |
| 551 | * Verify the device tree. |
| 552 | * |
| 553 | * This function is called after all device tree fix-ups have been enacted, |
| 554 | * so that the final device tree can be verified. The definition of "verified" |
| 555 | * is up to the specific implementation. However, it generally means that the |
| 556 | * addresses of some of the devices in the device tree are compared with the |
| 557 | * actual addresses at which U-Boot has placed them. |
| 558 | * |
Bin Meng | a187559 | 2016-02-05 19:30:11 -0800 | [diff] [blame] | 559 | * Returns 1 on success, 0 on failure. If 0 is returned, U-Boot will halt the |
Simon Glass | 13d0698 | 2013-05-08 08:06:01 +0000 | [diff] [blame] | 560 | * boot process. |
| 561 | */ |
| 562 | __weak int ft_verify_fdt(void *fdt) |
| 563 | { |
| 564 | return 1; |
| 565 | } |
| 566 | |
Alexey Brodkin | 4280342 | 2018-01-24 20:47:09 +0300 | [diff] [blame] | 567 | __weak int arch_fixup_fdt(void *blob) |
| 568 | { |
| 569 | return 0; |
| 570 | } |
| 571 | |
Simon Glass | d9d7c20 | 2022-09-06 20:26:50 -0600 | [diff] [blame] | 572 | int image_setup_libfdt(struct bootm_headers *images, void *blob, |
Simon Glass | 1de1a03 | 2023-11-12 08:27:44 -0700 | [diff] [blame] | 573 | struct lmb *lmb) |
Simon Glass | 13d0698 | 2013-05-08 08:06:01 +0000 | [diff] [blame] | 574 | { |
| 575 | ulong *initrd_start = &images->initrd_start; |
| 576 | ulong *initrd_end = &images->initrd_end; |
Matthias Schiffer | e91d660 | 2023-12-11 12:03:17 +0100 | [diff] [blame] | 577 | int ret, fdt_ret, of_size; |
| 578 | |
| 579 | if (IS_ENABLED(CONFIG_OF_ENV_SETUP)) { |
| 580 | const char *fdt_fixup; |
| 581 | |
| 582 | fdt_fixup = env_get("fdt_fixup"); |
| 583 | if (fdt_fixup) { |
| 584 | set_working_fdt_addr(map_to_sysmem(blob)); |
| 585 | ret = run_command_list(fdt_fixup, -1, 0); |
| 586 | if (ret) |
| 587 | printf("WARNING: fdt_fixup command returned %d\n", |
| 588 | ret); |
| 589 | } |
| 590 | } |
| 591 | |
| 592 | ret = -EPERM; |
Simon Glass | 13d0698 | 2013-05-08 08:06:01 +0000 | [diff] [blame] | 593 | |
Paul Kocialkowski | 10be5b5 | 2015-05-21 11:27:03 +0200 | [diff] [blame] | 594 | if (fdt_root(blob) < 0) { |
| 595 | printf("ERROR: root node setup failed\n"); |
| 596 | goto err; |
| 597 | } |
Masahiro Yamada | bc6ed0f | 2014-04-18 17:41:00 +0900 | [diff] [blame] | 598 | if (fdt_chosen(blob) < 0) { |
Simon Glass | 6f4dbc2 | 2014-10-23 18:58:53 -0600 | [diff] [blame] | 599 | printf("ERROR: /chosen node create failed\n"); |
| 600 | goto err; |
Simon Glass | 13d0698 | 2013-05-08 08:06:01 +0000 | [diff] [blame] | 601 | } |
Ma Haijun | e29607e | 2014-07-12 14:24:06 +0100 | [diff] [blame] | 602 | if (arch_fixup_fdt(blob) < 0) { |
Simon Glass | 6f4dbc2 | 2014-10-23 18:58:53 -0600 | [diff] [blame] | 603 | printf("ERROR: arch-specific fdt fixup failed\n"); |
| 604 | goto err; |
Ma Haijun | e29607e | 2014-07-12 14:24:06 +0100 | [diff] [blame] | 605 | } |
Etienne Carriere | 5f9070a | 2020-06-05 09:22:54 +0200 | [diff] [blame] | 606 | |
Patrick Delaunay | a253524 | 2021-02-08 13:54:31 +0100 | [diff] [blame] | 607 | fdt_ret = optee_copy_fdt_nodes(blob); |
Etienne Carriere | 5f9070a | 2020-06-05 09:22:54 +0200 | [diff] [blame] | 608 | if (fdt_ret) { |
| 609 | printf("ERROR: transfer of optee nodes to new fdt failed: %s\n", |
| 610 | fdt_strerror(fdt_ret)); |
| 611 | goto err; |
| 612 | } |
| 613 | |
Daniel Golle | 5f2d591 | 2022-04-12 21:00:43 +0100 | [diff] [blame] | 614 | /* Store name of configuration node as u-boot,bootconf in /chosen node */ |
| 615 | if (images->fit_uname_cfg) |
| 616 | fdt_find_and_setprop(blob, "/chosen", "u-boot,bootconf", |
| 617 | images->fit_uname_cfg, |
| 618 | strlen(images->fit_uname_cfg) + 1, 1); |
| 619 | |
Tom Rini | 26d6119 | 2017-04-28 08:51:44 -0400 | [diff] [blame] | 620 | /* Update ethernet nodes */ |
| 621 | fdt_fixup_ethernet(blob); |
Simon Glass | 39c0da4 | 2023-02-05 15:36:38 -0700 | [diff] [blame] | 622 | #if IS_ENABLED(CONFIG_CMD_PSTORE) |
Frédéric Danis | 9ea0a1e | 2020-03-20 10:59:24 +0100 | [diff] [blame] | 623 | /* Append PStore configuration */ |
| 624 | fdt_fixup_pstore(blob); |
| 625 | #endif |
Simon Glass | 30ba282 | 2021-09-25 19:43:26 -0600 | [diff] [blame] | 626 | if (IS_ENABLED(CONFIG_OF_BOARD_SETUP)) { |
Wasim Khan | 402558b | 2021-02-04 15:44:04 +0100 | [diff] [blame] | 627 | const char *skip_board_fixup; |
| 628 | |
| 629 | skip_board_fixup = env_get("skip_board_fixup"); |
| 630 | if (skip_board_fixup && ((int)simple_strtol(skip_board_fixup, NULL, 10) == 1)) { |
| 631 | printf("skip board fdt fixup\n"); |
| 632 | } else { |
| 633 | fdt_ret = ft_board_setup(blob, gd->bd); |
| 634 | if (fdt_ret) { |
| 635 | printf("ERROR: board-specific fdt fixup failed: %s\n", |
| 636 | fdt_strerror(fdt_ret)); |
| 637 | goto err; |
| 638 | } |
Simon Glass | 6f4dbc2 | 2014-10-23 18:58:53 -0600 | [diff] [blame] | 639 | } |
| 640 | } |
Simon Glass | 3ac0f50 | 2021-09-25 19:43:27 -0600 | [diff] [blame] | 641 | if (IS_ENABLED(CONFIG_OF_SYSTEM_SETUP)) { |
Max Krummenacher | d89212b | 2015-08-05 17:17:03 +0200 | [diff] [blame] | 642 | fdt_ret = ft_system_setup(blob, gd->bd); |
| 643 | if (fdt_ret) { |
Simon Glass | c654b51 | 2014-10-23 18:58:54 -0600 | [diff] [blame] | 644 | printf("ERROR: system-specific fdt fixup failed: %s\n", |
| 645 | fdt_strerror(fdt_ret)); |
| 646 | goto err; |
| 647 | } |
| 648 | } |
Simon Glass | f2cbe6e | 2023-11-12 08:27:48 -0700 | [diff] [blame] | 649 | |
| 650 | if (fdt_initrd(blob, *initrd_start, *initrd_end)) |
| 651 | goto err; |
| 652 | |
Simon Glass | dbdc9c6 | 2023-11-12 08:27:50 -0700 | [diff] [blame] | 653 | if (!ft_verify_fdt(blob)) |
| 654 | goto err; |
| 655 | |
| 656 | /* after here we are using a livetree */ |
Simon Glass | 33ba727 | 2022-10-11 09:47:15 -0600 | [diff] [blame] | 657 | if (!of_live_active() && CONFIG_IS_ENABLED(EVENT)) { |
Simon Glass | 98887ab | 2022-07-30 15:52:31 -0600 | [diff] [blame] | 658 | struct event_ft_fixup fixup; |
| 659 | |
Simon Glass | 33ba727 | 2022-10-11 09:47:15 -0600 | [diff] [blame] | 660 | fixup.tree = oftree_from_fdt(blob); |
Simon Glass | b215b60 | 2022-09-06 20:26:58 -0600 | [diff] [blame] | 661 | fixup.images = images; |
Simon Glass | 33ba727 | 2022-10-11 09:47:15 -0600 | [diff] [blame] | 662 | if (oftree_valid(fixup.tree)) { |
| 663 | ret = event_notify(EVT_FT_FIXUP, &fixup, sizeof(fixup)); |
| 664 | if (ret) { |
| 665 | printf("ERROR: fdt fixup event failed: %d\n", |
| 666 | ret); |
| 667 | goto err; |
| 668 | } |
Simon Glass | 98887ab | 2022-07-30 15:52:31 -0600 | [diff] [blame] | 669 | } |
| 670 | } |
Simon Glass | 13d0698 | 2013-05-08 08:06:01 +0000 | [diff] [blame] | 671 | |
| 672 | /* Delete the old LMB reservation */ |
Alexander Graf | dea2174 | 2016-03-04 01:10:13 +0100 | [diff] [blame] | 673 | if (lmb) |
Simon Glass | 79e9727 | 2023-11-12 08:27:49 -0700 | [diff] [blame] | 674 | lmb_free(lmb, map_to_sysmem(blob), fdt_totalsize(blob)); |
Simon Glass | 13d0698 | 2013-05-08 08:06:01 +0000 | [diff] [blame] | 675 | |
Hannes Schmelzer | ef47683 | 2016-09-20 18:10:43 +0200 | [diff] [blame] | 676 | ret = fdt_shrink_to_minimum(blob, 0); |
Simon Glass | 13d0698 | 2013-05-08 08:06:01 +0000 | [diff] [blame] | 677 | if (ret < 0) |
Simon Glass | 6f4dbc2 | 2014-10-23 18:58:53 -0600 | [diff] [blame] | 678 | goto err; |
Simon Glass | 13d0698 | 2013-05-08 08:06:01 +0000 | [diff] [blame] | 679 | of_size = ret; |
| 680 | |
Simon Glass | 13d0698 | 2013-05-08 08:06:01 +0000 | [diff] [blame] | 681 | /* Create a new LMB reservation */ |
Alexander Graf | dea2174 | 2016-03-04 01:10:13 +0100 | [diff] [blame] | 682 | if (lmb) |
Simon Glass | 79e9727 | 2023-11-12 08:27:49 -0700 | [diff] [blame] | 683 | lmb_reserve(lmb, map_to_sysmem(blob), of_size); |
Simon Glass | 13d0698 | 2013-05-08 08:06:01 +0000 | [diff] [blame] | 684 | |
Tom Rini | f899cc1 | 2021-09-12 20:32:32 -0400 | [diff] [blame] | 685 | #if defined(CONFIG_ARCH_KEYSTONE) |
Simon Glass | 30ba282 | 2021-09-25 19:43:26 -0600 | [diff] [blame] | 686 | if (IS_ENABLED(CONFIG_OF_BOARD_SETUP)) |
Vitaly Andrianov | 00c200f | 2014-04-04 13:16:47 -0400 | [diff] [blame] | 687 | ft_board_setup_ex(blob, gd->bd); |
| 688 | #endif |
| 689 | |
Simon Glass | 13d0698 | 2013-05-08 08:06:01 +0000 | [diff] [blame] | 690 | return 0; |
Simon Glass | 6f4dbc2 | 2014-10-23 18:58:53 -0600 | [diff] [blame] | 691 | err: |
| 692 | printf(" - must RESET the board to recover.\n\n"); |
| 693 | |
| 694 | return ret; |
Simon Glass | 13d0698 | 2013-05-08 08:06:01 +0000 | [diff] [blame] | 695 | } |