Simon Glass | b5220bc | 2011-10-24 19:15:32 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2011 The Chromium OS Authors. |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 3 | * SPDX-License-Identifier: GPL-2.0+ |
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> |
Simon Glass | fcc0a87 | 2015-11-29 13:17:54 -0700 | [diff] [blame] | 8 | #include <dm.h> |
Simon Glass | 5c33c9f | 2014-07-23 06:55:09 -0600 | [diff] [blame] | 9 | #include <errno.h> |
Simon Glass | b5220bc | 2011-10-24 19:15:32 +0000 | [diff] [blame] | 10 | #include <serial.h> |
| 11 | #include <libfdt.h> |
Stephen Warren | 6e06acb | 2016-08-05 09:47:51 -0600 | [diff] [blame] | 12 | #include <fdt_support.h> |
Simon Glass | b5220bc | 2011-10-24 19:15:32 +0000 | [diff] [blame] | 13 | #include <fdtdec.h> |
Simon Glass | b45122f | 2015-02-27 22:06:34 -0700 | [diff] [blame] | 14 | #include <asm/sections.h> |
Simon Glass | 5c33c9f | 2014-07-23 06:55:09 -0600 | [diff] [blame] | 15 | #include <linux/ctype.h> |
Simon Glass | b5220bc | 2011-10-24 19:15:32 +0000 | [diff] [blame] | 16 | |
| 17 | DECLARE_GLOBAL_DATA_PTR; |
| 18 | |
| 19 | /* |
| 20 | * Here are the type we know about. One day we might allow drivers to |
| 21 | * register. For now we just put them here. The COMPAT macro allows us to |
| 22 | * 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] | 23 | * |
| 24 | * NOTE: This list is basically a TODO list for things that need to be |
| 25 | * converted to driver model. So don't add new things here unless there is a |
| 26 | * good reason why driver-model conversion is infeasible. Examples include |
| 27 | * things which are used before driver model is available. |
Simon Glass | b5220bc | 2011-10-24 19:15:32 +0000 | [diff] [blame] | 28 | */ |
| 29 | #define COMPAT(id, name) name |
| 30 | static const char * const compat_names[COMPAT_COUNT] = { |
Simon Glass | f88fe2d | 2012-02-27 10:52:34 +0000 | [diff] [blame] | 31 | COMPAT(UNKNOWN, "<none>"), |
Jimmy Zhang | 0e35ad0 | 2012-04-02 13:18:52 +0000 | [diff] [blame] | 32 | COMPAT(NVIDIA_TEGRA20_EMC, "nvidia,tegra20-emc"), |
| 33 | COMPAT(NVIDIA_TEGRA20_EMC_TABLE, "nvidia,tegra20-emc-table"), |
Jim Lin | 312693c | 2012-07-29 20:53:29 +0000 | [diff] [blame] | 34 | COMPAT(NVIDIA_TEGRA20_NAND, "nvidia,tegra20-nand"), |
Simon Glass | 00f3732 | 2015-04-14 21:03:40 -0600 | [diff] [blame] | 35 | COMPAT(NVIDIA_TEGRA124_PMC, "nvidia,tegra124-pmc"), |
Stephen Warren | 39f6333 | 2016-05-12 12:11:23 -0600 | [diff] [blame] | 36 | COMPAT(NVIDIA_TEGRA186_SDMMC, "nvidia,tegra186-sdhci"), |
Tom Warren | 7aaa5a6 | 2015-03-04 16:36:00 -0700 | [diff] [blame] | 37 | COMPAT(NVIDIA_TEGRA210_SDMMC, "nvidia,tegra210-sdhci"), |
Stephen Warren | a73ca47 | 2014-01-24 12:46:06 -0700 | [diff] [blame] | 38 | COMPAT(NVIDIA_TEGRA124_SDMMC, "nvidia,tegra124-sdhci"), |
Tom Warren | f4e4e0b | 2013-03-04 14:07:18 -0700 | [diff] [blame] | 39 | COMPAT(NVIDIA_TEGRA30_SDMMC, "nvidia,tegra30-sdhci"), |
Tom Warren | c9aa831 | 2013-02-21 12:31:30 +0000 | [diff] [blame] | 40 | COMPAT(NVIDIA_TEGRA20_SDMMC, "nvidia,tegra20-sdhci"), |
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 | c34253d | 2012-12-26 20:03:10 +0000 | [diff] [blame] | 45 | COMPAT(SAMSUNG_S3C2440_I2C, "samsung,s3c2440-i2c"), |
Rajeshwari Shinde | 72dbff1 | 2012-12-26 20:03:16 +0000 | [diff] [blame] | 46 | COMPAT(SAMSUNG_EXYNOS5_SOUND, "samsung,exynos-sound"), |
| 47 | COMPAT(WOLFSON_WM8994_CODEC, "wolfson,wm8994-codec"), |
Rajeshwari Shinde | 6abd162 | 2013-01-07 23:35:05 +0000 | [diff] [blame] | 48 | COMPAT(SAMSUNG_EXYNOS_USB_PHY, "samsung,exynos-usb-phy"), |
Vivek Gautam | 108b85b | 2013-09-14 14:02:48 +0530 | [diff] [blame] | 49 | COMPAT(SAMSUNG_EXYNOS5_USB3_PHY, "samsung,exynos5250-usb3-phy"), |
Akshay Saraswat | 618766c | 2013-02-25 01:13:01 +0000 | [diff] [blame] | 50 | COMPAT(SAMSUNG_EXYNOS_TMU, "samsung,exynos-tmu"), |
Piotr Wilczek | de461c5 | 2014-03-07 14:59:39 +0100 | [diff] [blame] | 51 | COMPAT(SAMSUNG_EXYNOS_MIPI_DSI, "samsung,exynos-mipi-dsi"), |
Jaehoon Chung | 7d3ca0f | 2014-05-16 13:59:51 +0900 | [diff] [blame] | 52 | COMPAT(SAMSUNG_EXYNOS_DWMMC, "samsung,exynos-dwmmc"), |
Piotr Wilczek | 3577fe8 | 2014-03-07 14:59:41 +0100 | [diff] [blame] | 53 | COMPAT(SAMSUNG_EXYNOS_MMC, "samsung,exynos-mmc"), |
Przemyslaw Marczak | f37df0f | 2015-04-20 20:07:45 +0200 | [diff] [blame] | 54 | COMPAT(MAXIM_MAX77686_PMIC, "maxim,max77686"), |
Simon Glass | bb8215f | 2013-03-11 06:08:08 +0000 | [diff] [blame] | 55 | COMPAT(GENERIC_SPI_FLASH, "spi-flash"), |
Rajeshwari Shinde | 7772bb7 | 2013-02-14 19:46:15 +0000 | [diff] [blame] | 56 | COMPAT(MAXIM_98095_CODEC, "maxim,max98095-codec"), |
naveen krishna chatradhi | ecbd7e1 | 2013-04-29 15:58:52 -0700 | [diff] [blame] | 57 | COMPAT(SAMSUNG_EXYNOS5_I2C, "samsung,exynos5-hsi2c"), |
Ajay Kumar | 45c480c | 2014-09-05 16:53:33 +0530 | [diff] [blame] | 58 | COMPAT(SAMSUNG_EXYNOS_SYSMMU, "samsung,sysmmu-v3.3"), |
Simon Glass | 77f9b1f | 2014-11-12 22:42:21 -0700 | [diff] [blame] | 59 | COMPAT(INTEL_MICROCODE, "intel,microcode"), |
Thierry Reding | 6173c45 | 2014-12-09 22:25:05 -0700 | [diff] [blame] | 60 | COMPAT(AMS_AS3722, "ams,as3722"), |
Bin Meng | c89ada0 | 2015-02-05 23:42:26 +0800 | [diff] [blame] | 61 | COMPAT(INTEL_QRK_MRC, "intel,quark-mrc"), |
Masahiro Yamada | 6462cde | 2015-03-11 15:54:46 +0900 | [diff] [blame] | 62 | COMPAT(SOCIONEXT_XHCI, "socionext,uniphier-xhci"), |
Marek Vasut | 6ab00db | 2015-07-25 19:33:56 +0200 | [diff] [blame] | 63 | COMPAT(ALTERA_SOCFPGA_DWMAC, "altr,socfpga-stmmac"), |
Marek Vasut | 129adf5 | 2015-07-25 10:48:14 +0200 | [diff] [blame] | 64 | COMPAT(ALTERA_SOCFPGA_DWMMC, "altr,socfpga-dw-mshc"), |
Marek Vasut | ef4b01b | 2015-12-05 19:28:44 +0100 | [diff] [blame] | 65 | COMPAT(ALTERA_SOCFPGA_DWC2USB, "snps,dwc2"), |
Simon Glass | 39ea0ee | 2016-06-19 17:33:14 -0600 | [diff] [blame] | 66 | COMPAT(INTEL_BAYTRAIL_FSP, "intel,baytrail-fsp"), |
| 67 | COMPAT(INTEL_BAYTRAIL_FSP_MDP, "intel,baytrail-fsp-mdp"), |
| 68 | COMPAT(INTEL_IVYBRIDGE_FSP, "intel,ivybridge-fsp"), |
Boris Brezillon | 4ccae81 | 2016-06-15 21:09:23 +0200 | [diff] [blame] | 69 | COMPAT(COMPAT_SUNXI_NAND, "allwinner,sun4i-a10-nand"), |
Simon Glass | b5220bc | 2011-10-24 19:15:32 +0000 | [diff] [blame] | 70 | }; |
| 71 | |
Simon Glass | a53f4a2 | 2012-01-17 08:20:50 +0000 | [diff] [blame] | 72 | const char *fdtdec_get_compatible(enum fdt_compat_id id) |
| 73 | { |
| 74 | /* We allow reading of the 'unknown' ID for testing purposes */ |
| 75 | assert(id >= 0 && id < COMPAT_COUNT); |
| 76 | return compat_names[id]; |
| 77 | } |
| 78 | |
Stephen Warren | 02464e3 | 2015-08-06 15:31:02 -0600 | [diff] [blame] | 79 | fdt_addr_t fdtdec_get_addr_size_fixed(const void *blob, int node, |
| 80 | const char *prop_name, int index, int na, int ns, |
Stephen Warren | 6e06acb | 2016-08-05 09:47:51 -0600 | [diff] [blame] | 81 | fdt_size_t *sizep, bool translate) |
Stephen Warren | 02464e3 | 2015-08-06 15:31:02 -0600 | [diff] [blame] | 82 | { |
| 83 | const fdt32_t *prop, *prop_end; |
| 84 | const fdt32_t *prop_addr, *prop_size, *prop_after_size; |
| 85 | int len; |
| 86 | fdt_addr_t addr; |
| 87 | |
| 88 | debug("%s: %s: ", __func__, prop_name); |
| 89 | |
| 90 | if (na > (sizeof(fdt_addr_t) / sizeof(fdt32_t))) { |
| 91 | debug("(na too large for fdt_addr_t type)\n"); |
| 92 | return FDT_ADDR_T_NONE; |
| 93 | } |
| 94 | |
| 95 | if (ns > (sizeof(fdt_size_t) / sizeof(fdt32_t))) { |
| 96 | debug("(ns too large for fdt_size_t type)\n"); |
| 97 | return FDT_ADDR_T_NONE; |
| 98 | } |
| 99 | |
| 100 | prop = fdt_getprop(blob, node, prop_name, &len); |
| 101 | if (!prop) { |
| 102 | debug("(not found)\n"); |
| 103 | return FDT_ADDR_T_NONE; |
| 104 | } |
| 105 | prop_end = prop + (len / sizeof(*prop)); |
| 106 | |
| 107 | prop_addr = prop + (index * (na + ns)); |
| 108 | prop_size = prop_addr + na; |
| 109 | prop_after_size = prop_size + ns; |
| 110 | if (prop_after_size > prop_end) { |
| 111 | debug("(not enough data: expected >= %d cells, got %d cells)\n", |
| 112 | (u32)(prop_after_size - prop), ((u32)(prop_end - prop))); |
| 113 | return FDT_ADDR_T_NONE; |
| 114 | } |
| 115 | |
Stephen Warren | 6e06acb | 2016-08-05 09:47:51 -0600 | [diff] [blame] | 116 | #if !defined(CONFIG_SPL_BUILD) && defined(CONFIG_OF_LIBFDT) |
| 117 | if (translate) |
| 118 | addr = fdt_translate_address(blob, node, prop_addr); |
| 119 | else |
| 120 | #endif |
| 121 | addr = fdtdec_get_number(prop_addr, na); |
Stephen Warren | 02464e3 | 2015-08-06 15:31:02 -0600 | [diff] [blame] | 122 | |
| 123 | if (sizep) { |
| 124 | *sizep = fdtdec_get_number(prop_size, ns); |
Simon Glass | fd30d2c | 2016-02-29 15:25:37 -0700 | [diff] [blame] | 125 | debug("addr=%08llx, size=%llx\n", (unsigned long long)addr, |
| 126 | (unsigned long long)*sizep); |
Stephen Warren | 02464e3 | 2015-08-06 15:31:02 -0600 | [diff] [blame] | 127 | } else { |
Simon Glass | fd30d2c | 2016-02-29 15:25:37 -0700 | [diff] [blame] | 128 | debug("addr=%08llx\n", (unsigned long long)addr); |
Stephen Warren | 02464e3 | 2015-08-06 15:31:02 -0600 | [diff] [blame] | 129 | } |
| 130 | |
| 131 | return addr; |
| 132 | } |
| 133 | |
| 134 | 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] | 135 | int node, const char *prop_name, int index, fdt_size_t *sizep, |
| 136 | bool translate) |
Stephen Warren | 02464e3 | 2015-08-06 15:31:02 -0600 | [diff] [blame] | 137 | { |
| 138 | int na, ns; |
| 139 | |
| 140 | debug("%s: ", __func__); |
| 141 | |
| 142 | na = fdt_address_cells(blob, parent); |
| 143 | if (na < 1) { |
| 144 | debug("(bad #address-cells)\n"); |
| 145 | return FDT_ADDR_T_NONE; |
| 146 | } |
| 147 | |
| 148 | ns = fdt_size_cells(blob, parent); |
Przemyslaw Marczak | ff0a635 | 2015-09-30 13:14:50 +0200 | [diff] [blame] | 149 | if (ns < 0) { |
Stephen Warren | 02464e3 | 2015-08-06 15:31:02 -0600 | [diff] [blame] | 150 | debug("(bad #size-cells)\n"); |
| 151 | return FDT_ADDR_T_NONE; |
| 152 | } |
| 153 | |
| 154 | debug("na=%d, ns=%d, ", na, ns); |
| 155 | |
| 156 | return fdtdec_get_addr_size_fixed(blob, node, prop_name, index, na, |
Stephen Warren | 6e06acb | 2016-08-05 09:47:51 -0600 | [diff] [blame] | 157 | ns, sizep, translate); |
Stephen Warren | 02464e3 | 2015-08-06 15:31:02 -0600 | [diff] [blame] | 158 | } |
| 159 | |
| 160 | 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] | 161 | const char *prop_name, int index, fdt_size_t *sizep, |
| 162 | bool translate) |
Stephen Warren | 02464e3 | 2015-08-06 15:31:02 -0600 | [diff] [blame] | 163 | { |
| 164 | int parent; |
| 165 | |
| 166 | debug("%s: ", __func__); |
| 167 | |
| 168 | parent = fdt_parent_offset(blob, node); |
| 169 | if (parent < 0) { |
| 170 | debug("(no parent found)\n"); |
| 171 | return FDT_ADDR_T_NONE; |
| 172 | } |
| 173 | |
| 174 | return fdtdec_get_addr_size_auto_parent(blob, parent, node, prop_name, |
Stephen Warren | 6e06acb | 2016-08-05 09:47:51 -0600 | [diff] [blame] | 175 | index, sizep, translate); |
Stephen Warren | 02464e3 | 2015-08-06 15:31:02 -0600 | [diff] [blame] | 176 | } |
| 177 | |
Simon Glass | 4397a2a | 2013-03-19 04:58:51 +0000 | [diff] [blame] | 178 | fdt_addr_t fdtdec_get_addr_size(const void *blob, int node, |
| 179 | const char *prop_name, fdt_size_t *sizep) |
Simon Glass | b5220bc | 2011-10-24 19:15:32 +0000 | [diff] [blame] | 180 | { |
Stephen Warren | d93b9a0 | 2015-09-25 10:11:41 -0600 | [diff] [blame] | 181 | int ns = sizep ? (sizeof(fdt_size_t) / sizeof(fdt32_t)) : 0; |
| 182 | |
Stephen Warren | 02464e3 | 2015-08-06 15:31:02 -0600 | [diff] [blame] | 183 | return fdtdec_get_addr_size_fixed(blob, node, prop_name, 0, |
| 184 | sizeof(fdt_addr_t) / sizeof(fdt32_t), |
Stephen Warren | 6e06acb | 2016-08-05 09:47:51 -0600 | [diff] [blame] | 185 | ns, sizep, false); |
Simon Glass | b5220bc | 2011-10-24 19:15:32 +0000 | [diff] [blame] | 186 | } |
| 187 | |
Simon Glass | 4397a2a | 2013-03-19 04:58:51 +0000 | [diff] [blame] | 188 | fdt_addr_t fdtdec_get_addr(const void *blob, int node, |
| 189 | const char *prop_name) |
| 190 | { |
| 191 | return fdtdec_get_addr_size(blob, node, prop_name, NULL); |
| 192 | } |
| 193 | |
Simon Glass | fcc0a87 | 2015-11-29 13:17:54 -0700 | [diff] [blame] | 194 | #if defined(CONFIG_PCI) && defined(CONFIG_DM_PCI) |
Bin Meng | a62e84d | 2014-12-31 16:05:11 +0800 | [diff] [blame] | 195 | int fdtdec_get_pci_addr(const void *blob, int node, enum fdt_pci_space type, |
| 196 | const char *prop_name, struct fdt_pci_addr *addr) |
| 197 | { |
| 198 | const u32 *cell; |
| 199 | int len; |
| 200 | int ret = -ENOENT; |
| 201 | |
| 202 | debug("%s: %s: ", __func__, prop_name); |
| 203 | |
| 204 | /* |
| 205 | * If we follow the pci bus bindings strictly, we should check |
| 206 | * the value of the node's parent node's #address-cells and |
| 207 | * #size-cells. They need to be 3 and 2 accordingly. However, |
| 208 | * for simplicity we skip the check here. |
| 209 | */ |
| 210 | cell = fdt_getprop(blob, node, prop_name, &len); |
| 211 | if (!cell) |
| 212 | goto fail; |
| 213 | |
| 214 | if ((len % FDT_PCI_REG_SIZE) == 0) { |
| 215 | int num = len / FDT_PCI_REG_SIZE; |
| 216 | int i; |
| 217 | |
| 218 | for (i = 0; i < num; i++) { |
| 219 | debug("pci address #%d: %08lx %08lx %08lx\n", i, |
Stephen Warren | 4ea5243 | 2015-10-02 17:44:06 -0600 | [diff] [blame] | 220 | (ulong)fdt32_to_cpu(cell[0]), |
| 221 | (ulong)fdt32_to_cpu(cell[1]), |
| 222 | (ulong)fdt32_to_cpu(cell[2])); |
| 223 | if ((fdt32_to_cpu(*cell) & type) == type) { |
| 224 | addr->phys_hi = fdt32_to_cpu(cell[0]); |
| 225 | addr->phys_mid = fdt32_to_cpu(cell[1]); |
| 226 | addr->phys_lo = fdt32_to_cpu(cell[1]); |
Bin Meng | a62e84d | 2014-12-31 16:05:11 +0800 | [diff] [blame] | 227 | break; |
| 228 | } else { |
| 229 | cell += (FDT_PCI_ADDR_CELLS + |
| 230 | FDT_PCI_SIZE_CELLS); |
| 231 | } |
| 232 | } |
| 233 | |
Simon Glass | 106cce9 | 2015-03-05 12:25:19 -0700 | [diff] [blame] | 234 | if (i == num) { |
| 235 | ret = -ENXIO; |
Bin Meng | a62e84d | 2014-12-31 16:05:11 +0800 | [diff] [blame] | 236 | goto fail; |
Simon Glass | 106cce9 | 2015-03-05 12:25:19 -0700 | [diff] [blame] | 237 | } |
Bin Meng | a62e84d | 2014-12-31 16:05:11 +0800 | [diff] [blame] | 238 | |
| 239 | return 0; |
| 240 | } else { |
| 241 | ret = -EINVAL; |
| 242 | } |
| 243 | |
| 244 | fail: |
| 245 | debug("(not found)\n"); |
| 246 | return ret; |
| 247 | } |
| 248 | |
| 249 | int fdtdec_get_pci_vendev(const void *blob, int node, u16 *vendor, u16 *device) |
| 250 | { |
| 251 | const char *list, *end; |
| 252 | int len; |
| 253 | |
| 254 | list = fdt_getprop(blob, node, "compatible", &len); |
| 255 | if (!list) |
| 256 | return -ENOENT; |
| 257 | |
| 258 | end = list + len; |
| 259 | while (list < end) { |
| 260 | char *s; |
| 261 | |
| 262 | len = strlen(list); |
| 263 | if (len >= strlen("pciVVVV,DDDD")) { |
| 264 | s = strstr(list, "pci"); |
| 265 | |
| 266 | /* |
| 267 | * check if the string is something like pciVVVV,DDDD.RR |
| 268 | * or just pciVVVV,DDDD |
| 269 | */ |
| 270 | if (s && s[7] == ',' && |
| 271 | (s[12] == '.' || s[12] == 0)) { |
| 272 | s += 3; |
| 273 | *vendor = simple_strtol(s, NULL, 16); |
| 274 | |
| 275 | s += 5; |
| 276 | *device = simple_strtol(s, NULL, 16); |
| 277 | |
| 278 | return 0; |
| 279 | } |
Bin Meng | a62e84d | 2014-12-31 16:05:11 +0800 | [diff] [blame] | 280 | } |
Bin Meng | bc6351e | 2015-08-20 06:40:25 -0700 | [diff] [blame] | 281 | list += (len + 1); |
Bin Meng | a62e84d | 2014-12-31 16:05:11 +0800 | [diff] [blame] | 282 | } |
| 283 | |
| 284 | return -ENOENT; |
| 285 | } |
| 286 | |
Simon Glass | fcc0a87 | 2015-11-29 13:17:54 -0700 | [diff] [blame] | 287 | int fdtdec_get_pci_bar32(struct udevice *dev, struct fdt_pci_addr *addr, |
| 288 | u32 *bar) |
Bin Meng | a62e84d | 2014-12-31 16:05:11 +0800 | [diff] [blame] | 289 | { |
Bin Meng | a62e84d | 2014-12-31 16:05:11 +0800 | [diff] [blame] | 290 | int barnum; |
Bin Meng | a62e84d | 2014-12-31 16:05:11 +0800 | [diff] [blame] | 291 | |
| 292 | /* extract the bar number from fdt_pci_addr */ |
| 293 | barnum = addr->phys_hi & 0xff; |
| 294 | if ((barnum < PCI_BASE_ADDRESS_0) || (barnum > PCI_CARDBUS_CIS)) |
| 295 | return -EINVAL; |
| 296 | |
| 297 | barnum = (barnum - PCI_BASE_ADDRESS_0) / 4; |
Simon Glass | fcc0a87 | 2015-11-29 13:17:54 -0700 | [diff] [blame] | 298 | *bar = dm_pci_read_bar32(dev, barnum); |
Bin Meng | a62e84d | 2014-12-31 16:05:11 +0800 | [diff] [blame] | 299 | |
| 300 | return 0; |
| 301 | } |
| 302 | #endif |
| 303 | |
Che-Liang Chiou | aadef0a | 2012-10-25 16:31:05 +0000 | [diff] [blame] | 304 | uint64_t fdtdec_get_uint64(const void *blob, int node, const char *prop_name, |
| 305 | uint64_t default_val) |
| 306 | { |
| 307 | const uint64_t *cell64; |
| 308 | int length; |
| 309 | |
| 310 | cell64 = fdt_getprop(blob, node, prop_name, &length); |
| 311 | if (!cell64 || length < sizeof(*cell64)) |
| 312 | return default_val; |
| 313 | |
| 314 | return fdt64_to_cpu(*cell64); |
| 315 | } |
| 316 | |
Simon Glass | f88fe2d | 2012-02-27 10:52:34 +0000 | [diff] [blame] | 317 | int fdtdec_get_is_enabled(const void *blob, int node) |
Simon Glass | b5220bc | 2011-10-24 19:15:32 +0000 | [diff] [blame] | 318 | { |
| 319 | const char *cell; |
| 320 | |
Simon Glass | f88fe2d | 2012-02-27 10:52:34 +0000 | [diff] [blame] | 321 | /* |
| 322 | * It should say "okay", so only allow that. Some fdts use "ok" but |
| 323 | * this is a bug. Please fix your device tree source file. See here |
| 324 | * for discussion: |
| 325 | * |
| 326 | * http://www.mail-archive.com/u-boot@lists.denx.de/msg71598.html |
| 327 | */ |
Simon Glass | b5220bc | 2011-10-24 19:15:32 +0000 | [diff] [blame] | 328 | cell = fdt_getprop(blob, node, "status", NULL); |
| 329 | if (cell) |
Simon Glass | f88fe2d | 2012-02-27 10:52:34 +0000 | [diff] [blame] | 330 | return 0 == strcmp(cell, "okay"); |
| 331 | return 1; |
Simon Glass | b5220bc | 2011-10-24 19:15:32 +0000 | [diff] [blame] | 332 | } |
| 333 | |
Gerald Van Baren | 7cde397 | 2012-11-12 23:13:54 -0500 | [diff] [blame] | 334 | enum fdt_compat_id fdtdec_lookup(const void *blob, int node) |
Simon Glass | b5220bc | 2011-10-24 19:15:32 +0000 | [diff] [blame] | 335 | { |
| 336 | enum fdt_compat_id id; |
| 337 | |
| 338 | /* Search our drivers */ |
| 339 | for (id = COMPAT_UNKNOWN; id < COMPAT_COUNT; id++) |
| 340 | if (0 == fdt_node_check_compatible(blob, node, |
| 341 | compat_names[id])) |
| 342 | return id; |
| 343 | return COMPAT_UNKNOWN; |
| 344 | } |
| 345 | |
| 346 | int fdtdec_next_compatible(const void *blob, int node, |
| 347 | enum fdt_compat_id id) |
| 348 | { |
| 349 | return fdt_node_offset_by_compatible(blob, node, compat_names[id]); |
| 350 | } |
| 351 | |
Simon Glass | 3ddecfc | 2012-04-02 13:18:42 +0000 | [diff] [blame] | 352 | int fdtdec_next_compatible_subnode(const void *blob, int node, |
| 353 | enum fdt_compat_id id, int *depthp) |
| 354 | { |
| 355 | do { |
| 356 | node = fdt_next_node(blob, node, depthp); |
| 357 | } while (*depthp > 1); |
| 358 | |
| 359 | /* If this is a direct subnode, and compatible, return it */ |
| 360 | if (*depthp == 1 && 0 == fdt_node_check_compatible( |
| 361 | blob, node, compat_names[id])) |
| 362 | return node; |
| 363 | |
| 364 | return -FDT_ERR_NOTFOUND; |
| 365 | } |
| 366 | |
Simon Glass | b5220bc | 2011-10-24 19:15:32 +0000 | [diff] [blame] | 367 | int fdtdec_next_alias(const void *blob, const char *name, |
| 368 | enum fdt_compat_id id, int *upto) |
| 369 | { |
| 370 | #define MAX_STR_LEN 20 |
| 371 | char str[MAX_STR_LEN + 20]; |
| 372 | int node, err; |
| 373 | |
| 374 | /* snprintf() is not available */ |
| 375 | assert(strlen(name) < MAX_STR_LEN); |
| 376 | sprintf(str, "%.*s%d", MAX_STR_LEN, name, *upto); |
Simon Glass | 0087847 | 2012-10-31 14:02:42 +0000 | [diff] [blame] | 377 | node = fdt_path_offset(blob, str); |
Simon Glass | b5220bc | 2011-10-24 19:15:32 +0000 | [diff] [blame] | 378 | if (node < 0) |
| 379 | return node; |
| 380 | err = fdt_node_check_compatible(blob, node, compat_names[id]); |
| 381 | if (err < 0) |
| 382 | return err; |
Simon Glass | f88fe2d | 2012-02-27 10:52:34 +0000 | [diff] [blame] | 383 | if (err) |
| 384 | return -FDT_ERR_NOTFOUND; |
| 385 | (*upto)++; |
| 386 | return node; |
Simon Glass | b5220bc | 2011-10-24 19:15:32 +0000 | [diff] [blame] | 387 | } |
| 388 | |
Simon Glass | a53f4a2 | 2012-01-17 08:20:50 +0000 | [diff] [blame] | 389 | int fdtdec_find_aliases_for_id(const void *blob, const char *name, |
| 390 | enum fdt_compat_id id, int *node_list, int maxcount) |
| 391 | { |
Simon Glass | c678227 | 2012-02-03 15:13:53 +0000 | [diff] [blame] | 392 | memset(node_list, '\0', sizeof(*node_list) * maxcount); |
| 393 | |
| 394 | return fdtdec_add_aliases_for_id(blob, name, id, node_list, maxcount); |
| 395 | } |
| 396 | |
| 397 | /* TODO: Can we tighten this code up a little? */ |
| 398 | int fdtdec_add_aliases_for_id(const void *blob, const char *name, |
| 399 | enum fdt_compat_id id, int *node_list, int maxcount) |
| 400 | { |
Simon Glass | a53f4a2 | 2012-01-17 08:20:50 +0000 | [diff] [blame] | 401 | int name_len = strlen(name); |
| 402 | int nodes[maxcount]; |
| 403 | int num_found = 0; |
| 404 | int offset, node; |
| 405 | int alias_node; |
| 406 | int count; |
| 407 | int i, j; |
| 408 | |
| 409 | /* find the alias node if present */ |
| 410 | alias_node = fdt_path_offset(blob, "/aliases"); |
| 411 | |
| 412 | /* |
| 413 | * start with nothing, and we can assume that the root node can't |
| 414 | * match |
| 415 | */ |
| 416 | memset(nodes, '\0', sizeof(nodes)); |
| 417 | |
| 418 | /* First find all the compatible nodes */ |
| 419 | for (node = count = 0; node >= 0 && count < maxcount;) { |
| 420 | node = fdtdec_next_compatible(blob, node, id); |
| 421 | if (node >= 0) |
| 422 | nodes[count++] = node; |
| 423 | } |
| 424 | if (node >= 0) |
| 425 | debug("%s: warning: maxcount exceeded with alias '%s'\n", |
| 426 | __func__, name); |
| 427 | |
| 428 | /* Now find all the aliases */ |
Simon Glass | a53f4a2 | 2012-01-17 08:20:50 +0000 | [diff] [blame] | 429 | for (offset = fdt_first_property_offset(blob, alias_node); |
| 430 | offset > 0; |
| 431 | offset = fdt_next_property_offset(blob, offset)) { |
| 432 | const struct fdt_property *prop; |
| 433 | const char *path; |
| 434 | int number; |
| 435 | int found; |
| 436 | |
| 437 | node = 0; |
| 438 | prop = fdt_get_property_by_offset(blob, offset, NULL); |
| 439 | path = fdt_string(blob, fdt32_to_cpu(prop->nameoff)); |
| 440 | if (prop->len && 0 == strncmp(path, name, name_len)) |
| 441 | node = fdt_path_offset(blob, prop->data); |
| 442 | if (node <= 0) |
| 443 | continue; |
| 444 | |
| 445 | /* Get the alias number */ |
| 446 | number = simple_strtoul(path + name_len, NULL, 10); |
| 447 | if (number < 0 || number >= maxcount) { |
| 448 | debug("%s: warning: alias '%s' is out of range\n", |
| 449 | __func__, path); |
| 450 | continue; |
| 451 | } |
| 452 | |
| 453 | /* Make sure the node we found is actually in our list! */ |
| 454 | found = -1; |
| 455 | for (j = 0; j < count; j++) |
| 456 | if (nodes[j] == node) { |
| 457 | found = j; |
| 458 | break; |
| 459 | } |
| 460 | |
| 461 | if (found == -1) { |
| 462 | debug("%s: warning: alias '%s' points to a node " |
| 463 | "'%s' that is missing or is not compatible " |
| 464 | " with '%s'\n", __func__, path, |
| 465 | fdt_get_name(blob, node, NULL), |
| 466 | compat_names[id]); |
| 467 | continue; |
| 468 | } |
| 469 | |
| 470 | /* |
| 471 | * Add this node to our list in the right place, and mark |
| 472 | * it as done. |
| 473 | */ |
| 474 | if (fdtdec_get_is_enabled(blob, node)) { |
Simon Glass | c678227 | 2012-02-03 15:13:53 +0000 | [diff] [blame] | 475 | if (node_list[number]) { |
| 476 | debug("%s: warning: alias '%s' requires that " |
| 477 | "a node be placed in the list in a " |
| 478 | "position which is already filled by " |
| 479 | "node '%s'\n", __func__, path, |
| 480 | fdt_get_name(blob, node, NULL)); |
| 481 | continue; |
| 482 | } |
Simon Glass | a53f4a2 | 2012-01-17 08:20:50 +0000 | [diff] [blame] | 483 | node_list[number] = node; |
| 484 | if (number >= num_found) |
| 485 | num_found = number + 1; |
| 486 | } |
Simon Glass | c678227 | 2012-02-03 15:13:53 +0000 | [diff] [blame] | 487 | nodes[found] = 0; |
Simon Glass | a53f4a2 | 2012-01-17 08:20:50 +0000 | [diff] [blame] | 488 | } |
| 489 | |
| 490 | /* Add any nodes not mentioned by an alias */ |
| 491 | for (i = j = 0; i < maxcount; i++) { |
| 492 | if (!node_list[i]) { |
| 493 | for (; j < maxcount; j++) |
| 494 | if (nodes[j] && |
| 495 | fdtdec_get_is_enabled(blob, nodes[j])) |
| 496 | break; |
| 497 | |
| 498 | /* Have we run out of nodes to add? */ |
| 499 | if (j == maxcount) |
| 500 | break; |
| 501 | |
| 502 | assert(!node_list[i]); |
| 503 | node_list[i] = nodes[j++]; |
| 504 | if (i >= num_found) |
| 505 | num_found = i + 1; |
| 506 | } |
| 507 | } |
| 508 | |
| 509 | return num_found; |
| 510 | } |
| 511 | |
Simon Glass | 5c33c9f | 2014-07-23 06:55:09 -0600 | [diff] [blame] | 512 | int fdtdec_get_alias_seq(const void *blob, const char *base, int offset, |
| 513 | int *seqp) |
| 514 | { |
| 515 | int base_len = strlen(base); |
| 516 | const char *find_name; |
| 517 | int find_namelen; |
| 518 | int prop_offset; |
| 519 | int aliases; |
| 520 | |
| 521 | find_name = fdt_get_name(blob, offset, &find_namelen); |
| 522 | debug("Looking for '%s' at %d, name %s\n", base, offset, find_name); |
| 523 | |
| 524 | aliases = fdt_path_offset(blob, "/aliases"); |
| 525 | for (prop_offset = fdt_first_property_offset(blob, aliases); |
| 526 | prop_offset > 0; |
| 527 | prop_offset = fdt_next_property_offset(blob, prop_offset)) { |
| 528 | const char *prop; |
| 529 | const char *name; |
| 530 | const char *slash; |
Simon Glass | c4af673 | 2015-06-23 15:39:08 -0600 | [diff] [blame] | 531 | int len, val; |
Simon Glass | 5c33c9f | 2014-07-23 06:55:09 -0600 | [diff] [blame] | 532 | |
| 533 | prop = fdt_getprop_by_offset(blob, prop_offset, &name, &len); |
| 534 | debug(" - %s, %s\n", name, prop); |
| 535 | if (len < find_namelen || *prop != '/' || prop[len - 1] || |
| 536 | strncmp(name, base, base_len)) |
| 537 | continue; |
| 538 | |
| 539 | slash = strrchr(prop, '/'); |
| 540 | if (strcmp(slash + 1, find_name)) |
| 541 | continue; |
Simon Glass | c4af673 | 2015-06-23 15:39:08 -0600 | [diff] [blame] | 542 | val = trailing_strtol(name); |
| 543 | if (val != -1) { |
| 544 | *seqp = val; |
| 545 | debug("Found seq %d\n", *seqp); |
| 546 | return 0; |
Simon Glass | 5c33c9f | 2014-07-23 06:55:09 -0600 | [diff] [blame] | 547 | } |
| 548 | } |
| 549 | |
| 550 | debug("Not found\n"); |
| 551 | return -ENOENT; |
| 552 | } |
| 553 | |
Simon Glass | 3bc37a5 | 2015-10-17 19:41:14 -0600 | [diff] [blame] | 554 | const char *fdtdec_get_chosen_prop(const void *blob, const char *name) |
| 555 | { |
| 556 | int chosen_node; |
| 557 | |
| 558 | if (!blob) |
| 559 | return NULL; |
| 560 | chosen_node = fdt_path_offset(blob, "/chosen"); |
| 561 | return fdt_getprop(blob, chosen_node, name, NULL); |
| 562 | } |
| 563 | |
Simon Glass | aac07d4 | 2014-09-04 16:27:24 -0600 | [diff] [blame] | 564 | int fdtdec_get_chosen_node(const void *blob, const char *name) |
| 565 | { |
| 566 | const char *prop; |
Simon Glass | aac07d4 | 2014-09-04 16:27:24 -0600 | [diff] [blame] | 567 | |
Simon Glass | 3bc37a5 | 2015-10-17 19:41:14 -0600 | [diff] [blame] | 568 | prop = fdtdec_get_chosen_prop(blob, name); |
Simon Glass | aac07d4 | 2014-09-04 16:27:24 -0600 | [diff] [blame] | 569 | if (!prop) |
| 570 | return -FDT_ERR_NOTFOUND; |
| 571 | return fdt_path_offset(blob, prop); |
| 572 | } |
| 573 | |
Simon Glass | 9a263e5 | 2012-03-28 10:08:24 +0000 | [diff] [blame] | 574 | int fdtdec_check_fdt(void) |
| 575 | { |
| 576 | /* |
| 577 | * We must have an FDT, but we cannot panic() yet since the console |
| 578 | * is not ready. So for now, just assert(). Boards which need an early |
| 579 | * FDT (prior to console ready) will need to make their own |
| 580 | * arrangements and do their own checks. |
| 581 | */ |
| 582 | assert(!fdtdec_prepare_fdt()); |
| 583 | return 0; |
| 584 | } |
| 585 | |
Simon Glass | b5220bc | 2011-10-24 19:15:32 +0000 | [diff] [blame] | 586 | /* |
| 587 | * This function is a little odd in that it accesses global data. At some |
| 588 | * point if the architecture board.c files merge this will make more sense. |
| 589 | * Even now, it is common code. |
| 590 | */ |
Simon Glass | 9a263e5 | 2012-03-28 10:08:24 +0000 | [diff] [blame] | 591 | int fdtdec_prepare_fdt(void) |
Simon Glass | b5220bc | 2011-10-24 19:15:32 +0000 | [diff] [blame] | 592 | { |
Simon Glass | c309c2d | 2013-04-20 08:42:46 +0000 | [diff] [blame] | 593 | if (!gd->fdt_blob || ((uintptr_t)gd->fdt_blob & 3) || |
| 594 | fdt_check_header(gd->fdt_blob)) { |
Simon Glass | 6631237 | 2015-02-27 22:06:32 -0700 | [diff] [blame] | 595 | #ifdef CONFIG_SPL_BUILD |
| 596 | puts("Missing DTB\n"); |
| 597 | #else |
| 598 | 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] | 599 | # ifdef DEBUG |
| 600 | if (gd->fdt_blob) { |
| 601 | printf("fdt_blob=%p\n", gd->fdt_blob); |
| 602 | print_buffer((ulong)gd->fdt_blob, gd->fdt_blob, 4, |
| 603 | 32, 0); |
| 604 | } |
| 605 | # endif |
Simon Glass | 6631237 | 2015-02-27 22:06:32 -0700 | [diff] [blame] | 606 | #endif |
Simon Glass | 9a263e5 | 2012-03-28 10:08:24 +0000 | [diff] [blame] | 607 | return -1; |
| 608 | } |
Simon Glass | b5220bc | 2011-10-24 19:15:32 +0000 | [diff] [blame] | 609 | return 0; |
| 610 | } |
Simon Glass | d17da65 | 2012-02-27 10:52:35 +0000 | [diff] [blame] | 611 | |
| 612 | int fdtdec_lookup_phandle(const void *blob, int node, const char *prop_name) |
| 613 | { |
| 614 | const u32 *phandle; |
| 615 | int lookup; |
| 616 | |
Simon Glass | 1cb2323 | 2012-07-12 05:25:01 +0000 | [diff] [blame] | 617 | debug("%s: %s\n", __func__, prop_name); |
Simon Glass | d17da65 | 2012-02-27 10:52:35 +0000 | [diff] [blame] | 618 | phandle = fdt_getprop(blob, node, prop_name, NULL); |
| 619 | if (!phandle) |
| 620 | return -FDT_ERR_NOTFOUND; |
| 621 | |
| 622 | lookup = fdt_node_offset_by_phandle(blob, fdt32_to_cpu(*phandle)); |
| 623 | return lookup; |
| 624 | } |
| 625 | |
| 626 | /** |
| 627 | * Look up a property in a node and check that it has a minimum length. |
| 628 | * |
| 629 | * @param blob FDT blob |
| 630 | * @param node node to examine |
| 631 | * @param prop_name name of property to find |
| 632 | * @param min_len minimum property length in bytes |
| 633 | * @param err 0 if ok, or -FDT_ERR_NOTFOUND if the property is not |
| 634 | found, or -FDT_ERR_BADLAYOUT if not enough data |
| 635 | * @return pointer to cell, which is only valid if err == 0 |
| 636 | */ |
| 637 | static const void *get_prop_check_min_len(const void *blob, int node, |
| 638 | const char *prop_name, int min_len, int *err) |
| 639 | { |
| 640 | const void *cell; |
| 641 | int len; |
| 642 | |
| 643 | debug("%s: %s\n", __func__, prop_name); |
| 644 | cell = fdt_getprop(blob, node, prop_name, &len); |
| 645 | if (!cell) |
| 646 | *err = -FDT_ERR_NOTFOUND; |
| 647 | else if (len < min_len) |
| 648 | *err = -FDT_ERR_BADLAYOUT; |
| 649 | else |
| 650 | *err = 0; |
| 651 | return cell; |
| 652 | } |
| 653 | |
| 654 | int fdtdec_get_int_array(const void *blob, int node, const char *prop_name, |
| 655 | u32 *array, int count) |
| 656 | { |
| 657 | const u32 *cell; |
| 658 | int i, err = 0; |
| 659 | |
| 660 | debug("%s: %s\n", __func__, prop_name); |
| 661 | cell = get_prop_check_min_len(blob, node, prop_name, |
| 662 | sizeof(u32) * count, &err); |
| 663 | if (!err) { |
| 664 | for (i = 0; i < count; i++) |
| 665 | array[i] = fdt32_to_cpu(cell[i]); |
| 666 | } |
| 667 | return err; |
| 668 | } |
| 669 | |
Simon Glass | a9f04d4 | 2014-11-10 18:00:19 -0700 | [diff] [blame] | 670 | int fdtdec_get_int_array_count(const void *blob, int node, |
| 671 | const char *prop_name, u32 *array, int count) |
| 672 | { |
| 673 | const u32 *cell; |
| 674 | int len, elems; |
| 675 | int i; |
| 676 | |
| 677 | debug("%s: %s\n", __func__, prop_name); |
| 678 | cell = fdt_getprop(blob, node, prop_name, &len); |
| 679 | if (!cell) |
| 680 | return -FDT_ERR_NOTFOUND; |
| 681 | elems = len / sizeof(u32); |
| 682 | if (count > elems) |
| 683 | count = elems; |
| 684 | for (i = 0; i < count; i++) |
| 685 | array[i] = fdt32_to_cpu(cell[i]); |
| 686 | |
| 687 | return count; |
| 688 | } |
| 689 | |
Simon Glass | 96875e7 | 2012-04-02 13:18:41 +0000 | [diff] [blame] | 690 | const u32 *fdtdec_locate_array(const void *blob, int node, |
| 691 | const char *prop_name, int count) |
| 692 | { |
| 693 | const u32 *cell; |
| 694 | int err; |
| 695 | |
| 696 | cell = get_prop_check_min_len(blob, node, prop_name, |
| 697 | sizeof(u32) * count, &err); |
| 698 | return err ? NULL : cell; |
| 699 | } |
| 700 | |
Simon Glass | d17da65 | 2012-02-27 10:52:35 +0000 | [diff] [blame] | 701 | int fdtdec_get_bool(const void *blob, int node, const char *prop_name) |
| 702 | { |
| 703 | const s32 *cell; |
| 704 | int len; |
| 705 | |
| 706 | debug("%s: %s\n", __func__, prop_name); |
| 707 | cell = fdt_getprop(blob, node, prop_name, &len); |
| 708 | return cell != NULL; |
| 709 | } |
Simon Glass | ed3ee5c | 2012-02-27 10:52:36 +0000 | [diff] [blame] | 710 | |
Simon Glass | 57068a7 | 2015-01-05 20:05:26 -0700 | [diff] [blame] | 711 | int fdtdec_parse_phandle_with_args(const void *blob, int src_node, |
| 712 | const char *list_name, |
| 713 | const char *cells_name, |
| 714 | int cell_count, int index, |
| 715 | struct fdtdec_phandle_args *out_args) |
| 716 | { |
| 717 | const __be32 *list, *list_end; |
| 718 | int rc = 0, size, cur_index = 0; |
| 719 | uint32_t count = 0; |
| 720 | int node = -1; |
| 721 | int phandle; |
| 722 | |
| 723 | /* Retrieve the phandle list property */ |
| 724 | list = fdt_getprop(blob, src_node, list_name, &size); |
| 725 | if (!list) |
| 726 | return -ENOENT; |
| 727 | list_end = list + size / sizeof(*list); |
| 728 | |
| 729 | /* Loop over the phandles until all the requested entry is found */ |
| 730 | while (list < list_end) { |
| 731 | rc = -EINVAL; |
| 732 | count = 0; |
| 733 | |
| 734 | /* |
| 735 | * If phandle is 0, then it is an empty entry with no |
| 736 | * arguments. Skip forward to the next entry. |
| 737 | */ |
| 738 | phandle = be32_to_cpup(list++); |
| 739 | if (phandle) { |
| 740 | /* |
| 741 | * Find the provider node and parse the #*-cells |
| 742 | * property to determine the argument length. |
| 743 | * |
| 744 | * This is not needed if the cell count is hard-coded |
| 745 | * (i.e. cells_name not set, but cell_count is set), |
| 746 | * except when we're going to return the found node |
| 747 | * below. |
| 748 | */ |
| 749 | if (cells_name || cur_index == index) { |
| 750 | node = fdt_node_offset_by_phandle(blob, |
| 751 | phandle); |
| 752 | if (!node) { |
| 753 | debug("%s: could not find phandle\n", |
| 754 | fdt_get_name(blob, src_node, |
| 755 | NULL)); |
| 756 | goto err; |
| 757 | } |
| 758 | } |
| 759 | |
| 760 | if (cells_name) { |
| 761 | count = fdtdec_get_int(blob, node, cells_name, |
| 762 | -1); |
| 763 | if (count == -1) { |
| 764 | debug("%s: could not get %s for %s\n", |
| 765 | fdt_get_name(blob, src_node, |
| 766 | NULL), |
| 767 | cells_name, |
| 768 | fdt_get_name(blob, node, |
| 769 | NULL)); |
| 770 | goto err; |
| 771 | } |
| 772 | } else { |
| 773 | count = cell_count; |
| 774 | } |
| 775 | |
| 776 | /* |
| 777 | * Make sure that the arguments actually fit in the |
| 778 | * remaining property data length |
| 779 | */ |
| 780 | if (list + count > list_end) { |
| 781 | debug("%s: arguments longer than property\n", |
| 782 | fdt_get_name(blob, src_node, NULL)); |
| 783 | goto err; |
| 784 | } |
| 785 | } |
| 786 | |
| 787 | /* |
| 788 | * All of the error cases above bail out of the loop, so at |
| 789 | * this point, the parsing is successful. If the requested |
| 790 | * index matches, then fill the out_args structure and return, |
| 791 | * or return -ENOENT for an empty entry. |
| 792 | */ |
| 793 | rc = -ENOENT; |
| 794 | if (cur_index == index) { |
| 795 | if (!phandle) |
| 796 | goto err; |
| 797 | |
| 798 | if (out_args) { |
| 799 | int i; |
| 800 | |
| 801 | if (count > MAX_PHANDLE_ARGS) { |
| 802 | debug("%s: too many arguments %d\n", |
| 803 | fdt_get_name(blob, src_node, |
| 804 | NULL), count); |
| 805 | count = MAX_PHANDLE_ARGS; |
| 806 | } |
| 807 | out_args->node = node; |
| 808 | out_args->args_count = count; |
| 809 | for (i = 0; i < count; i++) { |
| 810 | out_args->args[i] = |
| 811 | be32_to_cpup(list++); |
| 812 | } |
| 813 | } |
| 814 | |
| 815 | /* Found it! return success */ |
| 816 | return 0; |
| 817 | } |
| 818 | |
| 819 | node = -1; |
| 820 | list += count; |
| 821 | cur_index++; |
| 822 | } |
| 823 | |
| 824 | /* |
| 825 | * Result will be one of: |
| 826 | * -ENOENT : index is for empty phandle |
| 827 | * -EINVAL : parsing error on data |
| 828 | * [1..n] : Number of phandle (count mode; when index = -1) |
| 829 | */ |
| 830 | rc = index < 0 ? cur_index : -ENOENT; |
| 831 | err: |
| 832 | return rc; |
| 833 | } |
| 834 | |
Peng Fan | 1889a7e | 2016-02-01 13:31:15 +0800 | [diff] [blame] | 835 | int fdtdec_get_child_count(const void *blob, int node) |
| 836 | { |
| 837 | int subnode; |
| 838 | int num = 0; |
| 839 | |
| 840 | fdt_for_each_subnode(blob, subnode, node) |
| 841 | num++; |
| 842 | |
| 843 | return num; |
| 844 | } |
| 845 | |
Anton Staff | bed4d89 | 2012-04-17 09:01:28 +0000 | [diff] [blame] | 846 | int fdtdec_get_byte_array(const void *blob, int node, const char *prop_name, |
| 847 | u8 *array, int count) |
| 848 | { |
| 849 | const u8 *cell; |
| 850 | int err; |
| 851 | |
| 852 | cell = get_prop_check_min_len(blob, node, prop_name, count, &err); |
| 853 | if (!err) |
| 854 | memcpy(array, cell, count); |
| 855 | return err; |
| 856 | } |
| 857 | |
| 858 | const u8 *fdtdec_locate_byte_array(const void *blob, int node, |
| 859 | const char *prop_name, int count) |
| 860 | { |
| 861 | const u8 *cell; |
| 862 | int err; |
| 863 | |
| 864 | cell = get_prop_check_min_len(blob, node, prop_name, count, &err); |
| 865 | if (err) |
| 866 | return NULL; |
| 867 | return cell; |
| 868 | } |
Abhilash Kesavan | 09258f1 | 2012-10-25 16:30:58 +0000 | [diff] [blame] | 869 | |
Abhilash Kesavan | 09258f1 | 2012-10-25 16:30:58 +0000 | [diff] [blame] | 870 | int fdtdec_get_config_int(const void *blob, const char *prop_name, |
| 871 | int default_val) |
| 872 | { |
| 873 | int config_node; |
| 874 | |
| 875 | debug("%s: %s\n", __func__, prop_name); |
| 876 | config_node = fdt_path_offset(blob, "/config"); |
| 877 | if (config_node < 0) |
| 878 | return default_val; |
| 879 | return fdtdec_get_int(blob, config_node, prop_name, default_val); |
| 880 | } |
Simon Glass | 332ab0d | 2012-10-25 16:30:59 +0000 | [diff] [blame] | 881 | |
Gabe Black | 79289c0 | 2012-10-25 16:31:04 +0000 | [diff] [blame] | 882 | int fdtdec_get_config_bool(const void *blob, const char *prop_name) |
| 883 | { |
| 884 | int config_node; |
| 885 | const void *prop; |
| 886 | |
| 887 | debug("%s: %s\n", __func__, prop_name); |
| 888 | config_node = fdt_path_offset(blob, "/config"); |
| 889 | if (config_node < 0) |
| 890 | return 0; |
| 891 | prop = fdt_get_property(blob, config_node, prop_name, NULL); |
| 892 | |
| 893 | return prop != NULL; |
| 894 | } |
| 895 | |
Simon Glass | 332ab0d | 2012-10-25 16:30:59 +0000 | [diff] [blame] | 896 | char *fdtdec_get_config_string(const void *blob, const char *prop_name) |
| 897 | { |
| 898 | const char *nodep; |
| 899 | int nodeoffset; |
| 900 | int len; |
| 901 | |
| 902 | debug("%s: %s\n", __func__, prop_name); |
| 903 | nodeoffset = fdt_path_offset(blob, "/config"); |
| 904 | if (nodeoffset < 0) |
| 905 | return NULL; |
| 906 | |
| 907 | nodep = fdt_getprop(blob, nodeoffset, prop_name, &len); |
| 908 | if (!nodep) |
| 909 | return NULL; |
| 910 | |
| 911 | return (char *)nodep; |
| 912 | } |
Simon Glass | f20c461 | 2012-10-25 16:31:00 +0000 | [diff] [blame] | 913 | |
Simon Glass | 7648983 | 2014-10-23 18:58:51 -0600 | [diff] [blame] | 914 | int fdtdec_decode_region(const void *blob, int node, const char *prop_name, |
| 915 | fdt_addr_t *basep, fdt_size_t *sizep) |
Simon Glass | f20c461 | 2012-10-25 16:31:00 +0000 | [diff] [blame] | 916 | { |
| 917 | const fdt_addr_t *cell; |
| 918 | int len; |
| 919 | |
Simon Glass | 7648983 | 2014-10-23 18:58:51 -0600 | [diff] [blame] | 920 | debug("%s: %s: %s\n", __func__, fdt_get_name(blob, node, NULL), |
| 921 | prop_name); |
Simon Glass | f20c461 | 2012-10-25 16:31:00 +0000 | [diff] [blame] | 922 | cell = fdt_getprop(blob, node, prop_name, &len); |
Simon Glass | 7648983 | 2014-10-23 18:58:51 -0600 | [diff] [blame] | 923 | if (!cell || (len < sizeof(fdt_addr_t) * 2)) { |
| 924 | debug("cell=%p, len=%d\n", cell, len); |
Simon Glass | f20c461 | 2012-10-25 16:31:00 +0000 | [diff] [blame] | 925 | return -1; |
Simon Glass | 7648983 | 2014-10-23 18:58:51 -0600 | [diff] [blame] | 926 | } |
Simon Glass | f20c461 | 2012-10-25 16:31:00 +0000 | [diff] [blame] | 927 | |
Simon Glass | 7648983 | 2014-10-23 18:58:51 -0600 | [diff] [blame] | 928 | *basep = fdt_addr_to_cpu(*cell); |
| 929 | *sizep = fdt_size_to_cpu(cell[1]); |
| 930 | debug("%s: base=%08lx, size=%lx\n", __func__, (ulong)*basep, |
| 931 | (ulong)*sizep); |
| 932 | |
Simon Glass | f20c461 | 2012-10-25 16:31:00 +0000 | [diff] [blame] | 933 | return 0; |
| 934 | } |
Simon Glass | 006e73b | 2014-02-27 13:26:01 -0700 | [diff] [blame] | 935 | |
| 936 | /** |
| 937 | * Read a flash entry from the fdt |
| 938 | * |
| 939 | * @param blob FDT blob |
| 940 | * @param node Offset of node to read |
| 941 | * @param name Name of node being read |
| 942 | * @param entry Place to put offset and size of this node |
| 943 | * @return 0 if ok, -ve on error |
| 944 | */ |
| 945 | int fdtdec_read_fmap_entry(const void *blob, int node, const char *name, |
| 946 | struct fmap_entry *entry) |
| 947 | { |
Simon Glass | f3cc44f | 2014-10-23 18:58:52 -0600 | [diff] [blame] | 948 | const char *prop; |
Simon Glass | 006e73b | 2014-02-27 13:26:01 -0700 | [diff] [blame] | 949 | u32 reg[2]; |
| 950 | |
| 951 | if (fdtdec_get_int_array(blob, node, "reg", reg, 2)) { |
| 952 | debug("Node '%s' has bad/missing 'reg' property\n", name); |
| 953 | return -FDT_ERR_NOTFOUND; |
| 954 | } |
| 955 | entry->offset = reg[0]; |
| 956 | entry->length = reg[1]; |
Simon Glass | f3cc44f | 2014-10-23 18:58:52 -0600 | [diff] [blame] | 957 | entry->used = fdtdec_get_int(blob, node, "used", entry->length); |
| 958 | prop = fdt_getprop(blob, node, "compress", NULL); |
| 959 | entry->compress_algo = prop && !strcmp(prop, "lzo") ? |
| 960 | FMAP_COMPRESS_LZO : FMAP_COMPRESS_NONE; |
| 961 | prop = fdt_getprop(blob, node, "hash", &entry->hash_size); |
| 962 | entry->hash_algo = prop ? FMAP_HASH_SHA256 : FMAP_HASH_NONE; |
| 963 | entry->hash = (uint8_t *)prop; |
Simon Glass | 006e73b | 2014-02-27 13:26:01 -0700 | [diff] [blame] | 964 | |
| 965 | return 0; |
| 966 | } |
Thierry Reding | 56f4224 | 2014-08-26 17:33:53 +0200 | [diff] [blame] | 967 | |
Simon Glass | 5f7bfdd | 2015-03-05 12:25:14 -0700 | [diff] [blame] | 968 | u64 fdtdec_get_number(const fdt32_t *ptr, unsigned int cells) |
Thierry Reding | 56f4224 | 2014-08-26 17:33:53 +0200 | [diff] [blame] | 969 | { |
| 970 | u64 number = 0; |
| 971 | |
| 972 | while (cells--) |
| 973 | number = (number << 32) | fdt32_to_cpu(*ptr++); |
| 974 | |
| 975 | return number; |
| 976 | } |
| 977 | |
| 978 | int fdt_get_resource(const void *fdt, int node, const char *property, |
| 979 | unsigned int index, struct fdt_resource *res) |
| 980 | { |
| 981 | const fdt32_t *ptr, *end; |
| 982 | int na, ns, len, parent; |
| 983 | unsigned int i = 0; |
| 984 | |
| 985 | parent = fdt_parent_offset(fdt, node); |
| 986 | if (parent < 0) |
| 987 | return parent; |
| 988 | |
| 989 | na = fdt_address_cells(fdt, parent); |
| 990 | ns = fdt_size_cells(fdt, parent); |
| 991 | |
| 992 | ptr = fdt_getprop(fdt, node, property, &len); |
| 993 | if (!ptr) |
| 994 | return len; |
| 995 | |
| 996 | end = ptr + len / sizeof(*ptr); |
| 997 | |
| 998 | while (ptr + na + ns <= end) { |
| 999 | if (i == index) { |
| 1000 | res->start = res->end = fdtdec_get_number(ptr, na); |
| 1001 | res->end += fdtdec_get_number(&ptr[na], ns) - 1; |
| 1002 | return 0; |
| 1003 | } |
| 1004 | |
| 1005 | ptr += na + ns; |
| 1006 | i++; |
| 1007 | } |
| 1008 | |
| 1009 | return -FDT_ERR_NOTFOUND; |
| 1010 | } |
| 1011 | |
| 1012 | int fdt_get_named_resource(const void *fdt, int node, const char *property, |
| 1013 | const char *prop_names, const char *name, |
| 1014 | struct fdt_resource *res) |
| 1015 | { |
| 1016 | int index; |
| 1017 | |
| 1018 | index = fdt_find_string(fdt, node, prop_names, name); |
| 1019 | if (index < 0) |
| 1020 | return index; |
| 1021 | |
| 1022 | return fdt_get_resource(fdt, node, property, index, res); |
| 1023 | } |
Thierry Reding | 9f85eee | 2014-08-26 17:33:54 +0200 | [diff] [blame] | 1024 | |
Simon Glass | 2640387 | 2014-10-23 18:58:56 -0600 | [diff] [blame] | 1025 | int fdtdec_decode_memory_region(const void *blob, int config_node, |
| 1026 | const char *mem_type, const char *suffix, |
| 1027 | fdt_addr_t *basep, fdt_size_t *sizep) |
| 1028 | { |
| 1029 | char prop_name[50]; |
| 1030 | const char *mem; |
| 1031 | fdt_size_t size, offset_size; |
| 1032 | fdt_addr_t base, offset; |
| 1033 | int node; |
| 1034 | |
| 1035 | if (config_node == -1) { |
| 1036 | config_node = fdt_path_offset(blob, "/config"); |
| 1037 | if (config_node < 0) { |
| 1038 | debug("%s: Cannot find /config node\n", __func__); |
| 1039 | return -ENOENT; |
| 1040 | } |
| 1041 | } |
| 1042 | if (!suffix) |
| 1043 | suffix = ""; |
| 1044 | |
| 1045 | snprintf(prop_name, sizeof(prop_name), "%s-memory%s", mem_type, |
| 1046 | suffix); |
| 1047 | mem = fdt_getprop(blob, config_node, prop_name, NULL); |
| 1048 | if (!mem) { |
| 1049 | debug("%s: No memory type for '%s', using /memory\n", __func__, |
| 1050 | prop_name); |
| 1051 | mem = "/memory"; |
| 1052 | } |
| 1053 | |
| 1054 | node = fdt_path_offset(blob, mem); |
| 1055 | if (node < 0) { |
| 1056 | debug("%s: Failed to find node '%s': %s\n", __func__, mem, |
| 1057 | fdt_strerror(node)); |
| 1058 | return -ENOENT; |
| 1059 | } |
| 1060 | |
| 1061 | /* |
| 1062 | * Not strictly correct - the memory may have multiple banks. We just |
| 1063 | * use the first |
| 1064 | */ |
| 1065 | if (fdtdec_decode_region(blob, node, "reg", &base, &size)) { |
| 1066 | debug("%s: Failed to decode memory region %s\n", __func__, |
| 1067 | mem); |
| 1068 | return -EINVAL; |
| 1069 | } |
| 1070 | |
| 1071 | snprintf(prop_name, sizeof(prop_name), "%s-offset%s", mem_type, |
| 1072 | suffix); |
| 1073 | if (fdtdec_decode_region(blob, config_node, prop_name, &offset, |
| 1074 | &offset_size)) { |
| 1075 | debug("%s: Failed to decode memory region '%s'\n", __func__, |
| 1076 | prop_name); |
| 1077 | return -EINVAL; |
| 1078 | } |
| 1079 | |
| 1080 | *basep = base + offset; |
| 1081 | *sizep = offset_size; |
| 1082 | |
| 1083 | return 0; |
| 1084 | } |
Simon Glass | b45122f | 2015-02-27 22:06:34 -0700 | [diff] [blame] | 1085 | |
Simon Glass | 12e6711 | 2015-04-14 21:03:21 -0600 | [diff] [blame] | 1086 | static int decode_timing_property(const void *blob, int node, const char *name, |
| 1087 | struct timing_entry *result) |
| 1088 | { |
| 1089 | int length, ret = 0; |
| 1090 | const u32 *prop; |
| 1091 | |
| 1092 | prop = fdt_getprop(blob, node, name, &length); |
| 1093 | if (!prop) { |
| 1094 | debug("%s: could not find property %s\n", |
| 1095 | fdt_get_name(blob, node, NULL), name); |
| 1096 | return length; |
| 1097 | } |
| 1098 | |
| 1099 | if (length == sizeof(u32)) { |
| 1100 | result->typ = fdtdec_get_int(blob, node, name, 0); |
| 1101 | result->min = result->typ; |
| 1102 | result->max = result->typ; |
| 1103 | } else { |
| 1104 | ret = fdtdec_get_int_array(blob, node, name, &result->min, 3); |
| 1105 | } |
| 1106 | |
| 1107 | return ret; |
| 1108 | } |
| 1109 | |
| 1110 | int fdtdec_decode_display_timing(const void *blob, int parent, int index, |
| 1111 | struct display_timing *dt) |
| 1112 | { |
| 1113 | int i, node, timings_node; |
| 1114 | u32 val = 0; |
| 1115 | int ret = 0; |
| 1116 | |
| 1117 | timings_node = fdt_subnode_offset(blob, parent, "display-timings"); |
| 1118 | if (timings_node < 0) |
| 1119 | return timings_node; |
| 1120 | |
| 1121 | for (i = 0, node = fdt_first_subnode(blob, timings_node); |
| 1122 | node > 0 && i != index; |
| 1123 | node = fdt_next_subnode(blob, node)) |
| 1124 | i++; |
| 1125 | |
| 1126 | if (node < 0) |
| 1127 | return node; |
| 1128 | |
| 1129 | memset(dt, 0, sizeof(*dt)); |
| 1130 | |
| 1131 | ret |= decode_timing_property(blob, node, "hback-porch", |
| 1132 | &dt->hback_porch); |
| 1133 | ret |= decode_timing_property(blob, node, "hfront-porch", |
| 1134 | &dt->hfront_porch); |
| 1135 | ret |= decode_timing_property(blob, node, "hactive", &dt->hactive); |
| 1136 | ret |= decode_timing_property(blob, node, "hsync-len", &dt->hsync_len); |
| 1137 | ret |= decode_timing_property(blob, node, "vback-porch", |
| 1138 | &dt->vback_porch); |
| 1139 | ret |= decode_timing_property(blob, node, "vfront-porch", |
| 1140 | &dt->vfront_porch); |
| 1141 | ret |= decode_timing_property(blob, node, "vactive", &dt->vactive); |
| 1142 | ret |= decode_timing_property(blob, node, "vsync-len", &dt->vsync_len); |
| 1143 | ret |= decode_timing_property(blob, node, "clock-frequency", |
| 1144 | &dt->pixelclock); |
| 1145 | |
| 1146 | dt->flags = 0; |
| 1147 | val = fdtdec_get_int(blob, node, "vsync-active", -1); |
| 1148 | if (val != -1) { |
| 1149 | dt->flags |= val ? DISPLAY_FLAGS_VSYNC_HIGH : |
| 1150 | DISPLAY_FLAGS_VSYNC_LOW; |
| 1151 | } |
| 1152 | val = fdtdec_get_int(blob, node, "hsync-active", -1); |
| 1153 | if (val != -1) { |
| 1154 | dt->flags |= val ? DISPLAY_FLAGS_HSYNC_HIGH : |
| 1155 | DISPLAY_FLAGS_HSYNC_LOW; |
| 1156 | } |
| 1157 | val = fdtdec_get_int(blob, node, "de-active", -1); |
| 1158 | if (val != -1) { |
| 1159 | dt->flags |= val ? DISPLAY_FLAGS_DE_HIGH : |
| 1160 | DISPLAY_FLAGS_DE_LOW; |
| 1161 | } |
| 1162 | val = fdtdec_get_int(blob, node, "pixelclk-active", -1); |
| 1163 | if (val != -1) { |
| 1164 | dt->flags |= val ? DISPLAY_FLAGS_PIXDATA_POSEDGE : |
| 1165 | DISPLAY_FLAGS_PIXDATA_NEGEDGE; |
| 1166 | } |
| 1167 | |
| 1168 | if (fdtdec_get_bool(blob, node, "interlaced")) |
| 1169 | dt->flags |= DISPLAY_FLAGS_INTERLACED; |
| 1170 | if (fdtdec_get_bool(blob, node, "doublescan")) |
| 1171 | dt->flags |= DISPLAY_FLAGS_DOUBLESCAN; |
| 1172 | if (fdtdec_get_bool(blob, node, "doubleclk")) |
| 1173 | dt->flags |= DISPLAY_FLAGS_DOUBLECLK; |
| 1174 | |
Simon Glass | 04b9dd1 | 2016-05-05 07:28:21 -0600 | [diff] [blame] | 1175 | return ret; |
Simon Glass | 12e6711 | 2015-04-14 21:03:21 -0600 | [diff] [blame] | 1176 | } |
| 1177 | |
Simon Glass | 0879361 | 2015-02-27 22:06:35 -0700 | [diff] [blame] | 1178 | int fdtdec_setup(void) |
Simon Glass | b45122f | 2015-02-27 22:06:34 -0700 | [diff] [blame] | 1179 | { |
Masahiro Yamada | 0f92582 | 2015-08-12 07:31:55 +0900 | [diff] [blame] | 1180 | #if CONFIG_IS_ENABLED(OF_CONTROL) |
Simon Glass | b45122f | 2015-02-27 22:06:34 -0700 | [diff] [blame] | 1181 | # ifdef CONFIG_OF_EMBED |
| 1182 | /* Get a pointer to the FDT */ |
| 1183 | gd->fdt_blob = __dtb_dt_begin; |
| 1184 | # elif defined CONFIG_OF_SEPARATE |
| 1185 | # ifdef CONFIG_SPL_BUILD |
Simon Glass | 1017296 | 2015-10-17 19:41:19 -0600 | [diff] [blame] | 1186 | /* FDT is at end of BSS unless it is in a different memory region */ |
| 1187 | if (IS_ENABLED(CONFIG_SPL_SEPARATE_BSS)) |
| 1188 | gd->fdt_blob = (ulong *)&_image_binary_end; |
| 1189 | else |
| 1190 | gd->fdt_blob = (ulong *)&__bss_end; |
Simon Glass | b45122f | 2015-02-27 22:06:34 -0700 | [diff] [blame] | 1191 | # else |
| 1192 | /* FDT is at end of image */ |
| 1193 | gd->fdt_blob = (ulong *)&_end; |
Masahiro Yamada | 3bd926c | 2015-08-01 16:03:25 +0900 | [diff] [blame] | 1194 | # endif |
Simon Glass | b45122f | 2015-02-27 22:06:34 -0700 | [diff] [blame] | 1195 | # elif defined(CONFIG_OF_HOSTFILE) |
| 1196 | if (sandbox_read_fdt_from_file()) { |
| 1197 | puts("Failed to read control FDT\n"); |
| 1198 | return -1; |
| 1199 | } |
| 1200 | # endif |
| 1201 | # ifndef CONFIG_SPL_BUILD |
| 1202 | /* Allow the early environment to override the fdt address */ |
| 1203 | gd->fdt_blob = (void *)getenv_ulong("fdtcontroladdr", 16, |
| 1204 | (uintptr_t)gd->fdt_blob); |
| 1205 | # endif |
| 1206 | #endif |
Simon Glass | 0879361 | 2015-02-27 22:06:35 -0700 | [diff] [blame] | 1207 | return fdtdec_prepare_fdt(); |
Simon Glass | b45122f | 2015-02-27 22:06:34 -0700 | [diff] [blame] | 1208 | } |
| 1209 | |
| 1210 | #endif /* !USE_HOSTCC */ |