blob: 464de5b3b526fa2fda5fb758874b31a922f6a03f [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glassb5220bc2011-10-24 19:15:32 +00002/*
3 * Copyright (c) 2011 The Chromium OS Authors.
Simon Glassb5220bc2011-10-24 19:15:32 +00004 */
5
Heiko Schocher29a23f92014-03-03 12:19:30 +01006#ifndef USE_HOSTCC
Simon Glassb5220bc2011-10-24 19:15:32 +00007#include <common.h>
Jean-Jacques Hiblot035d6402017-09-15 12:57:31 +02008#include <boot_fit.h>
Simon Glassfcc0a872015-11-29 13:17:54 -07009#include <dm.h>
Simon Glassb7e0d732017-05-18 20:09:02 -060010#include <dm/of_extra.h>
Jean-Jacques Hiblot035d6402017-09-15 12:57:31 +020011#include <errno.h>
12#include <fdtdec.h>
13#include <fdt_support.h>
Simon Glass0c670fc2019-08-01 09:46:36 -060014#include <gzip.h>
Heinrich Schuchardtf980c992018-11-18 17:58:50 +010015#include <mapmem.h>
Masahiro Yamadab08c8c42018-03-05 01:20:11 +090016#include <linux/libfdt.h>
Jean-Jacques Hiblot035d6402017-09-15 12:57:31 +020017#include <serial.h>
18#include <asm/sections.h>
Simon Glass5c33c9f2014-07-23 06:55:09 -060019#include <linux/ctype.h>
Jean-Jacques Hiblot2f57c952017-09-15 12:57:32 +020020#include <linux/lzo.h>
Simon Glassb5220bc2011-10-24 19:15:32 +000021
22DECLARE_GLOBAL_DATA_PTR;
23
24/*
25 * Here are the type we know about. One day we might allow drivers to
26 * register. For now we just put them here. The COMPAT macro allows us to
27 * turn this into a sparse list later, and keeps the ID with the name.
Simon Glass01a227d2016-06-19 17:33:13 -060028 *
29 * NOTE: This list is basically a TODO list for things that need to be
30 * converted to driver model. So don't add new things here unless there is a
31 * good reason why driver-model conversion is infeasible. Examples include
32 * things which are used before driver model is available.
Simon Glassb5220bc2011-10-24 19:15:32 +000033 */
34#define COMPAT(id, name) name
35static const char * const compat_names[COMPAT_COUNT] = {
Simon Glassf88fe2d2012-02-27 10:52:34 +000036 COMPAT(UNKNOWN, "<none>"),
Jimmy Zhang0e35ad02012-04-02 13:18:52 +000037 COMPAT(NVIDIA_TEGRA20_EMC, "nvidia,tegra20-emc"),
38 COMPAT(NVIDIA_TEGRA20_EMC_TABLE, "nvidia,tegra20-emc-table"),
Jim Lin312693c2012-07-29 20:53:29 +000039 COMPAT(NVIDIA_TEGRA20_NAND, "nvidia,tegra20-nand"),
Thierry Reding79c7a902014-12-09 22:25:09 -070040 COMPAT(NVIDIA_TEGRA124_XUSB_PADCTL, "nvidia,tegra124-xusb-padctl"),
Tom Warren7aaa5a62015-03-04 16:36:00 -070041 COMPAT(NVIDIA_TEGRA210_XUSB_PADCTL, "nvidia,tegra210-xusb-padctl"),
Hatim RVcc9fe332012-12-11 00:52:46 +000042 COMPAT(SMSC_LAN9215, "smsc,lan9215"),
43 COMPAT(SAMSUNG_EXYNOS5_SROMC, "samsung,exynos-sromc"),
Rajeshwari Shinde6abd1622013-01-07 23:35:05 +000044 COMPAT(SAMSUNG_EXYNOS_USB_PHY, "samsung,exynos-usb-phy"),
Vivek Gautam108b85b2013-09-14 14:02:48 +053045 COMPAT(SAMSUNG_EXYNOS5_USB3_PHY, "samsung,exynos5250-usb3-phy"),
Akshay Saraswat618766c2013-02-25 01:13:01 +000046 COMPAT(SAMSUNG_EXYNOS_TMU, "samsung,exynos-tmu"),
Piotr Wilczekde461c52014-03-07 14:59:39 +010047 COMPAT(SAMSUNG_EXYNOS_MIPI_DSI, "samsung,exynos-mipi-dsi"),
Jaehoon Chung7d3ca0f2014-05-16 13:59:51 +090048 COMPAT(SAMSUNG_EXYNOS_DWMMC, "samsung,exynos-dwmmc"),
Neil Armstrong51e4e3e2019-02-10 10:16:21 +000049 COMPAT(GENERIC_SPI_FLASH, "jedec,spi-nor"),
Ajay Kumar45c480c2014-09-05 16:53:33 +053050 COMPAT(SAMSUNG_EXYNOS_SYSMMU, "samsung,sysmmu-v3.3"),
Simon Glass77f9b1f2014-11-12 22:42:21 -070051 COMPAT(INTEL_MICROCODE, "intel,microcode"),
Bin Mengc89ada02015-02-05 23:42:26 +080052 COMPAT(INTEL_QRK_MRC, "intel,quark-mrc"),
Marek Vasut6ab00db2015-07-25 19:33:56 +020053 COMPAT(ALTERA_SOCFPGA_DWMAC, "altr,socfpga-stmmac"),
Marek Vasut129adf52015-07-25 10:48:14 +020054 COMPAT(ALTERA_SOCFPGA_DWMMC, "altr,socfpga-dw-mshc"),
Marek Vasutef4b01b2015-12-05 19:28:44 +010055 COMPAT(ALTERA_SOCFPGA_DWC2USB, "snps,dwc2"),
Simon Glass39ea0ee2016-06-19 17:33:14 -060056 COMPAT(INTEL_BAYTRAIL_FSP, "intel,baytrail-fsp"),
57 COMPAT(INTEL_BAYTRAIL_FSP_MDP, "intel,baytrail-fsp-mdp"),
58 COMPAT(INTEL_IVYBRIDGE_FSP, "intel,ivybridge-fsp"),
Boris Brezillon4ccae812016-06-15 21:09:23 +020059 COMPAT(COMPAT_SUNXI_NAND, "allwinner,sun4i-a10-nand"),
Ley Foon Tane11b5e82017-04-05 17:32:47 +080060 COMPAT(ALTERA_SOCFPGA_CLK, "altr,clk-mgr"),
61 COMPAT(ALTERA_SOCFPGA_PINCTRL_SINGLE, "pinctrl-single"),
62 COMPAT(ALTERA_SOCFPGA_H2F_BRG, "altr,socfpga-hps2fpga-bridge"),
63 COMPAT(ALTERA_SOCFPGA_LWH2F_BRG, "altr,socfpga-lwhps2fpga-bridge"),
64 COMPAT(ALTERA_SOCFPGA_F2H_BRG, "altr,socfpga-fpga2hps-bridge"),
65 COMPAT(ALTERA_SOCFPGA_F2SDR0, "altr,socfpga-fpga2sdram0-bridge"),
66 COMPAT(ALTERA_SOCFPGA_F2SDR1, "altr,socfpga-fpga2sdram1-bridge"),
67 COMPAT(ALTERA_SOCFPGA_F2SDR2, "altr,socfpga-fpga2sdram2-bridge"),
Tien Fong Cheeeb57c0b2017-09-25 16:40:03 +080068 COMPAT(ALTERA_SOCFPGA_FPGA0, "altr,socfpga-a10-fpga-mgr"),
69 COMPAT(ALTERA_SOCFPGA_NOC, "altr,socfpga-a10-noc"),
Marek Vasut19c8fc72018-05-12 11:56:10 +020070 COMPAT(ALTERA_SOCFPGA_CLK_INIT, "altr,socfpga-a10-clk-init")
Simon Glassb5220bc2011-10-24 19:15:32 +000071};
72
Simon Glassa53f4a22012-01-17 08:20:50 +000073const char *fdtdec_get_compatible(enum fdt_compat_id id)
74{
75 /* We allow reading of the 'unknown' ID for testing purposes */
76 assert(id >= 0 && id < COMPAT_COUNT);
77 return compat_names[id];
78}
79
Stephen Warren02464e32015-08-06 15:31:02 -060080fdt_addr_t fdtdec_get_addr_size_fixed(const void *blob, int node,
Mario Six2e386622018-01-15 11:07:35 +010081 const char *prop_name, int index, int na,
82 int ns, fdt_size_t *sizep,
83 bool translate)
Stephen Warren02464e32015-08-06 15:31:02 -060084{
85 const fdt32_t *prop, *prop_end;
86 const fdt32_t *prop_addr, *prop_size, *prop_after_size;
87 int len;
88 fdt_addr_t addr;
89
90 debug("%s: %s: ", __func__, prop_name);
91
Stephen Warren02464e32015-08-06 15:31:02 -060092 prop = fdt_getprop(blob, node, prop_name, &len);
93 if (!prop) {
94 debug("(not found)\n");
95 return FDT_ADDR_T_NONE;
96 }
97 prop_end = prop + (len / sizeof(*prop));
98
99 prop_addr = prop + (index * (na + ns));
100 prop_size = prop_addr + na;
101 prop_after_size = prop_size + ns;
102 if (prop_after_size > prop_end) {
103 debug("(not enough data: expected >= %d cells, got %d cells)\n",
104 (u32)(prop_after_size - prop), ((u32)(prop_end - prop)));
105 return FDT_ADDR_T_NONE;
106 }
107
Vignesh R5efa1bf2017-03-20 10:04:38 +0530108#if CONFIG_IS_ENABLED(OF_TRANSLATE)
Stephen Warren6e06acb2016-08-05 09:47:51 -0600109 if (translate)
110 addr = fdt_translate_address(blob, node, prop_addr);
111 else
112#endif
113 addr = fdtdec_get_number(prop_addr, na);
Stephen Warren02464e32015-08-06 15:31:02 -0600114
115 if (sizep) {
116 *sizep = fdtdec_get_number(prop_size, ns);
Simon Glassfd30d2c2016-02-29 15:25:37 -0700117 debug("addr=%08llx, size=%llx\n", (unsigned long long)addr,
118 (unsigned long long)*sizep);
Stephen Warren02464e32015-08-06 15:31:02 -0600119 } else {
Simon Glassfd30d2c2016-02-29 15:25:37 -0700120 debug("addr=%08llx\n", (unsigned long long)addr);
Stephen Warren02464e32015-08-06 15:31:02 -0600121 }
122
123 return addr;
124}
125
126fdt_addr_t fdtdec_get_addr_size_auto_parent(const void *blob, int parent,
Mario Six2e386622018-01-15 11:07:35 +0100127 int node, const char *prop_name,
128 int index, fdt_size_t *sizep,
129 bool translate)
Stephen Warren02464e32015-08-06 15:31:02 -0600130{
131 int na, ns;
132
133 debug("%s: ", __func__);
134
135 na = fdt_address_cells(blob, parent);
136 if (na < 1) {
137 debug("(bad #address-cells)\n");
138 return FDT_ADDR_T_NONE;
139 }
140
141 ns = fdt_size_cells(blob, parent);
Przemyslaw Marczakff0a6352015-09-30 13:14:50 +0200142 if (ns < 0) {
Stephen Warren02464e32015-08-06 15:31:02 -0600143 debug("(bad #size-cells)\n");
144 return FDT_ADDR_T_NONE;
145 }
146
147 debug("na=%d, ns=%d, ", na, ns);
148
149 return fdtdec_get_addr_size_fixed(blob, node, prop_name, index, na,
Stephen Warren6e06acb2016-08-05 09:47:51 -0600150 ns, sizep, translate);
Stephen Warren02464e32015-08-06 15:31:02 -0600151}
152
153fdt_addr_t fdtdec_get_addr_size_auto_noparent(const void *blob, int node,
Mario Six2e386622018-01-15 11:07:35 +0100154 const char *prop_name, int index,
155 fdt_size_t *sizep,
156 bool translate)
Stephen Warren02464e32015-08-06 15:31:02 -0600157{
158 int parent;
159
160 debug("%s: ", __func__);
161
162 parent = fdt_parent_offset(blob, node);
163 if (parent < 0) {
164 debug("(no parent found)\n");
165 return FDT_ADDR_T_NONE;
166 }
167
168 return fdtdec_get_addr_size_auto_parent(blob, parent, node, prop_name,
Stephen Warren6e06acb2016-08-05 09:47:51 -0600169 index, sizep, translate);
Stephen Warren02464e32015-08-06 15:31:02 -0600170}
171
Simon Glass4397a2a2013-03-19 04:58:51 +0000172fdt_addr_t fdtdec_get_addr_size(const void *blob, int node,
Mario Six2e386622018-01-15 11:07:35 +0100173 const char *prop_name, fdt_size_t *sizep)
Simon Glassb5220bc2011-10-24 19:15:32 +0000174{
Stephen Warrend93b9a02015-09-25 10:11:41 -0600175 int ns = sizep ? (sizeof(fdt_size_t) / sizeof(fdt32_t)) : 0;
176
Stephen Warren02464e32015-08-06 15:31:02 -0600177 return fdtdec_get_addr_size_fixed(blob, node, prop_name, 0,
178 sizeof(fdt_addr_t) / sizeof(fdt32_t),
Stephen Warren6e06acb2016-08-05 09:47:51 -0600179 ns, sizep, false);
Simon Glassb5220bc2011-10-24 19:15:32 +0000180}
181
Mario Six2e386622018-01-15 11:07:35 +0100182fdt_addr_t fdtdec_get_addr(const void *blob, int node, const char *prop_name)
Simon Glass4397a2a2013-03-19 04:58:51 +0000183{
184 return fdtdec_get_addr_size(blob, node, prop_name, NULL);
185}
186
Sekhar Norid50d6812018-12-06 15:40:08 +0530187#if CONFIG_IS_ENABLED(PCI) && defined(CONFIG_DM_PCI)
Bin Menga62e84d2014-12-31 16:05:11 +0800188int fdtdec_get_pci_addr(const void *blob, int node, enum fdt_pci_space type,
Mario Six2e386622018-01-15 11:07:35 +0100189 const char *prop_name, struct fdt_pci_addr *addr)
Bin Menga62e84d2014-12-31 16:05:11 +0800190{
191 const u32 *cell;
192 int len;
193 int ret = -ENOENT;
194
195 debug("%s: %s: ", __func__, prop_name);
196
197 /*
198 * If we follow the pci bus bindings strictly, we should check
199 * the value of the node's parent node's #address-cells and
200 * #size-cells. They need to be 3 and 2 accordingly. However,
201 * for simplicity we skip the check here.
202 */
203 cell = fdt_getprop(blob, node, prop_name, &len);
204 if (!cell)
205 goto fail;
206
207 if ((len % FDT_PCI_REG_SIZE) == 0) {
208 int num = len / FDT_PCI_REG_SIZE;
209 int i;
210
211 for (i = 0; i < num; i++) {
212 debug("pci address #%d: %08lx %08lx %08lx\n", i,
Stephen Warren4ea52432015-10-02 17:44:06 -0600213 (ulong)fdt32_to_cpu(cell[0]),
214 (ulong)fdt32_to_cpu(cell[1]),
215 (ulong)fdt32_to_cpu(cell[2]));
216 if ((fdt32_to_cpu(*cell) & type) == type) {
217 addr->phys_hi = fdt32_to_cpu(cell[0]);
218 addr->phys_mid = fdt32_to_cpu(cell[1]);
219 addr->phys_lo = fdt32_to_cpu(cell[1]);
Bin Menga62e84d2014-12-31 16:05:11 +0800220 break;
Bin Menga62e84d2014-12-31 16:05:11 +0800221 }
Mario Sixb79221a2018-01-15 11:07:36 +0100222
223 cell += (FDT_PCI_ADDR_CELLS +
224 FDT_PCI_SIZE_CELLS);
Bin Menga62e84d2014-12-31 16:05:11 +0800225 }
226
Simon Glass106cce92015-03-05 12:25:19 -0700227 if (i == num) {
228 ret = -ENXIO;
Bin Menga62e84d2014-12-31 16:05:11 +0800229 goto fail;
Simon Glass106cce92015-03-05 12:25:19 -0700230 }
Bin Menga62e84d2014-12-31 16:05:11 +0800231
232 return 0;
Bin Menga62e84d2014-12-31 16:05:11 +0800233 }
234
Mario Sixb79221a2018-01-15 11:07:36 +0100235 ret = -EINVAL;
236
Bin Menga62e84d2014-12-31 16:05:11 +0800237fail:
238 debug("(not found)\n");
239 return ret;
240}
241
242int fdtdec_get_pci_vendev(const void *blob, int node, u16 *vendor, u16 *device)
243{
244 const char *list, *end;
245 int len;
246
247 list = fdt_getprop(blob, node, "compatible", &len);
248 if (!list)
249 return -ENOENT;
250
251 end = list + len;
252 while (list < end) {
Bin Menga62e84d2014-12-31 16:05:11 +0800253 len = strlen(list);
254 if (len >= strlen("pciVVVV,DDDD")) {
Mario Sixb79221a2018-01-15 11:07:36 +0100255 char *s = strstr(list, "pci");
Bin Menga62e84d2014-12-31 16:05:11 +0800256
257 /*
258 * check if the string is something like pciVVVV,DDDD.RR
259 * or just pciVVVV,DDDD
260 */
261 if (s && s[7] == ',' &&
262 (s[12] == '.' || s[12] == 0)) {
263 s += 3;
264 *vendor = simple_strtol(s, NULL, 16);
265
266 s += 5;
267 *device = simple_strtol(s, NULL, 16);
268
269 return 0;
270 }
Bin Menga62e84d2014-12-31 16:05:11 +0800271 }
Bin Mengbc6351e2015-08-20 06:40:25 -0700272 list += (len + 1);
Bin Menga62e84d2014-12-31 16:05:11 +0800273 }
274
275 return -ENOENT;
276}
277
Simon Glassfcc0a872015-11-29 13:17:54 -0700278int fdtdec_get_pci_bar32(struct udevice *dev, struct fdt_pci_addr *addr,
279 u32 *bar)
Bin Menga62e84d2014-12-31 16:05:11 +0800280{
Bin Menga62e84d2014-12-31 16:05:11 +0800281 int barnum;
Bin Menga62e84d2014-12-31 16:05:11 +0800282
283 /* extract the bar number from fdt_pci_addr */
284 barnum = addr->phys_hi & 0xff;
Mario Sixb79221a2018-01-15 11:07:36 +0100285 if (barnum < PCI_BASE_ADDRESS_0 || barnum > PCI_CARDBUS_CIS)
Bin Menga62e84d2014-12-31 16:05:11 +0800286 return -EINVAL;
287
288 barnum = (barnum - PCI_BASE_ADDRESS_0) / 4;
Simon Glassfcc0a872015-11-29 13:17:54 -0700289 *bar = dm_pci_read_bar32(dev, barnum);
Bin Menga62e84d2014-12-31 16:05:11 +0800290
291 return 0;
292}
293#endif
294
Che-Liang Chiouaadef0a2012-10-25 16:31:05 +0000295uint64_t fdtdec_get_uint64(const void *blob, int node, const char *prop_name,
Mario Six2e386622018-01-15 11:07:35 +0100296 uint64_t default_val)
Che-Liang Chiouaadef0a2012-10-25 16:31:05 +0000297{
298 const uint64_t *cell64;
299 int length;
300
301 cell64 = fdt_getprop(blob, node, prop_name, &length);
302 if (!cell64 || length < sizeof(*cell64))
303 return default_val;
304
305 return fdt64_to_cpu(*cell64);
306}
307
Simon Glassf88fe2d2012-02-27 10:52:34 +0000308int fdtdec_get_is_enabled(const void *blob, int node)
Simon Glassb5220bc2011-10-24 19:15:32 +0000309{
310 const char *cell;
311
Simon Glassf88fe2d2012-02-27 10:52:34 +0000312 /*
313 * It should say "okay", so only allow that. Some fdts use "ok" but
314 * this is a bug. Please fix your device tree source file. See here
315 * for discussion:
316 *
317 * http://www.mail-archive.com/u-boot@lists.denx.de/msg71598.html
318 */
Simon Glassb5220bc2011-10-24 19:15:32 +0000319 cell = fdt_getprop(blob, node, "status", NULL);
320 if (cell)
Mario Sixb79221a2018-01-15 11:07:36 +0100321 return strcmp(cell, "okay") == 0;
Simon Glassf88fe2d2012-02-27 10:52:34 +0000322 return 1;
Simon Glassb5220bc2011-10-24 19:15:32 +0000323}
324
Gerald Van Baren7cde3972012-11-12 23:13:54 -0500325enum fdt_compat_id fdtdec_lookup(const void *blob, int node)
Simon Glassb5220bc2011-10-24 19:15:32 +0000326{
327 enum fdt_compat_id id;
328
329 /* Search our drivers */
330 for (id = COMPAT_UNKNOWN; id < COMPAT_COUNT; id++)
Mario Sixb79221a2018-01-15 11:07:36 +0100331 if (fdt_node_check_compatible(blob, node,
332 compat_names[id]) == 0)
Simon Glassb5220bc2011-10-24 19:15:32 +0000333 return id;
334 return COMPAT_UNKNOWN;
335}
336
Mario Six2e386622018-01-15 11:07:35 +0100337int fdtdec_next_compatible(const void *blob, int node, enum fdt_compat_id id)
Simon Glassb5220bc2011-10-24 19:15:32 +0000338{
339 return fdt_node_offset_by_compatible(blob, node, compat_names[id]);
340}
341
Simon Glass3ddecfc2012-04-02 13:18:42 +0000342int fdtdec_next_compatible_subnode(const void *blob, int node,
Mario Six2e386622018-01-15 11:07:35 +0100343 enum fdt_compat_id id, int *depthp)
Simon Glass3ddecfc2012-04-02 13:18:42 +0000344{
345 do {
346 node = fdt_next_node(blob, node, depthp);
347 } while (*depthp > 1);
348
349 /* If this is a direct subnode, and compatible, return it */
350 if (*depthp == 1 && 0 == fdt_node_check_compatible(
351 blob, node, compat_names[id]))
352 return node;
353
354 return -FDT_ERR_NOTFOUND;
355}
356
Mario Six2e386622018-01-15 11:07:35 +0100357int fdtdec_next_alias(const void *blob, const char *name, enum fdt_compat_id id,
358 int *upto)
Simon Glassb5220bc2011-10-24 19:15:32 +0000359{
360#define MAX_STR_LEN 20
361 char str[MAX_STR_LEN + 20];
362 int node, err;
363
364 /* snprintf() is not available */
365 assert(strlen(name) < MAX_STR_LEN);
366 sprintf(str, "%.*s%d", MAX_STR_LEN, name, *upto);
Simon Glass00878472012-10-31 14:02:42 +0000367 node = fdt_path_offset(blob, str);
Simon Glassb5220bc2011-10-24 19:15:32 +0000368 if (node < 0)
369 return node;
370 err = fdt_node_check_compatible(blob, node, compat_names[id]);
371 if (err < 0)
372 return err;
Simon Glassf88fe2d2012-02-27 10:52:34 +0000373 if (err)
374 return -FDT_ERR_NOTFOUND;
375 (*upto)++;
376 return node;
Simon Glassb5220bc2011-10-24 19:15:32 +0000377}
378
Simon Glassa53f4a22012-01-17 08:20:50 +0000379int fdtdec_find_aliases_for_id(const void *blob, const char *name,
Mario Six2e386622018-01-15 11:07:35 +0100380 enum fdt_compat_id id, int *node_list,
381 int maxcount)
Simon Glassa53f4a22012-01-17 08:20:50 +0000382{
Simon Glassc6782272012-02-03 15:13:53 +0000383 memset(node_list, '\0', sizeof(*node_list) * maxcount);
384
385 return fdtdec_add_aliases_for_id(blob, name, id, node_list, maxcount);
386}
387
388/* TODO: Can we tighten this code up a little? */
389int fdtdec_add_aliases_for_id(const void *blob, const char *name,
Mario Six2e386622018-01-15 11:07:35 +0100390 enum fdt_compat_id id, int *node_list,
391 int maxcount)
Simon Glassc6782272012-02-03 15:13:53 +0000392{
Simon Glassa53f4a22012-01-17 08:20:50 +0000393 int name_len = strlen(name);
394 int nodes[maxcount];
395 int num_found = 0;
396 int offset, node;
397 int alias_node;
398 int count;
399 int i, j;
400
401 /* find the alias node if present */
402 alias_node = fdt_path_offset(blob, "/aliases");
403
404 /*
405 * start with nothing, and we can assume that the root node can't
406 * match
407 */
408 memset(nodes, '\0', sizeof(nodes));
409
410 /* First find all the compatible nodes */
411 for (node = count = 0; node >= 0 && count < maxcount;) {
412 node = fdtdec_next_compatible(blob, node, id);
413 if (node >= 0)
414 nodes[count++] = node;
415 }
416 if (node >= 0)
417 debug("%s: warning: maxcount exceeded with alias '%s'\n",
Mario Six2e386622018-01-15 11:07:35 +0100418 __func__, name);
Simon Glassa53f4a22012-01-17 08:20:50 +0000419
420 /* Now find all the aliases */
Simon Glassa53f4a22012-01-17 08:20:50 +0000421 for (offset = fdt_first_property_offset(blob, alias_node);
422 offset > 0;
423 offset = fdt_next_property_offset(blob, offset)) {
424 const struct fdt_property *prop;
425 const char *path;
426 int number;
427 int found;
428
429 node = 0;
430 prop = fdt_get_property_by_offset(blob, offset, NULL);
431 path = fdt_string(blob, fdt32_to_cpu(prop->nameoff));
432 if (prop->len && 0 == strncmp(path, name, name_len))
433 node = fdt_path_offset(blob, prop->data);
434 if (node <= 0)
435 continue;
436
437 /* Get the alias number */
438 number = simple_strtoul(path + name_len, NULL, 10);
439 if (number < 0 || number >= maxcount) {
440 debug("%s: warning: alias '%s' is out of range\n",
Mario Six2e386622018-01-15 11:07:35 +0100441 __func__, path);
Simon Glassa53f4a22012-01-17 08:20:50 +0000442 continue;
443 }
444
445 /* Make sure the node we found is actually in our list! */
446 found = -1;
447 for (j = 0; j < count; j++)
448 if (nodes[j] == node) {
449 found = j;
450 break;
451 }
452
453 if (found == -1) {
454 debug("%s: warning: alias '%s' points to a node "
455 "'%s' that is missing or is not compatible "
456 " with '%s'\n", __func__, path,
457 fdt_get_name(blob, node, NULL),
458 compat_names[id]);
459 continue;
460 }
461
462 /*
463 * Add this node to our list in the right place, and mark
464 * it as done.
465 */
466 if (fdtdec_get_is_enabled(blob, node)) {
Simon Glassc6782272012-02-03 15:13:53 +0000467 if (node_list[number]) {
468 debug("%s: warning: alias '%s' requires that "
469 "a node be placed in the list in a "
470 "position which is already filled by "
471 "node '%s'\n", __func__, path,
472 fdt_get_name(blob, node, NULL));
473 continue;
474 }
Simon Glassa53f4a22012-01-17 08:20:50 +0000475 node_list[number] = node;
476 if (number >= num_found)
477 num_found = number + 1;
478 }
Simon Glassc6782272012-02-03 15:13:53 +0000479 nodes[found] = 0;
Simon Glassa53f4a22012-01-17 08:20:50 +0000480 }
481
482 /* Add any nodes not mentioned by an alias */
483 for (i = j = 0; i < maxcount; i++) {
484 if (!node_list[i]) {
485 for (; j < maxcount; j++)
486 if (nodes[j] &&
Mario Six2e386622018-01-15 11:07:35 +0100487 fdtdec_get_is_enabled(blob, nodes[j]))
Simon Glassa53f4a22012-01-17 08:20:50 +0000488 break;
489
490 /* Have we run out of nodes to add? */
491 if (j == maxcount)
492 break;
493
494 assert(!node_list[i]);
495 node_list[i] = nodes[j++];
496 if (i >= num_found)
497 num_found = i + 1;
498 }
499 }
500
501 return num_found;
502}
503
Simon Glass5c33c9f2014-07-23 06:55:09 -0600504int fdtdec_get_alias_seq(const void *blob, const char *base, int offset,
505 int *seqp)
506{
507 int base_len = strlen(base);
508 const char *find_name;
509 int find_namelen;
510 int prop_offset;
511 int aliases;
512
513 find_name = fdt_get_name(blob, offset, &find_namelen);
514 debug("Looking for '%s' at %d, name %s\n", base, offset, find_name);
515
516 aliases = fdt_path_offset(blob, "/aliases");
517 for (prop_offset = fdt_first_property_offset(blob, aliases);
518 prop_offset > 0;
519 prop_offset = fdt_next_property_offset(blob, prop_offset)) {
520 const char *prop;
521 const char *name;
522 const char *slash;
Simon Glassc4af6732015-06-23 15:39:08 -0600523 int len, val;
Simon Glass5c33c9f2014-07-23 06:55:09 -0600524
525 prop = fdt_getprop_by_offset(blob, prop_offset, &name, &len);
526 debug(" - %s, %s\n", name, prop);
527 if (len < find_namelen || *prop != '/' || prop[len - 1] ||
528 strncmp(name, base, base_len))
529 continue;
530
531 slash = strrchr(prop, '/');
532 if (strcmp(slash + 1, find_name))
533 continue;
Simon Glassc4af6732015-06-23 15:39:08 -0600534 val = trailing_strtol(name);
535 if (val != -1) {
536 *seqp = val;
537 debug("Found seq %d\n", *seqp);
538 return 0;
Simon Glass5c33c9f2014-07-23 06:55:09 -0600539 }
540 }
541
542 debug("Not found\n");
543 return -ENOENT;
544}
545
Michal Simek003c9dc2019-01-31 16:30:58 +0100546int fdtdec_get_alias_highest_id(const void *blob, const char *base)
547{
548 int base_len = strlen(base);
549 int prop_offset;
550 int aliases;
551 int max = -1;
552
553 debug("Looking for highest alias id for '%s'\n", base);
554
555 aliases = fdt_path_offset(blob, "/aliases");
556 for (prop_offset = fdt_first_property_offset(blob, aliases);
557 prop_offset > 0;
558 prop_offset = fdt_next_property_offset(blob, prop_offset)) {
559 const char *prop;
560 const char *name;
561 int len, val;
562
563 prop = fdt_getprop_by_offset(blob, prop_offset, &name, &len);
564 debug(" - %s, %s\n", name, prop);
565 if (*prop != '/' || prop[len - 1] ||
566 strncmp(name, base, base_len))
567 continue;
568
569 val = trailing_strtol(name);
570 if (val > max) {
571 debug("Found seq %d\n", val);
572 max = val;
573 }
574 }
575
576 return max;
577}
578
Simon Glass3bc37a52015-10-17 19:41:14 -0600579const char *fdtdec_get_chosen_prop(const void *blob, const char *name)
580{
581 int chosen_node;
582
583 if (!blob)
584 return NULL;
585 chosen_node = fdt_path_offset(blob, "/chosen");
586 return fdt_getprop(blob, chosen_node, name, NULL);
587}
588
Simon Glassaac07d42014-09-04 16:27:24 -0600589int fdtdec_get_chosen_node(const void *blob, const char *name)
590{
591 const char *prop;
Simon Glassaac07d42014-09-04 16:27:24 -0600592
Simon Glass3bc37a52015-10-17 19:41:14 -0600593 prop = fdtdec_get_chosen_prop(blob, name);
Simon Glassaac07d42014-09-04 16:27:24 -0600594 if (!prop)
595 return -FDT_ERR_NOTFOUND;
596 return fdt_path_offset(blob, prop);
597}
598
Simon Glass9a263e52012-03-28 10:08:24 +0000599int fdtdec_check_fdt(void)
600{
601 /*
602 * We must have an FDT, but we cannot panic() yet since the console
603 * is not ready. So for now, just assert(). Boards which need an early
604 * FDT (prior to console ready) will need to make their own
605 * arrangements and do their own checks.
606 */
607 assert(!fdtdec_prepare_fdt());
608 return 0;
609}
610
Simon Glassb5220bc2011-10-24 19:15:32 +0000611/*
612 * This function is a little odd in that it accesses global data. At some
613 * point if the architecture board.c files merge this will make more sense.
614 * Even now, it is common code.
615 */
Simon Glass9a263e52012-03-28 10:08:24 +0000616int fdtdec_prepare_fdt(void)
Simon Glassb5220bc2011-10-24 19:15:32 +0000617{
Simon Glassc309c2d2013-04-20 08:42:46 +0000618 if (!gd->fdt_blob || ((uintptr_t)gd->fdt_blob & 3) ||
619 fdt_check_header(gd->fdt_blob)) {
Simon Glass66312372015-02-27 22:06:32 -0700620#ifdef CONFIG_SPL_BUILD
621 puts("Missing DTB\n");
622#else
623 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 Glasscb5f97f702015-06-23 15:39:09 -0600624# ifdef DEBUG
625 if (gd->fdt_blob) {
626 printf("fdt_blob=%p\n", gd->fdt_blob);
627 print_buffer((ulong)gd->fdt_blob, gd->fdt_blob, 4,
628 32, 0);
629 }
630# endif
Simon Glass66312372015-02-27 22:06:32 -0700631#endif
Simon Glass9a263e52012-03-28 10:08:24 +0000632 return -1;
633 }
Simon Glassb5220bc2011-10-24 19:15:32 +0000634 return 0;
635}
Simon Glassd17da652012-02-27 10:52:35 +0000636
637int fdtdec_lookup_phandle(const void *blob, int node, const char *prop_name)
638{
639 const u32 *phandle;
640 int lookup;
641
Simon Glass1cb23232012-07-12 05:25:01 +0000642 debug("%s: %s\n", __func__, prop_name);
Simon Glassd17da652012-02-27 10:52:35 +0000643 phandle = fdt_getprop(blob, node, prop_name, NULL);
644 if (!phandle)
645 return -FDT_ERR_NOTFOUND;
646
647 lookup = fdt_node_offset_by_phandle(blob, fdt32_to_cpu(*phandle));
648 return lookup;
649}
650
651/**
652 * Look up a property in a node and check that it has a minimum length.
653 *
654 * @param blob FDT blob
655 * @param node node to examine
656 * @param prop_name name of property to find
657 * @param min_len minimum property length in bytes
658 * @param err 0 if ok, or -FDT_ERR_NOTFOUND if the property is not
659 found, or -FDT_ERR_BADLAYOUT if not enough data
660 * @return pointer to cell, which is only valid if err == 0
661 */
662static const void *get_prop_check_min_len(const void *blob, int node,
Mario Six2e386622018-01-15 11:07:35 +0100663 const char *prop_name, int min_len,
664 int *err)
Simon Glassd17da652012-02-27 10:52:35 +0000665{
666 const void *cell;
667 int len;
668
669 debug("%s: %s\n", __func__, prop_name);
670 cell = fdt_getprop(blob, node, prop_name, &len);
671 if (!cell)
672 *err = -FDT_ERR_NOTFOUND;
673 else if (len < min_len)
674 *err = -FDT_ERR_BADLAYOUT;
675 else
676 *err = 0;
677 return cell;
678}
679
680int fdtdec_get_int_array(const void *blob, int node, const char *prop_name,
Mario Six2e386622018-01-15 11:07:35 +0100681 u32 *array, int count)
Simon Glassd17da652012-02-27 10:52:35 +0000682{
683 const u32 *cell;
Mario Sixb79221a2018-01-15 11:07:36 +0100684 int err = 0;
Simon Glassd17da652012-02-27 10:52:35 +0000685
686 debug("%s: %s\n", __func__, prop_name);
687 cell = get_prop_check_min_len(blob, node, prop_name,
688 sizeof(u32) * count, &err);
689 if (!err) {
Mario Sixb79221a2018-01-15 11:07:36 +0100690 int i;
691
Simon Glassd17da652012-02-27 10:52:35 +0000692 for (i = 0; i < count; i++)
693 array[i] = fdt32_to_cpu(cell[i]);
694 }
695 return err;
696}
697
Simon Glassa9f04d42014-11-10 18:00:19 -0700698int fdtdec_get_int_array_count(const void *blob, int node,
699 const char *prop_name, u32 *array, int count)
700{
701 const u32 *cell;
702 int len, elems;
703 int i;
704
705 debug("%s: %s\n", __func__, prop_name);
706 cell = fdt_getprop(blob, node, prop_name, &len);
707 if (!cell)
708 return -FDT_ERR_NOTFOUND;
709 elems = len / sizeof(u32);
710 if (count > elems)
711 count = elems;
712 for (i = 0; i < count; i++)
713 array[i] = fdt32_to_cpu(cell[i]);
714
715 return count;
716}
717
Simon Glass96875e72012-04-02 13:18:41 +0000718const u32 *fdtdec_locate_array(const void *blob, int node,
719 const char *prop_name, int count)
720{
721 const u32 *cell;
722 int err;
723
724 cell = get_prop_check_min_len(blob, node, prop_name,
725 sizeof(u32) * count, &err);
726 return err ? NULL : cell;
727}
728
Simon Glassd17da652012-02-27 10:52:35 +0000729int fdtdec_get_bool(const void *blob, int node, const char *prop_name)
730{
731 const s32 *cell;
732 int len;
733
734 debug("%s: %s\n", __func__, prop_name);
735 cell = fdt_getprop(blob, node, prop_name, &len);
736 return cell != NULL;
737}
Simon Glassed3ee5c2012-02-27 10:52:36 +0000738
Simon Glass57068a72015-01-05 20:05:26 -0700739int fdtdec_parse_phandle_with_args(const void *blob, int src_node,
740 const char *list_name,
741 const char *cells_name,
742 int cell_count, int index,
743 struct fdtdec_phandle_args *out_args)
744{
745 const __be32 *list, *list_end;
746 int rc = 0, size, cur_index = 0;
747 uint32_t count = 0;
748 int node = -1;
749 int phandle;
750
751 /* Retrieve the phandle list property */
752 list = fdt_getprop(blob, src_node, list_name, &size);
753 if (!list)
754 return -ENOENT;
755 list_end = list + size / sizeof(*list);
756
757 /* Loop over the phandles until all the requested entry is found */
758 while (list < list_end) {
759 rc = -EINVAL;
760 count = 0;
761
762 /*
763 * If phandle is 0, then it is an empty entry with no
764 * arguments. Skip forward to the next entry.
765 */
766 phandle = be32_to_cpup(list++);
767 if (phandle) {
768 /*
769 * Find the provider node and parse the #*-cells
770 * property to determine the argument length.
771 *
772 * This is not needed if the cell count is hard-coded
773 * (i.e. cells_name not set, but cell_count is set),
774 * except when we're going to return the found node
775 * below.
776 */
777 if (cells_name || cur_index == index) {
778 node = fdt_node_offset_by_phandle(blob,
779 phandle);
780 if (!node) {
781 debug("%s: could not find phandle\n",
782 fdt_get_name(blob, src_node,
783 NULL));
784 goto err;
785 }
786 }
787
788 if (cells_name) {
789 count = fdtdec_get_int(blob, node, cells_name,
790 -1);
791 if (count == -1) {
792 debug("%s: could not get %s for %s\n",
793 fdt_get_name(blob, src_node,
794 NULL),
795 cells_name,
796 fdt_get_name(blob, node,
797 NULL));
798 goto err;
799 }
800 } else {
801 count = cell_count;
802 }
803
804 /*
805 * Make sure that the arguments actually fit in the
806 * remaining property data length
807 */
808 if (list + count > list_end) {
809 debug("%s: arguments longer than property\n",
810 fdt_get_name(blob, src_node, NULL));
811 goto err;
812 }
813 }
814
815 /*
816 * All of the error cases above bail out of the loop, so at
817 * this point, the parsing is successful. If the requested
818 * index matches, then fill the out_args structure and return,
819 * or return -ENOENT for an empty entry.
820 */
821 rc = -ENOENT;
822 if (cur_index == index) {
823 if (!phandle)
824 goto err;
825
826 if (out_args) {
827 int i;
828
829 if (count > MAX_PHANDLE_ARGS) {
830 debug("%s: too many arguments %d\n",
831 fdt_get_name(blob, src_node,
832 NULL), count);
833 count = MAX_PHANDLE_ARGS;
834 }
835 out_args->node = node;
836 out_args->args_count = count;
837 for (i = 0; i < count; i++) {
838 out_args->args[i] =
839 be32_to_cpup(list++);
840 }
841 }
842
843 /* Found it! return success */
844 return 0;
845 }
846
847 node = -1;
848 list += count;
849 cur_index++;
850 }
851
852 /*
853 * Result will be one of:
854 * -ENOENT : index is for empty phandle
855 * -EINVAL : parsing error on data
856 * [1..n] : Number of phandle (count mode; when index = -1)
857 */
858 rc = index < 0 ? cur_index : -ENOENT;
859 err:
860 return rc;
861}
862
Peng Fan1889a7e2016-02-01 13:31:15 +0800863int fdtdec_get_child_count(const void *blob, int node)
864{
865 int subnode;
866 int num = 0;
867
Simon Glassdf87e6b2016-10-02 17:59:29 -0600868 fdt_for_each_subnode(subnode, blob, node)
Peng Fan1889a7e2016-02-01 13:31:15 +0800869 num++;
870
871 return num;
872}
873
Anton Staffbed4d892012-04-17 09:01:28 +0000874int fdtdec_get_byte_array(const void *blob, int node, const char *prop_name,
Mario Six2e386622018-01-15 11:07:35 +0100875 u8 *array, int count)
Anton Staffbed4d892012-04-17 09:01:28 +0000876{
877 const u8 *cell;
878 int err;
879
880 cell = get_prop_check_min_len(blob, node, prop_name, count, &err);
881 if (!err)
882 memcpy(array, cell, count);
883 return err;
884}
885
886const u8 *fdtdec_locate_byte_array(const void *blob, int node,
Mario Six2e386622018-01-15 11:07:35 +0100887 const char *prop_name, int count)
Anton Staffbed4d892012-04-17 09:01:28 +0000888{
889 const u8 *cell;
890 int err;
891
892 cell = get_prop_check_min_len(blob, node, prop_name, count, &err);
893 if (err)
894 return NULL;
895 return cell;
896}
Abhilash Kesavan09258f12012-10-25 16:30:58 +0000897
Abhilash Kesavan09258f12012-10-25 16:30:58 +0000898int fdtdec_get_config_int(const void *blob, const char *prop_name,
Mario Six2e386622018-01-15 11:07:35 +0100899 int default_val)
Abhilash Kesavan09258f12012-10-25 16:30:58 +0000900{
901 int config_node;
902
903 debug("%s: %s\n", __func__, prop_name);
904 config_node = fdt_path_offset(blob, "/config");
905 if (config_node < 0)
906 return default_val;
907 return fdtdec_get_int(blob, config_node, prop_name, default_val);
908}
Simon Glass332ab0d2012-10-25 16:30:59 +0000909
Gabe Black79289c02012-10-25 16:31:04 +0000910int fdtdec_get_config_bool(const void *blob, const char *prop_name)
911{
912 int config_node;
913 const void *prop;
914
915 debug("%s: %s\n", __func__, prop_name);
916 config_node = fdt_path_offset(blob, "/config");
917 if (config_node < 0)
918 return 0;
919 prop = fdt_get_property(blob, config_node, prop_name, NULL);
920
921 return prop != NULL;
922}
923
Simon Glass332ab0d2012-10-25 16:30:59 +0000924char *fdtdec_get_config_string(const void *blob, const char *prop_name)
925{
926 const char *nodep;
927 int nodeoffset;
928 int len;
929
930 debug("%s: %s\n", __func__, prop_name);
931 nodeoffset = fdt_path_offset(blob, "/config");
932 if (nodeoffset < 0)
933 return NULL;
934
935 nodep = fdt_getprop(blob, nodeoffset, prop_name, &len);
936 if (!nodep)
937 return NULL;
938
939 return (char *)nodep;
940}
Simon Glassf20c4612012-10-25 16:31:00 +0000941
Simon Glass5f7bfdd2015-03-05 12:25:14 -0700942u64 fdtdec_get_number(const fdt32_t *ptr, unsigned int cells)
Thierry Reding56f42242014-08-26 17:33:53 +0200943{
944 u64 number = 0;
945
946 while (cells--)
947 number = (number << 32) | fdt32_to_cpu(*ptr++);
948
949 return number;
950}
951
952int fdt_get_resource(const void *fdt, int node, const char *property,
953 unsigned int index, struct fdt_resource *res)
954{
955 const fdt32_t *ptr, *end;
956 int na, ns, len, parent;
957 unsigned int i = 0;
958
959 parent = fdt_parent_offset(fdt, node);
960 if (parent < 0)
961 return parent;
962
963 na = fdt_address_cells(fdt, parent);
964 ns = fdt_size_cells(fdt, parent);
965
966 ptr = fdt_getprop(fdt, node, property, &len);
967 if (!ptr)
968 return len;
969
970 end = ptr + len / sizeof(*ptr);
971
972 while (ptr + na + ns <= end) {
973 if (i == index) {
Mario Sixb79221a2018-01-15 11:07:36 +0100974 res->start = fdtdec_get_number(ptr, na);
975 res->end = res->start;
Thierry Reding56f42242014-08-26 17:33:53 +0200976 res->end += fdtdec_get_number(&ptr[na], ns) - 1;
977 return 0;
978 }
979
980 ptr += na + ns;
981 i++;
982 }
983
984 return -FDT_ERR_NOTFOUND;
985}
986
987int fdt_get_named_resource(const void *fdt, int node, const char *property,
988 const char *prop_names, const char *name,
989 struct fdt_resource *res)
990{
991 int index;
992
Simon Glassb02e4042016-10-02 17:59:28 -0600993 index = fdt_stringlist_search(fdt, node, prop_names, name);
Thierry Reding56f42242014-08-26 17:33:53 +0200994 if (index < 0)
995 return index;
996
997 return fdt_get_resource(fdt, node, property, index, res);
998}
Thierry Reding9f85eee2014-08-26 17:33:54 +0200999
Simon Glass12e67112015-04-14 21:03:21 -06001000static int decode_timing_property(const void *blob, int node, const char *name,
1001 struct timing_entry *result)
1002{
1003 int length, ret = 0;
1004 const u32 *prop;
1005
1006 prop = fdt_getprop(blob, node, name, &length);
1007 if (!prop) {
1008 debug("%s: could not find property %s\n",
1009 fdt_get_name(blob, node, NULL), name);
1010 return length;
1011 }
1012
1013 if (length == sizeof(u32)) {
1014 result->typ = fdtdec_get_int(blob, node, name, 0);
1015 result->min = result->typ;
1016 result->max = result->typ;
1017 } else {
1018 ret = fdtdec_get_int_array(blob, node, name, &result->min, 3);
1019 }
1020
1021 return ret;
1022}
1023
1024int fdtdec_decode_display_timing(const void *blob, int parent, int index,
1025 struct display_timing *dt)
1026{
1027 int i, node, timings_node;
1028 u32 val = 0;
1029 int ret = 0;
1030
1031 timings_node = fdt_subnode_offset(blob, parent, "display-timings");
1032 if (timings_node < 0)
1033 return timings_node;
1034
1035 for (i = 0, node = fdt_first_subnode(blob, timings_node);
1036 node > 0 && i != index;
1037 node = fdt_next_subnode(blob, node))
1038 i++;
1039
1040 if (node < 0)
1041 return node;
1042
1043 memset(dt, 0, sizeof(*dt));
1044
1045 ret |= decode_timing_property(blob, node, "hback-porch",
1046 &dt->hback_porch);
1047 ret |= decode_timing_property(blob, node, "hfront-porch",
1048 &dt->hfront_porch);
1049 ret |= decode_timing_property(blob, node, "hactive", &dt->hactive);
1050 ret |= decode_timing_property(blob, node, "hsync-len", &dt->hsync_len);
1051 ret |= decode_timing_property(blob, node, "vback-porch",
1052 &dt->vback_porch);
1053 ret |= decode_timing_property(blob, node, "vfront-porch",
1054 &dt->vfront_porch);
1055 ret |= decode_timing_property(blob, node, "vactive", &dt->vactive);
1056 ret |= decode_timing_property(blob, node, "vsync-len", &dt->vsync_len);
1057 ret |= decode_timing_property(blob, node, "clock-frequency",
1058 &dt->pixelclock);
1059
1060 dt->flags = 0;
1061 val = fdtdec_get_int(blob, node, "vsync-active", -1);
1062 if (val != -1) {
1063 dt->flags |= val ? DISPLAY_FLAGS_VSYNC_HIGH :
1064 DISPLAY_FLAGS_VSYNC_LOW;
1065 }
1066 val = fdtdec_get_int(blob, node, "hsync-active", -1);
1067 if (val != -1) {
1068 dt->flags |= val ? DISPLAY_FLAGS_HSYNC_HIGH :
1069 DISPLAY_FLAGS_HSYNC_LOW;
1070 }
1071 val = fdtdec_get_int(blob, node, "de-active", -1);
1072 if (val != -1) {
1073 dt->flags |= val ? DISPLAY_FLAGS_DE_HIGH :
1074 DISPLAY_FLAGS_DE_LOW;
1075 }
1076 val = fdtdec_get_int(blob, node, "pixelclk-active", -1);
1077 if (val != -1) {
1078 dt->flags |= val ? DISPLAY_FLAGS_PIXDATA_POSEDGE :
1079 DISPLAY_FLAGS_PIXDATA_NEGEDGE;
1080 }
1081
1082 if (fdtdec_get_bool(blob, node, "interlaced"))
1083 dt->flags |= DISPLAY_FLAGS_INTERLACED;
1084 if (fdtdec_get_bool(blob, node, "doublescan"))
1085 dt->flags |= DISPLAY_FLAGS_DOUBLESCAN;
1086 if (fdtdec_get_bool(blob, node, "doubleclk"))
1087 dt->flags |= DISPLAY_FLAGS_DOUBLECLK;
1088
Simon Glass04b9dd12016-05-05 07:28:21 -06001089 return ret;
Simon Glass12e67112015-04-14 21:03:21 -06001090}
1091
Marek Vasut3ebe09d2019-03-05 04:25:54 +01001092int fdtdec_setup_mem_size_base_fdt(const void *blob)
Nathan Rossi623f6012016-12-19 00:03:34 +10001093{
1094 int ret, mem;
1095 struct fdt_resource res;
1096
Marek Vasut3ebe09d2019-03-05 04:25:54 +01001097 mem = fdt_path_offset(blob, "/memory");
Nathan Rossi623f6012016-12-19 00:03:34 +10001098 if (mem < 0) {
1099 debug("%s: Missing /memory node\n", __func__);
1100 return -EINVAL;
1101 }
1102
Marek Vasut3ebe09d2019-03-05 04:25:54 +01001103 ret = fdt_get_resource(blob, mem, "reg", 0, &res);
Nathan Rossi623f6012016-12-19 00:03:34 +10001104 if (ret != 0) {
1105 debug("%s: Unable to decode first memory bank\n", __func__);
1106 return -EINVAL;
1107 }
1108
1109 gd->ram_size = (phys_size_t)(res.end - res.start + 1);
Siva Durga Prasad Paladugu1473b122018-07-16 15:56:10 +05301110 gd->ram_base = (unsigned long)res.start;
Simon Glassc69380f2017-05-27 07:38:13 -06001111 debug("%s: Initial DRAM size %llx\n", __func__,
1112 (unsigned long long)gd->ram_size);
Nathan Rossi623f6012016-12-19 00:03:34 +10001113
1114 return 0;
1115}
1116
Marek Vasut3ebe09d2019-03-05 04:25:54 +01001117int fdtdec_setup_mem_size_base(void)
1118{
1119 return fdtdec_setup_mem_size_base_fdt(gd->fdt_blob);
1120}
1121
Nathan Rossi623f6012016-12-19 00:03:34 +10001122#if defined(CONFIG_NR_DRAM_BANKS)
Jens Wiklander452bc122018-07-13 12:12:11 +02001123
Michal Simek658954c2018-10-03 15:53:52 +02001124static int get_next_memory_node(const void *blob, int mem)
Jens Wiklander452bc122018-07-13 12:12:11 +02001125{
Jens Wiklander452bc122018-07-13 12:12:11 +02001126 do {
Marek Vasut118f4d42019-03-05 04:25:55 +01001127 mem = fdt_node_offset_by_prop_value(blob, mem,
Michal Simek658954c2018-10-03 15:53:52 +02001128 "device_type", "memory", 7);
1129 } while (!fdtdec_get_is_enabled(blob, mem));
Jens Wiklander452bc122018-07-13 12:12:11 +02001130
1131 return mem;
1132}
1133
Marek Vasut118f4d42019-03-05 04:25:55 +01001134int fdtdec_setup_memory_banksize_fdt(const void *blob)
Nathan Rossi623f6012016-12-19 00:03:34 +10001135{
Michal Simek658954c2018-10-03 15:53:52 +02001136 int bank, ret, mem, reg = 0;
1137 struct fdt_resource res;
Nathan Rossi623f6012016-12-19 00:03:34 +10001138
Marek Vasut118f4d42019-03-05 04:25:55 +01001139 mem = get_next_memory_node(blob, -1);
Michal Simek658954c2018-10-03 15:53:52 +02001140 if (mem < 0) {
1141 debug("%s: Missing /memory node\n", __func__);
1142 return -EINVAL;
1143 }
Nathan Rossi623f6012016-12-19 00:03:34 +10001144
1145 for (bank = 0; bank < CONFIG_NR_DRAM_BANKS; bank++) {
Marek Vasut118f4d42019-03-05 04:25:55 +01001146 ret = fdt_get_resource(blob, mem, "reg", reg++, &res);
Michal Simek658954c2018-10-03 15:53:52 +02001147 if (ret == -FDT_ERR_NOTFOUND) {
Marek Vasut942ee092017-11-27 05:32:42 +01001148 reg = 0;
Marek Vasut118f4d42019-03-05 04:25:55 +01001149 mem = get_next_memory_node(blob, mem);
Michal Simek658954c2018-10-03 15:53:52 +02001150 if (mem == -FDT_ERR_NOTFOUND)
1151 break;
1152
Marek Vasut118f4d42019-03-05 04:25:55 +01001153 ret = fdt_get_resource(blob, mem, "reg", reg++, &res);
Michal Simek658954c2018-10-03 15:53:52 +02001154 if (ret == -FDT_ERR_NOTFOUND)
1155 break;
1156 }
1157 if (ret != 0) {
1158 return -EINVAL;
Marek Vasut942ee092017-11-27 05:32:42 +01001159 }
Nathan Rossi623f6012016-12-19 00:03:34 +10001160
1161 gd->bd->bi_dram[bank].start = (phys_addr_t)res.start;
1162 gd->bd->bi_dram[bank].size =
1163 (phys_size_t)(res.end - res.start + 1);
1164
1165 debug("%s: DRAM Bank #%d: start = 0x%llx, size = 0x%llx\n",
1166 __func__, bank,
1167 (unsigned long long)gd->bd->bi_dram[bank].start,
1168 (unsigned long long)gd->bd->bi_dram[bank].size);
1169 }
1170
1171 return 0;
1172}
Marek Vasut118f4d42019-03-05 04:25:55 +01001173
1174int fdtdec_setup_memory_banksize(void)
1175{
1176 return fdtdec_setup_memory_banksize_fdt(gd->fdt_blob);
1177
1178}
Nathan Rossi623f6012016-12-19 00:03:34 +10001179#endif
1180
Jean-Jacques Hiblot2f57c952017-09-15 12:57:32 +02001181#if CONFIG_IS_ENABLED(MULTI_DTB_FIT)
1182# if CONFIG_IS_ENABLED(MULTI_DTB_FIT_GZIP) ||\
1183 CONFIG_IS_ENABLED(MULTI_DTB_FIT_LZO)
1184static int uncompress_blob(const void *src, ulong sz_src, void **dstp)
1185{
Marek Vasut95f4bbd2019-03-08 16:06:55 +01001186 size_t sz_out = CONFIG_VAL(MULTI_DTB_FIT_UNCOMPRESS_SZ);
Marek Vasut1fd30352019-03-13 21:11:22 +01001187 bool gzip = 0, lzo = 0;
Jean-Jacques Hiblot2f57c952017-09-15 12:57:32 +02001188 ulong sz_in = sz_src;
1189 void *dst;
1190 int rc;
1191
1192 if (CONFIG_IS_ENABLED(GZIP))
Marek Vasut1fd30352019-03-13 21:11:22 +01001193 if (gzip_parse_header(src, sz_in) >= 0)
1194 gzip = 1;
Jean-Jacques Hiblot2f57c952017-09-15 12:57:32 +02001195 if (CONFIG_IS_ENABLED(LZO))
Marek Vasut1fd30352019-03-13 21:11:22 +01001196 if (!gzip && lzop_is_valid_header(src))
1197 lzo = 1;
1198
1199 if (!gzip && !lzo)
1200 return -EBADMSG;
1201
Jean-Jacques Hiblot2f57c952017-09-15 12:57:32 +02001202
1203 if (CONFIG_IS_ENABLED(MULTI_DTB_FIT_DYN_ALLOC)) {
1204 dst = malloc(sz_out);
1205 if (!dst) {
1206 puts("uncompress_blob: Unable to allocate memory\n");
1207 return -ENOMEM;
1208 }
1209 } else {
1210# if CONFIG_IS_ENABLED(MULTI_DTB_FIT_USER_DEFINED_AREA)
1211 dst = (void *)CONFIG_VAL(MULTI_DTB_FIT_USER_DEF_ADDR);
1212# else
1213 return -ENOTSUPP;
1214# endif
1215 }
1216
Marek Vasut1fd30352019-03-13 21:11:22 +01001217 if (CONFIG_IS_ENABLED(GZIP) && gzip)
Jean-Jacques Hiblot2f57c952017-09-15 12:57:32 +02001218 rc = gunzip(dst, sz_out, (u8 *)src, &sz_in);
Marek Vasut1fd30352019-03-13 21:11:22 +01001219 else if (CONFIG_IS_ENABLED(LZO) && lzo)
Jean-Jacques Hiblot2f57c952017-09-15 12:57:32 +02001220 rc = lzop_decompress(src, sz_in, dst, &sz_out);
Marek Vasut1fd30352019-03-13 21:11:22 +01001221 else
1222 hang();
Jean-Jacques Hiblot2f57c952017-09-15 12:57:32 +02001223
1224 if (rc < 0) {
1225 /* not a valid compressed blob */
1226 puts("uncompress_blob: Unable to uncompress\n");
1227 if (CONFIG_IS_ENABLED(MULTI_DTB_FIT_DYN_ALLOC))
1228 free(dst);
1229 return -EBADMSG;
1230 }
1231 *dstp = dst;
1232 return 0;
1233}
1234# else
1235static int uncompress_blob(const void *src, ulong sz_src, void **dstp)
1236{
Marek Vasut410d9b62018-10-18 20:37:05 +02001237 *dstp = (void *)src;
1238 return 0;
Jean-Jacques Hiblot2f57c952017-09-15 12:57:32 +02001239}
1240# endif
1241#endif
1242
Rob Clark3b595da2018-01-10 11:34:37 +01001243#if defined(CONFIG_OF_BOARD) || defined(CONFIG_OF_SEPARATE)
1244/*
1245 * For CONFIG_OF_SEPARATE, the board may optionally implement this to
1246 * provide and/or fixup the fdt.
1247 */
1248__weak void *board_fdt_blob_setup(void)
1249{
1250 void *fdt_blob = NULL;
1251#ifdef CONFIG_SPL_BUILD
1252 /* FDT is at end of BSS unless it is in a different memory region */
1253 if (IS_ENABLED(CONFIG_SPL_SEPARATE_BSS))
1254 fdt_blob = (ulong *)&_image_binary_end;
1255 else
1256 fdt_blob = (ulong *)&__bss_end;
1257#else
1258 /* FDT is at end of image */
1259 fdt_blob = (ulong *)&_end;
1260#endif
1261 return fdt_blob;
1262}
1263#endif
1264
Thierry Redingebf30e82019-04-15 11:32:13 +02001265int fdtdec_set_ethernet_mac_address(void *fdt, const u8 *mac, size_t size)
1266{
1267 const char *path;
1268 int offset, err;
1269
1270 if (!is_valid_ethaddr(mac))
1271 return -EINVAL;
1272
1273 path = fdt_get_alias(fdt, "ethernet");
1274 if (!path)
1275 return 0;
1276
1277 debug("ethernet alias found: %s\n", path);
1278
1279 offset = fdt_path_offset(fdt, path);
1280 if (offset < 0) {
1281 debug("ethernet alias points to absent node %s\n", path);
1282 return -ENOENT;
1283 }
1284
1285 err = fdt_setprop_inplace(fdt, offset, "local-mac-address", mac, size);
1286 if (err < 0)
1287 return err;
1288
1289 debug("MAC address: %pM\n", mac);
1290
1291 return 0;
1292}
1293
Thierry Redingc9222a02019-03-21 19:10:02 +01001294static int fdtdec_init_reserved_memory(void *blob)
1295{
1296 int na, ns, node, err;
1297 fdt32_t value;
1298
1299 /* inherit #address-cells and #size-cells from the root node */
1300 na = fdt_address_cells(blob, 0);
1301 ns = fdt_size_cells(blob, 0);
1302
1303 node = fdt_add_subnode(blob, 0, "reserved-memory");
1304 if (node < 0)
1305 return node;
1306
1307 err = fdt_setprop(blob, node, "ranges", NULL, 0);
1308 if (err < 0)
1309 return err;
1310
1311 value = cpu_to_fdt32(ns);
1312
1313 err = fdt_setprop(blob, node, "#size-cells", &value, sizeof(value));
1314 if (err < 0)
1315 return err;
1316
1317 value = cpu_to_fdt32(na);
1318
1319 err = fdt_setprop(blob, node, "#address-cells", &value, sizeof(value));
1320 if (err < 0)
1321 return err;
1322
1323 return node;
1324}
1325
1326int fdtdec_add_reserved_memory(void *blob, const char *basename,
1327 const struct fdt_memory *carveout,
1328 uint32_t *phandlep)
1329{
1330 fdt32_t cells[4] = {}, *ptr = cells;
1331 uint32_t upper, lower, phandle;
1332 int parent, node, na, ns, err;
Thierry Reding3bf2f152019-04-15 10:08:21 +02001333 fdt_size_t size;
Thierry Redingc9222a02019-03-21 19:10:02 +01001334 char name[64];
1335
1336 /* create an empty /reserved-memory node if one doesn't exist */
1337 parent = fdt_path_offset(blob, "/reserved-memory");
1338 if (parent < 0) {
1339 parent = fdtdec_init_reserved_memory(blob);
1340 if (parent < 0)
1341 return parent;
1342 }
1343
1344 /* only 1 or 2 #address-cells and #size-cells are supported */
1345 na = fdt_address_cells(blob, parent);
1346 if (na < 1 || na > 2)
1347 return -FDT_ERR_BADNCELLS;
1348
1349 ns = fdt_size_cells(blob, parent);
1350 if (ns < 1 || ns > 2)
1351 return -FDT_ERR_BADNCELLS;
1352
1353 /* find a matching node and return the phandle to that */
1354 fdt_for_each_subnode(node, blob, parent) {
1355 const char *name = fdt_get_name(blob, node, NULL);
1356 phys_addr_t addr, size;
1357
1358 addr = fdtdec_get_addr_size(blob, node, "reg", &size);
1359 if (addr == FDT_ADDR_T_NONE) {
1360 debug("failed to read address/size for %s\n", name);
1361 continue;
1362 }
1363
1364 if (addr == carveout->start && (addr + size) == carveout->end) {
1365 *phandlep = fdt_get_phandle(blob, node);
1366 return 0;
1367 }
1368 }
1369
1370 /*
1371 * Unpack the start address and generate the name of the new node
1372 * base on the basename and the unit-address.
1373 */
Thierry Reding3bf2f152019-04-15 10:08:21 +02001374 upper = upper_32_bits(carveout->start);
1375 lower = lower_32_bits(carveout->start);
Thierry Redingc9222a02019-03-21 19:10:02 +01001376
1377 if (na > 1 && upper > 0)
1378 snprintf(name, sizeof(name), "%s@%x,%x", basename, upper,
1379 lower);
1380 else {
1381 if (upper > 0) {
1382 debug("address %08x:%08x exceeds addressable space\n",
1383 upper, lower);
1384 return -FDT_ERR_BADVALUE;
1385 }
1386
1387 snprintf(name, sizeof(name), "%s@%x", basename, lower);
1388 }
1389
1390 node = fdt_add_subnode(blob, parent, name);
1391 if (node < 0)
1392 return node;
1393
1394 err = fdt_generate_phandle(blob, &phandle);
1395 if (err < 0)
1396 return err;
1397
1398 err = fdtdec_set_phandle(blob, node, phandle);
1399 if (err < 0)
1400 return err;
1401
1402 /* store one or two address cells */
1403 if (na > 1)
1404 *ptr++ = cpu_to_fdt32(upper);
1405
1406 *ptr++ = cpu_to_fdt32(lower);
1407
1408 /* store one or two size cells */
Thierry Reding3bf2f152019-04-15 10:08:21 +02001409 size = carveout->end - carveout->start + 1;
1410 upper = upper_32_bits(size);
1411 lower = lower_32_bits(size);
Thierry Redingc9222a02019-03-21 19:10:02 +01001412
1413 if (ns > 1)
1414 *ptr++ = cpu_to_fdt32(upper);
1415
1416 *ptr++ = cpu_to_fdt32(lower);
1417
1418 err = fdt_setprop(blob, node, "reg", cells, (na + ns) * sizeof(*cells));
1419 if (err < 0)
1420 return err;
1421
1422 /* return the phandle for the new node for the caller to use */
1423 if (phandlep)
1424 *phandlep = phandle;
1425
1426 return 0;
1427}
1428
Thierry Reding16523ac2019-03-21 19:10:03 +01001429int fdtdec_get_carveout(const void *blob, const char *node, const char *name,
1430 unsigned int index, struct fdt_memory *carveout)
1431{
1432 const fdt32_t *prop;
1433 uint32_t phandle;
1434 int offset, len;
1435 fdt_size_t size;
1436
1437 offset = fdt_path_offset(blob, node);
1438 if (offset < 0)
1439 return offset;
1440
1441 prop = fdt_getprop(blob, offset, name, &len);
1442 if (!prop) {
1443 debug("failed to get %s for %s\n", name, node);
1444 return -FDT_ERR_NOTFOUND;
1445 }
1446
1447 if ((len % sizeof(phandle)) != 0) {
1448 debug("invalid phandle property\n");
1449 return -FDT_ERR_BADPHANDLE;
1450 }
1451
1452 if (len < (sizeof(phandle) * (index + 1))) {
1453 debug("invalid phandle index\n");
1454 return -FDT_ERR_BADPHANDLE;
1455 }
1456
1457 phandle = fdt32_to_cpu(prop[index]);
1458
1459 offset = fdt_node_offset_by_phandle(blob, phandle);
1460 if (offset < 0) {
1461 debug("failed to find node for phandle %u\n", phandle);
1462 return offset;
1463 }
1464
1465 carveout->start = fdtdec_get_addr_size_auto_noparent(blob, offset,
1466 "reg", 0, &size,
1467 true);
1468 if (carveout->start == FDT_ADDR_T_NONE) {
1469 debug("failed to read address/size from \"reg\" property\n");
1470 return -FDT_ERR_NOTFOUND;
1471 }
1472
1473 carveout->end = carveout->start + size - 1;
1474
1475 return 0;
1476}
1477
1478int fdtdec_set_carveout(void *blob, const char *node, const char *prop_name,
1479 unsigned int index, const char *name,
1480 const struct fdt_memory *carveout)
1481{
1482 uint32_t phandle;
1483 int err, offset;
1484 fdt32_t value;
1485
1486 /* XXX implement support for multiple phandles */
1487 if (index > 0) {
1488 debug("invalid index %u\n", index);
1489 return -FDT_ERR_BADOFFSET;
1490 }
1491
1492 err = fdtdec_add_reserved_memory(blob, name, carveout, &phandle);
1493 if (err < 0) {
1494 debug("failed to add reserved memory: %d\n", err);
1495 return err;
1496 }
1497
1498 offset = fdt_path_offset(blob, node);
1499 if (offset < 0) {
1500 debug("failed to find offset for node %s: %d\n", node, offset);
1501 return offset;
1502 }
1503
1504 value = cpu_to_fdt32(phandle);
1505
1506 err = fdt_setprop(blob, offset, prop_name, &value, sizeof(value));
1507 if (err < 0) {
1508 debug("failed to set %s property for node %s: %d\n", prop_name,
1509 node, err);
1510 return err;
1511 }
1512
1513 return 0;
1514}
1515
Simon Glass08793612015-02-27 22:06:35 -07001516int fdtdec_setup(void)
Simon Glassb45122f2015-02-27 22:06:34 -07001517{
Masahiro Yamada0f925822015-08-12 07:31:55 +09001518#if CONFIG_IS_ENABLED(OF_CONTROL)
Jean-Jacques Hiblot2f57c952017-09-15 12:57:32 +02001519# if CONFIG_IS_ENABLED(MULTI_DTB_FIT)
1520 void *fdt_blob;
1521# endif
Simon Glassb45122f2015-02-27 22:06:34 -07001522# ifdef CONFIG_OF_EMBED
1523 /* Get a pointer to the FDT */
Goldschmidt Simon9bd76b82017-11-21 12:29:56 +00001524# ifdef CONFIG_SPL_BUILD
1525 gd->fdt_blob = __dtb_dt_spl_begin;
1526# else
Simon Glassb45122f2015-02-27 22:06:34 -07001527 gd->fdt_blob = __dtb_dt_begin;
Goldschmidt Simon9bd76b82017-11-21 12:29:56 +00001528# endif
Rob Clark3b595da2018-01-10 11:34:37 +01001529# elif defined(CONFIG_OF_BOARD) || defined(CONFIG_OF_SEPARATE)
Alex Deymo82f766d2017-04-02 01:25:20 -07001530 /* Allow the board to override the fdt address. */
1531 gd->fdt_blob = board_fdt_blob_setup();
Simon Glassb45122f2015-02-27 22:06:34 -07001532# elif defined(CONFIG_OF_HOSTFILE)
1533 if (sandbox_read_fdt_from_file()) {
1534 puts("Failed to read control FDT\n");
1535 return -1;
1536 }
1537# endif
1538# ifndef CONFIG_SPL_BUILD
1539 /* Allow the early environment to override the fdt address */
Thomas Fitzsimmons894c3ad2018-06-08 17:59:45 -04001540# if CONFIG_IS_ENABLED(OF_PRIOR_STAGE)
1541 gd->fdt_blob = (void *)prior_stage_fdt_address;
1542# else
Heinrich Schuchardtf980c992018-11-18 17:58:50 +01001543 gd->fdt_blob = map_sysmem
1544 (env_get_ulong("fdtcontroladdr", 16,
1545 (unsigned long)map_to_sysmem(gd->fdt_blob)), 0);
Thomas Fitzsimmons894c3ad2018-06-08 17:59:45 -04001546# endif
Simon Glassb45122f2015-02-27 22:06:34 -07001547# endif
Jean-Jacques Hiblot2f57c952017-09-15 12:57:32 +02001548
1549# if CONFIG_IS_ENABLED(MULTI_DTB_FIT)
1550 /*
1551 * Try and uncompress the blob.
1552 * Unfortunately there is no way to know how big the input blob really
1553 * is. So let us set the maximum input size arbitrarily high. 16MB
1554 * ought to be more than enough for packed DTBs.
1555 */
1556 if (uncompress_blob(gd->fdt_blob, 0x1000000, &fdt_blob) == 0)
1557 gd->fdt_blob = fdt_blob;
1558
1559 /*
1560 * Check if blob is a FIT images containings DTBs.
1561 * If so, pick the most relevant
1562 */
1563 fdt_blob = locate_dtb_in_fit(gd->fdt_blob);
Jean-Jacques Hiblotf1d2bc92018-12-07 14:50:52 +01001564 if (fdt_blob) {
1565 gd->multi_dtb_fit = gd->fdt_blob;
Jean-Jacques Hiblot2f57c952017-09-15 12:57:32 +02001566 gd->fdt_blob = fdt_blob;
Jean-Jacques Hiblotf1d2bc92018-12-07 14:50:52 +01001567 }
1568
Jean-Jacques Hiblot2f57c952017-09-15 12:57:32 +02001569# endif
Simon Glassb45122f2015-02-27 22:06:34 -07001570#endif
Jean-Jacques Hiblot2f57c952017-09-15 12:57:32 +02001571
Simon Glass08793612015-02-27 22:06:35 -07001572 return fdtdec_prepare_fdt();
Simon Glassb45122f2015-02-27 22:06:34 -07001573}
1574
Jean-Jacques Hiblotf1d2bc92018-12-07 14:50:52 +01001575#if CONFIG_IS_ENABLED(MULTI_DTB_FIT)
1576int fdtdec_resetup(int *rescan)
1577{
1578 void *fdt_blob;
1579
1580 /*
1581 * If the current DTB is part of a compressed FIT image,
1582 * try to locate the best match from the uncompressed
1583 * FIT image stillpresent there. Save the time and space
1584 * required to uncompress it again.
1585 */
1586 if (gd->multi_dtb_fit) {
1587 fdt_blob = locate_dtb_in_fit(gd->multi_dtb_fit);
1588
1589 if (fdt_blob == gd->fdt_blob) {
1590 /*
1591 * The best match did not change. no need to tear down
1592 * the DM and rescan the fdt.
1593 */
1594 *rescan = 0;
1595 return 0;
1596 }
1597
1598 *rescan = 1;
1599 gd->fdt_blob = fdt_blob;
1600 return fdtdec_prepare_fdt();
1601 }
1602
1603 /*
1604 * If multi_dtb_fit is NULL, it means that blob appended to u-boot is
1605 * not a FIT image containings DTB, but a single DTB. There is no need
1606 * to teard down DM and rescan the DT in this case.
1607 */
1608 *rescan = 0;
1609 return 0;
1610}
1611#endif
1612
Michael Pratt90c08fa2018-06-11 13:07:09 -06001613#ifdef CONFIG_NR_DRAM_BANKS
1614int fdtdec_decode_ram_size(const void *blob, const char *area, int board_id,
1615 phys_addr_t *basep, phys_size_t *sizep, bd_t *bd)
1616{
1617 int addr_cells, size_cells;
1618 const u32 *cell, *end;
1619 u64 total_size, size, addr;
1620 int node, child;
1621 bool auto_size;
1622 int bank;
1623 int len;
1624
1625 debug("%s: board_id=%d\n", __func__, board_id);
1626 if (!area)
1627 area = "/memory";
1628 node = fdt_path_offset(blob, area);
1629 if (node < 0) {
1630 debug("No %s node found\n", area);
1631 return -ENOENT;
1632 }
1633
1634 cell = fdt_getprop(blob, node, "reg", &len);
1635 if (!cell) {
1636 debug("No reg property found\n");
1637 return -ENOENT;
1638 }
1639
1640 addr_cells = fdt_address_cells(blob, node);
1641 size_cells = fdt_size_cells(blob, node);
1642
1643 /* Check the board id and mask */
1644 for (child = fdt_first_subnode(blob, node);
1645 child >= 0;
1646 child = fdt_next_subnode(blob, child)) {
1647 int match_mask, match_value;
1648
1649 match_mask = fdtdec_get_int(blob, child, "match-mask", -1);
1650 match_value = fdtdec_get_int(blob, child, "match-value", -1);
1651
1652 if (match_value >= 0 &&
1653 ((board_id & match_mask) == match_value)) {
1654 /* Found matching mask */
1655 debug("Found matching mask %d\n", match_mask);
1656 node = child;
1657 cell = fdt_getprop(blob, node, "reg", &len);
1658 if (!cell) {
1659 debug("No memory-banks property found\n");
1660 return -EINVAL;
1661 }
1662 break;
1663 }
1664 }
1665 /* Note: if no matching subnode was found we use the parent node */
1666
1667 if (bd) {
1668 memset(bd->bi_dram, '\0', sizeof(bd->bi_dram[0]) *
1669 CONFIG_NR_DRAM_BANKS);
1670 }
1671
1672 auto_size = fdtdec_get_bool(blob, node, "auto-size");
1673
1674 total_size = 0;
1675 end = cell + len / 4 - addr_cells - size_cells;
1676 debug("cell at %p, end %p\n", cell, end);
1677 for (bank = 0; bank < CONFIG_NR_DRAM_BANKS; bank++) {
1678 if (cell > end)
1679 break;
1680 addr = 0;
1681 if (addr_cells == 2)
1682 addr += (u64)fdt32_to_cpu(*cell++) << 32UL;
1683 addr += fdt32_to_cpu(*cell++);
1684 if (bd)
1685 bd->bi_dram[bank].start = addr;
1686 if (basep && !bank)
1687 *basep = (phys_addr_t)addr;
1688
1689 size = 0;
1690 if (size_cells == 2)
1691 size += (u64)fdt32_to_cpu(*cell++) << 32UL;
1692 size += fdt32_to_cpu(*cell++);
1693
1694 if (auto_size) {
1695 u64 new_size;
1696
Masahiro Yamadadee37fc2018-08-06 20:47:40 +09001697 debug("Auto-sizing %llx, size %llx: ", addr, size);
Michael Pratt90c08fa2018-06-11 13:07:09 -06001698 new_size = get_ram_size((long *)(uintptr_t)addr, size);
1699 if (new_size == size) {
1700 debug("OK\n");
1701 } else {
Masahiro Yamadadee37fc2018-08-06 20:47:40 +09001702 debug("sized to %llx\n", new_size);
Michael Pratt90c08fa2018-06-11 13:07:09 -06001703 size = new_size;
1704 }
1705 }
1706
1707 if (bd)
1708 bd->bi_dram[bank].size = size;
1709 total_size += size;
1710 }
1711
Masahiro Yamadadee37fc2018-08-06 20:47:40 +09001712 debug("Memory size %llu\n", total_size);
Michael Pratt90c08fa2018-06-11 13:07:09 -06001713 if (sizep)
1714 *sizep = (phys_size_t)total_size;
1715
1716 return 0;
1717}
1718#endif /* CONFIG_NR_DRAM_BANKS */
1719
Simon Glassb45122f2015-02-27 22:06:34 -07001720#endif /* !USE_HOSTCC */