blob: 69bf12623e0a4cb19b5bf4f1f266145610e0291d [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glass2d2af852011-10-24 19:15:32 +00002/*
3 * Copyright (c) 2011 The Chromium OS Authors.
Simon Glass2d2af852011-10-24 19:15:32 +00004 */
5
Heiko Schocherd7b42322014-03-03 12:19:30 +01006#ifndef USE_HOSTCC
Simon Glass2d2af852011-10-24 19:15:32 +00007#include <common.h>
Jean-Jacques Hiblot5d96cab2017-09-15 12:57:31 +02008#include <boot_fit.h>
Simon Glassf1037ad2015-11-29 13:17:54 -07009#include <dm.h>
Jean-Jacques Hiblot5d96cab2017-09-15 12:57:31 +020010#include <dm/of_extra.h>
Simon Glass9908ad42014-07-23 06:55:09 -060011#include <errno.h>
Simon Glass2d2af852011-10-24 19:15:32 +000012#include <fdtdec.h>
Jean-Jacques Hiblot5d96cab2017-09-15 12:57:31 +020013#include <fdt_support.h>
Masahiro Yamada75f82d02018-03-05 01:20:11 +090014#include <linux/libfdt.h>
Jean-Jacques Hiblot5d96cab2017-09-15 12:57:31 +020015#include <serial.h>
Simon Glass26b78b22015-02-27 22:06:34 -070016#include <asm/sections.h>
Simon Glass9908ad42014-07-23 06:55:09 -060017#include <linux/ctype.h>
Jean-Jacques Hiblota2fee162017-09-15 12:57:32 +020018#include <linux/lzo.h>
Simon Glass2d2af852011-10-24 19:15:32 +000019
20DECLARE_GLOBAL_DATA_PTR;
21
22/*
23 * Here are the type we know about. One day we might allow drivers to
24 * register. For now we just put them here. The COMPAT macro allows us to
25 * turn this into a sparse list later, and keeps the ID with the name.
Simon Glass7c380302016-06-19 17:33:13 -060026 *
27 * NOTE: This list is basically a TODO list for things that need to be
28 * converted to driver model. So don't add new things here unless there is a
29 * good reason why driver-model conversion is infeasible. Examples include
30 * things which are used before driver model is available.
Simon Glass2d2af852011-10-24 19:15:32 +000031 */
32#define COMPAT(id, name) name
33static const char * const compat_names[COMPAT_COUNT] = {
Simon Glass65444982012-02-27 10:52:34 +000034 COMPAT(UNKNOWN, "<none>"),
Jimmy Zhang5983ef82012-04-02 13:18:52 +000035 COMPAT(NVIDIA_TEGRA20_EMC, "nvidia,tegra20-emc"),
36 COMPAT(NVIDIA_TEGRA20_EMC_TABLE, "nvidia,tegra20-emc-table"),
Jim Lin5d309e62012-07-29 20:53:29 +000037 COMPAT(NVIDIA_TEGRA20_NAND, "nvidia,tegra20-nand"),
Thierry Redingf202e022014-12-09 22:25:09 -070038 COMPAT(NVIDIA_TEGRA124_XUSB_PADCTL, "nvidia,tegra124-xusb-padctl"),
Tom Warrenab0cc6b2015-03-04 16:36:00 -070039 COMPAT(NVIDIA_TEGRA210_XUSB_PADCTL, "nvidia,tegra210-xusb-padctl"),
Hatim RVbe5ad5a2012-12-11 00:52:46 +000040 COMPAT(SMSC_LAN9215, "smsc,lan9215"),
41 COMPAT(SAMSUNG_EXYNOS5_SROMC, "samsung,exynos-sromc"),
Rajeshwari Shinde2b71e9d2012-12-26 20:03:10 +000042 COMPAT(SAMSUNG_S3C2440_I2C, "samsung,s3c2440-i2c"),
Rajeshwari Shinde9d116732012-12-26 20:03:16 +000043 COMPAT(SAMSUNG_EXYNOS5_SOUND, "samsung,exynos-sound"),
44 COMPAT(WOLFSON_WM8994_CODEC, "wolfson,wm8994-codec"),
Rajeshwari Shinded6e9f442013-01-07 23:35:05 +000045 COMPAT(SAMSUNG_EXYNOS_USB_PHY, "samsung,exynos-usb-phy"),
Vivek Gautamf8745232013-09-14 14:02:48 +053046 COMPAT(SAMSUNG_EXYNOS5_USB3_PHY, "samsung,exynos5250-usb3-phy"),
Akshay Saraswataa773182013-02-25 01:13:01 +000047 COMPAT(SAMSUNG_EXYNOS_TMU, "samsung,exynos-tmu"),
Piotr Wilczek24e368a2014-03-07 14:59:39 +010048 COMPAT(SAMSUNG_EXYNOS_MIPI_DSI, "samsung,exynos-mipi-dsi"),
Jaehoon Chunge3fb6fa2014-05-16 13:59:51 +090049 COMPAT(SAMSUNG_EXYNOS_DWMMC, "samsung,exynos-dwmmc"),
Piotr Wilczek12cf19e2014-03-07 14:59:41 +010050 COMPAT(SAMSUNG_EXYNOS_MMC, "samsung,exynos-mmc"),
Simon Glass609560942013-03-11 06:08:08 +000051 COMPAT(GENERIC_SPI_FLASH, "spi-flash"),
Rajeshwari Shinde003c28c2013-02-14 19:46:15 +000052 COMPAT(MAXIM_98095_CODEC, "maxim,max98095-codec"),
naveen krishna chatradhi0734bae2013-04-29 15:58:52 -070053 COMPAT(SAMSUNG_EXYNOS5_I2C, "samsung,exynos5-hsi2c"),
Ajay Kumare24c5022014-09-05 16:53:33 +053054 COMPAT(SAMSUNG_EXYNOS_SYSMMU, "samsung,sysmmu-v3.3"),
Simon Glassf79d5382014-11-12 22:42:21 -070055 COMPAT(INTEL_MICROCODE, "intel,microcode"),
Thierry Reding09c0cf22014-12-09 22:25:05 -070056 COMPAT(AMS_AS3722, "ams,as3722"),
Bin Meng2bfd2642015-02-05 23:42:26 +080057 COMPAT(INTEL_QRK_MRC, "intel,quark-mrc"),
Marek Vasutf3f8fe22015-07-25 19:33:56 +020058 COMPAT(ALTERA_SOCFPGA_DWMAC, "altr,socfpga-stmmac"),
Marek Vasut17497232015-07-25 10:48:14 +020059 COMPAT(ALTERA_SOCFPGA_DWMMC, "altr,socfpga-dw-mshc"),
Marek Vasutf26c1ae2015-12-05 19:28:44 +010060 COMPAT(ALTERA_SOCFPGA_DWC2USB, "snps,dwc2"),
Simon Glass6f70c112016-06-19 17:33:14 -060061 COMPAT(INTEL_BAYTRAIL_FSP, "intel,baytrail-fsp"),
62 COMPAT(INTEL_BAYTRAIL_FSP_MDP, "intel,baytrail-fsp-mdp"),
63 COMPAT(INTEL_IVYBRIDGE_FSP, "intel,ivybridge-fsp"),
Boris Brezillon57f20382016-06-15 21:09:23 +020064 COMPAT(COMPAT_SUNXI_NAND, "allwinner,sun4i-a10-nand"),
Ley Foon Tanb25ae722017-04-05 17:32:47 +080065 COMPAT(ALTERA_SOCFPGA_CLK, "altr,clk-mgr"),
66 COMPAT(ALTERA_SOCFPGA_PINCTRL_SINGLE, "pinctrl-single"),
67 COMPAT(ALTERA_SOCFPGA_H2F_BRG, "altr,socfpga-hps2fpga-bridge"),
68 COMPAT(ALTERA_SOCFPGA_LWH2F_BRG, "altr,socfpga-lwhps2fpga-bridge"),
69 COMPAT(ALTERA_SOCFPGA_F2H_BRG, "altr,socfpga-fpga2hps-bridge"),
70 COMPAT(ALTERA_SOCFPGA_F2SDR0, "altr,socfpga-fpga2sdram0-bridge"),
71 COMPAT(ALTERA_SOCFPGA_F2SDR1, "altr,socfpga-fpga2sdram1-bridge"),
72 COMPAT(ALTERA_SOCFPGA_F2SDR2, "altr,socfpga-fpga2sdram2-bridge"),
Tien Fong Cheebbfa5eb2017-09-25 16:40:03 +080073 COMPAT(ALTERA_SOCFPGA_FPGA0, "altr,socfpga-a10-fpga-mgr"),
74 COMPAT(ALTERA_SOCFPGA_NOC, "altr,socfpga-a10-noc"),
Simon Glass2d2af852011-10-24 19:15:32 +000075};
76
Simon Glassb022ead2012-01-17 08:20:50 +000077const char *fdtdec_get_compatible(enum fdt_compat_id id)
78{
79 /* We allow reading of the 'unknown' ID for testing purposes */
80 assert(id >= 0 && id < COMPAT_COUNT);
81 return compat_names[id];
82}
83
Stephen Warren6dfe6182015-08-06 15:31:02 -060084fdt_addr_t fdtdec_get_addr_size_fixed(const void *blob, int node,
Mario Sixbb3e06c2018-01-15 11:07:35 +010085 const char *prop_name, int index, int na,
86 int ns, fdt_size_t *sizep,
87 bool translate)
Simon Glass2d2af852011-10-24 19:15:32 +000088{
Stephen Warren6dfe6182015-08-06 15:31:02 -060089 const fdt32_t *prop, *prop_end;
90 const fdt32_t *prop_addr, *prop_size, *prop_after_size;
Simon Glass04c50d12015-08-02 18:13:50 -060091 int len;
Stephen Warren6dfe6182015-08-06 15:31:02 -060092 fdt_addr_t addr;
Simon Glass2d2af852011-10-24 19:15:32 +000093
Simon Glassc8c86dd2012-07-12 05:25:01 +000094 debug("%s: %s: ", __func__, prop_name);
Stephen Warren6dfe6182015-08-06 15:31:02 -060095
96 if (na > (sizeof(fdt_addr_t) / sizeof(fdt32_t))) {
97 debug("(na too large for fdt_addr_t type)\n");
98 return FDT_ADDR_T_NONE;
99 }
100
101 if (ns > (sizeof(fdt_size_t) / sizeof(fdt32_t))) {
102 debug("(ns too large for fdt_size_t type)\n");
103 return FDT_ADDR_T_NONE;
104 }
105
106 prop = fdt_getprop(blob, node, prop_name, &len);
107 if (!prop) {
108 debug("(not found)\n");
109 return FDT_ADDR_T_NONE;
110 }
111 prop_end = prop + (len / sizeof(*prop));
Simon Glassc8c86dd2012-07-12 05:25:01 +0000112
Stephen Warren6dfe6182015-08-06 15:31:02 -0600113 prop_addr = prop + (index * (na + ns));
114 prop_size = prop_addr + na;
115 prop_after_size = prop_size + ns;
116 if (prop_after_size > prop_end) {
117 debug("(not enough data: expected >= %d cells, got %d cells)\n",
118 (u32)(prop_after_size - prop), ((u32)(prop_end - prop)));
119 return FDT_ADDR_T_NONE;
Simon Glassc8c86dd2012-07-12 05:25:01 +0000120 }
Stephen Warren6dfe6182015-08-06 15:31:02 -0600121
Vignesh R621cc092017-03-20 10:04:38 +0530122#if CONFIG_IS_ENABLED(OF_TRANSLATE)
Stephen Warren7d30e102016-08-05 09:47:51 -0600123 if (translate)
124 addr = fdt_translate_address(blob, node, prop_addr);
125 else
126#endif
127 addr = fdtdec_get_number(prop_addr, na);
Stephen Warren6dfe6182015-08-06 15:31:02 -0600128
129 if (sizep) {
130 *sizep = fdtdec_get_number(prop_size, ns);
Simon Glass0b14dc72016-02-29 15:25:37 -0700131 debug("addr=%08llx, size=%llx\n", (unsigned long long)addr,
132 (unsigned long long)*sizep);
Stephen Warren6dfe6182015-08-06 15:31:02 -0600133 } else {
Simon Glass0b14dc72016-02-29 15:25:37 -0700134 debug("addr=%08llx\n", (unsigned long long)addr);
Stephen Warren6dfe6182015-08-06 15:31:02 -0600135 }
136
137 return addr;
138}
139
140fdt_addr_t fdtdec_get_addr_size_auto_parent(const void *blob, int parent,
Mario Sixbb3e06c2018-01-15 11:07:35 +0100141 int node, const char *prop_name,
142 int index, fdt_size_t *sizep,
143 bool translate)
Stephen Warren6dfe6182015-08-06 15:31:02 -0600144{
145 int na, ns;
146
147 debug("%s: ", __func__);
148
149 na = fdt_address_cells(blob, parent);
150 if (na < 1) {
151 debug("(bad #address-cells)\n");
152 return FDT_ADDR_T_NONE;
153 }
154
155 ns = fdt_size_cells(blob, parent);
Przemyslaw Marczak7b42f4d2015-09-30 13:14:50 +0200156 if (ns < 0) {
Stephen Warren6dfe6182015-08-06 15:31:02 -0600157 debug("(bad #size-cells)\n");
158 return FDT_ADDR_T_NONE;
159 }
160
161 debug("na=%d, ns=%d, ", na, ns);
162
163 return fdtdec_get_addr_size_fixed(blob, node, prop_name, index, na,
Stephen Warren7d30e102016-08-05 09:47:51 -0600164 ns, sizep, translate);
Stephen Warren6dfe6182015-08-06 15:31:02 -0600165}
166
167fdt_addr_t fdtdec_get_addr_size_auto_noparent(const void *blob, int node,
Mario Sixbb3e06c2018-01-15 11:07:35 +0100168 const char *prop_name, int index,
169 fdt_size_t *sizep,
170 bool translate)
Stephen Warren6dfe6182015-08-06 15:31:02 -0600171{
172 int parent;
173
174 debug("%s: ", __func__);
175
176 parent = fdt_parent_offset(blob, node);
177 if (parent < 0) {
178 debug("(no parent found)\n");
179 return FDT_ADDR_T_NONE;
180 }
181
182 return fdtdec_get_addr_size_auto_parent(blob, parent, node, prop_name,
Stephen Warren7d30e102016-08-05 09:47:51 -0600183 index, sizep, translate);
Stephen Warren6dfe6182015-08-06 15:31:02 -0600184}
185
186fdt_addr_t fdtdec_get_addr_size(const void *blob, int node,
Mario Sixbb3e06c2018-01-15 11:07:35 +0100187 const char *prop_name, fdt_size_t *sizep)
Stephen Warren6dfe6182015-08-06 15:31:02 -0600188{
Stephen Warrenfda59162015-09-25 10:11:41 -0600189 int ns = sizep ? (sizeof(fdt_size_t) / sizeof(fdt32_t)) : 0;
190
Stephen Warren6dfe6182015-08-06 15:31:02 -0600191 return fdtdec_get_addr_size_fixed(blob, node, prop_name, 0,
192 sizeof(fdt_addr_t) / sizeof(fdt32_t),
Stephen Warren7d30e102016-08-05 09:47:51 -0600193 ns, sizep, false);
Simon Glass2d2af852011-10-24 19:15:32 +0000194}
195
Mario Sixbb3e06c2018-01-15 11:07:35 +0100196fdt_addr_t fdtdec_get_addr(const void *blob, int node, const char *prop_name)
Simon Glassf4299552013-03-19 04:58:51 +0000197{
198 return fdtdec_get_addr_size(blob, node, prop_name, NULL);
199}
200
Simon Glassf1037ad2015-11-29 13:17:54 -0700201#if defined(CONFIG_PCI) && defined(CONFIG_DM_PCI)
Bin Meng779847e2014-12-31 16:05:11 +0800202int fdtdec_get_pci_addr(const void *blob, int node, enum fdt_pci_space type,
Mario Sixbb3e06c2018-01-15 11:07:35 +0100203 const char *prop_name, struct fdt_pci_addr *addr)
Bin Meng779847e2014-12-31 16:05:11 +0800204{
205 const u32 *cell;
206 int len;
207 int ret = -ENOENT;
208
209 debug("%s: %s: ", __func__, prop_name);
210
211 /*
212 * If we follow the pci bus bindings strictly, we should check
213 * the value of the node's parent node's #address-cells and
214 * #size-cells. They need to be 3 and 2 accordingly. However,
215 * for simplicity we skip the check here.
216 */
217 cell = fdt_getprop(blob, node, prop_name, &len);
218 if (!cell)
219 goto fail;
220
221 if ((len % FDT_PCI_REG_SIZE) == 0) {
222 int num = len / FDT_PCI_REG_SIZE;
223 int i;
224
225 for (i = 0; i < num; i++) {
226 debug("pci address #%d: %08lx %08lx %08lx\n", i,
Stephen Warrenfed69ad2015-10-02 17:44:06 -0600227 (ulong)fdt32_to_cpu(cell[0]),
228 (ulong)fdt32_to_cpu(cell[1]),
229 (ulong)fdt32_to_cpu(cell[2]));
230 if ((fdt32_to_cpu(*cell) & type) == type) {
231 addr->phys_hi = fdt32_to_cpu(cell[0]);
232 addr->phys_mid = fdt32_to_cpu(cell[1]);
233 addr->phys_lo = fdt32_to_cpu(cell[1]);
Bin Meng779847e2014-12-31 16:05:11 +0800234 break;
Bin Meng779847e2014-12-31 16:05:11 +0800235 }
Mario Six6abfbc82018-01-15 11:07:36 +0100236
237 cell += (FDT_PCI_ADDR_CELLS +
238 FDT_PCI_SIZE_CELLS);
Bin Meng779847e2014-12-31 16:05:11 +0800239 }
240
Simon Glass2eb77f12015-03-05 12:25:19 -0700241 if (i == num) {
242 ret = -ENXIO;
Bin Meng779847e2014-12-31 16:05:11 +0800243 goto fail;
Simon Glass2eb77f12015-03-05 12:25:19 -0700244 }
Bin Meng779847e2014-12-31 16:05:11 +0800245
246 return 0;
Bin Meng779847e2014-12-31 16:05:11 +0800247 }
248
Mario Six6abfbc82018-01-15 11:07:36 +0100249 ret = -EINVAL;
250
Bin Meng779847e2014-12-31 16:05:11 +0800251fail:
252 debug("(not found)\n");
253 return ret;
254}
255
256int fdtdec_get_pci_vendev(const void *blob, int node, u16 *vendor, u16 *device)
257{
258 const char *list, *end;
259 int len;
260
261 list = fdt_getprop(blob, node, "compatible", &len);
262 if (!list)
263 return -ENOENT;
264
265 end = list + len;
266 while (list < end) {
Bin Meng779847e2014-12-31 16:05:11 +0800267 len = strlen(list);
268 if (len >= strlen("pciVVVV,DDDD")) {
Mario Six6abfbc82018-01-15 11:07:36 +0100269 char *s = strstr(list, "pci");
Bin Meng779847e2014-12-31 16:05:11 +0800270
271 /*
272 * check if the string is something like pciVVVV,DDDD.RR
273 * or just pciVVVV,DDDD
274 */
275 if (s && s[7] == ',' &&
276 (s[12] == '.' || s[12] == 0)) {
277 s += 3;
278 *vendor = simple_strtol(s, NULL, 16);
279
280 s += 5;
281 *device = simple_strtol(s, NULL, 16);
282
283 return 0;
284 }
Bin Meng779847e2014-12-31 16:05:11 +0800285 }
Bin Menga2822b82015-08-20 06:40:25 -0700286 list += (len + 1);
Bin Meng779847e2014-12-31 16:05:11 +0800287 }
288
289 return -ENOENT;
290}
291
Simon Glassf1037ad2015-11-29 13:17:54 -0700292int fdtdec_get_pci_bar32(struct udevice *dev, struct fdt_pci_addr *addr,
293 u32 *bar)
Bin Meng779847e2014-12-31 16:05:11 +0800294{
Bin Meng779847e2014-12-31 16:05:11 +0800295 int barnum;
Bin Meng779847e2014-12-31 16:05:11 +0800296
297 /* extract the bar number from fdt_pci_addr */
298 barnum = addr->phys_hi & 0xff;
Mario Six6abfbc82018-01-15 11:07:36 +0100299 if (barnum < PCI_BASE_ADDRESS_0 || barnum > PCI_CARDBUS_CIS)
Bin Meng779847e2014-12-31 16:05:11 +0800300 return -EINVAL;
301
302 barnum = (barnum - PCI_BASE_ADDRESS_0) / 4;
Simon Glassf1037ad2015-11-29 13:17:54 -0700303 *bar = dm_pci_read_bar32(dev, barnum);
Bin Meng779847e2014-12-31 16:05:11 +0800304
305 return 0;
306}
307#endif
308
Che-Liang Chioud81d0172012-10-25 16:31:05 +0000309uint64_t fdtdec_get_uint64(const void *blob, int node, const char *prop_name,
Mario Sixbb3e06c2018-01-15 11:07:35 +0100310 uint64_t default_val)
Che-Liang Chioud81d0172012-10-25 16:31:05 +0000311{
312 const uint64_t *cell64;
313 int length;
314
315 cell64 = fdt_getprop(blob, node, prop_name, &length);
316 if (!cell64 || length < sizeof(*cell64))
317 return default_val;
318
319 return fdt64_to_cpu(*cell64);
320}
321
Simon Glass65444982012-02-27 10:52:34 +0000322int fdtdec_get_is_enabled(const void *blob, int node)
Simon Glass2d2af852011-10-24 19:15:32 +0000323{
324 const char *cell;
325
Simon Glass65444982012-02-27 10:52:34 +0000326 /*
327 * It should say "okay", so only allow that. Some fdts use "ok" but
328 * this is a bug. Please fix your device tree source file. See here
329 * for discussion:
330 *
331 * http://www.mail-archive.com/u-boot@lists.denx.de/msg71598.html
332 */
Simon Glass2d2af852011-10-24 19:15:32 +0000333 cell = fdt_getprop(blob, node, "status", NULL);
334 if (cell)
Mario Six6abfbc82018-01-15 11:07:36 +0100335 return strcmp(cell, "okay") == 0;
Simon Glass65444982012-02-27 10:52:34 +0000336 return 1;
Simon Glass2d2af852011-10-24 19:15:32 +0000337}
338
Gerald Van Barencdac3392012-11-12 23:13:54 -0500339enum fdt_compat_id fdtdec_lookup(const void *blob, int node)
Simon Glass2d2af852011-10-24 19:15:32 +0000340{
341 enum fdt_compat_id id;
342
343 /* Search our drivers */
344 for (id = COMPAT_UNKNOWN; id < COMPAT_COUNT; id++)
Mario Six6abfbc82018-01-15 11:07:36 +0100345 if (fdt_node_check_compatible(blob, node,
346 compat_names[id]) == 0)
Simon Glass2d2af852011-10-24 19:15:32 +0000347 return id;
348 return COMPAT_UNKNOWN;
349}
350
Mario Sixbb3e06c2018-01-15 11:07:35 +0100351int fdtdec_next_compatible(const void *blob, int node, enum fdt_compat_id id)
Simon Glass2d2af852011-10-24 19:15:32 +0000352{
353 return fdt_node_offset_by_compatible(blob, node, compat_names[id]);
354}
355
Simon Glass2e979b12012-04-02 13:18:42 +0000356int fdtdec_next_compatible_subnode(const void *blob, int node,
Mario Sixbb3e06c2018-01-15 11:07:35 +0100357 enum fdt_compat_id id, int *depthp)
Simon Glass2e979b12012-04-02 13:18:42 +0000358{
359 do {
360 node = fdt_next_node(blob, node, depthp);
361 } while (*depthp > 1);
362
363 /* If this is a direct subnode, and compatible, return it */
364 if (*depthp == 1 && 0 == fdt_node_check_compatible(
365 blob, node, compat_names[id]))
366 return node;
367
368 return -FDT_ERR_NOTFOUND;
369}
370
Mario Sixbb3e06c2018-01-15 11:07:35 +0100371int fdtdec_next_alias(const void *blob, const char *name, enum fdt_compat_id id,
372 int *upto)
Simon Glass2d2af852011-10-24 19:15:32 +0000373{
374#define MAX_STR_LEN 20
375 char str[MAX_STR_LEN + 20];
376 int node, err;
377
378 /* snprintf() is not available */
379 assert(strlen(name) < MAX_STR_LEN);
380 sprintf(str, "%.*s%d", MAX_STR_LEN, name, *upto);
Simon Glasse1d15ca2012-10-31 14:02:42 +0000381 node = fdt_path_offset(blob, str);
Simon Glass2d2af852011-10-24 19:15:32 +0000382 if (node < 0)
383 return node;
384 err = fdt_node_check_compatible(blob, node, compat_names[id]);
385 if (err < 0)
386 return err;
Simon Glass65444982012-02-27 10:52:34 +0000387 if (err)
388 return -FDT_ERR_NOTFOUND;
389 (*upto)++;
390 return node;
Simon Glass2d2af852011-10-24 19:15:32 +0000391}
392
Simon Glassb022ead2012-01-17 08:20:50 +0000393int fdtdec_find_aliases_for_id(const void *blob, const char *name,
Mario Sixbb3e06c2018-01-15 11:07:35 +0100394 enum fdt_compat_id id, int *node_list,
395 int maxcount)
Simon Glassb022ead2012-01-17 08:20:50 +0000396{
Simon Glass1f772662012-02-03 15:13:53 +0000397 memset(node_list, '\0', sizeof(*node_list) * maxcount);
398
399 return fdtdec_add_aliases_for_id(blob, name, id, node_list, maxcount);
400}
401
402/* TODO: Can we tighten this code up a little? */
403int fdtdec_add_aliases_for_id(const void *blob, const char *name,
Mario Sixbb3e06c2018-01-15 11:07:35 +0100404 enum fdt_compat_id id, int *node_list,
405 int maxcount)
Simon Glass1f772662012-02-03 15:13:53 +0000406{
Simon Glassb022ead2012-01-17 08:20:50 +0000407 int name_len = strlen(name);
408 int nodes[maxcount];
409 int num_found = 0;
410 int offset, node;
411 int alias_node;
412 int count;
413 int i, j;
414
415 /* find the alias node if present */
416 alias_node = fdt_path_offset(blob, "/aliases");
417
418 /*
419 * start with nothing, and we can assume that the root node can't
420 * match
421 */
422 memset(nodes, '\0', sizeof(nodes));
423
424 /* First find all the compatible nodes */
425 for (node = count = 0; node >= 0 && count < maxcount;) {
426 node = fdtdec_next_compatible(blob, node, id);
427 if (node >= 0)
428 nodes[count++] = node;
429 }
430 if (node >= 0)
431 debug("%s: warning: maxcount exceeded with alias '%s'\n",
Mario Sixbb3e06c2018-01-15 11:07:35 +0100432 __func__, name);
Simon Glassb022ead2012-01-17 08:20:50 +0000433
434 /* Now find all the aliases */
Simon Glassb022ead2012-01-17 08:20:50 +0000435 for (offset = fdt_first_property_offset(blob, alias_node);
436 offset > 0;
437 offset = fdt_next_property_offset(blob, offset)) {
438 const struct fdt_property *prop;
439 const char *path;
440 int number;
441 int found;
442
443 node = 0;
444 prop = fdt_get_property_by_offset(blob, offset, NULL);
445 path = fdt_string(blob, fdt32_to_cpu(prop->nameoff));
446 if (prop->len && 0 == strncmp(path, name, name_len))
447 node = fdt_path_offset(blob, prop->data);
448 if (node <= 0)
449 continue;
450
451 /* Get the alias number */
452 number = simple_strtoul(path + name_len, NULL, 10);
453 if (number < 0 || number >= maxcount) {
454 debug("%s: warning: alias '%s' is out of range\n",
Mario Sixbb3e06c2018-01-15 11:07:35 +0100455 __func__, path);
Simon Glassb022ead2012-01-17 08:20:50 +0000456 continue;
457 }
458
459 /* Make sure the node we found is actually in our list! */
460 found = -1;
461 for (j = 0; j < count; j++)
462 if (nodes[j] == node) {
463 found = j;
464 break;
465 }
466
467 if (found == -1) {
468 debug("%s: warning: alias '%s' points to a node "
469 "'%s' that is missing or is not compatible "
470 " with '%s'\n", __func__, path,
471 fdt_get_name(blob, node, NULL),
472 compat_names[id]);
473 continue;
474 }
475
476 /*
477 * Add this node to our list in the right place, and mark
478 * it as done.
479 */
480 if (fdtdec_get_is_enabled(blob, node)) {
Simon Glass1f772662012-02-03 15:13:53 +0000481 if (node_list[number]) {
482 debug("%s: warning: alias '%s' requires that "
483 "a node be placed in the list in a "
484 "position which is already filled by "
485 "node '%s'\n", __func__, path,
486 fdt_get_name(blob, node, NULL));
487 continue;
488 }
Simon Glassb022ead2012-01-17 08:20:50 +0000489 node_list[number] = node;
490 if (number >= num_found)
491 num_found = number + 1;
492 }
Simon Glass1f772662012-02-03 15:13:53 +0000493 nodes[found] = 0;
Simon Glassb022ead2012-01-17 08:20:50 +0000494 }
495
496 /* Add any nodes not mentioned by an alias */
497 for (i = j = 0; i < maxcount; i++) {
498 if (!node_list[i]) {
499 for (; j < maxcount; j++)
500 if (nodes[j] &&
Mario Sixbb3e06c2018-01-15 11:07:35 +0100501 fdtdec_get_is_enabled(blob, nodes[j]))
Simon Glassb022ead2012-01-17 08:20:50 +0000502 break;
503
504 /* Have we run out of nodes to add? */
505 if (j == maxcount)
506 break;
507
508 assert(!node_list[i]);
509 node_list[i] = nodes[j++];
510 if (i >= num_found)
511 num_found = i + 1;
512 }
513 }
514
515 return num_found;
516}
517
Simon Glass9908ad42014-07-23 06:55:09 -0600518int fdtdec_get_alias_seq(const void *blob, const char *base, int offset,
519 int *seqp)
520{
521 int base_len = strlen(base);
522 const char *find_name;
523 int find_namelen;
524 int prop_offset;
525 int aliases;
526
527 find_name = fdt_get_name(blob, offset, &find_namelen);
528 debug("Looking for '%s' at %d, name %s\n", base, offset, find_name);
529
530 aliases = fdt_path_offset(blob, "/aliases");
531 for (prop_offset = fdt_first_property_offset(blob, aliases);
532 prop_offset > 0;
533 prop_offset = fdt_next_property_offset(blob, prop_offset)) {
534 const char *prop;
535 const char *name;
536 const char *slash;
Simon Glass4aaa4602015-06-23 15:39:08 -0600537 int len, val;
Simon Glass9908ad42014-07-23 06:55:09 -0600538
539 prop = fdt_getprop_by_offset(blob, prop_offset, &name, &len);
540 debug(" - %s, %s\n", name, prop);
541 if (len < find_namelen || *prop != '/' || prop[len - 1] ||
542 strncmp(name, base, base_len))
543 continue;
544
545 slash = strrchr(prop, '/');
546 if (strcmp(slash + 1, find_name))
547 continue;
Simon Glass4aaa4602015-06-23 15:39:08 -0600548 val = trailing_strtol(name);
549 if (val != -1) {
550 *seqp = val;
551 debug("Found seq %d\n", *seqp);
552 return 0;
Simon Glass9908ad42014-07-23 06:55:09 -0600553 }
554 }
555
556 debug("Not found\n");
557 return -ENOENT;
558}
559
Simon Glass088dccb2015-10-17 19:41:14 -0600560const char *fdtdec_get_chosen_prop(const void *blob, const char *name)
Simon Glass1e374fb2014-09-04 16:27:24 -0600561{
Simon Glass1e374fb2014-09-04 16:27:24 -0600562 int chosen_node;
Simon Glass1e374fb2014-09-04 16:27:24 -0600563
564 if (!blob)
Simon Glass088dccb2015-10-17 19:41:14 -0600565 return NULL;
Simon Glass1e374fb2014-09-04 16:27:24 -0600566 chosen_node = fdt_path_offset(blob, "/chosen");
Simon Glass088dccb2015-10-17 19:41:14 -0600567 return fdt_getprop(blob, chosen_node, name, NULL);
568}
569
570int fdtdec_get_chosen_node(const void *blob, const char *name)
571{
572 const char *prop;
573
574 prop = fdtdec_get_chosen_prop(blob, name);
Simon Glass1e374fb2014-09-04 16:27:24 -0600575 if (!prop)
576 return -FDT_ERR_NOTFOUND;
577 return fdt_path_offset(blob, prop);
578}
579
Simon Glass1691f692012-03-28 10:08:24 +0000580int fdtdec_check_fdt(void)
581{
582 /*
583 * We must have an FDT, but we cannot panic() yet since the console
584 * is not ready. So for now, just assert(). Boards which need an early
585 * FDT (prior to console ready) will need to make their own
586 * arrangements and do their own checks.
587 */
588 assert(!fdtdec_prepare_fdt());
589 return 0;
590}
591
Simon Glass2d2af852011-10-24 19:15:32 +0000592/*
593 * This function is a little odd in that it accesses global data. At some
594 * point if the architecture board.c files merge this will make more sense.
595 * Even now, it is common code.
596 */
Simon Glass1691f692012-03-28 10:08:24 +0000597int fdtdec_prepare_fdt(void)
Simon Glass2d2af852011-10-24 19:15:32 +0000598{
Simon Glass71136852013-04-20 08:42:46 +0000599 if (!gd->fdt_blob || ((uintptr_t)gd->fdt_blob & 3) ||
600 fdt_check_header(gd->fdt_blob)) {
Simon Glass509dbf92015-02-27 22:06:32 -0700601#ifdef CONFIG_SPL_BUILD
602 puts("Missing DTB\n");
603#else
604 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 Glass63884ec2015-06-23 15:39:09 -0600605# ifdef DEBUG
606 if (gd->fdt_blob) {
607 printf("fdt_blob=%p\n", gd->fdt_blob);
608 print_buffer((ulong)gd->fdt_blob, gd->fdt_blob, 4,
609 32, 0);
610 }
611# endif
Simon Glass509dbf92015-02-27 22:06:32 -0700612#endif
Simon Glass1691f692012-03-28 10:08:24 +0000613 return -1;
614 }
Simon Glass2d2af852011-10-24 19:15:32 +0000615 return 0;
616}
Simon Glassc4697362012-02-27 10:52:35 +0000617
618int fdtdec_lookup_phandle(const void *blob, int node, const char *prop_name)
619{
620 const u32 *phandle;
621 int lookup;
622
Simon Glassc8c86dd2012-07-12 05:25:01 +0000623 debug("%s: %s\n", __func__, prop_name);
Simon Glassc4697362012-02-27 10:52:35 +0000624 phandle = fdt_getprop(blob, node, prop_name, NULL);
625 if (!phandle)
626 return -FDT_ERR_NOTFOUND;
627
628 lookup = fdt_node_offset_by_phandle(blob, fdt32_to_cpu(*phandle));
629 return lookup;
630}
631
632/**
633 * Look up a property in a node and check that it has a minimum length.
634 *
635 * @param blob FDT blob
636 * @param node node to examine
637 * @param prop_name name of property to find
638 * @param min_len minimum property length in bytes
639 * @param err 0 if ok, or -FDT_ERR_NOTFOUND if the property is not
640 found, or -FDT_ERR_BADLAYOUT if not enough data
641 * @return pointer to cell, which is only valid if err == 0
642 */
643static const void *get_prop_check_min_len(const void *blob, int node,
Mario Sixbb3e06c2018-01-15 11:07:35 +0100644 const char *prop_name, int min_len,
645 int *err)
Simon Glassc4697362012-02-27 10:52:35 +0000646{
647 const void *cell;
648 int len;
649
650 debug("%s: %s\n", __func__, prop_name);
651 cell = fdt_getprop(blob, node, prop_name, &len);
652 if (!cell)
653 *err = -FDT_ERR_NOTFOUND;
654 else if (len < min_len)
655 *err = -FDT_ERR_BADLAYOUT;
656 else
657 *err = 0;
658 return cell;
659}
660
661int fdtdec_get_int_array(const void *blob, int node, const char *prop_name,
Mario Sixbb3e06c2018-01-15 11:07:35 +0100662 u32 *array, int count)
Simon Glassc4697362012-02-27 10:52:35 +0000663{
664 const u32 *cell;
Mario Six6abfbc82018-01-15 11:07:36 +0100665 int err = 0;
Simon Glassc4697362012-02-27 10:52:35 +0000666
667 debug("%s: %s\n", __func__, prop_name);
668 cell = get_prop_check_min_len(blob, node, prop_name,
669 sizeof(u32) * count, &err);
670 if (!err) {
Mario Six6abfbc82018-01-15 11:07:36 +0100671 int i;
672
Simon Glassc4697362012-02-27 10:52:35 +0000673 for (i = 0; i < count; i++)
674 array[i] = fdt32_to_cpu(cell[i]);
675 }
676 return err;
677}
678
Simon Glasseda0c3f2014-11-10 18:00:19 -0700679int fdtdec_get_int_array_count(const void *blob, int node,
680 const char *prop_name, u32 *array, int count)
681{
682 const u32 *cell;
683 int len, elems;
684 int i;
685
686 debug("%s: %s\n", __func__, prop_name);
687 cell = fdt_getprop(blob, node, prop_name, &len);
688 if (!cell)
689 return -FDT_ERR_NOTFOUND;
690 elems = len / sizeof(u32);
691 if (count > elems)
692 count = elems;
693 for (i = 0; i < count; i++)
694 array[i] = fdt32_to_cpu(cell[i]);
695
696 return count;
697}
698
Simon Glass744ec232012-04-02 13:18:41 +0000699const u32 *fdtdec_locate_array(const void *blob, int node,
700 const char *prop_name, int count)
701{
702 const u32 *cell;
703 int err;
704
705 cell = get_prop_check_min_len(blob, node, prop_name,
706 sizeof(u32) * count, &err);
707 return err ? NULL : cell;
708}
709
Simon Glassc4697362012-02-27 10:52:35 +0000710int fdtdec_get_bool(const void *blob, int node, const char *prop_name)
711{
712 const s32 *cell;
713 int len;
714
715 debug("%s: %s\n", __func__, prop_name);
716 cell = fdt_getprop(blob, node, prop_name, &len);
717 return cell != NULL;
718}
Simon Glass0d83c4d2012-02-27 10:52:36 +0000719
Simon Glassb491e9c2015-01-05 20:05:26 -0700720int fdtdec_parse_phandle_with_args(const void *blob, int src_node,
721 const char *list_name,
722 const char *cells_name,
723 int cell_count, int index,
724 struct fdtdec_phandle_args *out_args)
725{
726 const __be32 *list, *list_end;
727 int rc = 0, size, cur_index = 0;
728 uint32_t count = 0;
729 int node = -1;
730 int phandle;
731
732 /* Retrieve the phandle list property */
733 list = fdt_getprop(blob, src_node, list_name, &size);
734 if (!list)
735 return -ENOENT;
736 list_end = list + size / sizeof(*list);
737
738 /* Loop over the phandles until all the requested entry is found */
739 while (list < list_end) {
740 rc = -EINVAL;
741 count = 0;
742
743 /*
744 * If phandle is 0, then it is an empty entry with no
745 * arguments. Skip forward to the next entry.
746 */
747 phandle = be32_to_cpup(list++);
748 if (phandle) {
749 /*
750 * Find the provider node and parse the #*-cells
751 * property to determine the argument length.
752 *
753 * This is not needed if the cell count is hard-coded
754 * (i.e. cells_name not set, but cell_count is set),
755 * except when we're going to return the found node
756 * below.
757 */
758 if (cells_name || cur_index == index) {
759 node = fdt_node_offset_by_phandle(blob,
760 phandle);
761 if (!node) {
762 debug("%s: could not find phandle\n",
763 fdt_get_name(blob, src_node,
764 NULL));
765 goto err;
766 }
767 }
768
769 if (cells_name) {
770 count = fdtdec_get_int(blob, node, cells_name,
771 -1);
772 if (count == -1) {
773 debug("%s: could not get %s for %s\n",
774 fdt_get_name(blob, src_node,
775 NULL),
776 cells_name,
777 fdt_get_name(blob, node,
778 NULL));
779 goto err;
780 }
781 } else {
782 count = cell_count;
783 }
784
785 /*
786 * Make sure that the arguments actually fit in the
787 * remaining property data length
788 */
789 if (list + count > list_end) {
790 debug("%s: arguments longer than property\n",
791 fdt_get_name(blob, src_node, NULL));
792 goto err;
793 }
794 }
795
796 /*
797 * All of the error cases above bail out of the loop, so at
798 * this point, the parsing is successful. If the requested
799 * index matches, then fill the out_args structure and return,
800 * or return -ENOENT for an empty entry.
801 */
802 rc = -ENOENT;
803 if (cur_index == index) {
804 if (!phandle)
805 goto err;
806
807 if (out_args) {
808 int i;
809
810 if (count > MAX_PHANDLE_ARGS) {
811 debug("%s: too many arguments %d\n",
812 fdt_get_name(blob, src_node,
813 NULL), count);
814 count = MAX_PHANDLE_ARGS;
815 }
816 out_args->node = node;
817 out_args->args_count = count;
818 for (i = 0; i < count; i++) {
819 out_args->args[i] =
820 be32_to_cpup(list++);
821 }
822 }
823
824 /* Found it! return success */
825 return 0;
826 }
827
828 node = -1;
829 list += count;
830 cur_index++;
831 }
832
833 /*
834 * Result will be one of:
835 * -ENOENT : index is for empty phandle
836 * -EINVAL : parsing error on data
837 * [1..n] : Number of phandle (count mode; when index = -1)
838 */
839 rc = index < 0 ? cur_index : -ENOENT;
840 err:
841 return rc;
842}
843
Peng Fan23dd3a02016-02-01 13:31:15 +0800844int fdtdec_get_child_count(const void *blob, int node)
845{
846 int subnode;
847 int num = 0;
848
Simon Glass499c29e2016-10-02 17:59:29 -0600849 fdt_for_each_subnode(subnode, blob, node)
Peng Fan23dd3a02016-02-01 13:31:15 +0800850 num++;
851
852 return num;
853}
854
Anton Stafff2305ec2012-04-17 09:01:28 +0000855int fdtdec_get_byte_array(const void *blob, int node, const char *prop_name,
Mario Sixbb3e06c2018-01-15 11:07:35 +0100856 u8 *array, int count)
Anton Stafff2305ec2012-04-17 09:01:28 +0000857{
858 const u8 *cell;
859 int err;
860
861 cell = get_prop_check_min_len(blob, node, prop_name, count, &err);
862 if (!err)
863 memcpy(array, cell, count);
864 return err;
865}
866
867const u8 *fdtdec_locate_byte_array(const void *blob, int node,
Mario Sixbb3e06c2018-01-15 11:07:35 +0100868 const char *prop_name, int count)
Anton Stafff2305ec2012-04-17 09:01:28 +0000869{
870 const u8 *cell;
871 int err;
872
873 cell = get_prop_check_min_len(blob, node, prop_name, count, &err);
874 if (err)
875 return NULL;
876 return cell;
877}
Abhilash Kesavan67217af2012-10-25 16:30:58 +0000878
Abhilash Kesavan67217af2012-10-25 16:30:58 +0000879int fdtdec_get_config_int(const void *blob, const char *prop_name,
Mario Sixbb3e06c2018-01-15 11:07:35 +0100880 int default_val)
Abhilash Kesavan67217af2012-10-25 16:30:58 +0000881{
882 int config_node;
883
884 debug("%s: %s\n", __func__, prop_name);
885 config_node = fdt_path_offset(blob, "/config");
886 if (config_node < 0)
887 return default_val;
888 return fdtdec_get_int(blob, config_node, prop_name, default_val);
889}
Simon Glassb0494472012-10-25 16:30:59 +0000890
Gabe Black3e1c1512012-10-25 16:31:04 +0000891int fdtdec_get_config_bool(const void *blob, const char *prop_name)
892{
893 int config_node;
894 const void *prop;
895
896 debug("%s: %s\n", __func__, prop_name);
897 config_node = fdt_path_offset(blob, "/config");
898 if (config_node < 0)
899 return 0;
900 prop = fdt_get_property(blob, config_node, prop_name, NULL);
901
902 return prop != NULL;
903}
904
Simon Glassb0494472012-10-25 16:30:59 +0000905char *fdtdec_get_config_string(const void *blob, const char *prop_name)
906{
907 const char *nodep;
908 int nodeoffset;
909 int len;
910
911 debug("%s: %s\n", __func__, prop_name);
912 nodeoffset = fdt_path_offset(blob, "/config");
913 if (nodeoffset < 0)
914 return NULL;
915
916 nodep = fdt_getprop(blob, nodeoffset, prop_name, &len);
917 if (!nodep)
918 return NULL;
919
920 return (char *)nodep;
921}
Simon Glassf909b9c2012-10-25 16:31:00 +0000922
Simon Glassa28f8ba2014-10-23 18:58:51 -0600923int fdtdec_decode_region(const void *blob, int node, const char *prop_name,
924 fdt_addr_t *basep, fdt_size_t *sizep)
Simon Glassf909b9c2012-10-25 16:31:00 +0000925{
926 const fdt_addr_t *cell;
927 int len;
928
Simon Glassa28f8ba2014-10-23 18:58:51 -0600929 debug("%s: %s: %s\n", __func__, fdt_get_name(blob, node, NULL),
930 prop_name);
Simon Glassf909b9c2012-10-25 16:31:00 +0000931 cell = fdt_getprop(blob, node, prop_name, &len);
Simon Glassa28f8ba2014-10-23 18:58:51 -0600932 if (!cell || (len < sizeof(fdt_addr_t) * 2)) {
933 debug("cell=%p, len=%d\n", cell, len);
Simon Glassf909b9c2012-10-25 16:31:00 +0000934 return -1;
Simon Glassa28f8ba2014-10-23 18:58:51 -0600935 }
936
937 *basep = fdt_addr_to_cpu(*cell);
938 *sizep = fdt_size_to_cpu(cell[1]);
939 debug("%s: base=%08lx, size=%lx\n", __func__, (ulong)*basep,
940 (ulong)*sizep);
Simon Glassf909b9c2012-10-25 16:31:00 +0000941
Simon Glassf909b9c2012-10-25 16:31:00 +0000942 return 0;
943}
Simon Glass9f783722014-02-27 13:26:01 -0700944
Simon Glass9ffbe332015-03-05 12:25:14 -0700945u64 fdtdec_get_number(const fdt32_t *ptr, unsigned int cells)
Thierry Redinga937b802014-08-26 17:33:53 +0200946{
947 u64 number = 0;
948
949 while (cells--)
950 number = (number << 32) | fdt32_to_cpu(*ptr++);
951
952 return number;
953}
954
955int fdt_get_resource(const void *fdt, int node, const char *property,
956 unsigned int index, struct fdt_resource *res)
957{
958 const fdt32_t *ptr, *end;
959 int na, ns, len, parent;
960 unsigned int i = 0;
961
962 parent = fdt_parent_offset(fdt, node);
963 if (parent < 0)
964 return parent;
965
966 na = fdt_address_cells(fdt, parent);
967 ns = fdt_size_cells(fdt, parent);
968
969 ptr = fdt_getprop(fdt, node, property, &len);
970 if (!ptr)
971 return len;
972
973 end = ptr + len / sizeof(*ptr);
974
975 while (ptr + na + ns <= end) {
976 if (i == index) {
Mario Six6abfbc82018-01-15 11:07:36 +0100977 res->start = fdtdec_get_number(ptr, na);
978 res->end = res->start;
Thierry Redinga937b802014-08-26 17:33:53 +0200979 res->end += fdtdec_get_number(&ptr[na], ns) - 1;
980 return 0;
981 }
982
983 ptr += na + ns;
984 i++;
985 }
986
987 return -FDT_ERR_NOTFOUND;
988}
989
990int fdt_get_named_resource(const void *fdt, int node, const char *property,
991 const char *prop_names, const char *name,
992 struct fdt_resource *res)
993{
994 int index;
995
Simon Glassb0ea7402016-10-02 17:59:28 -0600996 index = fdt_stringlist_search(fdt, node, prop_names, name);
Thierry Redinga937b802014-08-26 17:33:53 +0200997 if (index < 0)
998 return index;
999
1000 return fdt_get_resource(fdt, node, property, index, res);
1001}
Thierry Reding24856312014-08-26 17:33:54 +02001002
Simon Glass68941862014-10-23 18:58:56 -06001003int fdtdec_decode_memory_region(const void *blob, int config_node,
1004 const char *mem_type, const char *suffix,
1005 fdt_addr_t *basep, fdt_size_t *sizep)
1006{
1007 char prop_name[50];
1008 const char *mem;
1009 fdt_size_t size, offset_size;
1010 fdt_addr_t base, offset;
1011 int node;
1012
1013 if (config_node == -1) {
1014 config_node = fdt_path_offset(blob, "/config");
1015 if (config_node < 0) {
1016 debug("%s: Cannot find /config node\n", __func__);
1017 return -ENOENT;
1018 }
1019 }
1020 if (!suffix)
1021 suffix = "";
1022
1023 snprintf(prop_name, sizeof(prop_name), "%s-memory%s", mem_type,
1024 suffix);
1025 mem = fdt_getprop(blob, config_node, prop_name, NULL);
1026 if (!mem) {
1027 debug("%s: No memory type for '%s', using /memory\n", __func__,
1028 prop_name);
1029 mem = "/memory";
1030 }
1031
1032 node = fdt_path_offset(blob, mem);
1033 if (node < 0) {
1034 debug("%s: Failed to find node '%s': %s\n", __func__, mem,
1035 fdt_strerror(node));
1036 return -ENOENT;
1037 }
1038
1039 /*
1040 * Not strictly correct - the memory may have multiple banks. We just
1041 * use the first
1042 */
1043 if (fdtdec_decode_region(blob, node, "reg", &base, &size)) {
1044 debug("%s: Failed to decode memory region %s\n", __func__,
1045 mem);
1046 return -EINVAL;
1047 }
1048
1049 snprintf(prop_name, sizeof(prop_name), "%s-offset%s", mem_type,
1050 suffix);
1051 if (fdtdec_decode_region(blob, config_node, prop_name, &offset,
1052 &offset_size)) {
1053 debug("%s: Failed to decode memory region '%s'\n", __func__,
1054 prop_name);
1055 return -EINVAL;
1056 }
1057
1058 *basep = base + offset;
1059 *sizep = offset_size;
1060
1061 return 0;
1062}
Simon Glass26b78b22015-02-27 22:06:34 -07001063
Simon Glassb24e8642015-04-14 21:03:21 -06001064static int decode_timing_property(const void *blob, int node, const char *name,
1065 struct timing_entry *result)
1066{
1067 int length, ret = 0;
1068 const u32 *prop;
1069
1070 prop = fdt_getprop(blob, node, name, &length);
1071 if (!prop) {
1072 debug("%s: could not find property %s\n",
1073 fdt_get_name(blob, node, NULL), name);
1074 return length;
1075 }
1076
1077 if (length == sizeof(u32)) {
1078 result->typ = fdtdec_get_int(blob, node, name, 0);
1079 result->min = result->typ;
1080 result->max = result->typ;
1081 } else {
1082 ret = fdtdec_get_int_array(blob, node, name, &result->min, 3);
1083 }
1084
1085 return ret;
1086}
1087
1088int fdtdec_decode_display_timing(const void *blob, int parent, int index,
1089 struct display_timing *dt)
1090{
1091 int i, node, timings_node;
1092 u32 val = 0;
1093 int ret = 0;
1094
1095 timings_node = fdt_subnode_offset(blob, parent, "display-timings");
1096 if (timings_node < 0)
1097 return timings_node;
1098
1099 for (i = 0, node = fdt_first_subnode(blob, timings_node);
1100 node > 0 && i != index;
1101 node = fdt_next_subnode(blob, node))
1102 i++;
1103
1104 if (node < 0)
1105 return node;
1106
1107 memset(dt, 0, sizeof(*dt));
1108
1109 ret |= decode_timing_property(blob, node, "hback-porch",
1110 &dt->hback_porch);
1111 ret |= decode_timing_property(blob, node, "hfront-porch",
1112 &dt->hfront_porch);
1113 ret |= decode_timing_property(blob, node, "hactive", &dt->hactive);
1114 ret |= decode_timing_property(blob, node, "hsync-len", &dt->hsync_len);
1115 ret |= decode_timing_property(blob, node, "vback-porch",
1116 &dt->vback_porch);
1117 ret |= decode_timing_property(blob, node, "vfront-porch",
1118 &dt->vfront_porch);
1119 ret |= decode_timing_property(blob, node, "vactive", &dt->vactive);
1120 ret |= decode_timing_property(blob, node, "vsync-len", &dt->vsync_len);
1121 ret |= decode_timing_property(blob, node, "clock-frequency",
1122 &dt->pixelclock);
1123
1124 dt->flags = 0;
1125 val = fdtdec_get_int(blob, node, "vsync-active", -1);
1126 if (val != -1) {
1127 dt->flags |= val ? DISPLAY_FLAGS_VSYNC_HIGH :
1128 DISPLAY_FLAGS_VSYNC_LOW;
1129 }
1130 val = fdtdec_get_int(blob, node, "hsync-active", -1);
1131 if (val != -1) {
1132 dt->flags |= val ? DISPLAY_FLAGS_HSYNC_HIGH :
1133 DISPLAY_FLAGS_HSYNC_LOW;
1134 }
1135 val = fdtdec_get_int(blob, node, "de-active", -1);
1136 if (val != -1) {
1137 dt->flags |= val ? DISPLAY_FLAGS_DE_HIGH :
1138 DISPLAY_FLAGS_DE_LOW;
1139 }
1140 val = fdtdec_get_int(blob, node, "pixelclk-active", -1);
1141 if (val != -1) {
1142 dt->flags |= val ? DISPLAY_FLAGS_PIXDATA_POSEDGE :
1143 DISPLAY_FLAGS_PIXDATA_NEGEDGE;
1144 }
1145
1146 if (fdtdec_get_bool(blob, node, "interlaced"))
1147 dt->flags |= DISPLAY_FLAGS_INTERLACED;
1148 if (fdtdec_get_bool(blob, node, "doublescan"))
1149 dt->flags |= DISPLAY_FLAGS_DOUBLESCAN;
1150 if (fdtdec_get_bool(blob, node, "doubleclk"))
1151 dt->flags |= DISPLAY_FLAGS_DOUBLECLK;
1152
Simon Glass6eb90e12016-05-05 07:28:21 -06001153 return ret;
Simon Glassb24e8642015-04-14 21:03:21 -06001154}
1155
Nathan Rossiba97b722016-12-19 00:03:34 +10001156int fdtdec_setup_memory_size(void)
1157{
1158 int ret, mem;
1159 struct fdt_resource res;
1160
1161 mem = fdt_path_offset(gd->fdt_blob, "/memory");
1162 if (mem < 0) {
1163 debug("%s: Missing /memory node\n", __func__);
1164 return -EINVAL;
1165 }
1166
1167 ret = fdt_get_resource(gd->fdt_blob, mem, "reg", 0, &res);
1168 if (ret != 0) {
1169 debug("%s: Unable to decode first memory bank\n", __func__);
1170 return -EINVAL;
1171 }
1172
1173 gd->ram_size = (phys_size_t)(res.end - res.start + 1);
Simon Glass640b78f2017-05-27 07:38:13 -06001174 debug("%s: Initial DRAM size %llx\n", __func__,
1175 (unsigned long long)gd->ram_size);
Nathan Rossiba97b722016-12-19 00:03:34 +10001176
1177 return 0;
1178}
1179
1180#if defined(CONFIG_NR_DRAM_BANKS)
1181int fdtdec_setup_memory_banksize(void)
1182{
Marek Vasut7f0293a2017-11-27 05:32:42 +01001183 int bank, ret, mem, reg = 0;
Nathan Rossiba97b722016-12-19 00:03:34 +10001184 struct fdt_resource res;
1185
Marek Vasut7f0293a2017-11-27 05:32:42 +01001186 mem = fdt_node_offset_by_prop_value(gd->fdt_blob, -1, "device_type",
1187 "memory", 7);
Nathan Rossiba97b722016-12-19 00:03:34 +10001188 if (mem < 0) {
1189 debug("%s: Missing /memory node\n", __func__);
1190 return -EINVAL;
1191 }
1192
1193 for (bank = 0; bank < CONFIG_NR_DRAM_BANKS; bank++) {
Marek Vasut7f0293a2017-11-27 05:32:42 +01001194 ret = fdt_get_resource(gd->fdt_blob, mem, "reg", reg++, &res);
1195 if (ret == -FDT_ERR_NOTFOUND) {
1196 reg = 0;
1197 mem = fdt_node_offset_by_prop_value(gd->fdt_blob, mem,
1198 "device_type",
1199 "memory", 7);
1200 if (mem == -FDT_ERR_NOTFOUND)
1201 break;
1202
1203 ret = fdt_get_resource(gd->fdt_blob, mem, "reg", reg++, &res);
1204 if (ret == -FDT_ERR_NOTFOUND)
1205 break;
1206 }
1207 if (ret != 0) {
Nathan Rossiba97b722016-12-19 00:03:34 +10001208 return -EINVAL;
Marek Vasut7f0293a2017-11-27 05:32:42 +01001209 }
Nathan Rossiba97b722016-12-19 00:03:34 +10001210
1211 gd->bd->bi_dram[bank].start = (phys_addr_t)res.start;
1212 gd->bd->bi_dram[bank].size =
1213 (phys_size_t)(res.end - res.start + 1);
1214
1215 debug("%s: DRAM Bank #%d: start = 0x%llx, size = 0x%llx\n",
1216 __func__, bank,
1217 (unsigned long long)gd->bd->bi_dram[bank].start,
1218 (unsigned long long)gd->bd->bi_dram[bank].size);
1219 }
1220
1221 return 0;
1222}
1223#endif
1224
Jean-Jacques Hiblota2fee162017-09-15 12:57:32 +02001225#if CONFIG_IS_ENABLED(MULTI_DTB_FIT)
1226# if CONFIG_IS_ENABLED(MULTI_DTB_FIT_GZIP) ||\
1227 CONFIG_IS_ENABLED(MULTI_DTB_FIT_LZO)
1228static int uncompress_blob(const void *src, ulong sz_src, void **dstp)
1229{
1230 size_t sz_out = CONFIG_SPL_MULTI_DTB_FIT_UNCOMPRESS_SZ;
1231 ulong sz_in = sz_src;
1232 void *dst;
1233 int rc;
1234
1235 if (CONFIG_IS_ENABLED(GZIP))
1236 if (gzip_parse_header(src, sz_in) < 0)
1237 return -1;
1238 if (CONFIG_IS_ENABLED(LZO))
1239 if (!lzop_is_valid_header(src))
1240 return -EBADMSG;
1241
1242 if (CONFIG_IS_ENABLED(MULTI_DTB_FIT_DYN_ALLOC)) {
1243 dst = malloc(sz_out);
1244 if (!dst) {
1245 puts("uncompress_blob: Unable to allocate memory\n");
1246 return -ENOMEM;
1247 }
1248 } else {
1249# if CONFIG_IS_ENABLED(MULTI_DTB_FIT_USER_DEFINED_AREA)
1250 dst = (void *)CONFIG_VAL(MULTI_DTB_FIT_USER_DEF_ADDR);
1251# else
1252 return -ENOTSUPP;
1253# endif
1254 }
1255
1256 if (CONFIG_IS_ENABLED(GZIP))
1257 rc = gunzip(dst, sz_out, (u8 *)src, &sz_in);
1258 else if (CONFIG_IS_ENABLED(LZO))
1259 rc = lzop_decompress(src, sz_in, dst, &sz_out);
1260
1261 if (rc < 0) {
1262 /* not a valid compressed blob */
1263 puts("uncompress_blob: Unable to uncompress\n");
1264 if (CONFIG_IS_ENABLED(MULTI_DTB_FIT_DYN_ALLOC))
1265 free(dst);
1266 return -EBADMSG;
1267 }
1268 *dstp = dst;
1269 return 0;
1270}
1271# else
1272static int uncompress_blob(const void *src, ulong sz_src, void **dstp)
1273{
1274 return -ENOTSUPP;
1275}
1276# endif
1277#endif
1278
Rob Clark974dcac2018-01-10 11:34:37 +01001279#if defined(CONFIG_OF_BOARD) || defined(CONFIG_OF_SEPARATE)
1280/*
1281 * For CONFIG_OF_SEPARATE, the board may optionally implement this to
1282 * provide and/or fixup the fdt.
1283 */
1284__weak void *board_fdt_blob_setup(void)
1285{
1286 void *fdt_blob = NULL;
1287#ifdef CONFIG_SPL_BUILD
1288 /* FDT is at end of BSS unless it is in a different memory region */
1289 if (IS_ENABLED(CONFIG_SPL_SEPARATE_BSS))
1290 fdt_blob = (ulong *)&_image_binary_end;
1291 else
1292 fdt_blob = (ulong *)&__bss_end;
1293#else
1294 /* FDT is at end of image */
1295 fdt_blob = (ulong *)&_end;
1296#endif
1297 return fdt_blob;
1298}
1299#endif
1300
Simon Glassa0877672015-02-27 22:06:35 -07001301int fdtdec_setup(void)
Simon Glass26b78b22015-02-27 22:06:34 -07001302{
Masahiro Yamada366b24f2015-08-12 07:31:55 +09001303#if CONFIG_IS_ENABLED(OF_CONTROL)
Jean-Jacques Hiblota2fee162017-09-15 12:57:32 +02001304# if CONFIG_IS_ENABLED(MULTI_DTB_FIT)
1305 void *fdt_blob;
1306# endif
Simon Glass26b78b22015-02-27 22:06:34 -07001307# ifdef CONFIG_OF_EMBED
1308 /* Get a pointer to the FDT */
Goldschmidt Simon5e7a1c22017-11-21 12:29:56 +00001309# ifdef CONFIG_SPL_BUILD
1310 gd->fdt_blob = __dtb_dt_spl_begin;
1311# else
Simon Glass26b78b22015-02-27 22:06:34 -07001312 gd->fdt_blob = __dtb_dt_begin;
Goldschmidt Simon5e7a1c22017-11-21 12:29:56 +00001313# endif
Rob Clark974dcac2018-01-10 11:34:37 +01001314# elif defined(CONFIG_OF_BOARD) || defined(CONFIG_OF_SEPARATE)
Alex Deymo5b661ec2017-04-02 01:25:20 -07001315 /* Allow the board to override the fdt address. */
1316 gd->fdt_blob = board_fdt_blob_setup();
Simon Glass26b78b22015-02-27 22:06:34 -07001317# elif defined(CONFIG_OF_HOSTFILE)
1318 if (sandbox_read_fdt_from_file()) {
1319 puts("Failed to read control FDT\n");
1320 return -1;
1321 }
1322# endif
1323# ifndef CONFIG_SPL_BUILD
1324 /* Allow the early environment to override the fdt address */
Simon Glass22c34c22017-08-03 12:22:13 -06001325 gd->fdt_blob = (void *)env_get_ulong("fdtcontroladdr", 16,
Simon Glass26b78b22015-02-27 22:06:34 -07001326 (uintptr_t)gd->fdt_blob);
1327# endif
Jean-Jacques Hiblota2fee162017-09-15 12:57:32 +02001328
1329# if CONFIG_IS_ENABLED(MULTI_DTB_FIT)
1330 /*
1331 * Try and uncompress the blob.
1332 * Unfortunately there is no way to know how big the input blob really
1333 * is. So let us set the maximum input size arbitrarily high. 16MB
1334 * ought to be more than enough for packed DTBs.
1335 */
1336 if (uncompress_blob(gd->fdt_blob, 0x1000000, &fdt_blob) == 0)
1337 gd->fdt_blob = fdt_blob;
1338
1339 /*
1340 * Check if blob is a FIT images containings DTBs.
1341 * If so, pick the most relevant
1342 */
1343 fdt_blob = locate_dtb_in_fit(gd->fdt_blob);
1344 if (fdt_blob)
1345 gd->fdt_blob = fdt_blob;
1346# endif
Heiko Schocherd7b42322014-03-03 12:19:30 +01001347#endif
Jean-Jacques Hiblota2fee162017-09-15 12:57:32 +02001348
Simon Glassa0877672015-02-27 22:06:35 -07001349 return fdtdec_prepare_fdt();
Simon Glass26b78b22015-02-27 22:06:34 -07001350}
1351
1352#endif /* !USE_HOSTCC */