1 // SPDX-License-Identifier: GPL-2.0+ 2 /* 3 * Copyright (c) 2011 The Chromium OS Authors. 4 */ 5 6 #ifndef USE_HOSTCC 7 #include <common.h> 8 #include <boot_fit.h> 9 #include <dm.h> 10 #include <dm/of_extra.h> 11 #include <errno.h> 12 #include <fdtdec.h> 13 #include <fdt_support.h> 14 #include <mapmem.h> 15 #include <linux/libfdt.h> 16 #include <serial.h> 17 #include <asm/sections.h> 18 #include <linux/ctype.h> 19 #include <linux/lzo.h> 20 21 DECLARE_GLOBAL_DATA_PTR; 22 23 /* 24 * Here are the type we know about. One day we might allow drivers to 25 * register. For now we just put them here. The COMPAT macro allows us to 26 * turn this into a sparse list later, and keeps the ID with the name. 27 * 28 * NOTE: This list is basically a TODO list for things that need to be 29 * converted to driver model. So don't add new things here unless there is a 30 * good reason why driver-model conversion is infeasible. Examples include 31 * things which are used before driver model is available. 32 */ 33 #define COMPAT(id, name) name 34 static const char * const compat_names[COMPAT_COUNT] = { 35 COMPAT(UNKNOWN, "<none>"), 36 COMPAT(NVIDIA_TEGRA20_EMC, "nvidia,tegra20-emc"), 37 COMPAT(NVIDIA_TEGRA20_EMC_TABLE, "nvidia,tegra20-emc-table"), 38 COMPAT(NVIDIA_TEGRA20_NAND, "nvidia,tegra20-nand"), 39 COMPAT(NVIDIA_TEGRA124_XUSB_PADCTL, "nvidia,tegra124-xusb-padctl"), 40 COMPAT(NVIDIA_TEGRA210_XUSB_PADCTL, "nvidia,tegra210-xusb-padctl"), 41 COMPAT(SMSC_LAN9215, "smsc,lan9215"), 42 COMPAT(SAMSUNG_EXYNOS5_SROMC, "samsung,exynos-sromc"), 43 COMPAT(SAMSUNG_S3C2440_I2C, "samsung,s3c2440-i2c"), 44 COMPAT(SAMSUNG_EXYNOS5_SOUND, "samsung,exynos-sound"), 45 COMPAT(WOLFSON_WM8994_CODEC, "wolfson,wm8994-codec"), 46 COMPAT(SAMSUNG_EXYNOS_USB_PHY, "samsung,exynos-usb-phy"), 47 COMPAT(SAMSUNG_EXYNOS5_USB3_PHY, "samsung,exynos5250-usb3-phy"), 48 COMPAT(SAMSUNG_EXYNOS_TMU, "samsung,exynos-tmu"), 49 COMPAT(SAMSUNG_EXYNOS_MIPI_DSI, "samsung,exynos-mipi-dsi"), 50 COMPAT(SAMSUNG_EXYNOS_DWMMC, "samsung,exynos-dwmmc"), 51 COMPAT(SAMSUNG_EXYNOS_MMC, "samsung,exynos-mmc"), 52 COMPAT(GENERIC_SPI_FLASH, "spi-flash"), 53 COMPAT(MAXIM_98095_CODEC, "maxim,max98095-codec"), 54 COMPAT(SAMSUNG_EXYNOS5_I2C, "samsung,exynos5-hsi2c"), 55 COMPAT(SAMSUNG_EXYNOS_SYSMMU, "samsung,sysmmu-v3.3"), 56 COMPAT(INTEL_MICROCODE, "intel,microcode"), 57 COMPAT(AMS_AS3722, "ams,as3722"), 58 COMPAT(INTEL_QRK_MRC, "intel,quark-mrc"), 59 COMPAT(ALTERA_SOCFPGA_DWMAC, "altr,socfpga-stmmac"), 60 COMPAT(ALTERA_SOCFPGA_DWMMC, "altr,socfpga-dw-mshc"), 61 COMPAT(ALTERA_SOCFPGA_DWC2USB, "snps,dwc2"), 62 COMPAT(INTEL_BAYTRAIL_FSP, "intel,baytrail-fsp"), 63 COMPAT(INTEL_BAYTRAIL_FSP_MDP, "intel,baytrail-fsp-mdp"), 64 COMPAT(INTEL_IVYBRIDGE_FSP, "intel,ivybridge-fsp"), 65 COMPAT(COMPAT_SUNXI_NAND, "allwinner,sun4i-a10-nand"), 66 COMPAT(ALTERA_SOCFPGA_CLK, "altr,clk-mgr"), 67 COMPAT(ALTERA_SOCFPGA_PINCTRL_SINGLE, "pinctrl-single"), 68 COMPAT(ALTERA_SOCFPGA_H2F_BRG, "altr,socfpga-hps2fpga-bridge"), 69 COMPAT(ALTERA_SOCFPGA_LWH2F_BRG, "altr,socfpga-lwhps2fpga-bridge"), 70 COMPAT(ALTERA_SOCFPGA_F2H_BRG, "altr,socfpga-fpga2hps-bridge"), 71 COMPAT(ALTERA_SOCFPGA_F2SDR0, "altr,socfpga-fpga2sdram0-bridge"), 72 COMPAT(ALTERA_SOCFPGA_F2SDR1, "altr,socfpga-fpga2sdram1-bridge"), 73 COMPAT(ALTERA_SOCFPGA_F2SDR2, "altr,socfpga-fpga2sdram2-bridge"), 74 COMPAT(ALTERA_SOCFPGA_FPGA0, "altr,socfpga-a10-fpga-mgr"), 75 COMPAT(ALTERA_SOCFPGA_NOC, "altr,socfpga-a10-noc"), 76 COMPAT(ALTERA_SOCFPGA_CLK_INIT, "altr,socfpga-a10-clk-init") 77 }; 78 79 const char *fdtdec_get_compatible(enum fdt_compat_id id) 80 { 81 /* We allow reading of the 'unknown' ID for testing purposes */ 82 assert(id >= 0 && id < COMPAT_COUNT); 83 return compat_names[id]; 84 } 85 86 fdt_addr_t fdtdec_get_addr_size_fixed(const void *blob, int node, 87 const char *prop_name, int index, int na, 88 int ns, fdt_size_t *sizep, 89 bool translate) 90 { 91 const fdt32_t *prop, *prop_end; 92 const fdt32_t *prop_addr, *prop_size, *prop_after_size; 93 int len; 94 fdt_addr_t addr; 95 96 debug("%s: %s: ", __func__, prop_name); 97 98 prop = fdt_getprop(blob, node, prop_name, &len); 99 if (!prop) { 100 debug("(not found)\n"); 101 return FDT_ADDR_T_NONE; 102 } 103 prop_end = prop + (len / sizeof(*prop)); 104 105 prop_addr = prop + (index * (na + ns)); 106 prop_size = prop_addr + na; 107 prop_after_size = prop_size + ns; 108 if (prop_after_size > prop_end) { 109 debug("(not enough data: expected >= %d cells, got %d cells)\n", 110 (u32)(prop_after_size - prop), ((u32)(prop_end - prop))); 111 return FDT_ADDR_T_NONE; 112 } 113 114 #if CONFIG_IS_ENABLED(OF_TRANSLATE) 115 if (translate) 116 addr = fdt_translate_address(blob, node, prop_addr); 117 else 118 #endif 119 addr = fdtdec_get_number(prop_addr, na); 120 121 if (sizep) { 122 *sizep = fdtdec_get_number(prop_size, ns); 123 debug("addr=%08llx, size=%llx\n", (unsigned long long)addr, 124 (unsigned long long)*sizep); 125 } else { 126 debug("addr=%08llx\n", (unsigned long long)addr); 127 } 128 129 return addr; 130 } 131 132 fdt_addr_t fdtdec_get_addr_size_auto_parent(const void *blob, int parent, 133 int node, const char *prop_name, 134 int index, fdt_size_t *sizep, 135 bool translate) 136 { 137 int na, ns; 138 139 debug("%s: ", __func__); 140 141 na = fdt_address_cells(blob, parent); 142 if (na < 1) { 143 debug("(bad #address-cells)\n"); 144 return FDT_ADDR_T_NONE; 145 } 146 147 ns = fdt_size_cells(blob, parent); 148 if (ns < 0) { 149 debug("(bad #size-cells)\n"); 150 return FDT_ADDR_T_NONE; 151 } 152 153 debug("na=%d, ns=%d, ", na, ns); 154 155 return fdtdec_get_addr_size_fixed(blob, node, prop_name, index, na, 156 ns, sizep, translate); 157 } 158 159 fdt_addr_t fdtdec_get_addr_size_auto_noparent(const void *blob, int node, 160 const char *prop_name, int index, 161 fdt_size_t *sizep, 162 bool translate) 163 { 164 int parent; 165 166 debug("%s: ", __func__); 167 168 parent = fdt_parent_offset(blob, node); 169 if (parent < 0) { 170 debug("(no parent found)\n"); 171 return FDT_ADDR_T_NONE; 172 } 173 174 return fdtdec_get_addr_size_auto_parent(blob, parent, node, prop_name, 175 index, sizep, translate); 176 } 177 178 fdt_addr_t fdtdec_get_addr_size(const void *blob, int node, 179 const char *prop_name, fdt_size_t *sizep) 180 { 181 int ns = sizep ? (sizeof(fdt_size_t) / sizeof(fdt32_t)) : 0; 182 183 return fdtdec_get_addr_size_fixed(blob, node, prop_name, 0, 184 sizeof(fdt_addr_t) / sizeof(fdt32_t), 185 ns, sizep, false); 186 } 187 188 fdt_addr_t fdtdec_get_addr(const void *blob, int node, const char *prop_name) 189 { 190 return fdtdec_get_addr_size(blob, node, prop_name, NULL); 191 } 192 193 #if CONFIG_IS_ENABLED(PCI) && defined(CONFIG_DM_PCI) 194 int fdtdec_get_pci_addr(const void *blob, int node, enum fdt_pci_space type, 195 const char *prop_name, struct fdt_pci_addr *addr) 196 { 197 const u32 *cell; 198 int len; 199 int ret = -ENOENT; 200 201 debug("%s: %s: ", __func__, prop_name); 202 203 /* 204 * If we follow the pci bus bindings strictly, we should check 205 * the value of the node's parent node's #address-cells and 206 * #size-cells. They need to be 3 and 2 accordingly. However, 207 * for simplicity we skip the check here. 208 */ 209 cell = fdt_getprop(blob, node, prop_name, &len); 210 if (!cell) 211 goto fail; 212 213 if ((len % FDT_PCI_REG_SIZE) == 0) { 214 int num = len / FDT_PCI_REG_SIZE; 215 int i; 216 217 for (i = 0; i < num; i++) { 218 debug("pci address #%d: %08lx %08lx %08lx\n", i, 219 (ulong)fdt32_to_cpu(cell[0]), 220 (ulong)fdt32_to_cpu(cell[1]), 221 (ulong)fdt32_to_cpu(cell[2])); 222 if ((fdt32_to_cpu(*cell) & type) == type) { 223 addr->phys_hi = fdt32_to_cpu(cell[0]); 224 addr->phys_mid = fdt32_to_cpu(cell[1]); 225 addr->phys_lo = fdt32_to_cpu(cell[1]); 226 break; 227 } 228 229 cell += (FDT_PCI_ADDR_CELLS + 230 FDT_PCI_SIZE_CELLS); 231 } 232 233 if (i == num) { 234 ret = -ENXIO; 235 goto fail; 236 } 237 238 return 0; 239 } 240 241 ret = -EINVAL; 242 243 fail: 244 debug("(not found)\n"); 245 return ret; 246 } 247 248 int fdtdec_get_pci_vendev(const void *blob, int node, u16 *vendor, u16 *device) 249 { 250 const char *list, *end; 251 int len; 252 253 list = fdt_getprop(blob, node, "compatible", &len); 254 if (!list) 255 return -ENOENT; 256 257 end = list + len; 258 while (list < end) { 259 len = strlen(list); 260 if (len >= strlen("pciVVVV,DDDD")) { 261 char *s = strstr(list, "pci"); 262 263 /* 264 * check if the string is something like pciVVVV,DDDD.RR 265 * or just pciVVVV,DDDD 266 */ 267 if (s && s[7] == ',' && 268 (s[12] == '.' || s[12] == 0)) { 269 s += 3; 270 *vendor = simple_strtol(s, NULL, 16); 271 272 s += 5; 273 *device = simple_strtol(s, NULL, 16); 274 275 return 0; 276 } 277 } 278 list += (len + 1); 279 } 280 281 return -ENOENT; 282 } 283 284 int fdtdec_get_pci_bar32(struct udevice *dev, struct fdt_pci_addr *addr, 285 u32 *bar) 286 { 287 int barnum; 288 289 /* extract the bar number from fdt_pci_addr */ 290 barnum = addr->phys_hi & 0xff; 291 if (barnum < PCI_BASE_ADDRESS_0 || barnum > PCI_CARDBUS_CIS) 292 return -EINVAL; 293 294 barnum = (barnum - PCI_BASE_ADDRESS_0) / 4; 295 *bar = dm_pci_read_bar32(dev, barnum); 296 297 return 0; 298 } 299 #endif 300 301 uint64_t fdtdec_get_uint64(const void *blob, int node, const char *prop_name, 302 uint64_t default_val) 303 { 304 const uint64_t *cell64; 305 int length; 306 307 cell64 = fdt_getprop(blob, node, prop_name, &length); 308 if (!cell64 || length < sizeof(*cell64)) 309 return default_val; 310 311 return fdt64_to_cpu(*cell64); 312 } 313 314 int fdtdec_get_is_enabled(const void *blob, int node) 315 { 316 const char *cell; 317 318 /* 319 * It should say "okay", so only allow that. Some fdts use "ok" but 320 * this is a bug. Please fix your device tree source file. See here 321 * for discussion: 322 * 323 * http://www.mail-archive.com/u-boot@lists.denx.de/msg71598.html 324 */ 325 cell = fdt_getprop(blob, node, "status", NULL); 326 if (cell) 327 return strcmp(cell, "okay") == 0; 328 return 1; 329 } 330 331 enum fdt_compat_id fdtdec_lookup(const void *blob, int node) 332 { 333 enum fdt_compat_id id; 334 335 /* Search our drivers */ 336 for (id = COMPAT_UNKNOWN; id < COMPAT_COUNT; id++) 337 if (fdt_node_check_compatible(blob, node, 338 compat_names[id]) == 0) 339 return id; 340 return COMPAT_UNKNOWN; 341 } 342 343 int fdtdec_next_compatible(const void *blob, int node, enum fdt_compat_id id) 344 { 345 return fdt_node_offset_by_compatible(blob, node, compat_names[id]); 346 } 347 348 int fdtdec_next_compatible_subnode(const void *blob, int node, 349 enum fdt_compat_id id, int *depthp) 350 { 351 do { 352 node = fdt_next_node(blob, node, depthp); 353 } while (*depthp > 1); 354 355 /* If this is a direct subnode, and compatible, return it */ 356 if (*depthp == 1 && 0 == fdt_node_check_compatible( 357 blob, node, compat_names[id])) 358 return node; 359 360 return -FDT_ERR_NOTFOUND; 361 } 362 363 int fdtdec_next_alias(const void *blob, const char *name, enum fdt_compat_id id, 364 int *upto) 365 { 366 #define MAX_STR_LEN 20 367 char str[MAX_STR_LEN + 20]; 368 int node, err; 369 370 /* snprintf() is not available */ 371 assert(strlen(name) < MAX_STR_LEN); 372 sprintf(str, "%.*s%d", MAX_STR_LEN, name, *upto); 373 node = fdt_path_offset(blob, str); 374 if (node < 0) 375 return node; 376 err = fdt_node_check_compatible(blob, node, compat_names[id]); 377 if (err < 0) 378 return err; 379 if (err) 380 return -FDT_ERR_NOTFOUND; 381 (*upto)++; 382 return node; 383 } 384 385 int fdtdec_find_aliases_for_id(const void *blob, const char *name, 386 enum fdt_compat_id id, int *node_list, 387 int maxcount) 388 { 389 memset(node_list, '\0', sizeof(*node_list) * maxcount); 390 391 return fdtdec_add_aliases_for_id(blob, name, id, node_list, maxcount); 392 } 393 394 /* TODO: Can we tighten this code up a little? */ 395 int fdtdec_add_aliases_for_id(const void *blob, const char *name, 396 enum fdt_compat_id id, int *node_list, 397 int maxcount) 398 { 399 int name_len = strlen(name); 400 int nodes[maxcount]; 401 int num_found = 0; 402 int offset, node; 403 int alias_node; 404 int count; 405 int i, j; 406 407 /* find the alias node if present */ 408 alias_node = fdt_path_offset(blob, "/aliases"); 409 410 /* 411 * start with nothing, and we can assume that the root node can't 412 * match 413 */ 414 memset(nodes, '\0', sizeof(nodes)); 415 416 /* First find all the compatible nodes */ 417 for (node = count = 0; node >= 0 && count < maxcount;) { 418 node = fdtdec_next_compatible(blob, node, id); 419 if (node >= 0) 420 nodes[count++] = node; 421 } 422 if (node >= 0) 423 debug("%s: warning: maxcount exceeded with alias '%s'\n", 424 __func__, name); 425 426 /* Now find all the aliases */ 427 for (offset = fdt_first_property_offset(blob, alias_node); 428 offset > 0; 429 offset = fdt_next_property_offset(blob, offset)) { 430 const struct fdt_property *prop; 431 const char *path; 432 int number; 433 int found; 434 435 node = 0; 436 prop = fdt_get_property_by_offset(blob, offset, NULL); 437 path = fdt_string(blob, fdt32_to_cpu(prop->nameoff)); 438 if (prop->len && 0 == strncmp(path, name, name_len)) 439 node = fdt_path_offset(blob, prop->data); 440 if (node <= 0) 441 continue; 442 443 /* Get the alias number */ 444 number = simple_strtoul(path + name_len, NULL, 10); 445 if (number < 0 || number >= maxcount) { 446 debug("%s: warning: alias '%s' is out of range\n", 447 __func__, path); 448 continue; 449 } 450 451 /* Make sure the node we found is actually in our list! */ 452 found = -1; 453 for (j = 0; j < count; j++) 454 if (nodes[j] == node) { 455 found = j; 456 break; 457 } 458 459 if (found == -1) { 460 debug("%s: warning: alias '%s' points to a node " 461 "'%s' that is missing or is not compatible " 462 " with '%s'\n", __func__, path, 463 fdt_get_name(blob, node, NULL), 464 compat_names[id]); 465 continue; 466 } 467 468 /* 469 * Add this node to our list in the right place, and mark 470 * it as done. 471 */ 472 if (fdtdec_get_is_enabled(blob, node)) { 473 if (node_list[number]) { 474 debug("%s: warning: alias '%s' requires that " 475 "a node be placed in the list in a " 476 "position which is already filled by " 477 "node '%s'\n", __func__, path, 478 fdt_get_name(blob, node, NULL)); 479 continue; 480 } 481 node_list[number] = node; 482 if (number >= num_found) 483 num_found = number + 1; 484 } 485 nodes[found] = 0; 486 } 487 488 /* Add any nodes not mentioned by an alias */ 489 for (i = j = 0; i < maxcount; i++) { 490 if (!node_list[i]) { 491 for (; j < maxcount; j++) 492 if (nodes[j] && 493 fdtdec_get_is_enabled(blob, nodes[j])) 494 break; 495 496 /* Have we run out of nodes to add? */ 497 if (j == maxcount) 498 break; 499 500 assert(!node_list[i]); 501 node_list[i] = nodes[j++]; 502 if (i >= num_found) 503 num_found = i + 1; 504 } 505 } 506 507 return num_found; 508 } 509 510 int fdtdec_get_alias_seq(const void *blob, const char *base, int offset, 511 int *seqp) 512 { 513 int base_len = strlen(base); 514 const char *find_name; 515 int find_namelen; 516 int prop_offset; 517 int aliases; 518 519 find_name = fdt_get_name(blob, offset, &find_namelen); 520 debug("Looking for '%s' at %d, name %s\n", base, offset, find_name); 521 522 aliases = fdt_path_offset(blob, "/aliases"); 523 for (prop_offset = fdt_first_property_offset(blob, aliases); 524 prop_offset > 0; 525 prop_offset = fdt_next_property_offset(blob, prop_offset)) { 526 const char *prop; 527 const char *name; 528 const char *slash; 529 int len, val; 530 531 prop = fdt_getprop_by_offset(blob, prop_offset, &name, &len); 532 debug(" - %s, %s\n", name, prop); 533 if (len < find_namelen || *prop != '/' || prop[len - 1] || 534 strncmp(name, base, base_len)) 535 continue; 536 537 slash = strrchr(prop, '/'); 538 if (strcmp(slash + 1, find_name)) 539 continue; 540 val = trailing_strtol(name); 541 if (val != -1) { 542 *seqp = val; 543 debug("Found seq %d\n", *seqp); 544 return 0; 545 } 546 } 547 548 debug("Not found\n"); 549 return -ENOENT; 550 } 551 552 const char *fdtdec_get_chosen_prop(const void *blob, const char *name) 553 { 554 int chosen_node; 555 556 if (!blob) 557 return NULL; 558 chosen_node = fdt_path_offset(blob, "/chosen"); 559 return fdt_getprop(blob, chosen_node, name, NULL); 560 } 561 562 int fdtdec_get_chosen_node(const void *blob, const char *name) 563 { 564 const char *prop; 565 566 prop = fdtdec_get_chosen_prop(blob, name); 567 if (!prop) 568 return -FDT_ERR_NOTFOUND; 569 return fdt_path_offset(blob, prop); 570 } 571 572 int fdtdec_check_fdt(void) 573 { 574 /* 575 * We must have an FDT, but we cannot panic() yet since the console 576 * is not ready. So for now, just assert(). Boards which need an early 577 * FDT (prior to console ready) will need to make their own 578 * arrangements and do their own checks. 579 */ 580 assert(!fdtdec_prepare_fdt()); 581 return 0; 582 } 583 584 /* 585 * This function is a little odd in that it accesses global data. At some 586 * point if the architecture board.c files merge this will make more sense. 587 * Even now, it is common code. 588 */ 589 int fdtdec_prepare_fdt(void) 590 { 591 if (!gd->fdt_blob || ((uintptr_t)gd->fdt_blob & 3) || 592 fdt_check_header(gd->fdt_blob)) { 593 #ifdef CONFIG_SPL_BUILD 594 puts("Missing DTB\n"); 595 #else 596 puts("No valid device tree binary found - please append one to U-Boot binary, use u-boot-dtb.bin or define CONFIG_OF_EMBED. For sandbox, use -d <file.dtb>\n"); 597 # ifdef DEBUG 598 if (gd->fdt_blob) { 599 printf("fdt_blob=%p\n", gd->fdt_blob); 600 print_buffer((ulong)gd->fdt_blob, gd->fdt_blob, 4, 601 32, 0); 602 } 603 # endif 604 #endif 605 return -1; 606 } 607 return 0; 608 } 609 610 int fdtdec_lookup_phandle(const void *blob, int node, const char *prop_name) 611 { 612 const u32 *phandle; 613 int lookup; 614 615 debug("%s: %s\n", __func__, prop_name); 616 phandle = fdt_getprop(blob, node, prop_name, NULL); 617 if (!phandle) 618 return -FDT_ERR_NOTFOUND; 619 620 lookup = fdt_node_offset_by_phandle(blob, fdt32_to_cpu(*phandle)); 621 return lookup; 622 } 623 624 /** 625 * Look up a property in a node and check that it has a minimum length. 626 * 627 * @param blob FDT blob 628 * @param node node to examine 629 * @param prop_name name of property to find 630 * @param min_len minimum property length in bytes 631 * @param err 0 if ok, or -FDT_ERR_NOTFOUND if the property is not 632 found, or -FDT_ERR_BADLAYOUT if not enough data 633 * @return pointer to cell, which is only valid if err == 0 634 */ 635 static const void *get_prop_check_min_len(const void *blob, int node, 636 const char *prop_name, int min_len, 637 int *err) 638 { 639 const void *cell; 640 int len; 641 642 debug("%s: %s\n", __func__, prop_name); 643 cell = fdt_getprop(blob, node, prop_name, &len); 644 if (!cell) 645 *err = -FDT_ERR_NOTFOUND; 646 else if (len < min_len) 647 *err = -FDT_ERR_BADLAYOUT; 648 else 649 *err = 0; 650 return cell; 651 } 652 653 int fdtdec_get_int_array(const void *blob, int node, const char *prop_name, 654 u32 *array, int count) 655 { 656 const u32 *cell; 657 int err = 0; 658 659 debug("%s: %s\n", __func__, prop_name); 660 cell = get_prop_check_min_len(blob, node, prop_name, 661 sizeof(u32) * count, &err); 662 if (!err) { 663 int i; 664 665 for (i = 0; i < count; i++) 666 array[i] = fdt32_to_cpu(cell[i]); 667 } 668 return err; 669 } 670 671 int fdtdec_get_int_array_count(const void *blob, int node, 672 const char *prop_name, u32 *array, int count) 673 { 674 const u32 *cell; 675 int len, elems; 676 int i; 677 678 debug("%s: %s\n", __func__, prop_name); 679 cell = fdt_getprop(blob, node, prop_name, &len); 680 if (!cell) 681 return -FDT_ERR_NOTFOUND; 682 elems = len / sizeof(u32); 683 if (count > elems) 684 count = elems; 685 for (i = 0; i < count; i++) 686 array[i] = fdt32_to_cpu(cell[i]); 687 688 return count; 689 } 690 691 const u32 *fdtdec_locate_array(const void *blob, int node, 692 const char *prop_name, int count) 693 { 694 const u32 *cell; 695 int err; 696 697 cell = get_prop_check_min_len(blob, node, prop_name, 698 sizeof(u32) * count, &err); 699 return err ? NULL : cell; 700 } 701 702 int fdtdec_get_bool(const void *blob, int node, const char *prop_name) 703 { 704 const s32 *cell; 705 int len; 706 707 debug("%s: %s\n", __func__, prop_name); 708 cell = fdt_getprop(blob, node, prop_name, &len); 709 return cell != NULL; 710 } 711 712 int fdtdec_parse_phandle_with_args(const void *blob, int src_node, 713 const char *list_name, 714 const char *cells_name, 715 int cell_count, int index, 716 struct fdtdec_phandle_args *out_args) 717 { 718 const __be32 *list, *list_end; 719 int rc = 0, size, cur_index = 0; 720 uint32_t count = 0; 721 int node = -1; 722 int phandle; 723 724 /* Retrieve the phandle list property */ 725 list = fdt_getprop(blob, src_node, list_name, &size); 726 if (!list) 727 return -ENOENT; 728 list_end = list + size / sizeof(*list); 729 730 /* Loop over the phandles until all the requested entry is found */ 731 while (list < list_end) { 732 rc = -EINVAL; 733 count = 0; 734 735 /* 736 * If phandle is 0, then it is an empty entry with no 737 * arguments. Skip forward to the next entry. 738 */ 739 phandle = be32_to_cpup(list++); 740 if (phandle) { 741 /* 742 * Find the provider node and parse the #*-cells 743 * property to determine the argument length. 744 * 745 * This is not needed if the cell count is hard-coded 746 * (i.e. cells_name not set, but cell_count is set), 747 * except when we're going to return the found node 748 * below. 749 */ 750 if (cells_name || cur_index == index) { 751 node = fdt_node_offset_by_phandle(blob, 752 phandle); 753 if (!node) { 754 debug("%s: could not find phandle\n", 755 fdt_get_name(blob, src_node, 756 NULL)); 757 goto err; 758 } 759 } 760 761 if (cells_name) { 762 count = fdtdec_get_int(blob, node, cells_name, 763 -1); 764 if (count == -1) { 765 debug("%s: could not get %s for %s\n", 766 fdt_get_name(blob, src_node, 767 NULL), 768 cells_name, 769 fdt_get_name(blob, node, 770 NULL)); 771 goto err; 772 } 773 } else { 774 count = cell_count; 775 } 776 777 /* 778 * Make sure that the arguments actually fit in the 779 * remaining property data length 780 */ 781 if (list + count > list_end) { 782 debug("%s: arguments longer than property\n", 783 fdt_get_name(blob, src_node, NULL)); 784 goto err; 785 } 786 } 787 788 /* 789 * All of the error cases above bail out of the loop, so at 790 * this point, the parsing is successful. If the requested 791 * index matches, then fill the out_args structure and return, 792 * or return -ENOENT for an empty entry. 793 */ 794 rc = -ENOENT; 795 if (cur_index == index) { 796 if (!phandle) 797 goto err; 798 799 if (out_args) { 800 int i; 801 802 if (count > MAX_PHANDLE_ARGS) { 803 debug("%s: too many arguments %d\n", 804 fdt_get_name(blob, src_node, 805 NULL), count); 806 count = MAX_PHANDLE_ARGS; 807 } 808 out_args->node = node; 809 out_args->args_count = count; 810 for (i = 0; i < count; i++) { 811 out_args->args[i] = 812 be32_to_cpup(list++); 813 } 814 } 815 816 /* Found it! return success */ 817 return 0; 818 } 819 820 node = -1; 821 list += count; 822 cur_index++; 823 } 824 825 /* 826 * Result will be one of: 827 * -ENOENT : index is for empty phandle 828 * -EINVAL : parsing error on data 829 * [1..n] : Number of phandle (count mode; when index = -1) 830 */ 831 rc = index < 0 ? cur_index : -ENOENT; 832 err: 833 return rc; 834 } 835 836 int fdtdec_get_child_count(const void *blob, int node) 837 { 838 int subnode; 839 int num = 0; 840 841 fdt_for_each_subnode(subnode, blob, node) 842 num++; 843 844 return num; 845 } 846 847 int fdtdec_get_byte_array(const void *blob, int node, const char *prop_name, 848 u8 *array, int count) 849 { 850 const u8 *cell; 851 int err; 852 853 cell = get_prop_check_min_len(blob, node, prop_name, count, &err); 854 if (!err) 855 memcpy(array, cell, count); 856 return err; 857 } 858 859 const u8 *fdtdec_locate_byte_array(const void *blob, int node, 860 const char *prop_name, int count) 861 { 862 const u8 *cell; 863 int err; 864 865 cell = get_prop_check_min_len(blob, node, prop_name, count, &err); 866 if (err) 867 return NULL; 868 return cell; 869 } 870 871 int fdtdec_get_config_int(const void *blob, const char *prop_name, 872 int default_val) 873 { 874 int config_node; 875 876 debug("%s: %s\n", __func__, prop_name); 877 config_node = fdt_path_offset(blob, "/config"); 878 if (config_node < 0) 879 return default_val; 880 return fdtdec_get_int(blob, config_node, prop_name, default_val); 881 } 882 883 int fdtdec_get_config_bool(const void *blob, const char *prop_name) 884 { 885 int config_node; 886 const void *prop; 887 888 debug("%s: %s\n", __func__, prop_name); 889 config_node = fdt_path_offset(blob, "/config"); 890 if (config_node < 0) 891 return 0; 892 prop = fdt_get_property(blob, config_node, prop_name, NULL); 893 894 return prop != NULL; 895 } 896 897 char *fdtdec_get_config_string(const void *blob, const char *prop_name) 898 { 899 const char *nodep; 900 int nodeoffset; 901 int len; 902 903 debug("%s: %s\n", __func__, prop_name); 904 nodeoffset = fdt_path_offset(blob, "/config"); 905 if (nodeoffset < 0) 906 return NULL; 907 908 nodep = fdt_getprop(blob, nodeoffset, prop_name, &len); 909 if (!nodep) 910 return NULL; 911 912 return (char *)nodep; 913 } 914 915 u64 fdtdec_get_number(const fdt32_t *ptr, unsigned int cells) 916 { 917 u64 number = 0; 918 919 while (cells--) 920 number = (number << 32) | fdt32_to_cpu(*ptr++); 921 922 return number; 923 } 924 925 int fdt_get_resource(const void *fdt, int node, const char *property, 926 unsigned int index, struct fdt_resource *res) 927 { 928 const fdt32_t *ptr, *end; 929 int na, ns, len, parent; 930 unsigned int i = 0; 931 932 parent = fdt_parent_offset(fdt, node); 933 if (parent < 0) 934 return parent; 935 936 na = fdt_address_cells(fdt, parent); 937 ns = fdt_size_cells(fdt, parent); 938 939 ptr = fdt_getprop(fdt, node, property, &len); 940 if (!ptr) 941 return len; 942 943 end = ptr + len / sizeof(*ptr); 944 945 while (ptr + na + ns <= end) { 946 if (i == index) { 947 res->start = fdtdec_get_number(ptr, na); 948 res->end = res->start; 949 res->end += fdtdec_get_number(&ptr[na], ns) - 1; 950 return 0; 951 } 952 953 ptr += na + ns; 954 i++; 955 } 956 957 return -FDT_ERR_NOTFOUND; 958 } 959 960 int fdt_get_named_resource(const void *fdt, int node, const char *property, 961 const char *prop_names, const char *name, 962 struct fdt_resource *res) 963 { 964 int index; 965 966 index = fdt_stringlist_search(fdt, node, prop_names, name); 967 if (index < 0) 968 return index; 969 970 return fdt_get_resource(fdt, node, property, index, res); 971 } 972 973 static int decode_timing_property(const void *blob, int node, const char *name, 974 struct timing_entry *result) 975 { 976 int length, ret = 0; 977 const u32 *prop; 978 979 prop = fdt_getprop(blob, node, name, &length); 980 if (!prop) { 981 debug("%s: could not find property %s\n", 982 fdt_get_name(blob, node, NULL), name); 983 return length; 984 } 985 986 if (length == sizeof(u32)) { 987 result->typ = fdtdec_get_int(blob, node, name, 0); 988 result->min = result->typ; 989 result->max = result->typ; 990 } else { 991 ret = fdtdec_get_int_array(blob, node, name, &result->min, 3); 992 } 993 994 return ret; 995 } 996 997 int fdtdec_decode_display_timing(const void *blob, int parent, int index, 998 struct display_timing *dt) 999 { 1000 int i, node, timings_node; 1001 u32 val = 0; 1002 int ret = 0; 1003 1004 timings_node = fdt_subnode_offset(blob, parent, "display-timings"); 1005 if (timings_node < 0) 1006 return timings_node; 1007 1008 for (i = 0, node = fdt_first_subnode(blob, timings_node); 1009 node > 0 && i != index; 1010 node = fdt_next_subnode(blob, node)) 1011 i++; 1012 1013 if (node < 0) 1014 return node; 1015 1016 memset(dt, 0, sizeof(*dt)); 1017 1018 ret |= decode_timing_property(blob, node, "hback-porch", 1019 &dt->hback_porch); 1020 ret |= decode_timing_property(blob, node, "hfront-porch", 1021 &dt->hfront_porch); 1022 ret |= decode_timing_property(blob, node, "hactive", &dt->hactive); 1023 ret |= decode_timing_property(blob, node, "hsync-len", &dt->hsync_len); 1024 ret |= decode_timing_property(blob, node, "vback-porch", 1025 &dt->vback_porch); 1026 ret |= decode_timing_property(blob, node, "vfront-porch", 1027 &dt->vfront_porch); 1028 ret |= decode_timing_property(blob, node, "vactive", &dt->vactive); 1029 ret |= decode_timing_property(blob, node, "vsync-len", &dt->vsync_len); 1030 ret |= decode_timing_property(blob, node, "clock-frequency", 1031 &dt->pixelclock); 1032 1033 dt->flags = 0; 1034 val = fdtdec_get_int(blob, node, "vsync-active", -1); 1035 if (val != -1) { 1036 dt->flags |= val ? DISPLAY_FLAGS_VSYNC_HIGH : 1037 DISPLAY_FLAGS_VSYNC_LOW; 1038 } 1039 val = fdtdec_get_int(blob, node, "hsync-active", -1); 1040 if (val != -1) { 1041 dt->flags |= val ? DISPLAY_FLAGS_HSYNC_HIGH : 1042 DISPLAY_FLAGS_HSYNC_LOW; 1043 } 1044 val = fdtdec_get_int(blob, node, "de-active", -1); 1045 if (val != -1) { 1046 dt->flags |= val ? DISPLAY_FLAGS_DE_HIGH : 1047 DISPLAY_FLAGS_DE_LOW; 1048 } 1049 val = fdtdec_get_int(blob, node, "pixelclk-active", -1); 1050 if (val != -1) { 1051 dt->flags |= val ? DISPLAY_FLAGS_PIXDATA_POSEDGE : 1052 DISPLAY_FLAGS_PIXDATA_NEGEDGE; 1053 } 1054 1055 if (fdtdec_get_bool(blob, node, "interlaced")) 1056 dt->flags |= DISPLAY_FLAGS_INTERLACED; 1057 if (fdtdec_get_bool(blob, node, "doublescan")) 1058 dt->flags |= DISPLAY_FLAGS_DOUBLESCAN; 1059 if (fdtdec_get_bool(blob, node, "doubleclk")) 1060 dt->flags |= DISPLAY_FLAGS_DOUBLECLK; 1061 1062 return ret; 1063 } 1064 1065 int fdtdec_setup_mem_size_base(void) 1066 { 1067 int ret, mem; 1068 struct fdt_resource res; 1069 1070 mem = fdt_path_offset(gd->fdt_blob, "/memory"); 1071 if (mem < 0) { 1072 debug("%s: Missing /memory node\n", __func__); 1073 return -EINVAL; 1074 } 1075 1076 ret = fdt_get_resource(gd->fdt_blob, mem, "reg", 0, &res); 1077 if (ret != 0) { 1078 debug("%s: Unable to decode first memory bank\n", __func__); 1079 return -EINVAL; 1080 } 1081 1082 gd->ram_size = (phys_size_t)(res.end - res.start + 1); 1083 gd->ram_base = (unsigned long)res.start; 1084 debug("%s: Initial DRAM size %llx\n", __func__, 1085 (unsigned long long)gd->ram_size); 1086 1087 return 0; 1088 } 1089 1090 #if defined(CONFIG_NR_DRAM_BANKS) 1091 1092 static int get_next_memory_node(const void *blob, int mem) 1093 { 1094 do { 1095 mem = fdt_node_offset_by_prop_value(gd->fdt_blob, mem, 1096 "device_type", "memory", 7); 1097 } while (!fdtdec_get_is_enabled(blob, mem)); 1098 1099 return mem; 1100 } 1101 1102 int fdtdec_setup_memory_banksize(void) 1103 { 1104 int bank, ret, mem, reg = 0; 1105 struct fdt_resource res; 1106 1107 mem = get_next_memory_node(gd->fdt_blob, -1); 1108 if (mem < 0) { 1109 debug("%s: Missing /memory node\n", __func__); 1110 return -EINVAL; 1111 } 1112 1113 for (bank = 0; bank < CONFIG_NR_DRAM_BANKS; bank++) { 1114 ret = fdt_get_resource(gd->fdt_blob, mem, "reg", reg++, &res); 1115 if (ret == -FDT_ERR_NOTFOUND) { 1116 reg = 0; 1117 mem = get_next_memory_node(gd->fdt_blob, mem); 1118 if (mem == -FDT_ERR_NOTFOUND) 1119 break; 1120 1121 ret = fdt_get_resource(gd->fdt_blob, mem, "reg", reg++, &res); 1122 if (ret == -FDT_ERR_NOTFOUND) 1123 break; 1124 } 1125 if (ret != 0) { 1126 return -EINVAL; 1127 } 1128 1129 gd->bd->bi_dram[bank].start = (phys_addr_t)res.start; 1130 gd->bd->bi_dram[bank].size = 1131 (phys_size_t)(res.end - res.start + 1); 1132 1133 debug("%s: DRAM Bank #%d: start = 0x%llx, size = 0x%llx\n", 1134 __func__, bank, 1135 (unsigned long long)gd->bd->bi_dram[bank].start, 1136 (unsigned long long)gd->bd->bi_dram[bank].size); 1137 } 1138 1139 return 0; 1140 } 1141 #endif 1142 1143 #if CONFIG_IS_ENABLED(MULTI_DTB_FIT) 1144 # if CONFIG_IS_ENABLED(MULTI_DTB_FIT_GZIP) ||\ 1145 CONFIG_IS_ENABLED(MULTI_DTB_FIT_LZO) 1146 static int uncompress_blob(const void *src, ulong sz_src, void **dstp) 1147 { 1148 size_t sz_out = CONFIG_SPL_MULTI_DTB_FIT_UNCOMPRESS_SZ; 1149 ulong sz_in = sz_src; 1150 void *dst; 1151 int rc; 1152 1153 if (CONFIG_IS_ENABLED(GZIP)) 1154 if (gzip_parse_header(src, sz_in) < 0) 1155 return -1; 1156 if (CONFIG_IS_ENABLED(LZO)) 1157 if (!lzop_is_valid_header(src)) 1158 return -EBADMSG; 1159 1160 if (CONFIG_IS_ENABLED(MULTI_DTB_FIT_DYN_ALLOC)) { 1161 dst = malloc(sz_out); 1162 if (!dst) { 1163 puts("uncompress_blob: Unable to allocate memory\n"); 1164 return -ENOMEM; 1165 } 1166 } else { 1167 # if CONFIG_IS_ENABLED(MULTI_DTB_FIT_USER_DEFINED_AREA) 1168 dst = (void *)CONFIG_VAL(MULTI_DTB_FIT_USER_DEF_ADDR); 1169 # else 1170 return -ENOTSUPP; 1171 # endif 1172 } 1173 1174 if (CONFIG_IS_ENABLED(GZIP)) 1175 rc = gunzip(dst, sz_out, (u8 *)src, &sz_in); 1176 else if (CONFIG_IS_ENABLED(LZO)) 1177 rc = lzop_decompress(src, sz_in, dst, &sz_out); 1178 1179 if (rc < 0) { 1180 /* not a valid compressed blob */ 1181 puts("uncompress_blob: Unable to uncompress\n"); 1182 if (CONFIG_IS_ENABLED(MULTI_DTB_FIT_DYN_ALLOC)) 1183 free(dst); 1184 return -EBADMSG; 1185 } 1186 *dstp = dst; 1187 return 0; 1188 } 1189 # else 1190 static int uncompress_blob(const void *src, ulong sz_src, void **dstp) 1191 { 1192 *dstp = (void *)src; 1193 return 0; 1194 } 1195 # endif 1196 #endif 1197 1198 #if defined(CONFIG_OF_BOARD) || defined(CONFIG_OF_SEPARATE) 1199 /* 1200 * For CONFIG_OF_SEPARATE, the board may optionally implement this to 1201 * provide and/or fixup the fdt. 1202 */ 1203 __weak void *board_fdt_blob_setup(void) 1204 { 1205 void *fdt_blob = NULL; 1206 #ifdef CONFIG_SPL_BUILD 1207 /* FDT is at end of BSS unless it is in a different memory region */ 1208 if (IS_ENABLED(CONFIG_SPL_SEPARATE_BSS)) 1209 fdt_blob = (ulong *)&_image_binary_end; 1210 else 1211 fdt_blob = (ulong *)&__bss_end; 1212 #else 1213 /* FDT is at end of image */ 1214 fdt_blob = (ulong *)&_end; 1215 #endif 1216 return fdt_blob; 1217 } 1218 #endif 1219 1220 int fdtdec_setup(void) 1221 { 1222 #if CONFIG_IS_ENABLED(OF_CONTROL) 1223 # if CONFIG_IS_ENABLED(MULTI_DTB_FIT) 1224 void *fdt_blob; 1225 # endif 1226 # ifdef CONFIG_OF_EMBED 1227 /* Get a pointer to the FDT */ 1228 # ifdef CONFIG_SPL_BUILD 1229 gd->fdt_blob = __dtb_dt_spl_begin; 1230 # else 1231 gd->fdt_blob = __dtb_dt_begin; 1232 # endif 1233 # elif defined(CONFIG_OF_BOARD) || defined(CONFIG_OF_SEPARATE) 1234 /* Allow the board to override the fdt address. */ 1235 gd->fdt_blob = board_fdt_blob_setup(); 1236 # elif defined(CONFIG_OF_HOSTFILE) 1237 if (sandbox_read_fdt_from_file()) { 1238 puts("Failed to read control FDT\n"); 1239 return -1; 1240 } 1241 # endif 1242 # ifndef CONFIG_SPL_BUILD 1243 /* Allow the early environment to override the fdt address */ 1244 # if CONFIG_IS_ENABLED(OF_PRIOR_STAGE) 1245 gd->fdt_blob = (void *)prior_stage_fdt_address; 1246 # else 1247 gd->fdt_blob = map_sysmem 1248 (env_get_ulong("fdtcontroladdr", 16, 1249 (unsigned long)map_to_sysmem(gd->fdt_blob)), 0); 1250 # endif 1251 # endif 1252 1253 # if CONFIG_IS_ENABLED(MULTI_DTB_FIT) 1254 /* 1255 * Try and uncompress the blob. 1256 * Unfortunately there is no way to know how big the input blob really 1257 * is. So let us set the maximum input size arbitrarily high. 16MB 1258 * ought to be more than enough for packed DTBs. 1259 */ 1260 if (uncompress_blob(gd->fdt_blob, 0x1000000, &fdt_blob) == 0) 1261 gd->fdt_blob = fdt_blob; 1262 1263 /* 1264 * Check if blob is a FIT images containings DTBs. 1265 * If so, pick the most relevant 1266 */ 1267 fdt_blob = locate_dtb_in_fit(gd->fdt_blob); 1268 if (fdt_blob) { 1269 gd->multi_dtb_fit = gd->fdt_blob; 1270 gd->fdt_blob = fdt_blob; 1271 } 1272 1273 # endif 1274 #endif 1275 1276 return fdtdec_prepare_fdt(); 1277 } 1278 1279 #if CONFIG_IS_ENABLED(MULTI_DTB_FIT) 1280 int fdtdec_resetup(int *rescan) 1281 { 1282 void *fdt_blob; 1283 1284 /* 1285 * If the current DTB is part of a compressed FIT image, 1286 * try to locate the best match from the uncompressed 1287 * FIT image stillpresent there. Save the time and space 1288 * required to uncompress it again. 1289 */ 1290 if (gd->multi_dtb_fit) { 1291 fdt_blob = locate_dtb_in_fit(gd->multi_dtb_fit); 1292 1293 if (fdt_blob == gd->fdt_blob) { 1294 /* 1295 * The best match did not change. no need to tear down 1296 * the DM and rescan the fdt. 1297 */ 1298 *rescan = 0; 1299 return 0; 1300 } 1301 1302 *rescan = 1; 1303 gd->fdt_blob = fdt_blob; 1304 return fdtdec_prepare_fdt(); 1305 } 1306 1307 /* 1308 * If multi_dtb_fit is NULL, it means that blob appended to u-boot is 1309 * not a FIT image containings DTB, but a single DTB. There is no need 1310 * to teard down DM and rescan the DT in this case. 1311 */ 1312 *rescan = 0; 1313 return 0; 1314 } 1315 #endif 1316 1317 #ifdef CONFIG_NR_DRAM_BANKS 1318 int fdtdec_decode_ram_size(const void *blob, const char *area, int board_id, 1319 phys_addr_t *basep, phys_size_t *sizep, bd_t *bd) 1320 { 1321 int addr_cells, size_cells; 1322 const u32 *cell, *end; 1323 u64 total_size, size, addr; 1324 int node, child; 1325 bool auto_size; 1326 int bank; 1327 int len; 1328 1329 debug("%s: board_id=%d\n", __func__, board_id); 1330 if (!area) 1331 area = "/memory"; 1332 node = fdt_path_offset(blob, area); 1333 if (node < 0) { 1334 debug("No %s node found\n", area); 1335 return -ENOENT; 1336 } 1337 1338 cell = fdt_getprop(blob, node, "reg", &len); 1339 if (!cell) { 1340 debug("No reg property found\n"); 1341 return -ENOENT; 1342 } 1343 1344 addr_cells = fdt_address_cells(blob, node); 1345 size_cells = fdt_size_cells(blob, node); 1346 1347 /* Check the board id and mask */ 1348 for (child = fdt_first_subnode(blob, node); 1349 child >= 0; 1350 child = fdt_next_subnode(blob, child)) { 1351 int match_mask, match_value; 1352 1353 match_mask = fdtdec_get_int(blob, child, "match-mask", -1); 1354 match_value = fdtdec_get_int(blob, child, "match-value", -1); 1355 1356 if (match_value >= 0 && 1357 ((board_id & match_mask) == match_value)) { 1358 /* Found matching mask */ 1359 debug("Found matching mask %d\n", match_mask); 1360 node = child; 1361 cell = fdt_getprop(blob, node, "reg", &len); 1362 if (!cell) { 1363 debug("No memory-banks property found\n"); 1364 return -EINVAL; 1365 } 1366 break; 1367 } 1368 } 1369 /* Note: if no matching subnode was found we use the parent node */ 1370 1371 if (bd) { 1372 memset(bd->bi_dram, '\0', sizeof(bd->bi_dram[0]) * 1373 CONFIG_NR_DRAM_BANKS); 1374 } 1375 1376 auto_size = fdtdec_get_bool(blob, node, "auto-size"); 1377 1378 total_size = 0; 1379 end = cell + len / 4 - addr_cells - size_cells; 1380 debug("cell at %p, end %p\n", cell, end); 1381 for (bank = 0; bank < CONFIG_NR_DRAM_BANKS; bank++) { 1382 if (cell > end) 1383 break; 1384 addr = 0; 1385 if (addr_cells == 2) 1386 addr += (u64)fdt32_to_cpu(*cell++) << 32UL; 1387 addr += fdt32_to_cpu(*cell++); 1388 if (bd) 1389 bd->bi_dram[bank].start = addr; 1390 if (basep && !bank) 1391 *basep = (phys_addr_t)addr; 1392 1393 size = 0; 1394 if (size_cells == 2) 1395 size += (u64)fdt32_to_cpu(*cell++) << 32UL; 1396 size += fdt32_to_cpu(*cell++); 1397 1398 if (auto_size) { 1399 u64 new_size; 1400 1401 debug("Auto-sizing %llx, size %llx: ", addr, size); 1402 new_size = get_ram_size((long *)(uintptr_t)addr, size); 1403 if (new_size == size) { 1404 debug("OK\n"); 1405 } else { 1406 debug("sized to %llx\n", new_size); 1407 size = new_size; 1408 } 1409 } 1410 1411 if (bd) 1412 bd->bi_dram[bank].size = size; 1413 total_size += size; 1414 } 1415 1416 debug("Memory size %llu\n", total_size); 1417 if (sizep) 1418 *sizep = (phys_size_t)total_size; 1419 1420 return 0; 1421 } 1422 #endif /* CONFIG_NR_DRAM_BANKS */ 1423 1424 #endif /* !USE_HOSTCC */ 1425