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 | |
Heiko Schocher | 29a23f9 | 2014-03-03 12:19:30 +0100 | [diff] [blame] | 6 | #ifndef USE_HOSTCC |
Simon Glass | b5220bc | 2011-10-24 19:15:32 +0000 | [diff] [blame] | 7 | #include <common.h> |
Jean-Jacques Hiblot | 035d640 | 2017-09-15 12:57:31 +0200 | [diff] [blame] | 8 | #include <boot_fit.h> |
Simon Glass | fcc0a87 | 2015-11-29 13:17:54 -0700 | [diff] [blame] | 9 | #include <dm.h> |
Simon Glass | b7e0d73 | 2017-05-18 20:09:02 -0600 | [diff] [blame] | 10 | #include <dm/of_extra.h> |
Simon Glass | 9eef56d | 2019-08-01 09:46:48 -0600 | [diff] [blame] | 11 | #include <env.h> |
Jean-Jacques Hiblot | 035d640 | 2017-09-15 12:57:31 +0200 | [diff] [blame] | 12 | #include <errno.h> |
| 13 | #include <fdtdec.h> |
| 14 | #include <fdt_support.h> |
Simon Glass | 0c670fc | 2019-08-01 09:46:36 -0600 | [diff] [blame] | 15 | #include <gzip.h> |
Heinrich Schuchardt | f980c99 | 2018-11-18 17:58:50 +0100 | [diff] [blame] | 16 | #include <mapmem.h> |
Masahiro Yamada | b08c8c4 | 2018-03-05 01:20:11 +0900 | [diff] [blame] | 17 | #include <linux/libfdt.h> |
Jean-Jacques Hiblot | 035d640 | 2017-09-15 12:57:31 +0200 | [diff] [blame] | 18 | #include <serial.h> |
| 19 | #include <asm/sections.h> |
Simon Glass | 5c33c9f | 2014-07-23 06:55:09 -0600 | [diff] [blame] | 20 | #include <linux/ctype.h> |
Jean-Jacques Hiblot | 2f57c95 | 2017-09-15 12:57:32 +0200 | [diff] [blame] | 21 | #include <linux/lzo.h> |
Simon Glass | b5220bc | 2011-10-24 19:15:32 +0000 | [diff] [blame] | 22 | |
| 23 | DECLARE_GLOBAL_DATA_PTR; |
| 24 | |
| 25 | /* |
| 26 | * Here are the type we know about. One day we might allow drivers to |
| 27 | * register. For now we just put them here. The COMPAT macro allows us to |
| 28 | * turn this into a sparse list later, and keeps the ID with the name. |
Simon Glass | 01a227d | 2016-06-19 17:33:13 -0600 | [diff] [blame] | 29 | * |
| 30 | * NOTE: This list is basically a TODO list for things that need to be |
| 31 | * converted to driver model. So don't add new things here unless there is a |
| 32 | * good reason why driver-model conversion is infeasible. Examples include |
| 33 | * things which are used before driver model is available. |
Simon Glass | b5220bc | 2011-10-24 19:15:32 +0000 | [diff] [blame] | 34 | */ |
| 35 | #define COMPAT(id, name) name |
| 36 | static const char * const compat_names[COMPAT_COUNT] = { |
Simon Glass | f88fe2d | 2012-02-27 10:52:34 +0000 | [diff] [blame] | 37 | COMPAT(UNKNOWN, "<none>"), |
Jimmy Zhang | 0e35ad0 | 2012-04-02 13:18:52 +0000 | [diff] [blame] | 38 | COMPAT(NVIDIA_TEGRA20_EMC, "nvidia,tegra20-emc"), |
| 39 | COMPAT(NVIDIA_TEGRA20_EMC_TABLE, "nvidia,tegra20-emc-table"), |
Jim Lin | 312693c | 2012-07-29 20:53:29 +0000 | [diff] [blame] | 40 | COMPAT(NVIDIA_TEGRA20_NAND, "nvidia,tegra20-nand"), |
Thierry Reding | 79c7a90 | 2014-12-09 22:25:09 -0700 | [diff] [blame] | 41 | COMPAT(NVIDIA_TEGRA124_XUSB_PADCTL, "nvidia,tegra124-xusb-padctl"), |
Tom Warren | 7aaa5a6 | 2015-03-04 16:36:00 -0700 | [diff] [blame] | 42 | COMPAT(NVIDIA_TEGRA210_XUSB_PADCTL, "nvidia,tegra210-xusb-padctl"), |
Hatim RV | cc9fe33 | 2012-12-11 00:52:46 +0000 | [diff] [blame] | 43 | COMPAT(SMSC_LAN9215, "smsc,lan9215"), |
| 44 | COMPAT(SAMSUNG_EXYNOS5_SROMC, "samsung,exynos-sromc"), |
Rajeshwari Shinde | 6abd162 | 2013-01-07 23:35:05 +0000 | [diff] [blame] | 45 | COMPAT(SAMSUNG_EXYNOS_USB_PHY, "samsung,exynos-usb-phy"), |
Vivek Gautam | 108b85b | 2013-09-14 14:02:48 +0530 | [diff] [blame] | 46 | COMPAT(SAMSUNG_EXYNOS5_USB3_PHY, "samsung,exynos5250-usb3-phy"), |
Akshay Saraswat | 618766c | 2013-02-25 01:13:01 +0000 | [diff] [blame] | 47 | COMPAT(SAMSUNG_EXYNOS_TMU, "samsung,exynos-tmu"), |
Piotr Wilczek | de461c5 | 2014-03-07 14:59:39 +0100 | [diff] [blame] | 48 | COMPAT(SAMSUNG_EXYNOS_MIPI_DSI, "samsung,exynos-mipi-dsi"), |
Jaehoon Chung | 7d3ca0f | 2014-05-16 13:59:51 +0900 | [diff] [blame] | 49 | COMPAT(SAMSUNG_EXYNOS_DWMMC, "samsung,exynos-dwmmc"), |
Neil Armstrong | 51e4e3e | 2019-02-10 10:16:21 +0000 | [diff] [blame] | 50 | COMPAT(GENERIC_SPI_FLASH, "jedec,spi-nor"), |
Ajay Kumar | 45c480c | 2014-09-05 16:53:33 +0530 | [diff] [blame] | 51 | COMPAT(SAMSUNG_EXYNOS_SYSMMU, "samsung,sysmmu-v3.3"), |
Simon Glass | 77f9b1f | 2014-11-12 22:42:21 -0700 | [diff] [blame] | 52 | COMPAT(INTEL_MICROCODE, "intel,microcode"), |
Bin Meng | c89ada0 | 2015-02-05 23:42:26 +0800 | [diff] [blame] | 53 | COMPAT(INTEL_QRK_MRC, "intel,quark-mrc"), |
Marek Vasut | 6ab00db | 2015-07-25 19:33:56 +0200 | [diff] [blame] | 54 | COMPAT(ALTERA_SOCFPGA_DWMAC, "altr,socfpga-stmmac"), |
Marek Vasut | 129adf5 | 2015-07-25 10:48:14 +0200 | [diff] [blame] | 55 | COMPAT(ALTERA_SOCFPGA_DWMMC, "altr,socfpga-dw-mshc"), |
Marek Vasut | ef4b01b | 2015-12-05 19:28:44 +0100 | [diff] [blame] | 56 | COMPAT(ALTERA_SOCFPGA_DWC2USB, "snps,dwc2"), |
Simon Glass | 39ea0ee | 2016-06-19 17:33:14 -0600 | [diff] [blame] | 57 | COMPAT(INTEL_BAYTRAIL_FSP, "intel,baytrail-fsp"), |
| 58 | COMPAT(INTEL_BAYTRAIL_FSP_MDP, "intel,baytrail-fsp-mdp"), |
| 59 | COMPAT(INTEL_IVYBRIDGE_FSP, "intel,ivybridge-fsp"), |
Boris Brezillon | 4ccae81 | 2016-06-15 21:09:23 +0200 | [diff] [blame] | 60 | COMPAT(COMPAT_SUNXI_NAND, "allwinner,sun4i-a10-nand"), |
Ley Foon Tan | e11b5e8 | 2017-04-05 17:32:47 +0800 | [diff] [blame] | 61 | COMPAT(ALTERA_SOCFPGA_CLK, "altr,clk-mgr"), |
| 62 | COMPAT(ALTERA_SOCFPGA_PINCTRL_SINGLE, "pinctrl-single"), |
| 63 | COMPAT(ALTERA_SOCFPGA_H2F_BRG, "altr,socfpga-hps2fpga-bridge"), |
| 64 | COMPAT(ALTERA_SOCFPGA_LWH2F_BRG, "altr,socfpga-lwhps2fpga-bridge"), |
| 65 | COMPAT(ALTERA_SOCFPGA_F2H_BRG, "altr,socfpga-fpga2hps-bridge"), |
| 66 | COMPAT(ALTERA_SOCFPGA_F2SDR0, "altr,socfpga-fpga2sdram0-bridge"), |
| 67 | COMPAT(ALTERA_SOCFPGA_F2SDR1, "altr,socfpga-fpga2sdram1-bridge"), |
| 68 | COMPAT(ALTERA_SOCFPGA_F2SDR2, "altr,socfpga-fpga2sdram2-bridge"), |
Tien Fong Chee | eb57c0b | 2017-09-25 16:40:03 +0800 | [diff] [blame] | 69 | COMPAT(ALTERA_SOCFPGA_FPGA0, "altr,socfpga-a10-fpga-mgr"), |
| 70 | COMPAT(ALTERA_SOCFPGA_NOC, "altr,socfpga-a10-noc"), |
Marek Vasut | 19c8fc7 | 2018-05-12 11:56:10 +0200 | [diff] [blame] | 71 | COMPAT(ALTERA_SOCFPGA_CLK_INIT, "altr,socfpga-a10-clk-init") |
Simon Glass | b5220bc | 2011-10-24 19:15:32 +0000 | [diff] [blame] | 72 | }; |
| 73 | |
Simon Glass | a53f4a2 | 2012-01-17 08:20:50 +0000 | [diff] [blame] | 74 | const char *fdtdec_get_compatible(enum fdt_compat_id id) |
| 75 | { |
| 76 | /* We allow reading of the 'unknown' ID for testing purposes */ |
| 77 | assert(id >= 0 && id < COMPAT_COUNT); |
| 78 | return compat_names[id]; |
| 79 | } |
| 80 | |
Stephen Warren | 02464e3 | 2015-08-06 15:31:02 -0600 | [diff] [blame] | 81 | fdt_addr_t fdtdec_get_addr_size_fixed(const void *blob, int node, |
Mario Six | 2e38662 | 2018-01-15 11:07:35 +0100 | [diff] [blame] | 82 | const char *prop_name, int index, int na, |
| 83 | int ns, fdt_size_t *sizep, |
| 84 | bool translate) |
Stephen Warren | 02464e3 | 2015-08-06 15:31:02 -0600 | [diff] [blame] | 85 | { |
| 86 | const fdt32_t *prop, *prop_end; |
| 87 | const fdt32_t *prop_addr, *prop_size, *prop_after_size; |
| 88 | int len; |
| 89 | fdt_addr_t addr; |
| 90 | |
| 91 | debug("%s: %s: ", __func__, prop_name); |
| 92 | |
Stephen Warren | 02464e3 | 2015-08-06 15:31:02 -0600 | [diff] [blame] | 93 | prop = fdt_getprop(blob, node, prop_name, &len); |
| 94 | if (!prop) { |
| 95 | debug("(not found)\n"); |
| 96 | return FDT_ADDR_T_NONE; |
| 97 | } |
| 98 | prop_end = prop + (len / sizeof(*prop)); |
| 99 | |
| 100 | prop_addr = prop + (index * (na + ns)); |
| 101 | prop_size = prop_addr + na; |
| 102 | prop_after_size = prop_size + ns; |
| 103 | if (prop_after_size > prop_end) { |
| 104 | debug("(not enough data: expected >= %d cells, got %d cells)\n", |
| 105 | (u32)(prop_after_size - prop), ((u32)(prop_end - prop))); |
| 106 | return FDT_ADDR_T_NONE; |
| 107 | } |
| 108 | |
Vignesh R | 5efa1bf | 2017-03-20 10:04:38 +0530 | [diff] [blame] | 109 | #if CONFIG_IS_ENABLED(OF_TRANSLATE) |
Stephen Warren | 6e06acb | 2016-08-05 09:47:51 -0600 | [diff] [blame] | 110 | if (translate) |
| 111 | addr = fdt_translate_address(blob, node, prop_addr); |
| 112 | else |
| 113 | #endif |
| 114 | addr = fdtdec_get_number(prop_addr, na); |
Stephen Warren | 02464e3 | 2015-08-06 15:31:02 -0600 | [diff] [blame] | 115 | |
| 116 | if (sizep) { |
| 117 | *sizep = fdtdec_get_number(prop_size, ns); |
Simon Glass | fd30d2c | 2016-02-29 15:25:37 -0700 | [diff] [blame] | 118 | debug("addr=%08llx, size=%llx\n", (unsigned long long)addr, |
| 119 | (unsigned long long)*sizep); |
Stephen Warren | 02464e3 | 2015-08-06 15:31:02 -0600 | [diff] [blame] | 120 | } else { |
Simon Glass | fd30d2c | 2016-02-29 15:25:37 -0700 | [diff] [blame] | 121 | debug("addr=%08llx\n", (unsigned long long)addr); |
Stephen Warren | 02464e3 | 2015-08-06 15:31:02 -0600 | [diff] [blame] | 122 | } |
| 123 | |
| 124 | return addr; |
| 125 | } |
| 126 | |
| 127 | fdt_addr_t fdtdec_get_addr_size_auto_parent(const void *blob, int parent, |
Mario Six | 2e38662 | 2018-01-15 11:07:35 +0100 | [diff] [blame] | 128 | int node, const char *prop_name, |
| 129 | int index, fdt_size_t *sizep, |
| 130 | bool translate) |
Stephen Warren | 02464e3 | 2015-08-06 15:31:02 -0600 | [diff] [blame] | 131 | { |
| 132 | int na, ns; |
| 133 | |
| 134 | debug("%s: ", __func__); |
| 135 | |
| 136 | na = fdt_address_cells(blob, parent); |
| 137 | if (na < 1) { |
| 138 | debug("(bad #address-cells)\n"); |
| 139 | return FDT_ADDR_T_NONE; |
| 140 | } |
| 141 | |
| 142 | ns = fdt_size_cells(blob, parent); |
Przemyslaw Marczak | ff0a635 | 2015-09-30 13:14:50 +0200 | [diff] [blame] | 143 | if (ns < 0) { |
Stephen Warren | 02464e3 | 2015-08-06 15:31:02 -0600 | [diff] [blame] | 144 | debug("(bad #size-cells)\n"); |
| 145 | return FDT_ADDR_T_NONE; |
| 146 | } |
| 147 | |
| 148 | debug("na=%d, ns=%d, ", na, ns); |
| 149 | |
| 150 | return fdtdec_get_addr_size_fixed(blob, node, prop_name, index, na, |
Stephen Warren | 6e06acb | 2016-08-05 09:47:51 -0600 | [diff] [blame] | 151 | ns, sizep, translate); |
Stephen Warren | 02464e3 | 2015-08-06 15:31:02 -0600 | [diff] [blame] | 152 | } |
| 153 | |
| 154 | fdt_addr_t fdtdec_get_addr_size_auto_noparent(const void *blob, int node, |
Mario Six | 2e38662 | 2018-01-15 11:07:35 +0100 | [diff] [blame] | 155 | const char *prop_name, int index, |
| 156 | fdt_size_t *sizep, |
| 157 | bool translate) |
Stephen Warren | 02464e3 | 2015-08-06 15:31:02 -0600 | [diff] [blame] | 158 | { |
| 159 | int parent; |
| 160 | |
| 161 | debug("%s: ", __func__); |
| 162 | |
| 163 | parent = fdt_parent_offset(blob, node); |
| 164 | if (parent < 0) { |
| 165 | debug("(no parent found)\n"); |
| 166 | return FDT_ADDR_T_NONE; |
| 167 | } |
| 168 | |
| 169 | return fdtdec_get_addr_size_auto_parent(blob, parent, node, prop_name, |
Stephen Warren | 6e06acb | 2016-08-05 09:47:51 -0600 | [diff] [blame] | 170 | index, sizep, translate); |
Stephen Warren | 02464e3 | 2015-08-06 15:31:02 -0600 | [diff] [blame] | 171 | } |
| 172 | |
Simon Glass | 4397a2a | 2013-03-19 04:58:51 +0000 | [diff] [blame] | 173 | fdt_addr_t fdtdec_get_addr_size(const void *blob, int node, |
Mario Six | 2e38662 | 2018-01-15 11:07:35 +0100 | [diff] [blame] | 174 | const char *prop_name, fdt_size_t *sizep) |
Simon Glass | b5220bc | 2011-10-24 19:15:32 +0000 | [diff] [blame] | 175 | { |
Stephen Warren | d93b9a0 | 2015-09-25 10:11:41 -0600 | [diff] [blame] | 176 | int ns = sizep ? (sizeof(fdt_size_t) / sizeof(fdt32_t)) : 0; |
| 177 | |
Stephen Warren | 02464e3 | 2015-08-06 15:31:02 -0600 | [diff] [blame] | 178 | return fdtdec_get_addr_size_fixed(blob, node, prop_name, 0, |
| 179 | sizeof(fdt_addr_t) / sizeof(fdt32_t), |
Stephen Warren | 6e06acb | 2016-08-05 09:47:51 -0600 | [diff] [blame] | 180 | ns, sizep, false); |
Simon Glass | b5220bc | 2011-10-24 19:15:32 +0000 | [diff] [blame] | 181 | } |
| 182 | |
Mario Six | 2e38662 | 2018-01-15 11:07:35 +0100 | [diff] [blame] | 183 | fdt_addr_t fdtdec_get_addr(const void *blob, int node, const char *prop_name) |
Simon Glass | 4397a2a | 2013-03-19 04:58:51 +0000 | [diff] [blame] | 184 | { |
| 185 | return fdtdec_get_addr_size(blob, node, prop_name, NULL); |
| 186 | } |
| 187 | |
Sekhar Nori | d50d681 | 2018-12-06 15:40:08 +0530 | [diff] [blame] | 188 | #if CONFIG_IS_ENABLED(PCI) && defined(CONFIG_DM_PCI) |
Bin Meng | a62e84d | 2014-12-31 16:05:11 +0800 | [diff] [blame] | 189 | int fdtdec_get_pci_addr(const void *blob, int node, enum fdt_pci_space type, |
Mario Six | 2e38662 | 2018-01-15 11:07:35 +0100 | [diff] [blame] | 190 | const char *prop_name, struct fdt_pci_addr *addr) |
Bin Meng | a62e84d | 2014-12-31 16:05:11 +0800 | [diff] [blame] | 191 | { |
| 192 | const u32 *cell; |
| 193 | int len; |
| 194 | int ret = -ENOENT; |
| 195 | |
| 196 | debug("%s: %s: ", __func__, prop_name); |
| 197 | |
| 198 | /* |
| 199 | * If we follow the pci bus bindings strictly, we should check |
| 200 | * the value of the node's parent node's #address-cells and |
| 201 | * #size-cells. They need to be 3 and 2 accordingly. However, |
| 202 | * for simplicity we skip the check here. |
| 203 | */ |
| 204 | cell = fdt_getprop(blob, node, prop_name, &len); |
| 205 | if (!cell) |
| 206 | goto fail; |
| 207 | |
| 208 | if ((len % FDT_PCI_REG_SIZE) == 0) { |
| 209 | int num = len / FDT_PCI_REG_SIZE; |
| 210 | int i; |
| 211 | |
| 212 | for (i = 0; i < num; i++) { |
| 213 | debug("pci address #%d: %08lx %08lx %08lx\n", i, |
Stephen Warren | 4ea5243 | 2015-10-02 17:44:06 -0600 | [diff] [blame] | 214 | (ulong)fdt32_to_cpu(cell[0]), |
| 215 | (ulong)fdt32_to_cpu(cell[1]), |
| 216 | (ulong)fdt32_to_cpu(cell[2])); |
| 217 | if ((fdt32_to_cpu(*cell) & type) == type) { |
| 218 | addr->phys_hi = fdt32_to_cpu(cell[0]); |
| 219 | addr->phys_mid = fdt32_to_cpu(cell[1]); |
| 220 | addr->phys_lo = fdt32_to_cpu(cell[1]); |
Bin Meng | a62e84d | 2014-12-31 16:05:11 +0800 | [diff] [blame] | 221 | break; |
Bin Meng | a62e84d | 2014-12-31 16:05:11 +0800 | [diff] [blame] | 222 | } |
Mario Six | b79221a | 2018-01-15 11:07:36 +0100 | [diff] [blame] | 223 | |
| 224 | cell += (FDT_PCI_ADDR_CELLS + |
| 225 | FDT_PCI_SIZE_CELLS); |
Bin Meng | a62e84d | 2014-12-31 16:05:11 +0800 | [diff] [blame] | 226 | } |
| 227 | |
Simon Glass | 106cce9 | 2015-03-05 12:25:19 -0700 | [diff] [blame] | 228 | if (i == num) { |
| 229 | ret = -ENXIO; |
Bin Meng | a62e84d | 2014-12-31 16:05:11 +0800 | [diff] [blame] | 230 | goto fail; |
Simon Glass | 106cce9 | 2015-03-05 12:25:19 -0700 | [diff] [blame] | 231 | } |
Bin Meng | a62e84d | 2014-12-31 16:05:11 +0800 | [diff] [blame] | 232 | |
| 233 | return 0; |
Bin Meng | a62e84d | 2014-12-31 16:05:11 +0800 | [diff] [blame] | 234 | } |
| 235 | |
Mario Six | b79221a | 2018-01-15 11:07:36 +0100 | [diff] [blame] | 236 | ret = -EINVAL; |
| 237 | |
Bin Meng | a62e84d | 2014-12-31 16:05:11 +0800 | [diff] [blame] | 238 | fail: |
| 239 | debug("(not found)\n"); |
| 240 | return ret; |
| 241 | } |
| 242 | |
| 243 | int fdtdec_get_pci_vendev(const void *blob, int node, u16 *vendor, u16 *device) |
| 244 | { |
| 245 | const char *list, *end; |
| 246 | int len; |
| 247 | |
| 248 | list = fdt_getprop(blob, node, "compatible", &len); |
| 249 | if (!list) |
| 250 | return -ENOENT; |
| 251 | |
| 252 | end = list + len; |
| 253 | while (list < end) { |
Bin Meng | a62e84d | 2014-12-31 16:05:11 +0800 | [diff] [blame] | 254 | len = strlen(list); |
| 255 | if (len >= strlen("pciVVVV,DDDD")) { |
Mario Six | b79221a | 2018-01-15 11:07:36 +0100 | [diff] [blame] | 256 | char *s = strstr(list, "pci"); |
Bin Meng | a62e84d | 2014-12-31 16:05:11 +0800 | [diff] [blame] | 257 | |
| 258 | /* |
| 259 | * check if the string is something like pciVVVV,DDDD.RR |
| 260 | * or just pciVVVV,DDDD |
| 261 | */ |
| 262 | if (s && s[7] == ',' && |
| 263 | (s[12] == '.' || s[12] == 0)) { |
| 264 | s += 3; |
| 265 | *vendor = simple_strtol(s, NULL, 16); |
| 266 | |
| 267 | s += 5; |
| 268 | *device = simple_strtol(s, NULL, 16); |
| 269 | |
| 270 | return 0; |
| 271 | } |
Bin Meng | a62e84d | 2014-12-31 16:05:11 +0800 | [diff] [blame] | 272 | } |
Bin Meng | bc6351e | 2015-08-20 06:40:25 -0700 | [diff] [blame] | 273 | list += (len + 1); |
Bin Meng | a62e84d | 2014-12-31 16:05:11 +0800 | [diff] [blame] | 274 | } |
| 275 | |
| 276 | return -ENOENT; |
| 277 | } |
| 278 | |
Simon Glass | fcc0a87 | 2015-11-29 13:17:54 -0700 | [diff] [blame] | 279 | int fdtdec_get_pci_bar32(struct udevice *dev, struct fdt_pci_addr *addr, |
| 280 | u32 *bar) |
Bin Meng | a62e84d | 2014-12-31 16:05:11 +0800 | [diff] [blame] | 281 | { |
Bin Meng | a62e84d | 2014-12-31 16:05:11 +0800 | [diff] [blame] | 282 | int barnum; |
Bin Meng | a62e84d | 2014-12-31 16:05:11 +0800 | [diff] [blame] | 283 | |
| 284 | /* extract the bar number from fdt_pci_addr */ |
| 285 | barnum = addr->phys_hi & 0xff; |
Mario Six | b79221a | 2018-01-15 11:07:36 +0100 | [diff] [blame] | 286 | if (barnum < PCI_BASE_ADDRESS_0 || barnum > PCI_CARDBUS_CIS) |
Bin Meng | a62e84d | 2014-12-31 16:05:11 +0800 | [diff] [blame] | 287 | return -EINVAL; |
| 288 | |
| 289 | barnum = (barnum - PCI_BASE_ADDRESS_0) / 4; |
Simon Glass | fcc0a87 | 2015-11-29 13:17:54 -0700 | [diff] [blame] | 290 | *bar = dm_pci_read_bar32(dev, barnum); |
Bin Meng | a62e84d | 2014-12-31 16:05:11 +0800 | [diff] [blame] | 291 | |
| 292 | return 0; |
| 293 | } |
| 294 | #endif |
| 295 | |
Che-Liang Chiou | aadef0a | 2012-10-25 16:31:05 +0000 | [diff] [blame] | 296 | uint64_t fdtdec_get_uint64(const void *blob, int node, const char *prop_name, |
Mario Six | 2e38662 | 2018-01-15 11:07:35 +0100 | [diff] [blame] | 297 | uint64_t default_val) |
Che-Liang Chiou | aadef0a | 2012-10-25 16:31:05 +0000 | [diff] [blame] | 298 | { |
| 299 | const uint64_t *cell64; |
| 300 | int length; |
| 301 | |
| 302 | cell64 = fdt_getprop(blob, node, prop_name, &length); |
| 303 | if (!cell64 || length < sizeof(*cell64)) |
| 304 | return default_val; |
| 305 | |
| 306 | return fdt64_to_cpu(*cell64); |
| 307 | } |
| 308 | |
Simon Glass | f88fe2d | 2012-02-27 10:52:34 +0000 | [diff] [blame] | 309 | int fdtdec_get_is_enabled(const void *blob, int node) |
Simon Glass | b5220bc | 2011-10-24 19:15:32 +0000 | [diff] [blame] | 310 | { |
| 311 | const char *cell; |
| 312 | |
Simon Glass | f88fe2d | 2012-02-27 10:52:34 +0000 | [diff] [blame] | 313 | /* |
| 314 | * It should say "okay", so only allow that. Some fdts use "ok" but |
| 315 | * this is a bug. Please fix your device tree source file. See here |
| 316 | * for discussion: |
| 317 | * |
| 318 | * http://www.mail-archive.com/u-boot@lists.denx.de/msg71598.html |
| 319 | */ |
Simon Glass | b5220bc | 2011-10-24 19:15:32 +0000 | [diff] [blame] | 320 | cell = fdt_getprop(blob, node, "status", NULL); |
| 321 | if (cell) |
Mario Six | b79221a | 2018-01-15 11:07:36 +0100 | [diff] [blame] | 322 | return strcmp(cell, "okay") == 0; |
Simon Glass | f88fe2d | 2012-02-27 10:52:34 +0000 | [diff] [blame] | 323 | return 1; |
Simon Glass | b5220bc | 2011-10-24 19:15:32 +0000 | [diff] [blame] | 324 | } |
| 325 | |
Gerald Van Baren | 7cde397 | 2012-11-12 23:13:54 -0500 | [diff] [blame] | 326 | enum fdt_compat_id fdtdec_lookup(const void *blob, int node) |
Simon Glass | b5220bc | 2011-10-24 19:15:32 +0000 | [diff] [blame] | 327 | { |
| 328 | enum fdt_compat_id id; |
| 329 | |
| 330 | /* Search our drivers */ |
| 331 | for (id = COMPAT_UNKNOWN; id < COMPAT_COUNT; id++) |
Mario Six | b79221a | 2018-01-15 11:07:36 +0100 | [diff] [blame] | 332 | if (fdt_node_check_compatible(blob, node, |
| 333 | compat_names[id]) == 0) |
Simon Glass | b5220bc | 2011-10-24 19:15:32 +0000 | [diff] [blame] | 334 | return id; |
| 335 | return COMPAT_UNKNOWN; |
| 336 | } |
| 337 | |
Mario Six | 2e38662 | 2018-01-15 11:07:35 +0100 | [diff] [blame] | 338 | int fdtdec_next_compatible(const void *blob, int node, enum fdt_compat_id id) |
Simon Glass | b5220bc | 2011-10-24 19:15:32 +0000 | [diff] [blame] | 339 | { |
| 340 | return fdt_node_offset_by_compatible(blob, node, compat_names[id]); |
| 341 | } |
| 342 | |
Simon Glass | 3ddecfc | 2012-04-02 13:18:42 +0000 | [diff] [blame] | 343 | int fdtdec_next_compatible_subnode(const void *blob, int node, |
Mario Six | 2e38662 | 2018-01-15 11:07:35 +0100 | [diff] [blame] | 344 | enum fdt_compat_id id, int *depthp) |
Simon Glass | 3ddecfc | 2012-04-02 13:18:42 +0000 | [diff] [blame] | 345 | { |
| 346 | do { |
| 347 | node = fdt_next_node(blob, node, depthp); |
| 348 | } while (*depthp > 1); |
| 349 | |
| 350 | /* If this is a direct subnode, and compatible, return it */ |
| 351 | if (*depthp == 1 && 0 == fdt_node_check_compatible( |
| 352 | blob, node, compat_names[id])) |
| 353 | return node; |
| 354 | |
| 355 | return -FDT_ERR_NOTFOUND; |
| 356 | } |
| 357 | |
Mario Six | 2e38662 | 2018-01-15 11:07:35 +0100 | [diff] [blame] | 358 | int fdtdec_next_alias(const void *blob, const char *name, enum fdt_compat_id id, |
| 359 | int *upto) |
Simon Glass | b5220bc | 2011-10-24 19:15:32 +0000 | [diff] [blame] | 360 | { |
| 361 | #define MAX_STR_LEN 20 |
| 362 | char str[MAX_STR_LEN + 20]; |
| 363 | int node, err; |
| 364 | |
| 365 | /* snprintf() is not available */ |
| 366 | assert(strlen(name) < MAX_STR_LEN); |
| 367 | sprintf(str, "%.*s%d", MAX_STR_LEN, name, *upto); |
Simon Glass | 0087847 | 2012-10-31 14:02:42 +0000 | [diff] [blame] | 368 | node = fdt_path_offset(blob, str); |
Simon Glass | b5220bc | 2011-10-24 19:15:32 +0000 | [diff] [blame] | 369 | if (node < 0) |
| 370 | return node; |
| 371 | err = fdt_node_check_compatible(blob, node, compat_names[id]); |
| 372 | if (err < 0) |
| 373 | return err; |
Simon Glass | f88fe2d | 2012-02-27 10:52:34 +0000 | [diff] [blame] | 374 | if (err) |
| 375 | return -FDT_ERR_NOTFOUND; |
| 376 | (*upto)++; |
| 377 | return node; |
Simon Glass | b5220bc | 2011-10-24 19:15:32 +0000 | [diff] [blame] | 378 | } |
| 379 | |
Simon Glass | a53f4a2 | 2012-01-17 08:20:50 +0000 | [diff] [blame] | 380 | int fdtdec_find_aliases_for_id(const void *blob, const char *name, |
Mario Six | 2e38662 | 2018-01-15 11:07:35 +0100 | [diff] [blame] | 381 | enum fdt_compat_id id, int *node_list, |
| 382 | int maxcount) |
Simon Glass | a53f4a2 | 2012-01-17 08:20:50 +0000 | [diff] [blame] | 383 | { |
Simon Glass | c678227 | 2012-02-03 15:13:53 +0000 | [diff] [blame] | 384 | memset(node_list, '\0', sizeof(*node_list) * maxcount); |
| 385 | |
| 386 | return fdtdec_add_aliases_for_id(blob, name, id, node_list, maxcount); |
| 387 | } |
| 388 | |
| 389 | /* TODO: Can we tighten this code up a little? */ |
| 390 | int fdtdec_add_aliases_for_id(const void *blob, const char *name, |
Mario Six | 2e38662 | 2018-01-15 11:07:35 +0100 | [diff] [blame] | 391 | enum fdt_compat_id id, int *node_list, |
| 392 | int maxcount) |
Simon Glass | c678227 | 2012-02-03 15:13:53 +0000 | [diff] [blame] | 393 | { |
Simon Glass | a53f4a2 | 2012-01-17 08:20:50 +0000 | [diff] [blame] | 394 | int name_len = strlen(name); |
| 395 | int nodes[maxcount]; |
| 396 | int num_found = 0; |
| 397 | int offset, node; |
| 398 | int alias_node; |
| 399 | int count; |
| 400 | int i, j; |
| 401 | |
| 402 | /* find the alias node if present */ |
| 403 | alias_node = fdt_path_offset(blob, "/aliases"); |
| 404 | |
| 405 | /* |
| 406 | * start with nothing, and we can assume that the root node can't |
| 407 | * match |
| 408 | */ |
| 409 | memset(nodes, '\0', sizeof(nodes)); |
| 410 | |
| 411 | /* First find all the compatible nodes */ |
| 412 | for (node = count = 0; node >= 0 && count < maxcount;) { |
| 413 | node = fdtdec_next_compatible(blob, node, id); |
| 414 | if (node >= 0) |
| 415 | nodes[count++] = node; |
| 416 | } |
| 417 | if (node >= 0) |
| 418 | debug("%s: warning: maxcount exceeded with alias '%s'\n", |
Mario Six | 2e38662 | 2018-01-15 11:07:35 +0100 | [diff] [blame] | 419 | __func__, name); |
Simon Glass | a53f4a2 | 2012-01-17 08:20:50 +0000 | [diff] [blame] | 420 | |
| 421 | /* Now find all the aliases */ |
Simon Glass | a53f4a2 | 2012-01-17 08:20:50 +0000 | [diff] [blame] | 422 | for (offset = fdt_first_property_offset(blob, alias_node); |
| 423 | offset > 0; |
| 424 | offset = fdt_next_property_offset(blob, offset)) { |
| 425 | const struct fdt_property *prop; |
| 426 | const char *path; |
| 427 | int number; |
| 428 | int found; |
| 429 | |
| 430 | node = 0; |
| 431 | prop = fdt_get_property_by_offset(blob, offset, NULL); |
| 432 | path = fdt_string(blob, fdt32_to_cpu(prop->nameoff)); |
| 433 | if (prop->len && 0 == strncmp(path, name, name_len)) |
| 434 | node = fdt_path_offset(blob, prop->data); |
| 435 | if (node <= 0) |
| 436 | continue; |
| 437 | |
| 438 | /* Get the alias number */ |
| 439 | number = simple_strtoul(path + name_len, NULL, 10); |
| 440 | if (number < 0 || number >= maxcount) { |
| 441 | debug("%s: warning: alias '%s' is out of range\n", |
Mario Six | 2e38662 | 2018-01-15 11:07:35 +0100 | [diff] [blame] | 442 | __func__, path); |
Simon Glass | a53f4a2 | 2012-01-17 08:20:50 +0000 | [diff] [blame] | 443 | continue; |
| 444 | } |
| 445 | |
| 446 | /* Make sure the node we found is actually in our list! */ |
| 447 | found = -1; |
| 448 | for (j = 0; j < count; j++) |
| 449 | if (nodes[j] == node) { |
| 450 | found = j; |
| 451 | break; |
| 452 | } |
| 453 | |
| 454 | if (found == -1) { |
| 455 | debug("%s: warning: alias '%s' points to a node " |
| 456 | "'%s' that is missing or is not compatible " |
| 457 | " with '%s'\n", __func__, path, |
| 458 | fdt_get_name(blob, node, NULL), |
| 459 | compat_names[id]); |
| 460 | continue; |
| 461 | } |
| 462 | |
| 463 | /* |
| 464 | * Add this node to our list in the right place, and mark |
| 465 | * it as done. |
| 466 | */ |
| 467 | if (fdtdec_get_is_enabled(blob, node)) { |
Simon Glass | c678227 | 2012-02-03 15:13:53 +0000 | [diff] [blame] | 468 | if (node_list[number]) { |
| 469 | debug("%s: warning: alias '%s' requires that " |
| 470 | "a node be placed in the list in a " |
| 471 | "position which is already filled by " |
| 472 | "node '%s'\n", __func__, path, |
| 473 | fdt_get_name(blob, node, NULL)); |
| 474 | continue; |
| 475 | } |
Simon Glass | a53f4a2 | 2012-01-17 08:20:50 +0000 | [diff] [blame] | 476 | node_list[number] = node; |
| 477 | if (number >= num_found) |
| 478 | num_found = number + 1; |
| 479 | } |
Simon Glass | c678227 | 2012-02-03 15:13:53 +0000 | [diff] [blame] | 480 | nodes[found] = 0; |
Simon Glass | a53f4a2 | 2012-01-17 08:20:50 +0000 | [diff] [blame] | 481 | } |
| 482 | |
| 483 | /* Add any nodes not mentioned by an alias */ |
| 484 | for (i = j = 0; i < maxcount; i++) { |
| 485 | if (!node_list[i]) { |
| 486 | for (; j < maxcount; j++) |
| 487 | if (nodes[j] && |
Mario Six | 2e38662 | 2018-01-15 11:07:35 +0100 | [diff] [blame] | 488 | fdtdec_get_is_enabled(blob, nodes[j])) |
Simon Glass | a53f4a2 | 2012-01-17 08:20:50 +0000 | [diff] [blame] | 489 | break; |
| 490 | |
| 491 | /* Have we run out of nodes to add? */ |
| 492 | if (j == maxcount) |
| 493 | break; |
| 494 | |
| 495 | assert(!node_list[i]); |
| 496 | node_list[i] = nodes[j++]; |
| 497 | if (i >= num_found) |
| 498 | num_found = i + 1; |
| 499 | } |
| 500 | } |
| 501 | |
| 502 | return num_found; |
| 503 | } |
| 504 | |
Simon Glass | 5c33c9f | 2014-07-23 06:55:09 -0600 | [diff] [blame] | 505 | int fdtdec_get_alias_seq(const void *blob, const char *base, int offset, |
| 506 | int *seqp) |
| 507 | { |
| 508 | int base_len = strlen(base); |
| 509 | const char *find_name; |
| 510 | int find_namelen; |
| 511 | int prop_offset; |
| 512 | int aliases; |
| 513 | |
| 514 | find_name = fdt_get_name(blob, offset, &find_namelen); |
| 515 | debug("Looking for '%s' at %d, name %s\n", base, offset, find_name); |
| 516 | |
| 517 | aliases = fdt_path_offset(blob, "/aliases"); |
| 518 | for (prop_offset = fdt_first_property_offset(blob, aliases); |
| 519 | prop_offset > 0; |
| 520 | prop_offset = fdt_next_property_offset(blob, prop_offset)) { |
| 521 | const char *prop; |
| 522 | const char *name; |
| 523 | const char *slash; |
Simon Glass | c4af673 | 2015-06-23 15:39:08 -0600 | [diff] [blame] | 524 | int len, val; |
Simon Glass | 5c33c9f | 2014-07-23 06:55:09 -0600 | [diff] [blame] | 525 | |
| 526 | prop = fdt_getprop_by_offset(blob, prop_offset, &name, &len); |
| 527 | debug(" - %s, %s\n", name, prop); |
| 528 | if (len < find_namelen || *prop != '/' || prop[len - 1] || |
| 529 | strncmp(name, base, base_len)) |
| 530 | continue; |
| 531 | |
| 532 | slash = strrchr(prop, '/'); |
| 533 | if (strcmp(slash + 1, find_name)) |
| 534 | continue; |
Simon Glass | c4af673 | 2015-06-23 15:39:08 -0600 | [diff] [blame] | 535 | val = trailing_strtol(name); |
| 536 | if (val != -1) { |
| 537 | *seqp = val; |
| 538 | debug("Found seq %d\n", *seqp); |
| 539 | return 0; |
Simon Glass | 5c33c9f | 2014-07-23 06:55:09 -0600 | [diff] [blame] | 540 | } |
| 541 | } |
| 542 | |
| 543 | debug("Not found\n"); |
| 544 | return -ENOENT; |
| 545 | } |
| 546 | |
Michal Simek | 003c9dc | 2019-01-31 16:30:58 +0100 | [diff] [blame] | 547 | int fdtdec_get_alias_highest_id(const void *blob, const char *base) |
| 548 | { |
| 549 | int base_len = strlen(base); |
| 550 | int prop_offset; |
| 551 | int aliases; |
| 552 | int max = -1; |
| 553 | |
| 554 | debug("Looking for highest alias id for '%s'\n", base); |
| 555 | |
| 556 | aliases = fdt_path_offset(blob, "/aliases"); |
| 557 | for (prop_offset = fdt_first_property_offset(blob, aliases); |
| 558 | prop_offset > 0; |
| 559 | prop_offset = fdt_next_property_offset(blob, prop_offset)) { |
| 560 | const char *prop; |
| 561 | const char *name; |
| 562 | int len, val; |
| 563 | |
| 564 | prop = fdt_getprop_by_offset(blob, prop_offset, &name, &len); |
| 565 | debug(" - %s, %s\n", name, prop); |
| 566 | if (*prop != '/' || prop[len - 1] || |
| 567 | strncmp(name, base, base_len)) |
| 568 | continue; |
| 569 | |
| 570 | val = trailing_strtol(name); |
| 571 | if (val > max) { |
| 572 | debug("Found seq %d\n", val); |
| 573 | max = val; |
| 574 | } |
| 575 | } |
| 576 | |
| 577 | return max; |
| 578 | } |
| 579 | |
Simon Glass | 3bc37a5 | 2015-10-17 19:41:14 -0600 | [diff] [blame] | 580 | const char *fdtdec_get_chosen_prop(const void *blob, const char *name) |
| 581 | { |
| 582 | int chosen_node; |
| 583 | |
| 584 | if (!blob) |
| 585 | return NULL; |
| 586 | chosen_node = fdt_path_offset(blob, "/chosen"); |
| 587 | return fdt_getprop(blob, chosen_node, name, NULL); |
| 588 | } |
| 589 | |
Simon Glass | aac07d4 | 2014-09-04 16:27:24 -0600 | [diff] [blame] | 590 | int fdtdec_get_chosen_node(const void *blob, const char *name) |
| 591 | { |
| 592 | const char *prop; |
Simon Glass | aac07d4 | 2014-09-04 16:27:24 -0600 | [diff] [blame] | 593 | |
Simon Glass | 3bc37a5 | 2015-10-17 19:41:14 -0600 | [diff] [blame] | 594 | prop = fdtdec_get_chosen_prop(blob, name); |
Simon Glass | aac07d4 | 2014-09-04 16:27:24 -0600 | [diff] [blame] | 595 | if (!prop) |
| 596 | return -FDT_ERR_NOTFOUND; |
| 597 | return fdt_path_offset(blob, prop); |
| 598 | } |
| 599 | |
Simon Glass | 9a263e5 | 2012-03-28 10:08:24 +0000 | [diff] [blame] | 600 | int fdtdec_check_fdt(void) |
| 601 | { |
| 602 | /* |
| 603 | * We must have an FDT, but we cannot panic() yet since the console |
| 604 | * is not ready. So for now, just assert(). Boards which need an early |
| 605 | * FDT (prior to console ready) will need to make their own |
| 606 | * arrangements and do their own checks. |
| 607 | */ |
| 608 | assert(!fdtdec_prepare_fdt()); |
| 609 | return 0; |
| 610 | } |
| 611 | |
Simon Glass | b5220bc | 2011-10-24 19:15:32 +0000 | [diff] [blame] | 612 | /* |
| 613 | * This function is a little odd in that it accesses global data. At some |
| 614 | * point if the architecture board.c files merge this will make more sense. |
| 615 | * Even now, it is common code. |
| 616 | */ |
Simon Glass | 9a263e5 | 2012-03-28 10:08:24 +0000 | [diff] [blame] | 617 | int fdtdec_prepare_fdt(void) |
Simon Glass | b5220bc | 2011-10-24 19:15:32 +0000 | [diff] [blame] | 618 | { |
Simon Glass | c309c2d | 2013-04-20 08:42:46 +0000 | [diff] [blame] | 619 | if (!gd->fdt_blob || ((uintptr_t)gd->fdt_blob & 3) || |
| 620 | fdt_check_header(gd->fdt_blob)) { |
Simon Glass | 6631237 | 2015-02-27 22:06:32 -0700 | [diff] [blame] | 621 | #ifdef CONFIG_SPL_BUILD |
| 622 | puts("Missing DTB\n"); |
| 623 | #else |
| 624 | puts("No valid device tree binary found - please append one to U-Boot binary, use u-boot-dtb.bin or define CONFIG_OF_EMBED. For sandbox, use -d <file.dtb>\n"); |
Simon Glass | cb5f97f70 | 2015-06-23 15:39:09 -0600 | [diff] [blame] | 625 | # ifdef DEBUG |
| 626 | if (gd->fdt_blob) { |
| 627 | printf("fdt_blob=%p\n", gd->fdt_blob); |
| 628 | print_buffer((ulong)gd->fdt_blob, gd->fdt_blob, 4, |
| 629 | 32, 0); |
| 630 | } |
| 631 | # endif |
Simon Glass | 6631237 | 2015-02-27 22:06:32 -0700 | [diff] [blame] | 632 | #endif |
Simon Glass | 9a263e5 | 2012-03-28 10:08:24 +0000 | [diff] [blame] | 633 | return -1; |
| 634 | } |
Simon Glass | b5220bc | 2011-10-24 19:15:32 +0000 | [diff] [blame] | 635 | return 0; |
| 636 | } |
Simon Glass | d17da65 | 2012-02-27 10:52:35 +0000 | [diff] [blame] | 637 | |
| 638 | int fdtdec_lookup_phandle(const void *blob, int node, const char *prop_name) |
| 639 | { |
| 640 | const u32 *phandle; |
| 641 | int lookup; |
| 642 | |
Simon Glass | 1cb2323 | 2012-07-12 05:25:01 +0000 | [diff] [blame] | 643 | debug("%s: %s\n", __func__, prop_name); |
Simon Glass | d17da65 | 2012-02-27 10:52:35 +0000 | [diff] [blame] | 644 | phandle = fdt_getprop(blob, node, prop_name, NULL); |
| 645 | if (!phandle) |
| 646 | return -FDT_ERR_NOTFOUND; |
| 647 | |
| 648 | lookup = fdt_node_offset_by_phandle(blob, fdt32_to_cpu(*phandle)); |
| 649 | return lookup; |
| 650 | } |
| 651 | |
| 652 | /** |
| 653 | * Look up a property in a node and check that it has a minimum length. |
| 654 | * |
| 655 | * @param blob FDT blob |
| 656 | * @param node node to examine |
| 657 | * @param prop_name name of property to find |
| 658 | * @param min_len minimum property length in bytes |
| 659 | * @param err 0 if ok, or -FDT_ERR_NOTFOUND if the property is not |
| 660 | found, or -FDT_ERR_BADLAYOUT if not enough data |
| 661 | * @return pointer to cell, which is only valid if err == 0 |
| 662 | */ |
| 663 | static const void *get_prop_check_min_len(const void *blob, int node, |
Mario Six | 2e38662 | 2018-01-15 11:07:35 +0100 | [diff] [blame] | 664 | const char *prop_name, int min_len, |
| 665 | int *err) |
Simon Glass | d17da65 | 2012-02-27 10:52:35 +0000 | [diff] [blame] | 666 | { |
| 667 | const void *cell; |
| 668 | int len; |
| 669 | |
| 670 | debug("%s: %s\n", __func__, prop_name); |
| 671 | cell = fdt_getprop(blob, node, prop_name, &len); |
| 672 | if (!cell) |
| 673 | *err = -FDT_ERR_NOTFOUND; |
| 674 | else if (len < min_len) |
| 675 | *err = -FDT_ERR_BADLAYOUT; |
| 676 | else |
| 677 | *err = 0; |
| 678 | return cell; |
| 679 | } |
| 680 | |
| 681 | int fdtdec_get_int_array(const void *blob, int node, const char *prop_name, |
Mario Six | 2e38662 | 2018-01-15 11:07:35 +0100 | [diff] [blame] | 682 | u32 *array, int count) |
Simon Glass | d17da65 | 2012-02-27 10:52:35 +0000 | [diff] [blame] | 683 | { |
| 684 | const u32 *cell; |
Mario Six | b79221a | 2018-01-15 11:07:36 +0100 | [diff] [blame] | 685 | int err = 0; |
Simon Glass | d17da65 | 2012-02-27 10:52:35 +0000 | [diff] [blame] | 686 | |
| 687 | debug("%s: %s\n", __func__, prop_name); |
| 688 | cell = get_prop_check_min_len(blob, node, prop_name, |
| 689 | sizeof(u32) * count, &err); |
| 690 | if (!err) { |
Mario Six | b79221a | 2018-01-15 11:07:36 +0100 | [diff] [blame] | 691 | int i; |
| 692 | |
Simon Glass | d17da65 | 2012-02-27 10:52:35 +0000 | [diff] [blame] | 693 | for (i = 0; i < count; i++) |
| 694 | array[i] = fdt32_to_cpu(cell[i]); |
| 695 | } |
| 696 | return err; |
| 697 | } |
| 698 | |
Simon Glass | a9f04d4 | 2014-11-10 18:00:19 -0700 | [diff] [blame] | 699 | int fdtdec_get_int_array_count(const void *blob, int node, |
| 700 | const char *prop_name, u32 *array, int count) |
| 701 | { |
| 702 | const u32 *cell; |
| 703 | int len, elems; |
| 704 | int i; |
| 705 | |
| 706 | debug("%s: %s\n", __func__, prop_name); |
| 707 | cell = fdt_getprop(blob, node, prop_name, &len); |
| 708 | if (!cell) |
| 709 | return -FDT_ERR_NOTFOUND; |
| 710 | elems = len / sizeof(u32); |
| 711 | if (count > elems) |
| 712 | count = elems; |
| 713 | for (i = 0; i < count; i++) |
| 714 | array[i] = fdt32_to_cpu(cell[i]); |
| 715 | |
| 716 | return count; |
| 717 | } |
| 718 | |
Simon Glass | 96875e7 | 2012-04-02 13:18:41 +0000 | [diff] [blame] | 719 | const u32 *fdtdec_locate_array(const void *blob, int node, |
| 720 | const char *prop_name, int count) |
| 721 | { |
| 722 | const u32 *cell; |
| 723 | int err; |
| 724 | |
| 725 | cell = get_prop_check_min_len(blob, node, prop_name, |
| 726 | sizeof(u32) * count, &err); |
| 727 | return err ? NULL : cell; |
| 728 | } |
| 729 | |
Simon Glass | d17da65 | 2012-02-27 10:52:35 +0000 | [diff] [blame] | 730 | int fdtdec_get_bool(const void *blob, int node, const char *prop_name) |
| 731 | { |
| 732 | const s32 *cell; |
| 733 | int len; |
| 734 | |
| 735 | debug("%s: %s\n", __func__, prop_name); |
| 736 | cell = fdt_getprop(blob, node, prop_name, &len); |
| 737 | return cell != NULL; |
| 738 | } |
Simon Glass | ed3ee5c | 2012-02-27 10:52:36 +0000 | [diff] [blame] | 739 | |
Simon Glass | 57068a7 | 2015-01-05 20:05:26 -0700 | [diff] [blame] | 740 | int fdtdec_parse_phandle_with_args(const void *blob, int src_node, |
| 741 | const char *list_name, |
| 742 | const char *cells_name, |
| 743 | int cell_count, int index, |
| 744 | struct fdtdec_phandle_args *out_args) |
| 745 | { |
| 746 | const __be32 *list, *list_end; |
| 747 | int rc = 0, size, cur_index = 0; |
| 748 | uint32_t count = 0; |
| 749 | int node = -1; |
| 750 | int phandle; |
| 751 | |
| 752 | /* Retrieve the phandle list property */ |
| 753 | list = fdt_getprop(blob, src_node, list_name, &size); |
| 754 | if (!list) |
| 755 | return -ENOENT; |
| 756 | list_end = list + size / sizeof(*list); |
| 757 | |
| 758 | /* Loop over the phandles until all the requested entry is found */ |
| 759 | while (list < list_end) { |
| 760 | rc = -EINVAL; |
| 761 | count = 0; |
| 762 | |
| 763 | /* |
| 764 | * If phandle is 0, then it is an empty entry with no |
| 765 | * arguments. Skip forward to the next entry. |
| 766 | */ |
| 767 | phandle = be32_to_cpup(list++); |
| 768 | if (phandle) { |
| 769 | /* |
| 770 | * Find the provider node and parse the #*-cells |
| 771 | * property to determine the argument length. |
| 772 | * |
| 773 | * This is not needed if the cell count is hard-coded |
| 774 | * (i.e. cells_name not set, but cell_count is set), |
| 775 | * except when we're going to return the found node |
| 776 | * below. |
| 777 | */ |
| 778 | if (cells_name || cur_index == index) { |
| 779 | node = fdt_node_offset_by_phandle(blob, |
| 780 | phandle); |
| 781 | if (!node) { |
| 782 | debug("%s: could not find phandle\n", |
| 783 | fdt_get_name(blob, src_node, |
| 784 | NULL)); |
| 785 | goto err; |
| 786 | } |
| 787 | } |
| 788 | |
| 789 | if (cells_name) { |
| 790 | count = fdtdec_get_int(blob, node, cells_name, |
| 791 | -1); |
| 792 | if (count == -1) { |
| 793 | debug("%s: could not get %s for %s\n", |
| 794 | fdt_get_name(blob, src_node, |
| 795 | NULL), |
| 796 | cells_name, |
| 797 | fdt_get_name(blob, node, |
| 798 | NULL)); |
| 799 | goto err; |
| 800 | } |
| 801 | } else { |
| 802 | count = cell_count; |
| 803 | } |
| 804 | |
| 805 | /* |
| 806 | * Make sure that the arguments actually fit in the |
| 807 | * remaining property data length |
| 808 | */ |
| 809 | if (list + count > list_end) { |
| 810 | debug("%s: arguments longer than property\n", |
| 811 | fdt_get_name(blob, src_node, NULL)); |
| 812 | goto err; |
| 813 | } |
| 814 | } |
| 815 | |
| 816 | /* |
| 817 | * All of the error cases above bail out of the loop, so at |
| 818 | * this point, the parsing is successful. If the requested |
| 819 | * index matches, then fill the out_args structure and return, |
| 820 | * or return -ENOENT for an empty entry. |
| 821 | */ |
| 822 | rc = -ENOENT; |
| 823 | if (cur_index == index) { |
| 824 | if (!phandle) |
| 825 | goto err; |
| 826 | |
| 827 | if (out_args) { |
| 828 | int i; |
| 829 | |
| 830 | if (count > MAX_PHANDLE_ARGS) { |
| 831 | debug("%s: too many arguments %d\n", |
| 832 | fdt_get_name(blob, src_node, |
| 833 | NULL), count); |
| 834 | count = MAX_PHANDLE_ARGS; |
| 835 | } |
| 836 | out_args->node = node; |
| 837 | out_args->args_count = count; |
| 838 | for (i = 0; i < count; i++) { |
| 839 | out_args->args[i] = |
| 840 | be32_to_cpup(list++); |
| 841 | } |
| 842 | } |
| 843 | |
| 844 | /* Found it! return success */ |
| 845 | return 0; |
| 846 | } |
| 847 | |
| 848 | node = -1; |
| 849 | list += count; |
| 850 | cur_index++; |
| 851 | } |
| 852 | |
| 853 | /* |
| 854 | * Result will be one of: |
| 855 | * -ENOENT : index is for empty phandle |
| 856 | * -EINVAL : parsing error on data |
| 857 | * [1..n] : Number of phandle (count mode; when index = -1) |
| 858 | */ |
| 859 | rc = index < 0 ? cur_index : -ENOENT; |
| 860 | err: |
| 861 | return rc; |
| 862 | } |
| 863 | |
Peng Fan | 1889a7e | 2016-02-01 13:31:15 +0800 | [diff] [blame] | 864 | int fdtdec_get_child_count(const void *blob, int node) |
| 865 | { |
| 866 | int subnode; |
| 867 | int num = 0; |
| 868 | |
Simon Glass | df87e6b | 2016-10-02 17:59:29 -0600 | [diff] [blame] | 869 | fdt_for_each_subnode(subnode, blob, node) |
Peng Fan | 1889a7e | 2016-02-01 13:31:15 +0800 | [diff] [blame] | 870 | num++; |
| 871 | |
| 872 | return num; |
| 873 | } |
| 874 | |
Anton Staff | bed4d89 | 2012-04-17 09:01:28 +0000 | [diff] [blame] | 875 | int fdtdec_get_byte_array(const void *blob, int node, const char *prop_name, |
Mario Six | 2e38662 | 2018-01-15 11:07:35 +0100 | [diff] [blame] | 876 | u8 *array, int count) |
Anton Staff | bed4d89 | 2012-04-17 09:01:28 +0000 | [diff] [blame] | 877 | { |
| 878 | const u8 *cell; |
| 879 | int err; |
| 880 | |
| 881 | cell = get_prop_check_min_len(blob, node, prop_name, count, &err); |
| 882 | if (!err) |
| 883 | memcpy(array, cell, count); |
| 884 | return err; |
| 885 | } |
| 886 | |
| 887 | const u8 *fdtdec_locate_byte_array(const void *blob, int node, |
Mario Six | 2e38662 | 2018-01-15 11:07:35 +0100 | [diff] [blame] | 888 | const char *prop_name, int count) |
Anton Staff | bed4d89 | 2012-04-17 09:01:28 +0000 | [diff] [blame] | 889 | { |
| 890 | const u8 *cell; |
| 891 | int err; |
| 892 | |
| 893 | cell = get_prop_check_min_len(blob, node, prop_name, count, &err); |
| 894 | if (err) |
| 895 | return NULL; |
| 896 | return cell; |
| 897 | } |
Abhilash Kesavan | 09258f1 | 2012-10-25 16:30:58 +0000 | [diff] [blame] | 898 | |
Abhilash Kesavan | 09258f1 | 2012-10-25 16:30:58 +0000 | [diff] [blame] | 899 | int fdtdec_get_config_int(const void *blob, const char *prop_name, |
Mario Six | 2e38662 | 2018-01-15 11:07:35 +0100 | [diff] [blame] | 900 | int default_val) |
Abhilash Kesavan | 09258f1 | 2012-10-25 16:30:58 +0000 | [diff] [blame] | 901 | { |
| 902 | int config_node; |
| 903 | |
| 904 | debug("%s: %s\n", __func__, prop_name); |
| 905 | config_node = fdt_path_offset(blob, "/config"); |
| 906 | if (config_node < 0) |
| 907 | return default_val; |
| 908 | return fdtdec_get_int(blob, config_node, prop_name, default_val); |
| 909 | } |
Simon Glass | 332ab0d | 2012-10-25 16:30:59 +0000 | [diff] [blame] | 910 | |
Gabe Black | 79289c0 | 2012-10-25 16:31:04 +0000 | [diff] [blame] | 911 | int fdtdec_get_config_bool(const void *blob, const char *prop_name) |
| 912 | { |
| 913 | int config_node; |
| 914 | const void *prop; |
| 915 | |
| 916 | debug("%s: %s\n", __func__, prop_name); |
| 917 | config_node = fdt_path_offset(blob, "/config"); |
| 918 | if (config_node < 0) |
| 919 | return 0; |
| 920 | prop = fdt_get_property(blob, config_node, prop_name, NULL); |
| 921 | |
| 922 | return prop != NULL; |
| 923 | } |
| 924 | |
Simon Glass | 332ab0d | 2012-10-25 16:30:59 +0000 | [diff] [blame] | 925 | char *fdtdec_get_config_string(const void *blob, const char *prop_name) |
| 926 | { |
| 927 | const char *nodep; |
| 928 | int nodeoffset; |
| 929 | int len; |
| 930 | |
| 931 | debug("%s: %s\n", __func__, prop_name); |
| 932 | nodeoffset = fdt_path_offset(blob, "/config"); |
| 933 | if (nodeoffset < 0) |
| 934 | return NULL; |
| 935 | |
| 936 | nodep = fdt_getprop(blob, nodeoffset, prop_name, &len); |
| 937 | if (!nodep) |
| 938 | return NULL; |
| 939 | |
| 940 | return (char *)nodep; |
| 941 | } |
Simon Glass | f20c461 | 2012-10-25 16:31:00 +0000 | [diff] [blame] | 942 | |
Simon Glass | 5f7bfdd | 2015-03-05 12:25:14 -0700 | [diff] [blame] | 943 | u64 fdtdec_get_number(const fdt32_t *ptr, unsigned int cells) |
Thierry Reding | 56f4224 | 2014-08-26 17:33:53 +0200 | [diff] [blame] | 944 | { |
| 945 | u64 number = 0; |
| 946 | |
| 947 | while (cells--) |
| 948 | number = (number << 32) | fdt32_to_cpu(*ptr++); |
| 949 | |
| 950 | return number; |
| 951 | } |
| 952 | |
| 953 | int fdt_get_resource(const void *fdt, int node, const char *property, |
| 954 | unsigned int index, struct fdt_resource *res) |
| 955 | { |
| 956 | const fdt32_t *ptr, *end; |
| 957 | int na, ns, len, parent; |
| 958 | unsigned int i = 0; |
| 959 | |
| 960 | parent = fdt_parent_offset(fdt, node); |
| 961 | if (parent < 0) |
| 962 | return parent; |
| 963 | |
| 964 | na = fdt_address_cells(fdt, parent); |
| 965 | ns = fdt_size_cells(fdt, parent); |
| 966 | |
| 967 | ptr = fdt_getprop(fdt, node, property, &len); |
| 968 | if (!ptr) |
| 969 | return len; |
| 970 | |
| 971 | end = ptr + len / sizeof(*ptr); |
| 972 | |
| 973 | while (ptr + na + ns <= end) { |
| 974 | if (i == index) { |
Mario Six | b79221a | 2018-01-15 11:07:36 +0100 | [diff] [blame] | 975 | res->start = fdtdec_get_number(ptr, na); |
| 976 | res->end = res->start; |
Thierry Reding | 56f4224 | 2014-08-26 17:33:53 +0200 | [diff] [blame] | 977 | res->end += fdtdec_get_number(&ptr[na], ns) - 1; |
| 978 | return 0; |
| 979 | } |
| 980 | |
| 981 | ptr += na + ns; |
| 982 | i++; |
| 983 | } |
| 984 | |
| 985 | return -FDT_ERR_NOTFOUND; |
| 986 | } |
| 987 | |
| 988 | int fdt_get_named_resource(const void *fdt, int node, const char *property, |
| 989 | const char *prop_names, const char *name, |
| 990 | struct fdt_resource *res) |
| 991 | { |
| 992 | int index; |
| 993 | |
Simon Glass | b02e404 | 2016-10-02 17:59:28 -0600 | [diff] [blame] | 994 | index = fdt_stringlist_search(fdt, node, prop_names, name); |
Thierry Reding | 56f4224 | 2014-08-26 17:33:53 +0200 | [diff] [blame] | 995 | if (index < 0) |
| 996 | return index; |
| 997 | |
| 998 | return fdt_get_resource(fdt, node, property, index, res); |
| 999 | } |
Thierry Reding | 9f85eee | 2014-08-26 17:33:54 +0200 | [diff] [blame] | 1000 | |
Simon Glass | 12e6711 | 2015-04-14 21:03:21 -0600 | [diff] [blame] | 1001 | static int decode_timing_property(const void *blob, int node, const char *name, |
| 1002 | struct timing_entry *result) |
| 1003 | { |
| 1004 | int length, ret = 0; |
| 1005 | const u32 *prop; |
| 1006 | |
| 1007 | prop = fdt_getprop(blob, node, name, &length); |
| 1008 | if (!prop) { |
| 1009 | debug("%s: could not find property %s\n", |
| 1010 | fdt_get_name(blob, node, NULL), name); |
| 1011 | return length; |
| 1012 | } |
| 1013 | |
| 1014 | if (length == sizeof(u32)) { |
| 1015 | result->typ = fdtdec_get_int(blob, node, name, 0); |
| 1016 | result->min = result->typ; |
| 1017 | result->max = result->typ; |
| 1018 | } else { |
| 1019 | ret = fdtdec_get_int_array(blob, node, name, &result->min, 3); |
| 1020 | } |
| 1021 | |
| 1022 | return ret; |
| 1023 | } |
| 1024 | |
| 1025 | int fdtdec_decode_display_timing(const void *blob, int parent, int index, |
| 1026 | struct display_timing *dt) |
| 1027 | { |
| 1028 | int i, node, timings_node; |
| 1029 | u32 val = 0; |
| 1030 | int ret = 0; |
| 1031 | |
| 1032 | timings_node = fdt_subnode_offset(blob, parent, "display-timings"); |
| 1033 | if (timings_node < 0) |
| 1034 | return timings_node; |
| 1035 | |
| 1036 | for (i = 0, node = fdt_first_subnode(blob, timings_node); |
| 1037 | node > 0 && i != index; |
| 1038 | node = fdt_next_subnode(blob, node)) |
| 1039 | i++; |
| 1040 | |
| 1041 | if (node < 0) |
| 1042 | return node; |
| 1043 | |
| 1044 | memset(dt, 0, sizeof(*dt)); |
| 1045 | |
| 1046 | ret |= decode_timing_property(blob, node, "hback-porch", |
| 1047 | &dt->hback_porch); |
| 1048 | ret |= decode_timing_property(blob, node, "hfront-porch", |
| 1049 | &dt->hfront_porch); |
| 1050 | ret |= decode_timing_property(blob, node, "hactive", &dt->hactive); |
| 1051 | ret |= decode_timing_property(blob, node, "hsync-len", &dt->hsync_len); |
| 1052 | ret |= decode_timing_property(blob, node, "vback-porch", |
| 1053 | &dt->vback_porch); |
| 1054 | ret |= decode_timing_property(blob, node, "vfront-porch", |
| 1055 | &dt->vfront_porch); |
| 1056 | ret |= decode_timing_property(blob, node, "vactive", &dt->vactive); |
| 1057 | ret |= decode_timing_property(blob, node, "vsync-len", &dt->vsync_len); |
| 1058 | ret |= decode_timing_property(blob, node, "clock-frequency", |
| 1059 | &dt->pixelclock); |
| 1060 | |
| 1061 | dt->flags = 0; |
| 1062 | val = fdtdec_get_int(blob, node, "vsync-active", -1); |
| 1063 | if (val != -1) { |
| 1064 | dt->flags |= val ? DISPLAY_FLAGS_VSYNC_HIGH : |
| 1065 | DISPLAY_FLAGS_VSYNC_LOW; |
| 1066 | } |
| 1067 | val = fdtdec_get_int(blob, node, "hsync-active", -1); |
| 1068 | if (val != -1) { |
| 1069 | dt->flags |= val ? DISPLAY_FLAGS_HSYNC_HIGH : |
| 1070 | DISPLAY_FLAGS_HSYNC_LOW; |
| 1071 | } |
| 1072 | val = fdtdec_get_int(blob, node, "de-active", -1); |
| 1073 | if (val != -1) { |
| 1074 | dt->flags |= val ? DISPLAY_FLAGS_DE_HIGH : |
| 1075 | DISPLAY_FLAGS_DE_LOW; |
| 1076 | } |
| 1077 | val = fdtdec_get_int(blob, node, "pixelclk-active", -1); |
| 1078 | if (val != -1) { |
| 1079 | dt->flags |= val ? DISPLAY_FLAGS_PIXDATA_POSEDGE : |
| 1080 | DISPLAY_FLAGS_PIXDATA_NEGEDGE; |
| 1081 | } |
| 1082 | |
| 1083 | if (fdtdec_get_bool(blob, node, "interlaced")) |
| 1084 | dt->flags |= DISPLAY_FLAGS_INTERLACED; |
| 1085 | if (fdtdec_get_bool(blob, node, "doublescan")) |
| 1086 | dt->flags |= DISPLAY_FLAGS_DOUBLESCAN; |
| 1087 | if (fdtdec_get_bool(blob, node, "doubleclk")) |
| 1088 | dt->flags |= DISPLAY_FLAGS_DOUBLECLK; |
| 1089 | |
Simon Glass | 04b9dd1 | 2016-05-05 07:28:21 -0600 | [diff] [blame] | 1090 | return ret; |
Simon Glass | 12e6711 | 2015-04-14 21:03:21 -0600 | [diff] [blame] | 1091 | } |
| 1092 | |
Marek Vasut | 3ebe09d | 2019-03-05 04:25:54 +0100 | [diff] [blame] | 1093 | int fdtdec_setup_mem_size_base_fdt(const void *blob) |
Nathan Rossi | 623f601 | 2016-12-19 00:03:34 +1000 | [diff] [blame] | 1094 | { |
| 1095 | int ret, mem; |
| 1096 | struct fdt_resource res; |
| 1097 | |
Marek Vasut | 3ebe09d | 2019-03-05 04:25:54 +0100 | [diff] [blame] | 1098 | mem = fdt_path_offset(blob, "/memory"); |
Nathan Rossi | 623f601 | 2016-12-19 00:03:34 +1000 | [diff] [blame] | 1099 | if (mem < 0) { |
| 1100 | debug("%s: Missing /memory node\n", __func__); |
| 1101 | return -EINVAL; |
| 1102 | } |
| 1103 | |
Marek Vasut | 3ebe09d | 2019-03-05 04:25:54 +0100 | [diff] [blame] | 1104 | ret = fdt_get_resource(blob, mem, "reg", 0, &res); |
Nathan Rossi | 623f601 | 2016-12-19 00:03:34 +1000 | [diff] [blame] | 1105 | if (ret != 0) { |
| 1106 | debug("%s: Unable to decode first memory bank\n", __func__); |
| 1107 | return -EINVAL; |
| 1108 | } |
| 1109 | |
| 1110 | gd->ram_size = (phys_size_t)(res.end - res.start + 1); |
Siva Durga Prasad Paladugu | 1473b12 | 2018-07-16 15:56:10 +0530 | [diff] [blame] | 1111 | gd->ram_base = (unsigned long)res.start; |
Simon Glass | c69380f | 2017-05-27 07:38:13 -0600 | [diff] [blame] | 1112 | debug("%s: Initial DRAM size %llx\n", __func__, |
| 1113 | (unsigned long long)gd->ram_size); |
Nathan Rossi | 623f601 | 2016-12-19 00:03:34 +1000 | [diff] [blame] | 1114 | |
| 1115 | return 0; |
| 1116 | } |
| 1117 | |
Marek Vasut | 3ebe09d | 2019-03-05 04:25:54 +0100 | [diff] [blame] | 1118 | int fdtdec_setup_mem_size_base(void) |
| 1119 | { |
| 1120 | return fdtdec_setup_mem_size_base_fdt(gd->fdt_blob); |
| 1121 | } |
| 1122 | |
Nathan Rossi | 623f601 | 2016-12-19 00:03:34 +1000 | [diff] [blame] | 1123 | #if defined(CONFIG_NR_DRAM_BANKS) |
Jens Wiklander | 452bc12 | 2018-07-13 12:12:11 +0200 | [diff] [blame] | 1124 | |
Michal Simek | 658954c | 2018-10-03 15:53:52 +0200 | [diff] [blame] | 1125 | static int get_next_memory_node(const void *blob, int mem) |
Jens Wiklander | 452bc12 | 2018-07-13 12:12:11 +0200 | [diff] [blame] | 1126 | { |
Jens Wiklander | 452bc12 | 2018-07-13 12:12:11 +0200 | [diff] [blame] | 1127 | do { |
Marek Vasut | 118f4d4 | 2019-03-05 04:25:55 +0100 | [diff] [blame] | 1128 | mem = fdt_node_offset_by_prop_value(blob, mem, |
Michal Simek | 658954c | 2018-10-03 15:53:52 +0200 | [diff] [blame] | 1129 | "device_type", "memory", 7); |
| 1130 | } while (!fdtdec_get_is_enabled(blob, mem)); |
Jens Wiklander | 452bc12 | 2018-07-13 12:12:11 +0200 | [diff] [blame] | 1131 | |
| 1132 | return mem; |
| 1133 | } |
| 1134 | |
Marek Vasut | 118f4d4 | 2019-03-05 04:25:55 +0100 | [diff] [blame] | 1135 | int fdtdec_setup_memory_banksize_fdt(const void *blob) |
Nathan Rossi | 623f601 | 2016-12-19 00:03:34 +1000 | [diff] [blame] | 1136 | { |
Michal Simek | 658954c | 2018-10-03 15:53:52 +0200 | [diff] [blame] | 1137 | int bank, ret, mem, reg = 0; |
| 1138 | struct fdt_resource res; |
Nathan Rossi | 623f601 | 2016-12-19 00:03:34 +1000 | [diff] [blame] | 1139 | |
Marek Vasut | 118f4d4 | 2019-03-05 04:25:55 +0100 | [diff] [blame] | 1140 | mem = get_next_memory_node(blob, -1); |
Michal Simek | 658954c | 2018-10-03 15:53:52 +0200 | [diff] [blame] | 1141 | if (mem < 0) { |
| 1142 | debug("%s: Missing /memory node\n", __func__); |
| 1143 | return -EINVAL; |
| 1144 | } |
Nathan Rossi | 623f601 | 2016-12-19 00:03:34 +1000 | [diff] [blame] | 1145 | |
| 1146 | for (bank = 0; bank < CONFIG_NR_DRAM_BANKS; bank++) { |
Marek Vasut | 118f4d4 | 2019-03-05 04:25:55 +0100 | [diff] [blame] | 1147 | ret = fdt_get_resource(blob, mem, "reg", reg++, &res); |
Michal Simek | 658954c | 2018-10-03 15:53:52 +0200 | [diff] [blame] | 1148 | if (ret == -FDT_ERR_NOTFOUND) { |
Marek Vasut | 942ee09 | 2017-11-27 05:32:42 +0100 | [diff] [blame] | 1149 | reg = 0; |
Marek Vasut | 118f4d4 | 2019-03-05 04:25:55 +0100 | [diff] [blame] | 1150 | mem = get_next_memory_node(blob, mem); |
Michal Simek | 658954c | 2018-10-03 15:53:52 +0200 | [diff] [blame] | 1151 | if (mem == -FDT_ERR_NOTFOUND) |
| 1152 | break; |
| 1153 | |
Marek Vasut | 118f4d4 | 2019-03-05 04:25:55 +0100 | [diff] [blame] | 1154 | ret = fdt_get_resource(blob, mem, "reg", reg++, &res); |
Michal Simek | 658954c | 2018-10-03 15:53:52 +0200 | [diff] [blame] | 1155 | if (ret == -FDT_ERR_NOTFOUND) |
| 1156 | break; |
| 1157 | } |
| 1158 | if (ret != 0) { |
| 1159 | return -EINVAL; |
Marek Vasut | 942ee09 | 2017-11-27 05:32:42 +0100 | [diff] [blame] | 1160 | } |
Nathan Rossi | 623f601 | 2016-12-19 00:03:34 +1000 | [diff] [blame] | 1161 | |
| 1162 | gd->bd->bi_dram[bank].start = (phys_addr_t)res.start; |
| 1163 | gd->bd->bi_dram[bank].size = |
| 1164 | (phys_size_t)(res.end - res.start + 1); |
| 1165 | |
| 1166 | debug("%s: DRAM Bank #%d: start = 0x%llx, size = 0x%llx\n", |
| 1167 | __func__, bank, |
| 1168 | (unsigned long long)gd->bd->bi_dram[bank].start, |
| 1169 | (unsigned long long)gd->bd->bi_dram[bank].size); |
| 1170 | } |
| 1171 | |
| 1172 | return 0; |
| 1173 | } |
Marek Vasut | 118f4d4 | 2019-03-05 04:25:55 +0100 | [diff] [blame] | 1174 | |
| 1175 | int fdtdec_setup_memory_banksize(void) |
| 1176 | { |
| 1177 | return fdtdec_setup_memory_banksize_fdt(gd->fdt_blob); |
| 1178 | |
| 1179 | } |
Nathan Rossi | 623f601 | 2016-12-19 00:03:34 +1000 | [diff] [blame] | 1180 | #endif |
| 1181 | |
Jean-Jacques Hiblot | 2f57c95 | 2017-09-15 12:57:32 +0200 | [diff] [blame] | 1182 | #if CONFIG_IS_ENABLED(MULTI_DTB_FIT) |
| 1183 | # if CONFIG_IS_ENABLED(MULTI_DTB_FIT_GZIP) ||\ |
| 1184 | CONFIG_IS_ENABLED(MULTI_DTB_FIT_LZO) |
| 1185 | static int uncompress_blob(const void *src, ulong sz_src, void **dstp) |
| 1186 | { |
Marek Vasut | 95f4bbd | 2019-03-08 16:06:55 +0100 | [diff] [blame] | 1187 | size_t sz_out = CONFIG_VAL(MULTI_DTB_FIT_UNCOMPRESS_SZ); |
Marek Vasut | 1fd3035 | 2019-03-13 21:11:22 +0100 | [diff] [blame] | 1188 | bool gzip = 0, lzo = 0; |
Jean-Jacques Hiblot | 2f57c95 | 2017-09-15 12:57:32 +0200 | [diff] [blame] | 1189 | ulong sz_in = sz_src; |
| 1190 | void *dst; |
| 1191 | int rc; |
| 1192 | |
| 1193 | if (CONFIG_IS_ENABLED(GZIP)) |
Marek Vasut | 1fd3035 | 2019-03-13 21:11:22 +0100 | [diff] [blame] | 1194 | if (gzip_parse_header(src, sz_in) >= 0) |
| 1195 | gzip = 1; |
Jean-Jacques Hiblot | 2f57c95 | 2017-09-15 12:57:32 +0200 | [diff] [blame] | 1196 | if (CONFIG_IS_ENABLED(LZO)) |
Marek Vasut | 1fd3035 | 2019-03-13 21:11:22 +0100 | [diff] [blame] | 1197 | if (!gzip && lzop_is_valid_header(src)) |
| 1198 | lzo = 1; |
| 1199 | |
| 1200 | if (!gzip && !lzo) |
| 1201 | return -EBADMSG; |
| 1202 | |
Jean-Jacques Hiblot | 2f57c95 | 2017-09-15 12:57:32 +0200 | [diff] [blame] | 1203 | |
| 1204 | if (CONFIG_IS_ENABLED(MULTI_DTB_FIT_DYN_ALLOC)) { |
| 1205 | dst = malloc(sz_out); |
| 1206 | if (!dst) { |
| 1207 | puts("uncompress_blob: Unable to allocate memory\n"); |
| 1208 | return -ENOMEM; |
| 1209 | } |
| 1210 | } else { |
| 1211 | # if CONFIG_IS_ENABLED(MULTI_DTB_FIT_USER_DEFINED_AREA) |
| 1212 | dst = (void *)CONFIG_VAL(MULTI_DTB_FIT_USER_DEF_ADDR); |
| 1213 | # else |
| 1214 | return -ENOTSUPP; |
| 1215 | # endif |
| 1216 | } |
| 1217 | |
Marek Vasut | 1fd3035 | 2019-03-13 21:11:22 +0100 | [diff] [blame] | 1218 | if (CONFIG_IS_ENABLED(GZIP) && gzip) |
Jean-Jacques Hiblot | 2f57c95 | 2017-09-15 12:57:32 +0200 | [diff] [blame] | 1219 | rc = gunzip(dst, sz_out, (u8 *)src, &sz_in); |
Marek Vasut | 1fd3035 | 2019-03-13 21:11:22 +0100 | [diff] [blame] | 1220 | else if (CONFIG_IS_ENABLED(LZO) && lzo) |
Jean-Jacques Hiblot | 2f57c95 | 2017-09-15 12:57:32 +0200 | [diff] [blame] | 1221 | rc = lzop_decompress(src, sz_in, dst, &sz_out); |
Marek Vasut | 1fd3035 | 2019-03-13 21:11:22 +0100 | [diff] [blame] | 1222 | else |
| 1223 | hang(); |
Jean-Jacques Hiblot | 2f57c95 | 2017-09-15 12:57:32 +0200 | [diff] [blame] | 1224 | |
| 1225 | if (rc < 0) { |
| 1226 | /* not a valid compressed blob */ |
| 1227 | puts("uncompress_blob: Unable to uncompress\n"); |
| 1228 | if (CONFIG_IS_ENABLED(MULTI_DTB_FIT_DYN_ALLOC)) |
| 1229 | free(dst); |
| 1230 | return -EBADMSG; |
| 1231 | } |
| 1232 | *dstp = dst; |
| 1233 | return 0; |
| 1234 | } |
| 1235 | # else |
| 1236 | static int uncompress_blob(const void *src, ulong sz_src, void **dstp) |
| 1237 | { |
Marek Vasut | 410d9b6 | 2018-10-18 20:37:05 +0200 | [diff] [blame] | 1238 | *dstp = (void *)src; |
| 1239 | return 0; |
Jean-Jacques Hiblot | 2f57c95 | 2017-09-15 12:57:32 +0200 | [diff] [blame] | 1240 | } |
| 1241 | # endif |
| 1242 | #endif |
| 1243 | |
Rob Clark | 3b595da | 2018-01-10 11:34:37 +0100 | [diff] [blame] | 1244 | #if defined(CONFIG_OF_BOARD) || defined(CONFIG_OF_SEPARATE) |
| 1245 | /* |
| 1246 | * For CONFIG_OF_SEPARATE, the board may optionally implement this to |
| 1247 | * provide and/or fixup the fdt. |
| 1248 | */ |
| 1249 | __weak void *board_fdt_blob_setup(void) |
| 1250 | { |
| 1251 | void *fdt_blob = NULL; |
| 1252 | #ifdef CONFIG_SPL_BUILD |
| 1253 | /* FDT is at end of BSS unless it is in a different memory region */ |
| 1254 | if (IS_ENABLED(CONFIG_SPL_SEPARATE_BSS)) |
| 1255 | fdt_blob = (ulong *)&_image_binary_end; |
| 1256 | else |
| 1257 | fdt_blob = (ulong *)&__bss_end; |
| 1258 | #else |
| 1259 | /* FDT is at end of image */ |
| 1260 | fdt_blob = (ulong *)&_end; |
| 1261 | #endif |
| 1262 | return fdt_blob; |
| 1263 | } |
| 1264 | #endif |
| 1265 | |
Thierry Reding | ebf30e8 | 2019-04-15 11:32:13 +0200 | [diff] [blame] | 1266 | int fdtdec_set_ethernet_mac_address(void *fdt, const u8 *mac, size_t size) |
| 1267 | { |
| 1268 | const char *path; |
| 1269 | int offset, err; |
| 1270 | |
| 1271 | if (!is_valid_ethaddr(mac)) |
| 1272 | return -EINVAL; |
| 1273 | |
| 1274 | path = fdt_get_alias(fdt, "ethernet"); |
| 1275 | if (!path) |
| 1276 | return 0; |
| 1277 | |
| 1278 | debug("ethernet alias found: %s\n", path); |
| 1279 | |
| 1280 | offset = fdt_path_offset(fdt, path); |
| 1281 | if (offset < 0) { |
| 1282 | debug("ethernet alias points to absent node %s\n", path); |
| 1283 | return -ENOENT; |
| 1284 | } |
| 1285 | |
| 1286 | err = fdt_setprop_inplace(fdt, offset, "local-mac-address", mac, size); |
| 1287 | if (err < 0) |
| 1288 | return err; |
| 1289 | |
| 1290 | debug("MAC address: %pM\n", mac); |
| 1291 | |
| 1292 | return 0; |
| 1293 | } |
| 1294 | |
Thierry Reding | c9222a0 | 2019-03-21 19:10:02 +0100 | [diff] [blame] | 1295 | static int fdtdec_init_reserved_memory(void *blob) |
| 1296 | { |
| 1297 | int na, ns, node, err; |
| 1298 | fdt32_t value; |
| 1299 | |
| 1300 | /* inherit #address-cells and #size-cells from the root node */ |
| 1301 | na = fdt_address_cells(blob, 0); |
| 1302 | ns = fdt_size_cells(blob, 0); |
| 1303 | |
| 1304 | node = fdt_add_subnode(blob, 0, "reserved-memory"); |
| 1305 | if (node < 0) |
| 1306 | return node; |
| 1307 | |
| 1308 | err = fdt_setprop(blob, node, "ranges", NULL, 0); |
| 1309 | if (err < 0) |
| 1310 | return err; |
| 1311 | |
| 1312 | value = cpu_to_fdt32(ns); |
| 1313 | |
| 1314 | err = fdt_setprop(blob, node, "#size-cells", &value, sizeof(value)); |
| 1315 | if (err < 0) |
| 1316 | return err; |
| 1317 | |
| 1318 | value = cpu_to_fdt32(na); |
| 1319 | |
| 1320 | err = fdt_setprop(blob, node, "#address-cells", &value, sizeof(value)); |
| 1321 | if (err < 0) |
| 1322 | return err; |
| 1323 | |
| 1324 | return node; |
| 1325 | } |
| 1326 | |
| 1327 | int fdtdec_add_reserved_memory(void *blob, const char *basename, |
| 1328 | const struct fdt_memory *carveout, |
| 1329 | uint32_t *phandlep) |
| 1330 | { |
| 1331 | fdt32_t cells[4] = {}, *ptr = cells; |
| 1332 | uint32_t upper, lower, phandle; |
| 1333 | int parent, node, na, ns, err; |
Thierry Reding | 3bf2f15 | 2019-04-15 10:08:21 +0200 | [diff] [blame] | 1334 | fdt_size_t size; |
Thierry Reding | c9222a0 | 2019-03-21 19:10:02 +0100 | [diff] [blame] | 1335 | char name[64]; |
| 1336 | |
| 1337 | /* create an empty /reserved-memory node if one doesn't exist */ |
| 1338 | parent = fdt_path_offset(blob, "/reserved-memory"); |
| 1339 | if (parent < 0) { |
| 1340 | parent = fdtdec_init_reserved_memory(blob); |
| 1341 | if (parent < 0) |
| 1342 | return parent; |
| 1343 | } |
| 1344 | |
| 1345 | /* only 1 or 2 #address-cells and #size-cells are supported */ |
| 1346 | na = fdt_address_cells(blob, parent); |
| 1347 | if (na < 1 || na > 2) |
| 1348 | return -FDT_ERR_BADNCELLS; |
| 1349 | |
| 1350 | ns = fdt_size_cells(blob, parent); |
| 1351 | if (ns < 1 || ns > 2) |
| 1352 | return -FDT_ERR_BADNCELLS; |
| 1353 | |
| 1354 | /* find a matching node and return the phandle to that */ |
| 1355 | fdt_for_each_subnode(node, blob, parent) { |
| 1356 | const char *name = fdt_get_name(blob, node, NULL); |
| 1357 | phys_addr_t addr, size; |
| 1358 | |
| 1359 | addr = fdtdec_get_addr_size(blob, node, "reg", &size); |
| 1360 | if (addr == FDT_ADDR_T_NONE) { |
| 1361 | debug("failed to read address/size for %s\n", name); |
| 1362 | continue; |
| 1363 | } |
| 1364 | |
| 1365 | if (addr == carveout->start && (addr + size) == carveout->end) { |
| 1366 | *phandlep = fdt_get_phandle(blob, node); |
| 1367 | return 0; |
| 1368 | } |
| 1369 | } |
| 1370 | |
| 1371 | /* |
| 1372 | * Unpack the start address and generate the name of the new node |
| 1373 | * base on the basename and the unit-address. |
| 1374 | */ |
Thierry Reding | 3bf2f15 | 2019-04-15 10:08:21 +0200 | [diff] [blame] | 1375 | upper = upper_32_bits(carveout->start); |
| 1376 | lower = lower_32_bits(carveout->start); |
Thierry Reding | c9222a0 | 2019-03-21 19:10:02 +0100 | [diff] [blame] | 1377 | |
| 1378 | if (na > 1 && upper > 0) |
| 1379 | snprintf(name, sizeof(name), "%s@%x,%x", basename, upper, |
| 1380 | lower); |
| 1381 | else { |
| 1382 | if (upper > 0) { |
| 1383 | debug("address %08x:%08x exceeds addressable space\n", |
| 1384 | upper, lower); |
| 1385 | return -FDT_ERR_BADVALUE; |
| 1386 | } |
| 1387 | |
| 1388 | snprintf(name, sizeof(name), "%s@%x", basename, lower); |
| 1389 | } |
| 1390 | |
| 1391 | node = fdt_add_subnode(blob, parent, name); |
| 1392 | if (node < 0) |
| 1393 | return node; |
| 1394 | |
| 1395 | err = fdt_generate_phandle(blob, &phandle); |
| 1396 | if (err < 0) |
| 1397 | return err; |
| 1398 | |
| 1399 | err = fdtdec_set_phandle(blob, node, phandle); |
| 1400 | if (err < 0) |
| 1401 | return err; |
| 1402 | |
| 1403 | /* store one or two address cells */ |
| 1404 | if (na > 1) |
| 1405 | *ptr++ = cpu_to_fdt32(upper); |
| 1406 | |
| 1407 | *ptr++ = cpu_to_fdt32(lower); |
| 1408 | |
| 1409 | /* store one or two size cells */ |
Thierry Reding | 3bf2f15 | 2019-04-15 10:08:21 +0200 | [diff] [blame] | 1410 | size = carveout->end - carveout->start + 1; |
| 1411 | upper = upper_32_bits(size); |
| 1412 | lower = lower_32_bits(size); |
Thierry Reding | c9222a0 | 2019-03-21 19:10:02 +0100 | [diff] [blame] | 1413 | |
| 1414 | if (ns > 1) |
| 1415 | *ptr++ = cpu_to_fdt32(upper); |
| 1416 | |
| 1417 | *ptr++ = cpu_to_fdt32(lower); |
| 1418 | |
| 1419 | err = fdt_setprop(blob, node, "reg", cells, (na + ns) * sizeof(*cells)); |
| 1420 | if (err < 0) |
| 1421 | return err; |
| 1422 | |
| 1423 | /* return the phandle for the new node for the caller to use */ |
| 1424 | if (phandlep) |
| 1425 | *phandlep = phandle; |
| 1426 | |
| 1427 | return 0; |
| 1428 | } |
| 1429 | |
Thierry Reding | 16523ac | 2019-03-21 19:10:03 +0100 | [diff] [blame] | 1430 | int fdtdec_get_carveout(const void *blob, const char *node, const char *name, |
| 1431 | unsigned int index, struct fdt_memory *carveout) |
| 1432 | { |
| 1433 | const fdt32_t *prop; |
| 1434 | uint32_t phandle; |
| 1435 | int offset, len; |
| 1436 | fdt_size_t size; |
| 1437 | |
| 1438 | offset = fdt_path_offset(blob, node); |
| 1439 | if (offset < 0) |
| 1440 | return offset; |
| 1441 | |
| 1442 | prop = fdt_getprop(blob, offset, name, &len); |
| 1443 | if (!prop) { |
| 1444 | debug("failed to get %s for %s\n", name, node); |
| 1445 | return -FDT_ERR_NOTFOUND; |
| 1446 | } |
| 1447 | |
| 1448 | if ((len % sizeof(phandle)) != 0) { |
| 1449 | debug("invalid phandle property\n"); |
| 1450 | return -FDT_ERR_BADPHANDLE; |
| 1451 | } |
| 1452 | |
| 1453 | if (len < (sizeof(phandle) * (index + 1))) { |
| 1454 | debug("invalid phandle index\n"); |
| 1455 | return -FDT_ERR_BADPHANDLE; |
| 1456 | } |
| 1457 | |
| 1458 | phandle = fdt32_to_cpu(prop[index]); |
| 1459 | |
| 1460 | offset = fdt_node_offset_by_phandle(blob, phandle); |
| 1461 | if (offset < 0) { |
| 1462 | debug("failed to find node for phandle %u\n", phandle); |
| 1463 | return offset; |
| 1464 | } |
| 1465 | |
| 1466 | carveout->start = fdtdec_get_addr_size_auto_noparent(blob, offset, |
| 1467 | "reg", 0, &size, |
| 1468 | true); |
| 1469 | if (carveout->start == FDT_ADDR_T_NONE) { |
| 1470 | debug("failed to read address/size from \"reg\" property\n"); |
| 1471 | return -FDT_ERR_NOTFOUND; |
| 1472 | } |
| 1473 | |
| 1474 | carveout->end = carveout->start + size - 1; |
| 1475 | |
| 1476 | return 0; |
| 1477 | } |
| 1478 | |
| 1479 | int fdtdec_set_carveout(void *blob, const char *node, const char *prop_name, |
| 1480 | unsigned int index, const char *name, |
| 1481 | const struct fdt_memory *carveout) |
| 1482 | { |
| 1483 | uint32_t phandle; |
| 1484 | int err, offset; |
| 1485 | fdt32_t value; |
| 1486 | |
| 1487 | /* XXX implement support for multiple phandles */ |
| 1488 | if (index > 0) { |
| 1489 | debug("invalid index %u\n", index); |
| 1490 | return -FDT_ERR_BADOFFSET; |
| 1491 | } |
| 1492 | |
| 1493 | err = fdtdec_add_reserved_memory(blob, name, carveout, &phandle); |
| 1494 | if (err < 0) { |
| 1495 | debug("failed to add reserved memory: %d\n", err); |
| 1496 | return err; |
| 1497 | } |
| 1498 | |
| 1499 | offset = fdt_path_offset(blob, node); |
| 1500 | if (offset < 0) { |
| 1501 | debug("failed to find offset for node %s: %d\n", node, offset); |
| 1502 | return offset; |
| 1503 | } |
| 1504 | |
| 1505 | value = cpu_to_fdt32(phandle); |
| 1506 | |
| 1507 | err = fdt_setprop(blob, offset, prop_name, &value, sizeof(value)); |
| 1508 | if (err < 0) { |
| 1509 | debug("failed to set %s property for node %s: %d\n", prop_name, |
| 1510 | node, err); |
| 1511 | return err; |
| 1512 | } |
| 1513 | |
| 1514 | return 0; |
| 1515 | } |
| 1516 | |
Simon Glass | 0879361 | 2015-02-27 22:06:35 -0700 | [diff] [blame] | 1517 | int fdtdec_setup(void) |
Simon Glass | b45122f | 2015-02-27 22:06:34 -0700 | [diff] [blame] | 1518 | { |
Masahiro Yamada | 0f92582 | 2015-08-12 07:31:55 +0900 | [diff] [blame] | 1519 | #if CONFIG_IS_ENABLED(OF_CONTROL) |
Jean-Jacques Hiblot | 2f57c95 | 2017-09-15 12:57:32 +0200 | [diff] [blame] | 1520 | # if CONFIG_IS_ENABLED(MULTI_DTB_FIT) |
| 1521 | void *fdt_blob; |
| 1522 | # endif |
Simon Glass | b45122f | 2015-02-27 22:06:34 -0700 | [diff] [blame] | 1523 | # ifdef CONFIG_OF_EMBED |
| 1524 | /* Get a pointer to the FDT */ |
Goldschmidt Simon | 9bd76b8 | 2017-11-21 12:29:56 +0000 | [diff] [blame] | 1525 | # ifdef CONFIG_SPL_BUILD |
| 1526 | gd->fdt_blob = __dtb_dt_spl_begin; |
| 1527 | # else |
Simon Glass | b45122f | 2015-02-27 22:06:34 -0700 | [diff] [blame] | 1528 | gd->fdt_blob = __dtb_dt_begin; |
Goldschmidt Simon | 9bd76b8 | 2017-11-21 12:29:56 +0000 | [diff] [blame] | 1529 | # endif |
Rob Clark | 3b595da | 2018-01-10 11:34:37 +0100 | [diff] [blame] | 1530 | # elif defined(CONFIG_OF_BOARD) || defined(CONFIG_OF_SEPARATE) |
Alex Deymo | 82f766d | 2017-04-02 01:25:20 -0700 | [diff] [blame] | 1531 | /* Allow the board to override the fdt address. */ |
| 1532 | gd->fdt_blob = board_fdt_blob_setup(); |
Simon Glass | b45122f | 2015-02-27 22:06:34 -0700 | [diff] [blame] | 1533 | # elif defined(CONFIG_OF_HOSTFILE) |
| 1534 | if (sandbox_read_fdt_from_file()) { |
| 1535 | puts("Failed to read control FDT\n"); |
| 1536 | return -1; |
| 1537 | } |
Lukas Auer | c4f603f | 2019-08-21 21:14:40 +0200 | [diff] [blame] | 1538 | # elif defined(CONFIG_OF_PRIOR_STAGE) |
| 1539 | gd->fdt_blob = (void *)prior_stage_fdt_address; |
Simon Glass | b45122f | 2015-02-27 22:06:34 -0700 | [diff] [blame] | 1540 | # endif |
| 1541 | # ifndef CONFIG_SPL_BUILD |
| 1542 | /* Allow the early environment to override the fdt address */ |
Heinrich Schuchardt | f980c99 | 2018-11-18 17:58:50 +0100 | [diff] [blame] | 1543 | gd->fdt_blob = map_sysmem |
| 1544 | (env_get_ulong("fdtcontroladdr", 16, |
| 1545 | (unsigned long)map_to_sysmem(gd->fdt_blob)), 0); |
Simon Glass | b45122f | 2015-02-27 22:06:34 -0700 | [diff] [blame] | 1546 | # endif |
Jean-Jacques Hiblot | 2f57c95 | 2017-09-15 12:57:32 +0200 | [diff] [blame] | 1547 | |
| 1548 | # if CONFIG_IS_ENABLED(MULTI_DTB_FIT) |
| 1549 | /* |
| 1550 | * Try and uncompress the blob. |
| 1551 | * Unfortunately there is no way to know how big the input blob really |
| 1552 | * is. So let us set the maximum input size arbitrarily high. 16MB |
| 1553 | * ought to be more than enough for packed DTBs. |
| 1554 | */ |
| 1555 | if (uncompress_blob(gd->fdt_blob, 0x1000000, &fdt_blob) == 0) |
| 1556 | gd->fdt_blob = fdt_blob; |
| 1557 | |
| 1558 | /* |
| 1559 | * Check if blob is a FIT images containings DTBs. |
| 1560 | * If so, pick the most relevant |
| 1561 | */ |
| 1562 | fdt_blob = locate_dtb_in_fit(gd->fdt_blob); |
Jean-Jacques Hiblot | f1d2bc9 | 2018-12-07 14:50:52 +0100 | [diff] [blame] | 1563 | if (fdt_blob) { |
| 1564 | gd->multi_dtb_fit = gd->fdt_blob; |
Jean-Jacques Hiblot | 2f57c95 | 2017-09-15 12:57:32 +0200 | [diff] [blame] | 1565 | gd->fdt_blob = fdt_blob; |
Jean-Jacques Hiblot | f1d2bc9 | 2018-12-07 14:50:52 +0100 | [diff] [blame] | 1566 | } |
| 1567 | |
Jean-Jacques Hiblot | 2f57c95 | 2017-09-15 12:57:32 +0200 | [diff] [blame] | 1568 | # endif |
Simon Glass | b45122f | 2015-02-27 22:06:34 -0700 | [diff] [blame] | 1569 | #endif |
Jean-Jacques Hiblot | 2f57c95 | 2017-09-15 12:57:32 +0200 | [diff] [blame] | 1570 | |
Simon Glass | 0879361 | 2015-02-27 22:06:35 -0700 | [diff] [blame] | 1571 | return fdtdec_prepare_fdt(); |
Simon Glass | b45122f | 2015-02-27 22:06:34 -0700 | [diff] [blame] | 1572 | } |
| 1573 | |
Jean-Jacques Hiblot | f1d2bc9 | 2018-12-07 14:50:52 +0100 | [diff] [blame] | 1574 | #if CONFIG_IS_ENABLED(MULTI_DTB_FIT) |
| 1575 | int fdtdec_resetup(int *rescan) |
| 1576 | { |
| 1577 | void *fdt_blob; |
| 1578 | |
| 1579 | /* |
| 1580 | * If the current DTB is part of a compressed FIT image, |
| 1581 | * try to locate the best match from the uncompressed |
| 1582 | * FIT image stillpresent there. Save the time and space |
| 1583 | * required to uncompress it again. |
| 1584 | */ |
| 1585 | if (gd->multi_dtb_fit) { |
| 1586 | fdt_blob = locate_dtb_in_fit(gd->multi_dtb_fit); |
| 1587 | |
| 1588 | if (fdt_blob == gd->fdt_blob) { |
| 1589 | /* |
| 1590 | * The best match did not change. no need to tear down |
| 1591 | * the DM and rescan the fdt. |
| 1592 | */ |
| 1593 | *rescan = 0; |
| 1594 | return 0; |
| 1595 | } |
| 1596 | |
| 1597 | *rescan = 1; |
| 1598 | gd->fdt_blob = fdt_blob; |
| 1599 | return fdtdec_prepare_fdt(); |
| 1600 | } |
| 1601 | |
| 1602 | /* |
| 1603 | * If multi_dtb_fit is NULL, it means that blob appended to u-boot is |
| 1604 | * not a FIT image containings DTB, but a single DTB. There is no need |
| 1605 | * to teard down DM and rescan the DT in this case. |
| 1606 | */ |
| 1607 | *rescan = 0; |
| 1608 | return 0; |
| 1609 | } |
| 1610 | #endif |
| 1611 | |
Michael Pratt | 90c08fa | 2018-06-11 13:07:09 -0600 | [diff] [blame] | 1612 | #ifdef CONFIG_NR_DRAM_BANKS |
| 1613 | int fdtdec_decode_ram_size(const void *blob, const char *area, int board_id, |
| 1614 | phys_addr_t *basep, phys_size_t *sizep, bd_t *bd) |
| 1615 | { |
| 1616 | int addr_cells, size_cells; |
| 1617 | const u32 *cell, *end; |
| 1618 | u64 total_size, size, addr; |
| 1619 | int node, child; |
| 1620 | bool auto_size; |
| 1621 | int bank; |
| 1622 | int len; |
| 1623 | |
| 1624 | debug("%s: board_id=%d\n", __func__, board_id); |
| 1625 | if (!area) |
| 1626 | area = "/memory"; |
| 1627 | node = fdt_path_offset(blob, area); |
| 1628 | if (node < 0) { |
| 1629 | debug("No %s node found\n", area); |
| 1630 | return -ENOENT; |
| 1631 | } |
| 1632 | |
| 1633 | cell = fdt_getprop(blob, node, "reg", &len); |
| 1634 | if (!cell) { |
| 1635 | debug("No reg property found\n"); |
| 1636 | return -ENOENT; |
| 1637 | } |
| 1638 | |
| 1639 | addr_cells = fdt_address_cells(blob, node); |
| 1640 | size_cells = fdt_size_cells(blob, node); |
| 1641 | |
| 1642 | /* Check the board id and mask */ |
| 1643 | for (child = fdt_first_subnode(blob, node); |
| 1644 | child >= 0; |
| 1645 | child = fdt_next_subnode(blob, child)) { |
| 1646 | int match_mask, match_value; |
| 1647 | |
| 1648 | match_mask = fdtdec_get_int(blob, child, "match-mask", -1); |
| 1649 | match_value = fdtdec_get_int(blob, child, "match-value", -1); |
| 1650 | |
| 1651 | if (match_value >= 0 && |
| 1652 | ((board_id & match_mask) == match_value)) { |
| 1653 | /* Found matching mask */ |
| 1654 | debug("Found matching mask %d\n", match_mask); |
| 1655 | node = child; |
| 1656 | cell = fdt_getprop(blob, node, "reg", &len); |
| 1657 | if (!cell) { |
| 1658 | debug("No memory-banks property found\n"); |
| 1659 | return -EINVAL; |
| 1660 | } |
| 1661 | break; |
| 1662 | } |
| 1663 | } |
| 1664 | /* Note: if no matching subnode was found we use the parent node */ |
| 1665 | |
| 1666 | if (bd) { |
| 1667 | memset(bd->bi_dram, '\0', sizeof(bd->bi_dram[0]) * |
| 1668 | CONFIG_NR_DRAM_BANKS); |
| 1669 | } |
| 1670 | |
| 1671 | auto_size = fdtdec_get_bool(blob, node, "auto-size"); |
| 1672 | |
| 1673 | total_size = 0; |
| 1674 | end = cell + len / 4 - addr_cells - size_cells; |
| 1675 | debug("cell at %p, end %p\n", cell, end); |
| 1676 | for (bank = 0; bank < CONFIG_NR_DRAM_BANKS; bank++) { |
| 1677 | if (cell > end) |
| 1678 | break; |
| 1679 | addr = 0; |
| 1680 | if (addr_cells == 2) |
| 1681 | addr += (u64)fdt32_to_cpu(*cell++) << 32UL; |
| 1682 | addr += fdt32_to_cpu(*cell++); |
| 1683 | if (bd) |
| 1684 | bd->bi_dram[bank].start = addr; |
| 1685 | if (basep && !bank) |
| 1686 | *basep = (phys_addr_t)addr; |
| 1687 | |
| 1688 | size = 0; |
| 1689 | if (size_cells == 2) |
| 1690 | size += (u64)fdt32_to_cpu(*cell++) << 32UL; |
| 1691 | size += fdt32_to_cpu(*cell++); |
| 1692 | |
| 1693 | if (auto_size) { |
| 1694 | u64 new_size; |
| 1695 | |
Masahiro Yamada | dee37fc | 2018-08-06 20:47:40 +0900 | [diff] [blame] | 1696 | debug("Auto-sizing %llx, size %llx: ", addr, size); |
Michael Pratt | 90c08fa | 2018-06-11 13:07:09 -0600 | [diff] [blame] | 1697 | new_size = get_ram_size((long *)(uintptr_t)addr, size); |
| 1698 | if (new_size == size) { |
| 1699 | debug("OK\n"); |
| 1700 | } else { |
Masahiro Yamada | dee37fc | 2018-08-06 20:47:40 +0900 | [diff] [blame] | 1701 | debug("sized to %llx\n", new_size); |
Michael Pratt | 90c08fa | 2018-06-11 13:07:09 -0600 | [diff] [blame] | 1702 | size = new_size; |
| 1703 | } |
| 1704 | } |
| 1705 | |
| 1706 | if (bd) |
| 1707 | bd->bi_dram[bank].size = size; |
| 1708 | total_size += size; |
| 1709 | } |
| 1710 | |
Masahiro Yamada | dee37fc | 2018-08-06 20:47:40 +0900 | [diff] [blame] | 1711 | debug("Memory size %llu\n", total_size); |
Michael Pratt | 90c08fa | 2018-06-11 13:07:09 -0600 | [diff] [blame] | 1712 | if (sizep) |
| 1713 | *sizep = (phys_size_t)total_size; |
| 1714 | |
| 1715 | return 0; |
| 1716 | } |
| 1717 | #endif /* CONFIG_NR_DRAM_BANKS */ |
| 1718 | |
Simon Glass | b45122f | 2015-02-27 22:06:34 -0700 | [diff] [blame] | 1719 | #endif /* !USE_HOSTCC */ |