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 27*ed3ee5cdSSimon Glass /* we need the generic GPIO interface here */ 28*ed3ee5cdSSimon Glass #include <asm-generic/gpio.h> 29*ed3ee5cdSSimon 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>"), 40b5220bc6SSimon Glass }; 41b5220bc6SSimon Glass 42a53f4a29SSimon Glass const char *fdtdec_get_compatible(enum fdt_compat_id id) 43a53f4a29SSimon Glass { 44a53f4a29SSimon Glass /* We allow reading of the 'unknown' ID for testing purposes */ 45a53f4a29SSimon Glass assert(id >= 0 && id < COMPAT_COUNT); 46a53f4a29SSimon Glass return compat_names[id]; 47a53f4a29SSimon Glass } 48a53f4a29SSimon Glass 49b5220bc6SSimon Glass /** 50b5220bc6SSimon Glass * Look in the FDT for an alias with the given name and return its node. 51b5220bc6SSimon Glass * 52b5220bc6SSimon Glass * @param blob FDT blob 53b5220bc6SSimon Glass * @param name alias name to look up 54b5220bc6SSimon Glass * @return node offset if found, or an error code < 0 otherwise 55b5220bc6SSimon Glass */ 56b5220bc6SSimon Glass static int find_alias_node(const void *blob, const char *name) 57b5220bc6SSimon Glass { 58b5220bc6SSimon Glass const char *path; 59b5220bc6SSimon Glass int alias_node; 60b5220bc6SSimon Glass 61b5220bc6SSimon Glass debug("find_alias_node: %s\n", name); 62b5220bc6SSimon Glass alias_node = fdt_path_offset(blob, "/aliases"); 63b5220bc6SSimon Glass if (alias_node < 0) 64b5220bc6SSimon Glass return alias_node; 65b5220bc6SSimon Glass path = fdt_getprop(blob, alias_node, name, NULL); 66b5220bc6SSimon Glass if (!path) 67b5220bc6SSimon Glass return -FDT_ERR_NOTFOUND; 68b5220bc6SSimon Glass return fdt_path_offset(blob, path); 69b5220bc6SSimon Glass } 70b5220bc6SSimon Glass 71b5220bc6SSimon Glass fdt_addr_t fdtdec_get_addr(const void *blob, int node, 72b5220bc6SSimon Glass const char *prop_name) 73b5220bc6SSimon Glass { 74b5220bc6SSimon Glass const fdt_addr_t *cell; 75b5220bc6SSimon Glass int len; 76b5220bc6SSimon Glass 77b5220bc6SSimon Glass debug("get_addr: %s\n", prop_name); 78b5220bc6SSimon Glass cell = fdt_getprop(blob, node, prop_name, &len); 79b5220bc6SSimon Glass if (cell && (len == sizeof(fdt_addr_t) || 80b5220bc6SSimon Glass len == sizeof(fdt_addr_t) * 2)) 81b5220bc6SSimon Glass return fdt_addr_to_cpu(*cell); 82b5220bc6SSimon Glass return FDT_ADDR_T_NONE; 83b5220bc6SSimon Glass } 84b5220bc6SSimon Glass 85b5220bc6SSimon Glass s32 fdtdec_get_int(const void *blob, int node, const char *prop_name, 86b5220bc6SSimon Glass s32 default_val) 87b5220bc6SSimon Glass { 88b5220bc6SSimon Glass const s32 *cell; 89b5220bc6SSimon Glass int len; 90b5220bc6SSimon Glass 91b5220bc6SSimon Glass debug("get_size: %s\n", prop_name); 92b5220bc6SSimon Glass cell = fdt_getprop(blob, node, prop_name, &len); 93b5220bc6SSimon Glass if (cell && len >= sizeof(s32)) 94b5220bc6SSimon Glass return fdt32_to_cpu(cell[0]); 95b5220bc6SSimon Glass return default_val; 96b5220bc6SSimon Glass } 97b5220bc6SSimon Glass 98f88fe2deSSimon Glass int fdtdec_get_is_enabled(const void *blob, int node) 99b5220bc6SSimon Glass { 100b5220bc6SSimon Glass const char *cell; 101b5220bc6SSimon Glass 102f88fe2deSSimon Glass /* 103f88fe2deSSimon Glass * It should say "okay", so only allow that. Some fdts use "ok" but 104f88fe2deSSimon Glass * this is a bug. Please fix your device tree source file. See here 105f88fe2deSSimon Glass * for discussion: 106f88fe2deSSimon Glass * 107f88fe2deSSimon Glass * http://www.mail-archive.com/u-boot@lists.denx.de/msg71598.html 108f88fe2deSSimon Glass */ 109b5220bc6SSimon Glass cell = fdt_getprop(blob, node, "status", NULL); 110b5220bc6SSimon Glass if (cell) 111f88fe2deSSimon Glass return 0 == strcmp(cell, "okay"); 112f88fe2deSSimon Glass return 1; 113b5220bc6SSimon Glass } 114b5220bc6SSimon Glass 115b5220bc6SSimon Glass enum fdt_compat_id fd_dec_lookup(const void *blob, int node) 116b5220bc6SSimon Glass { 117b5220bc6SSimon Glass enum fdt_compat_id id; 118b5220bc6SSimon Glass 119b5220bc6SSimon Glass /* Search our drivers */ 120b5220bc6SSimon Glass for (id = COMPAT_UNKNOWN; id < COMPAT_COUNT; id++) 121b5220bc6SSimon Glass if (0 == fdt_node_check_compatible(blob, node, 122b5220bc6SSimon Glass compat_names[id])) 123b5220bc6SSimon Glass return id; 124b5220bc6SSimon Glass return COMPAT_UNKNOWN; 125b5220bc6SSimon Glass } 126b5220bc6SSimon Glass 127b5220bc6SSimon Glass int fdtdec_next_compatible(const void *blob, int node, 128b5220bc6SSimon Glass enum fdt_compat_id id) 129b5220bc6SSimon Glass { 130b5220bc6SSimon Glass return fdt_node_offset_by_compatible(blob, node, compat_names[id]); 131b5220bc6SSimon Glass } 132b5220bc6SSimon Glass 133b5220bc6SSimon Glass int fdtdec_next_alias(const void *blob, const char *name, 134b5220bc6SSimon Glass enum fdt_compat_id id, int *upto) 135b5220bc6SSimon Glass { 136b5220bc6SSimon Glass #define MAX_STR_LEN 20 137b5220bc6SSimon Glass char str[MAX_STR_LEN + 20]; 138b5220bc6SSimon Glass int node, err; 139b5220bc6SSimon Glass 140b5220bc6SSimon Glass /* snprintf() is not available */ 141b5220bc6SSimon Glass assert(strlen(name) < MAX_STR_LEN); 142b5220bc6SSimon Glass sprintf(str, "%.*s%d", MAX_STR_LEN, name, *upto); 143b5220bc6SSimon Glass node = find_alias_node(blob, str); 144b5220bc6SSimon Glass if (node < 0) 145b5220bc6SSimon Glass return node; 146b5220bc6SSimon Glass err = fdt_node_check_compatible(blob, node, compat_names[id]); 147b5220bc6SSimon Glass if (err < 0) 148b5220bc6SSimon Glass return err; 149f88fe2deSSimon Glass if (err) 150f88fe2deSSimon Glass return -FDT_ERR_NOTFOUND; 151f88fe2deSSimon Glass (*upto)++; 152f88fe2deSSimon Glass return node; 153b5220bc6SSimon Glass } 154b5220bc6SSimon Glass 155a53f4a29SSimon Glass /* TODO: Can we tighten this code up a little? */ 156a53f4a29SSimon Glass int fdtdec_find_aliases_for_id(const void *blob, const char *name, 157a53f4a29SSimon Glass enum fdt_compat_id id, int *node_list, int maxcount) 158a53f4a29SSimon Glass { 159a53f4a29SSimon Glass int name_len = strlen(name); 160a53f4a29SSimon Glass int nodes[maxcount]; 161a53f4a29SSimon Glass int num_found = 0; 162a53f4a29SSimon Glass int offset, node; 163a53f4a29SSimon Glass int alias_node; 164a53f4a29SSimon Glass int count; 165a53f4a29SSimon Glass int i, j; 166a53f4a29SSimon Glass 167a53f4a29SSimon Glass /* find the alias node if present */ 168a53f4a29SSimon Glass alias_node = fdt_path_offset(blob, "/aliases"); 169a53f4a29SSimon Glass 170a53f4a29SSimon Glass /* 171a53f4a29SSimon Glass * start with nothing, and we can assume that the root node can't 172a53f4a29SSimon Glass * match 173a53f4a29SSimon Glass */ 174a53f4a29SSimon Glass memset(nodes, '\0', sizeof(nodes)); 175a53f4a29SSimon Glass 176a53f4a29SSimon Glass /* First find all the compatible nodes */ 177a53f4a29SSimon Glass for (node = count = 0; node >= 0 && count < maxcount;) { 178a53f4a29SSimon Glass node = fdtdec_next_compatible(blob, node, id); 179a53f4a29SSimon Glass if (node >= 0) 180a53f4a29SSimon Glass nodes[count++] = node; 181a53f4a29SSimon Glass } 182a53f4a29SSimon Glass if (node >= 0) 183a53f4a29SSimon Glass debug("%s: warning: maxcount exceeded with alias '%s'\n", 184a53f4a29SSimon Glass __func__, name); 185a53f4a29SSimon Glass 186a53f4a29SSimon Glass /* Now find all the aliases */ 187a53f4a29SSimon Glass memset(node_list, '\0', sizeof(*node_list) * maxcount); 188a53f4a29SSimon Glass 189a53f4a29SSimon Glass for (offset = fdt_first_property_offset(blob, alias_node); 190a53f4a29SSimon Glass offset > 0; 191a53f4a29SSimon Glass offset = fdt_next_property_offset(blob, offset)) { 192a53f4a29SSimon Glass const struct fdt_property *prop; 193a53f4a29SSimon Glass const char *path; 194a53f4a29SSimon Glass int number; 195a53f4a29SSimon Glass int found; 196a53f4a29SSimon Glass 197a53f4a29SSimon Glass node = 0; 198a53f4a29SSimon Glass prop = fdt_get_property_by_offset(blob, offset, NULL); 199a53f4a29SSimon Glass path = fdt_string(blob, fdt32_to_cpu(prop->nameoff)); 200a53f4a29SSimon Glass if (prop->len && 0 == strncmp(path, name, name_len)) 201a53f4a29SSimon Glass node = fdt_path_offset(blob, prop->data); 202a53f4a29SSimon Glass if (node <= 0) 203a53f4a29SSimon Glass continue; 204a53f4a29SSimon Glass 205a53f4a29SSimon Glass /* Get the alias number */ 206a53f4a29SSimon Glass number = simple_strtoul(path + name_len, NULL, 10); 207a53f4a29SSimon Glass if (number < 0 || number >= maxcount) { 208a53f4a29SSimon Glass debug("%s: warning: alias '%s' is out of range\n", 209a53f4a29SSimon Glass __func__, path); 210a53f4a29SSimon Glass continue; 211a53f4a29SSimon Glass } 212a53f4a29SSimon Glass 213a53f4a29SSimon Glass /* Make sure the node we found is actually in our list! */ 214a53f4a29SSimon Glass found = -1; 215a53f4a29SSimon Glass for (j = 0; j < count; j++) 216a53f4a29SSimon Glass if (nodes[j] == node) { 217a53f4a29SSimon Glass found = j; 218a53f4a29SSimon Glass break; 219a53f4a29SSimon Glass } 220a53f4a29SSimon Glass 221a53f4a29SSimon Glass if (found == -1) { 222a53f4a29SSimon Glass debug("%s: warning: alias '%s' points to a node " 223a53f4a29SSimon Glass "'%s' that is missing or is not compatible " 224a53f4a29SSimon Glass " with '%s'\n", __func__, path, 225a53f4a29SSimon Glass fdt_get_name(blob, node, NULL), 226a53f4a29SSimon Glass compat_names[id]); 227a53f4a29SSimon Glass continue; 228a53f4a29SSimon Glass } 229a53f4a29SSimon Glass 230a53f4a29SSimon Glass /* 231a53f4a29SSimon Glass * Add this node to our list in the right place, and mark 232a53f4a29SSimon Glass * it as done. 233a53f4a29SSimon Glass */ 234a53f4a29SSimon Glass if (fdtdec_get_is_enabled(blob, node)) { 235a53f4a29SSimon Glass node_list[number] = node; 236a53f4a29SSimon Glass if (number >= num_found) 237a53f4a29SSimon Glass num_found = number + 1; 238a53f4a29SSimon Glass } 239a53f4a29SSimon Glass nodes[j] = 0; 240a53f4a29SSimon Glass } 241a53f4a29SSimon Glass 242a53f4a29SSimon Glass /* Add any nodes not mentioned by an alias */ 243a53f4a29SSimon Glass for (i = j = 0; i < maxcount; i++) { 244a53f4a29SSimon Glass if (!node_list[i]) { 245a53f4a29SSimon Glass for (; j < maxcount; j++) 246a53f4a29SSimon Glass if (nodes[j] && 247a53f4a29SSimon Glass fdtdec_get_is_enabled(blob, nodes[j])) 248a53f4a29SSimon Glass break; 249a53f4a29SSimon Glass 250a53f4a29SSimon Glass /* Have we run out of nodes to add? */ 251a53f4a29SSimon Glass if (j == maxcount) 252a53f4a29SSimon Glass break; 253a53f4a29SSimon Glass 254a53f4a29SSimon Glass assert(!node_list[i]); 255a53f4a29SSimon Glass node_list[i] = nodes[j++]; 256a53f4a29SSimon Glass if (i >= num_found) 257a53f4a29SSimon Glass num_found = i + 1; 258a53f4a29SSimon Glass } 259a53f4a29SSimon Glass } 260a53f4a29SSimon Glass 261a53f4a29SSimon Glass return num_found; 262a53f4a29SSimon Glass } 263a53f4a29SSimon Glass 264b5220bc6SSimon Glass /* 265b5220bc6SSimon Glass * This function is a little odd in that it accesses global data. At some 266b5220bc6SSimon Glass * point if the architecture board.c files merge this will make more sense. 267b5220bc6SSimon Glass * Even now, it is common code. 268b5220bc6SSimon Glass */ 269b5220bc6SSimon Glass int fdtdec_check_fdt(void) 270b5220bc6SSimon Glass { 271b5220bc6SSimon Glass /* We must have an fdt */ 272f88fe2deSSimon Glass if (((uintptr_t)gd->fdt_blob & 3) || fdt_check_header(gd->fdt_blob)) 273b5220bc6SSimon Glass panic("No valid fdt found - please append one to U-Boot\n" 274b5220bc6SSimon Glass "binary or define CONFIG_OF_EMBED\n"); 275b5220bc6SSimon Glass return 0; 276b5220bc6SSimon Glass } 277d17da655SSimon Glass 278d17da655SSimon Glass int fdtdec_lookup_phandle(const void *blob, int node, const char *prop_name) 279d17da655SSimon Glass { 280d17da655SSimon Glass const u32 *phandle; 281d17da655SSimon Glass int lookup; 282d17da655SSimon Glass 283d17da655SSimon Glass phandle = fdt_getprop(blob, node, prop_name, NULL); 284d17da655SSimon Glass if (!phandle) 285d17da655SSimon Glass return -FDT_ERR_NOTFOUND; 286d17da655SSimon Glass 287d17da655SSimon Glass lookup = fdt_node_offset_by_phandle(blob, fdt32_to_cpu(*phandle)); 288d17da655SSimon Glass return lookup; 289d17da655SSimon Glass } 290d17da655SSimon Glass 291d17da655SSimon Glass /** 292d17da655SSimon Glass * Look up a property in a node and check that it has a minimum length. 293d17da655SSimon Glass * 294d17da655SSimon Glass * @param blob FDT blob 295d17da655SSimon Glass * @param node node to examine 296d17da655SSimon Glass * @param prop_name name of property to find 297d17da655SSimon Glass * @param min_len minimum property length in bytes 298d17da655SSimon Glass * @param err 0 if ok, or -FDT_ERR_NOTFOUND if the property is not 299d17da655SSimon Glass found, or -FDT_ERR_BADLAYOUT if not enough data 300d17da655SSimon Glass * @return pointer to cell, which is only valid if err == 0 301d17da655SSimon Glass */ 302d17da655SSimon Glass static const void *get_prop_check_min_len(const void *blob, int node, 303d17da655SSimon Glass const char *prop_name, int min_len, int *err) 304d17da655SSimon Glass { 305d17da655SSimon Glass const void *cell; 306d17da655SSimon Glass int len; 307d17da655SSimon Glass 308d17da655SSimon Glass debug("%s: %s\n", __func__, prop_name); 309d17da655SSimon Glass cell = fdt_getprop(blob, node, prop_name, &len); 310d17da655SSimon Glass if (!cell) 311d17da655SSimon Glass *err = -FDT_ERR_NOTFOUND; 312d17da655SSimon Glass else if (len < min_len) 313d17da655SSimon Glass *err = -FDT_ERR_BADLAYOUT; 314d17da655SSimon Glass else 315d17da655SSimon Glass *err = 0; 316d17da655SSimon Glass return cell; 317d17da655SSimon Glass } 318d17da655SSimon Glass 319d17da655SSimon Glass int fdtdec_get_int_array(const void *blob, int node, const char *prop_name, 320d17da655SSimon Glass u32 *array, int count) 321d17da655SSimon Glass { 322d17da655SSimon Glass const u32 *cell; 323d17da655SSimon Glass int i, err = 0; 324d17da655SSimon Glass 325d17da655SSimon Glass debug("%s: %s\n", __func__, prop_name); 326d17da655SSimon Glass cell = get_prop_check_min_len(blob, node, prop_name, 327d17da655SSimon Glass sizeof(u32) * count, &err); 328d17da655SSimon Glass if (!err) { 329d17da655SSimon Glass for (i = 0; i < count; i++) 330d17da655SSimon Glass array[i] = fdt32_to_cpu(cell[i]); 331d17da655SSimon Glass } 332d17da655SSimon Glass return err; 333d17da655SSimon Glass } 334d17da655SSimon Glass 335d17da655SSimon Glass int fdtdec_get_bool(const void *blob, int node, const char *prop_name) 336d17da655SSimon Glass { 337d17da655SSimon Glass const s32 *cell; 338d17da655SSimon Glass int len; 339d17da655SSimon Glass 340d17da655SSimon Glass debug("%s: %s\n", __func__, prop_name); 341d17da655SSimon Glass cell = fdt_getprop(blob, node, prop_name, &len); 342d17da655SSimon Glass return cell != NULL; 343d17da655SSimon Glass } 344*ed3ee5cdSSimon Glass 345*ed3ee5cdSSimon Glass /** 346*ed3ee5cdSSimon Glass * Decode a list of GPIOs from an FDT. This creates a list of GPIOs with no 347*ed3ee5cdSSimon Glass * terminating item. 348*ed3ee5cdSSimon Glass * 349*ed3ee5cdSSimon Glass * @param blob FDT blob to use 350*ed3ee5cdSSimon Glass * @param node Node to look at 351*ed3ee5cdSSimon Glass * @param prop_name Node property name 352*ed3ee5cdSSimon Glass * @param gpio Array of gpio elements to fill from FDT. This will be 353*ed3ee5cdSSimon Glass * untouched if either 0 or an error is returned 354*ed3ee5cdSSimon Glass * @param max_count Maximum number of elements allowed 355*ed3ee5cdSSimon Glass * @return number of GPIOs read if ok, -FDT_ERR_BADLAYOUT if max_count would 356*ed3ee5cdSSimon Glass * be exceeded, or -FDT_ERR_NOTFOUND if the property is missing. 357*ed3ee5cdSSimon Glass */ 358*ed3ee5cdSSimon Glass static int fdtdec_decode_gpios(const void *blob, int node, 359*ed3ee5cdSSimon Glass const char *prop_name, struct fdt_gpio_state *gpio, 360*ed3ee5cdSSimon Glass int max_count) 361*ed3ee5cdSSimon Glass { 362*ed3ee5cdSSimon Glass const struct fdt_property *prop; 363*ed3ee5cdSSimon Glass const u32 *cell; 364*ed3ee5cdSSimon Glass const char *name; 365*ed3ee5cdSSimon Glass int len, i; 366*ed3ee5cdSSimon Glass 367*ed3ee5cdSSimon Glass debug("%s: %s\n", __func__, prop_name); 368*ed3ee5cdSSimon Glass assert(max_count > 0); 369*ed3ee5cdSSimon Glass prop = fdt_get_property(blob, node, prop_name, &len); 370*ed3ee5cdSSimon Glass if (!prop) { 371*ed3ee5cdSSimon Glass debug("FDT: %s: property '%s' missing\n", __func__, prop_name); 372*ed3ee5cdSSimon Glass return -FDT_ERR_NOTFOUND; 373*ed3ee5cdSSimon Glass } 374*ed3ee5cdSSimon Glass 375*ed3ee5cdSSimon Glass /* We will use the name to tag the GPIO */ 376*ed3ee5cdSSimon Glass name = fdt_string(blob, fdt32_to_cpu(prop->nameoff)); 377*ed3ee5cdSSimon Glass cell = (u32 *)prop->data; 378*ed3ee5cdSSimon Glass len /= sizeof(u32) * 3; /* 3 cells per GPIO record */ 379*ed3ee5cdSSimon Glass if (len > max_count) { 380*ed3ee5cdSSimon Glass debug("FDT: %s: too many GPIOs / cells for " 381*ed3ee5cdSSimon Glass "property '%s'\n", __func__, prop_name); 382*ed3ee5cdSSimon Glass return -FDT_ERR_BADLAYOUT; 383*ed3ee5cdSSimon Glass } 384*ed3ee5cdSSimon Glass 385*ed3ee5cdSSimon Glass /* Read out the GPIO data from the cells */ 386*ed3ee5cdSSimon Glass for (i = 0; i < len; i++, cell += 3) { 387*ed3ee5cdSSimon Glass gpio[i].gpio = fdt32_to_cpu(cell[1]); 388*ed3ee5cdSSimon Glass gpio[i].flags = fdt32_to_cpu(cell[2]); 389*ed3ee5cdSSimon Glass gpio[i].name = name; 390*ed3ee5cdSSimon Glass } 391*ed3ee5cdSSimon Glass 392*ed3ee5cdSSimon Glass return len; 393*ed3ee5cdSSimon Glass } 394*ed3ee5cdSSimon Glass 395*ed3ee5cdSSimon Glass int fdtdec_decode_gpio(const void *blob, int node, const char *prop_name, 396*ed3ee5cdSSimon Glass struct fdt_gpio_state *gpio) 397*ed3ee5cdSSimon Glass { 398*ed3ee5cdSSimon Glass int err; 399*ed3ee5cdSSimon Glass 400*ed3ee5cdSSimon Glass debug("%s: %s\n", __func__, prop_name); 401*ed3ee5cdSSimon Glass gpio->gpio = FDT_GPIO_NONE; 402*ed3ee5cdSSimon Glass gpio->name = NULL; 403*ed3ee5cdSSimon Glass err = fdtdec_decode_gpios(blob, node, prop_name, gpio, 1); 404*ed3ee5cdSSimon Glass return err == 1 ? 0 : err; 405*ed3ee5cdSSimon Glass } 406*ed3ee5cdSSimon Glass 407*ed3ee5cdSSimon Glass int fdtdec_setup_gpio(struct fdt_gpio_state *gpio) 408*ed3ee5cdSSimon Glass { 409*ed3ee5cdSSimon Glass /* 410*ed3ee5cdSSimon Glass * Return success if there is no GPIO defined. This is used for 411*ed3ee5cdSSimon Glass * optional GPIOs) 412*ed3ee5cdSSimon Glass */ 413*ed3ee5cdSSimon Glass if (!fdt_gpio_isvalid(gpio)) 414*ed3ee5cdSSimon Glass return 0; 415*ed3ee5cdSSimon Glass 416*ed3ee5cdSSimon Glass if (gpio_request(gpio->gpio, gpio->name)) 417*ed3ee5cdSSimon Glass return -1; 418*ed3ee5cdSSimon Glass return 0; 419*ed3ee5cdSSimon Glass } 420