Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Simon Glass | b5220bc | 2011-10-24 19:15:32 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2011 The Chromium OS Authors. |
Simon Glass | b5220bc | 2011-10-24 19:15:32 +0000 | [diff] [blame] | 4 | */ |
| 5 | |
Simon Glass | 5bfa78d | 2012-07-12 05:25:02 +0000 | [diff] [blame] | 6 | #ifndef __fdtdec_h |
| 7 | #define __fdtdec_h |
Simon Glass | b5220bc | 2011-10-24 19:15:32 +0000 | [diff] [blame] | 8 | |
| 9 | /* |
| 10 | * This file contains convenience functions for decoding useful and |
| 11 | * enlightening information from FDTs. It is intended to be used by device |
| 12 | * drivers and board-specific code within U-Boot. It aims to reduce the |
| 13 | * amount of FDT munging required within U-Boot itself, so that driver code |
| 14 | * changes to support FDT are minimized. |
| 15 | */ |
| 16 | |
Masahiro Yamada | b08c8c4 | 2018-03-05 01:20:11 +0900 | [diff] [blame] | 17 | #include <linux/libfdt.h> |
Bin Meng | a62e84d | 2014-12-31 16:05:11 +0800 | [diff] [blame] | 18 | #include <pci.h> |
Simon Glass | b5220bc | 2011-10-24 19:15:32 +0000 | [diff] [blame] | 19 | |
| 20 | /* |
| 21 | * A typedef for a physical address. Note that fdt data is always big |
| 22 | * endian even on a litle endian machine. |
| 23 | */ |
York Sun | 28445aa | 2015-08-03 12:02:04 -0700 | [diff] [blame] | 24 | typedef phys_addr_t fdt_addr_t; |
| 25 | typedef phys_size_t fdt_size_t; |
Thierry Reding | 4f253ad | 2019-03-21 19:10:00 +0100 | [diff] [blame] | 26 | |
Simon Glass | b5220bc | 2011-10-24 19:15:32 +0000 | [diff] [blame] | 27 | #ifdef CONFIG_PHYS_64BIT |
Mario Six | c6b89f3 | 2018-02-12 08:05:57 +0100 | [diff] [blame] | 28 | #define FDT_ADDR_T_NONE (-1U) |
Simon Glass | b5220bc | 2011-10-24 19:15:32 +0000 | [diff] [blame] | 29 | #define fdt_addr_to_cpu(reg) be64_to_cpu(reg) |
Simon Glass | f20c461 | 2012-10-25 16:31:00 +0000 | [diff] [blame] | 30 | #define fdt_size_to_cpu(reg) be64_to_cpu(reg) |
Thierry Reding | 155d0a0 | 2019-03-21 19:09:59 +0100 | [diff] [blame] | 31 | #define cpu_to_fdt_addr(reg) cpu_to_be64(reg) |
| 32 | #define cpu_to_fdt_size(reg) cpu_to_be64(reg) |
Simon Glass | c20ee0e | 2017-08-29 14:15:50 -0600 | [diff] [blame] | 33 | typedef fdt64_t fdt_val_t; |
Simon Glass | b5220bc | 2011-10-24 19:15:32 +0000 | [diff] [blame] | 34 | #else |
Simon Glass | b5220bc | 2011-10-24 19:15:32 +0000 | [diff] [blame] | 35 | #define FDT_ADDR_T_NONE (-1U) |
| 36 | #define fdt_addr_to_cpu(reg) be32_to_cpu(reg) |
Simon Glass | f20c461 | 2012-10-25 16:31:00 +0000 | [diff] [blame] | 37 | #define fdt_size_to_cpu(reg) be32_to_cpu(reg) |
Thierry Reding | 155d0a0 | 2019-03-21 19:09:59 +0100 | [diff] [blame] | 38 | #define cpu_to_fdt_addr(reg) cpu_to_be32(reg) |
| 39 | #define cpu_to_fdt_size(reg) cpu_to_be32(reg) |
Simon Glass | c20ee0e | 2017-08-29 14:15:50 -0600 | [diff] [blame] | 40 | typedef fdt32_t fdt_val_t; |
Simon Glass | b5220bc | 2011-10-24 19:15:32 +0000 | [diff] [blame] | 41 | #endif |
| 42 | |
| 43 | /* Information obtained about memory from the FDT */ |
| 44 | struct fdt_memory { |
| 45 | fdt_addr_t start; |
| 46 | fdt_addr_t end; |
| 47 | }; |
| 48 | |
Michael Pratt | 90c08fa | 2018-06-11 13:07:09 -0600 | [diff] [blame] | 49 | struct bd_info; |
| 50 | |
Simon Glass | af28224 | 2015-03-06 13:19:03 -0700 | [diff] [blame] | 51 | #ifdef CONFIG_SPL_BUILD |
| 52 | #define SPL_BUILD 1 |
| 53 | #else |
| 54 | #define SPL_BUILD 0 |
| 55 | #endif |
| 56 | |
Lukas Auer | c4f603f | 2019-08-21 21:14:40 +0200 | [diff] [blame] | 57 | #ifdef CONFIG_OF_PRIOR_STAGE |
Thomas Fitzsimmons | 894c3ad | 2018-06-08 17:59:45 -0400 | [diff] [blame] | 58 | extern phys_addr_t prior_stage_fdt_address; |
| 59 | #endif |
| 60 | |
Thierry Reding | 56f4224 | 2014-08-26 17:33:53 +0200 | [diff] [blame] | 61 | /* |
| 62 | * Information about a resource. start is the first address of the resource |
| 63 | * and end is the last address (inclusive). The length of the resource will |
| 64 | * be equal to: end - start + 1. |
| 65 | */ |
| 66 | struct fdt_resource { |
| 67 | fdt_addr_t start; |
| 68 | fdt_addr_t end; |
| 69 | }; |
| 70 | |
Bin Meng | a62e84d | 2014-12-31 16:05:11 +0800 | [diff] [blame] | 71 | enum fdt_pci_space { |
| 72 | FDT_PCI_SPACE_CONFIG = 0, |
| 73 | FDT_PCI_SPACE_IO = 0x01000000, |
| 74 | FDT_PCI_SPACE_MEM32 = 0x02000000, |
| 75 | FDT_PCI_SPACE_MEM64 = 0x03000000, |
| 76 | FDT_PCI_SPACE_MEM32_PREF = 0x42000000, |
| 77 | FDT_PCI_SPACE_MEM64_PREF = 0x43000000, |
| 78 | }; |
| 79 | |
| 80 | #define FDT_PCI_ADDR_CELLS 3 |
| 81 | #define FDT_PCI_SIZE_CELLS 2 |
| 82 | #define FDT_PCI_REG_SIZE \ |
| 83 | ((FDT_PCI_ADDR_CELLS + FDT_PCI_SIZE_CELLS) * sizeof(u32)) |
| 84 | |
| 85 | /* |
| 86 | * The Open Firmware spec defines PCI physical address as follows: |
| 87 | * |
| 88 | * bits# 31 .... 24 23 .... 16 15 .... 08 07 .... 00 |
| 89 | * |
| 90 | * phys.hi cell: npt000ss bbbbbbbb dddddfff rrrrrrrr |
| 91 | * phys.mid cell: hhhhhhhh hhhhhhhh hhhhhhhh hhhhhhhh |
| 92 | * phys.lo cell: llllllll llllllll llllllll llllllll |
| 93 | * |
| 94 | * where: |
| 95 | * |
| 96 | * n: is 0 if the address is relocatable, 1 otherwise |
| 97 | * p: is 1 if addressable region is prefetchable, 0 otherwise |
| 98 | * t: is 1 if the address is aliased (for non-relocatable I/O) below 1MB |
| 99 | * (for Memory), or below 64KB (for relocatable I/O) |
| 100 | * ss: is the space code, denoting the address space |
| 101 | * bbbbbbbb: is the 8-bit Bus Number |
| 102 | * ddddd: is the 5-bit Device Number |
| 103 | * fff: is the 3-bit Function Number |
| 104 | * rrrrrrrr: is the 8-bit Register Number |
| 105 | * hhhhhhhh: is a 32-bit unsigned number |
| 106 | * llllllll: is a 32-bit unsigned number |
| 107 | */ |
| 108 | struct fdt_pci_addr { |
| 109 | u32 phys_hi; |
| 110 | u32 phys_mid; |
| 111 | u32 phys_lo; |
| 112 | }; |
| 113 | |
Thierry Reding | 56f4224 | 2014-08-26 17:33:53 +0200 | [diff] [blame] | 114 | /** |
| 115 | * Compute the size of a resource. |
| 116 | * |
| 117 | * @param res the resource to operate on |
| 118 | * @return the size of the resource |
| 119 | */ |
| 120 | static inline fdt_size_t fdt_resource_size(const struct fdt_resource *res) |
| 121 | { |
| 122 | return res->end - res->start + 1; |
| 123 | } |
| 124 | |
Simon Glass | b5220bc | 2011-10-24 19:15:32 +0000 | [diff] [blame] | 125 | /** |
| 126 | * Compat types that we know about and for which we might have drivers. |
| 127 | * Each is named COMPAT_<dir>_<filename> where <dir> is the directory |
| 128 | * within drivers. |
| 129 | */ |
| 130 | enum fdt_compat_id { |
| 131 | COMPAT_UNKNOWN, |
Allen Martin | 00a2749 | 2012-08-31 08:30:00 +0000 | [diff] [blame] | 132 | COMPAT_NVIDIA_TEGRA20_EMC, /* Tegra20 memory controller */ |
| 133 | COMPAT_NVIDIA_TEGRA20_EMC_TABLE, /* Tegra20 memory timing table */ |
Jim Lin | 312693c | 2012-07-29 20:53:29 +0000 | [diff] [blame] | 134 | COMPAT_NVIDIA_TEGRA20_NAND, /* Tegra2 NAND controller */ |
Thierry Reding | 79c7a90 | 2014-12-09 22:25:09 -0700 | [diff] [blame] | 135 | COMPAT_NVIDIA_TEGRA124_XUSB_PADCTL, |
| 136 | /* Tegra124 XUSB pad controller */ |
Tom Warren | 7aaa5a6 | 2015-03-04 16:36:00 -0700 | [diff] [blame] | 137 | COMPAT_NVIDIA_TEGRA210_XUSB_PADCTL, |
| 138 | /* Tegra210 XUSB pad controller */ |
Hatim RV | cc9fe33 | 2012-12-11 00:52:46 +0000 | [diff] [blame] | 139 | COMPAT_SMSC_LAN9215, /* SMSC 10/100 Ethernet LAN9215 */ |
| 140 | COMPAT_SAMSUNG_EXYNOS5_SROMC, /* Exynos5 SROMC */ |
Rajeshwari Shinde | 6abd162 | 2013-01-07 23:35:05 +0000 | [diff] [blame] | 141 | COMPAT_SAMSUNG_EXYNOS_USB_PHY, /* Exynos phy controller for usb2.0 */ |
Vivek Gautam | 108b85b | 2013-09-14 14:02:48 +0530 | [diff] [blame] | 142 | COMPAT_SAMSUNG_EXYNOS5_USB3_PHY,/* Exynos phy controller for usb3.0 */ |
Akshay Saraswat | 618766c | 2013-02-25 01:13:01 +0000 | [diff] [blame] | 143 | COMPAT_SAMSUNG_EXYNOS_TMU, /* Exynos TMU */ |
Piotr Wilczek | de461c5 | 2014-03-07 14:59:39 +0100 | [diff] [blame] | 144 | COMPAT_SAMSUNG_EXYNOS_MIPI_DSI, /* Exynos mipi dsi */ |
Jaehoon Chung | 7d3ca0f | 2014-05-16 13:59:51 +0900 | [diff] [blame] | 145 | COMPAT_SAMSUNG_EXYNOS_DWMMC, /* Exynos DWMMC controller */ |
Simon Glass | bb8215f | 2013-03-11 06:08:08 +0000 | [diff] [blame] | 146 | COMPAT_GENERIC_SPI_FLASH, /* Generic SPI Flash chip */ |
Ajay Kumar | 45c480c | 2014-09-05 16:53:33 +0530 | [diff] [blame] | 147 | COMPAT_SAMSUNG_EXYNOS_SYSMMU, /* Exynos sysmmu */ |
Simon Glass | 77f9b1f | 2014-11-12 22:42:21 -0700 | [diff] [blame] | 148 | COMPAT_INTEL_MICROCODE, /* Intel microcode update */ |
Bin Meng | c89ada0 | 2015-02-05 23:42:26 +0800 | [diff] [blame] | 149 | COMPAT_INTEL_QRK_MRC, /* Intel Quark MRC */ |
Marek Vasut | 6ab00db | 2015-07-25 19:33:56 +0200 | [diff] [blame] | 150 | COMPAT_ALTERA_SOCFPGA_DWMAC, /* SoCFPGA Ethernet controller */ |
Marek Vasut | 129adf5 | 2015-07-25 10:48:14 +0200 | [diff] [blame] | 151 | COMPAT_ALTERA_SOCFPGA_DWMMC, /* SoCFPGA DWMMC controller */ |
Marek Vasut | ef4b01b | 2015-12-05 19:28:44 +0100 | [diff] [blame] | 152 | COMPAT_ALTERA_SOCFPGA_DWC2USB, /* SoCFPGA DWC2 USB controller */ |
Andrew Bradford | f3b84a3 | 2015-08-07 08:36:35 -0400 | [diff] [blame] | 153 | COMPAT_INTEL_BAYTRAIL_FSP, /* Intel Bay Trail FSP */ |
| 154 | COMPAT_INTEL_BAYTRAIL_FSP_MDP, /* Intel FSP memory-down params */ |
Bin Meng | 394e0b6 | 2015-12-11 02:55:44 -0800 | [diff] [blame] | 155 | COMPAT_INTEL_IVYBRIDGE_FSP, /* Intel Ivy Bridge FSP */ |
Boris Brezillon | 4ccae81 | 2016-06-15 21:09:23 +0200 | [diff] [blame] | 156 | COMPAT_SUNXI_NAND, /* SUNXI NAND controller */ |
Ley Foon Tan | e11b5e8 | 2017-04-05 17:32:47 +0800 | [diff] [blame] | 157 | COMPAT_ALTERA_SOCFPGA_CLK, /* SoCFPGA Clock initialization */ |
| 158 | COMPAT_ALTERA_SOCFPGA_PINCTRL_SINGLE, /* SoCFPGA pinctrl-single */ |
| 159 | COMPAT_ALTERA_SOCFPGA_H2F_BRG, /* SoCFPGA hps2fpga bridge */ |
| 160 | COMPAT_ALTERA_SOCFPGA_LWH2F_BRG, /* SoCFPGA lwhps2fpga bridge */ |
| 161 | COMPAT_ALTERA_SOCFPGA_F2H_BRG, /* SoCFPGA fpga2hps bridge */ |
| 162 | COMPAT_ALTERA_SOCFPGA_F2SDR0, /* SoCFPGA fpga2SDRAM0 bridge */ |
| 163 | COMPAT_ALTERA_SOCFPGA_F2SDR1, /* SoCFPGA fpga2SDRAM1 bridge */ |
| 164 | COMPAT_ALTERA_SOCFPGA_F2SDR2, /* SoCFPGA fpga2SDRAM2 bridge */ |
Tien Fong Chee | eb57c0b | 2017-09-25 16:40:03 +0800 | [diff] [blame] | 165 | COMPAT_ALTERA_SOCFPGA_FPGA0, /* SOCFPGA FPGA manager */ |
| 166 | COMPAT_ALTERA_SOCFPGA_NOC, /* SOCFPGA Arria 10 NOC */ |
Marek Vasut | 19c8fc7 | 2018-05-12 11:56:10 +0200 | [diff] [blame] | 167 | COMPAT_ALTERA_SOCFPGA_CLK_INIT, /* SOCFPGA Arria 10 clk init */ |
Simon Glass | b5220bc | 2011-10-24 19:15:32 +0000 | [diff] [blame] | 168 | |
| 169 | COMPAT_COUNT, |
| 170 | }; |
| 171 | |
Simon Glass | 57068a7 | 2015-01-05 20:05:26 -0700 | [diff] [blame] | 172 | #define MAX_PHANDLE_ARGS 16 |
| 173 | struct fdtdec_phandle_args { |
| 174 | int node; |
| 175 | int args_count; |
| 176 | uint32_t args[MAX_PHANDLE_ARGS]; |
| 177 | }; |
| 178 | |
| 179 | /** |
| 180 | * fdtdec_parse_phandle_with_args() - Find a node pointed by phandle in a list |
| 181 | * |
| 182 | * This function is useful to parse lists of phandles and their arguments. |
| 183 | * |
| 184 | * Example: |
| 185 | * |
| 186 | * phandle1: node1 { |
| 187 | * #list-cells = <2>; |
| 188 | * } |
| 189 | * |
| 190 | * phandle2: node2 { |
| 191 | * #list-cells = <1>; |
| 192 | * } |
| 193 | * |
| 194 | * node3 { |
| 195 | * list = <&phandle1 1 2 &phandle2 3>; |
| 196 | * } |
| 197 | * |
| 198 | * To get a device_node of the `node2' node you may call this: |
| 199 | * fdtdec_parse_phandle_with_args(blob, node3, "list", "#list-cells", 0, 1, |
| 200 | * &args); |
| 201 | * |
| 202 | * (This function is a modified version of __of_parse_phandle_with_args() from |
| 203 | * Linux 3.18) |
| 204 | * |
| 205 | * @blob: Pointer to device tree |
| 206 | * @src_node: Offset of device tree node containing a list |
| 207 | * @list_name: property name that contains a list |
| 208 | * @cells_name: property name that specifies the phandles' arguments count, |
| 209 | * or NULL to use @cells_count |
| 210 | * @cells_count: Cell count to use if @cells_name is NULL |
| 211 | * @index: index of a phandle to parse out |
| 212 | * @out_args: optional pointer to output arguments structure (will be filled) |
| 213 | * @return 0 on success (with @out_args filled out if not NULL), -ENOENT if |
| 214 | * @list_name does not exist, a phandle was not found, @cells_name |
| 215 | * could not be found, the arguments were truncated or there were too |
| 216 | * many arguments. |
| 217 | * |
| 218 | */ |
| 219 | int fdtdec_parse_phandle_with_args(const void *blob, int src_node, |
| 220 | const char *list_name, |
| 221 | const char *cells_name, |
| 222 | int cell_count, int index, |
| 223 | struct fdtdec_phandle_args *out_args); |
| 224 | |
Sean Paul | 202ff75 | 2012-10-25 16:31:06 +0000 | [diff] [blame] | 225 | /** |
Simon Glass | b5220bc | 2011-10-24 19:15:32 +0000 | [diff] [blame] | 226 | * Find the next numbered alias for a peripheral. This is used to enumerate |
| 227 | * all the peripherals of a certain type. |
| 228 | * |
| 229 | * Do the first call with *upto = 0. Assuming /aliases/<name>0 exists then |
| 230 | * this function will return a pointer to the node the alias points to, and |
| 231 | * then update *upto to 1. Next time you call this function, the next node |
| 232 | * will be returned. |
| 233 | * |
| 234 | * All nodes returned will match the compatible ID, as it is assumed that |
| 235 | * all peripherals use the same driver. |
| 236 | * |
| 237 | * @param blob FDT blob to use |
| 238 | * @param name Root name of alias to search for |
| 239 | * @param id Compatible ID to look for |
| 240 | * @return offset of next compatible node, or -FDT_ERR_NOTFOUND if no more |
| 241 | */ |
| 242 | int fdtdec_next_alias(const void *blob, const char *name, |
| 243 | enum fdt_compat_id id, int *upto); |
| 244 | |
| 245 | /** |
Gerald Van Baren | 7cde397 | 2012-11-12 23:13:54 -0500 | [diff] [blame] | 246 | * Find the compatible ID for a given node. |
| 247 | * |
| 248 | * Generally each node has at least one compatible string attached to it. |
| 249 | * This function looks through our list of known compatible strings and |
| 250 | * returns the corresponding ID which matches the compatible string. |
| 251 | * |
| 252 | * @param blob FDT blob to use |
| 253 | * @param node Node containing compatible string to find |
| 254 | * @return compatible ID, or COMPAT_UNKNOWN if we cannot find a match |
| 255 | */ |
| 256 | enum fdt_compat_id fdtdec_lookup(const void *blob, int node); |
| 257 | |
| 258 | /** |
Simon Glass | f88fe2d | 2012-02-27 10:52:34 +0000 | [diff] [blame] | 259 | * Find the next compatible node for a peripheral. |
| 260 | * |
| 261 | * Do the first call with node = 0. This function will return a pointer to |
| 262 | * the next compatible node. Next time you call this function, pass the |
| 263 | * value returned, and the next node will be provided. |
| 264 | * |
| 265 | * @param blob FDT blob to use |
| 266 | * @param node Start node for search |
| 267 | * @param id Compatible ID to look for (enum fdt_compat_id) |
| 268 | * @return offset of next compatible node, or -FDT_ERR_NOTFOUND if no more |
| 269 | */ |
| 270 | int fdtdec_next_compatible(const void *blob, int node, |
| 271 | enum fdt_compat_id id); |
| 272 | |
| 273 | /** |
Simon Glass | 3ddecfc | 2012-04-02 13:18:42 +0000 | [diff] [blame] | 274 | * Find the next compatible subnode for a peripheral. |
| 275 | * |
| 276 | * Do the first call with node set to the parent and depth = 0. This |
| 277 | * function will return the offset of the next compatible node. Next time |
| 278 | * you call this function, pass the node value returned last time, with |
| 279 | * depth unchanged, and the next node will be provided. |
| 280 | * |
| 281 | * @param blob FDT blob to use |
| 282 | * @param node Start node for search |
| 283 | * @param id Compatible ID to look for (enum fdt_compat_id) |
| 284 | * @param depthp Current depth (set to 0 before first call) |
| 285 | * @return offset of next compatible node, or -FDT_ERR_NOTFOUND if no more |
| 286 | */ |
| 287 | int fdtdec_next_compatible_subnode(const void *blob, int node, |
| 288 | enum fdt_compat_id id, int *depthp); |
| 289 | |
Stephen Warren | 02464e3 | 2015-08-06 15:31:02 -0600 | [diff] [blame] | 290 | /* |
| 291 | * Look up an address property in a node and return the parsed address, and |
| 292 | * optionally the parsed size. |
| 293 | * |
| 294 | * This variant assumes a known and fixed number of cells are used to |
| 295 | * represent the address and size. |
| 296 | * |
| 297 | * You probably don't want to use this function directly except to parse |
| 298 | * non-standard properties, and never to parse the "reg" property. Instead, |
| 299 | * use one of the "auto" variants below, which automatically honor the |
| 300 | * #address-cells and #size-cells properties in the parent node. |
| 301 | * |
| 302 | * @param blob FDT blob |
| 303 | * @param node node to examine |
| 304 | * @param prop_name name of property to find |
| 305 | * @param index which address to retrieve from a list of addresses. Often 0. |
| 306 | * @param na the number of cells used to represent an address |
| 307 | * @param ns the number of cells used to represent a size |
| 308 | * @param sizep a pointer to store the size into. Use NULL if not required |
Stephen Warren | 6e06acb | 2016-08-05 09:47:51 -0600 | [diff] [blame] | 309 | * @param translate Indicates whether to translate the returned value |
| 310 | * using the parent node's ranges property. |
Stephen Warren | 02464e3 | 2015-08-06 15:31:02 -0600 | [diff] [blame] | 311 | * @return address, if found, or FDT_ADDR_T_NONE if not |
| 312 | */ |
| 313 | fdt_addr_t fdtdec_get_addr_size_fixed(const void *blob, int node, |
| 314 | const char *prop_name, int index, int na, int ns, |
Stephen Warren | 6e06acb | 2016-08-05 09:47:51 -0600 | [diff] [blame] | 315 | fdt_size_t *sizep, bool translate); |
Stephen Warren | 02464e3 | 2015-08-06 15:31:02 -0600 | [diff] [blame] | 316 | |
| 317 | /* |
| 318 | * Look up an address property in a node and return the parsed address, and |
| 319 | * optionally the parsed size. |
| 320 | * |
| 321 | * This variant automatically determines the number of cells used to represent |
| 322 | * the address and size by parsing the provided parent node's #address-cells |
| 323 | * and #size-cells properties. |
| 324 | * |
| 325 | * @param blob FDT blob |
| 326 | * @param parent parent node of @node |
| 327 | * @param node node to examine |
| 328 | * @param prop_name name of property to find |
| 329 | * @param index which address to retrieve from a list of addresses. Often 0. |
| 330 | * @param sizep a pointer to store the size into. Use NULL if not required |
Stephen Warren | 6e06acb | 2016-08-05 09:47:51 -0600 | [diff] [blame] | 331 | * @param translate Indicates whether to translate the returned value |
| 332 | * using the parent node's ranges property. |
Stephen Warren | 02464e3 | 2015-08-06 15:31:02 -0600 | [diff] [blame] | 333 | * @return address, if found, or FDT_ADDR_T_NONE if not |
| 334 | */ |
| 335 | fdt_addr_t fdtdec_get_addr_size_auto_parent(const void *blob, int parent, |
Stephen Warren | 6e06acb | 2016-08-05 09:47:51 -0600 | [diff] [blame] | 336 | int node, const char *prop_name, int index, fdt_size_t *sizep, |
| 337 | bool translate); |
Stephen Warren | 02464e3 | 2015-08-06 15:31:02 -0600 | [diff] [blame] | 338 | |
| 339 | /* |
| 340 | * Look up an address property in a node and return the parsed address, and |
| 341 | * optionally the parsed size. |
| 342 | * |
| 343 | * This variant automatically determines the number of cells used to represent |
| 344 | * the address and size by parsing the parent node's #address-cells |
| 345 | * and #size-cells properties. The parent node is automatically found. |
| 346 | * |
| 347 | * The automatic parent lookup implemented by this function is slow. |
| 348 | * Consequently, fdtdec_get_addr_size_auto_parent() should be used where |
| 349 | * possible. |
| 350 | * |
| 351 | * @param blob FDT blob |
| 352 | * @param parent parent node of @node |
| 353 | * @param node node to examine |
| 354 | * @param prop_name name of property to find |
| 355 | * @param index which address to retrieve from a list of addresses. Often 0. |
| 356 | * @param sizep a pointer to store the size into. Use NULL if not required |
Stephen Warren | 6e06acb | 2016-08-05 09:47:51 -0600 | [diff] [blame] | 357 | * @param translate Indicates whether to translate the returned value |
| 358 | * using the parent node's ranges property. |
Stephen Warren | 02464e3 | 2015-08-06 15:31:02 -0600 | [diff] [blame] | 359 | * @return address, if found, or FDT_ADDR_T_NONE if not |
| 360 | */ |
| 361 | fdt_addr_t fdtdec_get_addr_size_auto_noparent(const void *blob, int node, |
Stephen Warren | 6e06acb | 2016-08-05 09:47:51 -0600 | [diff] [blame] | 362 | const char *prop_name, int index, fdt_size_t *sizep, |
| 363 | bool translate); |
Stephen Warren | 02464e3 | 2015-08-06 15:31:02 -0600 | [diff] [blame] | 364 | |
| 365 | /* |
| 366 | * Look up an address property in a node and return the parsed address. |
| 367 | * |
| 368 | * This variant hard-codes the number of cells used to represent the address |
| 369 | * and size based on sizeof(fdt_addr_t) and sizeof(fdt_size_t). It also |
| 370 | * always returns the first address value in the property (index 0). |
| 371 | * |
| 372 | * Use of this function is not recommended due to the hard-coding of cell |
| 373 | * counts. There is no programmatic validation that these hard-coded values |
| 374 | * actually match the device tree content in any way at all. This assumption |
| 375 | * can be satisfied by manually ensuring CONFIG_PHYS_64BIT is appropriately |
| 376 | * set in the U-Boot build and exercising strict control over DT content to |
| 377 | * ensure use of matching #address-cells/#size-cells properties. However, this |
| 378 | * approach is error-prone; those familiar with DT will not expect the |
| 379 | * assumption to exist, and could easily invalidate it. If the assumption is |
| 380 | * invalidated, this function will not report the issue, and debugging will |
| 381 | * be required. Instead, use fdtdec_get_addr_size_auto_parent(). |
Simon Glass | b5220bc | 2011-10-24 19:15:32 +0000 | [diff] [blame] | 382 | * |
| 383 | * @param blob FDT blob |
| 384 | * @param node node to examine |
| 385 | * @param prop_name name of property to find |
| 386 | * @return address, if found, or FDT_ADDR_T_NONE if not |
| 387 | */ |
| 388 | fdt_addr_t fdtdec_get_addr(const void *blob, int node, |
| 389 | const char *prop_name); |
| 390 | |
Stephen Warren | 02464e3 | 2015-08-06 15:31:02 -0600 | [diff] [blame] | 391 | /* |
| 392 | * Look up an address property in a node and return the parsed address, and |
| 393 | * optionally the parsed size. |
| 394 | * |
| 395 | * This variant hard-codes the number of cells used to represent the address |
| 396 | * and size based on sizeof(fdt_addr_t) and sizeof(fdt_size_t). It also |
| 397 | * always returns the first address value in the property (index 0). |
| 398 | * |
| 399 | * Use of this function is not recommended due to the hard-coding of cell |
| 400 | * counts. There is no programmatic validation that these hard-coded values |
| 401 | * actually match the device tree content in any way at all. This assumption |
| 402 | * can be satisfied by manually ensuring CONFIG_PHYS_64BIT is appropriately |
| 403 | * set in the U-Boot build and exercising strict control over DT content to |
| 404 | * ensure use of matching #address-cells/#size-cells properties. However, this |
| 405 | * approach is error-prone; those familiar with DT will not expect the |
| 406 | * assumption to exist, and could easily invalidate it. If the assumption is |
| 407 | * invalidated, this function will not report the issue, and debugging will |
| 408 | * be required. Instead, use fdtdec_get_addr_size_auto_parent(). |
Simon Glass | 4397a2a | 2013-03-19 04:58:51 +0000 | [diff] [blame] | 409 | * |
| 410 | * @param blob FDT blob |
| 411 | * @param node node to examine |
| 412 | * @param prop_name name of property to find |
Stephen Warren | 02464e3 | 2015-08-06 15:31:02 -0600 | [diff] [blame] | 413 | * @param sizep a pointer to store the size into. Use NULL if not required |
Simon Glass | 4397a2a | 2013-03-19 04:58:51 +0000 | [diff] [blame] | 414 | * @return address, if found, or FDT_ADDR_T_NONE if not |
| 415 | */ |
| 416 | fdt_addr_t fdtdec_get_addr_size(const void *blob, int node, |
| 417 | const char *prop_name, fdt_size_t *sizep); |
| 418 | |
| 419 | /** |
Bin Meng | a62e84d | 2014-12-31 16:05:11 +0800 | [diff] [blame] | 420 | * Look at the compatible property of a device node that represents a PCI |
| 421 | * device and extract pci vendor id and device id from it. |
| 422 | * |
| 423 | * @param blob FDT blob |
| 424 | * @param node node to examine |
| 425 | * @param vendor vendor id of the pci device |
| 426 | * @param device device id of the pci device |
| 427 | * @return 0 if ok, negative on error |
| 428 | */ |
| 429 | int fdtdec_get_pci_vendev(const void *blob, int node, |
| 430 | u16 *vendor, u16 *device); |
| 431 | |
| 432 | /** |
| 433 | * Look at the pci address of a device node that represents a PCI device |
Bin Meng | a62e84d | 2014-12-31 16:05:11 +0800 | [diff] [blame] | 434 | * and return base address of the pci device's registers. |
| 435 | * |
Simon Glass | fcc0a87 | 2015-11-29 13:17:54 -0700 | [diff] [blame] | 436 | * @param dev device to examine |
Bin Meng | a62e84d | 2014-12-31 16:05:11 +0800 | [diff] [blame] | 437 | * @param addr pci address in the form of fdt_pci_addr |
| 438 | * @param bar returns base address of the pci device's registers |
| 439 | * @return 0 if ok, negative on error |
| 440 | */ |
Simon Glass | fcc0a87 | 2015-11-29 13:17:54 -0700 | [diff] [blame] | 441 | int fdtdec_get_pci_bar32(struct udevice *dev, struct fdt_pci_addr *addr, |
| 442 | u32 *bar); |
Bin Meng | a62e84d | 2014-12-31 16:05:11 +0800 | [diff] [blame] | 443 | |
| 444 | /** |
Simon Glass | b5220bc | 2011-10-24 19:15:32 +0000 | [diff] [blame] | 445 | * Look up a 32-bit integer property in a node and return it. The property |
| 446 | * must have at least 4 bytes of data. The value of the first cell is |
| 447 | * returned. |
| 448 | * |
| 449 | * @param blob FDT blob |
| 450 | * @param node node to examine |
| 451 | * @param prop_name name of property to find |
| 452 | * @param default_val default value to return if the property is not found |
| 453 | * @return integer value, if found, or default_val if not |
| 454 | */ |
| 455 | s32 fdtdec_get_int(const void *blob, int node, const char *prop_name, |
| 456 | s32 default_val); |
| 457 | |
| 458 | /** |
Chin Liang See | bfa3e55 | 2015-10-17 08:30:32 -0500 | [diff] [blame] | 459 | * Unsigned version of fdtdec_get_int. The property must have at least |
| 460 | * 4 bytes of data. The value of the first cell is returned. |
| 461 | * |
| 462 | * @param blob FDT blob |
| 463 | * @param node node to examine |
| 464 | * @param prop_name name of property to find |
| 465 | * @param default_val default value to return if the property is not found |
| 466 | * @return unsigned integer value, if found, or default_val if not |
| 467 | */ |
| 468 | unsigned int fdtdec_get_uint(const void *blob, int node, const char *prop_name, |
| 469 | unsigned int default_val); |
| 470 | |
| 471 | /** |
Simon Glass | 5f7bfdd | 2015-03-05 12:25:14 -0700 | [diff] [blame] | 472 | * Get a variable-sized number from a property |
| 473 | * |
| 474 | * This reads a number from one or more cells. |
| 475 | * |
| 476 | * @param ptr Pointer to property |
| 477 | * @param cells Number of cells containing the number |
| 478 | * @return the value in the cells |
| 479 | */ |
| 480 | u64 fdtdec_get_number(const fdt32_t *ptr, unsigned int cells); |
| 481 | |
| 482 | /** |
Che-Liang Chiou | aadef0a | 2012-10-25 16:31:05 +0000 | [diff] [blame] | 483 | * Look up a 64-bit integer property in a node and return it. The property |
| 484 | * must have at least 8 bytes of data (2 cells). The first two cells are |
| 485 | * concatenated to form a 8 bytes value, where the first cell is top half and |
| 486 | * the second cell is bottom half. |
| 487 | * |
| 488 | * @param blob FDT blob |
| 489 | * @param node node to examine |
| 490 | * @param prop_name name of property to find |
| 491 | * @param default_val default value to return if the property is not found |
| 492 | * @return integer value, if found, or default_val if not |
| 493 | */ |
| 494 | uint64_t fdtdec_get_uint64(const void *blob, int node, const char *prop_name, |
| 495 | uint64_t default_val); |
| 496 | |
| 497 | /** |
Simon Glass | b5220bc | 2011-10-24 19:15:32 +0000 | [diff] [blame] | 498 | * Checks whether a node is enabled. |
| 499 | * This looks for a 'status' property. If this exists, then returns 1 if |
| 500 | * the status is 'ok' and 0 otherwise. If there is no status property, |
Simon Glass | f88fe2d | 2012-02-27 10:52:34 +0000 | [diff] [blame] | 501 | * it returns 1 on the assumption that anything mentioned should be enabled |
| 502 | * by default. |
Simon Glass | b5220bc | 2011-10-24 19:15:32 +0000 | [diff] [blame] | 503 | * |
| 504 | * @param blob FDT blob |
| 505 | * @param node node to examine |
Simon Glass | f88fe2d | 2012-02-27 10:52:34 +0000 | [diff] [blame] | 506 | * @return integer value 0 (not enabled) or 1 (enabled) |
Simon Glass | b5220bc | 2011-10-24 19:15:32 +0000 | [diff] [blame] | 507 | */ |
Simon Glass | f88fe2d | 2012-02-27 10:52:34 +0000 | [diff] [blame] | 508 | int fdtdec_get_is_enabled(const void *blob, int node); |
Simon Glass | b5220bc | 2011-10-24 19:15:32 +0000 | [diff] [blame] | 509 | |
| 510 | /** |
Simon Glass | 9a263e5 | 2012-03-28 10:08:24 +0000 | [diff] [blame] | 511 | * Make sure we have a valid fdt available to control U-Boot. |
| 512 | * |
| 513 | * If not, a message is printed to the console if the console is ready. |
| 514 | * |
| 515 | * @return 0 if all ok, -1 if not |
| 516 | */ |
| 517 | int fdtdec_prepare_fdt(void); |
| 518 | |
| 519 | /** |
| 520 | * Checks that we have a valid fdt available to control U-Boot. |
| 521 | |
| 522 | * However, if not then for the moment nothing is done, since this function |
| 523 | * is called too early to panic(). |
| 524 | * |
| 525 | * @returns 0 |
Simon Glass | b5220bc | 2011-10-24 19:15:32 +0000 | [diff] [blame] | 526 | */ |
| 527 | int fdtdec_check_fdt(void); |
Simon Glass | a53f4a2 | 2012-01-17 08:20:50 +0000 | [diff] [blame] | 528 | |
| 529 | /** |
| 530 | * Find the nodes for a peripheral and return a list of them in the correct |
| 531 | * order. This is used to enumerate all the peripherals of a certain type. |
| 532 | * |
| 533 | * To use this, optionally set up a /aliases node with alias properties for |
| 534 | * a peripheral. For example, for usb you could have: |
| 535 | * |
| 536 | * aliases { |
| 537 | * usb0 = "/ehci@c5008000"; |
| 538 | * usb1 = "/ehci@c5000000"; |
| 539 | * }; |
| 540 | * |
| 541 | * Pass "usb" as the name to this function and will return a list of two |
| 542 | * nodes offsets: /ehci@c5008000 and ehci@c5000000. |
| 543 | * |
| 544 | * All nodes returned will match the compatible ID, as it is assumed that |
| 545 | * all peripherals use the same driver. |
| 546 | * |
| 547 | * If no alias node is found, then the node list will be returned in the |
| 548 | * order found in the fdt. If the aliases mention a node which doesn't |
| 549 | * exist, then this will be ignored. If nodes are found with no aliases, |
| 550 | * they will be added in any order. |
| 551 | * |
| 552 | * If there is a gap in the aliases, then this function return a 0 node at |
| 553 | * that position. The return value will also count these gaps. |
| 554 | * |
| 555 | * This function checks node properties and will not return nodes which are |
| 556 | * marked disabled (status = "disabled"). |
| 557 | * |
| 558 | * @param blob FDT blob to use |
| 559 | * @param name Root name of alias to search for |
| 560 | * @param id Compatible ID to look for |
| 561 | * @param node_list Place to put list of found nodes |
| 562 | * @param maxcount Maximum number of nodes to find |
Robert P. J. Day | 1cc0a9f | 2016-05-04 04:47:31 -0400 | [diff] [blame] | 563 | * @return number of nodes found on success, FDT_ERR_... on error |
Simon Glass | a53f4a2 | 2012-01-17 08:20:50 +0000 | [diff] [blame] | 564 | */ |
| 565 | int fdtdec_find_aliases_for_id(const void *blob, const char *name, |
| 566 | enum fdt_compat_id id, int *node_list, int maxcount); |
| 567 | |
| 568 | /* |
Simon Glass | c678227 | 2012-02-03 15:13:53 +0000 | [diff] [blame] | 569 | * This function is similar to fdtdec_find_aliases_for_id() except that it |
| 570 | * adds to the node_list that is passed in. Any 0 elements are considered |
| 571 | * available for allocation - others are considered already used and are |
| 572 | * skipped. |
| 573 | * |
| 574 | * You can use this by calling fdtdec_find_aliases_for_id() with an |
| 575 | * uninitialised array, then setting the elements that are returned to -1, |
| 576 | * say, then calling this function, perhaps with a different compat id. |
| 577 | * Any elements you get back that are >0 are new nodes added by the call |
| 578 | * to this function. |
| 579 | * |
| 580 | * Note that if you have some nodes with aliases and some without, you are |
| 581 | * sailing close to the wind. The call to fdtdec_find_aliases_for_id() with |
| 582 | * one compat_id may fill in positions for which you have aliases defined |
| 583 | * for another compat_id. When you later call *this* function with the second |
| 584 | * compat_id, the alias positions may already be used. A debug warning may |
| 585 | * be generated in this case, but it is safest to define aliases for all |
| 586 | * nodes when you care about the ordering. |
| 587 | */ |
| 588 | int fdtdec_add_aliases_for_id(const void *blob, const char *name, |
| 589 | enum fdt_compat_id id, int *node_list, int maxcount); |
| 590 | |
Simon Glass | 5c33c9f | 2014-07-23 06:55:09 -0600 | [diff] [blame] | 591 | /** |
| 592 | * Get the alias sequence number of a node |
| 593 | * |
| 594 | * This works out whether a node is pointed to by an alias, and if so, the |
| 595 | * sequence number of that alias. Aliases are of the form <base><num> where |
| 596 | * <num> is the sequence number. For example spi2 would be sequence number |
| 597 | * 2. |
| 598 | * |
| 599 | * @param blob Device tree blob (if NULL, then error is returned) |
| 600 | * @param base Base name for alias (before the underscore) |
| 601 | * @param node Node to look up |
| 602 | * @param seqp This is set to the sequence number if one is found, |
| 603 | * but otherwise the value is left alone |
| 604 | * @return 0 if a sequence was found, -ve if not |
| 605 | */ |
| 606 | int fdtdec_get_alias_seq(const void *blob, const char *base, int node, |
| 607 | int *seqp); |
| 608 | |
Simon Glass | 3234aa4 | 2014-07-23 06:55:16 -0600 | [diff] [blame] | 609 | /** |
Michal Simek | 003c9dc | 2019-01-31 16:30:58 +0100 | [diff] [blame] | 610 | * Get the highest alias number for susbystem. |
| 611 | * |
| 612 | * It parses all aliases and find out highest recorded alias for subsystem. |
| 613 | * Aliases are of the form <base><num> where <num> is the sequence number. |
| 614 | * |
| 615 | * @param blob Device tree blob (if NULL, then error is returned) |
| 616 | * @param base Base name for alias susbystem (before the number) |
| 617 | * |
| 618 | * @return 0 highest alias ID, -1 if not found |
| 619 | */ |
| 620 | int fdtdec_get_alias_highest_id(const void *blob, const char *base); |
| 621 | |
| 622 | /** |
Simon Glass | 3bc37a5 | 2015-10-17 19:41:14 -0600 | [diff] [blame] | 623 | * Get a property from the /chosen node |
| 624 | * |
| 625 | * @param blob Device tree blob (if NULL, then NULL is returned) |
| 626 | * @param name Property name to look up |
| 627 | * @return Value of property, or NULL if it does not exist |
| 628 | */ |
| 629 | const char *fdtdec_get_chosen_prop(const void *blob, const char *name); |
| 630 | |
| 631 | /** |
| 632 | * Get the offset of the given /chosen node |
Simon Glass | aac07d4 | 2014-09-04 16:27:24 -0600 | [diff] [blame] | 633 | * |
| 634 | * This looks up a property in /chosen containing the path to another node, |
| 635 | * then finds the offset of that node. |
| 636 | * |
| 637 | * @param blob Device tree blob (if NULL, then error is returned) |
| 638 | * @param name Property name, e.g. "stdout-path" |
| 639 | * @return Node offset referred to by that chosen node, or -ve FDT_ERR_... |
| 640 | */ |
| 641 | int fdtdec_get_chosen_node(const void *blob, const char *name); |
| 642 | |
Simon Glass | c678227 | 2012-02-03 15:13:53 +0000 | [diff] [blame] | 643 | /* |
Simon Glass | a53f4a2 | 2012-01-17 08:20:50 +0000 | [diff] [blame] | 644 | * Get the name for a compatible ID |
| 645 | * |
| 646 | * @param id Compatible ID to look for |
| 647 | * @return compatible string for that id |
| 648 | */ |
| 649 | const char *fdtdec_get_compatible(enum fdt_compat_id id); |
Simon Glass | d17da65 | 2012-02-27 10:52:35 +0000 | [diff] [blame] | 650 | |
| 651 | /* Look up a phandle and follow it to its node. Then return the offset |
| 652 | * of that node. |
| 653 | * |
| 654 | * @param blob FDT blob |
| 655 | * @param node node to examine |
| 656 | * @param prop_name name of property to find |
| 657 | * @return node offset if found, -ve error code on error |
| 658 | */ |
| 659 | int fdtdec_lookup_phandle(const void *blob, int node, const char *prop_name); |
| 660 | |
| 661 | /** |
| 662 | * Look up a property in a node and return its contents in an integer |
| 663 | * array of given length. The property must have at least enough data for |
| 664 | * the array (4*count bytes). It may have more, but this will be ignored. |
| 665 | * |
| 666 | * @param blob FDT blob |
| 667 | * @param node node to examine |
| 668 | * @param prop_name name of property to find |
| 669 | * @param array array to fill with data |
| 670 | * @param count number of array elements |
| 671 | * @return 0 if ok, or -FDT_ERR_NOTFOUND if the property is not found, |
| 672 | * or -FDT_ERR_BADLAYOUT if not enough data |
| 673 | */ |
| 674 | int fdtdec_get_int_array(const void *blob, int node, const char *prop_name, |
| 675 | u32 *array, int count); |
| 676 | |
| 677 | /** |
Simon Glass | a9f04d4 | 2014-11-10 18:00:19 -0700 | [diff] [blame] | 678 | * Look up a property in a node and return its contents in an integer |
| 679 | * array of given length. The property must exist but may have less data that |
| 680 | * expected (4*count bytes). It may have more, but this will be ignored. |
| 681 | * |
| 682 | * @param blob FDT blob |
| 683 | * @param node node to examine |
| 684 | * @param prop_name name of property to find |
| 685 | * @param array array to fill with data |
| 686 | * @param count number of array elements |
| 687 | * @return number of array elements if ok, or -FDT_ERR_NOTFOUND if the |
| 688 | * property is not found |
| 689 | */ |
| 690 | int fdtdec_get_int_array_count(const void *blob, int node, |
| 691 | const char *prop_name, u32 *array, int count); |
| 692 | |
| 693 | /** |
Simon Glass | 96875e7 | 2012-04-02 13:18:41 +0000 | [diff] [blame] | 694 | * Look up a property in a node and return a pointer to its contents as a |
| 695 | * unsigned int array of given length. The property must have at least enough |
| 696 | * data for the array ('count' cells). It may have more, but this will be |
| 697 | * ignored. The data is not copied. |
| 698 | * |
| 699 | * Note that you must access elements of the array with fdt32_to_cpu(), |
| 700 | * since the elements will be big endian even on a little endian machine. |
| 701 | * |
| 702 | * @param blob FDT blob |
| 703 | * @param node node to examine |
| 704 | * @param prop_name name of property to find |
| 705 | * @param count number of array elements |
| 706 | * @return pointer to array if found, or NULL if the property is not |
| 707 | * found or there is not enough data |
| 708 | */ |
| 709 | const u32 *fdtdec_locate_array(const void *blob, int node, |
| 710 | const char *prop_name, int count); |
| 711 | |
| 712 | /** |
Simon Glass | d17da65 | 2012-02-27 10:52:35 +0000 | [diff] [blame] | 713 | * Look up a boolean property in a node and return it. |
| 714 | * |
| 715 | * A boolean properly is true if present in the device tree and false if not |
| 716 | * present, regardless of its value. |
| 717 | * |
| 718 | * @param blob FDT blob |
| 719 | * @param node node to examine |
| 720 | * @param prop_name name of property to find |
| 721 | * @return 1 if the properly is present; 0 if it isn't present |
| 722 | */ |
| 723 | int fdtdec_get_bool(const void *blob, int node, const char *prop_name); |
Simon Glass | ed3ee5c | 2012-02-27 10:52:36 +0000 | [diff] [blame] | 724 | |
Peng Fan | 1889a7e | 2016-02-01 13:31:15 +0800 | [diff] [blame] | 725 | /* |
| 726 | * Count child nodes of one parent node. |
| 727 | * |
| 728 | * @param blob FDT blob |
| 729 | * @param node parent node |
| 730 | * @return number of child node; 0 if there is not child node |
| 731 | */ |
| 732 | int fdtdec_get_child_count(const void *blob, int node); |
| 733 | |
Simon Glass | ed3ee5c | 2012-02-27 10:52:36 +0000 | [diff] [blame] | 734 | /** |
Abhilash Kesavan | 09258f1 | 2012-10-25 16:30:58 +0000 | [diff] [blame] | 735 | * Look in the FDT for a config item with the given name and return its value |
| 736 | * as a 32-bit integer. The property must have at least 4 bytes of data. The |
| 737 | * value of the first cell is returned. |
| 738 | * |
| 739 | * @param blob FDT blob to use |
| 740 | * @param prop_name Node property name |
| 741 | * @param default_val default value to return if the property is not found |
| 742 | * @return integer value, if found, or default_val if not |
| 743 | */ |
| 744 | int fdtdec_get_config_int(const void *blob, const char *prop_name, |
| 745 | int default_val); |
| 746 | |
Simon Glass | 332ab0d | 2012-10-25 16:30:59 +0000 | [diff] [blame] | 747 | /** |
Gabe Black | 79289c0 | 2012-10-25 16:31:04 +0000 | [diff] [blame] | 748 | * Look in the FDT for a config item with the given name |
| 749 | * and return whether it exists. |
| 750 | * |
| 751 | * @param blob FDT blob |
| 752 | * @param prop_name property name to look up |
| 753 | * @return 1, if it exists, or 0 if not |
| 754 | */ |
| 755 | int fdtdec_get_config_bool(const void *blob, const char *prop_name); |
| 756 | |
| 757 | /** |
Simon Glass | 332ab0d | 2012-10-25 16:30:59 +0000 | [diff] [blame] | 758 | * Look in the FDT for a config item with the given name and return its value |
| 759 | * as a string. |
| 760 | * |
| 761 | * @param blob FDT blob |
| 762 | * @param prop_name property name to look up |
| 763 | * @returns property string, NULL on error. |
| 764 | */ |
| 765 | char *fdtdec_get_config_string(const void *blob, const char *prop_name); |
| 766 | |
Anton Staff | bed4d89 | 2012-04-17 09:01:28 +0000 | [diff] [blame] | 767 | /* |
| 768 | * Look up a property in a node and return its contents in a byte |
| 769 | * array of given length. The property must have at least enough data for |
| 770 | * the array (count bytes). It may have more, but this will be ignored. |
| 771 | * |
| 772 | * @param blob FDT blob |
| 773 | * @param node node to examine |
| 774 | * @param prop_name name of property to find |
| 775 | * @param array array to fill with data |
| 776 | * @param count number of array elements |
| 777 | * @return 0 if ok, or -FDT_ERR_MISSING if the property is not found, |
| 778 | * or -FDT_ERR_BADLAYOUT if not enough data |
| 779 | */ |
| 780 | int fdtdec_get_byte_array(const void *blob, int node, const char *prop_name, |
| 781 | u8 *array, int count); |
| 782 | |
| 783 | /** |
| 784 | * Look up a property in a node and return a pointer to its contents as a |
| 785 | * byte array of given length. The property must have at least enough data |
| 786 | * for the array (count bytes). It may have more, but this will be ignored. |
| 787 | * The data is not copied. |
| 788 | * |
| 789 | * @param blob FDT blob |
| 790 | * @param node node to examine |
| 791 | * @param prop_name name of property to find |
| 792 | * @param count number of array elements |
| 793 | * @return pointer to byte array if found, or NULL if the property is not |
| 794 | * found or there is not enough data |
| 795 | */ |
| 796 | const u8 *fdtdec_locate_byte_array(const void *blob, int node, |
| 797 | const char *prop_name, int count); |
Simon Glass | f20c461 | 2012-10-25 16:31:00 +0000 | [diff] [blame] | 798 | |
| 799 | /** |
Thierry Reding | 56f4224 | 2014-08-26 17:33:53 +0200 | [diff] [blame] | 800 | * Obtain an indexed resource from a device property. |
| 801 | * |
| 802 | * @param fdt FDT blob |
| 803 | * @param node node to examine |
| 804 | * @param property name of the property to parse |
| 805 | * @param index index of the resource to retrieve |
| 806 | * @param res returns the resource |
| 807 | * @return 0 if ok, negative on error |
| 808 | */ |
| 809 | int fdt_get_resource(const void *fdt, int node, const char *property, |
| 810 | unsigned int index, struct fdt_resource *res); |
| 811 | |
| 812 | /** |
| 813 | * Obtain a named resource from a device property. |
| 814 | * |
| 815 | * Look up the index of the name in a list of strings and return the resource |
| 816 | * at that index. |
| 817 | * |
| 818 | * @param fdt FDT blob |
| 819 | * @param node node to examine |
| 820 | * @param property name of the property to parse |
| 821 | * @param prop_names name of the property containing the list of names |
| 822 | * @param name the name of the entry to look up |
| 823 | * @param res returns the resource |
| 824 | */ |
| 825 | int fdt_get_named_resource(const void *fdt, int node, const char *property, |
| 826 | const char *prop_names, const char *name, |
| 827 | struct fdt_resource *res); |
| 828 | |
Simon Glass | 12e6711 | 2015-04-14 21:03:21 -0600 | [diff] [blame] | 829 | /* Display timings from linux include/video/display_timing.h */ |
| 830 | enum display_flags { |
| 831 | DISPLAY_FLAGS_HSYNC_LOW = 1 << 0, |
| 832 | DISPLAY_FLAGS_HSYNC_HIGH = 1 << 1, |
| 833 | DISPLAY_FLAGS_VSYNC_LOW = 1 << 2, |
| 834 | DISPLAY_FLAGS_VSYNC_HIGH = 1 << 3, |
| 835 | |
| 836 | /* data enable flag */ |
| 837 | DISPLAY_FLAGS_DE_LOW = 1 << 4, |
| 838 | DISPLAY_FLAGS_DE_HIGH = 1 << 5, |
| 839 | /* drive data on pos. edge */ |
| 840 | DISPLAY_FLAGS_PIXDATA_POSEDGE = 1 << 6, |
| 841 | /* drive data on neg. edge */ |
| 842 | DISPLAY_FLAGS_PIXDATA_NEGEDGE = 1 << 7, |
| 843 | DISPLAY_FLAGS_INTERLACED = 1 << 8, |
| 844 | DISPLAY_FLAGS_DOUBLESCAN = 1 << 9, |
| 845 | DISPLAY_FLAGS_DOUBLECLK = 1 << 10, |
| 846 | }; |
| 847 | |
| 848 | /* |
| 849 | * A single signal can be specified via a range of minimal and maximal values |
| 850 | * with a typical value, that lies somewhere inbetween. |
| 851 | */ |
| 852 | struct timing_entry { |
| 853 | u32 min; |
| 854 | u32 typ; |
| 855 | u32 max; |
| 856 | }; |
| 857 | |
| 858 | /* |
| 859 | * Single "mode" entry. This describes one set of signal timings a display can |
| 860 | * have in one setting. This struct can later be converted to struct videomode |
| 861 | * (see include/video/videomode.h). As each timing_entry can be defined as a |
| 862 | * range, one struct display_timing may become multiple struct videomodes. |
| 863 | * |
| 864 | * Example: hsync active high, vsync active low |
| 865 | * |
| 866 | * Active Video |
| 867 | * Video ______________________XXXXXXXXXXXXXXXXXXXXXX_____________________ |
| 868 | * |<- sync ->|<- back ->|<----- active ----->|<- front ->|<- sync.. |
| 869 | * | | porch | | porch | |
| 870 | * |
| 871 | * HSync _|¯¯¯¯¯¯¯¯¯¯|___________________________________________|¯¯¯¯¯¯¯¯¯ |
| 872 | * |
| 873 | * VSync ¯|__________|¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯|_________ |
| 874 | */ |
| 875 | struct display_timing { |
| 876 | struct timing_entry pixelclock; |
| 877 | |
| 878 | struct timing_entry hactive; /* hor. active video */ |
| 879 | struct timing_entry hfront_porch; /* hor. front porch */ |
| 880 | struct timing_entry hback_porch; /* hor. back porch */ |
| 881 | struct timing_entry hsync_len; /* hor. sync len */ |
| 882 | |
| 883 | struct timing_entry vactive; /* ver. active video */ |
| 884 | struct timing_entry vfront_porch; /* ver. front porch */ |
| 885 | struct timing_entry vback_porch; /* ver. back porch */ |
| 886 | struct timing_entry vsync_len; /* ver. sync len */ |
| 887 | |
| 888 | enum display_flags flags; /* display flags */ |
Jernej Skrabec | 43c6bdd | 2017-04-29 14:43:36 +0200 | [diff] [blame] | 889 | bool hdmi_monitor; /* is hdmi monitor? */ |
Simon Glass | 12e6711 | 2015-04-14 21:03:21 -0600 | [diff] [blame] | 890 | }; |
| 891 | |
| 892 | /** |
| 893 | * fdtdec_decode_display_timing() - decode display timings |
| 894 | * |
| 895 | * Decode display timings from the supplied 'display-timings' node. |
| 896 | * See doc/device-tree-bindings/video/display-timing.txt for binding |
| 897 | * information. |
| 898 | * |
| 899 | * @param blob FDT blob |
| 900 | * @param node 'display-timing' node containing the timing subnodes |
| 901 | * @param index Index number to read (0=first timing subnode) |
| 902 | * @param config Place to put timings |
| 903 | * @return 0 if OK, -FDT_ERR_NOTFOUND if not found |
| 904 | */ |
| 905 | int fdtdec_decode_display_timing(const void *blob, int node, int index, |
| 906 | struct display_timing *config); |
Nathan Rossi | 623f601 | 2016-12-19 00:03:34 +1000 | [diff] [blame] | 907 | |
| 908 | /** |
Marek Vasut | 3ebe09d | 2019-03-05 04:25:54 +0100 | [diff] [blame] | 909 | * fdtdec_setup_mem_size_base_fdt() - decode and setup gd->ram_size and |
| 910 | * gd->ram_start |
| 911 | * |
| 912 | * Decode the /memory 'reg' property to determine the size and start of the |
| 913 | * first memory bank, populate the global data with the size and start of the |
| 914 | * first bank of memory. |
| 915 | * |
| 916 | * This function should be called from a boards dram_init(). This helper |
| 917 | * function allows for boards to query the device tree for DRAM size and start |
| 918 | * address instead of hard coding the value in the case where the memory size |
| 919 | * and start address cannot be detected automatically. |
| 920 | * |
| 921 | * @param blob FDT blob |
| 922 | * |
| 923 | * @return 0 if OK, -EINVAL if the /memory node or reg property is missing or |
| 924 | * invalid |
| 925 | */ |
| 926 | int fdtdec_setup_mem_size_base_fdt(const void *blob); |
| 927 | |
| 928 | /** |
Siva Durga Prasad Paladugu | 12308b1 | 2018-07-16 15:56:11 +0530 | [diff] [blame] | 929 | * fdtdec_setup_mem_size_base() - decode and setup gd->ram_size and |
| 930 | * gd->ram_start |
Nathan Rossi | 623f601 | 2016-12-19 00:03:34 +1000 | [diff] [blame] | 931 | * |
Siva Durga Prasad Paladugu | 12308b1 | 2018-07-16 15:56:11 +0530 | [diff] [blame] | 932 | * Decode the /memory 'reg' property to determine the size and start of the |
| 933 | * first memory bank, populate the global data with the size and start of the |
| 934 | * first bank of memory. |
Nathan Rossi | 623f601 | 2016-12-19 00:03:34 +1000 | [diff] [blame] | 935 | * |
| 936 | * This function should be called from a boards dram_init(). This helper |
Siva Durga Prasad Paladugu | 12308b1 | 2018-07-16 15:56:11 +0530 | [diff] [blame] | 937 | * function allows for boards to query the device tree for DRAM size and start |
| 938 | * address instead of hard coding the value in the case where the memory size |
| 939 | * and start address cannot be detected automatically. |
Nathan Rossi | 623f601 | 2016-12-19 00:03:34 +1000 | [diff] [blame] | 940 | * |
| 941 | * @return 0 if OK, -EINVAL if the /memory node or reg property is missing or |
| 942 | * invalid |
| 943 | */ |
Siva Durga Prasad Paladugu | 12308b1 | 2018-07-16 15:56:11 +0530 | [diff] [blame] | 944 | int fdtdec_setup_mem_size_base(void); |
Nathan Rossi | 623f601 | 2016-12-19 00:03:34 +1000 | [diff] [blame] | 945 | |
| 946 | /** |
Marek Vasut | 118f4d4 | 2019-03-05 04:25:55 +0100 | [diff] [blame] | 947 | * fdtdec_setup_memory_banksize_fdt() - decode and populate gd->bd->bi_dram |
| 948 | * |
| 949 | * Decode the /memory 'reg' property to determine the address and size of the |
| 950 | * memory banks. Use this data to populate the global data board info with the |
| 951 | * phys address and size of memory banks. |
| 952 | * |
| 953 | * This function should be called from a boards dram_init_banksize(). This |
| 954 | * helper function allows for boards to query the device tree for memory bank |
| 955 | * information instead of hard coding the information in cases where it cannot |
| 956 | * be detected automatically. |
| 957 | * |
| 958 | * @param blob FDT blob |
| 959 | * |
| 960 | * @return 0 if OK, -EINVAL if the /memory node or reg property is missing or |
| 961 | * invalid |
| 962 | */ |
| 963 | int fdtdec_setup_memory_banksize_fdt(const void *blob); |
| 964 | |
| 965 | /** |
Nathan Rossi | 623f601 | 2016-12-19 00:03:34 +1000 | [diff] [blame] | 966 | * fdtdec_setup_memory_banksize() - decode and populate gd->bd->bi_dram |
| 967 | * |
| 968 | * Decode the /memory 'reg' property to determine the address and size of the |
| 969 | * memory banks. Use this data to populate the global data board info with the |
| 970 | * phys address and size of memory banks. |
| 971 | * |
| 972 | * This function should be called from a boards dram_init_banksize(). This |
| 973 | * helper function allows for boards to query the device tree for memory bank |
| 974 | * information instead of hard coding the information in cases where it cannot |
| 975 | * be detected automatically. |
| 976 | * |
| 977 | * @return 0 if OK, -EINVAL if the /memory node or reg property is missing or |
| 978 | * invalid |
| 979 | */ |
| 980 | int fdtdec_setup_memory_banksize(void); |
| 981 | |
Simon Glass | b45122f | 2015-02-27 22:06:34 -0700 | [diff] [blame] | 982 | /** |
Thierry Reding | ebf30e8 | 2019-04-15 11:32:13 +0200 | [diff] [blame] | 983 | * fdtdec_set_ethernet_mac_address() - set MAC address for default interface |
| 984 | * |
| 985 | * Looks up the default interface via the "ethernet" alias (in the /aliases |
| 986 | * node) and stores the given MAC in its "local-mac-address" property. This |
| 987 | * is useful on platforms that store the MAC address in a custom location. |
| 988 | * Board code can call this in the late init stage to make sure that the |
| 989 | * interface device tree node has the right MAC address configured for the |
| 990 | * Ethernet uclass to pick it up. |
| 991 | * |
| 992 | * Typically the FDT passed into this function will be U-Boot's control DTB. |
| 993 | * Given that a lot of code may be holding offsets to various nodes in that |
| 994 | * tree, this code will only set the "local-mac-address" property in-place, |
| 995 | * which means that it needs to exist and have space for the 6-byte address. |
| 996 | * This ensures that the operation is non-destructive and does not invalidate |
| 997 | * offsets that other drivers may be using. |
| 998 | * |
| 999 | * @param fdt FDT blob |
| 1000 | * @param mac buffer containing the MAC address to set |
| 1001 | * @param size size of MAC address |
| 1002 | * @return 0 on success or a negative error code on failure |
| 1003 | */ |
| 1004 | int fdtdec_set_ethernet_mac_address(void *fdt, const u8 *mac, size_t size); |
| 1005 | |
| 1006 | /** |
Thierry Reding | 8153d53 | 2019-03-21 19:10:01 +0100 | [diff] [blame] | 1007 | * fdtdec_set_phandle() - sets the phandle of a given node |
| 1008 | * |
| 1009 | * @param blob FDT blob |
| 1010 | * @param node offset in the FDT blob of the node whose phandle is to |
| 1011 | * be set |
| 1012 | * @param phandle phandle to set for the given node |
| 1013 | * @return 0 on success or a negative error code on failure |
| 1014 | */ |
Thierry Reding | d81d969 | 2019-04-15 10:08:20 +0200 | [diff] [blame] | 1015 | static inline int fdtdec_set_phandle(void *blob, int node, uint32_t phandle) |
| 1016 | { |
| 1017 | return fdt_setprop_u32(blob, node, "phandle", phandle); |
| 1018 | } |
Thierry Reding | 8153d53 | 2019-03-21 19:10:01 +0100 | [diff] [blame] | 1019 | |
| 1020 | /** |
Thierry Reding | c9222a0 | 2019-03-21 19:10:02 +0100 | [diff] [blame] | 1021 | * fdtdec_add_reserved_memory() - add or find a reserved-memory node |
| 1022 | * |
| 1023 | * If a reserved-memory node already exists for the given carveout, a phandle |
| 1024 | * for that node will be returned. Otherwise a new node will be created and a |
| 1025 | * phandle corresponding to it will be returned. |
| 1026 | * |
| 1027 | * See Documentation/devicetree/bindings/reserved-memory/reserved-memory.txt |
| 1028 | * for details on how to use reserved memory regions. |
| 1029 | * |
| 1030 | * As an example, consider the following code snippet: |
| 1031 | * |
| 1032 | * struct fdt_memory fb = { |
| 1033 | * .start = 0x92cb3000, |
| 1034 | * .end = 0x934b2fff, |
| 1035 | * }; |
| 1036 | * uint32_t phandle; |
| 1037 | * |
| 1038 | * fdtdec_add_reserved_memory(fdt, "framebuffer", &fb, &phandle); |
| 1039 | * |
| 1040 | * This results in the following subnode being added to the top-level |
| 1041 | * /reserved-memory node: |
| 1042 | * |
| 1043 | * reserved-memory { |
| 1044 | * #address-cells = <0x00000002>; |
| 1045 | * #size-cells = <0x00000002>; |
| 1046 | * ranges; |
| 1047 | * |
| 1048 | * framebuffer@92cb3000 { |
| 1049 | * reg = <0x00000000 0x92cb3000 0x00000000 0x00800000>; |
| 1050 | * phandle = <0x0000004d>; |
| 1051 | * }; |
| 1052 | * }; |
| 1053 | * |
| 1054 | * If the top-level /reserved-memory node does not exist, it will be created. |
| 1055 | * The phandle returned from the function call can be used to reference this |
| 1056 | * reserved memory region from other nodes. |
| 1057 | * |
Thierry Reding | 16523ac | 2019-03-21 19:10:03 +0100 | [diff] [blame] | 1058 | * See fdtdec_set_carveout() for a more elaborate example. |
| 1059 | * |
Thierry Reding | c9222a0 | 2019-03-21 19:10:02 +0100 | [diff] [blame] | 1060 | * @param blob FDT blob |
| 1061 | * @param basename base name of the node to create |
| 1062 | * @param carveout information about the carveout region |
| 1063 | * @param phandlep return location for the phandle of the carveout region |
Heiko Stuebner | 357d2ce | 2019-10-23 16:46:39 +0200 | [diff] [blame] | 1064 | * can be NULL if no phandle should be added |
Thierry Reding | c9222a0 | 2019-03-21 19:10:02 +0100 | [diff] [blame] | 1065 | * @return 0 on success or a negative error code on failure |
| 1066 | */ |
| 1067 | int fdtdec_add_reserved_memory(void *blob, const char *basename, |
| 1068 | const struct fdt_memory *carveout, |
| 1069 | uint32_t *phandlep); |
| 1070 | |
| 1071 | /** |
Thierry Reding | 16523ac | 2019-03-21 19:10:03 +0100 | [diff] [blame] | 1072 | * fdtdec_get_carveout() - reads a carveout from an FDT |
| 1073 | * |
| 1074 | * Reads information about a carveout region from an FDT. The carveout is a |
| 1075 | * referenced by its phandle that is read from a given property in a given |
| 1076 | * node. |
| 1077 | * |
| 1078 | * @param blob FDT blob |
| 1079 | * @param node name of a node |
| 1080 | * @param name name of the property in the given node that contains |
| 1081 | * the phandle for the carveout |
| 1082 | * @param index index of the phandle for which to read the carveout |
| 1083 | * @param carveout return location for the carveout information |
| 1084 | * @return 0 on success or a negative error code on failure |
| 1085 | */ |
| 1086 | int fdtdec_get_carveout(const void *blob, const char *node, const char *name, |
| 1087 | unsigned int index, struct fdt_memory *carveout); |
| 1088 | |
| 1089 | /** |
| 1090 | * fdtdec_set_carveout() - sets a carveout region for a given node |
| 1091 | * |
| 1092 | * Sets a carveout region for a given node. If a reserved-memory node already |
| 1093 | * exists for the carveout, the phandle for that node will be reused. If no |
| 1094 | * such node exists, a new one will be created and a phandle to it stored in |
| 1095 | * a specified property of the given node. |
| 1096 | * |
| 1097 | * As an example, consider the following code snippet: |
| 1098 | * |
| 1099 | * const char *node = "/host1x@50000000/dc@54240000"; |
| 1100 | * struct fdt_memory fb = { |
| 1101 | * .start = 0x92cb3000, |
| 1102 | * .end = 0x934b2fff, |
| 1103 | * }; |
| 1104 | * |
| 1105 | * fdtdec_set_carveout(fdt, node, "memory-region", 0, "framebuffer", &fb); |
| 1106 | * |
| 1107 | * dc@54200000 is a display controller and was set up by the bootloader to |
| 1108 | * scan out the framebuffer specified by "fb". This would cause the following |
| 1109 | * reserved memory region to be added: |
| 1110 | * |
| 1111 | * reserved-memory { |
| 1112 | * #address-cells = <0x00000002>; |
| 1113 | * #size-cells = <0x00000002>; |
| 1114 | * ranges; |
| 1115 | * |
| 1116 | * framebuffer@92cb3000 { |
| 1117 | * reg = <0x00000000 0x92cb3000 0x00000000 0x00800000>; |
| 1118 | * phandle = <0x0000004d>; |
| 1119 | * }; |
| 1120 | * }; |
| 1121 | * |
| 1122 | * A "memory-region" property will also be added to the node referenced by the |
| 1123 | * offset parameter. |
| 1124 | * |
| 1125 | * host1x@50000000 { |
| 1126 | * ... |
| 1127 | * |
| 1128 | * dc@54240000 { |
| 1129 | * ... |
| 1130 | * memory-region = <0x0000004d>; |
| 1131 | * ... |
| 1132 | * }; |
| 1133 | * |
| 1134 | * ... |
| 1135 | * }; |
| 1136 | * |
| 1137 | * @param blob FDT blob |
| 1138 | * @param node name of the node to add the carveout to |
| 1139 | * @param prop_name name of the property in which to store the phandle of |
| 1140 | * the carveout |
| 1141 | * @param index index of the phandle to store |
| 1142 | * @param name base name of the reserved-memory node to create |
| 1143 | * @param carveout information about the carveout to add |
| 1144 | * @return 0 on success or a negative error code on failure |
| 1145 | */ |
| 1146 | int fdtdec_set_carveout(void *blob, const char *node, const char *prop_name, |
| 1147 | unsigned int index, const char *name, |
| 1148 | const struct fdt_memory *carveout); |
| 1149 | |
| 1150 | /** |
Simon Glass | b45122f | 2015-02-27 22:06:34 -0700 | [diff] [blame] | 1151 | * Set up the device tree ready for use |
| 1152 | */ |
Simon Glass | 0879361 | 2015-02-27 22:06:35 -0700 | [diff] [blame] | 1153 | int fdtdec_setup(void); |
Simon Glass | b45122f | 2015-02-27 22:06:34 -0700 | [diff] [blame] | 1154 | |
Jean-Jacques Hiblot | f1d2bc9 | 2018-12-07 14:50:52 +0100 | [diff] [blame] | 1155 | #if CONFIG_IS_ENABLED(MULTI_DTB_FIT) |
| 1156 | /** |
| 1157 | * fdtdec_resetup() - Set up the device tree again |
| 1158 | * |
| 1159 | * The main difference with fdtdec_setup() is that it returns if the fdt has |
| 1160 | * changed because a better match has been found. |
| 1161 | * This is typically used for boards that rely on a DM driver to detect the |
| 1162 | * board type. This function sould be called by the board code after the stuff |
| 1163 | * needed by board_fit_config_name_match() to operate porperly is available. |
| 1164 | * If this functions signals that a rescan is necessary, the board code must |
| 1165 | * unbind all the drivers using dm_uninit() and then rescan the DT with |
| 1166 | * dm_init_and_scan(). |
| 1167 | * |
| 1168 | * @param rescan Returns a flag indicating that fdt has changed and rescanning |
| 1169 | * the fdt is required |
| 1170 | * |
| 1171 | * @return 0 if OK, -ve on error |
| 1172 | */ |
| 1173 | int fdtdec_resetup(int *rescan); |
| 1174 | #endif |
| 1175 | |
Alex Deymo | 82f766d | 2017-04-02 01:25:20 -0700 | [diff] [blame] | 1176 | /** |
| 1177 | * Board-specific FDT initialization. Returns the address to a device tree blob. |
Rob Clark | 3b595da | 2018-01-10 11:34:37 +0100 | [diff] [blame] | 1178 | * Called when CONFIG_OF_BOARD is defined, or if CONFIG_OF_SEPARATE is defined |
| 1179 | * and the board implements it. |
Alex Deymo | 82f766d | 2017-04-02 01:25:20 -0700 | [diff] [blame] | 1180 | */ |
Baruch Siach | b236448 | 2018-10-28 14:41:14 +0200 | [diff] [blame] | 1181 | void *board_fdt_blob_setup(void); |
Michael Pratt | 90c08fa | 2018-06-11 13:07:09 -0600 | [diff] [blame] | 1182 | |
| 1183 | /* |
| 1184 | * Decode the size of memory |
| 1185 | * |
| 1186 | * RAM size is normally set in a /memory node and consists of a list of |
| 1187 | * (base, size) cells in the 'reg' property. This information is used to |
| 1188 | * determine the total available memory as well as the address and size |
| 1189 | * of each bank. |
| 1190 | * |
| 1191 | * Optionally the memory configuration can vary depending on a board id, |
| 1192 | * typically read from strapping resistors or an EEPROM on the board. |
| 1193 | * |
| 1194 | * Finally, memory size can be detected (within certain limits) by probing |
| 1195 | * the available memory. It is safe to do so within the limits provides by |
| 1196 | * the board's device tree information. This makes it possible to produce |
| 1197 | * boards with different memory sizes, where the device tree specifies the |
| 1198 | * maximum memory configuration, and the smaller memory configuration is |
| 1199 | * probed. |
| 1200 | * |
| 1201 | * This function decodes that information, returning the memory base address, |
| 1202 | * size and bank information. See the memory.txt binding for full |
| 1203 | * documentation. |
| 1204 | * |
| 1205 | * @param blob Device tree blob |
| 1206 | * @param area Name of node to check (NULL means "/memory") |
| 1207 | * @param board_id Board ID to look up |
| 1208 | * @param basep Returns base address of first memory bank (NULL to |
| 1209 | * ignore) |
| 1210 | * @param sizep Returns total memory size (NULL to ignore) |
| 1211 | * @param bd Updated with the memory bank information (NULL to skip) |
| 1212 | * @return 0 if OK, -ve on error |
| 1213 | */ |
| 1214 | int fdtdec_decode_ram_size(const void *blob, const char *area, int board_id, |
| 1215 | phys_addr_t *basep, phys_size_t *sizep, |
| 1216 | struct bd_info *bd); |
Alex Deymo | 82f766d | 2017-04-02 01:25:20 -0700 | [diff] [blame] | 1217 | |
Simon Glass | 5bfa78d | 2012-07-12 05:25:02 +0000 | [diff] [blame] | 1218 | #endif |