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 23b5220bc6SSimon Glass /* 24b5220bc6SSimon Glass * This file contains convenience functions for decoding useful and 25b5220bc6SSimon Glass * enlightening information from FDTs. It is intended to be used by device 26b5220bc6SSimon Glass * drivers and board-specific code within U-Boot. It aims to reduce the 27b5220bc6SSimon Glass * amount of FDT munging required within U-Boot itself, so that driver code 28b5220bc6SSimon Glass * changes to support FDT are minimized. 29b5220bc6SSimon Glass */ 30b5220bc6SSimon Glass 31b5220bc6SSimon Glass #include <libfdt.h> 32b5220bc6SSimon Glass 33b5220bc6SSimon Glass /* 34b5220bc6SSimon Glass * A typedef for a physical address. Note that fdt data is always big 35b5220bc6SSimon Glass * endian even on a litle endian machine. 36b5220bc6SSimon Glass */ 37b5220bc6SSimon Glass #ifdef CONFIG_PHYS_64BIT 38b5220bc6SSimon Glass typedef u64 fdt_addr_t; 39b5220bc6SSimon Glass #define FDT_ADDR_T_NONE (-1ULL) 40b5220bc6SSimon Glass #define fdt_addr_to_cpu(reg) be64_to_cpu(reg) 41b5220bc6SSimon Glass #else 42b5220bc6SSimon Glass typedef u32 fdt_addr_t; 43b5220bc6SSimon Glass #define FDT_ADDR_T_NONE (-1U) 44b5220bc6SSimon Glass #define fdt_addr_to_cpu(reg) be32_to_cpu(reg) 45b5220bc6SSimon Glass #endif 46b5220bc6SSimon Glass 47b5220bc6SSimon Glass /* Information obtained about memory from the FDT */ 48b5220bc6SSimon Glass struct fdt_memory { 49b5220bc6SSimon Glass fdt_addr_t start; 50b5220bc6SSimon Glass fdt_addr_t end; 51b5220bc6SSimon Glass }; 52b5220bc6SSimon Glass 53b5220bc6SSimon Glass /** 54b5220bc6SSimon Glass * Compat types that we know about and for which we might have drivers. 55b5220bc6SSimon Glass * Each is named COMPAT_<dir>_<filename> where <dir> is the directory 56b5220bc6SSimon Glass * within drivers. 57b5220bc6SSimon Glass */ 58b5220bc6SSimon Glass enum fdt_compat_id { 59b5220bc6SSimon Glass COMPAT_UNKNOWN, 6087f938c9SSimon Glass COMPAT_NVIDIA_TEGRA20_USB, /* Tegra2 USB port */ 61b5220bc6SSimon Glass 62b5220bc6SSimon Glass COMPAT_COUNT, 63b5220bc6SSimon Glass }; 64b5220bc6SSimon Glass 65ed3ee5cdSSimon Glass /* GPIOs are numbered from 0 */ 66ed3ee5cdSSimon Glass enum { 67ed3ee5cdSSimon Glass FDT_GPIO_NONE = -1U, /* an invalid GPIO used to end our list */ 68ed3ee5cdSSimon Glass 69ed3ee5cdSSimon Glass FDT_GPIO_ACTIVE_LOW = 1 << 0, /* input is active low (else high) */ 70ed3ee5cdSSimon Glass }; 71ed3ee5cdSSimon Glass 72ed3ee5cdSSimon Glass /* This is the state of a GPIO pin as defined by the fdt */ 73ed3ee5cdSSimon Glass struct fdt_gpio_state { 74ed3ee5cdSSimon Glass const char *name; /* name of the fdt property defining this */ 75ed3ee5cdSSimon Glass uint gpio; /* GPIO number, or FDT_GPIO_NONE if none */ 76ed3ee5cdSSimon Glass u8 flags; /* FDT_GPIO_... flags */ 77ed3ee5cdSSimon Glass }; 78ed3ee5cdSSimon Glass 79ed3ee5cdSSimon Glass /* This tells us whether a fdt_gpio_state record is valid or not */ 80ed3ee5cdSSimon Glass #define fdt_gpio_isvalid(x) ((x)->gpio != FDT_GPIO_NONE) 81ed3ee5cdSSimon Glass 82b5220bc6SSimon Glass /** 83b5220bc6SSimon Glass * Find the next numbered alias for a peripheral. This is used to enumerate 84b5220bc6SSimon Glass * all the peripherals of a certain type. 85b5220bc6SSimon Glass * 86b5220bc6SSimon Glass * Do the first call with *upto = 0. Assuming /aliases/<name>0 exists then 87b5220bc6SSimon Glass * this function will return a pointer to the node the alias points to, and 88b5220bc6SSimon Glass * then update *upto to 1. Next time you call this function, the next node 89b5220bc6SSimon Glass * will be returned. 90b5220bc6SSimon Glass * 91b5220bc6SSimon Glass * All nodes returned will match the compatible ID, as it is assumed that 92b5220bc6SSimon Glass * all peripherals use the same driver. 93b5220bc6SSimon Glass * 94b5220bc6SSimon Glass * @param blob FDT blob to use 95b5220bc6SSimon Glass * @param name Root name of alias to search for 96b5220bc6SSimon Glass * @param id Compatible ID to look for 97b5220bc6SSimon Glass * @return offset of next compatible node, or -FDT_ERR_NOTFOUND if no more 98b5220bc6SSimon Glass */ 99b5220bc6SSimon Glass int fdtdec_next_alias(const void *blob, const char *name, 100b5220bc6SSimon Glass enum fdt_compat_id id, int *upto); 101b5220bc6SSimon Glass 102b5220bc6SSimon Glass /** 103f88fe2deSSimon Glass * Find the next compatible node for a peripheral. 104f88fe2deSSimon Glass * 105f88fe2deSSimon Glass * Do the first call with node = 0. This function will return a pointer to 106f88fe2deSSimon Glass * the next compatible node. Next time you call this function, pass the 107f88fe2deSSimon Glass * value returned, and the next node will be provided. 108f88fe2deSSimon Glass * 109f88fe2deSSimon Glass * @param blob FDT blob to use 110f88fe2deSSimon Glass * @param node Start node for search 111f88fe2deSSimon Glass * @param id Compatible ID to look for (enum fdt_compat_id) 112f88fe2deSSimon Glass * @return offset of next compatible node, or -FDT_ERR_NOTFOUND if no more 113f88fe2deSSimon Glass */ 114f88fe2deSSimon Glass int fdtdec_next_compatible(const void *blob, int node, 115f88fe2deSSimon Glass enum fdt_compat_id id); 116f88fe2deSSimon Glass 117f88fe2deSSimon Glass /** 118b5220bc6SSimon Glass * Look up an address property in a node and return it as an address. 119b5220bc6SSimon Glass * The property must hold either one address with no trailing data or 120b5220bc6SSimon Glass * one address with a length. This is only tested on 32-bit machines. 121b5220bc6SSimon Glass * 122b5220bc6SSimon Glass * @param blob FDT blob 123b5220bc6SSimon Glass * @param node node to examine 124b5220bc6SSimon Glass * @param prop_name name of property to find 125b5220bc6SSimon Glass * @return address, if found, or FDT_ADDR_T_NONE if not 126b5220bc6SSimon Glass */ 127b5220bc6SSimon Glass fdt_addr_t fdtdec_get_addr(const void *blob, int node, 128b5220bc6SSimon Glass const char *prop_name); 129b5220bc6SSimon Glass 130b5220bc6SSimon Glass /** 131b5220bc6SSimon Glass * Look up a 32-bit integer property in a node and return it. The property 132b5220bc6SSimon Glass * must have at least 4 bytes of data. The value of the first cell is 133b5220bc6SSimon Glass * returned. 134b5220bc6SSimon Glass * 135b5220bc6SSimon Glass * @param blob FDT blob 136b5220bc6SSimon Glass * @param node node to examine 137b5220bc6SSimon Glass * @param prop_name name of property to find 138b5220bc6SSimon Glass * @param default_val default value to return if the property is not found 139b5220bc6SSimon Glass * @return integer value, if found, or default_val if not 140b5220bc6SSimon Glass */ 141b5220bc6SSimon Glass s32 fdtdec_get_int(const void *blob, int node, const char *prop_name, 142b5220bc6SSimon Glass s32 default_val); 143b5220bc6SSimon Glass 144b5220bc6SSimon Glass /** 145b5220bc6SSimon Glass * Checks whether a node is enabled. 146b5220bc6SSimon Glass * This looks for a 'status' property. If this exists, then returns 1 if 147b5220bc6SSimon Glass * the status is 'ok' and 0 otherwise. If there is no status property, 148f88fe2deSSimon Glass * it returns 1 on the assumption that anything mentioned should be enabled 149f88fe2deSSimon Glass * by default. 150b5220bc6SSimon Glass * 151b5220bc6SSimon Glass * @param blob FDT blob 152b5220bc6SSimon Glass * @param node node to examine 153f88fe2deSSimon Glass * @return integer value 0 (not enabled) or 1 (enabled) 154b5220bc6SSimon Glass */ 155f88fe2deSSimon Glass int fdtdec_get_is_enabled(const void *blob, int node); 156b5220bc6SSimon Glass 157b5220bc6SSimon Glass /** 158*9a263e55SSimon Glass * Make sure we have a valid fdt available to control U-Boot. 159*9a263e55SSimon Glass * 160*9a263e55SSimon Glass * If not, a message is printed to the console if the console is ready. 161*9a263e55SSimon Glass * 162*9a263e55SSimon Glass * @return 0 if all ok, -1 if not 163*9a263e55SSimon Glass */ 164*9a263e55SSimon Glass int fdtdec_prepare_fdt(void); 165*9a263e55SSimon Glass 166*9a263e55SSimon Glass /** 167*9a263e55SSimon Glass * Checks that we have a valid fdt available to control U-Boot. 168*9a263e55SSimon Glass 169*9a263e55SSimon Glass * However, if not then for the moment nothing is done, since this function 170*9a263e55SSimon Glass * is called too early to panic(). 171*9a263e55SSimon Glass * 172*9a263e55SSimon Glass * @returns 0 173b5220bc6SSimon Glass */ 174b5220bc6SSimon Glass int fdtdec_check_fdt(void); 175a53f4a29SSimon Glass 176a53f4a29SSimon Glass /** 177a53f4a29SSimon Glass * Find the nodes for a peripheral and return a list of them in the correct 178a53f4a29SSimon Glass * order. This is used to enumerate all the peripherals of a certain type. 179a53f4a29SSimon Glass * 180a53f4a29SSimon Glass * To use this, optionally set up a /aliases node with alias properties for 181a53f4a29SSimon Glass * a peripheral. For example, for usb you could have: 182a53f4a29SSimon Glass * 183a53f4a29SSimon Glass * aliases { 184a53f4a29SSimon Glass * usb0 = "/ehci@c5008000"; 185a53f4a29SSimon Glass * usb1 = "/ehci@c5000000"; 186a53f4a29SSimon Glass * }; 187a53f4a29SSimon Glass * 188a53f4a29SSimon Glass * Pass "usb" as the name to this function and will return a list of two 189a53f4a29SSimon Glass * nodes offsets: /ehci@c5008000 and ehci@c5000000. 190a53f4a29SSimon Glass * 191a53f4a29SSimon Glass * All nodes returned will match the compatible ID, as it is assumed that 192a53f4a29SSimon Glass * all peripherals use the same driver. 193a53f4a29SSimon Glass * 194a53f4a29SSimon Glass * If no alias node is found, then the node list will be returned in the 195a53f4a29SSimon Glass * order found in the fdt. If the aliases mention a node which doesn't 196a53f4a29SSimon Glass * exist, then this will be ignored. If nodes are found with no aliases, 197a53f4a29SSimon Glass * they will be added in any order. 198a53f4a29SSimon Glass * 199a53f4a29SSimon Glass * If there is a gap in the aliases, then this function return a 0 node at 200a53f4a29SSimon Glass * that position. The return value will also count these gaps. 201a53f4a29SSimon Glass * 202a53f4a29SSimon Glass * This function checks node properties and will not return nodes which are 203a53f4a29SSimon Glass * marked disabled (status = "disabled"). 204a53f4a29SSimon Glass * 205a53f4a29SSimon Glass * @param blob FDT blob to use 206a53f4a29SSimon Glass * @param name Root name of alias to search for 207a53f4a29SSimon Glass * @param id Compatible ID to look for 208a53f4a29SSimon Glass * @param node_list Place to put list of found nodes 209a53f4a29SSimon Glass * @param maxcount Maximum number of nodes to find 210a53f4a29SSimon Glass * @return number of nodes found on success, FTD_ERR_... on error 211a53f4a29SSimon Glass */ 212a53f4a29SSimon Glass int fdtdec_find_aliases_for_id(const void *blob, const char *name, 213a53f4a29SSimon Glass enum fdt_compat_id id, int *node_list, int maxcount); 214a53f4a29SSimon Glass 215a53f4a29SSimon Glass /* 216a53f4a29SSimon Glass * Get the name for a compatible ID 217a53f4a29SSimon Glass * 218a53f4a29SSimon Glass * @param id Compatible ID to look for 219a53f4a29SSimon Glass * @return compatible string for that id 220a53f4a29SSimon Glass */ 221a53f4a29SSimon Glass const char *fdtdec_get_compatible(enum fdt_compat_id id); 222d17da655SSimon Glass 223d17da655SSimon Glass /* Look up a phandle and follow it to its node. Then return the offset 224d17da655SSimon Glass * of that node. 225d17da655SSimon Glass * 226d17da655SSimon Glass * @param blob FDT blob 227d17da655SSimon Glass * @param node node to examine 228d17da655SSimon Glass * @param prop_name name of property to find 229d17da655SSimon Glass * @return node offset if found, -ve error code on error 230d17da655SSimon Glass */ 231d17da655SSimon Glass int fdtdec_lookup_phandle(const void *blob, int node, const char *prop_name); 232d17da655SSimon Glass 233d17da655SSimon Glass /** 234d17da655SSimon Glass * Look up a property in a node and return its contents in an integer 235d17da655SSimon Glass * array of given length. The property must have at least enough data for 236d17da655SSimon Glass * the array (4*count bytes). It may have more, but this will be ignored. 237d17da655SSimon Glass * 238d17da655SSimon Glass * @param blob FDT blob 239d17da655SSimon Glass * @param node node to examine 240d17da655SSimon Glass * @param prop_name name of property to find 241d17da655SSimon Glass * @param array array to fill with data 242d17da655SSimon Glass * @param count number of array elements 243d17da655SSimon Glass * @return 0 if ok, or -FDT_ERR_NOTFOUND if the property is not found, 244d17da655SSimon Glass * or -FDT_ERR_BADLAYOUT if not enough data 245d17da655SSimon Glass */ 246d17da655SSimon Glass int fdtdec_get_int_array(const void *blob, int node, const char *prop_name, 247d17da655SSimon Glass u32 *array, int count); 248d17da655SSimon Glass 249d17da655SSimon Glass /** 250d17da655SSimon Glass * Look up a boolean property in a node and return it. 251d17da655SSimon Glass * 252d17da655SSimon Glass * A boolean properly is true if present in the device tree and false if not 253d17da655SSimon Glass * present, regardless of its value. 254d17da655SSimon Glass * 255d17da655SSimon Glass * @param blob FDT blob 256d17da655SSimon Glass * @param node node to examine 257d17da655SSimon Glass * @param prop_name name of property to find 258d17da655SSimon Glass * @return 1 if the properly is present; 0 if it isn't present 259d17da655SSimon Glass */ 260d17da655SSimon Glass int fdtdec_get_bool(const void *blob, int node, const char *prop_name); 261ed3ee5cdSSimon Glass 262ed3ee5cdSSimon Glass /** 263ed3ee5cdSSimon Glass * Decode a single GPIOs from an FDT. 264ed3ee5cdSSimon Glass * 265ed3ee5cdSSimon Glass * If the property is not found, then the GPIO structure will still be 266ed3ee5cdSSimon Glass * initialised, with gpio set to FDT_GPIO_NONE. This makes it easy to 267ed3ee5cdSSimon Glass * provide optional GPIOs. 268ed3ee5cdSSimon Glass * 269ed3ee5cdSSimon Glass * @param blob FDT blob to use 270ed3ee5cdSSimon Glass * @param node Node to look at 271ed3ee5cdSSimon Glass * @param prop_name Node property name 272ed3ee5cdSSimon Glass * @param gpio gpio elements to fill from FDT 273ed3ee5cdSSimon Glass * @return 0 if ok, -FDT_ERR_NOTFOUND if the property is missing. 274ed3ee5cdSSimon Glass */ 275ed3ee5cdSSimon Glass int fdtdec_decode_gpio(const void *blob, int node, const char *prop_name, 276ed3ee5cdSSimon Glass struct fdt_gpio_state *gpio); 277ed3ee5cdSSimon Glass 278ed3ee5cdSSimon Glass /** 279ed3ee5cdSSimon Glass * Set up a GPIO pin according to the provided gpio information. At present this 280ed3ee5cdSSimon Glass * just requests the GPIO. 281ed3ee5cdSSimon Glass * 282ed3ee5cdSSimon Glass * If the gpio is FDT_GPIO_NONE, no action is taken. This makes it easy to 283ed3ee5cdSSimon Glass * deal with optional GPIOs. 284ed3ee5cdSSimon Glass * 285ed3ee5cdSSimon Glass * @param gpio GPIO info to use for set up 286ed3ee5cdSSimon Glass * @return 0 if all ok or gpio was FDT_GPIO_NONE; -1 on error 287ed3ee5cdSSimon Glass */ 288ed3ee5cdSSimon Glass int fdtdec_setup_gpio(struct fdt_gpio_state *gpio); 289