1b5220bc6SSimon Glass /* 2b5220bc6SSimon Glass * Copyright (c) 2011 The Chromium OS Authors. 3b5220bc6SSimon Glass * See file CREDITS for list of people who contributed to this 4b5220bc6SSimon Glass * project. 5b5220bc6SSimon Glass * 6b5220bc6SSimon Glass * This program is free software; you can redistribute it and/or 7b5220bc6SSimon Glass * modify it under the terms of the GNU General Public License as 8b5220bc6SSimon Glass * published by the Free Software Foundation; either version 2 of 9b5220bc6SSimon Glass * the License, or (at your option) any later version. 10b5220bc6SSimon Glass * 11b5220bc6SSimon Glass * This program is distributed in the hope that it will be useful, 12b5220bc6SSimon Glass * but WITHOUT ANY WARRANTY; without even the implied warranty of 13b5220bc6SSimon Glass * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14b5220bc6SSimon Glass * GNU General Public License for more details. 15b5220bc6SSimon Glass * 16b5220bc6SSimon Glass * You should have received a copy of the GNU General Public License 17b5220bc6SSimon Glass * along with this program; if not, write to the Free Software 18b5220bc6SSimon Glass * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 19b5220bc6SSimon Glass * MA 02111-1307 USA 20b5220bc6SSimon Glass */ 21b5220bc6SSimon Glass 22b5220bc6SSimon Glass #include <common.h> 23b5220bc6SSimon Glass #include <serial.h> 24b5220bc6SSimon Glass #include <libfdt.h> 25b5220bc6SSimon Glass #include <fdtdec.h> 26b5220bc6SSimon Glass 27e46431e1SMichal Simek #include <asm/gpio.h> 28ed3ee5cdSSimon Glass 29b5220bc6SSimon Glass DECLARE_GLOBAL_DATA_PTR; 30b5220bc6SSimon Glass 31b5220bc6SSimon Glass /* 32b5220bc6SSimon Glass * Here are the type we know about. One day we might allow drivers to 33b5220bc6SSimon Glass * register. For now we just put them here. The COMPAT macro allows us to 34b5220bc6SSimon Glass * turn this into a sparse list later, and keeps the ID with the name. 35b5220bc6SSimon Glass */ 36b5220bc6SSimon Glass #define COMPAT(id, name) name 37b5220bc6SSimon Glass static const char * const compat_names[COMPAT_COUNT] = { 38f88fe2deSSimon Glass COMPAT(UNKNOWN, "<none>"), 3987f938c9SSimon Glass COMPAT(NVIDIA_TEGRA20_USB, "nvidia,tegra20-ehci"), 40e32624efSTom Warren COMPAT(NVIDIA_TEGRA114_I2C, "nvidia,tegra114-i2c"), 4196a78ac0SYen Lin COMPAT(NVIDIA_TEGRA20_I2C, "nvidia,tegra20-i2c"), 4296a78ac0SYen Lin COMPAT(NVIDIA_TEGRA20_DVC, "nvidia,tegra20-i2c-dvc"), 430e35ad05SJimmy Zhang COMPAT(NVIDIA_TEGRA20_EMC, "nvidia,tegra20-emc"), 440e35ad05SJimmy Zhang COMPAT(NVIDIA_TEGRA20_EMC_TABLE, "nvidia,tegra20-emc-table"), 456642a681SRakesh Iyer COMPAT(NVIDIA_TEGRA20_KBC, "nvidia,tegra20-kbc"), 46312693c3SJim Lin COMPAT(NVIDIA_TEGRA20_NAND, "nvidia,tegra20-nand"), 47e1ae0d1fSSimon Glass COMPAT(NVIDIA_TEGRA20_PWM, "nvidia,tegra20-pwm"), 4887540de3SWei Ni COMPAT(NVIDIA_TEGRA20_DC, "nvidia,tegra20-dc"), 49f4e4e0b0STom Warren COMPAT(NVIDIA_TEGRA30_SDMMC, "nvidia,tegra30-sdhci"), 50c9aa831eSTom Warren COMPAT(NVIDIA_TEGRA20_SDMMC, "nvidia,tegra20-sdhci"), 518f1b46b1SAllen Martin COMPAT(NVIDIA_TEGRA20_SFLASH, "nvidia,tegra20-sflash"), 52b19f5749SAllen Martin COMPAT(NVIDIA_TEGRA20_SLINK, "nvidia,tegra20-slink"), 53*c3bb3c8bSAllen Martin COMPAT(NVIDIA_TEGRA114_SPI, "nvidia,tegra114-spi"), 54cc9fe33aSHatim RV COMPAT(SMSC_LAN9215, "smsc,lan9215"), 55cc9fe33aSHatim RV COMPAT(SAMSUNG_EXYNOS5_SROMC, "samsung,exynos-sromc"), 56c34253d1SRajeshwari Shinde COMPAT(SAMSUNG_S3C2440_I2C, "samsung,s3c2440-i2c"), 5772dbff12SRajeshwari Shinde COMPAT(SAMSUNG_EXYNOS5_SOUND, "samsung,exynos-sound"), 5872dbff12SRajeshwari Shinde COMPAT(WOLFSON_WM8994_CODEC, "wolfson,wm8994-codec"), 595d50659dSRajeshwari Shinde COMPAT(SAMSUNG_EXYNOS_SPI, "samsung,exynos-spi"), 606abd1620SRajeshwari Shinde COMPAT(SAMSUNG_EXYNOS_EHCI, "samsung,exynos-ehci"), 616abd1620SRajeshwari Shinde COMPAT(SAMSUNG_EXYNOS_USB_PHY, "samsung,exynos-usb-phy"), 62cd577e2bSRajeshwari Shinde COMPAT(MAXIM_MAX77686_PMIC, "maxim,max77686_pmic"), 63b5220bc6SSimon Glass }; 64b5220bc6SSimon Glass 65a53f4a29SSimon Glass const char *fdtdec_get_compatible(enum fdt_compat_id id) 66a53f4a29SSimon Glass { 67a53f4a29SSimon Glass /* We allow reading of the 'unknown' ID for testing purposes */ 68a53f4a29SSimon Glass assert(id >= 0 && id < COMPAT_COUNT); 69a53f4a29SSimon Glass return compat_names[id]; 70a53f4a29SSimon Glass } 71a53f4a29SSimon Glass 72b5220bc6SSimon Glass fdt_addr_t fdtdec_get_addr(const void *blob, int node, 73b5220bc6SSimon Glass const char *prop_name) 74b5220bc6SSimon Glass { 75b5220bc6SSimon Glass const fdt_addr_t *cell; 76b5220bc6SSimon Glass int len; 77b5220bc6SSimon Glass 781cb2323bSSimon Glass debug("%s: %s: ", __func__, prop_name); 79b5220bc6SSimon Glass cell = fdt_getprop(blob, node, prop_name, &len); 80b5220bc6SSimon Glass if (cell && (len == sizeof(fdt_addr_t) || 811cb2323bSSimon Glass len == sizeof(fdt_addr_t) * 2)) { 821cb2323bSSimon Glass fdt_addr_t addr = fdt_addr_to_cpu(*cell); 831cb2323bSSimon Glass 841cb2323bSSimon Glass debug("%p\n", (void *)addr); 851cb2323bSSimon Glass return addr; 861cb2323bSSimon Glass } 871cb2323bSSimon Glass debug("(not found)\n"); 88b5220bc6SSimon Glass return FDT_ADDR_T_NONE; 89b5220bc6SSimon Glass } 90b5220bc6SSimon Glass 91b5220bc6SSimon Glass s32 fdtdec_get_int(const void *blob, int node, const char *prop_name, 92b5220bc6SSimon Glass s32 default_val) 93b5220bc6SSimon Glass { 94b5220bc6SSimon Glass const s32 *cell; 95b5220bc6SSimon Glass int len; 96b5220bc6SSimon Glass 971cb2323bSSimon Glass debug("%s: %s: ", __func__, prop_name); 98b5220bc6SSimon Glass cell = fdt_getprop(blob, node, prop_name, &len); 991cb2323bSSimon Glass if (cell && len >= sizeof(s32)) { 1001cb2323bSSimon Glass s32 val = fdt32_to_cpu(cell[0]); 1011cb2323bSSimon Glass 1021cb2323bSSimon Glass debug("%#x (%d)\n", val, val); 1031cb2323bSSimon Glass return val; 1041cb2323bSSimon Glass } 1051cb2323bSSimon Glass debug("(not found)\n"); 106b5220bc6SSimon Glass return default_val; 107b5220bc6SSimon Glass } 108b5220bc6SSimon Glass 109aadef0a1SChe-Liang Chiou uint64_t fdtdec_get_uint64(const void *blob, int node, const char *prop_name, 110aadef0a1SChe-Liang Chiou uint64_t default_val) 111aadef0a1SChe-Liang Chiou { 112aadef0a1SChe-Liang Chiou const uint64_t *cell64; 113aadef0a1SChe-Liang Chiou int length; 114aadef0a1SChe-Liang Chiou 115aadef0a1SChe-Liang Chiou cell64 = fdt_getprop(blob, node, prop_name, &length); 116aadef0a1SChe-Liang Chiou if (!cell64 || length < sizeof(*cell64)) 117aadef0a1SChe-Liang Chiou return default_val; 118aadef0a1SChe-Liang Chiou 119aadef0a1SChe-Liang Chiou return fdt64_to_cpu(*cell64); 120aadef0a1SChe-Liang Chiou } 121aadef0a1SChe-Liang Chiou 122f88fe2deSSimon Glass int fdtdec_get_is_enabled(const void *blob, int node) 123b5220bc6SSimon Glass { 124b5220bc6SSimon Glass const char *cell; 125b5220bc6SSimon Glass 126f88fe2deSSimon Glass /* 127f88fe2deSSimon Glass * It should say "okay", so only allow that. Some fdts use "ok" but 128f88fe2deSSimon Glass * this is a bug. Please fix your device tree source file. See here 129f88fe2deSSimon Glass * for discussion: 130f88fe2deSSimon Glass * 131f88fe2deSSimon Glass * http://www.mail-archive.com/u-boot@lists.denx.de/msg71598.html 132f88fe2deSSimon Glass */ 133b5220bc6SSimon Glass cell = fdt_getprop(blob, node, "status", NULL); 134b5220bc6SSimon Glass if (cell) 135f88fe2deSSimon Glass return 0 == strcmp(cell, "okay"); 136f88fe2deSSimon Glass return 1; 137b5220bc6SSimon Glass } 138b5220bc6SSimon Glass 1397cde397bSGerald Van Baren enum fdt_compat_id fdtdec_lookup(const void *blob, int node) 140b5220bc6SSimon Glass { 141b5220bc6SSimon Glass enum fdt_compat_id id; 142b5220bc6SSimon Glass 143b5220bc6SSimon Glass /* Search our drivers */ 144b5220bc6SSimon Glass for (id = COMPAT_UNKNOWN; id < COMPAT_COUNT; id++) 145b5220bc6SSimon Glass if (0 == fdt_node_check_compatible(blob, node, 146b5220bc6SSimon Glass compat_names[id])) 147b5220bc6SSimon Glass return id; 148b5220bc6SSimon Glass return COMPAT_UNKNOWN; 149b5220bc6SSimon Glass } 150b5220bc6SSimon Glass 151b5220bc6SSimon Glass int fdtdec_next_compatible(const void *blob, int node, 152b5220bc6SSimon Glass enum fdt_compat_id id) 153b5220bc6SSimon Glass { 154b5220bc6SSimon Glass return fdt_node_offset_by_compatible(blob, node, compat_names[id]); 155b5220bc6SSimon Glass } 156b5220bc6SSimon Glass 1573ddecfc7SSimon Glass int fdtdec_next_compatible_subnode(const void *blob, int node, 1583ddecfc7SSimon Glass enum fdt_compat_id id, int *depthp) 1593ddecfc7SSimon Glass { 1603ddecfc7SSimon Glass do { 1613ddecfc7SSimon Glass node = fdt_next_node(blob, node, depthp); 1623ddecfc7SSimon Glass } while (*depthp > 1); 1633ddecfc7SSimon Glass 1643ddecfc7SSimon Glass /* If this is a direct subnode, and compatible, return it */ 1653ddecfc7SSimon Glass if (*depthp == 1 && 0 == fdt_node_check_compatible( 1663ddecfc7SSimon Glass blob, node, compat_names[id])) 1673ddecfc7SSimon Glass return node; 1683ddecfc7SSimon Glass 1693ddecfc7SSimon Glass return -FDT_ERR_NOTFOUND; 1703ddecfc7SSimon Glass } 1713ddecfc7SSimon Glass 172b5220bc6SSimon Glass int fdtdec_next_alias(const void *blob, const char *name, 173b5220bc6SSimon Glass enum fdt_compat_id id, int *upto) 174b5220bc6SSimon Glass { 175b5220bc6SSimon Glass #define MAX_STR_LEN 20 176b5220bc6SSimon Glass char str[MAX_STR_LEN + 20]; 177b5220bc6SSimon Glass int node, err; 178b5220bc6SSimon Glass 179b5220bc6SSimon Glass /* snprintf() is not available */ 180b5220bc6SSimon Glass assert(strlen(name) < MAX_STR_LEN); 181b5220bc6SSimon Glass sprintf(str, "%.*s%d", MAX_STR_LEN, name, *upto); 18200878476SSimon Glass node = fdt_path_offset(blob, str); 183b5220bc6SSimon Glass if (node < 0) 184b5220bc6SSimon Glass return node; 185b5220bc6SSimon Glass err = fdt_node_check_compatible(blob, node, compat_names[id]); 186b5220bc6SSimon Glass if (err < 0) 187b5220bc6SSimon Glass return err; 188f88fe2deSSimon Glass if (err) 189f88fe2deSSimon Glass return -FDT_ERR_NOTFOUND; 190f88fe2deSSimon Glass (*upto)++; 191f88fe2deSSimon Glass return node; 192b5220bc6SSimon Glass } 193b5220bc6SSimon Glass 194a53f4a29SSimon Glass int fdtdec_find_aliases_for_id(const void *blob, const char *name, 195a53f4a29SSimon Glass enum fdt_compat_id id, int *node_list, int maxcount) 196a53f4a29SSimon Glass { 197c6782270SSimon Glass memset(node_list, '\0', sizeof(*node_list) * maxcount); 198c6782270SSimon Glass 199c6782270SSimon Glass return fdtdec_add_aliases_for_id(blob, name, id, node_list, maxcount); 200c6782270SSimon Glass } 201c6782270SSimon Glass 202c6782270SSimon Glass /* TODO: Can we tighten this code up a little? */ 203c6782270SSimon Glass int fdtdec_add_aliases_for_id(const void *blob, const char *name, 204c6782270SSimon Glass enum fdt_compat_id id, int *node_list, int maxcount) 205c6782270SSimon Glass { 206a53f4a29SSimon Glass int name_len = strlen(name); 207a53f4a29SSimon Glass int nodes[maxcount]; 208a53f4a29SSimon Glass int num_found = 0; 209a53f4a29SSimon Glass int offset, node; 210a53f4a29SSimon Glass int alias_node; 211a53f4a29SSimon Glass int count; 212a53f4a29SSimon Glass int i, j; 213a53f4a29SSimon Glass 214a53f4a29SSimon Glass /* find the alias node if present */ 215a53f4a29SSimon Glass alias_node = fdt_path_offset(blob, "/aliases"); 216a53f4a29SSimon Glass 217a53f4a29SSimon Glass /* 218a53f4a29SSimon Glass * start with nothing, and we can assume that the root node can't 219a53f4a29SSimon Glass * match 220a53f4a29SSimon Glass */ 221a53f4a29SSimon Glass memset(nodes, '\0', sizeof(nodes)); 222a53f4a29SSimon Glass 223a53f4a29SSimon Glass /* First find all the compatible nodes */ 224a53f4a29SSimon Glass for (node = count = 0; node >= 0 && count < maxcount;) { 225a53f4a29SSimon Glass node = fdtdec_next_compatible(blob, node, id); 226a53f4a29SSimon Glass if (node >= 0) 227a53f4a29SSimon Glass nodes[count++] = node; 228a53f4a29SSimon Glass } 229a53f4a29SSimon Glass if (node >= 0) 230a53f4a29SSimon Glass debug("%s: warning: maxcount exceeded with alias '%s'\n", 231a53f4a29SSimon Glass __func__, name); 232a53f4a29SSimon Glass 233a53f4a29SSimon Glass /* Now find all the aliases */ 234a53f4a29SSimon Glass for (offset = fdt_first_property_offset(blob, alias_node); 235a53f4a29SSimon Glass offset > 0; 236a53f4a29SSimon Glass offset = fdt_next_property_offset(blob, offset)) { 237a53f4a29SSimon Glass const struct fdt_property *prop; 238a53f4a29SSimon Glass const char *path; 239a53f4a29SSimon Glass int number; 240a53f4a29SSimon Glass int found; 241a53f4a29SSimon Glass 242a53f4a29SSimon Glass node = 0; 243a53f4a29SSimon Glass prop = fdt_get_property_by_offset(blob, offset, NULL); 244a53f4a29SSimon Glass path = fdt_string(blob, fdt32_to_cpu(prop->nameoff)); 245a53f4a29SSimon Glass if (prop->len && 0 == strncmp(path, name, name_len)) 246a53f4a29SSimon Glass node = fdt_path_offset(blob, prop->data); 247a53f4a29SSimon Glass if (node <= 0) 248a53f4a29SSimon Glass continue; 249a53f4a29SSimon Glass 250a53f4a29SSimon Glass /* Get the alias number */ 251a53f4a29SSimon Glass number = simple_strtoul(path + name_len, NULL, 10); 252a53f4a29SSimon Glass if (number < 0 || number >= maxcount) { 253a53f4a29SSimon Glass debug("%s: warning: alias '%s' is out of range\n", 254a53f4a29SSimon Glass __func__, path); 255a53f4a29SSimon Glass continue; 256a53f4a29SSimon Glass } 257a53f4a29SSimon Glass 258a53f4a29SSimon Glass /* Make sure the node we found is actually in our list! */ 259a53f4a29SSimon Glass found = -1; 260a53f4a29SSimon Glass for (j = 0; j < count; j++) 261a53f4a29SSimon Glass if (nodes[j] == node) { 262a53f4a29SSimon Glass found = j; 263a53f4a29SSimon Glass break; 264a53f4a29SSimon Glass } 265a53f4a29SSimon Glass 266a53f4a29SSimon Glass if (found == -1) { 267a53f4a29SSimon Glass debug("%s: warning: alias '%s' points to a node " 268a53f4a29SSimon Glass "'%s' that is missing or is not compatible " 269a53f4a29SSimon Glass " with '%s'\n", __func__, path, 270a53f4a29SSimon Glass fdt_get_name(blob, node, NULL), 271a53f4a29SSimon Glass compat_names[id]); 272a53f4a29SSimon Glass continue; 273a53f4a29SSimon Glass } 274a53f4a29SSimon Glass 275a53f4a29SSimon Glass /* 276a53f4a29SSimon Glass * Add this node to our list in the right place, and mark 277a53f4a29SSimon Glass * it as done. 278a53f4a29SSimon Glass */ 279a53f4a29SSimon Glass if (fdtdec_get_is_enabled(blob, node)) { 280c6782270SSimon Glass if (node_list[number]) { 281c6782270SSimon Glass debug("%s: warning: alias '%s' requires that " 282c6782270SSimon Glass "a node be placed in the list in a " 283c6782270SSimon Glass "position which is already filled by " 284c6782270SSimon Glass "node '%s'\n", __func__, path, 285c6782270SSimon Glass fdt_get_name(blob, node, NULL)); 286c6782270SSimon Glass continue; 287c6782270SSimon Glass } 288a53f4a29SSimon Glass node_list[number] = node; 289a53f4a29SSimon Glass if (number >= num_found) 290a53f4a29SSimon Glass num_found = number + 1; 291a53f4a29SSimon Glass } 292c6782270SSimon Glass nodes[found] = 0; 293a53f4a29SSimon Glass } 294a53f4a29SSimon Glass 295a53f4a29SSimon Glass /* Add any nodes not mentioned by an alias */ 296a53f4a29SSimon Glass for (i = j = 0; i < maxcount; i++) { 297a53f4a29SSimon Glass if (!node_list[i]) { 298a53f4a29SSimon Glass for (; j < maxcount; j++) 299a53f4a29SSimon Glass if (nodes[j] && 300a53f4a29SSimon Glass fdtdec_get_is_enabled(blob, nodes[j])) 301a53f4a29SSimon Glass break; 302a53f4a29SSimon Glass 303a53f4a29SSimon Glass /* Have we run out of nodes to add? */ 304a53f4a29SSimon Glass if (j == maxcount) 305a53f4a29SSimon Glass break; 306a53f4a29SSimon Glass 307a53f4a29SSimon Glass assert(!node_list[i]); 308a53f4a29SSimon Glass node_list[i] = nodes[j++]; 309a53f4a29SSimon Glass if (i >= num_found) 310a53f4a29SSimon Glass num_found = i + 1; 311a53f4a29SSimon Glass } 312a53f4a29SSimon Glass } 313a53f4a29SSimon Glass 314a53f4a29SSimon Glass return num_found; 315a53f4a29SSimon Glass } 316a53f4a29SSimon Glass 3179a263e55SSimon Glass int fdtdec_check_fdt(void) 3189a263e55SSimon Glass { 3199a263e55SSimon Glass /* 3209a263e55SSimon Glass * We must have an FDT, but we cannot panic() yet since the console 3219a263e55SSimon Glass * is not ready. So for now, just assert(). Boards which need an early 3229a263e55SSimon Glass * FDT (prior to console ready) will need to make their own 3239a263e55SSimon Glass * arrangements and do their own checks. 3249a263e55SSimon Glass */ 3259a263e55SSimon Glass assert(!fdtdec_prepare_fdt()); 3269a263e55SSimon Glass return 0; 3279a263e55SSimon Glass } 3289a263e55SSimon Glass 329b5220bc6SSimon Glass /* 330b5220bc6SSimon Glass * This function is a little odd in that it accesses global data. At some 331b5220bc6SSimon Glass * point if the architecture board.c files merge this will make more sense. 332b5220bc6SSimon Glass * Even now, it is common code. 333b5220bc6SSimon Glass */ 3349a263e55SSimon Glass int fdtdec_prepare_fdt(void) 335b5220bc6SSimon Glass { 3369a263e55SSimon Glass if (((uintptr_t)gd->fdt_blob & 3) || fdt_check_header(gd->fdt_blob)) { 3379a263e55SSimon Glass printf("No valid FDT found - please append one to U-Boot " 3389a263e55SSimon Glass "binary, use u-boot-dtb.bin or define " 3399a263e55SSimon Glass "CONFIG_OF_EMBED\n"); 3409a263e55SSimon Glass return -1; 3419a263e55SSimon Glass } 342b5220bc6SSimon Glass return 0; 343b5220bc6SSimon Glass } 344d17da655SSimon Glass 345d17da655SSimon Glass int fdtdec_lookup_phandle(const void *blob, int node, const char *prop_name) 346d17da655SSimon Glass { 347d17da655SSimon Glass const u32 *phandle; 348d17da655SSimon Glass int lookup; 349d17da655SSimon Glass 3501cb2323bSSimon Glass debug("%s: %s\n", __func__, prop_name); 351d17da655SSimon Glass phandle = fdt_getprop(blob, node, prop_name, NULL); 352d17da655SSimon Glass if (!phandle) 353d17da655SSimon Glass return -FDT_ERR_NOTFOUND; 354d17da655SSimon Glass 355d17da655SSimon Glass lookup = fdt_node_offset_by_phandle(blob, fdt32_to_cpu(*phandle)); 356d17da655SSimon Glass return lookup; 357d17da655SSimon Glass } 358d17da655SSimon Glass 359d17da655SSimon Glass /** 360d17da655SSimon Glass * Look up a property in a node and check that it has a minimum length. 361d17da655SSimon Glass * 362d17da655SSimon Glass * @param blob FDT blob 363d17da655SSimon Glass * @param node node to examine 364d17da655SSimon Glass * @param prop_name name of property to find 365d17da655SSimon Glass * @param min_len minimum property length in bytes 366d17da655SSimon Glass * @param err 0 if ok, or -FDT_ERR_NOTFOUND if the property is not 367d17da655SSimon Glass found, or -FDT_ERR_BADLAYOUT if not enough data 368d17da655SSimon Glass * @return pointer to cell, which is only valid if err == 0 369d17da655SSimon Glass */ 370d17da655SSimon Glass static const void *get_prop_check_min_len(const void *blob, int node, 371d17da655SSimon Glass const char *prop_name, int min_len, int *err) 372d17da655SSimon Glass { 373d17da655SSimon Glass const void *cell; 374d17da655SSimon Glass int len; 375d17da655SSimon Glass 376d17da655SSimon Glass debug("%s: %s\n", __func__, prop_name); 377d17da655SSimon Glass cell = fdt_getprop(blob, node, prop_name, &len); 378d17da655SSimon Glass if (!cell) 379d17da655SSimon Glass *err = -FDT_ERR_NOTFOUND; 380d17da655SSimon Glass else if (len < min_len) 381d17da655SSimon Glass *err = -FDT_ERR_BADLAYOUT; 382d17da655SSimon Glass else 383d17da655SSimon Glass *err = 0; 384d17da655SSimon Glass return cell; 385d17da655SSimon Glass } 386d17da655SSimon Glass 387d17da655SSimon Glass int fdtdec_get_int_array(const void *blob, int node, const char *prop_name, 388d17da655SSimon Glass u32 *array, int count) 389d17da655SSimon Glass { 390d17da655SSimon Glass const u32 *cell; 391d17da655SSimon Glass int i, err = 0; 392d17da655SSimon Glass 393d17da655SSimon Glass debug("%s: %s\n", __func__, prop_name); 394d17da655SSimon Glass cell = get_prop_check_min_len(blob, node, prop_name, 395d17da655SSimon Glass sizeof(u32) * count, &err); 396d17da655SSimon Glass if (!err) { 397d17da655SSimon Glass for (i = 0; i < count; i++) 398d17da655SSimon Glass array[i] = fdt32_to_cpu(cell[i]); 399d17da655SSimon Glass } 400d17da655SSimon Glass return err; 401d17da655SSimon Glass } 402d17da655SSimon Glass 40396875e7dSSimon Glass const u32 *fdtdec_locate_array(const void *blob, int node, 40496875e7dSSimon Glass const char *prop_name, int count) 40596875e7dSSimon Glass { 40696875e7dSSimon Glass const u32 *cell; 40796875e7dSSimon Glass int err; 40896875e7dSSimon Glass 40996875e7dSSimon Glass cell = get_prop_check_min_len(blob, node, prop_name, 41096875e7dSSimon Glass sizeof(u32) * count, &err); 41196875e7dSSimon Glass return err ? NULL : cell; 41296875e7dSSimon Glass } 41396875e7dSSimon Glass 414d17da655SSimon Glass int fdtdec_get_bool(const void *blob, int node, const char *prop_name) 415d17da655SSimon Glass { 416d17da655SSimon Glass const s32 *cell; 417d17da655SSimon Glass int len; 418d17da655SSimon Glass 419d17da655SSimon Glass debug("%s: %s\n", __func__, prop_name); 420d17da655SSimon Glass cell = fdt_getprop(blob, node, prop_name, &len); 421d17da655SSimon Glass return cell != NULL; 422d17da655SSimon Glass } 423ed3ee5cdSSimon Glass 424ed3ee5cdSSimon Glass /** 425ed3ee5cdSSimon Glass * Decode a list of GPIOs from an FDT. This creates a list of GPIOs with no 426ed3ee5cdSSimon Glass * terminating item. 427ed3ee5cdSSimon Glass * 428ed3ee5cdSSimon Glass * @param blob FDT blob to use 429ed3ee5cdSSimon Glass * @param node Node to look at 430ed3ee5cdSSimon Glass * @param prop_name Node property name 431ed3ee5cdSSimon Glass * @param gpio Array of gpio elements to fill from FDT. This will be 432ed3ee5cdSSimon Glass * untouched if either 0 or an error is returned 433ed3ee5cdSSimon Glass * @param max_count Maximum number of elements allowed 434ed3ee5cdSSimon Glass * @return number of GPIOs read if ok, -FDT_ERR_BADLAYOUT if max_count would 435ed3ee5cdSSimon Glass * be exceeded, or -FDT_ERR_NOTFOUND if the property is missing. 436ed3ee5cdSSimon Glass */ 4375921f6a2SAbhilash Kesavan int fdtdec_decode_gpios(const void *blob, int node, const char *prop_name, 4385921f6a2SAbhilash Kesavan struct fdt_gpio_state *gpio, int max_count) 439ed3ee5cdSSimon Glass { 440ed3ee5cdSSimon Glass const struct fdt_property *prop; 441ed3ee5cdSSimon Glass const u32 *cell; 442ed3ee5cdSSimon Glass const char *name; 443ed3ee5cdSSimon Glass int len, i; 444ed3ee5cdSSimon Glass 445ed3ee5cdSSimon Glass debug("%s: %s\n", __func__, prop_name); 446ed3ee5cdSSimon Glass assert(max_count > 0); 447ed3ee5cdSSimon Glass prop = fdt_get_property(blob, node, prop_name, &len); 448ed3ee5cdSSimon Glass if (!prop) { 4491cb2323bSSimon Glass debug("%s: property '%s' missing\n", __func__, prop_name); 450ed3ee5cdSSimon Glass return -FDT_ERR_NOTFOUND; 451ed3ee5cdSSimon Glass } 452ed3ee5cdSSimon Glass 453ed3ee5cdSSimon Glass /* We will use the name to tag the GPIO */ 454ed3ee5cdSSimon Glass name = fdt_string(blob, fdt32_to_cpu(prop->nameoff)); 455ed3ee5cdSSimon Glass cell = (u32 *)prop->data; 456ed3ee5cdSSimon Glass len /= sizeof(u32) * 3; /* 3 cells per GPIO record */ 457ed3ee5cdSSimon Glass if (len > max_count) { 4581cb2323bSSimon Glass debug(" %s: too many GPIOs / cells for " 459ed3ee5cdSSimon Glass "property '%s'\n", __func__, prop_name); 460ed3ee5cdSSimon Glass return -FDT_ERR_BADLAYOUT; 461ed3ee5cdSSimon Glass } 462ed3ee5cdSSimon Glass 463ed3ee5cdSSimon Glass /* Read out the GPIO data from the cells */ 464ed3ee5cdSSimon Glass for (i = 0; i < len; i++, cell += 3) { 465ed3ee5cdSSimon Glass gpio[i].gpio = fdt32_to_cpu(cell[1]); 466ed3ee5cdSSimon Glass gpio[i].flags = fdt32_to_cpu(cell[2]); 467ed3ee5cdSSimon Glass gpio[i].name = name; 468ed3ee5cdSSimon Glass } 469ed3ee5cdSSimon Glass 470ed3ee5cdSSimon Glass return len; 471ed3ee5cdSSimon Glass } 472ed3ee5cdSSimon Glass 473ed3ee5cdSSimon Glass int fdtdec_decode_gpio(const void *blob, int node, const char *prop_name, 474ed3ee5cdSSimon Glass struct fdt_gpio_state *gpio) 475ed3ee5cdSSimon Glass { 476ed3ee5cdSSimon Glass int err; 477ed3ee5cdSSimon Glass 478ed3ee5cdSSimon Glass debug("%s: %s\n", __func__, prop_name); 479ed3ee5cdSSimon Glass gpio->gpio = FDT_GPIO_NONE; 480ed3ee5cdSSimon Glass gpio->name = NULL; 481ed3ee5cdSSimon Glass err = fdtdec_decode_gpios(blob, node, prop_name, gpio, 1); 482ed3ee5cdSSimon Glass return err == 1 ? 0 : err; 483ed3ee5cdSSimon Glass } 484ed3ee5cdSSimon Glass 485202ff753SSean Paul int fdtdec_get_gpio(struct fdt_gpio_state *gpio) 486202ff753SSean Paul { 487202ff753SSean Paul int val; 488202ff753SSean Paul 489202ff753SSean Paul if (!fdt_gpio_isvalid(gpio)) 490202ff753SSean Paul return -1; 491202ff753SSean Paul 492202ff753SSean Paul val = gpio_get_value(gpio->gpio); 493202ff753SSean Paul return gpio->flags & FDT_GPIO_ACTIVE_LOW ? val ^ 1 : val; 494202ff753SSean Paul } 495202ff753SSean Paul 496202ff753SSean Paul int fdtdec_set_gpio(struct fdt_gpio_state *gpio, int val) 497202ff753SSean Paul { 498202ff753SSean Paul if (!fdt_gpio_isvalid(gpio)) 499202ff753SSean Paul return -1; 500202ff753SSean Paul 501202ff753SSean Paul val = gpio->flags & FDT_GPIO_ACTIVE_LOW ? val ^ 1 : val; 502202ff753SSean Paul return gpio_set_value(gpio->gpio, val); 503202ff753SSean Paul } 504202ff753SSean Paul 505ed3ee5cdSSimon Glass int fdtdec_setup_gpio(struct fdt_gpio_state *gpio) 506ed3ee5cdSSimon Glass { 507ed3ee5cdSSimon Glass /* 508ed3ee5cdSSimon Glass * Return success if there is no GPIO defined. This is used for 509ed3ee5cdSSimon Glass * optional GPIOs) 510ed3ee5cdSSimon Glass */ 511ed3ee5cdSSimon Glass if (!fdt_gpio_isvalid(gpio)) 512ed3ee5cdSSimon Glass return 0; 513ed3ee5cdSSimon Glass 514ed3ee5cdSSimon Glass if (gpio_request(gpio->gpio, gpio->name)) 515ed3ee5cdSSimon Glass return -1; 516ed3ee5cdSSimon Glass return 0; 517ed3ee5cdSSimon Glass } 518bed4d892SAnton Staff 519bed4d892SAnton Staff int fdtdec_get_byte_array(const void *blob, int node, const char *prop_name, 520bed4d892SAnton Staff u8 *array, int count) 521bed4d892SAnton Staff { 522bed4d892SAnton Staff const u8 *cell; 523bed4d892SAnton Staff int err; 524bed4d892SAnton Staff 525bed4d892SAnton Staff cell = get_prop_check_min_len(blob, node, prop_name, count, &err); 526bed4d892SAnton Staff if (!err) 527bed4d892SAnton Staff memcpy(array, cell, count); 528bed4d892SAnton Staff return err; 529bed4d892SAnton Staff } 530bed4d892SAnton Staff 531bed4d892SAnton Staff const u8 *fdtdec_locate_byte_array(const void *blob, int node, 532bed4d892SAnton Staff const char *prop_name, int count) 533bed4d892SAnton Staff { 534bed4d892SAnton Staff const u8 *cell; 535bed4d892SAnton Staff int err; 536bed4d892SAnton Staff 537bed4d892SAnton Staff cell = get_prop_check_min_len(blob, node, prop_name, count, &err); 538bed4d892SAnton Staff if (err) 539bed4d892SAnton Staff return NULL; 540bed4d892SAnton Staff return cell; 541bed4d892SAnton Staff } 54209258f1eSAbhilash Kesavan 54309258f1eSAbhilash Kesavan int fdtdec_get_config_int(const void *blob, const char *prop_name, 54409258f1eSAbhilash Kesavan int default_val) 54509258f1eSAbhilash Kesavan { 54609258f1eSAbhilash Kesavan int config_node; 54709258f1eSAbhilash Kesavan 54809258f1eSAbhilash Kesavan debug("%s: %s\n", __func__, prop_name); 54909258f1eSAbhilash Kesavan config_node = fdt_path_offset(blob, "/config"); 55009258f1eSAbhilash Kesavan if (config_node < 0) 55109258f1eSAbhilash Kesavan return default_val; 55209258f1eSAbhilash Kesavan return fdtdec_get_int(blob, config_node, prop_name, default_val); 55309258f1eSAbhilash Kesavan } 554332ab0d5SSimon Glass 55579289c0bSGabe Black int fdtdec_get_config_bool(const void *blob, const char *prop_name) 55679289c0bSGabe Black { 55779289c0bSGabe Black int config_node; 55879289c0bSGabe Black const void *prop; 55979289c0bSGabe Black 56079289c0bSGabe Black debug("%s: %s\n", __func__, prop_name); 56179289c0bSGabe Black config_node = fdt_path_offset(blob, "/config"); 56279289c0bSGabe Black if (config_node < 0) 56379289c0bSGabe Black return 0; 56479289c0bSGabe Black prop = fdt_get_property(blob, config_node, prop_name, NULL); 56579289c0bSGabe Black 56679289c0bSGabe Black return prop != NULL; 56779289c0bSGabe Black } 56879289c0bSGabe Black 569332ab0d5SSimon Glass char *fdtdec_get_config_string(const void *blob, const char *prop_name) 570332ab0d5SSimon Glass { 571332ab0d5SSimon Glass const char *nodep; 572332ab0d5SSimon Glass int nodeoffset; 573332ab0d5SSimon Glass int len; 574332ab0d5SSimon Glass 575332ab0d5SSimon Glass debug("%s: %s\n", __func__, prop_name); 576332ab0d5SSimon Glass nodeoffset = fdt_path_offset(blob, "/config"); 577332ab0d5SSimon Glass if (nodeoffset < 0) 578332ab0d5SSimon Glass return NULL; 579332ab0d5SSimon Glass 580332ab0d5SSimon Glass nodep = fdt_getprop(blob, nodeoffset, prop_name, &len); 581332ab0d5SSimon Glass if (!nodep) 582332ab0d5SSimon Glass return NULL; 583332ab0d5SSimon Glass 584332ab0d5SSimon Glass return (char *)nodep; 585332ab0d5SSimon Glass } 586f20c4619SSimon Glass 587f20c4619SSimon Glass int fdtdec_decode_region(const void *blob, int node, 588f20c4619SSimon Glass const char *prop_name, void **ptrp, size_t *size) 589f20c4619SSimon Glass { 590f20c4619SSimon Glass const fdt_addr_t *cell; 591f20c4619SSimon Glass int len; 592f20c4619SSimon Glass 593f20c4619SSimon Glass debug("%s: %s\n", __func__, prop_name); 594f20c4619SSimon Glass cell = fdt_getprop(blob, node, prop_name, &len); 595f20c4619SSimon Glass if (!cell || (len != sizeof(fdt_addr_t) * 2)) 596f20c4619SSimon Glass return -1; 597f20c4619SSimon Glass 598f20c4619SSimon Glass *ptrp = (void *)fdt_addr_to_cpu(*cell); 599f20c4619SSimon Glass *size = fdt_size_to_cpu(cell[1]); 600f20c4619SSimon Glass debug("%s: size=%zx\n", __func__, *size); 601f20c4619SSimon Glass return 0; 602f20c4619SSimon Glass } 603