1b5220bc6SSimon Glass /* 2b5220bc6SSimon Glass * Copyright (c) 2011 The Chromium OS Authors. 31a459660SWolfgang Denk * SPDX-License-Identifier: GPL-2.0+ 4b5220bc6SSimon Glass */ 5b5220bc6SSimon Glass 629a23f9dSHeiko Schocher #ifndef USE_HOSTCC 7b5220bc6SSimon Glass #include <common.h> 85c33c9fdSSimon Glass #include <errno.h> 9b5220bc6SSimon Glass #include <serial.h> 10b5220bc6SSimon Glass #include <libfdt.h> 11b5220bc6SSimon Glass #include <fdtdec.h> 12b45122fdSSimon Glass #include <asm/sections.h> 135c33c9fdSSimon Glass #include <linux/ctype.h> 14b5220bc6SSimon Glass 15b5220bc6SSimon Glass DECLARE_GLOBAL_DATA_PTR; 16b5220bc6SSimon Glass 17b5220bc6SSimon Glass /* 18b5220bc6SSimon Glass * Here are the type we know about. One day we might allow drivers to 19b5220bc6SSimon Glass * register. For now we just put them here. The COMPAT macro allows us to 20b5220bc6SSimon Glass * turn this into a sparse list later, and keeps the ID with the name. 21b5220bc6SSimon Glass */ 22b5220bc6SSimon Glass #define COMPAT(id, name) name 23b5220bc6SSimon Glass static const char * const compat_names[COMPAT_COUNT] = { 24f88fe2deSSimon Glass COMPAT(UNKNOWN, "<none>"), 250e35ad05SJimmy Zhang COMPAT(NVIDIA_TEGRA20_EMC, "nvidia,tegra20-emc"), 260e35ad05SJimmy Zhang COMPAT(NVIDIA_TEGRA20_EMC_TABLE, "nvidia,tegra20-emc-table"), 276642a681SRakesh Iyer COMPAT(NVIDIA_TEGRA20_KBC, "nvidia,tegra20-kbc"), 28312693c3SJim Lin COMPAT(NVIDIA_TEGRA20_NAND, "nvidia,tegra20-nand"), 29e1ae0d1fSSimon Glass COMPAT(NVIDIA_TEGRA20_PWM, "nvidia,tegra20-pwm"), 3000f37327SSimon Glass COMPAT(NVIDIA_TEGRA124_DC, "nvidia,tegra124-dc"), 3100f37327SSimon Glass COMPAT(NVIDIA_TEGRA124_SOR, "nvidia,tegra124-sor"), 3200f37327SSimon Glass COMPAT(NVIDIA_TEGRA124_PMC, "nvidia,tegra124-pmc"), 3387540de3SWei Ni COMPAT(NVIDIA_TEGRA20_DC, "nvidia,tegra20-dc"), 347aaa5a60STom Warren COMPAT(NVIDIA_TEGRA210_SDMMC, "nvidia,tegra210-sdhci"), 35a73ca478SStephen Warren COMPAT(NVIDIA_TEGRA124_SDMMC, "nvidia,tegra124-sdhci"), 36f4e4e0b0STom Warren COMPAT(NVIDIA_TEGRA30_SDMMC, "nvidia,tegra30-sdhci"), 37c9aa831eSTom Warren COMPAT(NVIDIA_TEGRA20_SDMMC, "nvidia,tegra20-sdhci"), 38f315828bSThierry Reding COMPAT(NVIDIA_TEGRA124_PCIE, "nvidia,tegra124-pcie"), 39f315828bSThierry Reding COMPAT(NVIDIA_TEGRA30_PCIE, "nvidia,tegra30-pcie"), 40f315828bSThierry Reding COMPAT(NVIDIA_TEGRA20_PCIE, "nvidia,tegra20-pcie"), 4179c7a90fSThierry Reding COMPAT(NVIDIA_TEGRA124_XUSB_PADCTL, "nvidia,tegra124-xusb-padctl"), 427aaa5a60STom Warren COMPAT(NVIDIA_TEGRA210_XUSB_PADCTL, "nvidia,tegra210-xusb-padctl"), 43cc9fe33aSHatim RV COMPAT(SMSC_LAN9215, "smsc,lan9215"), 44cc9fe33aSHatim RV COMPAT(SAMSUNG_EXYNOS5_SROMC, "samsung,exynos-sromc"), 45c34253d1SRajeshwari Shinde COMPAT(SAMSUNG_S3C2440_I2C, "samsung,s3c2440-i2c"), 4672dbff12SRajeshwari Shinde COMPAT(SAMSUNG_EXYNOS5_SOUND, "samsung,exynos-sound"), 4772dbff12SRajeshwari Shinde COMPAT(WOLFSON_WM8994_CODEC, "wolfson,wm8994-codec"), 48713cb680SHung-ying Tyan COMPAT(GOOGLE_CROS_EC_KEYB, "google,cros-ec-keyb"), 496abd1620SRajeshwari Shinde COMPAT(SAMSUNG_EXYNOS_USB_PHY, "samsung,exynos-usb-phy"), 50108b85beSVivek Gautam COMPAT(SAMSUNG_EXYNOS5_USB3_PHY, "samsung,exynos5250-usb3-phy"), 51618766c0SAkshay Saraswat COMPAT(SAMSUNG_EXYNOS_TMU, "samsung,exynos-tmu"), 52d7377b51SAjay Kumar COMPAT(SAMSUNG_EXYNOS_FIMD, "samsung,exynos-fimd"), 53de461c52SPiotr Wilczek COMPAT(SAMSUNG_EXYNOS_MIPI_DSI, "samsung,exynos-mipi-dsi"), 541e4706a7SAjay Kumar COMPAT(SAMSUNG_EXYNOS5_DP, "samsung,exynos5-dp"), 557d3ca0f8SJaehoon Chung COMPAT(SAMSUNG_EXYNOS_DWMMC, "samsung,exynos-dwmmc"), 563577fe8bSPiotr Wilczek COMPAT(SAMSUNG_EXYNOS_MMC, "samsung,exynos-mmc"), 57ee1e3c2fSRajeshwari Shinde COMPAT(SAMSUNG_EXYNOS_SERIAL, "samsung,exynos4210-uart"), 58f37df0f8SPrzemyslaw Marczak COMPAT(MAXIM_MAX77686_PMIC, "maxim,max77686"), 59bb8215f4SSimon Glass COMPAT(GENERIC_SPI_FLASH, "spi-flash"), 607772bb78SRajeshwari Shinde COMPAT(MAXIM_98095_CODEC, "maxim,max98095-codec"), 61f6267998SRong Chang COMPAT(INFINEON_SLB9635_TPM, "infineon,slb9635-tpm"), 62f0e57b1bSSimon Glass COMPAT(INFINEON_SLB9645_TPM, "infineon,slb9645tt"), 63ecbd7e1eSnaveen krishna chatradhi COMPAT(SAMSUNG_EXYNOS5_I2C, "samsung,exynos5-hsi2c"), 647d95f2a3SSimon Glass COMPAT(SANDBOX_LCD_SDL, "sandbox,lcd-sdl"), 6545c480c9SAjay Kumar COMPAT(SAMSUNG_EXYNOS_SYSMMU, "samsung,sysmmu-v3.3"), 6677f9b1fbSSimon Glass COMPAT(INTEL_MICROCODE, "intel,microcode"), 6765dd74a6SSimon Glass COMPAT(MEMORY_SPD, "memory-spd"), 683ac83935SSimon Glass COMPAT(INTEL_PANTHERPOINT_AHCI, "intel,pantherpoint-ahci"), 69bb80be39SSimon Glass COMPAT(INTEL_MODEL_206AX, "intel,model-206ax"), 70effcf067SSimon Glass COMPAT(INTEL_GMA, "intel,gma"), 716173c45bSThierry Reding COMPAT(AMS_AS3722, "ams,as3722"), 725da38086SSimon Glass COMPAT(INTEL_ICH_SPI, "intel,ich-spi"), 73c89ada01SBin Meng COMPAT(INTEL_QRK_MRC, "intel,quark-mrc"), 745318f18dSGabriel Huau COMPAT(INTEL_X86_PINCTRL, "intel,x86-pinctrl"), 756462cdedSMasahiro Yamada COMPAT(SOCIONEXT_XHCI, "socionext,uniphier-xhci"), 7690b16d14SSimon Glass COMPAT(COMPAT_INTEL_PCH, "intel,bd82x6x"), 779c7dea60SBin Meng COMPAT(COMPAT_INTEL_IRQ_ROUTER, "intel,irq-router"), 786ab00db2SMarek Vasut COMPAT(ALTERA_SOCFPGA_DWMAC, "altr,socfpga-stmmac"), 79f3b84a30SAndrew Bradford COMPAT(COMPAT_INTEL_BAYTRAIL_FSP, "intel,baytrail-fsp"), 80f3b84a30SAndrew Bradford COMPAT(COMPAT_INTEL_BAYTRAIL_FSP_MDP, "intel,baytrail-fsp-mdp"), 81b5220bc6SSimon Glass }; 82b5220bc6SSimon Glass 83a53f4a29SSimon Glass const char *fdtdec_get_compatible(enum fdt_compat_id id) 84a53f4a29SSimon Glass { 85a53f4a29SSimon Glass /* We allow reading of the 'unknown' ID for testing purposes */ 86a53f4a29SSimon Glass assert(id >= 0 && id < COMPAT_COUNT); 87a53f4a29SSimon Glass return compat_names[id]; 88a53f4a29SSimon Glass } 89a53f4a29SSimon Glass 904397a2a8SSimon Glass fdt_addr_t fdtdec_get_addr_size(const void *blob, int node, 914397a2a8SSimon Glass const char *prop_name, fdt_size_t *sizep) 92b5220bc6SSimon Glass { 93236efe36SSimon Glass const fdt_addr_t *cell; 94236efe36SSimon Glass int len; 95b5220bc6SSimon Glass 961cb2323bSSimon Glass debug("%s: %s: ", __func__, prop_name); 97236efe36SSimon Glass cell = fdt_getprop(blob, node, prop_name, &len); 98236efe36SSimon Glass if (cell && ((!sizep && len == sizeof(fdt_addr_t)) || 99236efe36SSimon Glass len == sizeof(fdt_addr_t) * 2)) { 100236efe36SSimon Glass fdt_addr_t addr = fdt_addr_to_cpu(*cell); 101236efe36SSimon Glass if (sizep) { 102236efe36SSimon Glass const fdt_size_t *size; 1031cb2323bSSimon Glass 104236efe36SSimon Glass size = (fdt_size_t *)((char *)cell + 105236efe36SSimon Glass sizeof(fdt_addr_t)); 106236efe36SSimon Glass *sizep = fdt_size_to_cpu(*size); 107236efe36SSimon Glass debug("addr=%08lx, size=%llx\n", 108236efe36SSimon Glass (ulong)addr, (u64)*sizep); 109236efe36SSimon Glass } else { 110236efe36SSimon Glass debug("%08lx\n", (ulong)addr); 1114397a2a8SSimon Glass } 112236efe36SSimon Glass return addr; 113236efe36SSimon Glass } 1141cb2323bSSimon Glass debug("(not found)\n"); 115b5220bc6SSimon Glass return FDT_ADDR_T_NONE; 116b5220bc6SSimon Glass } 117b5220bc6SSimon Glass 1184397a2a8SSimon Glass fdt_addr_t fdtdec_get_addr(const void *blob, int node, 1194397a2a8SSimon Glass const char *prop_name) 1204397a2a8SSimon Glass { 1214397a2a8SSimon Glass return fdtdec_get_addr_size(blob, node, prop_name, NULL); 1224397a2a8SSimon Glass } 1234397a2a8SSimon Glass 124a62e84d7SBin Meng #ifdef CONFIG_PCI 125a62e84d7SBin Meng int fdtdec_get_pci_addr(const void *blob, int node, enum fdt_pci_space type, 126a62e84d7SBin Meng const char *prop_name, struct fdt_pci_addr *addr) 127a62e84d7SBin Meng { 128a62e84d7SBin Meng const u32 *cell; 129a62e84d7SBin Meng int len; 130a62e84d7SBin Meng int ret = -ENOENT; 131a62e84d7SBin Meng 132a62e84d7SBin Meng debug("%s: %s: ", __func__, prop_name); 133a62e84d7SBin Meng 134a62e84d7SBin Meng /* 135a62e84d7SBin Meng * If we follow the pci bus bindings strictly, we should check 136a62e84d7SBin Meng * the value of the node's parent node's #address-cells and 137a62e84d7SBin Meng * #size-cells. They need to be 3 and 2 accordingly. However, 138a62e84d7SBin Meng * for simplicity we skip the check here. 139a62e84d7SBin Meng */ 140a62e84d7SBin Meng cell = fdt_getprop(blob, node, prop_name, &len); 141a62e84d7SBin Meng if (!cell) 142a62e84d7SBin Meng goto fail; 143a62e84d7SBin Meng 144a62e84d7SBin Meng if ((len % FDT_PCI_REG_SIZE) == 0) { 145a62e84d7SBin Meng int num = len / FDT_PCI_REG_SIZE; 146a62e84d7SBin Meng int i; 147a62e84d7SBin Meng 148a62e84d7SBin Meng for (i = 0; i < num; i++) { 149a62e84d7SBin Meng debug("pci address #%d: %08lx %08lx %08lx\n", i, 150a62e84d7SBin Meng (ulong)fdt_addr_to_cpu(cell[0]), 151a62e84d7SBin Meng (ulong)fdt_addr_to_cpu(cell[1]), 152a62e84d7SBin Meng (ulong)fdt_addr_to_cpu(cell[2])); 153a62e84d7SBin Meng if ((fdt_addr_to_cpu(*cell) & type) == type) { 154a62e84d7SBin Meng addr->phys_hi = fdt_addr_to_cpu(cell[0]); 155a62e84d7SBin Meng addr->phys_mid = fdt_addr_to_cpu(cell[1]); 156a62e84d7SBin Meng addr->phys_lo = fdt_addr_to_cpu(cell[2]); 157a62e84d7SBin Meng break; 158a62e84d7SBin Meng } else { 159a62e84d7SBin Meng cell += (FDT_PCI_ADDR_CELLS + 160a62e84d7SBin Meng FDT_PCI_SIZE_CELLS); 161a62e84d7SBin Meng } 162a62e84d7SBin Meng } 163a62e84d7SBin Meng 164106cce96SSimon Glass if (i == num) { 165106cce96SSimon Glass ret = -ENXIO; 166a62e84d7SBin Meng goto fail; 167106cce96SSimon Glass } 168a62e84d7SBin Meng 169a62e84d7SBin Meng return 0; 170a62e84d7SBin Meng } else { 171a62e84d7SBin Meng ret = -EINVAL; 172a62e84d7SBin Meng } 173a62e84d7SBin Meng 174a62e84d7SBin Meng fail: 175a62e84d7SBin Meng debug("(not found)\n"); 176a62e84d7SBin Meng return ret; 177a62e84d7SBin Meng } 178a62e84d7SBin Meng 179a62e84d7SBin Meng int fdtdec_get_pci_vendev(const void *blob, int node, u16 *vendor, u16 *device) 180a62e84d7SBin Meng { 181a62e84d7SBin Meng const char *list, *end; 182a62e84d7SBin Meng int len; 183a62e84d7SBin Meng 184a62e84d7SBin Meng list = fdt_getprop(blob, node, "compatible", &len); 185a62e84d7SBin Meng if (!list) 186a62e84d7SBin Meng return -ENOENT; 187a62e84d7SBin Meng 188a62e84d7SBin Meng end = list + len; 189a62e84d7SBin Meng while (list < end) { 190a62e84d7SBin Meng char *s; 191a62e84d7SBin Meng 192a62e84d7SBin Meng len = strlen(list); 193a62e84d7SBin Meng if (len >= strlen("pciVVVV,DDDD")) { 194a62e84d7SBin Meng s = strstr(list, "pci"); 195a62e84d7SBin Meng 196a62e84d7SBin Meng /* 197a62e84d7SBin Meng * check if the string is something like pciVVVV,DDDD.RR 198a62e84d7SBin Meng * or just pciVVVV,DDDD 199a62e84d7SBin Meng */ 200a62e84d7SBin Meng if (s && s[7] == ',' && 201a62e84d7SBin Meng (s[12] == '.' || s[12] == 0)) { 202a62e84d7SBin Meng s += 3; 203a62e84d7SBin Meng *vendor = simple_strtol(s, NULL, 16); 204a62e84d7SBin Meng 205a62e84d7SBin Meng s += 5; 206a62e84d7SBin Meng *device = simple_strtol(s, NULL, 16); 207a62e84d7SBin Meng 208a62e84d7SBin Meng return 0; 209a62e84d7SBin Meng } 210a62e84d7SBin Meng } 211*bc6351ebSBin Meng list += (len + 1); 212a62e84d7SBin Meng } 213a62e84d7SBin Meng 214a62e84d7SBin Meng return -ENOENT; 215a62e84d7SBin Meng } 216a62e84d7SBin Meng 217a62e84d7SBin Meng int fdtdec_get_pci_bdf(const void *blob, int node, 218a62e84d7SBin Meng struct fdt_pci_addr *addr, pci_dev_t *bdf) 219a62e84d7SBin Meng { 220a62e84d7SBin Meng u16 dt_vendor, dt_device, vendor, device; 221a62e84d7SBin Meng int ret; 222a62e84d7SBin Meng 223a62e84d7SBin Meng /* get vendor id & device id from the compatible string */ 224a62e84d7SBin Meng ret = fdtdec_get_pci_vendev(blob, node, &dt_vendor, &dt_device); 225a62e84d7SBin Meng if (ret) 226a62e84d7SBin Meng return ret; 227a62e84d7SBin Meng 228a62e84d7SBin Meng /* extract the bdf from fdt_pci_addr */ 229a62e84d7SBin Meng *bdf = addr->phys_hi & 0xffff00; 230a62e84d7SBin Meng 231a62e84d7SBin Meng /* read vendor id & device id based on bdf */ 232a62e84d7SBin Meng pci_read_config_word(*bdf, PCI_VENDOR_ID, &vendor); 233a62e84d7SBin Meng pci_read_config_word(*bdf, PCI_DEVICE_ID, &device); 234a62e84d7SBin Meng 235a62e84d7SBin Meng /* 236a62e84d7SBin Meng * Note there are two places in the device tree to fully describe 237a62e84d7SBin Meng * a pci device: one is via compatible string with a format of 238a62e84d7SBin Meng * "pciVVVV,DDDD" and the other one is the bdf numbers encoded in 239a62e84d7SBin Meng * the device node's reg address property. We read the vendor id 240a62e84d7SBin Meng * and device id based on bdf and compare the values with the 241a62e84d7SBin Meng * "VVVV,DDDD". If they are the same, then we are good to use bdf 242a62e84d7SBin Meng * to read device's bar. But if they are different, we have to rely 243a62e84d7SBin Meng * on the vendor id and device id extracted from the compatible 244a62e84d7SBin Meng * string and locate the real bdf by pci_find_device(). This is 245a62e84d7SBin Meng * because normally we may only know device's device number and 246a62e84d7SBin Meng * function number when writing device tree. The bus number is 247a62e84d7SBin Meng * dynamically assigned during the pci enumeration process. 248a62e84d7SBin Meng */ 249a62e84d7SBin Meng if ((dt_vendor != vendor) || (dt_device != device)) { 250a62e84d7SBin Meng *bdf = pci_find_device(dt_vendor, dt_device, 0); 251a62e84d7SBin Meng if (*bdf == -1) 252a62e84d7SBin Meng return -ENODEV; 253a62e84d7SBin Meng } 254a62e84d7SBin Meng 255a62e84d7SBin Meng return 0; 256a62e84d7SBin Meng } 257a62e84d7SBin Meng 258a62e84d7SBin Meng int fdtdec_get_pci_bar32(const void *blob, int node, 259a62e84d7SBin Meng struct fdt_pci_addr *addr, u32 *bar) 260a62e84d7SBin Meng { 261a62e84d7SBin Meng pci_dev_t bdf; 262a62e84d7SBin Meng int barnum; 263a62e84d7SBin Meng int ret; 264a62e84d7SBin Meng 265a62e84d7SBin Meng /* get pci devices's bdf */ 266a62e84d7SBin Meng ret = fdtdec_get_pci_bdf(blob, node, addr, &bdf); 267a62e84d7SBin Meng if (ret) 268a62e84d7SBin Meng return ret; 269a62e84d7SBin Meng 270a62e84d7SBin Meng /* extract the bar number from fdt_pci_addr */ 271a62e84d7SBin Meng barnum = addr->phys_hi & 0xff; 272a62e84d7SBin Meng if ((barnum < PCI_BASE_ADDRESS_0) || (barnum > PCI_CARDBUS_CIS)) 273a62e84d7SBin Meng return -EINVAL; 274a62e84d7SBin Meng 275a62e84d7SBin Meng barnum = (barnum - PCI_BASE_ADDRESS_0) / 4; 276a62e84d7SBin Meng *bar = pci_read_bar32(pci_bus_to_hose(PCI_BUS(bdf)), bdf, barnum); 277a62e84d7SBin Meng 278a62e84d7SBin Meng return 0; 279a62e84d7SBin Meng } 280a62e84d7SBin Meng #endif 281a62e84d7SBin Meng 282aadef0a1SChe-Liang Chiou uint64_t fdtdec_get_uint64(const void *blob, int node, const char *prop_name, 283aadef0a1SChe-Liang Chiou uint64_t default_val) 284aadef0a1SChe-Liang Chiou { 285aadef0a1SChe-Liang Chiou const uint64_t *cell64; 286aadef0a1SChe-Liang Chiou int length; 287aadef0a1SChe-Liang Chiou 288aadef0a1SChe-Liang Chiou cell64 = fdt_getprop(blob, node, prop_name, &length); 289aadef0a1SChe-Liang Chiou if (!cell64 || length < sizeof(*cell64)) 290aadef0a1SChe-Liang Chiou return default_val; 291aadef0a1SChe-Liang Chiou 292aadef0a1SChe-Liang Chiou return fdt64_to_cpu(*cell64); 293aadef0a1SChe-Liang Chiou } 294aadef0a1SChe-Liang Chiou 295f88fe2deSSimon Glass int fdtdec_get_is_enabled(const void *blob, int node) 296b5220bc6SSimon Glass { 297b5220bc6SSimon Glass const char *cell; 298b5220bc6SSimon Glass 299f88fe2deSSimon Glass /* 300f88fe2deSSimon Glass * It should say "okay", so only allow that. Some fdts use "ok" but 301f88fe2deSSimon Glass * this is a bug. Please fix your device tree source file. See here 302f88fe2deSSimon Glass * for discussion: 303f88fe2deSSimon Glass * 304f88fe2deSSimon Glass * http://www.mail-archive.com/u-boot@lists.denx.de/msg71598.html 305f88fe2deSSimon Glass */ 306b5220bc6SSimon Glass cell = fdt_getprop(blob, node, "status", NULL); 307b5220bc6SSimon Glass if (cell) 308f88fe2deSSimon Glass return 0 == strcmp(cell, "okay"); 309f88fe2deSSimon Glass return 1; 310b5220bc6SSimon Glass } 311b5220bc6SSimon Glass 3127cde397bSGerald Van Baren enum fdt_compat_id fdtdec_lookup(const void *blob, int node) 313b5220bc6SSimon Glass { 314b5220bc6SSimon Glass enum fdt_compat_id id; 315b5220bc6SSimon Glass 316b5220bc6SSimon Glass /* Search our drivers */ 317b5220bc6SSimon Glass for (id = COMPAT_UNKNOWN; id < COMPAT_COUNT; id++) 318b5220bc6SSimon Glass if (0 == fdt_node_check_compatible(blob, node, 319b5220bc6SSimon Glass compat_names[id])) 320b5220bc6SSimon Glass return id; 321b5220bc6SSimon Glass return COMPAT_UNKNOWN; 322b5220bc6SSimon Glass } 323b5220bc6SSimon Glass 324b5220bc6SSimon Glass int fdtdec_next_compatible(const void *blob, int node, 325b5220bc6SSimon Glass enum fdt_compat_id id) 326b5220bc6SSimon Glass { 327b5220bc6SSimon Glass return fdt_node_offset_by_compatible(blob, node, compat_names[id]); 328b5220bc6SSimon Glass } 329b5220bc6SSimon Glass 3303ddecfc7SSimon Glass int fdtdec_next_compatible_subnode(const void *blob, int node, 3313ddecfc7SSimon Glass enum fdt_compat_id id, int *depthp) 3323ddecfc7SSimon Glass { 3333ddecfc7SSimon Glass do { 3343ddecfc7SSimon Glass node = fdt_next_node(blob, node, depthp); 3353ddecfc7SSimon Glass } while (*depthp > 1); 3363ddecfc7SSimon Glass 3373ddecfc7SSimon Glass /* If this is a direct subnode, and compatible, return it */ 3383ddecfc7SSimon Glass if (*depthp == 1 && 0 == fdt_node_check_compatible( 3393ddecfc7SSimon Glass blob, node, compat_names[id])) 3403ddecfc7SSimon Glass return node; 3413ddecfc7SSimon Glass 3423ddecfc7SSimon Glass return -FDT_ERR_NOTFOUND; 3433ddecfc7SSimon Glass } 3443ddecfc7SSimon Glass 345b5220bc6SSimon Glass int fdtdec_next_alias(const void *blob, const char *name, 346b5220bc6SSimon Glass enum fdt_compat_id id, int *upto) 347b5220bc6SSimon Glass { 348b5220bc6SSimon Glass #define MAX_STR_LEN 20 349b5220bc6SSimon Glass char str[MAX_STR_LEN + 20]; 350b5220bc6SSimon Glass int node, err; 351b5220bc6SSimon Glass 352b5220bc6SSimon Glass /* snprintf() is not available */ 353b5220bc6SSimon Glass assert(strlen(name) < MAX_STR_LEN); 354b5220bc6SSimon Glass sprintf(str, "%.*s%d", MAX_STR_LEN, name, *upto); 35500878476SSimon Glass node = fdt_path_offset(blob, str); 356b5220bc6SSimon Glass if (node < 0) 357b5220bc6SSimon Glass return node; 358b5220bc6SSimon Glass err = fdt_node_check_compatible(blob, node, compat_names[id]); 359b5220bc6SSimon Glass if (err < 0) 360b5220bc6SSimon Glass return err; 361f88fe2deSSimon Glass if (err) 362f88fe2deSSimon Glass return -FDT_ERR_NOTFOUND; 363f88fe2deSSimon Glass (*upto)++; 364f88fe2deSSimon Glass return node; 365b5220bc6SSimon Glass } 366b5220bc6SSimon Glass 367a53f4a29SSimon Glass int fdtdec_find_aliases_for_id(const void *blob, const char *name, 368a53f4a29SSimon Glass enum fdt_compat_id id, int *node_list, int maxcount) 369a53f4a29SSimon Glass { 370c6782270SSimon Glass memset(node_list, '\0', sizeof(*node_list) * maxcount); 371c6782270SSimon Glass 372c6782270SSimon Glass return fdtdec_add_aliases_for_id(blob, name, id, node_list, maxcount); 373c6782270SSimon Glass } 374c6782270SSimon Glass 375c6782270SSimon Glass /* TODO: Can we tighten this code up a little? */ 376c6782270SSimon Glass int fdtdec_add_aliases_for_id(const void *blob, const char *name, 377c6782270SSimon Glass enum fdt_compat_id id, int *node_list, int maxcount) 378c6782270SSimon Glass { 379a53f4a29SSimon Glass int name_len = strlen(name); 380a53f4a29SSimon Glass int nodes[maxcount]; 381a53f4a29SSimon Glass int num_found = 0; 382a53f4a29SSimon Glass int offset, node; 383a53f4a29SSimon Glass int alias_node; 384a53f4a29SSimon Glass int count; 385a53f4a29SSimon Glass int i, j; 386a53f4a29SSimon Glass 387a53f4a29SSimon Glass /* find the alias node if present */ 388a53f4a29SSimon Glass alias_node = fdt_path_offset(blob, "/aliases"); 389a53f4a29SSimon Glass 390a53f4a29SSimon Glass /* 391a53f4a29SSimon Glass * start with nothing, and we can assume that the root node can't 392a53f4a29SSimon Glass * match 393a53f4a29SSimon Glass */ 394a53f4a29SSimon Glass memset(nodes, '\0', sizeof(nodes)); 395a53f4a29SSimon Glass 396a53f4a29SSimon Glass /* First find all the compatible nodes */ 397a53f4a29SSimon Glass for (node = count = 0; node >= 0 && count < maxcount;) { 398a53f4a29SSimon Glass node = fdtdec_next_compatible(blob, node, id); 399a53f4a29SSimon Glass if (node >= 0) 400a53f4a29SSimon Glass nodes[count++] = node; 401a53f4a29SSimon Glass } 402a53f4a29SSimon Glass if (node >= 0) 403a53f4a29SSimon Glass debug("%s: warning: maxcount exceeded with alias '%s'\n", 404a53f4a29SSimon Glass __func__, name); 405a53f4a29SSimon Glass 406a53f4a29SSimon Glass /* Now find all the aliases */ 407a53f4a29SSimon Glass for (offset = fdt_first_property_offset(blob, alias_node); 408a53f4a29SSimon Glass offset > 0; 409a53f4a29SSimon Glass offset = fdt_next_property_offset(blob, offset)) { 410a53f4a29SSimon Glass const struct fdt_property *prop; 411a53f4a29SSimon Glass const char *path; 412a53f4a29SSimon Glass int number; 413a53f4a29SSimon Glass int found; 414a53f4a29SSimon Glass 415a53f4a29SSimon Glass node = 0; 416a53f4a29SSimon Glass prop = fdt_get_property_by_offset(blob, offset, NULL); 417a53f4a29SSimon Glass path = fdt_string(blob, fdt32_to_cpu(prop->nameoff)); 418a53f4a29SSimon Glass if (prop->len && 0 == strncmp(path, name, name_len)) 419a53f4a29SSimon Glass node = fdt_path_offset(blob, prop->data); 420a53f4a29SSimon Glass if (node <= 0) 421a53f4a29SSimon Glass continue; 422a53f4a29SSimon Glass 423a53f4a29SSimon Glass /* Get the alias number */ 424a53f4a29SSimon Glass number = simple_strtoul(path + name_len, NULL, 10); 425a53f4a29SSimon Glass if (number < 0 || number >= maxcount) { 426a53f4a29SSimon Glass debug("%s: warning: alias '%s' is out of range\n", 427a53f4a29SSimon Glass __func__, path); 428a53f4a29SSimon Glass continue; 429a53f4a29SSimon Glass } 430a53f4a29SSimon Glass 431a53f4a29SSimon Glass /* Make sure the node we found is actually in our list! */ 432a53f4a29SSimon Glass found = -1; 433a53f4a29SSimon Glass for (j = 0; j < count; j++) 434a53f4a29SSimon Glass if (nodes[j] == node) { 435a53f4a29SSimon Glass found = j; 436a53f4a29SSimon Glass break; 437a53f4a29SSimon Glass } 438a53f4a29SSimon Glass 439a53f4a29SSimon Glass if (found == -1) { 440a53f4a29SSimon Glass debug("%s: warning: alias '%s' points to a node " 441a53f4a29SSimon Glass "'%s' that is missing or is not compatible " 442a53f4a29SSimon Glass " with '%s'\n", __func__, path, 443a53f4a29SSimon Glass fdt_get_name(blob, node, NULL), 444a53f4a29SSimon Glass compat_names[id]); 445a53f4a29SSimon Glass continue; 446a53f4a29SSimon Glass } 447a53f4a29SSimon Glass 448a53f4a29SSimon Glass /* 449a53f4a29SSimon Glass * Add this node to our list in the right place, and mark 450a53f4a29SSimon Glass * it as done. 451a53f4a29SSimon Glass */ 452a53f4a29SSimon Glass if (fdtdec_get_is_enabled(blob, node)) { 453c6782270SSimon Glass if (node_list[number]) { 454c6782270SSimon Glass debug("%s: warning: alias '%s' requires that " 455c6782270SSimon Glass "a node be placed in the list in a " 456c6782270SSimon Glass "position which is already filled by " 457c6782270SSimon Glass "node '%s'\n", __func__, path, 458c6782270SSimon Glass fdt_get_name(blob, node, NULL)); 459c6782270SSimon Glass continue; 460c6782270SSimon Glass } 461a53f4a29SSimon Glass node_list[number] = node; 462a53f4a29SSimon Glass if (number >= num_found) 463a53f4a29SSimon Glass num_found = number + 1; 464a53f4a29SSimon Glass } 465c6782270SSimon Glass nodes[found] = 0; 466a53f4a29SSimon Glass } 467a53f4a29SSimon Glass 468a53f4a29SSimon Glass /* Add any nodes not mentioned by an alias */ 469a53f4a29SSimon Glass for (i = j = 0; i < maxcount; i++) { 470a53f4a29SSimon Glass if (!node_list[i]) { 471a53f4a29SSimon Glass for (; j < maxcount; j++) 472a53f4a29SSimon Glass if (nodes[j] && 473a53f4a29SSimon Glass fdtdec_get_is_enabled(blob, nodes[j])) 474a53f4a29SSimon Glass break; 475a53f4a29SSimon Glass 476a53f4a29SSimon Glass /* Have we run out of nodes to add? */ 477a53f4a29SSimon Glass if (j == maxcount) 478a53f4a29SSimon Glass break; 479a53f4a29SSimon Glass 480a53f4a29SSimon Glass assert(!node_list[i]); 481a53f4a29SSimon Glass node_list[i] = nodes[j++]; 482a53f4a29SSimon Glass if (i >= num_found) 483a53f4a29SSimon Glass num_found = i + 1; 484a53f4a29SSimon Glass } 485a53f4a29SSimon Glass } 486a53f4a29SSimon Glass 487a53f4a29SSimon Glass return num_found; 488a53f4a29SSimon Glass } 489a53f4a29SSimon Glass 4905c33c9fdSSimon Glass int fdtdec_get_alias_seq(const void *blob, const char *base, int offset, 4915c33c9fdSSimon Glass int *seqp) 4925c33c9fdSSimon Glass { 4935c33c9fdSSimon Glass int base_len = strlen(base); 4945c33c9fdSSimon Glass const char *find_name; 4955c33c9fdSSimon Glass int find_namelen; 4965c33c9fdSSimon Glass int prop_offset; 4975c33c9fdSSimon Glass int aliases; 4985c33c9fdSSimon Glass 4995c33c9fdSSimon Glass find_name = fdt_get_name(blob, offset, &find_namelen); 5005c33c9fdSSimon Glass debug("Looking for '%s' at %d, name %s\n", base, offset, find_name); 5015c33c9fdSSimon Glass 5025c33c9fdSSimon Glass aliases = fdt_path_offset(blob, "/aliases"); 5035c33c9fdSSimon Glass for (prop_offset = fdt_first_property_offset(blob, aliases); 5045c33c9fdSSimon Glass prop_offset > 0; 5055c33c9fdSSimon Glass prop_offset = fdt_next_property_offset(blob, prop_offset)) { 5065c33c9fdSSimon Glass const char *prop; 5075c33c9fdSSimon Glass const char *name; 5085c33c9fdSSimon Glass const char *slash; 509c4af6732SSimon Glass int len, val; 5105c33c9fdSSimon Glass 5115c33c9fdSSimon Glass prop = fdt_getprop_by_offset(blob, prop_offset, &name, &len); 5125c33c9fdSSimon Glass debug(" - %s, %s\n", name, prop); 5135c33c9fdSSimon Glass if (len < find_namelen || *prop != '/' || prop[len - 1] || 5145c33c9fdSSimon Glass strncmp(name, base, base_len)) 5155c33c9fdSSimon Glass continue; 5165c33c9fdSSimon Glass 5175c33c9fdSSimon Glass slash = strrchr(prop, '/'); 5185c33c9fdSSimon Glass if (strcmp(slash + 1, find_name)) 5195c33c9fdSSimon Glass continue; 520c4af6732SSimon Glass val = trailing_strtol(name); 521c4af6732SSimon Glass if (val != -1) { 522c4af6732SSimon Glass *seqp = val; 5235c33c9fdSSimon Glass debug("Found seq %d\n", *seqp); 5245c33c9fdSSimon Glass return 0; 5255c33c9fdSSimon Glass } 5265c33c9fdSSimon Glass } 5275c33c9fdSSimon Glass 5285c33c9fdSSimon Glass debug("Not found\n"); 5295c33c9fdSSimon Glass return -ENOENT; 5305c33c9fdSSimon Glass } 5315c33c9fdSSimon Glass 532aac07d49SSimon Glass int fdtdec_get_chosen_node(const void *blob, const char *name) 533aac07d49SSimon Glass { 534aac07d49SSimon Glass const char *prop; 535aac07d49SSimon Glass int chosen_node; 536aac07d49SSimon Glass int len; 537aac07d49SSimon Glass 538aac07d49SSimon Glass if (!blob) 539aac07d49SSimon Glass return -FDT_ERR_NOTFOUND; 540aac07d49SSimon Glass chosen_node = fdt_path_offset(blob, "/chosen"); 541aac07d49SSimon Glass prop = fdt_getprop(blob, chosen_node, name, &len); 542aac07d49SSimon Glass if (!prop) 543aac07d49SSimon Glass return -FDT_ERR_NOTFOUND; 544aac07d49SSimon Glass return fdt_path_offset(blob, prop); 545aac07d49SSimon Glass } 546aac07d49SSimon Glass 5479a263e55SSimon Glass int fdtdec_check_fdt(void) 5489a263e55SSimon Glass { 5499a263e55SSimon Glass /* 5509a263e55SSimon Glass * We must have an FDT, but we cannot panic() yet since the console 5519a263e55SSimon Glass * is not ready. So for now, just assert(). Boards which need an early 5529a263e55SSimon Glass * FDT (prior to console ready) will need to make their own 5539a263e55SSimon Glass * arrangements and do their own checks. 5549a263e55SSimon Glass */ 5559a263e55SSimon Glass assert(!fdtdec_prepare_fdt()); 5569a263e55SSimon Glass return 0; 5579a263e55SSimon Glass } 5589a263e55SSimon Glass 559b5220bc6SSimon Glass /* 560b5220bc6SSimon Glass * This function is a little odd in that it accesses global data. At some 561b5220bc6SSimon Glass * point if the architecture board.c files merge this will make more sense. 562b5220bc6SSimon Glass * Even now, it is common code. 563b5220bc6SSimon Glass */ 5649a263e55SSimon Glass int fdtdec_prepare_fdt(void) 565b5220bc6SSimon Glass { 566c309c2daSSimon Glass if (!gd->fdt_blob || ((uintptr_t)gd->fdt_blob & 3) || 567c309c2daSSimon Glass fdt_check_header(gd->fdt_blob)) { 56866312374SSimon Glass #ifdef CONFIG_SPL_BUILD 56966312374SSimon Glass puts("Missing DTB\n"); 57066312374SSimon Glass #else 57166312374SSimon Glass 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"); 572cb5f97f7SSimon Glass # ifdef DEBUG 573cb5f97f7SSimon Glass if (gd->fdt_blob) { 574cb5f97f7SSimon Glass printf("fdt_blob=%p\n", gd->fdt_blob); 575cb5f97f7SSimon Glass print_buffer((ulong)gd->fdt_blob, gd->fdt_blob, 4, 576cb5f97f7SSimon Glass 32, 0); 577cb5f97f7SSimon Glass } 578cb5f97f7SSimon Glass # endif 57966312374SSimon Glass #endif 5809a263e55SSimon Glass return -1; 5819a263e55SSimon Glass } 582b5220bc6SSimon Glass return 0; 583b5220bc6SSimon Glass } 584d17da655SSimon Glass 585d17da655SSimon Glass int fdtdec_lookup_phandle(const void *blob, int node, const char *prop_name) 586d17da655SSimon Glass { 587d17da655SSimon Glass const u32 *phandle; 588d17da655SSimon Glass int lookup; 589d17da655SSimon Glass 5901cb2323bSSimon Glass debug("%s: %s\n", __func__, prop_name); 591d17da655SSimon Glass phandle = fdt_getprop(blob, node, prop_name, NULL); 592d17da655SSimon Glass if (!phandle) 593d17da655SSimon Glass return -FDT_ERR_NOTFOUND; 594d17da655SSimon Glass 595d17da655SSimon Glass lookup = fdt_node_offset_by_phandle(blob, fdt32_to_cpu(*phandle)); 596d17da655SSimon Glass return lookup; 597d17da655SSimon Glass } 598d17da655SSimon Glass 599d17da655SSimon Glass /** 600d17da655SSimon Glass * Look up a property in a node and check that it has a minimum length. 601d17da655SSimon Glass * 602d17da655SSimon Glass * @param blob FDT blob 603d17da655SSimon Glass * @param node node to examine 604d17da655SSimon Glass * @param prop_name name of property to find 605d17da655SSimon Glass * @param min_len minimum property length in bytes 606d17da655SSimon Glass * @param err 0 if ok, or -FDT_ERR_NOTFOUND if the property is not 607d17da655SSimon Glass found, or -FDT_ERR_BADLAYOUT if not enough data 608d17da655SSimon Glass * @return pointer to cell, which is only valid if err == 0 609d17da655SSimon Glass */ 610d17da655SSimon Glass static const void *get_prop_check_min_len(const void *blob, int node, 611d17da655SSimon Glass const char *prop_name, int min_len, int *err) 612d17da655SSimon Glass { 613d17da655SSimon Glass const void *cell; 614d17da655SSimon Glass int len; 615d17da655SSimon Glass 616d17da655SSimon Glass debug("%s: %s\n", __func__, prop_name); 617d17da655SSimon Glass cell = fdt_getprop(blob, node, prop_name, &len); 618d17da655SSimon Glass if (!cell) 619d17da655SSimon Glass *err = -FDT_ERR_NOTFOUND; 620d17da655SSimon Glass else if (len < min_len) 621d17da655SSimon Glass *err = -FDT_ERR_BADLAYOUT; 622d17da655SSimon Glass else 623d17da655SSimon Glass *err = 0; 624d17da655SSimon Glass return cell; 625d17da655SSimon Glass } 626d17da655SSimon Glass 627d17da655SSimon Glass int fdtdec_get_int_array(const void *blob, int node, const char *prop_name, 628d17da655SSimon Glass u32 *array, int count) 629d17da655SSimon Glass { 630d17da655SSimon Glass const u32 *cell; 631d17da655SSimon Glass int i, err = 0; 632d17da655SSimon Glass 633d17da655SSimon Glass debug("%s: %s\n", __func__, prop_name); 634d17da655SSimon Glass cell = get_prop_check_min_len(blob, node, prop_name, 635d17da655SSimon Glass sizeof(u32) * count, &err); 636d17da655SSimon Glass if (!err) { 637d17da655SSimon Glass for (i = 0; i < count; i++) 638d17da655SSimon Glass array[i] = fdt32_to_cpu(cell[i]); 639d17da655SSimon Glass } 640d17da655SSimon Glass return err; 641d17da655SSimon Glass } 642d17da655SSimon Glass 643a9f04d49SSimon Glass int fdtdec_get_int_array_count(const void *blob, int node, 644a9f04d49SSimon Glass const char *prop_name, u32 *array, int count) 645a9f04d49SSimon Glass { 646a9f04d49SSimon Glass const u32 *cell; 647a9f04d49SSimon Glass int len, elems; 648a9f04d49SSimon Glass int i; 649a9f04d49SSimon Glass 650a9f04d49SSimon Glass debug("%s: %s\n", __func__, prop_name); 651a9f04d49SSimon Glass cell = fdt_getprop(blob, node, prop_name, &len); 652a9f04d49SSimon Glass if (!cell) 653a9f04d49SSimon Glass return -FDT_ERR_NOTFOUND; 654a9f04d49SSimon Glass elems = len / sizeof(u32); 655a9f04d49SSimon Glass if (count > elems) 656a9f04d49SSimon Glass count = elems; 657a9f04d49SSimon Glass for (i = 0; i < count; i++) 658a9f04d49SSimon Glass array[i] = fdt32_to_cpu(cell[i]); 659a9f04d49SSimon Glass 660a9f04d49SSimon Glass return count; 661a9f04d49SSimon Glass } 662a9f04d49SSimon Glass 66396875e7dSSimon Glass const u32 *fdtdec_locate_array(const void *blob, int node, 66496875e7dSSimon Glass const char *prop_name, int count) 66596875e7dSSimon Glass { 66696875e7dSSimon Glass const u32 *cell; 66796875e7dSSimon Glass int err; 66896875e7dSSimon Glass 66996875e7dSSimon Glass cell = get_prop_check_min_len(blob, node, prop_name, 67096875e7dSSimon Glass sizeof(u32) * count, &err); 67196875e7dSSimon Glass return err ? NULL : cell; 67296875e7dSSimon Glass } 67396875e7dSSimon Glass 674d17da655SSimon Glass int fdtdec_get_bool(const void *blob, int node, const char *prop_name) 675d17da655SSimon Glass { 676d17da655SSimon Glass const s32 *cell; 677d17da655SSimon Glass int len; 678d17da655SSimon Glass 679d17da655SSimon Glass debug("%s: %s\n", __func__, prop_name); 680d17da655SSimon Glass cell = fdt_getprop(blob, node, prop_name, &len); 681d17da655SSimon Glass return cell != NULL; 682d17da655SSimon Glass } 683ed3ee5cdSSimon Glass 68457068a7aSSimon Glass int fdtdec_parse_phandle_with_args(const void *blob, int src_node, 68557068a7aSSimon Glass const char *list_name, 68657068a7aSSimon Glass const char *cells_name, 68757068a7aSSimon Glass int cell_count, int index, 68857068a7aSSimon Glass struct fdtdec_phandle_args *out_args) 68957068a7aSSimon Glass { 69057068a7aSSimon Glass const __be32 *list, *list_end; 69157068a7aSSimon Glass int rc = 0, size, cur_index = 0; 69257068a7aSSimon Glass uint32_t count = 0; 69357068a7aSSimon Glass int node = -1; 69457068a7aSSimon Glass int phandle; 69557068a7aSSimon Glass 69657068a7aSSimon Glass /* Retrieve the phandle list property */ 69757068a7aSSimon Glass list = fdt_getprop(blob, src_node, list_name, &size); 69857068a7aSSimon Glass if (!list) 69957068a7aSSimon Glass return -ENOENT; 70057068a7aSSimon Glass list_end = list + size / sizeof(*list); 70157068a7aSSimon Glass 70257068a7aSSimon Glass /* Loop over the phandles until all the requested entry is found */ 70357068a7aSSimon Glass while (list < list_end) { 70457068a7aSSimon Glass rc = -EINVAL; 70557068a7aSSimon Glass count = 0; 70657068a7aSSimon Glass 70757068a7aSSimon Glass /* 70857068a7aSSimon Glass * If phandle is 0, then it is an empty entry with no 70957068a7aSSimon Glass * arguments. Skip forward to the next entry. 71057068a7aSSimon Glass */ 71157068a7aSSimon Glass phandle = be32_to_cpup(list++); 71257068a7aSSimon Glass if (phandle) { 71357068a7aSSimon Glass /* 71457068a7aSSimon Glass * Find the provider node and parse the #*-cells 71557068a7aSSimon Glass * property to determine the argument length. 71657068a7aSSimon Glass * 71757068a7aSSimon Glass * This is not needed if the cell count is hard-coded 71857068a7aSSimon Glass * (i.e. cells_name not set, but cell_count is set), 71957068a7aSSimon Glass * except when we're going to return the found node 72057068a7aSSimon Glass * below. 72157068a7aSSimon Glass */ 72257068a7aSSimon Glass if (cells_name || cur_index == index) { 72357068a7aSSimon Glass node = fdt_node_offset_by_phandle(blob, 72457068a7aSSimon Glass phandle); 72557068a7aSSimon Glass if (!node) { 72657068a7aSSimon Glass debug("%s: could not find phandle\n", 72757068a7aSSimon Glass fdt_get_name(blob, src_node, 72857068a7aSSimon Glass NULL)); 72957068a7aSSimon Glass goto err; 73057068a7aSSimon Glass } 73157068a7aSSimon Glass } 73257068a7aSSimon Glass 73357068a7aSSimon Glass if (cells_name) { 73457068a7aSSimon Glass count = fdtdec_get_int(blob, node, cells_name, 73557068a7aSSimon Glass -1); 73657068a7aSSimon Glass if (count == -1) { 73757068a7aSSimon Glass debug("%s: could not get %s for %s\n", 73857068a7aSSimon Glass fdt_get_name(blob, src_node, 73957068a7aSSimon Glass NULL), 74057068a7aSSimon Glass cells_name, 74157068a7aSSimon Glass fdt_get_name(blob, node, 74257068a7aSSimon Glass NULL)); 74357068a7aSSimon Glass goto err; 74457068a7aSSimon Glass } 74557068a7aSSimon Glass } else { 74657068a7aSSimon Glass count = cell_count; 74757068a7aSSimon Glass } 74857068a7aSSimon Glass 74957068a7aSSimon Glass /* 75057068a7aSSimon Glass * Make sure that the arguments actually fit in the 75157068a7aSSimon Glass * remaining property data length 75257068a7aSSimon Glass */ 75357068a7aSSimon Glass if (list + count > list_end) { 75457068a7aSSimon Glass debug("%s: arguments longer than property\n", 75557068a7aSSimon Glass fdt_get_name(blob, src_node, NULL)); 75657068a7aSSimon Glass goto err; 75757068a7aSSimon Glass } 75857068a7aSSimon Glass } 75957068a7aSSimon Glass 76057068a7aSSimon Glass /* 76157068a7aSSimon Glass * All of the error cases above bail out of the loop, so at 76257068a7aSSimon Glass * this point, the parsing is successful. If the requested 76357068a7aSSimon Glass * index matches, then fill the out_args structure and return, 76457068a7aSSimon Glass * or return -ENOENT for an empty entry. 76557068a7aSSimon Glass */ 76657068a7aSSimon Glass rc = -ENOENT; 76757068a7aSSimon Glass if (cur_index == index) { 76857068a7aSSimon Glass if (!phandle) 76957068a7aSSimon Glass goto err; 77057068a7aSSimon Glass 77157068a7aSSimon Glass if (out_args) { 77257068a7aSSimon Glass int i; 77357068a7aSSimon Glass 77457068a7aSSimon Glass if (count > MAX_PHANDLE_ARGS) { 77557068a7aSSimon Glass debug("%s: too many arguments %d\n", 77657068a7aSSimon Glass fdt_get_name(blob, src_node, 77757068a7aSSimon Glass NULL), count); 77857068a7aSSimon Glass count = MAX_PHANDLE_ARGS; 77957068a7aSSimon Glass } 78057068a7aSSimon Glass out_args->node = node; 78157068a7aSSimon Glass out_args->args_count = count; 78257068a7aSSimon Glass for (i = 0; i < count; i++) { 78357068a7aSSimon Glass out_args->args[i] = 78457068a7aSSimon Glass be32_to_cpup(list++); 78557068a7aSSimon Glass } 78657068a7aSSimon Glass } 78757068a7aSSimon Glass 78857068a7aSSimon Glass /* Found it! return success */ 78957068a7aSSimon Glass return 0; 79057068a7aSSimon Glass } 79157068a7aSSimon Glass 79257068a7aSSimon Glass node = -1; 79357068a7aSSimon Glass list += count; 79457068a7aSSimon Glass cur_index++; 79557068a7aSSimon Glass } 79657068a7aSSimon Glass 79757068a7aSSimon Glass /* 79857068a7aSSimon Glass * Result will be one of: 79957068a7aSSimon Glass * -ENOENT : index is for empty phandle 80057068a7aSSimon Glass * -EINVAL : parsing error on data 80157068a7aSSimon Glass * [1..n] : Number of phandle (count mode; when index = -1) 80257068a7aSSimon Glass */ 80357068a7aSSimon Glass rc = index < 0 ? cur_index : -ENOENT; 80457068a7aSSimon Glass err: 80557068a7aSSimon Glass return rc; 80657068a7aSSimon Glass } 80757068a7aSSimon Glass 808bed4d892SAnton Staff int fdtdec_get_byte_array(const void *blob, int node, const char *prop_name, 809bed4d892SAnton Staff u8 *array, int count) 810bed4d892SAnton Staff { 811bed4d892SAnton Staff const u8 *cell; 812bed4d892SAnton Staff int err; 813bed4d892SAnton Staff 814bed4d892SAnton Staff cell = get_prop_check_min_len(blob, node, prop_name, count, &err); 815bed4d892SAnton Staff if (!err) 816bed4d892SAnton Staff memcpy(array, cell, count); 817bed4d892SAnton Staff return err; 818bed4d892SAnton Staff } 819bed4d892SAnton Staff 820bed4d892SAnton Staff const u8 *fdtdec_locate_byte_array(const void *blob, int node, 821bed4d892SAnton Staff const char *prop_name, int count) 822bed4d892SAnton Staff { 823bed4d892SAnton Staff const u8 *cell; 824bed4d892SAnton Staff int err; 825bed4d892SAnton Staff 826bed4d892SAnton Staff cell = get_prop_check_min_len(blob, node, prop_name, count, &err); 827bed4d892SAnton Staff if (err) 828bed4d892SAnton Staff return NULL; 829bed4d892SAnton Staff return cell; 830bed4d892SAnton Staff } 83109258f1eSAbhilash Kesavan 83209258f1eSAbhilash Kesavan int fdtdec_get_config_int(const void *blob, const char *prop_name, 83309258f1eSAbhilash Kesavan int default_val) 83409258f1eSAbhilash Kesavan { 83509258f1eSAbhilash Kesavan int config_node; 83609258f1eSAbhilash Kesavan 83709258f1eSAbhilash Kesavan debug("%s: %s\n", __func__, prop_name); 83809258f1eSAbhilash Kesavan config_node = fdt_path_offset(blob, "/config"); 83909258f1eSAbhilash Kesavan if (config_node < 0) 84009258f1eSAbhilash Kesavan return default_val; 84109258f1eSAbhilash Kesavan return fdtdec_get_int(blob, config_node, prop_name, default_val); 84209258f1eSAbhilash Kesavan } 843332ab0d5SSimon Glass 84479289c0bSGabe Black int fdtdec_get_config_bool(const void *blob, const char *prop_name) 84579289c0bSGabe Black { 84679289c0bSGabe Black int config_node; 84779289c0bSGabe Black const void *prop; 84879289c0bSGabe Black 84979289c0bSGabe Black debug("%s: %s\n", __func__, prop_name); 85079289c0bSGabe Black config_node = fdt_path_offset(blob, "/config"); 85179289c0bSGabe Black if (config_node < 0) 85279289c0bSGabe Black return 0; 85379289c0bSGabe Black prop = fdt_get_property(blob, config_node, prop_name, NULL); 85479289c0bSGabe Black 85579289c0bSGabe Black return prop != NULL; 85679289c0bSGabe Black } 85779289c0bSGabe Black 858332ab0d5SSimon Glass char *fdtdec_get_config_string(const void *blob, const char *prop_name) 859332ab0d5SSimon Glass { 860332ab0d5SSimon Glass const char *nodep; 861332ab0d5SSimon Glass int nodeoffset; 862332ab0d5SSimon Glass int len; 863332ab0d5SSimon Glass 864332ab0d5SSimon Glass debug("%s: %s\n", __func__, prop_name); 865332ab0d5SSimon Glass nodeoffset = fdt_path_offset(blob, "/config"); 866332ab0d5SSimon Glass if (nodeoffset < 0) 867332ab0d5SSimon Glass return NULL; 868332ab0d5SSimon Glass 869332ab0d5SSimon Glass nodep = fdt_getprop(blob, nodeoffset, prop_name, &len); 870332ab0d5SSimon Glass if (!nodep) 871332ab0d5SSimon Glass return NULL; 872332ab0d5SSimon Glass 873332ab0d5SSimon Glass return (char *)nodep; 874332ab0d5SSimon Glass } 875f20c4619SSimon Glass 87676489832SSimon Glass int fdtdec_decode_region(const void *blob, int node, const char *prop_name, 87776489832SSimon Glass fdt_addr_t *basep, fdt_size_t *sizep) 878f20c4619SSimon Glass { 879f20c4619SSimon Glass const fdt_addr_t *cell; 880f20c4619SSimon Glass int len; 881f20c4619SSimon Glass 88276489832SSimon Glass debug("%s: %s: %s\n", __func__, fdt_get_name(blob, node, NULL), 88376489832SSimon Glass prop_name); 884f20c4619SSimon Glass cell = fdt_getprop(blob, node, prop_name, &len); 88576489832SSimon Glass if (!cell || (len < sizeof(fdt_addr_t) * 2)) { 88676489832SSimon Glass debug("cell=%p, len=%d\n", cell, len); 887f20c4619SSimon Glass return -1; 88876489832SSimon Glass } 889f20c4619SSimon Glass 89076489832SSimon Glass *basep = fdt_addr_to_cpu(*cell); 89176489832SSimon Glass *sizep = fdt_size_to_cpu(cell[1]); 89276489832SSimon Glass debug("%s: base=%08lx, size=%lx\n", __func__, (ulong)*basep, 89376489832SSimon Glass (ulong)*sizep); 89476489832SSimon Glass 895f20c4619SSimon Glass return 0; 896f20c4619SSimon Glass } 897006e73b9SSimon Glass 898006e73b9SSimon Glass /** 899006e73b9SSimon Glass * Read a flash entry from the fdt 900006e73b9SSimon Glass * 901006e73b9SSimon Glass * @param blob FDT blob 902006e73b9SSimon Glass * @param node Offset of node to read 903006e73b9SSimon Glass * @param name Name of node being read 904006e73b9SSimon Glass * @param entry Place to put offset and size of this node 905006e73b9SSimon Glass * @return 0 if ok, -ve on error 906006e73b9SSimon Glass */ 907006e73b9SSimon Glass int fdtdec_read_fmap_entry(const void *blob, int node, const char *name, 908006e73b9SSimon Glass struct fmap_entry *entry) 909006e73b9SSimon Glass { 910f3cc44f9SSimon Glass const char *prop; 911006e73b9SSimon Glass u32 reg[2]; 912006e73b9SSimon Glass 913006e73b9SSimon Glass if (fdtdec_get_int_array(blob, node, "reg", reg, 2)) { 914006e73b9SSimon Glass debug("Node '%s' has bad/missing 'reg' property\n", name); 915006e73b9SSimon Glass return -FDT_ERR_NOTFOUND; 916006e73b9SSimon Glass } 917006e73b9SSimon Glass entry->offset = reg[0]; 918006e73b9SSimon Glass entry->length = reg[1]; 919f3cc44f9SSimon Glass entry->used = fdtdec_get_int(blob, node, "used", entry->length); 920f3cc44f9SSimon Glass prop = fdt_getprop(blob, node, "compress", NULL); 921f3cc44f9SSimon Glass entry->compress_algo = prop && !strcmp(prop, "lzo") ? 922f3cc44f9SSimon Glass FMAP_COMPRESS_LZO : FMAP_COMPRESS_NONE; 923f3cc44f9SSimon Glass prop = fdt_getprop(blob, node, "hash", &entry->hash_size); 924f3cc44f9SSimon Glass entry->hash_algo = prop ? FMAP_HASH_SHA256 : FMAP_HASH_NONE; 925f3cc44f9SSimon Glass entry->hash = (uint8_t *)prop; 926006e73b9SSimon Glass 927006e73b9SSimon Glass return 0; 928006e73b9SSimon Glass } 92956f42242SThierry Reding 9305f7bfdd6SSimon Glass u64 fdtdec_get_number(const fdt32_t *ptr, unsigned int cells) 93156f42242SThierry Reding { 93256f42242SThierry Reding u64 number = 0; 93356f42242SThierry Reding 93456f42242SThierry Reding while (cells--) 93556f42242SThierry Reding number = (number << 32) | fdt32_to_cpu(*ptr++); 93656f42242SThierry Reding 93756f42242SThierry Reding return number; 93856f42242SThierry Reding } 93956f42242SThierry Reding 94056f42242SThierry Reding int fdt_get_resource(const void *fdt, int node, const char *property, 94156f42242SThierry Reding unsigned int index, struct fdt_resource *res) 94256f42242SThierry Reding { 94356f42242SThierry Reding const fdt32_t *ptr, *end; 94456f42242SThierry Reding int na, ns, len, parent; 94556f42242SThierry Reding unsigned int i = 0; 94656f42242SThierry Reding 94756f42242SThierry Reding parent = fdt_parent_offset(fdt, node); 94856f42242SThierry Reding if (parent < 0) 94956f42242SThierry Reding return parent; 95056f42242SThierry Reding 95156f42242SThierry Reding na = fdt_address_cells(fdt, parent); 95256f42242SThierry Reding ns = fdt_size_cells(fdt, parent); 95356f42242SThierry Reding 95456f42242SThierry Reding ptr = fdt_getprop(fdt, node, property, &len); 95556f42242SThierry Reding if (!ptr) 95656f42242SThierry Reding return len; 95756f42242SThierry Reding 95856f42242SThierry Reding end = ptr + len / sizeof(*ptr); 95956f42242SThierry Reding 96056f42242SThierry Reding while (ptr + na + ns <= end) { 96156f42242SThierry Reding if (i == index) { 96256f42242SThierry Reding res->start = res->end = fdtdec_get_number(ptr, na); 96356f42242SThierry Reding res->end += fdtdec_get_number(&ptr[na], ns) - 1; 96456f42242SThierry Reding return 0; 96556f42242SThierry Reding } 96656f42242SThierry Reding 96756f42242SThierry Reding ptr += na + ns; 96856f42242SThierry Reding i++; 96956f42242SThierry Reding } 97056f42242SThierry Reding 97156f42242SThierry Reding return -FDT_ERR_NOTFOUND; 97256f42242SThierry Reding } 97356f42242SThierry Reding 97456f42242SThierry Reding int fdt_get_named_resource(const void *fdt, int node, const char *property, 97556f42242SThierry Reding const char *prop_names, const char *name, 97656f42242SThierry Reding struct fdt_resource *res) 97756f42242SThierry Reding { 97856f42242SThierry Reding int index; 97956f42242SThierry Reding 98056f42242SThierry Reding index = fdt_find_string(fdt, node, prop_names, name); 98156f42242SThierry Reding if (index < 0) 98256f42242SThierry Reding return index; 98356f42242SThierry Reding 98456f42242SThierry Reding return fdt_get_resource(fdt, node, property, index, res); 98556f42242SThierry Reding } 9869f85eee7SThierry Reding 98726403871SSimon Glass int fdtdec_decode_memory_region(const void *blob, int config_node, 98826403871SSimon Glass const char *mem_type, const char *suffix, 98926403871SSimon Glass fdt_addr_t *basep, fdt_size_t *sizep) 99026403871SSimon Glass { 99126403871SSimon Glass char prop_name[50]; 99226403871SSimon Glass const char *mem; 99326403871SSimon Glass fdt_size_t size, offset_size; 99426403871SSimon Glass fdt_addr_t base, offset; 99526403871SSimon Glass int node; 99626403871SSimon Glass 99726403871SSimon Glass if (config_node == -1) { 99826403871SSimon Glass config_node = fdt_path_offset(blob, "/config"); 99926403871SSimon Glass if (config_node < 0) { 100026403871SSimon Glass debug("%s: Cannot find /config node\n", __func__); 100126403871SSimon Glass return -ENOENT; 100226403871SSimon Glass } 100326403871SSimon Glass } 100426403871SSimon Glass if (!suffix) 100526403871SSimon Glass suffix = ""; 100626403871SSimon Glass 100726403871SSimon Glass snprintf(prop_name, sizeof(prop_name), "%s-memory%s", mem_type, 100826403871SSimon Glass suffix); 100926403871SSimon Glass mem = fdt_getprop(blob, config_node, prop_name, NULL); 101026403871SSimon Glass if (!mem) { 101126403871SSimon Glass debug("%s: No memory type for '%s', using /memory\n", __func__, 101226403871SSimon Glass prop_name); 101326403871SSimon Glass mem = "/memory"; 101426403871SSimon Glass } 101526403871SSimon Glass 101626403871SSimon Glass node = fdt_path_offset(blob, mem); 101726403871SSimon Glass if (node < 0) { 101826403871SSimon Glass debug("%s: Failed to find node '%s': %s\n", __func__, mem, 101926403871SSimon Glass fdt_strerror(node)); 102026403871SSimon Glass return -ENOENT; 102126403871SSimon Glass } 102226403871SSimon Glass 102326403871SSimon Glass /* 102426403871SSimon Glass * Not strictly correct - the memory may have multiple banks. We just 102526403871SSimon Glass * use the first 102626403871SSimon Glass */ 102726403871SSimon Glass if (fdtdec_decode_region(blob, node, "reg", &base, &size)) { 102826403871SSimon Glass debug("%s: Failed to decode memory region %s\n", __func__, 102926403871SSimon Glass mem); 103026403871SSimon Glass return -EINVAL; 103126403871SSimon Glass } 103226403871SSimon Glass 103326403871SSimon Glass snprintf(prop_name, sizeof(prop_name), "%s-offset%s", mem_type, 103426403871SSimon Glass suffix); 103526403871SSimon Glass if (fdtdec_decode_region(blob, config_node, prop_name, &offset, 103626403871SSimon Glass &offset_size)) { 103726403871SSimon Glass debug("%s: Failed to decode memory region '%s'\n", __func__, 103826403871SSimon Glass prop_name); 103926403871SSimon Glass return -EINVAL; 104026403871SSimon Glass } 104126403871SSimon Glass 104226403871SSimon Glass *basep = base + offset; 104326403871SSimon Glass *sizep = offset_size; 104426403871SSimon Glass 104526403871SSimon Glass return 0; 104626403871SSimon Glass } 1047b45122fdSSimon Glass 104812e67114SSimon Glass static int decode_timing_property(const void *blob, int node, const char *name, 104912e67114SSimon Glass struct timing_entry *result) 105012e67114SSimon Glass { 105112e67114SSimon Glass int length, ret = 0; 105212e67114SSimon Glass const u32 *prop; 105312e67114SSimon Glass 105412e67114SSimon Glass prop = fdt_getprop(blob, node, name, &length); 105512e67114SSimon Glass if (!prop) { 105612e67114SSimon Glass debug("%s: could not find property %s\n", 105712e67114SSimon Glass fdt_get_name(blob, node, NULL), name); 105812e67114SSimon Glass return length; 105912e67114SSimon Glass } 106012e67114SSimon Glass 106112e67114SSimon Glass if (length == sizeof(u32)) { 106212e67114SSimon Glass result->typ = fdtdec_get_int(blob, node, name, 0); 106312e67114SSimon Glass result->min = result->typ; 106412e67114SSimon Glass result->max = result->typ; 106512e67114SSimon Glass } else { 106612e67114SSimon Glass ret = fdtdec_get_int_array(blob, node, name, &result->min, 3); 106712e67114SSimon Glass } 106812e67114SSimon Glass 106912e67114SSimon Glass return ret; 107012e67114SSimon Glass } 107112e67114SSimon Glass 107212e67114SSimon Glass int fdtdec_decode_display_timing(const void *blob, int parent, int index, 107312e67114SSimon Glass struct display_timing *dt) 107412e67114SSimon Glass { 107512e67114SSimon Glass int i, node, timings_node; 107612e67114SSimon Glass u32 val = 0; 107712e67114SSimon Glass int ret = 0; 107812e67114SSimon Glass 107912e67114SSimon Glass timings_node = fdt_subnode_offset(blob, parent, "display-timings"); 108012e67114SSimon Glass if (timings_node < 0) 108112e67114SSimon Glass return timings_node; 108212e67114SSimon Glass 108312e67114SSimon Glass for (i = 0, node = fdt_first_subnode(blob, timings_node); 108412e67114SSimon Glass node > 0 && i != index; 108512e67114SSimon Glass node = fdt_next_subnode(blob, node)) 108612e67114SSimon Glass i++; 108712e67114SSimon Glass 108812e67114SSimon Glass if (node < 0) 108912e67114SSimon Glass return node; 109012e67114SSimon Glass 109112e67114SSimon Glass memset(dt, 0, sizeof(*dt)); 109212e67114SSimon Glass 109312e67114SSimon Glass ret |= decode_timing_property(blob, node, "hback-porch", 109412e67114SSimon Glass &dt->hback_porch); 109512e67114SSimon Glass ret |= decode_timing_property(blob, node, "hfront-porch", 109612e67114SSimon Glass &dt->hfront_porch); 109712e67114SSimon Glass ret |= decode_timing_property(blob, node, "hactive", &dt->hactive); 109812e67114SSimon Glass ret |= decode_timing_property(blob, node, "hsync-len", &dt->hsync_len); 109912e67114SSimon Glass ret |= decode_timing_property(blob, node, "vback-porch", 110012e67114SSimon Glass &dt->vback_porch); 110112e67114SSimon Glass ret |= decode_timing_property(blob, node, "vfront-porch", 110212e67114SSimon Glass &dt->vfront_porch); 110312e67114SSimon Glass ret |= decode_timing_property(blob, node, "vactive", &dt->vactive); 110412e67114SSimon Glass ret |= decode_timing_property(blob, node, "vsync-len", &dt->vsync_len); 110512e67114SSimon Glass ret |= decode_timing_property(blob, node, "clock-frequency", 110612e67114SSimon Glass &dt->pixelclock); 110712e67114SSimon Glass 110812e67114SSimon Glass dt->flags = 0; 110912e67114SSimon Glass val = fdtdec_get_int(blob, node, "vsync-active", -1); 111012e67114SSimon Glass if (val != -1) { 111112e67114SSimon Glass dt->flags |= val ? DISPLAY_FLAGS_VSYNC_HIGH : 111212e67114SSimon Glass DISPLAY_FLAGS_VSYNC_LOW; 111312e67114SSimon Glass } 111412e67114SSimon Glass val = fdtdec_get_int(blob, node, "hsync-active", -1); 111512e67114SSimon Glass if (val != -1) { 111612e67114SSimon Glass dt->flags |= val ? DISPLAY_FLAGS_HSYNC_HIGH : 111712e67114SSimon Glass DISPLAY_FLAGS_HSYNC_LOW; 111812e67114SSimon Glass } 111912e67114SSimon Glass val = fdtdec_get_int(blob, node, "de-active", -1); 112012e67114SSimon Glass if (val != -1) { 112112e67114SSimon Glass dt->flags |= val ? DISPLAY_FLAGS_DE_HIGH : 112212e67114SSimon Glass DISPLAY_FLAGS_DE_LOW; 112312e67114SSimon Glass } 112412e67114SSimon Glass val = fdtdec_get_int(blob, node, "pixelclk-active", -1); 112512e67114SSimon Glass if (val != -1) { 112612e67114SSimon Glass dt->flags |= val ? DISPLAY_FLAGS_PIXDATA_POSEDGE : 112712e67114SSimon Glass DISPLAY_FLAGS_PIXDATA_NEGEDGE; 112812e67114SSimon Glass } 112912e67114SSimon Glass 113012e67114SSimon Glass if (fdtdec_get_bool(blob, node, "interlaced")) 113112e67114SSimon Glass dt->flags |= DISPLAY_FLAGS_INTERLACED; 113212e67114SSimon Glass if (fdtdec_get_bool(blob, node, "doublescan")) 113312e67114SSimon Glass dt->flags |= DISPLAY_FLAGS_DOUBLESCAN; 113412e67114SSimon Glass if (fdtdec_get_bool(blob, node, "doubleclk")) 113512e67114SSimon Glass dt->flags |= DISPLAY_FLAGS_DOUBLECLK; 113612e67114SSimon Glass 113712e67114SSimon Glass return 0; 113812e67114SSimon Glass } 113912e67114SSimon Glass 11400879361fSSimon Glass int fdtdec_setup(void) 1141b45122fdSSimon Glass { 11420f925822SMasahiro Yamada #if CONFIG_IS_ENABLED(OF_CONTROL) 1143b45122fdSSimon Glass # ifdef CONFIG_OF_EMBED 1144b45122fdSSimon Glass /* Get a pointer to the FDT */ 1145b45122fdSSimon Glass gd->fdt_blob = __dtb_dt_begin; 1146b45122fdSSimon Glass # elif defined CONFIG_OF_SEPARATE 1147b45122fdSSimon Glass # ifdef CONFIG_SPL_BUILD 1148b45122fdSSimon Glass /* FDT is at end of BSS */ 1149b45122fdSSimon Glass gd->fdt_blob = (ulong *)&__bss_end; 1150b45122fdSSimon Glass # else 1151b45122fdSSimon Glass /* FDT is at end of image */ 1152b45122fdSSimon Glass gd->fdt_blob = (ulong *)&_end; 115329a23f9dSHeiko Schocher # endif 1154b45122fdSSimon Glass # elif defined(CONFIG_OF_HOSTFILE) 1155b45122fdSSimon Glass if (sandbox_read_fdt_from_file()) { 1156b45122fdSSimon Glass puts("Failed to read control FDT\n"); 1157b45122fdSSimon Glass return -1; 1158b45122fdSSimon Glass } 1159b45122fdSSimon Glass # endif 1160b45122fdSSimon Glass # ifndef CONFIG_SPL_BUILD 1161b45122fdSSimon Glass /* Allow the early environment to override the fdt address */ 1162b45122fdSSimon Glass gd->fdt_blob = (void *)getenv_ulong("fdtcontroladdr", 16, 1163b45122fdSSimon Glass (uintptr_t)gd->fdt_blob); 1164b45122fdSSimon Glass # endif 1165b45122fdSSimon Glass #endif 11660879361fSSimon Glass return fdtdec_prepare_fdt(); 1167b45122fdSSimon Glass } 1168b45122fdSSimon Glass 1169b45122fdSSimon Glass #endif /* !USE_HOSTCC */ 1170