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"), 4096a78ac0SYen Lin COMPAT(NVIDIA_TEGRA20_I2C, "nvidia,tegra20-i2c"), 4196a78ac0SYen Lin COMPAT(NVIDIA_TEGRA20_DVC, "nvidia,tegra20-i2c-dvc"), 420e35ad05SJimmy Zhang COMPAT(NVIDIA_TEGRA20_EMC, "nvidia,tegra20-emc"), 430e35ad05SJimmy Zhang COMPAT(NVIDIA_TEGRA20_EMC_TABLE, "nvidia,tegra20-emc-table"), 446642a681SRakesh Iyer COMPAT(NVIDIA_TEGRA20_KBC, "nvidia,tegra20-kbc"), 45312693c3SJim Lin COMPAT(NVIDIA_TEGRA20_NAND, "nvidia,tegra20-nand"), 46b5220bc6SSimon Glass }; 47b5220bc6SSimon Glass 48a53f4a29SSimon Glass const char *fdtdec_get_compatible(enum fdt_compat_id id) 49a53f4a29SSimon Glass { 50a53f4a29SSimon Glass /* We allow reading of the 'unknown' ID for testing purposes */ 51a53f4a29SSimon Glass assert(id >= 0 && id < COMPAT_COUNT); 52a53f4a29SSimon Glass return compat_names[id]; 53a53f4a29SSimon Glass } 54a53f4a29SSimon Glass 55b5220bc6SSimon Glass fdt_addr_t fdtdec_get_addr(const void *blob, int node, 56b5220bc6SSimon Glass const char *prop_name) 57b5220bc6SSimon Glass { 58b5220bc6SSimon Glass const fdt_addr_t *cell; 59b5220bc6SSimon Glass int len; 60b5220bc6SSimon Glass 611cb2323bSSimon Glass debug("%s: %s: ", __func__, prop_name); 62b5220bc6SSimon Glass cell = fdt_getprop(blob, node, prop_name, &len); 63b5220bc6SSimon Glass if (cell && (len == sizeof(fdt_addr_t) || 641cb2323bSSimon Glass len == sizeof(fdt_addr_t) * 2)) { 651cb2323bSSimon Glass fdt_addr_t addr = fdt_addr_to_cpu(*cell); 661cb2323bSSimon Glass 671cb2323bSSimon Glass debug("%p\n", (void *)addr); 681cb2323bSSimon Glass return addr; 691cb2323bSSimon Glass } 701cb2323bSSimon Glass debug("(not found)\n"); 71b5220bc6SSimon Glass return FDT_ADDR_T_NONE; 72b5220bc6SSimon Glass } 73b5220bc6SSimon Glass 74b5220bc6SSimon Glass s32 fdtdec_get_int(const void *blob, int node, const char *prop_name, 75b5220bc6SSimon Glass s32 default_val) 76b5220bc6SSimon Glass { 77b5220bc6SSimon Glass const s32 *cell; 78b5220bc6SSimon Glass int len; 79b5220bc6SSimon Glass 801cb2323bSSimon Glass debug("%s: %s: ", __func__, prop_name); 81b5220bc6SSimon Glass cell = fdt_getprop(blob, node, prop_name, &len); 821cb2323bSSimon Glass if (cell && len >= sizeof(s32)) { 831cb2323bSSimon Glass s32 val = fdt32_to_cpu(cell[0]); 841cb2323bSSimon Glass 851cb2323bSSimon Glass debug("%#x (%d)\n", val, val); 861cb2323bSSimon Glass return val; 871cb2323bSSimon Glass } 881cb2323bSSimon Glass debug("(not found)\n"); 89b5220bc6SSimon Glass return default_val; 90b5220bc6SSimon Glass } 91b5220bc6SSimon Glass 92aadef0a1SChe-Liang Chiou uint64_t fdtdec_get_uint64(const void *blob, int node, const char *prop_name, 93aadef0a1SChe-Liang Chiou uint64_t default_val) 94aadef0a1SChe-Liang Chiou { 95aadef0a1SChe-Liang Chiou const uint64_t *cell64; 96aadef0a1SChe-Liang Chiou int length; 97aadef0a1SChe-Liang Chiou 98aadef0a1SChe-Liang Chiou cell64 = fdt_getprop(blob, node, prop_name, &length); 99aadef0a1SChe-Liang Chiou if (!cell64 || length < sizeof(*cell64)) 100aadef0a1SChe-Liang Chiou return default_val; 101aadef0a1SChe-Liang Chiou 102aadef0a1SChe-Liang Chiou return fdt64_to_cpu(*cell64); 103aadef0a1SChe-Liang Chiou } 104aadef0a1SChe-Liang Chiou 105f88fe2deSSimon Glass int fdtdec_get_is_enabled(const void *blob, int node) 106b5220bc6SSimon Glass { 107b5220bc6SSimon Glass const char *cell; 108b5220bc6SSimon Glass 109f88fe2deSSimon Glass /* 110f88fe2deSSimon Glass * It should say "okay", so only allow that. Some fdts use "ok" but 111f88fe2deSSimon Glass * this is a bug. Please fix your device tree source file. See here 112f88fe2deSSimon Glass * for discussion: 113f88fe2deSSimon Glass * 114f88fe2deSSimon Glass * http://www.mail-archive.com/u-boot@lists.denx.de/msg71598.html 115f88fe2deSSimon Glass */ 116b5220bc6SSimon Glass cell = fdt_getprop(blob, node, "status", NULL); 117b5220bc6SSimon Glass if (cell) 118f88fe2deSSimon Glass return 0 == strcmp(cell, "okay"); 119f88fe2deSSimon Glass return 1; 120b5220bc6SSimon Glass } 121b5220bc6SSimon Glass 1227cde397bSGerald Van Baren enum fdt_compat_id fdtdec_lookup(const void *blob, int node) 123b5220bc6SSimon Glass { 124b5220bc6SSimon Glass enum fdt_compat_id id; 125b5220bc6SSimon Glass 126b5220bc6SSimon Glass /* Search our drivers */ 127b5220bc6SSimon Glass for (id = COMPAT_UNKNOWN; id < COMPAT_COUNT; id++) 128b5220bc6SSimon Glass if (0 == fdt_node_check_compatible(blob, node, 129b5220bc6SSimon Glass compat_names[id])) 130b5220bc6SSimon Glass return id; 131b5220bc6SSimon Glass return COMPAT_UNKNOWN; 132b5220bc6SSimon Glass } 133b5220bc6SSimon Glass 134b5220bc6SSimon Glass int fdtdec_next_compatible(const void *blob, int node, 135b5220bc6SSimon Glass enum fdt_compat_id id) 136b5220bc6SSimon Glass { 137b5220bc6SSimon Glass return fdt_node_offset_by_compatible(blob, node, compat_names[id]); 138b5220bc6SSimon Glass } 139b5220bc6SSimon Glass 1403ddecfc7SSimon Glass int fdtdec_next_compatible_subnode(const void *blob, int node, 1413ddecfc7SSimon Glass enum fdt_compat_id id, int *depthp) 1423ddecfc7SSimon Glass { 1433ddecfc7SSimon Glass do { 1443ddecfc7SSimon Glass node = fdt_next_node(blob, node, depthp); 1453ddecfc7SSimon Glass } while (*depthp > 1); 1463ddecfc7SSimon Glass 1473ddecfc7SSimon Glass /* If this is a direct subnode, and compatible, return it */ 1483ddecfc7SSimon Glass if (*depthp == 1 && 0 == fdt_node_check_compatible( 1493ddecfc7SSimon Glass blob, node, compat_names[id])) 1503ddecfc7SSimon Glass return node; 1513ddecfc7SSimon Glass 1523ddecfc7SSimon Glass return -FDT_ERR_NOTFOUND; 1533ddecfc7SSimon Glass } 1543ddecfc7SSimon Glass 155b5220bc6SSimon Glass int fdtdec_next_alias(const void *blob, const char *name, 156b5220bc6SSimon Glass enum fdt_compat_id id, int *upto) 157b5220bc6SSimon Glass { 158b5220bc6SSimon Glass #define MAX_STR_LEN 20 159b5220bc6SSimon Glass char str[MAX_STR_LEN + 20]; 160b5220bc6SSimon Glass int node, err; 161b5220bc6SSimon Glass 162b5220bc6SSimon Glass /* snprintf() is not available */ 163b5220bc6SSimon Glass assert(strlen(name) < MAX_STR_LEN); 164b5220bc6SSimon Glass sprintf(str, "%.*s%d", MAX_STR_LEN, name, *upto); 165*00878476SSimon Glass node = fdt_path_offset(blob, str); 166b5220bc6SSimon Glass if (node < 0) 167b5220bc6SSimon Glass return node; 168b5220bc6SSimon Glass err = fdt_node_check_compatible(blob, node, compat_names[id]); 169b5220bc6SSimon Glass if (err < 0) 170b5220bc6SSimon Glass return err; 171f88fe2deSSimon Glass if (err) 172f88fe2deSSimon Glass return -FDT_ERR_NOTFOUND; 173f88fe2deSSimon Glass (*upto)++; 174f88fe2deSSimon Glass return node; 175b5220bc6SSimon Glass } 176b5220bc6SSimon Glass 177a53f4a29SSimon Glass int fdtdec_find_aliases_for_id(const void *blob, const char *name, 178a53f4a29SSimon Glass enum fdt_compat_id id, int *node_list, int maxcount) 179a53f4a29SSimon Glass { 180c6782270SSimon Glass memset(node_list, '\0', sizeof(*node_list) * maxcount); 181c6782270SSimon Glass 182c6782270SSimon Glass return fdtdec_add_aliases_for_id(blob, name, id, node_list, maxcount); 183c6782270SSimon Glass } 184c6782270SSimon Glass 185c6782270SSimon Glass /* TODO: Can we tighten this code up a little? */ 186c6782270SSimon Glass int fdtdec_add_aliases_for_id(const void *blob, const char *name, 187c6782270SSimon Glass enum fdt_compat_id id, int *node_list, int maxcount) 188c6782270SSimon Glass { 189a53f4a29SSimon Glass int name_len = strlen(name); 190a53f4a29SSimon Glass int nodes[maxcount]; 191a53f4a29SSimon Glass int num_found = 0; 192a53f4a29SSimon Glass int offset, node; 193a53f4a29SSimon Glass int alias_node; 194a53f4a29SSimon Glass int count; 195a53f4a29SSimon Glass int i, j; 196a53f4a29SSimon Glass 197a53f4a29SSimon Glass /* find the alias node if present */ 198a53f4a29SSimon Glass alias_node = fdt_path_offset(blob, "/aliases"); 199a53f4a29SSimon Glass 200a53f4a29SSimon Glass /* 201a53f4a29SSimon Glass * start with nothing, and we can assume that the root node can't 202a53f4a29SSimon Glass * match 203a53f4a29SSimon Glass */ 204a53f4a29SSimon Glass memset(nodes, '\0', sizeof(nodes)); 205a53f4a29SSimon Glass 206a53f4a29SSimon Glass /* First find all the compatible nodes */ 207a53f4a29SSimon Glass for (node = count = 0; node >= 0 && count < maxcount;) { 208a53f4a29SSimon Glass node = fdtdec_next_compatible(blob, node, id); 209a53f4a29SSimon Glass if (node >= 0) 210a53f4a29SSimon Glass nodes[count++] = node; 211a53f4a29SSimon Glass } 212a53f4a29SSimon Glass if (node >= 0) 213a53f4a29SSimon Glass debug("%s: warning: maxcount exceeded with alias '%s'\n", 214a53f4a29SSimon Glass __func__, name); 215a53f4a29SSimon Glass 216a53f4a29SSimon Glass /* Now find all the aliases */ 217a53f4a29SSimon Glass for (offset = fdt_first_property_offset(blob, alias_node); 218a53f4a29SSimon Glass offset > 0; 219a53f4a29SSimon Glass offset = fdt_next_property_offset(blob, offset)) { 220a53f4a29SSimon Glass const struct fdt_property *prop; 221a53f4a29SSimon Glass const char *path; 222a53f4a29SSimon Glass int number; 223a53f4a29SSimon Glass int found; 224a53f4a29SSimon Glass 225a53f4a29SSimon Glass node = 0; 226a53f4a29SSimon Glass prop = fdt_get_property_by_offset(blob, offset, NULL); 227a53f4a29SSimon Glass path = fdt_string(blob, fdt32_to_cpu(prop->nameoff)); 228a53f4a29SSimon Glass if (prop->len && 0 == strncmp(path, name, name_len)) 229a53f4a29SSimon Glass node = fdt_path_offset(blob, prop->data); 230a53f4a29SSimon Glass if (node <= 0) 231a53f4a29SSimon Glass continue; 232a53f4a29SSimon Glass 233a53f4a29SSimon Glass /* Get the alias number */ 234a53f4a29SSimon Glass number = simple_strtoul(path + name_len, NULL, 10); 235a53f4a29SSimon Glass if (number < 0 || number >= maxcount) { 236a53f4a29SSimon Glass debug("%s: warning: alias '%s' is out of range\n", 237a53f4a29SSimon Glass __func__, path); 238a53f4a29SSimon Glass continue; 239a53f4a29SSimon Glass } 240a53f4a29SSimon Glass 241a53f4a29SSimon Glass /* Make sure the node we found is actually in our list! */ 242a53f4a29SSimon Glass found = -1; 243a53f4a29SSimon Glass for (j = 0; j < count; j++) 244a53f4a29SSimon Glass if (nodes[j] == node) { 245a53f4a29SSimon Glass found = j; 246a53f4a29SSimon Glass break; 247a53f4a29SSimon Glass } 248a53f4a29SSimon Glass 249a53f4a29SSimon Glass if (found == -1) { 250a53f4a29SSimon Glass debug("%s: warning: alias '%s' points to a node " 251a53f4a29SSimon Glass "'%s' that is missing or is not compatible " 252a53f4a29SSimon Glass " with '%s'\n", __func__, path, 253a53f4a29SSimon Glass fdt_get_name(blob, node, NULL), 254a53f4a29SSimon Glass compat_names[id]); 255a53f4a29SSimon Glass continue; 256a53f4a29SSimon Glass } 257a53f4a29SSimon Glass 258a53f4a29SSimon Glass /* 259a53f4a29SSimon Glass * Add this node to our list in the right place, and mark 260a53f4a29SSimon Glass * it as done. 261a53f4a29SSimon Glass */ 262a53f4a29SSimon Glass if (fdtdec_get_is_enabled(blob, node)) { 263c6782270SSimon Glass if (node_list[number]) { 264c6782270SSimon Glass debug("%s: warning: alias '%s' requires that " 265c6782270SSimon Glass "a node be placed in the list in a " 266c6782270SSimon Glass "position which is already filled by " 267c6782270SSimon Glass "node '%s'\n", __func__, path, 268c6782270SSimon Glass fdt_get_name(blob, node, NULL)); 269c6782270SSimon Glass continue; 270c6782270SSimon Glass } 271a53f4a29SSimon Glass node_list[number] = node; 272a53f4a29SSimon Glass if (number >= num_found) 273a53f4a29SSimon Glass num_found = number + 1; 274a53f4a29SSimon Glass } 275c6782270SSimon Glass nodes[found] = 0; 276a53f4a29SSimon Glass } 277a53f4a29SSimon Glass 278a53f4a29SSimon Glass /* Add any nodes not mentioned by an alias */ 279a53f4a29SSimon Glass for (i = j = 0; i < maxcount; i++) { 280a53f4a29SSimon Glass if (!node_list[i]) { 281a53f4a29SSimon Glass for (; j < maxcount; j++) 282a53f4a29SSimon Glass if (nodes[j] && 283a53f4a29SSimon Glass fdtdec_get_is_enabled(blob, nodes[j])) 284a53f4a29SSimon Glass break; 285a53f4a29SSimon Glass 286a53f4a29SSimon Glass /* Have we run out of nodes to add? */ 287a53f4a29SSimon Glass if (j == maxcount) 288a53f4a29SSimon Glass break; 289a53f4a29SSimon Glass 290a53f4a29SSimon Glass assert(!node_list[i]); 291a53f4a29SSimon Glass node_list[i] = nodes[j++]; 292a53f4a29SSimon Glass if (i >= num_found) 293a53f4a29SSimon Glass num_found = i + 1; 294a53f4a29SSimon Glass } 295a53f4a29SSimon Glass } 296a53f4a29SSimon Glass 297a53f4a29SSimon Glass return num_found; 298a53f4a29SSimon Glass } 299a53f4a29SSimon Glass 3009a263e55SSimon Glass int fdtdec_check_fdt(void) 3019a263e55SSimon Glass { 3029a263e55SSimon Glass /* 3039a263e55SSimon Glass * We must have an FDT, but we cannot panic() yet since the console 3049a263e55SSimon Glass * is not ready. So for now, just assert(). Boards which need an early 3059a263e55SSimon Glass * FDT (prior to console ready) will need to make their own 3069a263e55SSimon Glass * arrangements and do their own checks. 3079a263e55SSimon Glass */ 3089a263e55SSimon Glass assert(!fdtdec_prepare_fdt()); 3099a263e55SSimon Glass return 0; 3109a263e55SSimon Glass } 3119a263e55SSimon Glass 312b5220bc6SSimon Glass /* 313b5220bc6SSimon Glass * This function is a little odd in that it accesses global data. At some 314b5220bc6SSimon Glass * point if the architecture board.c files merge this will make more sense. 315b5220bc6SSimon Glass * Even now, it is common code. 316b5220bc6SSimon Glass */ 3179a263e55SSimon Glass int fdtdec_prepare_fdt(void) 318b5220bc6SSimon Glass { 3199a263e55SSimon Glass if (((uintptr_t)gd->fdt_blob & 3) || fdt_check_header(gd->fdt_blob)) { 3209a263e55SSimon Glass printf("No valid FDT found - please append one to U-Boot " 3219a263e55SSimon Glass "binary, use u-boot-dtb.bin or define " 3229a263e55SSimon Glass "CONFIG_OF_EMBED\n"); 3239a263e55SSimon Glass return -1; 3249a263e55SSimon Glass } 325b5220bc6SSimon Glass return 0; 326b5220bc6SSimon Glass } 327d17da655SSimon Glass 328d17da655SSimon Glass int fdtdec_lookup_phandle(const void *blob, int node, const char *prop_name) 329d17da655SSimon Glass { 330d17da655SSimon Glass const u32 *phandle; 331d17da655SSimon Glass int lookup; 332d17da655SSimon Glass 3331cb2323bSSimon Glass debug("%s: %s\n", __func__, prop_name); 334d17da655SSimon Glass phandle = fdt_getprop(blob, node, prop_name, NULL); 335d17da655SSimon Glass if (!phandle) 336d17da655SSimon Glass return -FDT_ERR_NOTFOUND; 337d17da655SSimon Glass 338d17da655SSimon Glass lookup = fdt_node_offset_by_phandle(blob, fdt32_to_cpu(*phandle)); 339d17da655SSimon Glass return lookup; 340d17da655SSimon Glass } 341d17da655SSimon Glass 342d17da655SSimon Glass /** 343d17da655SSimon Glass * Look up a property in a node and check that it has a minimum length. 344d17da655SSimon Glass * 345d17da655SSimon Glass * @param blob FDT blob 346d17da655SSimon Glass * @param node node to examine 347d17da655SSimon Glass * @param prop_name name of property to find 348d17da655SSimon Glass * @param min_len minimum property length in bytes 349d17da655SSimon Glass * @param err 0 if ok, or -FDT_ERR_NOTFOUND if the property is not 350d17da655SSimon Glass found, or -FDT_ERR_BADLAYOUT if not enough data 351d17da655SSimon Glass * @return pointer to cell, which is only valid if err == 0 352d17da655SSimon Glass */ 353d17da655SSimon Glass static const void *get_prop_check_min_len(const void *blob, int node, 354d17da655SSimon Glass const char *prop_name, int min_len, int *err) 355d17da655SSimon Glass { 356d17da655SSimon Glass const void *cell; 357d17da655SSimon Glass int len; 358d17da655SSimon Glass 359d17da655SSimon Glass debug("%s: %s\n", __func__, prop_name); 360d17da655SSimon Glass cell = fdt_getprop(blob, node, prop_name, &len); 361d17da655SSimon Glass if (!cell) 362d17da655SSimon Glass *err = -FDT_ERR_NOTFOUND; 363d17da655SSimon Glass else if (len < min_len) 364d17da655SSimon Glass *err = -FDT_ERR_BADLAYOUT; 365d17da655SSimon Glass else 366d17da655SSimon Glass *err = 0; 367d17da655SSimon Glass return cell; 368d17da655SSimon Glass } 369d17da655SSimon Glass 370d17da655SSimon Glass int fdtdec_get_int_array(const void *blob, int node, const char *prop_name, 371d17da655SSimon Glass u32 *array, int count) 372d17da655SSimon Glass { 373d17da655SSimon Glass const u32 *cell; 374d17da655SSimon Glass int i, err = 0; 375d17da655SSimon Glass 376d17da655SSimon Glass debug("%s: %s\n", __func__, prop_name); 377d17da655SSimon Glass cell = get_prop_check_min_len(blob, node, prop_name, 378d17da655SSimon Glass sizeof(u32) * count, &err); 379d17da655SSimon Glass if (!err) { 380d17da655SSimon Glass for (i = 0; i < count; i++) 381d17da655SSimon Glass array[i] = fdt32_to_cpu(cell[i]); 382d17da655SSimon Glass } 383d17da655SSimon Glass return err; 384d17da655SSimon Glass } 385d17da655SSimon Glass 38696875e7dSSimon Glass const u32 *fdtdec_locate_array(const void *blob, int node, 38796875e7dSSimon Glass const char *prop_name, int count) 38896875e7dSSimon Glass { 38996875e7dSSimon Glass const u32 *cell; 39096875e7dSSimon Glass int err; 39196875e7dSSimon Glass 39296875e7dSSimon Glass cell = get_prop_check_min_len(blob, node, prop_name, 39396875e7dSSimon Glass sizeof(u32) * count, &err); 39496875e7dSSimon Glass return err ? NULL : cell; 39596875e7dSSimon Glass } 39696875e7dSSimon Glass 397d17da655SSimon Glass int fdtdec_get_bool(const void *blob, int node, const char *prop_name) 398d17da655SSimon Glass { 399d17da655SSimon Glass const s32 *cell; 400d17da655SSimon Glass int len; 401d17da655SSimon Glass 402d17da655SSimon Glass debug("%s: %s\n", __func__, prop_name); 403d17da655SSimon Glass cell = fdt_getprop(blob, node, prop_name, &len); 404d17da655SSimon Glass return cell != NULL; 405d17da655SSimon Glass } 406ed3ee5cdSSimon Glass 407ed3ee5cdSSimon Glass /** 408ed3ee5cdSSimon Glass * Decode a list of GPIOs from an FDT. This creates a list of GPIOs with no 409ed3ee5cdSSimon Glass * terminating item. 410ed3ee5cdSSimon Glass * 411ed3ee5cdSSimon Glass * @param blob FDT blob to use 412ed3ee5cdSSimon Glass * @param node Node to look at 413ed3ee5cdSSimon Glass * @param prop_name Node property name 414ed3ee5cdSSimon Glass * @param gpio Array of gpio elements to fill from FDT. This will be 415ed3ee5cdSSimon Glass * untouched if either 0 or an error is returned 416ed3ee5cdSSimon Glass * @param max_count Maximum number of elements allowed 417ed3ee5cdSSimon Glass * @return number of GPIOs read if ok, -FDT_ERR_BADLAYOUT if max_count would 418ed3ee5cdSSimon Glass * be exceeded, or -FDT_ERR_NOTFOUND if the property is missing. 419ed3ee5cdSSimon Glass */ 4205921f6a2SAbhilash Kesavan int fdtdec_decode_gpios(const void *blob, int node, const char *prop_name, 4215921f6a2SAbhilash Kesavan struct fdt_gpio_state *gpio, int max_count) 422ed3ee5cdSSimon Glass { 423ed3ee5cdSSimon Glass const struct fdt_property *prop; 424ed3ee5cdSSimon Glass const u32 *cell; 425ed3ee5cdSSimon Glass const char *name; 426ed3ee5cdSSimon Glass int len, i; 427ed3ee5cdSSimon Glass 428ed3ee5cdSSimon Glass debug("%s: %s\n", __func__, prop_name); 429ed3ee5cdSSimon Glass assert(max_count > 0); 430ed3ee5cdSSimon Glass prop = fdt_get_property(blob, node, prop_name, &len); 431ed3ee5cdSSimon Glass if (!prop) { 4321cb2323bSSimon Glass debug("%s: property '%s' missing\n", __func__, prop_name); 433ed3ee5cdSSimon Glass return -FDT_ERR_NOTFOUND; 434ed3ee5cdSSimon Glass } 435ed3ee5cdSSimon Glass 436ed3ee5cdSSimon Glass /* We will use the name to tag the GPIO */ 437ed3ee5cdSSimon Glass name = fdt_string(blob, fdt32_to_cpu(prop->nameoff)); 438ed3ee5cdSSimon Glass cell = (u32 *)prop->data; 439ed3ee5cdSSimon Glass len /= sizeof(u32) * 3; /* 3 cells per GPIO record */ 440ed3ee5cdSSimon Glass if (len > max_count) { 4411cb2323bSSimon Glass debug(" %s: too many GPIOs / cells for " 442ed3ee5cdSSimon Glass "property '%s'\n", __func__, prop_name); 443ed3ee5cdSSimon Glass return -FDT_ERR_BADLAYOUT; 444ed3ee5cdSSimon Glass } 445ed3ee5cdSSimon Glass 446ed3ee5cdSSimon Glass /* Read out the GPIO data from the cells */ 447ed3ee5cdSSimon Glass for (i = 0; i < len; i++, cell += 3) { 448ed3ee5cdSSimon Glass gpio[i].gpio = fdt32_to_cpu(cell[1]); 449ed3ee5cdSSimon Glass gpio[i].flags = fdt32_to_cpu(cell[2]); 450ed3ee5cdSSimon Glass gpio[i].name = name; 451ed3ee5cdSSimon Glass } 452ed3ee5cdSSimon Glass 453ed3ee5cdSSimon Glass return len; 454ed3ee5cdSSimon Glass } 455ed3ee5cdSSimon Glass 456ed3ee5cdSSimon Glass int fdtdec_decode_gpio(const void *blob, int node, const char *prop_name, 457ed3ee5cdSSimon Glass struct fdt_gpio_state *gpio) 458ed3ee5cdSSimon Glass { 459ed3ee5cdSSimon Glass int err; 460ed3ee5cdSSimon Glass 461ed3ee5cdSSimon Glass debug("%s: %s\n", __func__, prop_name); 462ed3ee5cdSSimon Glass gpio->gpio = FDT_GPIO_NONE; 463ed3ee5cdSSimon Glass gpio->name = NULL; 464ed3ee5cdSSimon Glass err = fdtdec_decode_gpios(blob, node, prop_name, gpio, 1); 465ed3ee5cdSSimon Glass return err == 1 ? 0 : err; 466ed3ee5cdSSimon Glass } 467ed3ee5cdSSimon Glass 468202ff753SSean Paul int fdtdec_get_gpio(struct fdt_gpio_state *gpio) 469202ff753SSean Paul { 470202ff753SSean Paul int val; 471202ff753SSean Paul 472202ff753SSean Paul if (!fdt_gpio_isvalid(gpio)) 473202ff753SSean Paul return -1; 474202ff753SSean Paul 475202ff753SSean Paul val = gpio_get_value(gpio->gpio); 476202ff753SSean Paul return gpio->flags & FDT_GPIO_ACTIVE_LOW ? val ^ 1 : val; 477202ff753SSean Paul } 478202ff753SSean Paul 479202ff753SSean Paul int fdtdec_set_gpio(struct fdt_gpio_state *gpio, int val) 480202ff753SSean Paul { 481202ff753SSean Paul if (!fdt_gpio_isvalid(gpio)) 482202ff753SSean Paul return -1; 483202ff753SSean Paul 484202ff753SSean Paul val = gpio->flags & FDT_GPIO_ACTIVE_LOW ? val ^ 1 : val; 485202ff753SSean Paul return gpio_set_value(gpio->gpio, val); 486202ff753SSean Paul } 487202ff753SSean Paul 488ed3ee5cdSSimon Glass int fdtdec_setup_gpio(struct fdt_gpio_state *gpio) 489ed3ee5cdSSimon Glass { 490ed3ee5cdSSimon Glass /* 491ed3ee5cdSSimon Glass * Return success if there is no GPIO defined. This is used for 492ed3ee5cdSSimon Glass * optional GPIOs) 493ed3ee5cdSSimon Glass */ 494ed3ee5cdSSimon Glass if (!fdt_gpio_isvalid(gpio)) 495ed3ee5cdSSimon Glass return 0; 496ed3ee5cdSSimon Glass 497ed3ee5cdSSimon Glass if (gpio_request(gpio->gpio, gpio->name)) 498ed3ee5cdSSimon Glass return -1; 499ed3ee5cdSSimon Glass return 0; 500ed3ee5cdSSimon Glass } 501bed4d892SAnton Staff 502bed4d892SAnton Staff int fdtdec_get_byte_array(const void *blob, int node, const char *prop_name, 503bed4d892SAnton Staff u8 *array, int count) 504bed4d892SAnton Staff { 505bed4d892SAnton Staff const u8 *cell; 506bed4d892SAnton Staff int err; 507bed4d892SAnton Staff 508bed4d892SAnton Staff cell = get_prop_check_min_len(blob, node, prop_name, count, &err); 509bed4d892SAnton Staff if (!err) 510bed4d892SAnton Staff memcpy(array, cell, count); 511bed4d892SAnton Staff return err; 512bed4d892SAnton Staff } 513bed4d892SAnton Staff 514bed4d892SAnton Staff const u8 *fdtdec_locate_byte_array(const void *blob, int node, 515bed4d892SAnton Staff const char *prop_name, int count) 516bed4d892SAnton Staff { 517bed4d892SAnton Staff const u8 *cell; 518bed4d892SAnton Staff int err; 519bed4d892SAnton Staff 520bed4d892SAnton Staff cell = get_prop_check_min_len(blob, node, prop_name, count, &err); 521bed4d892SAnton Staff if (err) 522bed4d892SAnton Staff return NULL; 523bed4d892SAnton Staff return cell; 524bed4d892SAnton Staff } 52509258f1eSAbhilash Kesavan 52609258f1eSAbhilash Kesavan int fdtdec_get_config_int(const void *blob, const char *prop_name, 52709258f1eSAbhilash Kesavan int default_val) 52809258f1eSAbhilash Kesavan { 52909258f1eSAbhilash Kesavan int config_node; 53009258f1eSAbhilash Kesavan 53109258f1eSAbhilash Kesavan debug("%s: %s\n", __func__, prop_name); 53209258f1eSAbhilash Kesavan config_node = fdt_path_offset(blob, "/config"); 53309258f1eSAbhilash Kesavan if (config_node < 0) 53409258f1eSAbhilash Kesavan return default_val; 53509258f1eSAbhilash Kesavan return fdtdec_get_int(blob, config_node, prop_name, default_val); 53609258f1eSAbhilash Kesavan } 537332ab0d5SSimon Glass 53879289c0bSGabe Black int fdtdec_get_config_bool(const void *blob, const char *prop_name) 53979289c0bSGabe Black { 54079289c0bSGabe Black int config_node; 54179289c0bSGabe Black const void *prop; 54279289c0bSGabe Black 54379289c0bSGabe Black debug("%s: %s\n", __func__, prop_name); 54479289c0bSGabe Black config_node = fdt_path_offset(blob, "/config"); 54579289c0bSGabe Black if (config_node < 0) 54679289c0bSGabe Black return 0; 54779289c0bSGabe Black prop = fdt_get_property(blob, config_node, prop_name, NULL); 54879289c0bSGabe Black 54979289c0bSGabe Black return prop != NULL; 55079289c0bSGabe Black } 55179289c0bSGabe Black 552332ab0d5SSimon Glass char *fdtdec_get_config_string(const void *blob, const char *prop_name) 553332ab0d5SSimon Glass { 554332ab0d5SSimon Glass const char *nodep; 555332ab0d5SSimon Glass int nodeoffset; 556332ab0d5SSimon Glass int len; 557332ab0d5SSimon Glass 558332ab0d5SSimon Glass debug("%s: %s\n", __func__, prop_name); 559332ab0d5SSimon Glass nodeoffset = fdt_path_offset(blob, "/config"); 560332ab0d5SSimon Glass if (nodeoffset < 0) 561332ab0d5SSimon Glass return NULL; 562332ab0d5SSimon Glass 563332ab0d5SSimon Glass nodep = fdt_getprop(blob, nodeoffset, prop_name, &len); 564332ab0d5SSimon Glass if (!nodep) 565332ab0d5SSimon Glass return NULL; 566332ab0d5SSimon Glass 567332ab0d5SSimon Glass return (char *)nodep; 568332ab0d5SSimon Glass } 569f20c4619SSimon Glass 570f20c4619SSimon Glass int fdtdec_decode_region(const void *blob, int node, 571f20c4619SSimon Glass const char *prop_name, void **ptrp, size_t *size) 572f20c4619SSimon Glass { 573f20c4619SSimon Glass const fdt_addr_t *cell; 574f20c4619SSimon Glass int len; 575f20c4619SSimon Glass 576f20c4619SSimon Glass debug("%s: %s\n", __func__, prop_name); 577f20c4619SSimon Glass cell = fdt_getprop(blob, node, prop_name, &len); 578f20c4619SSimon Glass if (!cell || (len != sizeof(fdt_addr_t) * 2)) 579f20c4619SSimon Glass return -1; 580f20c4619SSimon Glass 581f20c4619SSimon Glass *ptrp = (void *)fdt_addr_to_cpu(*cell); 582f20c4619SSimon Glass *size = fdt_size_to_cpu(cell[1]); 583f20c4619SSimon Glass debug("%s: size=%zx\n", __func__, *size); 584f20c4619SSimon Glass return 0; 585f20c4619SSimon Glass } 586