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> 125c33c9fdSSimon Glass #include <linux/ctype.h> 13b5220bc6SSimon Glass 14e46431e1SMichal Simek #include <asm/gpio.h> 15ed3ee5cdSSimon Glass 16b5220bc6SSimon Glass DECLARE_GLOBAL_DATA_PTR; 17b5220bc6SSimon Glass 18b5220bc6SSimon Glass /* 19b5220bc6SSimon Glass * Here are the type we know about. One day we might allow drivers to 20b5220bc6SSimon Glass * register. For now we just put them here. The COMPAT macro allows us to 21b5220bc6SSimon Glass * turn this into a sparse list later, and keeps the ID with the name. 22b5220bc6SSimon Glass */ 23b5220bc6SSimon Glass #define COMPAT(id, name) name 24b5220bc6SSimon Glass static const char * const compat_names[COMPAT_COUNT] = { 25f88fe2deSSimon Glass COMPAT(UNKNOWN, "<none>"), 2687f938c9SSimon Glass COMPAT(NVIDIA_TEGRA20_USB, "nvidia,tegra20-ehci"), 277e44d932SJim Lin COMPAT(NVIDIA_TEGRA30_USB, "nvidia,tegra30-ehci"), 287e44d932SJim Lin COMPAT(NVIDIA_TEGRA114_USB, "nvidia,tegra114-ehci"), 29e32624efSTom Warren COMPAT(NVIDIA_TEGRA114_I2C, "nvidia,tegra114-i2c"), 3096a78ac0SYen Lin COMPAT(NVIDIA_TEGRA20_I2C, "nvidia,tegra20-i2c"), 3196a78ac0SYen Lin COMPAT(NVIDIA_TEGRA20_DVC, "nvidia,tegra20-i2c-dvc"), 320e35ad05SJimmy Zhang COMPAT(NVIDIA_TEGRA20_EMC, "nvidia,tegra20-emc"), 330e35ad05SJimmy Zhang COMPAT(NVIDIA_TEGRA20_EMC_TABLE, "nvidia,tegra20-emc-table"), 346642a681SRakesh Iyer COMPAT(NVIDIA_TEGRA20_KBC, "nvidia,tegra20-kbc"), 35312693c3SJim Lin COMPAT(NVIDIA_TEGRA20_NAND, "nvidia,tegra20-nand"), 36e1ae0d1fSSimon Glass COMPAT(NVIDIA_TEGRA20_PWM, "nvidia,tegra20-pwm"), 3787540de3SWei Ni COMPAT(NVIDIA_TEGRA20_DC, "nvidia,tegra20-dc"), 38a73ca478SStephen Warren COMPAT(NVIDIA_TEGRA124_SDMMC, "nvidia,tegra124-sdhci"), 39f4e4e0b0STom Warren COMPAT(NVIDIA_TEGRA30_SDMMC, "nvidia,tegra30-sdhci"), 40c9aa831eSTom Warren COMPAT(NVIDIA_TEGRA20_SDMMC, "nvidia,tegra20-sdhci"), 418f1b46b1SAllen Martin COMPAT(NVIDIA_TEGRA20_SFLASH, "nvidia,tegra20-sflash"), 42b19f5749SAllen Martin COMPAT(NVIDIA_TEGRA20_SLINK, "nvidia,tegra20-slink"), 43c3bb3c8bSAllen Martin COMPAT(NVIDIA_TEGRA114_SPI, "nvidia,tegra114-spi"), 44cc9fe33aSHatim RV COMPAT(SMSC_LAN9215, "smsc,lan9215"), 45cc9fe33aSHatim RV COMPAT(SAMSUNG_EXYNOS5_SROMC, "samsung,exynos-sromc"), 46c34253d1SRajeshwari Shinde COMPAT(SAMSUNG_S3C2440_I2C, "samsung,s3c2440-i2c"), 4772dbff12SRajeshwari Shinde COMPAT(SAMSUNG_EXYNOS5_SOUND, "samsung,exynos-sound"), 4872dbff12SRajeshwari Shinde COMPAT(WOLFSON_WM8994_CODEC, "wolfson,wm8994-codec"), 495d50659dSRajeshwari Shinde COMPAT(SAMSUNG_EXYNOS_SPI, "samsung,exynos-spi"), 5088364387SHung-ying Tyan COMPAT(GOOGLE_CROS_EC, "google,cros-ec"), 51713cb680SHung-ying Tyan COMPAT(GOOGLE_CROS_EC_KEYB, "google,cros-ec-keyb"), 526abd1620SRajeshwari Shinde COMPAT(SAMSUNG_EXYNOS_EHCI, "samsung,exynos-ehci"), 53108b85beSVivek Gautam COMPAT(SAMSUNG_EXYNOS5_XHCI, "samsung,exynos5250-xhci"), 546abd1620SRajeshwari Shinde COMPAT(SAMSUNG_EXYNOS_USB_PHY, "samsung,exynos-usb-phy"), 55108b85beSVivek Gautam COMPAT(SAMSUNG_EXYNOS5_USB3_PHY, "samsung,exynos5250-usb3-phy"), 56618766c0SAkshay Saraswat COMPAT(SAMSUNG_EXYNOS_TMU, "samsung,exynos-tmu"), 57d7377b51SAjay Kumar COMPAT(SAMSUNG_EXYNOS_FIMD, "samsung,exynos-fimd"), 58de461c52SPiotr Wilczek COMPAT(SAMSUNG_EXYNOS_MIPI_DSI, "samsung,exynos-mipi-dsi"), 591e4706a7SAjay Kumar COMPAT(SAMSUNG_EXYNOS5_DP, "samsung,exynos5-dp"), 607d3ca0f8SJaehoon Chung COMPAT(SAMSUNG_EXYNOS_DWMMC, "samsung,exynos-dwmmc"), 613577fe8bSPiotr Wilczek COMPAT(SAMSUNG_EXYNOS_MMC, "samsung,exynos-mmc"), 62ee1e3c2fSRajeshwari Shinde COMPAT(SAMSUNG_EXYNOS_SERIAL, "samsung,exynos4210-uart"), 63cd577e2bSRajeshwari Shinde COMPAT(MAXIM_MAX77686_PMIC, "maxim,max77686_pmic"), 64bb8215f4SSimon Glass COMPAT(GENERIC_SPI_FLASH, "spi-flash"), 657772bb78SRajeshwari Shinde COMPAT(MAXIM_98095_CODEC, "maxim,max98095-codec"), 66f6267998SRong Chang COMPAT(INFINEON_SLB9635_TPM, "infineon,slb9635-tpm"), 67ec34fa5eSVincent Palatin COMPAT(INFINEON_SLB9645_TPM, "infineon,slb9645-tpm"), 68ecbd7e1eSnaveen krishna chatradhi COMPAT(SAMSUNG_EXYNOS5_I2C, "samsung,exynos5-hsi2c"), 69df93d90aSSimon Glass COMPAT(SANDBOX_HOST_EMULATION, "sandbox,host-emulation"), 707d95f2a3SSimon Glass COMPAT(SANDBOX_LCD_SDL, "sandbox,lcd-sdl"), 71ac1058fdSTom Wai-Hong Tam COMPAT(TI_TPS65090, "ti,tps65090"), 72a9cf6da9SSimon Glass COMPAT(COMPAT_NXP_PTN3460, "nxp,ptn3460"), 73b5220bc6SSimon Glass }; 74b5220bc6SSimon Glass 75a53f4a29SSimon Glass const char *fdtdec_get_compatible(enum fdt_compat_id id) 76a53f4a29SSimon Glass { 77a53f4a29SSimon Glass /* We allow reading of the 'unknown' ID for testing purposes */ 78a53f4a29SSimon Glass assert(id >= 0 && id < COMPAT_COUNT); 79a53f4a29SSimon Glass return compat_names[id]; 80a53f4a29SSimon Glass } 81a53f4a29SSimon Glass 824397a2a8SSimon Glass fdt_addr_t fdtdec_get_addr_size(const void *blob, int node, 834397a2a8SSimon Glass const char *prop_name, fdt_size_t *sizep) 84b5220bc6SSimon Glass { 85b5220bc6SSimon Glass const fdt_addr_t *cell; 86b5220bc6SSimon Glass int len; 87b5220bc6SSimon Glass 881cb2323bSSimon Glass debug("%s: %s: ", __func__, prop_name); 89b5220bc6SSimon Glass cell = fdt_getprop(blob, node, prop_name, &len); 904397a2a8SSimon Glass if (cell && ((!sizep && len == sizeof(fdt_addr_t)) || 911cb2323bSSimon Glass len == sizeof(fdt_addr_t) * 2)) { 921cb2323bSSimon Glass fdt_addr_t addr = fdt_addr_to_cpu(*cell); 934397a2a8SSimon Glass if (sizep) { 944397a2a8SSimon Glass const fdt_size_t *size; 951cb2323bSSimon Glass 964397a2a8SSimon Glass size = (fdt_size_t *)((char *)cell + 974397a2a8SSimon Glass sizeof(fdt_addr_t)); 984397a2a8SSimon Glass *sizep = fdt_size_to_cpu(*size); 99370b6c5cSSimon Glass debug("addr=%08lx, size=%08x\n", 100370b6c5cSSimon Glass (ulong)addr, *sizep); 1014397a2a8SSimon Glass } else { 102370b6c5cSSimon Glass debug("%08lx\n", (ulong)addr); 1034397a2a8SSimon Glass } 1041cb2323bSSimon Glass return addr; 1051cb2323bSSimon Glass } 1061cb2323bSSimon Glass debug("(not found)\n"); 107b5220bc6SSimon Glass return FDT_ADDR_T_NONE; 108b5220bc6SSimon Glass } 109b5220bc6SSimon Glass 1104397a2a8SSimon Glass fdt_addr_t fdtdec_get_addr(const void *blob, int node, 1114397a2a8SSimon Glass const char *prop_name) 1124397a2a8SSimon Glass { 1134397a2a8SSimon Glass return fdtdec_get_addr_size(blob, node, prop_name, NULL); 1144397a2a8SSimon Glass } 1154397a2a8SSimon Glass 116aadef0a1SChe-Liang Chiou uint64_t fdtdec_get_uint64(const void *blob, int node, const char *prop_name, 117aadef0a1SChe-Liang Chiou uint64_t default_val) 118aadef0a1SChe-Liang Chiou { 119aadef0a1SChe-Liang Chiou const uint64_t *cell64; 120aadef0a1SChe-Liang Chiou int length; 121aadef0a1SChe-Liang Chiou 122aadef0a1SChe-Liang Chiou cell64 = fdt_getprop(blob, node, prop_name, &length); 123aadef0a1SChe-Liang Chiou if (!cell64 || length < sizeof(*cell64)) 124aadef0a1SChe-Liang Chiou return default_val; 125aadef0a1SChe-Liang Chiou 126aadef0a1SChe-Liang Chiou return fdt64_to_cpu(*cell64); 127aadef0a1SChe-Liang Chiou } 128aadef0a1SChe-Liang Chiou 129f88fe2deSSimon Glass int fdtdec_get_is_enabled(const void *blob, int node) 130b5220bc6SSimon Glass { 131b5220bc6SSimon Glass const char *cell; 132b5220bc6SSimon Glass 133f88fe2deSSimon Glass /* 134f88fe2deSSimon Glass * It should say "okay", so only allow that. Some fdts use "ok" but 135f88fe2deSSimon Glass * this is a bug. Please fix your device tree source file. See here 136f88fe2deSSimon Glass * for discussion: 137f88fe2deSSimon Glass * 138f88fe2deSSimon Glass * http://www.mail-archive.com/u-boot@lists.denx.de/msg71598.html 139f88fe2deSSimon Glass */ 140b5220bc6SSimon Glass cell = fdt_getprop(blob, node, "status", NULL); 141b5220bc6SSimon Glass if (cell) 142f88fe2deSSimon Glass return 0 == strcmp(cell, "okay"); 143f88fe2deSSimon Glass return 1; 144b5220bc6SSimon Glass } 145b5220bc6SSimon Glass 1467cde397bSGerald Van Baren enum fdt_compat_id fdtdec_lookup(const void *blob, int node) 147b5220bc6SSimon Glass { 148b5220bc6SSimon Glass enum fdt_compat_id id; 149b5220bc6SSimon Glass 150b5220bc6SSimon Glass /* Search our drivers */ 151b5220bc6SSimon Glass for (id = COMPAT_UNKNOWN; id < COMPAT_COUNT; id++) 152b5220bc6SSimon Glass if (0 == fdt_node_check_compatible(blob, node, 153b5220bc6SSimon Glass compat_names[id])) 154b5220bc6SSimon Glass return id; 155b5220bc6SSimon Glass return COMPAT_UNKNOWN; 156b5220bc6SSimon Glass } 157b5220bc6SSimon Glass 158b5220bc6SSimon Glass int fdtdec_next_compatible(const void *blob, int node, 159b5220bc6SSimon Glass enum fdt_compat_id id) 160b5220bc6SSimon Glass { 161b5220bc6SSimon Glass return fdt_node_offset_by_compatible(blob, node, compat_names[id]); 162b5220bc6SSimon Glass } 163b5220bc6SSimon Glass 1643ddecfc7SSimon Glass int fdtdec_next_compatible_subnode(const void *blob, int node, 1653ddecfc7SSimon Glass enum fdt_compat_id id, int *depthp) 1663ddecfc7SSimon Glass { 1673ddecfc7SSimon Glass do { 1683ddecfc7SSimon Glass node = fdt_next_node(blob, node, depthp); 1693ddecfc7SSimon Glass } while (*depthp > 1); 1703ddecfc7SSimon Glass 1713ddecfc7SSimon Glass /* If this is a direct subnode, and compatible, return it */ 1723ddecfc7SSimon Glass if (*depthp == 1 && 0 == fdt_node_check_compatible( 1733ddecfc7SSimon Glass blob, node, compat_names[id])) 1743ddecfc7SSimon Glass return node; 1753ddecfc7SSimon Glass 1763ddecfc7SSimon Glass return -FDT_ERR_NOTFOUND; 1773ddecfc7SSimon Glass } 1783ddecfc7SSimon Glass 179b5220bc6SSimon Glass int fdtdec_next_alias(const void *blob, const char *name, 180b5220bc6SSimon Glass enum fdt_compat_id id, int *upto) 181b5220bc6SSimon Glass { 182b5220bc6SSimon Glass #define MAX_STR_LEN 20 183b5220bc6SSimon Glass char str[MAX_STR_LEN + 20]; 184b5220bc6SSimon Glass int node, err; 185b5220bc6SSimon Glass 186b5220bc6SSimon Glass /* snprintf() is not available */ 187b5220bc6SSimon Glass assert(strlen(name) < MAX_STR_LEN); 188b5220bc6SSimon Glass sprintf(str, "%.*s%d", MAX_STR_LEN, name, *upto); 18900878476SSimon Glass node = fdt_path_offset(blob, str); 190b5220bc6SSimon Glass if (node < 0) 191b5220bc6SSimon Glass return node; 192b5220bc6SSimon Glass err = fdt_node_check_compatible(blob, node, compat_names[id]); 193b5220bc6SSimon Glass if (err < 0) 194b5220bc6SSimon Glass return err; 195f88fe2deSSimon Glass if (err) 196f88fe2deSSimon Glass return -FDT_ERR_NOTFOUND; 197f88fe2deSSimon Glass (*upto)++; 198f88fe2deSSimon Glass return node; 199b5220bc6SSimon Glass } 200b5220bc6SSimon Glass 201a53f4a29SSimon Glass int fdtdec_find_aliases_for_id(const void *blob, const char *name, 202a53f4a29SSimon Glass enum fdt_compat_id id, int *node_list, int maxcount) 203a53f4a29SSimon Glass { 204c6782270SSimon Glass memset(node_list, '\0', sizeof(*node_list) * maxcount); 205c6782270SSimon Glass 206c6782270SSimon Glass return fdtdec_add_aliases_for_id(blob, name, id, node_list, maxcount); 207c6782270SSimon Glass } 208c6782270SSimon Glass 209c6782270SSimon Glass /* TODO: Can we tighten this code up a little? */ 210c6782270SSimon Glass int fdtdec_add_aliases_for_id(const void *blob, const char *name, 211c6782270SSimon Glass enum fdt_compat_id id, int *node_list, int maxcount) 212c6782270SSimon Glass { 213a53f4a29SSimon Glass int name_len = strlen(name); 214a53f4a29SSimon Glass int nodes[maxcount]; 215a53f4a29SSimon Glass int num_found = 0; 216a53f4a29SSimon Glass int offset, node; 217a53f4a29SSimon Glass int alias_node; 218a53f4a29SSimon Glass int count; 219a53f4a29SSimon Glass int i, j; 220a53f4a29SSimon Glass 221a53f4a29SSimon Glass /* find the alias node if present */ 222a53f4a29SSimon Glass alias_node = fdt_path_offset(blob, "/aliases"); 223a53f4a29SSimon Glass 224a53f4a29SSimon Glass /* 225a53f4a29SSimon Glass * start with nothing, and we can assume that the root node can't 226a53f4a29SSimon Glass * match 227a53f4a29SSimon Glass */ 228a53f4a29SSimon Glass memset(nodes, '\0', sizeof(nodes)); 229a53f4a29SSimon Glass 230a53f4a29SSimon Glass /* First find all the compatible nodes */ 231a53f4a29SSimon Glass for (node = count = 0; node >= 0 && count < maxcount;) { 232a53f4a29SSimon Glass node = fdtdec_next_compatible(blob, node, id); 233a53f4a29SSimon Glass if (node >= 0) 234a53f4a29SSimon Glass nodes[count++] = node; 235a53f4a29SSimon Glass } 236a53f4a29SSimon Glass if (node >= 0) 237a53f4a29SSimon Glass debug("%s: warning: maxcount exceeded with alias '%s'\n", 238a53f4a29SSimon Glass __func__, name); 239a53f4a29SSimon Glass 240a53f4a29SSimon Glass /* Now find all the aliases */ 241a53f4a29SSimon Glass for (offset = fdt_first_property_offset(blob, alias_node); 242a53f4a29SSimon Glass offset > 0; 243a53f4a29SSimon Glass offset = fdt_next_property_offset(blob, offset)) { 244a53f4a29SSimon Glass const struct fdt_property *prop; 245a53f4a29SSimon Glass const char *path; 246a53f4a29SSimon Glass int number; 247a53f4a29SSimon Glass int found; 248a53f4a29SSimon Glass 249a53f4a29SSimon Glass node = 0; 250a53f4a29SSimon Glass prop = fdt_get_property_by_offset(blob, offset, NULL); 251a53f4a29SSimon Glass path = fdt_string(blob, fdt32_to_cpu(prop->nameoff)); 252a53f4a29SSimon Glass if (prop->len && 0 == strncmp(path, name, name_len)) 253a53f4a29SSimon Glass node = fdt_path_offset(blob, prop->data); 254a53f4a29SSimon Glass if (node <= 0) 255a53f4a29SSimon Glass continue; 256a53f4a29SSimon Glass 257a53f4a29SSimon Glass /* Get the alias number */ 258a53f4a29SSimon Glass number = simple_strtoul(path + name_len, NULL, 10); 259a53f4a29SSimon Glass if (number < 0 || number >= maxcount) { 260a53f4a29SSimon Glass debug("%s: warning: alias '%s' is out of range\n", 261a53f4a29SSimon Glass __func__, path); 262a53f4a29SSimon Glass continue; 263a53f4a29SSimon Glass } 264a53f4a29SSimon Glass 265a53f4a29SSimon Glass /* Make sure the node we found is actually in our list! */ 266a53f4a29SSimon Glass found = -1; 267a53f4a29SSimon Glass for (j = 0; j < count; j++) 268a53f4a29SSimon Glass if (nodes[j] == node) { 269a53f4a29SSimon Glass found = j; 270a53f4a29SSimon Glass break; 271a53f4a29SSimon Glass } 272a53f4a29SSimon Glass 273a53f4a29SSimon Glass if (found == -1) { 274a53f4a29SSimon Glass debug("%s: warning: alias '%s' points to a node " 275a53f4a29SSimon Glass "'%s' that is missing or is not compatible " 276a53f4a29SSimon Glass " with '%s'\n", __func__, path, 277a53f4a29SSimon Glass fdt_get_name(blob, node, NULL), 278a53f4a29SSimon Glass compat_names[id]); 279a53f4a29SSimon Glass continue; 280a53f4a29SSimon Glass } 281a53f4a29SSimon Glass 282a53f4a29SSimon Glass /* 283a53f4a29SSimon Glass * Add this node to our list in the right place, and mark 284a53f4a29SSimon Glass * it as done. 285a53f4a29SSimon Glass */ 286a53f4a29SSimon Glass if (fdtdec_get_is_enabled(blob, node)) { 287c6782270SSimon Glass if (node_list[number]) { 288c6782270SSimon Glass debug("%s: warning: alias '%s' requires that " 289c6782270SSimon Glass "a node be placed in the list in a " 290c6782270SSimon Glass "position which is already filled by " 291c6782270SSimon Glass "node '%s'\n", __func__, path, 292c6782270SSimon Glass fdt_get_name(blob, node, NULL)); 293c6782270SSimon Glass continue; 294c6782270SSimon Glass } 295a53f4a29SSimon Glass node_list[number] = node; 296a53f4a29SSimon Glass if (number >= num_found) 297a53f4a29SSimon Glass num_found = number + 1; 298a53f4a29SSimon Glass } 299c6782270SSimon Glass nodes[found] = 0; 300a53f4a29SSimon Glass } 301a53f4a29SSimon Glass 302a53f4a29SSimon Glass /* Add any nodes not mentioned by an alias */ 303a53f4a29SSimon Glass for (i = j = 0; i < maxcount; i++) { 304a53f4a29SSimon Glass if (!node_list[i]) { 305a53f4a29SSimon Glass for (; j < maxcount; j++) 306a53f4a29SSimon Glass if (nodes[j] && 307a53f4a29SSimon Glass fdtdec_get_is_enabled(blob, nodes[j])) 308a53f4a29SSimon Glass break; 309a53f4a29SSimon Glass 310a53f4a29SSimon Glass /* Have we run out of nodes to add? */ 311a53f4a29SSimon Glass if (j == maxcount) 312a53f4a29SSimon Glass break; 313a53f4a29SSimon Glass 314a53f4a29SSimon Glass assert(!node_list[i]); 315a53f4a29SSimon Glass node_list[i] = nodes[j++]; 316a53f4a29SSimon Glass if (i >= num_found) 317a53f4a29SSimon Glass num_found = i + 1; 318a53f4a29SSimon Glass } 319a53f4a29SSimon Glass } 320a53f4a29SSimon Glass 321a53f4a29SSimon Glass return num_found; 322a53f4a29SSimon Glass } 323a53f4a29SSimon Glass 3245c33c9fdSSimon Glass int fdtdec_get_alias_seq(const void *blob, const char *base, int offset, 3255c33c9fdSSimon Glass int *seqp) 3265c33c9fdSSimon Glass { 3275c33c9fdSSimon Glass int base_len = strlen(base); 3285c33c9fdSSimon Glass const char *find_name; 3295c33c9fdSSimon Glass int find_namelen; 3305c33c9fdSSimon Glass int prop_offset; 3315c33c9fdSSimon Glass int aliases; 3325c33c9fdSSimon Glass 3335c33c9fdSSimon Glass find_name = fdt_get_name(blob, offset, &find_namelen); 3345c33c9fdSSimon Glass debug("Looking for '%s' at %d, name %s\n", base, offset, find_name); 3355c33c9fdSSimon Glass 3365c33c9fdSSimon Glass aliases = fdt_path_offset(blob, "/aliases"); 3375c33c9fdSSimon Glass for (prop_offset = fdt_first_property_offset(blob, aliases); 3385c33c9fdSSimon Glass prop_offset > 0; 3395c33c9fdSSimon Glass prop_offset = fdt_next_property_offset(blob, prop_offset)) { 3405c33c9fdSSimon Glass const char *prop; 3415c33c9fdSSimon Glass const char *name; 3425c33c9fdSSimon Glass const char *slash; 3435c33c9fdSSimon Glass const char *p; 3445c33c9fdSSimon Glass int len; 3455c33c9fdSSimon Glass 3465c33c9fdSSimon Glass prop = fdt_getprop_by_offset(blob, prop_offset, &name, &len); 3475c33c9fdSSimon Glass debug(" - %s, %s\n", name, prop); 3485c33c9fdSSimon Glass if (len < find_namelen || *prop != '/' || prop[len - 1] || 3495c33c9fdSSimon Glass strncmp(name, base, base_len)) 3505c33c9fdSSimon Glass continue; 3515c33c9fdSSimon Glass 3525c33c9fdSSimon Glass slash = strrchr(prop, '/'); 3535c33c9fdSSimon Glass if (strcmp(slash + 1, find_name)) 3545c33c9fdSSimon Glass continue; 3555c33c9fdSSimon Glass for (p = name; *p; p++) { 3565c33c9fdSSimon Glass if (isdigit(*p)) { 3575c33c9fdSSimon Glass *seqp = simple_strtoul(p, NULL, 10); 3585c33c9fdSSimon Glass debug("Found seq %d\n", *seqp); 3595c33c9fdSSimon Glass return 0; 3605c33c9fdSSimon Glass } 3615c33c9fdSSimon Glass } 3625c33c9fdSSimon Glass } 3635c33c9fdSSimon Glass 3645c33c9fdSSimon Glass debug("Not found\n"); 3655c33c9fdSSimon Glass return -ENOENT; 3665c33c9fdSSimon Glass } 3675c33c9fdSSimon Glass 368*3234aa4bSSimon Glass int fdtdec_get_alias_node(const void *blob, const char *name) 369*3234aa4bSSimon Glass { 370*3234aa4bSSimon Glass const char *prop; 371*3234aa4bSSimon Glass int alias_node; 372*3234aa4bSSimon Glass int len; 373*3234aa4bSSimon Glass 374*3234aa4bSSimon Glass if (!blob) 375*3234aa4bSSimon Glass return -FDT_ERR_NOTFOUND; 376*3234aa4bSSimon Glass alias_node = fdt_path_offset(blob, "/aliases"); 377*3234aa4bSSimon Glass prop = fdt_getprop(blob, alias_node, name, &len); 378*3234aa4bSSimon Glass if (!prop) 379*3234aa4bSSimon Glass return -FDT_ERR_NOTFOUND; 380*3234aa4bSSimon Glass return fdt_path_offset(blob, prop); 381*3234aa4bSSimon Glass } 382*3234aa4bSSimon Glass 3839a263e55SSimon Glass int fdtdec_check_fdt(void) 3849a263e55SSimon Glass { 3859a263e55SSimon Glass /* 3869a263e55SSimon Glass * We must have an FDT, but we cannot panic() yet since the console 3879a263e55SSimon Glass * is not ready. So for now, just assert(). Boards which need an early 3889a263e55SSimon Glass * FDT (prior to console ready) will need to make their own 3899a263e55SSimon Glass * arrangements and do their own checks. 3909a263e55SSimon Glass */ 3919a263e55SSimon Glass assert(!fdtdec_prepare_fdt()); 3929a263e55SSimon Glass return 0; 3939a263e55SSimon Glass } 3949a263e55SSimon Glass 395b5220bc6SSimon Glass /* 396b5220bc6SSimon Glass * This function is a little odd in that it accesses global data. At some 397b5220bc6SSimon Glass * point if the architecture board.c files merge this will make more sense. 398b5220bc6SSimon Glass * Even now, it is common code. 399b5220bc6SSimon Glass */ 4009a263e55SSimon Glass int fdtdec_prepare_fdt(void) 401b5220bc6SSimon Glass { 402c309c2daSSimon Glass if (!gd->fdt_blob || ((uintptr_t)gd->fdt_blob & 3) || 403c309c2daSSimon Glass fdt_check_header(gd->fdt_blob)) { 4049a263e55SSimon Glass printf("No valid FDT found - please append one to U-Boot " 4059a263e55SSimon Glass "binary, use u-boot-dtb.bin or define " 406a733b06bSSimon Glass "CONFIG_OF_EMBED. For sandbox, use -d <file.dtb>\n"); 4079a263e55SSimon Glass return -1; 4089a263e55SSimon Glass } 409b5220bc6SSimon Glass return 0; 410b5220bc6SSimon Glass } 411d17da655SSimon Glass 412d17da655SSimon Glass int fdtdec_lookup_phandle(const void *blob, int node, const char *prop_name) 413d17da655SSimon Glass { 414d17da655SSimon Glass const u32 *phandle; 415d17da655SSimon Glass int lookup; 416d17da655SSimon Glass 4171cb2323bSSimon Glass debug("%s: %s\n", __func__, prop_name); 418d17da655SSimon Glass phandle = fdt_getprop(blob, node, prop_name, NULL); 419d17da655SSimon Glass if (!phandle) 420d17da655SSimon Glass return -FDT_ERR_NOTFOUND; 421d17da655SSimon Glass 422d17da655SSimon Glass lookup = fdt_node_offset_by_phandle(blob, fdt32_to_cpu(*phandle)); 423d17da655SSimon Glass return lookup; 424d17da655SSimon Glass } 425d17da655SSimon Glass 426d17da655SSimon Glass /** 427d17da655SSimon Glass * Look up a property in a node and check that it has a minimum length. 428d17da655SSimon Glass * 429d17da655SSimon Glass * @param blob FDT blob 430d17da655SSimon Glass * @param node node to examine 431d17da655SSimon Glass * @param prop_name name of property to find 432d17da655SSimon Glass * @param min_len minimum property length in bytes 433d17da655SSimon Glass * @param err 0 if ok, or -FDT_ERR_NOTFOUND if the property is not 434d17da655SSimon Glass found, or -FDT_ERR_BADLAYOUT if not enough data 435d17da655SSimon Glass * @return pointer to cell, which is only valid if err == 0 436d17da655SSimon Glass */ 437d17da655SSimon Glass static const void *get_prop_check_min_len(const void *blob, int node, 438d17da655SSimon Glass const char *prop_name, int min_len, int *err) 439d17da655SSimon Glass { 440d17da655SSimon Glass const void *cell; 441d17da655SSimon Glass int len; 442d17da655SSimon Glass 443d17da655SSimon Glass debug("%s: %s\n", __func__, prop_name); 444d17da655SSimon Glass cell = fdt_getprop(blob, node, prop_name, &len); 445d17da655SSimon Glass if (!cell) 446d17da655SSimon Glass *err = -FDT_ERR_NOTFOUND; 447d17da655SSimon Glass else if (len < min_len) 448d17da655SSimon Glass *err = -FDT_ERR_BADLAYOUT; 449d17da655SSimon Glass else 450d17da655SSimon Glass *err = 0; 451d17da655SSimon Glass return cell; 452d17da655SSimon Glass } 453d17da655SSimon Glass 454d17da655SSimon Glass int fdtdec_get_int_array(const void *blob, int node, const char *prop_name, 455d17da655SSimon Glass u32 *array, int count) 456d17da655SSimon Glass { 457d17da655SSimon Glass const u32 *cell; 458d17da655SSimon Glass int i, err = 0; 459d17da655SSimon Glass 460d17da655SSimon Glass debug("%s: %s\n", __func__, prop_name); 461d17da655SSimon Glass cell = get_prop_check_min_len(blob, node, prop_name, 462d17da655SSimon Glass sizeof(u32) * count, &err); 463d17da655SSimon Glass if (!err) { 464d17da655SSimon Glass for (i = 0; i < count; i++) 465d17da655SSimon Glass array[i] = fdt32_to_cpu(cell[i]); 466d17da655SSimon Glass } 467d17da655SSimon Glass return err; 468d17da655SSimon Glass } 469d17da655SSimon Glass 47096875e7dSSimon Glass const u32 *fdtdec_locate_array(const void *blob, int node, 47196875e7dSSimon Glass const char *prop_name, int count) 47296875e7dSSimon Glass { 47396875e7dSSimon Glass const u32 *cell; 47496875e7dSSimon Glass int err; 47596875e7dSSimon Glass 47696875e7dSSimon Glass cell = get_prop_check_min_len(blob, node, prop_name, 47796875e7dSSimon Glass sizeof(u32) * count, &err); 47896875e7dSSimon Glass return err ? NULL : cell; 47996875e7dSSimon Glass } 48096875e7dSSimon Glass 481d17da655SSimon Glass int fdtdec_get_bool(const void *blob, int node, const char *prop_name) 482d17da655SSimon Glass { 483d17da655SSimon Glass const s32 *cell; 484d17da655SSimon Glass int len; 485d17da655SSimon Glass 486d17da655SSimon Glass debug("%s: %s\n", __func__, prop_name); 487d17da655SSimon Glass cell = fdt_getprop(blob, node, prop_name, &len); 488d17da655SSimon Glass return cell != NULL; 489d17da655SSimon Glass } 490ed3ee5cdSSimon Glass 491ed3ee5cdSSimon Glass /** 492ed3ee5cdSSimon Glass * Decode a list of GPIOs from an FDT. This creates a list of GPIOs with no 493ed3ee5cdSSimon Glass * terminating item. 494ed3ee5cdSSimon Glass * 495ed3ee5cdSSimon Glass * @param blob FDT blob to use 496ed3ee5cdSSimon Glass * @param node Node to look at 497ed3ee5cdSSimon Glass * @param prop_name Node property name 498ed3ee5cdSSimon Glass * @param gpio Array of gpio elements to fill from FDT. This will be 499ed3ee5cdSSimon Glass * untouched if either 0 or an error is returned 500ed3ee5cdSSimon Glass * @param max_count Maximum number of elements allowed 501ed3ee5cdSSimon Glass * @return number of GPIOs read if ok, -FDT_ERR_BADLAYOUT if max_count would 502ed3ee5cdSSimon Glass * be exceeded, or -FDT_ERR_NOTFOUND if the property is missing. 503ed3ee5cdSSimon Glass */ 5045921f6a2SAbhilash Kesavan int fdtdec_decode_gpios(const void *blob, int node, const char *prop_name, 5055921f6a2SAbhilash Kesavan struct fdt_gpio_state *gpio, int max_count) 506ed3ee5cdSSimon Glass { 507ed3ee5cdSSimon Glass const struct fdt_property *prop; 508ed3ee5cdSSimon Glass const u32 *cell; 509ed3ee5cdSSimon Glass const char *name; 510ed3ee5cdSSimon Glass int len, i; 511ed3ee5cdSSimon Glass 512ed3ee5cdSSimon Glass debug("%s: %s\n", __func__, prop_name); 513ed3ee5cdSSimon Glass assert(max_count > 0); 514ed3ee5cdSSimon Glass prop = fdt_get_property(blob, node, prop_name, &len); 515ed3ee5cdSSimon Glass if (!prop) { 5161cb2323bSSimon Glass debug("%s: property '%s' missing\n", __func__, prop_name); 517ed3ee5cdSSimon Glass return -FDT_ERR_NOTFOUND; 518ed3ee5cdSSimon Glass } 519ed3ee5cdSSimon Glass 520ed3ee5cdSSimon Glass /* We will use the name to tag the GPIO */ 521ed3ee5cdSSimon Glass name = fdt_string(blob, fdt32_to_cpu(prop->nameoff)); 522ed3ee5cdSSimon Glass cell = (u32 *)prop->data; 523ed3ee5cdSSimon Glass len /= sizeof(u32) * 3; /* 3 cells per GPIO record */ 524ed3ee5cdSSimon Glass if (len > max_count) { 5251cb2323bSSimon Glass debug(" %s: too many GPIOs / cells for " 526ed3ee5cdSSimon Glass "property '%s'\n", __func__, prop_name); 527ed3ee5cdSSimon Glass return -FDT_ERR_BADLAYOUT; 528ed3ee5cdSSimon Glass } 529ed3ee5cdSSimon Glass 530ed3ee5cdSSimon Glass /* Read out the GPIO data from the cells */ 531ed3ee5cdSSimon Glass for (i = 0; i < len; i++, cell += 3) { 532ed3ee5cdSSimon Glass gpio[i].gpio = fdt32_to_cpu(cell[1]); 533ed3ee5cdSSimon Glass gpio[i].flags = fdt32_to_cpu(cell[2]); 534ed3ee5cdSSimon Glass gpio[i].name = name; 535ed3ee5cdSSimon Glass } 536ed3ee5cdSSimon Glass 537ed3ee5cdSSimon Glass return len; 538ed3ee5cdSSimon Glass } 539ed3ee5cdSSimon Glass 540ed3ee5cdSSimon Glass int fdtdec_decode_gpio(const void *blob, int node, const char *prop_name, 541ed3ee5cdSSimon Glass struct fdt_gpio_state *gpio) 542ed3ee5cdSSimon Glass { 543ed3ee5cdSSimon Glass int err; 544ed3ee5cdSSimon Glass 545ed3ee5cdSSimon Glass debug("%s: %s\n", __func__, prop_name); 546ed3ee5cdSSimon Glass gpio->gpio = FDT_GPIO_NONE; 547ed3ee5cdSSimon Glass gpio->name = NULL; 548ed3ee5cdSSimon Glass err = fdtdec_decode_gpios(blob, node, prop_name, gpio, 1); 549ed3ee5cdSSimon Glass return err == 1 ? 0 : err; 550ed3ee5cdSSimon Glass } 551ed3ee5cdSSimon Glass 552202ff753SSean Paul int fdtdec_get_gpio(struct fdt_gpio_state *gpio) 553202ff753SSean Paul { 554202ff753SSean Paul int val; 555202ff753SSean Paul 556202ff753SSean Paul if (!fdt_gpio_isvalid(gpio)) 557202ff753SSean Paul return -1; 558202ff753SSean Paul 559202ff753SSean Paul val = gpio_get_value(gpio->gpio); 560202ff753SSean Paul return gpio->flags & FDT_GPIO_ACTIVE_LOW ? val ^ 1 : val; 561202ff753SSean Paul } 562202ff753SSean Paul 563202ff753SSean Paul int fdtdec_set_gpio(struct fdt_gpio_state *gpio, int val) 564202ff753SSean Paul { 565202ff753SSean Paul if (!fdt_gpio_isvalid(gpio)) 566202ff753SSean Paul return -1; 567202ff753SSean Paul 568202ff753SSean Paul val = gpio->flags & FDT_GPIO_ACTIVE_LOW ? val ^ 1 : val; 569202ff753SSean Paul return gpio_set_value(gpio->gpio, val); 570202ff753SSean Paul } 571202ff753SSean Paul 572ed3ee5cdSSimon Glass int fdtdec_setup_gpio(struct fdt_gpio_state *gpio) 573ed3ee5cdSSimon Glass { 574ed3ee5cdSSimon Glass /* 575ed3ee5cdSSimon Glass * Return success if there is no GPIO defined. This is used for 576ed3ee5cdSSimon Glass * optional GPIOs) 577ed3ee5cdSSimon Glass */ 578ed3ee5cdSSimon Glass if (!fdt_gpio_isvalid(gpio)) 579ed3ee5cdSSimon Glass return 0; 580ed3ee5cdSSimon Glass 581ed3ee5cdSSimon Glass if (gpio_request(gpio->gpio, gpio->name)) 582ed3ee5cdSSimon Glass return -1; 583ed3ee5cdSSimon Glass return 0; 584ed3ee5cdSSimon Glass } 585bed4d892SAnton Staff 586bed4d892SAnton Staff int fdtdec_get_byte_array(const void *blob, int node, const char *prop_name, 587bed4d892SAnton Staff u8 *array, int count) 588bed4d892SAnton Staff { 589bed4d892SAnton Staff const u8 *cell; 590bed4d892SAnton Staff int err; 591bed4d892SAnton Staff 592bed4d892SAnton Staff cell = get_prop_check_min_len(blob, node, prop_name, count, &err); 593bed4d892SAnton Staff if (!err) 594bed4d892SAnton Staff memcpy(array, cell, count); 595bed4d892SAnton Staff return err; 596bed4d892SAnton Staff } 597bed4d892SAnton Staff 598bed4d892SAnton Staff const u8 *fdtdec_locate_byte_array(const void *blob, int node, 599bed4d892SAnton Staff const char *prop_name, int count) 600bed4d892SAnton Staff { 601bed4d892SAnton Staff const u8 *cell; 602bed4d892SAnton Staff int err; 603bed4d892SAnton Staff 604bed4d892SAnton Staff cell = get_prop_check_min_len(blob, node, prop_name, count, &err); 605bed4d892SAnton Staff if (err) 606bed4d892SAnton Staff return NULL; 607bed4d892SAnton Staff return cell; 608bed4d892SAnton Staff } 60909258f1eSAbhilash Kesavan 61009258f1eSAbhilash Kesavan int fdtdec_get_config_int(const void *blob, const char *prop_name, 61109258f1eSAbhilash Kesavan int default_val) 61209258f1eSAbhilash Kesavan { 61309258f1eSAbhilash Kesavan int config_node; 61409258f1eSAbhilash Kesavan 61509258f1eSAbhilash Kesavan debug("%s: %s\n", __func__, prop_name); 61609258f1eSAbhilash Kesavan config_node = fdt_path_offset(blob, "/config"); 61709258f1eSAbhilash Kesavan if (config_node < 0) 61809258f1eSAbhilash Kesavan return default_val; 61909258f1eSAbhilash Kesavan return fdtdec_get_int(blob, config_node, prop_name, default_val); 62009258f1eSAbhilash Kesavan } 621332ab0d5SSimon Glass 62279289c0bSGabe Black int fdtdec_get_config_bool(const void *blob, const char *prop_name) 62379289c0bSGabe Black { 62479289c0bSGabe Black int config_node; 62579289c0bSGabe Black const void *prop; 62679289c0bSGabe Black 62779289c0bSGabe Black debug("%s: %s\n", __func__, prop_name); 62879289c0bSGabe Black config_node = fdt_path_offset(blob, "/config"); 62979289c0bSGabe Black if (config_node < 0) 63079289c0bSGabe Black return 0; 63179289c0bSGabe Black prop = fdt_get_property(blob, config_node, prop_name, NULL); 63279289c0bSGabe Black 63379289c0bSGabe Black return prop != NULL; 63479289c0bSGabe Black } 63579289c0bSGabe Black 636332ab0d5SSimon Glass char *fdtdec_get_config_string(const void *blob, const char *prop_name) 637332ab0d5SSimon Glass { 638332ab0d5SSimon Glass const char *nodep; 639332ab0d5SSimon Glass int nodeoffset; 640332ab0d5SSimon Glass int len; 641332ab0d5SSimon Glass 642332ab0d5SSimon Glass debug("%s: %s\n", __func__, prop_name); 643332ab0d5SSimon Glass nodeoffset = fdt_path_offset(blob, "/config"); 644332ab0d5SSimon Glass if (nodeoffset < 0) 645332ab0d5SSimon Glass return NULL; 646332ab0d5SSimon Glass 647332ab0d5SSimon Glass nodep = fdt_getprop(blob, nodeoffset, prop_name, &len); 648332ab0d5SSimon Glass if (!nodep) 649332ab0d5SSimon Glass return NULL; 650332ab0d5SSimon Glass 651332ab0d5SSimon Glass return (char *)nodep; 652332ab0d5SSimon Glass } 653f20c4619SSimon Glass 654f20c4619SSimon Glass int fdtdec_decode_region(const void *blob, int node, 655f20c4619SSimon Glass const char *prop_name, void **ptrp, size_t *size) 656f20c4619SSimon Glass { 657f20c4619SSimon Glass const fdt_addr_t *cell; 658f20c4619SSimon Glass int len; 659f20c4619SSimon Glass 660f20c4619SSimon Glass debug("%s: %s\n", __func__, prop_name); 661f20c4619SSimon Glass cell = fdt_getprop(blob, node, prop_name, &len); 662f20c4619SSimon Glass if (!cell || (len != sizeof(fdt_addr_t) * 2)) 663f20c4619SSimon Glass return -1; 664f20c4619SSimon Glass 665370b6c5cSSimon Glass *ptrp = map_sysmem(fdt_addr_to_cpu(*cell), *size); 666f20c4619SSimon Glass *size = fdt_size_to_cpu(cell[1]); 667f20c4619SSimon Glass debug("%s: size=%zx\n", __func__, *size); 668f20c4619SSimon Glass return 0; 669f20c4619SSimon Glass } 670006e73b9SSimon Glass 671006e73b9SSimon Glass /** 672006e73b9SSimon Glass * Read a flash entry from the fdt 673006e73b9SSimon Glass * 674006e73b9SSimon Glass * @param blob FDT blob 675006e73b9SSimon Glass * @param node Offset of node to read 676006e73b9SSimon Glass * @param name Name of node being read 677006e73b9SSimon Glass * @param entry Place to put offset and size of this node 678006e73b9SSimon Glass * @return 0 if ok, -ve on error 679006e73b9SSimon Glass */ 680006e73b9SSimon Glass int fdtdec_read_fmap_entry(const void *blob, int node, const char *name, 681006e73b9SSimon Glass struct fmap_entry *entry) 682006e73b9SSimon Glass { 683006e73b9SSimon Glass u32 reg[2]; 684006e73b9SSimon Glass 685006e73b9SSimon Glass if (fdtdec_get_int_array(blob, node, "reg", reg, 2)) { 686006e73b9SSimon Glass debug("Node '%s' has bad/missing 'reg' property\n", name); 687006e73b9SSimon Glass return -FDT_ERR_NOTFOUND; 688006e73b9SSimon Glass } 689006e73b9SSimon Glass entry->offset = reg[0]; 690006e73b9SSimon Glass entry->length = reg[1]; 691006e73b9SSimon Glass 692006e73b9SSimon Glass return 0; 693006e73b9SSimon Glass } 69429a23f9dSHeiko Schocher #endif 695