1b5220bc6SSimon Glass /* 2b5220bc6SSimon Glass * Copyright (c) 2011 The Chromium OS Authors. 3*1a459660SWolfgang Denk * SPDX-License-Identifier: GPL-2.0+ 4b5220bc6SSimon Glass */ 5b5220bc6SSimon Glass 6b5220bc6SSimon Glass #include <common.h> 7b5220bc6SSimon Glass #include <serial.h> 8b5220bc6SSimon Glass #include <libfdt.h> 9b5220bc6SSimon Glass #include <fdtdec.h> 10b5220bc6SSimon Glass 11e46431e1SMichal Simek #include <asm/gpio.h> 12ed3ee5cdSSimon Glass 13b5220bc6SSimon Glass DECLARE_GLOBAL_DATA_PTR; 14b5220bc6SSimon Glass 15b5220bc6SSimon Glass /* 16b5220bc6SSimon Glass * Here are the type we know about. One day we might allow drivers to 17b5220bc6SSimon Glass * register. For now we just put them here. The COMPAT macro allows us to 18b5220bc6SSimon Glass * turn this into a sparse list later, and keeps the ID with the name. 19b5220bc6SSimon Glass */ 20b5220bc6SSimon Glass #define COMPAT(id, name) name 21b5220bc6SSimon Glass static const char * const compat_names[COMPAT_COUNT] = { 22f88fe2deSSimon Glass COMPAT(UNKNOWN, "<none>"), 2387f938c9SSimon Glass COMPAT(NVIDIA_TEGRA20_USB, "nvidia,tegra20-ehci"), 247e44d932SJim Lin COMPAT(NVIDIA_TEGRA30_USB, "nvidia,tegra30-ehci"), 257e44d932SJim Lin COMPAT(NVIDIA_TEGRA114_USB, "nvidia,tegra114-ehci"), 26e32624efSTom Warren COMPAT(NVIDIA_TEGRA114_I2C, "nvidia,tegra114-i2c"), 2796a78ac0SYen Lin COMPAT(NVIDIA_TEGRA20_I2C, "nvidia,tegra20-i2c"), 2896a78ac0SYen Lin COMPAT(NVIDIA_TEGRA20_DVC, "nvidia,tegra20-i2c-dvc"), 290e35ad05SJimmy Zhang COMPAT(NVIDIA_TEGRA20_EMC, "nvidia,tegra20-emc"), 300e35ad05SJimmy Zhang COMPAT(NVIDIA_TEGRA20_EMC_TABLE, "nvidia,tegra20-emc-table"), 316642a681SRakesh Iyer COMPAT(NVIDIA_TEGRA20_KBC, "nvidia,tegra20-kbc"), 32312693c3SJim Lin COMPAT(NVIDIA_TEGRA20_NAND, "nvidia,tegra20-nand"), 33e1ae0d1fSSimon Glass COMPAT(NVIDIA_TEGRA20_PWM, "nvidia,tegra20-pwm"), 3487540de3SWei Ni COMPAT(NVIDIA_TEGRA20_DC, "nvidia,tegra20-dc"), 35f4e4e0b0STom Warren COMPAT(NVIDIA_TEGRA30_SDMMC, "nvidia,tegra30-sdhci"), 36c9aa831eSTom Warren COMPAT(NVIDIA_TEGRA20_SDMMC, "nvidia,tegra20-sdhci"), 378f1b46b1SAllen Martin COMPAT(NVIDIA_TEGRA20_SFLASH, "nvidia,tegra20-sflash"), 38b19f5749SAllen Martin COMPAT(NVIDIA_TEGRA20_SLINK, "nvidia,tegra20-slink"), 39c3bb3c8bSAllen Martin COMPAT(NVIDIA_TEGRA114_SPI, "nvidia,tegra114-spi"), 40cc9fe33aSHatim RV COMPAT(SMSC_LAN9215, "smsc,lan9215"), 41cc9fe33aSHatim RV COMPAT(SAMSUNG_EXYNOS5_SROMC, "samsung,exynos-sromc"), 42c34253d1SRajeshwari Shinde COMPAT(SAMSUNG_S3C2440_I2C, "samsung,s3c2440-i2c"), 4372dbff12SRajeshwari Shinde COMPAT(SAMSUNG_EXYNOS5_SOUND, "samsung,exynos-sound"), 4472dbff12SRajeshwari Shinde COMPAT(WOLFSON_WM8994_CODEC, "wolfson,wm8994-codec"), 455d50659dSRajeshwari Shinde COMPAT(SAMSUNG_EXYNOS_SPI, "samsung,exynos-spi"), 4688364387SHung-ying Tyan COMPAT(GOOGLE_CROS_EC, "google,cros-ec"), 47713cb680SHung-ying Tyan COMPAT(GOOGLE_CROS_EC_KEYB, "google,cros-ec-keyb"), 486abd1620SRajeshwari Shinde COMPAT(SAMSUNG_EXYNOS_EHCI, "samsung,exynos-ehci"), 496abd1620SRajeshwari Shinde COMPAT(SAMSUNG_EXYNOS_USB_PHY, "samsung,exynos-usb-phy"), 50618766c0SAkshay Saraswat COMPAT(SAMSUNG_EXYNOS_TMU, "samsung,exynos-tmu"), 51d7377b51SAjay Kumar COMPAT(SAMSUNG_EXYNOS_FIMD, "samsung,exynos-fimd"), 521e4706a7SAjay Kumar COMPAT(SAMSUNG_EXYNOS5_DP, "samsung,exynos5-dp"), 5345a4d4d3SAmar COMPAT(SAMSUNG_EXYNOS5_DWMMC, "samsung,exynos5250-dwmmc"), 54ee1e3c2fSRajeshwari Shinde COMPAT(SAMSUNG_EXYNOS_SERIAL, "samsung,exynos4210-uart"), 55cd577e2bSRajeshwari Shinde COMPAT(MAXIM_MAX77686_PMIC, "maxim,max77686_pmic"), 56bb8215f4SSimon Glass COMPAT(GENERIC_SPI_FLASH, "spi-flash"), 577772bb78SRajeshwari Shinde COMPAT(MAXIM_98095_CODEC, "maxim,max98095-codec"), 58f6267998SRong Chang COMPAT(INFINEON_SLB9635_TPM, "infineon,slb9635-tpm"), 59ec34fa5eSVincent Palatin COMPAT(INFINEON_SLB9645_TPM, "infineon,slb9645-tpm"), 60b5220bc6SSimon Glass }; 61b5220bc6SSimon Glass 62a53f4a29SSimon Glass const char *fdtdec_get_compatible(enum fdt_compat_id id) 63a53f4a29SSimon Glass { 64a53f4a29SSimon Glass /* We allow reading of the 'unknown' ID for testing purposes */ 65a53f4a29SSimon Glass assert(id >= 0 && id < COMPAT_COUNT); 66a53f4a29SSimon Glass return compat_names[id]; 67a53f4a29SSimon Glass } 68a53f4a29SSimon Glass 694397a2a8SSimon Glass fdt_addr_t fdtdec_get_addr_size(const void *blob, int node, 704397a2a8SSimon Glass const char *prop_name, fdt_size_t *sizep) 71b5220bc6SSimon Glass { 72b5220bc6SSimon Glass const fdt_addr_t *cell; 73b5220bc6SSimon Glass int len; 74b5220bc6SSimon Glass 751cb2323bSSimon Glass debug("%s: %s: ", __func__, prop_name); 76b5220bc6SSimon Glass cell = fdt_getprop(blob, node, prop_name, &len); 774397a2a8SSimon Glass if (cell && ((!sizep && len == sizeof(fdt_addr_t)) || 781cb2323bSSimon Glass len == sizeof(fdt_addr_t) * 2)) { 791cb2323bSSimon Glass fdt_addr_t addr = fdt_addr_to_cpu(*cell); 804397a2a8SSimon Glass if (sizep) { 814397a2a8SSimon Glass const fdt_size_t *size; 821cb2323bSSimon Glass 834397a2a8SSimon Glass size = (fdt_size_t *)((char *)cell + 844397a2a8SSimon Glass sizeof(fdt_addr_t)); 854397a2a8SSimon Glass *sizep = fdt_size_to_cpu(*size); 864397a2a8SSimon Glass debug("addr=%p, size=%p\n", (void *)addr, 874397a2a8SSimon Glass (void *)*sizep); 884397a2a8SSimon Glass } else { 891cb2323bSSimon Glass debug("%p\n", (void *)addr); 904397a2a8SSimon Glass } 911cb2323bSSimon Glass return addr; 921cb2323bSSimon Glass } 931cb2323bSSimon Glass debug("(not found)\n"); 94b5220bc6SSimon Glass return FDT_ADDR_T_NONE; 95b5220bc6SSimon Glass } 96b5220bc6SSimon Glass 974397a2a8SSimon Glass fdt_addr_t fdtdec_get_addr(const void *blob, int node, 984397a2a8SSimon Glass const char *prop_name) 994397a2a8SSimon Glass { 1004397a2a8SSimon Glass return fdtdec_get_addr_size(blob, node, prop_name, NULL); 1014397a2a8SSimon Glass } 1024397a2a8SSimon Glass 103b5220bc6SSimon Glass s32 fdtdec_get_int(const void *blob, int node, const char *prop_name, 104b5220bc6SSimon Glass s32 default_val) 105b5220bc6SSimon Glass { 106b5220bc6SSimon Glass const s32 *cell; 107b5220bc6SSimon Glass int len; 108b5220bc6SSimon Glass 1091cb2323bSSimon Glass debug("%s: %s: ", __func__, prop_name); 110b5220bc6SSimon Glass cell = fdt_getprop(blob, node, prop_name, &len); 1111cb2323bSSimon Glass if (cell && len >= sizeof(s32)) { 1121cb2323bSSimon Glass s32 val = fdt32_to_cpu(cell[0]); 1131cb2323bSSimon Glass 1141cb2323bSSimon Glass debug("%#x (%d)\n", val, val); 1151cb2323bSSimon Glass return val; 1161cb2323bSSimon Glass } 1171cb2323bSSimon Glass debug("(not found)\n"); 118b5220bc6SSimon Glass return default_val; 119b5220bc6SSimon Glass } 120b5220bc6SSimon Glass 121aadef0a1SChe-Liang Chiou uint64_t fdtdec_get_uint64(const void *blob, int node, const char *prop_name, 122aadef0a1SChe-Liang Chiou uint64_t default_val) 123aadef0a1SChe-Liang Chiou { 124aadef0a1SChe-Liang Chiou const uint64_t *cell64; 125aadef0a1SChe-Liang Chiou int length; 126aadef0a1SChe-Liang Chiou 127aadef0a1SChe-Liang Chiou cell64 = fdt_getprop(blob, node, prop_name, &length); 128aadef0a1SChe-Liang Chiou if (!cell64 || length < sizeof(*cell64)) 129aadef0a1SChe-Liang Chiou return default_val; 130aadef0a1SChe-Liang Chiou 131aadef0a1SChe-Liang Chiou return fdt64_to_cpu(*cell64); 132aadef0a1SChe-Liang Chiou } 133aadef0a1SChe-Liang Chiou 134f88fe2deSSimon Glass int fdtdec_get_is_enabled(const void *blob, int node) 135b5220bc6SSimon Glass { 136b5220bc6SSimon Glass const char *cell; 137b5220bc6SSimon Glass 138f88fe2deSSimon Glass /* 139f88fe2deSSimon Glass * It should say "okay", so only allow that. Some fdts use "ok" but 140f88fe2deSSimon Glass * this is a bug. Please fix your device tree source file. See here 141f88fe2deSSimon Glass * for discussion: 142f88fe2deSSimon Glass * 143f88fe2deSSimon Glass * http://www.mail-archive.com/u-boot@lists.denx.de/msg71598.html 144f88fe2deSSimon Glass */ 145b5220bc6SSimon Glass cell = fdt_getprop(blob, node, "status", NULL); 146b5220bc6SSimon Glass if (cell) 147f88fe2deSSimon Glass return 0 == strcmp(cell, "okay"); 148f88fe2deSSimon Glass return 1; 149b5220bc6SSimon Glass } 150b5220bc6SSimon Glass 1517cde397bSGerald Van Baren enum fdt_compat_id fdtdec_lookup(const void *blob, int node) 152b5220bc6SSimon Glass { 153b5220bc6SSimon Glass enum fdt_compat_id id; 154b5220bc6SSimon Glass 155b5220bc6SSimon Glass /* Search our drivers */ 156b5220bc6SSimon Glass for (id = COMPAT_UNKNOWN; id < COMPAT_COUNT; id++) 157b5220bc6SSimon Glass if (0 == fdt_node_check_compatible(blob, node, 158b5220bc6SSimon Glass compat_names[id])) 159b5220bc6SSimon Glass return id; 160b5220bc6SSimon Glass return COMPAT_UNKNOWN; 161b5220bc6SSimon Glass } 162b5220bc6SSimon Glass 163b5220bc6SSimon Glass int fdtdec_next_compatible(const void *blob, int node, 164b5220bc6SSimon Glass enum fdt_compat_id id) 165b5220bc6SSimon Glass { 166b5220bc6SSimon Glass return fdt_node_offset_by_compatible(blob, node, compat_names[id]); 167b5220bc6SSimon Glass } 168b5220bc6SSimon Glass 1693ddecfc7SSimon Glass int fdtdec_next_compatible_subnode(const void *blob, int node, 1703ddecfc7SSimon Glass enum fdt_compat_id id, int *depthp) 1713ddecfc7SSimon Glass { 1723ddecfc7SSimon Glass do { 1733ddecfc7SSimon Glass node = fdt_next_node(blob, node, depthp); 1743ddecfc7SSimon Glass } while (*depthp > 1); 1753ddecfc7SSimon Glass 1763ddecfc7SSimon Glass /* If this is a direct subnode, and compatible, return it */ 1773ddecfc7SSimon Glass if (*depthp == 1 && 0 == fdt_node_check_compatible( 1783ddecfc7SSimon Glass blob, node, compat_names[id])) 1793ddecfc7SSimon Glass return node; 1803ddecfc7SSimon Glass 1813ddecfc7SSimon Glass return -FDT_ERR_NOTFOUND; 1823ddecfc7SSimon Glass } 1833ddecfc7SSimon Glass 184b5220bc6SSimon Glass int fdtdec_next_alias(const void *blob, const char *name, 185b5220bc6SSimon Glass enum fdt_compat_id id, int *upto) 186b5220bc6SSimon Glass { 187b5220bc6SSimon Glass #define MAX_STR_LEN 20 188b5220bc6SSimon Glass char str[MAX_STR_LEN + 20]; 189b5220bc6SSimon Glass int node, err; 190b5220bc6SSimon Glass 191b5220bc6SSimon Glass /* snprintf() is not available */ 192b5220bc6SSimon Glass assert(strlen(name) < MAX_STR_LEN); 193b5220bc6SSimon Glass sprintf(str, "%.*s%d", MAX_STR_LEN, name, *upto); 19400878476SSimon Glass node = fdt_path_offset(blob, str); 195b5220bc6SSimon Glass if (node < 0) 196b5220bc6SSimon Glass return node; 197b5220bc6SSimon Glass err = fdt_node_check_compatible(blob, node, compat_names[id]); 198b5220bc6SSimon Glass if (err < 0) 199b5220bc6SSimon Glass return err; 200f88fe2deSSimon Glass if (err) 201f88fe2deSSimon Glass return -FDT_ERR_NOTFOUND; 202f88fe2deSSimon Glass (*upto)++; 203f88fe2deSSimon Glass return node; 204b5220bc6SSimon Glass } 205b5220bc6SSimon Glass 206a53f4a29SSimon Glass int fdtdec_find_aliases_for_id(const void *blob, const char *name, 207a53f4a29SSimon Glass enum fdt_compat_id id, int *node_list, int maxcount) 208a53f4a29SSimon Glass { 209c6782270SSimon Glass memset(node_list, '\0', sizeof(*node_list) * maxcount); 210c6782270SSimon Glass 211c6782270SSimon Glass return fdtdec_add_aliases_for_id(blob, name, id, node_list, maxcount); 212c6782270SSimon Glass } 213c6782270SSimon Glass 214c6782270SSimon Glass /* TODO: Can we tighten this code up a little? */ 215c6782270SSimon Glass int fdtdec_add_aliases_for_id(const void *blob, const char *name, 216c6782270SSimon Glass enum fdt_compat_id id, int *node_list, int maxcount) 217c6782270SSimon Glass { 218a53f4a29SSimon Glass int name_len = strlen(name); 219a53f4a29SSimon Glass int nodes[maxcount]; 220a53f4a29SSimon Glass int num_found = 0; 221a53f4a29SSimon Glass int offset, node; 222a53f4a29SSimon Glass int alias_node; 223a53f4a29SSimon Glass int count; 224a53f4a29SSimon Glass int i, j; 225a53f4a29SSimon Glass 226a53f4a29SSimon Glass /* find the alias node if present */ 227a53f4a29SSimon Glass alias_node = fdt_path_offset(blob, "/aliases"); 228a53f4a29SSimon Glass 229a53f4a29SSimon Glass /* 230a53f4a29SSimon Glass * start with nothing, and we can assume that the root node can't 231a53f4a29SSimon Glass * match 232a53f4a29SSimon Glass */ 233a53f4a29SSimon Glass memset(nodes, '\0', sizeof(nodes)); 234a53f4a29SSimon Glass 235a53f4a29SSimon Glass /* First find all the compatible nodes */ 236a53f4a29SSimon Glass for (node = count = 0; node >= 0 && count < maxcount;) { 237a53f4a29SSimon Glass node = fdtdec_next_compatible(blob, node, id); 238a53f4a29SSimon Glass if (node >= 0) 239a53f4a29SSimon Glass nodes[count++] = node; 240a53f4a29SSimon Glass } 241a53f4a29SSimon Glass if (node >= 0) 242a53f4a29SSimon Glass debug("%s: warning: maxcount exceeded with alias '%s'\n", 243a53f4a29SSimon Glass __func__, name); 244a53f4a29SSimon Glass 245a53f4a29SSimon Glass /* Now find all the aliases */ 246a53f4a29SSimon Glass for (offset = fdt_first_property_offset(blob, alias_node); 247a53f4a29SSimon Glass offset > 0; 248a53f4a29SSimon Glass offset = fdt_next_property_offset(blob, offset)) { 249a53f4a29SSimon Glass const struct fdt_property *prop; 250a53f4a29SSimon Glass const char *path; 251a53f4a29SSimon Glass int number; 252a53f4a29SSimon Glass int found; 253a53f4a29SSimon Glass 254a53f4a29SSimon Glass node = 0; 255a53f4a29SSimon Glass prop = fdt_get_property_by_offset(blob, offset, NULL); 256a53f4a29SSimon Glass path = fdt_string(blob, fdt32_to_cpu(prop->nameoff)); 257a53f4a29SSimon Glass if (prop->len && 0 == strncmp(path, name, name_len)) 258a53f4a29SSimon Glass node = fdt_path_offset(blob, prop->data); 259a53f4a29SSimon Glass if (node <= 0) 260a53f4a29SSimon Glass continue; 261a53f4a29SSimon Glass 262a53f4a29SSimon Glass /* Get the alias number */ 263a53f4a29SSimon Glass number = simple_strtoul(path + name_len, NULL, 10); 264a53f4a29SSimon Glass if (number < 0 || number >= maxcount) { 265a53f4a29SSimon Glass debug("%s: warning: alias '%s' is out of range\n", 266a53f4a29SSimon Glass __func__, path); 267a53f4a29SSimon Glass continue; 268a53f4a29SSimon Glass } 269a53f4a29SSimon Glass 270a53f4a29SSimon Glass /* Make sure the node we found is actually in our list! */ 271a53f4a29SSimon Glass found = -1; 272a53f4a29SSimon Glass for (j = 0; j < count; j++) 273a53f4a29SSimon Glass if (nodes[j] == node) { 274a53f4a29SSimon Glass found = j; 275a53f4a29SSimon Glass break; 276a53f4a29SSimon Glass } 277a53f4a29SSimon Glass 278a53f4a29SSimon Glass if (found == -1) { 279a53f4a29SSimon Glass debug("%s: warning: alias '%s' points to a node " 280a53f4a29SSimon Glass "'%s' that is missing or is not compatible " 281a53f4a29SSimon Glass " with '%s'\n", __func__, path, 282a53f4a29SSimon Glass fdt_get_name(blob, node, NULL), 283a53f4a29SSimon Glass compat_names[id]); 284a53f4a29SSimon Glass continue; 285a53f4a29SSimon Glass } 286a53f4a29SSimon Glass 287a53f4a29SSimon Glass /* 288a53f4a29SSimon Glass * Add this node to our list in the right place, and mark 289a53f4a29SSimon Glass * it as done. 290a53f4a29SSimon Glass */ 291a53f4a29SSimon Glass if (fdtdec_get_is_enabled(blob, node)) { 292c6782270SSimon Glass if (node_list[number]) { 293c6782270SSimon Glass debug("%s: warning: alias '%s' requires that " 294c6782270SSimon Glass "a node be placed in the list in a " 295c6782270SSimon Glass "position which is already filled by " 296c6782270SSimon Glass "node '%s'\n", __func__, path, 297c6782270SSimon Glass fdt_get_name(blob, node, NULL)); 298c6782270SSimon Glass continue; 299c6782270SSimon Glass } 300a53f4a29SSimon Glass node_list[number] = node; 301a53f4a29SSimon Glass if (number >= num_found) 302a53f4a29SSimon Glass num_found = number + 1; 303a53f4a29SSimon Glass } 304c6782270SSimon Glass nodes[found] = 0; 305a53f4a29SSimon Glass } 306a53f4a29SSimon Glass 307a53f4a29SSimon Glass /* Add any nodes not mentioned by an alias */ 308a53f4a29SSimon Glass for (i = j = 0; i < maxcount; i++) { 309a53f4a29SSimon Glass if (!node_list[i]) { 310a53f4a29SSimon Glass for (; j < maxcount; j++) 311a53f4a29SSimon Glass if (nodes[j] && 312a53f4a29SSimon Glass fdtdec_get_is_enabled(blob, nodes[j])) 313a53f4a29SSimon Glass break; 314a53f4a29SSimon Glass 315a53f4a29SSimon Glass /* Have we run out of nodes to add? */ 316a53f4a29SSimon Glass if (j == maxcount) 317a53f4a29SSimon Glass break; 318a53f4a29SSimon Glass 319a53f4a29SSimon Glass assert(!node_list[i]); 320a53f4a29SSimon Glass node_list[i] = nodes[j++]; 321a53f4a29SSimon Glass if (i >= num_found) 322a53f4a29SSimon Glass num_found = i + 1; 323a53f4a29SSimon Glass } 324a53f4a29SSimon Glass } 325a53f4a29SSimon Glass 326a53f4a29SSimon Glass return num_found; 327a53f4a29SSimon Glass } 328a53f4a29SSimon Glass 3299a263e55SSimon Glass int fdtdec_check_fdt(void) 3309a263e55SSimon Glass { 3319a263e55SSimon Glass /* 3329a263e55SSimon Glass * We must have an FDT, but we cannot panic() yet since the console 3339a263e55SSimon Glass * is not ready. So for now, just assert(). Boards which need an early 3349a263e55SSimon Glass * FDT (prior to console ready) will need to make their own 3359a263e55SSimon Glass * arrangements and do their own checks. 3369a263e55SSimon Glass */ 3379a263e55SSimon Glass assert(!fdtdec_prepare_fdt()); 3389a263e55SSimon Glass return 0; 3399a263e55SSimon Glass } 3409a263e55SSimon Glass 341b5220bc6SSimon Glass /* 342b5220bc6SSimon Glass * This function is a little odd in that it accesses global data. At some 343b5220bc6SSimon Glass * point if the architecture board.c files merge this will make more sense. 344b5220bc6SSimon Glass * Even now, it is common code. 345b5220bc6SSimon Glass */ 3469a263e55SSimon Glass int fdtdec_prepare_fdt(void) 347b5220bc6SSimon Glass { 348c309c2daSSimon Glass if (!gd->fdt_blob || ((uintptr_t)gd->fdt_blob & 3) || 349c309c2daSSimon Glass fdt_check_header(gd->fdt_blob)) { 3509a263e55SSimon Glass printf("No valid FDT found - please append one to U-Boot " 3519a263e55SSimon Glass "binary, use u-boot-dtb.bin or define " 352a733b06bSSimon Glass "CONFIG_OF_EMBED. For sandbox, use -d <file.dtb>\n"); 3539a263e55SSimon Glass return -1; 3549a263e55SSimon Glass } 355b5220bc6SSimon Glass return 0; 356b5220bc6SSimon Glass } 357d17da655SSimon Glass 358d17da655SSimon Glass int fdtdec_lookup_phandle(const void *blob, int node, const char *prop_name) 359d17da655SSimon Glass { 360d17da655SSimon Glass const u32 *phandle; 361d17da655SSimon Glass int lookup; 362d17da655SSimon Glass 3631cb2323bSSimon Glass debug("%s: %s\n", __func__, prop_name); 364d17da655SSimon Glass phandle = fdt_getprop(blob, node, prop_name, NULL); 365d17da655SSimon Glass if (!phandle) 366d17da655SSimon Glass return -FDT_ERR_NOTFOUND; 367d17da655SSimon Glass 368d17da655SSimon Glass lookup = fdt_node_offset_by_phandle(blob, fdt32_to_cpu(*phandle)); 369d17da655SSimon Glass return lookup; 370d17da655SSimon Glass } 371d17da655SSimon Glass 372d17da655SSimon Glass /** 373d17da655SSimon Glass * Look up a property in a node and check that it has a minimum length. 374d17da655SSimon Glass * 375d17da655SSimon Glass * @param blob FDT blob 376d17da655SSimon Glass * @param node node to examine 377d17da655SSimon Glass * @param prop_name name of property to find 378d17da655SSimon Glass * @param min_len minimum property length in bytes 379d17da655SSimon Glass * @param err 0 if ok, or -FDT_ERR_NOTFOUND if the property is not 380d17da655SSimon Glass found, or -FDT_ERR_BADLAYOUT if not enough data 381d17da655SSimon Glass * @return pointer to cell, which is only valid if err == 0 382d17da655SSimon Glass */ 383d17da655SSimon Glass static const void *get_prop_check_min_len(const void *blob, int node, 384d17da655SSimon Glass const char *prop_name, int min_len, int *err) 385d17da655SSimon Glass { 386d17da655SSimon Glass const void *cell; 387d17da655SSimon Glass int len; 388d17da655SSimon Glass 389d17da655SSimon Glass debug("%s: %s\n", __func__, prop_name); 390d17da655SSimon Glass cell = fdt_getprop(blob, node, prop_name, &len); 391d17da655SSimon Glass if (!cell) 392d17da655SSimon Glass *err = -FDT_ERR_NOTFOUND; 393d17da655SSimon Glass else if (len < min_len) 394d17da655SSimon Glass *err = -FDT_ERR_BADLAYOUT; 395d17da655SSimon Glass else 396d17da655SSimon Glass *err = 0; 397d17da655SSimon Glass return cell; 398d17da655SSimon Glass } 399d17da655SSimon Glass 400d17da655SSimon Glass int fdtdec_get_int_array(const void *blob, int node, const char *prop_name, 401d17da655SSimon Glass u32 *array, int count) 402d17da655SSimon Glass { 403d17da655SSimon Glass const u32 *cell; 404d17da655SSimon Glass int i, err = 0; 405d17da655SSimon Glass 406d17da655SSimon Glass debug("%s: %s\n", __func__, prop_name); 407d17da655SSimon Glass cell = get_prop_check_min_len(blob, node, prop_name, 408d17da655SSimon Glass sizeof(u32) * count, &err); 409d17da655SSimon Glass if (!err) { 410d17da655SSimon Glass for (i = 0; i < count; i++) 411d17da655SSimon Glass array[i] = fdt32_to_cpu(cell[i]); 412d17da655SSimon Glass } 413d17da655SSimon Glass return err; 414d17da655SSimon Glass } 415d17da655SSimon Glass 41696875e7dSSimon Glass const u32 *fdtdec_locate_array(const void *blob, int node, 41796875e7dSSimon Glass const char *prop_name, int count) 41896875e7dSSimon Glass { 41996875e7dSSimon Glass const u32 *cell; 42096875e7dSSimon Glass int err; 42196875e7dSSimon Glass 42296875e7dSSimon Glass cell = get_prop_check_min_len(blob, node, prop_name, 42396875e7dSSimon Glass sizeof(u32) * count, &err); 42496875e7dSSimon Glass return err ? NULL : cell; 42596875e7dSSimon Glass } 42696875e7dSSimon Glass 427d17da655SSimon Glass int fdtdec_get_bool(const void *blob, int node, const char *prop_name) 428d17da655SSimon Glass { 429d17da655SSimon Glass const s32 *cell; 430d17da655SSimon Glass int len; 431d17da655SSimon Glass 432d17da655SSimon Glass debug("%s: %s\n", __func__, prop_name); 433d17da655SSimon Glass cell = fdt_getprop(blob, node, prop_name, &len); 434d17da655SSimon Glass return cell != NULL; 435d17da655SSimon Glass } 436ed3ee5cdSSimon Glass 437ed3ee5cdSSimon Glass /** 438ed3ee5cdSSimon Glass * Decode a list of GPIOs from an FDT. This creates a list of GPIOs with no 439ed3ee5cdSSimon Glass * terminating item. 440ed3ee5cdSSimon Glass * 441ed3ee5cdSSimon Glass * @param blob FDT blob to use 442ed3ee5cdSSimon Glass * @param node Node to look at 443ed3ee5cdSSimon Glass * @param prop_name Node property name 444ed3ee5cdSSimon Glass * @param gpio Array of gpio elements to fill from FDT. This will be 445ed3ee5cdSSimon Glass * untouched if either 0 or an error is returned 446ed3ee5cdSSimon Glass * @param max_count Maximum number of elements allowed 447ed3ee5cdSSimon Glass * @return number of GPIOs read if ok, -FDT_ERR_BADLAYOUT if max_count would 448ed3ee5cdSSimon Glass * be exceeded, or -FDT_ERR_NOTFOUND if the property is missing. 449ed3ee5cdSSimon Glass */ 4505921f6a2SAbhilash Kesavan int fdtdec_decode_gpios(const void *blob, int node, const char *prop_name, 4515921f6a2SAbhilash Kesavan struct fdt_gpio_state *gpio, int max_count) 452ed3ee5cdSSimon Glass { 453ed3ee5cdSSimon Glass const struct fdt_property *prop; 454ed3ee5cdSSimon Glass const u32 *cell; 455ed3ee5cdSSimon Glass const char *name; 456ed3ee5cdSSimon Glass int len, i; 457ed3ee5cdSSimon Glass 458ed3ee5cdSSimon Glass debug("%s: %s\n", __func__, prop_name); 459ed3ee5cdSSimon Glass assert(max_count > 0); 460ed3ee5cdSSimon Glass prop = fdt_get_property(blob, node, prop_name, &len); 461ed3ee5cdSSimon Glass if (!prop) { 4621cb2323bSSimon Glass debug("%s: property '%s' missing\n", __func__, prop_name); 463ed3ee5cdSSimon Glass return -FDT_ERR_NOTFOUND; 464ed3ee5cdSSimon Glass } 465ed3ee5cdSSimon Glass 466ed3ee5cdSSimon Glass /* We will use the name to tag the GPIO */ 467ed3ee5cdSSimon Glass name = fdt_string(blob, fdt32_to_cpu(prop->nameoff)); 468ed3ee5cdSSimon Glass cell = (u32 *)prop->data; 469ed3ee5cdSSimon Glass len /= sizeof(u32) * 3; /* 3 cells per GPIO record */ 470ed3ee5cdSSimon Glass if (len > max_count) { 4711cb2323bSSimon Glass debug(" %s: too many GPIOs / cells for " 472ed3ee5cdSSimon Glass "property '%s'\n", __func__, prop_name); 473ed3ee5cdSSimon Glass return -FDT_ERR_BADLAYOUT; 474ed3ee5cdSSimon Glass } 475ed3ee5cdSSimon Glass 476ed3ee5cdSSimon Glass /* Read out the GPIO data from the cells */ 477ed3ee5cdSSimon Glass for (i = 0; i < len; i++, cell += 3) { 478ed3ee5cdSSimon Glass gpio[i].gpio = fdt32_to_cpu(cell[1]); 479ed3ee5cdSSimon Glass gpio[i].flags = fdt32_to_cpu(cell[2]); 480ed3ee5cdSSimon Glass gpio[i].name = name; 481ed3ee5cdSSimon Glass } 482ed3ee5cdSSimon Glass 483ed3ee5cdSSimon Glass return len; 484ed3ee5cdSSimon Glass } 485ed3ee5cdSSimon Glass 486ed3ee5cdSSimon Glass int fdtdec_decode_gpio(const void *blob, int node, const char *prop_name, 487ed3ee5cdSSimon Glass struct fdt_gpio_state *gpio) 488ed3ee5cdSSimon Glass { 489ed3ee5cdSSimon Glass int err; 490ed3ee5cdSSimon Glass 491ed3ee5cdSSimon Glass debug("%s: %s\n", __func__, prop_name); 492ed3ee5cdSSimon Glass gpio->gpio = FDT_GPIO_NONE; 493ed3ee5cdSSimon Glass gpio->name = NULL; 494ed3ee5cdSSimon Glass err = fdtdec_decode_gpios(blob, node, prop_name, gpio, 1); 495ed3ee5cdSSimon Glass return err == 1 ? 0 : err; 496ed3ee5cdSSimon Glass } 497ed3ee5cdSSimon Glass 498202ff753SSean Paul int fdtdec_get_gpio(struct fdt_gpio_state *gpio) 499202ff753SSean Paul { 500202ff753SSean Paul int val; 501202ff753SSean Paul 502202ff753SSean Paul if (!fdt_gpio_isvalid(gpio)) 503202ff753SSean Paul return -1; 504202ff753SSean Paul 505202ff753SSean Paul val = gpio_get_value(gpio->gpio); 506202ff753SSean Paul return gpio->flags & FDT_GPIO_ACTIVE_LOW ? val ^ 1 : val; 507202ff753SSean Paul } 508202ff753SSean Paul 509202ff753SSean Paul int fdtdec_set_gpio(struct fdt_gpio_state *gpio, int val) 510202ff753SSean Paul { 511202ff753SSean Paul if (!fdt_gpio_isvalid(gpio)) 512202ff753SSean Paul return -1; 513202ff753SSean Paul 514202ff753SSean Paul val = gpio->flags & FDT_GPIO_ACTIVE_LOW ? val ^ 1 : val; 515202ff753SSean Paul return gpio_set_value(gpio->gpio, val); 516202ff753SSean Paul } 517202ff753SSean Paul 518ed3ee5cdSSimon Glass int fdtdec_setup_gpio(struct fdt_gpio_state *gpio) 519ed3ee5cdSSimon Glass { 520ed3ee5cdSSimon Glass /* 521ed3ee5cdSSimon Glass * Return success if there is no GPIO defined. This is used for 522ed3ee5cdSSimon Glass * optional GPIOs) 523ed3ee5cdSSimon Glass */ 524ed3ee5cdSSimon Glass if (!fdt_gpio_isvalid(gpio)) 525ed3ee5cdSSimon Glass return 0; 526ed3ee5cdSSimon Glass 527ed3ee5cdSSimon Glass if (gpio_request(gpio->gpio, gpio->name)) 528ed3ee5cdSSimon Glass return -1; 529ed3ee5cdSSimon Glass return 0; 530ed3ee5cdSSimon Glass } 531bed4d892SAnton Staff 532bed4d892SAnton Staff int fdtdec_get_byte_array(const void *blob, int node, const char *prop_name, 533bed4d892SAnton Staff u8 *array, int count) 534bed4d892SAnton Staff { 535bed4d892SAnton Staff const u8 *cell; 536bed4d892SAnton Staff int err; 537bed4d892SAnton Staff 538bed4d892SAnton Staff cell = get_prop_check_min_len(blob, node, prop_name, count, &err); 539bed4d892SAnton Staff if (!err) 540bed4d892SAnton Staff memcpy(array, cell, count); 541bed4d892SAnton Staff return err; 542bed4d892SAnton Staff } 543bed4d892SAnton Staff 544bed4d892SAnton Staff const u8 *fdtdec_locate_byte_array(const void *blob, int node, 545bed4d892SAnton Staff const char *prop_name, int count) 546bed4d892SAnton Staff { 547bed4d892SAnton Staff const u8 *cell; 548bed4d892SAnton Staff int err; 549bed4d892SAnton Staff 550bed4d892SAnton Staff cell = get_prop_check_min_len(blob, node, prop_name, count, &err); 551bed4d892SAnton Staff if (err) 552bed4d892SAnton Staff return NULL; 553bed4d892SAnton Staff return cell; 554bed4d892SAnton Staff } 55509258f1eSAbhilash Kesavan 55609258f1eSAbhilash Kesavan int fdtdec_get_config_int(const void *blob, const char *prop_name, 55709258f1eSAbhilash Kesavan int default_val) 55809258f1eSAbhilash Kesavan { 55909258f1eSAbhilash Kesavan int config_node; 56009258f1eSAbhilash Kesavan 56109258f1eSAbhilash Kesavan debug("%s: %s\n", __func__, prop_name); 56209258f1eSAbhilash Kesavan config_node = fdt_path_offset(blob, "/config"); 56309258f1eSAbhilash Kesavan if (config_node < 0) 56409258f1eSAbhilash Kesavan return default_val; 56509258f1eSAbhilash Kesavan return fdtdec_get_int(blob, config_node, prop_name, default_val); 56609258f1eSAbhilash Kesavan } 567332ab0d5SSimon Glass 56879289c0bSGabe Black int fdtdec_get_config_bool(const void *blob, const char *prop_name) 56979289c0bSGabe Black { 57079289c0bSGabe Black int config_node; 57179289c0bSGabe Black const void *prop; 57279289c0bSGabe Black 57379289c0bSGabe Black debug("%s: %s\n", __func__, prop_name); 57479289c0bSGabe Black config_node = fdt_path_offset(blob, "/config"); 57579289c0bSGabe Black if (config_node < 0) 57679289c0bSGabe Black return 0; 57779289c0bSGabe Black prop = fdt_get_property(blob, config_node, prop_name, NULL); 57879289c0bSGabe Black 57979289c0bSGabe Black return prop != NULL; 58079289c0bSGabe Black } 58179289c0bSGabe Black 582332ab0d5SSimon Glass char *fdtdec_get_config_string(const void *blob, const char *prop_name) 583332ab0d5SSimon Glass { 584332ab0d5SSimon Glass const char *nodep; 585332ab0d5SSimon Glass int nodeoffset; 586332ab0d5SSimon Glass int len; 587332ab0d5SSimon Glass 588332ab0d5SSimon Glass debug("%s: %s\n", __func__, prop_name); 589332ab0d5SSimon Glass nodeoffset = fdt_path_offset(blob, "/config"); 590332ab0d5SSimon Glass if (nodeoffset < 0) 591332ab0d5SSimon Glass return NULL; 592332ab0d5SSimon Glass 593332ab0d5SSimon Glass nodep = fdt_getprop(blob, nodeoffset, prop_name, &len); 594332ab0d5SSimon Glass if (!nodep) 595332ab0d5SSimon Glass return NULL; 596332ab0d5SSimon Glass 597332ab0d5SSimon Glass return (char *)nodep; 598332ab0d5SSimon Glass } 599f20c4619SSimon Glass 600f20c4619SSimon Glass int fdtdec_decode_region(const void *blob, int node, 601f20c4619SSimon Glass const char *prop_name, void **ptrp, size_t *size) 602f20c4619SSimon Glass { 603f20c4619SSimon Glass const fdt_addr_t *cell; 604f20c4619SSimon Glass int len; 605f20c4619SSimon Glass 606f20c4619SSimon Glass debug("%s: %s\n", __func__, prop_name); 607f20c4619SSimon Glass cell = fdt_getprop(blob, node, prop_name, &len); 608f20c4619SSimon Glass if (!cell || (len != sizeof(fdt_addr_t) * 2)) 609f20c4619SSimon Glass return -1; 610f20c4619SSimon Glass 611f20c4619SSimon Glass *ptrp = (void *)fdt_addr_to_cpu(*cell); 612f20c4619SSimon Glass *size = fdt_size_to_cpu(cell[1]); 613f20c4619SSimon Glass debug("%s: size=%zx\n", __func__, *size); 614f20c4619SSimon Glass return 0; 615f20c4619SSimon Glass } 616