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 27ed3ee5cdSSimon Glass /* we need the generic GPIO interface here */ 28ed3ee5cdSSimon Glass #include <asm-generic/gpio.h> 29ed3ee5cdSSimon Glass 30b5220bc6SSimon Glass DECLARE_GLOBAL_DATA_PTR; 31b5220bc6SSimon Glass 32b5220bc6SSimon Glass /* 33b5220bc6SSimon Glass * Here are the type we know about. One day we might allow drivers to 34b5220bc6SSimon Glass * register. For now we just put them here. The COMPAT macro allows us to 35b5220bc6SSimon Glass * turn this into a sparse list later, and keeps the ID with the name. 36b5220bc6SSimon Glass */ 37b5220bc6SSimon Glass #define COMPAT(id, name) name 38b5220bc6SSimon Glass static const char * const compat_names[COMPAT_COUNT] = { 39f88fe2deSSimon Glass COMPAT(UNKNOWN, "<none>"), 4087f938c9SSimon Glass COMPAT(NVIDIA_TEGRA20_USB, "nvidia,tegra20-ehci"), 4196a78ac0SYen Lin COMPAT(NVIDIA_TEGRA20_I2C, "nvidia,tegra20-i2c"), 4296a78ac0SYen Lin COMPAT(NVIDIA_TEGRA20_DVC, "nvidia,tegra20-i2c-dvc"), 43b5220bc6SSimon Glass }; 44b5220bc6SSimon Glass 45a53f4a29SSimon Glass const char *fdtdec_get_compatible(enum fdt_compat_id id) 46a53f4a29SSimon Glass { 47a53f4a29SSimon Glass /* We allow reading of the 'unknown' ID for testing purposes */ 48a53f4a29SSimon Glass assert(id >= 0 && id < COMPAT_COUNT); 49a53f4a29SSimon Glass return compat_names[id]; 50a53f4a29SSimon Glass } 51a53f4a29SSimon Glass 52b5220bc6SSimon Glass /** 53b5220bc6SSimon Glass * Look in the FDT for an alias with the given name and return its node. 54b5220bc6SSimon Glass * 55b5220bc6SSimon Glass * @param blob FDT blob 56b5220bc6SSimon Glass * @param name alias name to look up 57b5220bc6SSimon Glass * @return node offset if found, or an error code < 0 otherwise 58b5220bc6SSimon Glass */ 59b5220bc6SSimon Glass static int find_alias_node(const void *blob, const char *name) 60b5220bc6SSimon Glass { 61b5220bc6SSimon Glass const char *path; 62b5220bc6SSimon Glass int alias_node; 63b5220bc6SSimon Glass 64b5220bc6SSimon Glass debug("find_alias_node: %s\n", name); 65b5220bc6SSimon Glass alias_node = fdt_path_offset(blob, "/aliases"); 66b5220bc6SSimon Glass if (alias_node < 0) 67b5220bc6SSimon Glass return alias_node; 68b5220bc6SSimon Glass path = fdt_getprop(blob, alias_node, name, NULL); 69b5220bc6SSimon Glass if (!path) 70b5220bc6SSimon Glass return -FDT_ERR_NOTFOUND; 71b5220bc6SSimon Glass return fdt_path_offset(blob, path); 72b5220bc6SSimon Glass } 73b5220bc6SSimon Glass 74b5220bc6SSimon Glass fdt_addr_t fdtdec_get_addr(const void *blob, int node, 75b5220bc6SSimon Glass const char *prop_name) 76b5220bc6SSimon Glass { 77b5220bc6SSimon Glass const fdt_addr_t *cell; 78b5220bc6SSimon Glass int len; 79b5220bc6SSimon Glass 80b5220bc6SSimon Glass debug("get_addr: %s\n", prop_name); 81b5220bc6SSimon Glass cell = fdt_getprop(blob, node, prop_name, &len); 82b5220bc6SSimon Glass if (cell && (len == sizeof(fdt_addr_t) || 83b5220bc6SSimon Glass len == sizeof(fdt_addr_t) * 2)) 84b5220bc6SSimon Glass return fdt_addr_to_cpu(*cell); 85b5220bc6SSimon Glass return FDT_ADDR_T_NONE; 86b5220bc6SSimon Glass } 87b5220bc6SSimon Glass 88b5220bc6SSimon Glass s32 fdtdec_get_int(const void *blob, int node, const char *prop_name, 89b5220bc6SSimon Glass s32 default_val) 90b5220bc6SSimon Glass { 91b5220bc6SSimon Glass const s32 *cell; 92b5220bc6SSimon Glass int len; 93b5220bc6SSimon Glass 94b5220bc6SSimon Glass debug("get_size: %s\n", prop_name); 95b5220bc6SSimon Glass cell = fdt_getprop(blob, node, prop_name, &len); 96b5220bc6SSimon Glass if (cell && len >= sizeof(s32)) 97b5220bc6SSimon Glass return fdt32_to_cpu(cell[0]); 98b5220bc6SSimon Glass return default_val; 99b5220bc6SSimon Glass } 100b5220bc6SSimon Glass 101f88fe2deSSimon Glass int fdtdec_get_is_enabled(const void *blob, int node) 102b5220bc6SSimon Glass { 103b5220bc6SSimon Glass const char *cell; 104b5220bc6SSimon Glass 105f88fe2deSSimon Glass /* 106f88fe2deSSimon Glass * It should say "okay", so only allow that. Some fdts use "ok" but 107f88fe2deSSimon Glass * this is a bug. Please fix your device tree source file. See here 108f88fe2deSSimon Glass * for discussion: 109f88fe2deSSimon Glass * 110f88fe2deSSimon Glass * http://www.mail-archive.com/u-boot@lists.denx.de/msg71598.html 111f88fe2deSSimon Glass */ 112b5220bc6SSimon Glass cell = fdt_getprop(blob, node, "status", NULL); 113b5220bc6SSimon Glass if (cell) 114f88fe2deSSimon Glass return 0 == strcmp(cell, "okay"); 115f88fe2deSSimon Glass return 1; 116b5220bc6SSimon Glass } 117b5220bc6SSimon Glass 118b5220bc6SSimon Glass enum fdt_compat_id fd_dec_lookup(const void *blob, int node) 119b5220bc6SSimon Glass { 120b5220bc6SSimon Glass enum fdt_compat_id id; 121b5220bc6SSimon Glass 122b5220bc6SSimon Glass /* Search our drivers */ 123b5220bc6SSimon Glass for (id = COMPAT_UNKNOWN; id < COMPAT_COUNT; id++) 124b5220bc6SSimon Glass if (0 == fdt_node_check_compatible(blob, node, 125b5220bc6SSimon Glass compat_names[id])) 126b5220bc6SSimon Glass return id; 127b5220bc6SSimon Glass return COMPAT_UNKNOWN; 128b5220bc6SSimon Glass } 129b5220bc6SSimon Glass 130b5220bc6SSimon Glass int fdtdec_next_compatible(const void *blob, int node, 131b5220bc6SSimon Glass enum fdt_compat_id id) 132b5220bc6SSimon Glass { 133b5220bc6SSimon Glass return fdt_node_offset_by_compatible(blob, node, compat_names[id]); 134b5220bc6SSimon Glass } 135b5220bc6SSimon Glass 136*3ddecfc7SSimon Glass int fdtdec_next_compatible_subnode(const void *blob, int node, 137*3ddecfc7SSimon Glass enum fdt_compat_id id, int *depthp) 138*3ddecfc7SSimon Glass { 139*3ddecfc7SSimon Glass do { 140*3ddecfc7SSimon Glass node = fdt_next_node(blob, node, depthp); 141*3ddecfc7SSimon Glass } while (*depthp > 1); 142*3ddecfc7SSimon Glass 143*3ddecfc7SSimon Glass /* If this is a direct subnode, and compatible, return it */ 144*3ddecfc7SSimon Glass if (*depthp == 1 && 0 == fdt_node_check_compatible( 145*3ddecfc7SSimon Glass blob, node, compat_names[id])) 146*3ddecfc7SSimon Glass return node; 147*3ddecfc7SSimon Glass 148*3ddecfc7SSimon Glass return -FDT_ERR_NOTFOUND; 149*3ddecfc7SSimon Glass } 150*3ddecfc7SSimon Glass 151b5220bc6SSimon Glass int fdtdec_next_alias(const void *blob, const char *name, 152b5220bc6SSimon Glass enum fdt_compat_id id, int *upto) 153b5220bc6SSimon Glass { 154b5220bc6SSimon Glass #define MAX_STR_LEN 20 155b5220bc6SSimon Glass char str[MAX_STR_LEN + 20]; 156b5220bc6SSimon Glass int node, err; 157b5220bc6SSimon Glass 158b5220bc6SSimon Glass /* snprintf() is not available */ 159b5220bc6SSimon Glass assert(strlen(name) < MAX_STR_LEN); 160b5220bc6SSimon Glass sprintf(str, "%.*s%d", MAX_STR_LEN, name, *upto); 161b5220bc6SSimon Glass node = find_alias_node(blob, str); 162b5220bc6SSimon Glass if (node < 0) 163b5220bc6SSimon Glass return node; 164b5220bc6SSimon Glass err = fdt_node_check_compatible(blob, node, compat_names[id]); 165b5220bc6SSimon Glass if (err < 0) 166b5220bc6SSimon Glass return err; 167f88fe2deSSimon Glass if (err) 168f88fe2deSSimon Glass return -FDT_ERR_NOTFOUND; 169f88fe2deSSimon Glass (*upto)++; 170f88fe2deSSimon Glass return node; 171b5220bc6SSimon Glass } 172b5220bc6SSimon Glass 173a53f4a29SSimon Glass int fdtdec_find_aliases_for_id(const void *blob, const char *name, 174a53f4a29SSimon Glass enum fdt_compat_id id, int *node_list, int maxcount) 175a53f4a29SSimon Glass { 176c6782270SSimon Glass memset(node_list, '\0', sizeof(*node_list) * maxcount); 177c6782270SSimon Glass 178c6782270SSimon Glass return fdtdec_add_aliases_for_id(blob, name, id, node_list, maxcount); 179c6782270SSimon Glass } 180c6782270SSimon Glass 181c6782270SSimon Glass /* TODO: Can we tighten this code up a little? */ 182c6782270SSimon Glass int fdtdec_add_aliases_for_id(const void *blob, const char *name, 183c6782270SSimon Glass enum fdt_compat_id id, int *node_list, int maxcount) 184c6782270SSimon Glass { 185a53f4a29SSimon Glass int name_len = strlen(name); 186a53f4a29SSimon Glass int nodes[maxcount]; 187a53f4a29SSimon Glass int num_found = 0; 188a53f4a29SSimon Glass int offset, node; 189a53f4a29SSimon Glass int alias_node; 190a53f4a29SSimon Glass int count; 191a53f4a29SSimon Glass int i, j; 192a53f4a29SSimon Glass 193a53f4a29SSimon Glass /* find the alias node if present */ 194a53f4a29SSimon Glass alias_node = fdt_path_offset(blob, "/aliases"); 195a53f4a29SSimon Glass 196a53f4a29SSimon Glass /* 197a53f4a29SSimon Glass * start with nothing, and we can assume that the root node can't 198a53f4a29SSimon Glass * match 199a53f4a29SSimon Glass */ 200a53f4a29SSimon Glass memset(nodes, '\0', sizeof(nodes)); 201a53f4a29SSimon Glass 202a53f4a29SSimon Glass /* First find all the compatible nodes */ 203a53f4a29SSimon Glass for (node = count = 0; node >= 0 && count < maxcount;) { 204a53f4a29SSimon Glass node = fdtdec_next_compatible(blob, node, id); 205a53f4a29SSimon Glass if (node >= 0) 206a53f4a29SSimon Glass nodes[count++] = node; 207a53f4a29SSimon Glass } 208a53f4a29SSimon Glass if (node >= 0) 209a53f4a29SSimon Glass debug("%s: warning: maxcount exceeded with alias '%s'\n", 210a53f4a29SSimon Glass __func__, name); 211a53f4a29SSimon Glass 212a53f4a29SSimon Glass /* Now find all the aliases */ 213a53f4a29SSimon Glass for (offset = fdt_first_property_offset(blob, alias_node); 214a53f4a29SSimon Glass offset > 0; 215a53f4a29SSimon Glass offset = fdt_next_property_offset(blob, offset)) { 216a53f4a29SSimon Glass const struct fdt_property *prop; 217a53f4a29SSimon Glass const char *path; 218a53f4a29SSimon Glass int number; 219a53f4a29SSimon Glass int found; 220a53f4a29SSimon Glass 221a53f4a29SSimon Glass node = 0; 222a53f4a29SSimon Glass prop = fdt_get_property_by_offset(blob, offset, NULL); 223a53f4a29SSimon Glass path = fdt_string(blob, fdt32_to_cpu(prop->nameoff)); 224a53f4a29SSimon Glass if (prop->len && 0 == strncmp(path, name, name_len)) 225a53f4a29SSimon Glass node = fdt_path_offset(blob, prop->data); 226a53f4a29SSimon Glass if (node <= 0) 227a53f4a29SSimon Glass continue; 228a53f4a29SSimon Glass 229a53f4a29SSimon Glass /* Get the alias number */ 230a53f4a29SSimon Glass number = simple_strtoul(path + name_len, NULL, 10); 231a53f4a29SSimon Glass if (number < 0 || number >= maxcount) { 232a53f4a29SSimon Glass debug("%s: warning: alias '%s' is out of range\n", 233a53f4a29SSimon Glass __func__, path); 234a53f4a29SSimon Glass continue; 235a53f4a29SSimon Glass } 236a53f4a29SSimon Glass 237a53f4a29SSimon Glass /* Make sure the node we found is actually in our list! */ 238a53f4a29SSimon Glass found = -1; 239a53f4a29SSimon Glass for (j = 0; j < count; j++) 240a53f4a29SSimon Glass if (nodes[j] == node) { 241a53f4a29SSimon Glass found = j; 242a53f4a29SSimon Glass break; 243a53f4a29SSimon Glass } 244a53f4a29SSimon Glass 245a53f4a29SSimon Glass if (found == -1) { 246a53f4a29SSimon Glass debug("%s: warning: alias '%s' points to a node " 247a53f4a29SSimon Glass "'%s' that is missing or is not compatible " 248a53f4a29SSimon Glass " with '%s'\n", __func__, path, 249a53f4a29SSimon Glass fdt_get_name(blob, node, NULL), 250a53f4a29SSimon Glass compat_names[id]); 251a53f4a29SSimon Glass continue; 252a53f4a29SSimon Glass } 253a53f4a29SSimon Glass 254a53f4a29SSimon Glass /* 255a53f4a29SSimon Glass * Add this node to our list in the right place, and mark 256a53f4a29SSimon Glass * it as done. 257a53f4a29SSimon Glass */ 258a53f4a29SSimon Glass if (fdtdec_get_is_enabled(blob, node)) { 259c6782270SSimon Glass if (node_list[number]) { 260c6782270SSimon Glass debug("%s: warning: alias '%s' requires that " 261c6782270SSimon Glass "a node be placed in the list in a " 262c6782270SSimon Glass "position which is already filled by " 263c6782270SSimon Glass "node '%s'\n", __func__, path, 264c6782270SSimon Glass fdt_get_name(blob, node, NULL)); 265c6782270SSimon Glass continue; 266c6782270SSimon Glass } 267a53f4a29SSimon Glass node_list[number] = node; 268a53f4a29SSimon Glass if (number >= num_found) 269a53f4a29SSimon Glass num_found = number + 1; 270a53f4a29SSimon Glass } 271c6782270SSimon Glass nodes[found] = 0; 272a53f4a29SSimon Glass } 273a53f4a29SSimon Glass 274a53f4a29SSimon Glass /* Add any nodes not mentioned by an alias */ 275a53f4a29SSimon Glass for (i = j = 0; i < maxcount; i++) { 276a53f4a29SSimon Glass if (!node_list[i]) { 277a53f4a29SSimon Glass for (; j < maxcount; j++) 278a53f4a29SSimon Glass if (nodes[j] && 279a53f4a29SSimon Glass fdtdec_get_is_enabled(blob, nodes[j])) 280a53f4a29SSimon Glass break; 281a53f4a29SSimon Glass 282a53f4a29SSimon Glass /* Have we run out of nodes to add? */ 283a53f4a29SSimon Glass if (j == maxcount) 284a53f4a29SSimon Glass break; 285a53f4a29SSimon Glass 286a53f4a29SSimon Glass assert(!node_list[i]); 287a53f4a29SSimon Glass node_list[i] = nodes[j++]; 288a53f4a29SSimon Glass if (i >= num_found) 289a53f4a29SSimon Glass num_found = i + 1; 290a53f4a29SSimon Glass } 291a53f4a29SSimon Glass } 292a53f4a29SSimon Glass 293a53f4a29SSimon Glass return num_found; 294a53f4a29SSimon Glass } 295a53f4a29SSimon Glass 2969a263e55SSimon Glass int fdtdec_check_fdt(void) 2979a263e55SSimon Glass { 2989a263e55SSimon Glass /* 2999a263e55SSimon Glass * We must have an FDT, but we cannot panic() yet since the console 3009a263e55SSimon Glass * is not ready. So for now, just assert(). Boards which need an early 3019a263e55SSimon Glass * FDT (prior to console ready) will need to make their own 3029a263e55SSimon Glass * arrangements and do their own checks. 3039a263e55SSimon Glass */ 3049a263e55SSimon Glass assert(!fdtdec_prepare_fdt()); 3059a263e55SSimon Glass return 0; 3069a263e55SSimon Glass } 3079a263e55SSimon Glass 308b5220bc6SSimon Glass /* 309b5220bc6SSimon Glass * This function is a little odd in that it accesses global data. At some 310b5220bc6SSimon Glass * point if the architecture board.c files merge this will make more sense. 311b5220bc6SSimon Glass * Even now, it is common code. 312b5220bc6SSimon Glass */ 3139a263e55SSimon Glass int fdtdec_prepare_fdt(void) 314b5220bc6SSimon Glass { 3159a263e55SSimon Glass if (((uintptr_t)gd->fdt_blob & 3) || fdt_check_header(gd->fdt_blob)) { 3169a263e55SSimon Glass printf("No valid FDT found - please append one to U-Boot " 3179a263e55SSimon Glass "binary, use u-boot-dtb.bin or define " 3189a263e55SSimon Glass "CONFIG_OF_EMBED\n"); 3199a263e55SSimon Glass return -1; 3209a263e55SSimon Glass } 321b5220bc6SSimon Glass return 0; 322b5220bc6SSimon Glass } 323d17da655SSimon Glass 324d17da655SSimon Glass int fdtdec_lookup_phandle(const void *blob, int node, const char *prop_name) 325d17da655SSimon Glass { 326d17da655SSimon Glass const u32 *phandle; 327d17da655SSimon Glass int lookup; 328d17da655SSimon Glass 329d17da655SSimon Glass phandle = fdt_getprop(blob, node, prop_name, NULL); 330d17da655SSimon Glass if (!phandle) 331d17da655SSimon Glass return -FDT_ERR_NOTFOUND; 332d17da655SSimon Glass 333d17da655SSimon Glass lookup = fdt_node_offset_by_phandle(blob, fdt32_to_cpu(*phandle)); 334d17da655SSimon Glass return lookup; 335d17da655SSimon Glass } 336d17da655SSimon Glass 337d17da655SSimon Glass /** 338d17da655SSimon Glass * Look up a property in a node and check that it has a minimum length. 339d17da655SSimon Glass * 340d17da655SSimon Glass * @param blob FDT blob 341d17da655SSimon Glass * @param node node to examine 342d17da655SSimon Glass * @param prop_name name of property to find 343d17da655SSimon Glass * @param min_len minimum property length in bytes 344d17da655SSimon Glass * @param err 0 if ok, or -FDT_ERR_NOTFOUND if the property is not 345d17da655SSimon Glass found, or -FDT_ERR_BADLAYOUT if not enough data 346d17da655SSimon Glass * @return pointer to cell, which is only valid if err == 0 347d17da655SSimon Glass */ 348d17da655SSimon Glass static const void *get_prop_check_min_len(const void *blob, int node, 349d17da655SSimon Glass const char *prop_name, int min_len, int *err) 350d17da655SSimon Glass { 351d17da655SSimon Glass const void *cell; 352d17da655SSimon Glass int len; 353d17da655SSimon Glass 354d17da655SSimon Glass debug("%s: %s\n", __func__, prop_name); 355d17da655SSimon Glass cell = fdt_getprop(blob, node, prop_name, &len); 356d17da655SSimon Glass if (!cell) 357d17da655SSimon Glass *err = -FDT_ERR_NOTFOUND; 358d17da655SSimon Glass else if (len < min_len) 359d17da655SSimon Glass *err = -FDT_ERR_BADLAYOUT; 360d17da655SSimon Glass else 361d17da655SSimon Glass *err = 0; 362d17da655SSimon Glass return cell; 363d17da655SSimon Glass } 364d17da655SSimon Glass 365d17da655SSimon Glass int fdtdec_get_int_array(const void *blob, int node, const char *prop_name, 366d17da655SSimon Glass u32 *array, int count) 367d17da655SSimon Glass { 368d17da655SSimon Glass const u32 *cell; 369d17da655SSimon Glass int i, err = 0; 370d17da655SSimon Glass 371d17da655SSimon Glass debug("%s: %s\n", __func__, prop_name); 372d17da655SSimon Glass cell = get_prop_check_min_len(blob, node, prop_name, 373d17da655SSimon Glass sizeof(u32) * count, &err); 374d17da655SSimon Glass if (!err) { 375d17da655SSimon Glass for (i = 0; i < count; i++) 376d17da655SSimon Glass array[i] = fdt32_to_cpu(cell[i]); 377d17da655SSimon Glass } 378d17da655SSimon Glass return err; 379d17da655SSimon Glass } 380d17da655SSimon Glass 38196875e7dSSimon Glass const u32 *fdtdec_locate_array(const void *blob, int node, 38296875e7dSSimon Glass const char *prop_name, int count) 38396875e7dSSimon Glass { 38496875e7dSSimon Glass const u32 *cell; 38596875e7dSSimon Glass int err; 38696875e7dSSimon Glass 38796875e7dSSimon Glass cell = get_prop_check_min_len(blob, node, prop_name, 38896875e7dSSimon Glass sizeof(u32) * count, &err); 38996875e7dSSimon Glass return err ? NULL : cell; 39096875e7dSSimon Glass } 39196875e7dSSimon Glass 392d17da655SSimon Glass int fdtdec_get_bool(const void *blob, int node, const char *prop_name) 393d17da655SSimon Glass { 394d17da655SSimon Glass const s32 *cell; 395d17da655SSimon Glass int len; 396d17da655SSimon Glass 397d17da655SSimon Glass debug("%s: %s\n", __func__, prop_name); 398d17da655SSimon Glass cell = fdt_getprop(blob, node, prop_name, &len); 399d17da655SSimon Glass return cell != NULL; 400d17da655SSimon Glass } 401ed3ee5cdSSimon Glass 402ed3ee5cdSSimon Glass /** 403ed3ee5cdSSimon Glass * Decode a list of GPIOs from an FDT. This creates a list of GPIOs with no 404ed3ee5cdSSimon Glass * terminating item. 405ed3ee5cdSSimon Glass * 406ed3ee5cdSSimon Glass * @param blob FDT blob to use 407ed3ee5cdSSimon Glass * @param node Node to look at 408ed3ee5cdSSimon Glass * @param prop_name Node property name 409ed3ee5cdSSimon Glass * @param gpio Array of gpio elements to fill from FDT. This will be 410ed3ee5cdSSimon Glass * untouched if either 0 or an error is returned 411ed3ee5cdSSimon Glass * @param max_count Maximum number of elements allowed 412ed3ee5cdSSimon Glass * @return number of GPIOs read if ok, -FDT_ERR_BADLAYOUT if max_count would 413ed3ee5cdSSimon Glass * be exceeded, or -FDT_ERR_NOTFOUND if the property is missing. 414ed3ee5cdSSimon Glass */ 415ed3ee5cdSSimon Glass static int fdtdec_decode_gpios(const void *blob, int node, 416ed3ee5cdSSimon Glass const char *prop_name, struct fdt_gpio_state *gpio, 417ed3ee5cdSSimon Glass int max_count) 418ed3ee5cdSSimon Glass { 419ed3ee5cdSSimon Glass const struct fdt_property *prop; 420ed3ee5cdSSimon Glass const u32 *cell; 421ed3ee5cdSSimon Glass const char *name; 422ed3ee5cdSSimon Glass int len, i; 423ed3ee5cdSSimon Glass 424ed3ee5cdSSimon Glass debug("%s: %s\n", __func__, prop_name); 425ed3ee5cdSSimon Glass assert(max_count > 0); 426ed3ee5cdSSimon Glass prop = fdt_get_property(blob, node, prop_name, &len); 427ed3ee5cdSSimon Glass if (!prop) { 428ed3ee5cdSSimon Glass debug("FDT: %s: property '%s' missing\n", __func__, prop_name); 429ed3ee5cdSSimon Glass return -FDT_ERR_NOTFOUND; 430ed3ee5cdSSimon Glass } 431ed3ee5cdSSimon Glass 432ed3ee5cdSSimon Glass /* We will use the name to tag the GPIO */ 433ed3ee5cdSSimon Glass name = fdt_string(blob, fdt32_to_cpu(prop->nameoff)); 434ed3ee5cdSSimon Glass cell = (u32 *)prop->data; 435ed3ee5cdSSimon Glass len /= sizeof(u32) * 3; /* 3 cells per GPIO record */ 436ed3ee5cdSSimon Glass if (len > max_count) { 437ed3ee5cdSSimon Glass debug("FDT: %s: too many GPIOs / cells for " 438ed3ee5cdSSimon Glass "property '%s'\n", __func__, prop_name); 439ed3ee5cdSSimon Glass return -FDT_ERR_BADLAYOUT; 440ed3ee5cdSSimon Glass } 441ed3ee5cdSSimon Glass 442ed3ee5cdSSimon Glass /* Read out the GPIO data from the cells */ 443ed3ee5cdSSimon Glass for (i = 0; i < len; i++, cell += 3) { 444ed3ee5cdSSimon Glass gpio[i].gpio = fdt32_to_cpu(cell[1]); 445ed3ee5cdSSimon Glass gpio[i].flags = fdt32_to_cpu(cell[2]); 446ed3ee5cdSSimon Glass gpio[i].name = name; 447ed3ee5cdSSimon Glass } 448ed3ee5cdSSimon Glass 449ed3ee5cdSSimon Glass return len; 450ed3ee5cdSSimon Glass } 451ed3ee5cdSSimon Glass 452ed3ee5cdSSimon Glass int fdtdec_decode_gpio(const void *blob, int node, const char *prop_name, 453ed3ee5cdSSimon Glass struct fdt_gpio_state *gpio) 454ed3ee5cdSSimon Glass { 455ed3ee5cdSSimon Glass int err; 456ed3ee5cdSSimon Glass 457ed3ee5cdSSimon Glass debug("%s: %s\n", __func__, prop_name); 458ed3ee5cdSSimon Glass gpio->gpio = FDT_GPIO_NONE; 459ed3ee5cdSSimon Glass gpio->name = NULL; 460ed3ee5cdSSimon Glass err = fdtdec_decode_gpios(blob, node, prop_name, gpio, 1); 461ed3ee5cdSSimon Glass return err == 1 ? 0 : err; 462ed3ee5cdSSimon Glass } 463ed3ee5cdSSimon Glass 464ed3ee5cdSSimon Glass int fdtdec_setup_gpio(struct fdt_gpio_state *gpio) 465ed3ee5cdSSimon Glass { 466ed3ee5cdSSimon Glass /* 467ed3ee5cdSSimon Glass * Return success if there is no GPIO defined. This is used for 468ed3ee5cdSSimon Glass * optional GPIOs) 469ed3ee5cdSSimon Glass */ 470ed3ee5cdSSimon Glass if (!fdt_gpio_isvalid(gpio)) 471ed3ee5cdSSimon Glass return 0; 472ed3ee5cdSSimon Glass 473ed3ee5cdSSimon Glass if (gpio_request(gpio->gpio, gpio->name)) 474ed3ee5cdSSimon Glass return -1; 475ed3ee5cdSSimon Glass return 0; 476ed3ee5cdSSimon Glass } 477