blob: 9877849f99b490607d8ffc0d33048290f19a1058 [file] [log] [blame]
Simon Glassb5220bc2011-10-24 19:15:32 +00001/*
2 * Copyright (c) 2011 The Chromium OS Authors.
Wolfgang Denk1a459662013-07-08 09:37:19 +02003 * SPDX-License-Identifier: GPL-2.0+
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>
Simon Glass5c33c9f2014-07-23 06:55:09 -06008#include <errno.h>
Simon Glassb5220bc2011-10-24 19:15:32 +00009#include <serial.h>
10#include <libfdt.h>
11#include <fdtdec.h>
Simon Glassb45122f2015-02-27 22:06:34 -070012#include <asm/sections.h>
Simon Glass5c33c9f2014-07-23 06:55:09 -060013#include <linux/ctype.h>
Simon Glassb5220bc2011-10-24 19:15:32 +000014
15DECLARE_GLOBAL_DATA_PTR;
16
17/*
18 * Here are the type we know about. One day we might allow drivers to
19 * register. For now we just put them here. The COMPAT macro allows us to
20 * turn this into a sparse list later, and keeps the ID with the name.
21 */
22#define COMPAT(id, name) name
23static const char * const compat_names[COMPAT_COUNT] = {
Simon Glassf88fe2d2012-02-27 10:52:34 +000024 COMPAT(UNKNOWN, "<none>"),
Jimmy Zhang0e35ad02012-04-02 13:18:52 +000025 COMPAT(NVIDIA_TEGRA20_EMC, "nvidia,tegra20-emc"),
26 COMPAT(NVIDIA_TEGRA20_EMC_TABLE, "nvidia,tegra20-emc-table"),
Rakesh Iyer6642a682012-04-17 09:01:35 +000027 COMPAT(NVIDIA_TEGRA20_KBC, "nvidia,tegra20-kbc"),
Jim Lin312693c2012-07-29 20:53:29 +000028 COMPAT(NVIDIA_TEGRA20_NAND, "nvidia,tegra20-nand"),
Simon Glasse1ae0d12012-10-17 13:24:49 +000029 COMPAT(NVIDIA_TEGRA20_PWM, "nvidia,tegra20-pwm"),
Simon Glass00f37322015-04-14 21:03:40 -060030 COMPAT(NVIDIA_TEGRA124_DC, "nvidia,tegra124-dc"),
31 COMPAT(NVIDIA_TEGRA124_SOR, "nvidia,tegra124-sor"),
32 COMPAT(NVIDIA_TEGRA124_PMC, "nvidia,tegra124-pmc"),
Wei Ni87540de2012-10-17 13:24:50 +000033 COMPAT(NVIDIA_TEGRA20_DC, "nvidia,tegra20-dc"),
Stephen Warrena73ca472014-01-24 12:46:06 -070034 COMPAT(NVIDIA_TEGRA124_SDMMC, "nvidia,tegra124-sdhci"),
Tom Warrenf4e4e0b2013-03-04 14:07:18 -070035 COMPAT(NVIDIA_TEGRA30_SDMMC, "nvidia,tegra30-sdhci"),
Tom Warrenc9aa8312013-02-21 12:31:30 +000036 COMPAT(NVIDIA_TEGRA20_SDMMC, "nvidia,tegra20-sdhci"),
Thierry Redingf3158282014-12-09 22:25:12 -070037 COMPAT(NVIDIA_TEGRA124_PCIE, "nvidia,tegra124-pcie"),
38 COMPAT(NVIDIA_TEGRA30_PCIE, "nvidia,tegra30-pcie"),
39 COMPAT(NVIDIA_TEGRA20_PCIE, "nvidia,tegra20-pcie"),
Thierry Reding79c7a902014-12-09 22:25:09 -070040 COMPAT(NVIDIA_TEGRA124_XUSB_PADCTL, "nvidia,tegra124-xusb-padctl"),
Hatim RVcc9fe332012-12-11 00:52:46 +000041 COMPAT(SMSC_LAN9215, "smsc,lan9215"),
42 COMPAT(SAMSUNG_EXYNOS5_SROMC, "samsung,exynos-sromc"),
Rajeshwari Shindec34253d2012-12-26 20:03:10 +000043 COMPAT(SAMSUNG_S3C2440_I2C, "samsung,s3c2440-i2c"),
Rajeshwari Shinde72dbff12012-12-26 20:03:16 +000044 COMPAT(SAMSUNG_EXYNOS5_SOUND, "samsung,exynos-sound"),
45 COMPAT(WOLFSON_WM8994_CODEC, "wolfson,wm8994-codec"),
Hung-ying Tyan713cb682013-05-15 18:27:32 +080046 COMPAT(GOOGLE_CROS_EC_KEYB, "google,cros-ec-keyb"),
Rajeshwari Shinde6abd1622013-01-07 23:35:05 +000047 COMPAT(SAMSUNG_EXYNOS_USB_PHY, "samsung,exynos-usb-phy"),
Vivek Gautam108b85b2013-09-14 14:02:48 +053048 COMPAT(SAMSUNG_EXYNOS5_USB3_PHY, "samsung,exynos5250-usb3-phy"),
Akshay Saraswat618766c2013-02-25 01:13:01 +000049 COMPAT(SAMSUNG_EXYNOS_TMU, "samsung,exynos-tmu"),
Ajay Kumard7377b52013-02-21 23:53:00 +000050 COMPAT(SAMSUNG_EXYNOS_FIMD, "samsung,exynos-fimd"),
Piotr Wilczekde461c52014-03-07 14:59:39 +010051 COMPAT(SAMSUNG_EXYNOS_MIPI_DSI, "samsung,exynos-mipi-dsi"),
Ajay Kumar1e4706a2013-02-21 23:53:05 +000052 COMPAT(SAMSUNG_EXYNOS5_DP, "samsung,exynos5-dp"),
Jaehoon Chung7d3ca0f2014-05-16 13:59:51 +090053 COMPAT(SAMSUNG_EXYNOS_DWMMC, "samsung,exynos-dwmmc"),
Piotr Wilczek3577fe82014-03-07 14:59:41 +010054 COMPAT(SAMSUNG_EXYNOS_MMC, "samsung,exynos-mmc"),
Rajeshwari Shindeee1e3c22013-06-24 16:47:20 +053055 COMPAT(SAMSUNG_EXYNOS_SERIAL, "samsung,exynos4210-uart"),
Przemyslaw Marczakf37df0f2015-04-20 20:07:45 +020056 COMPAT(MAXIM_MAX77686_PMIC, "maxim,max77686"),
Simon Glassbb8215f2013-03-11 06:08:08 +000057 COMPAT(GENERIC_SPI_FLASH, "spi-flash"),
Rajeshwari Shinde7772bb72013-02-14 19:46:15 +000058 COMPAT(MAXIM_98095_CODEC, "maxim,max98095-codec"),
Rong Changf6267992013-04-12 10:44:57 +000059 COMPAT(INFINEON_SLB9635_TPM, "infineon,slb9635-tpm"),
Simon Glassf0e57b12015-05-04 11:31:00 -060060 COMPAT(INFINEON_SLB9645_TPM, "infineon,slb9645tt"),
naveen krishna chatradhiecbd7e12013-04-29 15:58:52 -070061 COMPAT(SAMSUNG_EXYNOS5_I2C, "samsung,exynos5-hsi2c"),
Simon Glass7d95f2a2014-02-27 13:26:19 -070062 COMPAT(SANDBOX_LCD_SDL, "sandbox,lcd-sdl"),
Tom Wai-Hong Tamac1058f2014-05-20 06:01:36 -060063 COMPAT(TI_TPS65090, "ti,tps65090"),
Simon Glassa9cf6da2014-05-20 06:01:42 -060064 COMPAT(COMPAT_NXP_PTN3460, "nxp,ptn3460"),
Ajay Kumar45c480c2014-09-05 16:53:33 +053065 COMPAT(SAMSUNG_EXYNOS_SYSMMU, "samsung,sysmmu-v3.3"),
Vadim Bendebury9e8f6642014-09-05 16:53:34 +053066 COMPAT(PARADE_PS8625, "parade,ps8625"),
Simon Glass77f9b1f2014-11-12 22:42:21 -070067 COMPAT(INTEL_MICROCODE, "intel,microcode"),
Simon Glass65dd74a2014-11-12 22:42:28 -070068 COMPAT(MEMORY_SPD, "memory-spd"),
Simon Glass3ac83932014-11-14 18:18:38 -070069 COMPAT(INTEL_PANTHERPOINT_AHCI, "intel,pantherpoint-ahci"),
Simon Glassbb80be32014-11-24 21:18:16 -070070 COMPAT(INTEL_MODEL_206AX, "intel,model-206ax"),
Simon Glasseffcf062014-11-14 20:56:36 -070071 COMPAT(INTEL_GMA, "intel,gma"),
Thierry Reding6173c452014-12-09 22:25:05 -070072 COMPAT(AMS_AS3722, "ams,as3722"),
Simon Glass5da38082015-01-19 22:16:06 -070073 COMPAT(INTEL_ICH_SPI, "intel,ich-spi"),
Bin Mengc89ada02015-02-05 23:42:26 +080074 COMPAT(INTEL_QRK_MRC, "intel,quark-mrc"),
Gabriel Huau5318f182015-05-25 22:27:37 -070075 COMPAT(INTEL_X86_PINCTRL, "intel,x86-pinctrl"),
Masahiro Yamada6462cde2015-03-11 15:54:46 +090076 COMPAT(SOCIONEXT_XHCI, "socionext,uniphier-xhci"),
Simon Glass90b16d12015-03-26 09:29:29 -060077 COMPAT(COMPAT_INTEL_PCH, "intel,bd82x6x"),
Bin Meng9c7dea62015-05-25 22:35:04 +080078 COMPAT(COMPAT_INTEL_IRQ_ROUTER, "intel,irq-router"),
Simon Glassb5220bc2011-10-24 19:15:32 +000079};
80
Simon Glassa53f4a22012-01-17 08:20:50 +000081const char *fdtdec_get_compatible(enum fdt_compat_id id)
82{
83 /* We allow reading of the 'unknown' ID for testing purposes */
84 assert(id >= 0 && id < COMPAT_COUNT);
85 return compat_names[id];
86}
87
Simon Glass4397a2a2013-03-19 04:58:51 +000088fdt_addr_t fdtdec_get_addr_size(const void *blob, int node,
89 const char *prop_name, fdt_size_t *sizep)
Simon Glassb5220bc2011-10-24 19:15:32 +000090{
91 const fdt_addr_t *cell;
92 int len;
93
Simon Glass1cb23232012-07-12 05:25:01 +000094 debug("%s: %s: ", __func__, prop_name);
Simon Glassb5220bc2011-10-24 19:15:32 +000095 cell = fdt_getprop(blob, node, prop_name, &len);
Simon Glass4397a2a2013-03-19 04:58:51 +000096 if (cell && ((!sizep && len == sizeof(fdt_addr_t)) ||
97 len == sizeof(fdt_addr_t) * 2)) {
Simon Glass1cb23232012-07-12 05:25:01 +000098 fdt_addr_t addr = fdt_addr_to_cpu(*cell);
Simon Glass4397a2a2013-03-19 04:58:51 +000099 if (sizep) {
100 const fdt_size_t *size;
Simon Glass1cb23232012-07-12 05:25:01 +0000101
Simon Glass4397a2a2013-03-19 04:58:51 +0000102 size = (fdt_size_t *)((char *)cell +
103 sizeof(fdt_addr_t));
104 *sizep = fdt_size_to_cpu(*size);
Simon Glass370b6c52013-11-10 10:26:54 -0700105 debug("addr=%08lx, size=%08x\n",
106 (ulong)addr, *sizep);
Simon Glass4397a2a2013-03-19 04:58:51 +0000107 } else {
Simon Glass370b6c52013-11-10 10:26:54 -0700108 debug("%08lx\n", (ulong)addr);
Simon Glass4397a2a2013-03-19 04:58:51 +0000109 }
Simon Glass1cb23232012-07-12 05:25:01 +0000110 return addr;
111 }
112 debug("(not found)\n");
Simon Glassb5220bc2011-10-24 19:15:32 +0000113 return FDT_ADDR_T_NONE;
114}
115
Simon Glass4397a2a2013-03-19 04:58:51 +0000116fdt_addr_t fdtdec_get_addr(const void *blob, int node,
117 const char *prop_name)
118{
119 return fdtdec_get_addr_size(blob, node, prop_name, NULL);
120}
121
Bin Menga62e84d2014-12-31 16:05:11 +0800122#ifdef CONFIG_PCI
123int fdtdec_get_pci_addr(const void *blob, int node, enum fdt_pci_space type,
124 const char *prop_name, struct fdt_pci_addr *addr)
125{
126 const u32 *cell;
127 int len;
128 int ret = -ENOENT;
129
130 debug("%s: %s: ", __func__, prop_name);
131
132 /*
133 * If we follow the pci bus bindings strictly, we should check
134 * the value of the node's parent node's #address-cells and
135 * #size-cells. They need to be 3 and 2 accordingly. However,
136 * for simplicity we skip the check here.
137 */
138 cell = fdt_getprop(blob, node, prop_name, &len);
139 if (!cell)
140 goto fail;
141
142 if ((len % FDT_PCI_REG_SIZE) == 0) {
143 int num = len / FDT_PCI_REG_SIZE;
144 int i;
145
146 for (i = 0; i < num; i++) {
147 debug("pci address #%d: %08lx %08lx %08lx\n", i,
148 (ulong)fdt_addr_to_cpu(cell[0]),
149 (ulong)fdt_addr_to_cpu(cell[1]),
150 (ulong)fdt_addr_to_cpu(cell[2]));
151 if ((fdt_addr_to_cpu(*cell) & type) == type) {
152 addr->phys_hi = fdt_addr_to_cpu(cell[0]);
153 addr->phys_mid = fdt_addr_to_cpu(cell[1]);
154 addr->phys_lo = fdt_addr_to_cpu(cell[2]);
155 break;
156 } else {
157 cell += (FDT_PCI_ADDR_CELLS +
158 FDT_PCI_SIZE_CELLS);
159 }
160 }
161
Simon Glass106cce92015-03-05 12:25:19 -0700162 if (i == num) {
163 ret = -ENXIO;
Bin Menga62e84d2014-12-31 16:05:11 +0800164 goto fail;
Simon Glass106cce92015-03-05 12:25:19 -0700165 }
Bin Menga62e84d2014-12-31 16:05:11 +0800166
167 return 0;
168 } else {
169 ret = -EINVAL;
170 }
171
172fail:
173 debug("(not found)\n");
174 return ret;
175}
176
177int fdtdec_get_pci_vendev(const void *blob, int node, u16 *vendor, u16 *device)
178{
179 const char *list, *end;
180 int len;
181
182 list = fdt_getprop(blob, node, "compatible", &len);
183 if (!list)
184 return -ENOENT;
185
186 end = list + len;
187 while (list < end) {
188 char *s;
189
190 len = strlen(list);
191 if (len >= strlen("pciVVVV,DDDD")) {
192 s = strstr(list, "pci");
193
194 /*
195 * check if the string is something like pciVVVV,DDDD.RR
196 * or just pciVVVV,DDDD
197 */
198 if (s && s[7] == ',' &&
199 (s[12] == '.' || s[12] == 0)) {
200 s += 3;
201 *vendor = simple_strtol(s, NULL, 16);
202
203 s += 5;
204 *device = simple_strtol(s, NULL, 16);
205
206 return 0;
207 }
208 } else {
209 list += (len + 1);
210 }
211 }
212
213 return -ENOENT;
214}
215
216int fdtdec_get_pci_bdf(const void *blob, int node,
217 struct fdt_pci_addr *addr, pci_dev_t *bdf)
218{
219 u16 dt_vendor, dt_device, vendor, device;
220 int ret;
221
222 /* get vendor id & device id from the compatible string */
223 ret = fdtdec_get_pci_vendev(blob, node, &dt_vendor, &dt_device);
224 if (ret)
225 return ret;
226
227 /* extract the bdf from fdt_pci_addr */
228 *bdf = addr->phys_hi & 0xffff00;
229
230 /* read vendor id & device id based on bdf */
231 pci_read_config_word(*bdf, PCI_VENDOR_ID, &vendor);
232 pci_read_config_word(*bdf, PCI_DEVICE_ID, &device);
233
234 /*
235 * Note there are two places in the device tree to fully describe
236 * a pci device: one is via compatible string with a format of
237 * "pciVVVV,DDDD" and the other one is the bdf numbers encoded in
238 * the device node's reg address property. We read the vendor id
239 * and device id based on bdf and compare the values with the
240 * "VVVV,DDDD". If they are the same, then we are good to use bdf
241 * to read device's bar. But if they are different, we have to rely
242 * on the vendor id and device id extracted from the compatible
243 * string and locate the real bdf by pci_find_device(). This is
244 * because normally we may only know device's device number and
245 * function number when writing device tree. The bus number is
246 * dynamically assigned during the pci enumeration process.
247 */
248 if ((dt_vendor != vendor) || (dt_device != device)) {
249 *bdf = pci_find_device(dt_vendor, dt_device, 0);
250 if (*bdf == -1)
251 return -ENODEV;
252 }
253
254 return 0;
255}
256
257int fdtdec_get_pci_bar32(const void *blob, int node,
258 struct fdt_pci_addr *addr, u32 *bar)
259{
260 pci_dev_t bdf;
261 int barnum;
262 int ret;
263
264 /* get pci devices's bdf */
265 ret = fdtdec_get_pci_bdf(blob, node, addr, &bdf);
266 if (ret)
267 return ret;
268
269 /* extract the bar number from fdt_pci_addr */
270 barnum = addr->phys_hi & 0xff;
271 if ((barnum < PCI_BASE_ADDRESS_0) || (barnum > PCI_CARDBUS_CIS))
272 return -EINVAL;
273
274 barnum = (barnum - PCI_BASE_ADDRESS_0) / 4;
275 *bar = pci_read_bar32(pci_bus_to_hose(PCI_BUS(bdf)), bdf, barnum);
276
277 return 0;
278}
279#endif
280
Che-Liang Chiouaadef0a2012-10-25 16:31:05 +0000281uint64_t fdtdec_get_uint64(const void *blob, int node, const char *prop_name,
282 uint64_t default_val)
283{
284 const uint64_t *cell64;
285 int length;
286
287 cell64 = fdt_getprop(blob, node, prop_name, &length);
288 if (!cell64 || length < sizeof(*cell64))
289 return default_val;
290
291 return fdt64_to_cpu(*cell64);
292}
293
Simon Glassf88fe2d2012-02-27 10:52:34 +0000294int fdtdec_get_is_enabled(const void *blob, int node)
Simon Glassb5220bc2011-10-24 19:15:32 +0000295{
296 const char *cell;
297
Simon Glassf88fe2d2012-02-27 10:52:34 +0000298 /*
299 * It should say "okay", so only allow that. Some fdts use "ok" but
300 * this is a bug. Please fix your device tree source file. See here
301 * for discussion:
302 *
303 * http://www.mail-archive.com/u-boot@lists.denx.de/msg71598.html
304 */
Simon Glassb5220bc2011-10-24 19:15:32 +0000305 cell = fdt_getprop(blob, node, "status", NULL);
306 if (cell)
Simon Glassf88fe2d2012-02-27 10:52:34 +0000307 return 0 == strcmp(cell, "okay");
308 return 1;
Simon Glassb5220bc2011-10-24 19:15:32 +0000309}
310
Gerald Van Baren7cde3972012-11-12 23:13:54 -0500311enum fdt_compat_id fdtdec_lookup(const void *blob, int node)
Simon Glassb5220bc2011-10-24 19:15:32 +0000312{
313 enum fdt_compat_id id;
314
315 /* Search our drivers */
316 for (id = COMPAT_UNKNOWN; id < COMPAT_COUNT; id++)
317 if (0 == fdt_node_check_compatible(blob, node,
318 compat_names[id]))
319 return id;
320 return COMPAT_UNKNOWN;
321}
322
323int fdtdec_next_compatible(const void *blob, int node,
324 enum fdt_compat_id id)
325{
326 return fdt_node_offset_by_compatible(blob, node, compat_names[id]);
327}
328
Simon Glass3ddecfc2012-04-02 13:18:42 +0000329int fdtdec_next_compatible_subnode(const void *blob, int node,
330 enum fdt_compat_id id, int *depthp)
331{
332 do {
333 node = fdt_next_node(blob, node, depthp);
334 } while (*depthp > 1);
335
336 /* If this is a direct subnode, and compatible, return it */
337 if (*depthp == 1 && 0 == fdt_node_check_compatible(
338 blob, node, compat_names[id]))
339 return node;
340
341 return -FDT_ERR_NOTFOUND;
342}
343
Simon Glassb5220bc2011-10-24 19:15:32 +0000344int fdtdec_next_alias(const void *blob, const char *name,
345 enum fdt_compat_id id, int *upto)
346{
347#define MAX_STR_LEN 20
348 char str[MAX_STR_LEN + 20];
349 int node, err;
350
351 /* snprintf() is not available */
352 assert(strlen(name) < MAX_STR_LEN);
353 sprintf(str, "%.*s%d", MAX_STR_LEN, name, *upto);
Simon Glass00878472012-10-31 14:02:42 +0000354 node = fdt_path_offset(blob, str);
Simon Glassb5220bc2011-10-24 19:15:32 +0000355 if (node < 0)
356 return node;
357 err = fdt_node_check_compatible(blob, node, compat_names[id]);
358 if (err < 0)
359 return err;
Simon Glassf88fe2d2012-02-27 10:52:34 +0000360 if (err)
361 return -FDT_ERR_NOTFOUND;
362 (*upto)++;
363 return node;
Simon Glassb5220bc2011-10-24 19:15:32 +0000364}
365
Simon Glassa53f4a22012-01-17 08:20:50 +0000366int fdtdec_find_aliases_for_id(const void *blob, const char *name,
367 enum fdt_compat_id id, int *node_list, int maxcount)
368{
Simon Glassc6782272012-02-03 15:13:53 +0000369 memset(node_list, '\0', sizeof(*node_list) * maxcount);
370
371 return fdtdec_add_aliases_for_id(blob, name, id, node_list, maxcount);
372}
373
374/* TODO: Can we tighten this code up a little? */
375int fdtdec_add_aliases_for_id(const void *blob, const char *name,
376 enum fdt_compat_id id, int *node_list, int maxcount)
377{
Simon Glassa53f4a22012-01-17 08:20:50 +0000378 int name_len = strlen(name);
379 int nodes[maxcount];
380 int num_found = 0;
381 int offset, node;
382 int alias_node;
383 int count;
384 int i, j;
385
386 /* find the alias node if present */
387 alias_node = fdt_path_offset(blob, "/aliases");
388
389 /*
390 * start with nothing, and we can assume that the root node can't
391 * match
392 */
393 memset(nodes, '\0', sizeof(nodes));
394
395 /* First find all the compatible nodes */
396 for (node = count = 0; node >= 0 && count < maxcount;) {
397 node = fdtdec_next_compatible(blob, node, id);
398 if (node >= 0)
399 nodes[count++] = node;
400 }
401 if (node >= 0)
402 debug("%s: warning: maxcount exceeded with alias '%s'\n",
403 __func__, name);
404
405 /* Now find all the aliases */
Simon Glassa53f4a22012-01-17 08:20:50 +0000406 for (offset = fdt_first_property_offset(blob, alias_node);
407 offset > 0;
408 offset = fdt_next_property_offset(blob, offset)) {
409 const struct fdt_property *prop;
410 const char *path;
411 int number;
412 int found;
413
414 node = 0;
415 prop = fdt_get_property_by_offset(blob, offset, NULL);
416 path = fdt_string(blob, fdt32_to_cpu(prop->nameoff));
417 if (prop->len && 0 == strncmp(path, name, name_len))
418 node = fdt_path_offset(blob, prop->data);
419 if (node <= 0)
420 continue;
421
422 /* Get the alias number */
423 number = simple_strtoul(path + name_len, NULL, 10);
424 if (number < 0 || number >= maxcount) {
425 debug("%s: warning: alias '%s' is out of range\n",
426 __func__, path);
427 continue;
428 }
429
430 /* Make sure the node we found is actually in our list! */
431 found = -1;
432 for (j = 0; j < count; j++)
433 if (nodes[j] == node) {
434 found = j;
435 break;
436 }
437
438 if (found == -1) {
439 debug("%s: warning: alias '%s' points to a node "
440 "'%s' that is missing or is not compatible "
441 " with '%s'\n", __func__, path,
442 fdt_get_name(blob, node, NULL),
443 compat_names[id]);
444 continue;
445 }
446
447 /*
448 * Add this node to our list in the right place, and mark
449 * it as done.
450 */
451 if (fdtdec_get_is_enabled(blob, node)) {
Simon Glassc6782272012-02-03 15:13:53 +0000452 if (node_list[number]) {
453 debug("%s: warning: alias '%s' requires that "
454 "a node be placed in the list in a "
455 "position which is already filled by "
456 "node '%s'\n", __func__, path,
457 fdt_get_name(blob, node, NULL));
458 continue;
459 }
Simon Glassa53f4a22012-01-17 08:20:50 +0000460 node_list[number] = node;
461 if (number >= num_found)
462 num_found = number + 1;
463 }
Simon Glassc6782272012-02-03 15:13:53 +0000464 nodes[found] = 0;
Simon Glassa53f4a22012-01-17 08:20:50 +0000465 }
466
467 /* Add any nodes not mentioned by an alias */
468 for (i = j = 0; i < maxcount; i++) {
469 if (!node_list[i]) {
470 for (; j < maxcount; j++)
471 if (nodes[j] &&
472 fdtdec_get_is_enabled(blob, nodes[j]))
473 break;
474
475 /* Have we run out of nodes to add? */
476 if (j == maxcount)
477 break;
478
479 assert(!node_list[i]);
480 node_list[i] = nodes[j++];
481 if (i >= num_found)
482 num_found = i + 1;
483 }
484 }
485
486 return num_found;
487}
488
Simon Glass5c33c9f2014-07-23 06:55:09 -0600489int fdtdec_get_alias_seq(const void *blob, const char *base, int offset,
490 int *seqp)
491{
492 int base_len = strlen(base);
493 const char *find_name;
494 int find_namelen;
495 int prop_offset;
496 int aliases;
497
498 find_name = fdt_get_name(blob, offset, &find_namelen);
499 debug("Looking for '%s' at %d, name %s\n", base, offset, find_name);
500
501 aliases = fdt_path_offset(blob, "/aliases");
502 for (prop_offset = fdt_first_property_offset(blob, aliases);
503 prop_offset > 0;
504 prop_offset = fdt_next_property_offset(blob, prop_offset)) {
505 const char *prop;
506 const char *name;
507 const char *slash;
508 const char *p;
509 int len;
510
511 prop = fdt_getprop_by_offset(blob, prop_offset, &name, &len);
512 debug(" - %s, %s\n", name, prop);
513 if (len < find_namelen || *prop != '/' || prop[len - 1] ||
514 strncmp(name, base, base_len))
515 continue;
516
517 slash = strrchr(prop, '/');
518 if (strcmp(slash + 1, find_name))
519 continue;
Simon Glassa88340d2014-11-11 10:46:20 -0700520 for (p = name + strlen(name) - 1; p > name; p--) {
521 if (!isdigit(*p)) {
522 *seqp = simple_strtoul(p + 1, NULL, 10);
Simon Glass5c33c9f2014-07-23 06:55:09 -0600523 debug("Found seq %d\n", *seqp);
524 return 0;
525 }
526 }
527 }
528
529 debug("Not found\n");
530 return -ENOENT;
531}
532
Simon Glassaac07d42014-09-04 16:27:24 -0600533int fdtdec_get_chosen_node(const void *blob, const char *name)
534{
535 const char *prop;
536 int chosen_node;
537 int len;
538
539 if (!blob)
540 return -FDT_ERR_NOTFOUND;
541 chosen_node = fdt_path_offset(blob, "/chosen");
542 prop = fdt_getprop(blob, chosen_node, name, &len);
543 if (!prop)
544 return -FDT_ERR_NOTFOUND;
545 return fdt_path_offset(blob, prop);
546}
547
Simon Glass9a263e52012-03-28 10:08:24 +0000548int fdtdec_check_fdt(void)
549{
550 /*
551 * We must have an FDT, but we cannot panic() yet since the console
552 * is not ready. So for now, just assert(). Boards which need an early
553 * FDT (prior to console ready) will need to make their own
554 * arrangements and do their own checks.
555 */
556 assert(!fdtdec_prepare_fdt());
557 return 0;
558}
559
Simon Glassb5220bc2011-10-24 19:15:32 +0000560/*
561 * This function is a little odd in that it accesses global data. At some
562 * point if the architecture board.c files merge this will make more sense.
563 * Even now, it is common code.
564 */
Simon Glass9a263e52012-03-28 10:08:24 +0000565int fdtdec_prepare_fdt(void)
Simon Glassb5220bc2011-10-24 19:15:32 +0000566{
Simon Glassc309c2d2013-04-20 08:42:46 +0000567 if (!gd->fdt_blob || ((uintptr_t)gd->fdt_blob & 3) ||
568 fdt_check_header(gd->fdt_blob)) {
Simon Glass66312372015-02-27 22:06:32 -0700569#ifdef CONFIG_SPL_BUILD
570 puts("Missing DTB\n");
571#else
572 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");
573#endif
Simon Glass9a263e52012-03-28 10:08:24 +0000574 return -1;
575 }
Simon Glassb5220bc2011-10-24 19:15:32 +0000576 return 0;
577}
Simon Glassd17da652012-02-27 10:52:35 +0000578
579int fdtdec_lookup_phandle(const void *blob, int node, const char *prop_name)
580{
581 const u32 *phandle;
582 int lookup;
583
Simon Glass1cb23232012-07-12 05:25:01 +0000584 debug("%s: %s\n", __func__, prop_name);
Simon Glassd17da652012-02-27 10:52:35 +0000585 phandle = fdt_getprop(blob, node, prop_name, NULL);
586 if (!phandle)
587 return -FDT_ERR_NOTFOUND;
588
589 lookup = fdt_node_offset_by_phandle(blob, fdt32_to_cpu(*phandle));
590 return lookup;
591}
592
593/**
594 * Look up a property in a node and check that it has a minimum length.
595 *
596 * @param blob FDT blob
597 * @param node node to examine
598 * @param prop_name name of property to find
599 * @param min_len minimum property length in bytes
600 * @param err 0 if ok, or -FDT_ERR_NOTFOUND if the property is not
601 found, or -FDT_ERR_BADLAYOUT if not enough data
602 * @return pointer to cell, which is only valid if err == 0
603 */
604static const void *get_prop_check_min_len(const void *blob, int node,
605 const char *prop_name, int min_len, int *err)
606{
607 const void *cell;
608 int len;
609
610 debug("%s: %s\n", __func__, prop_name);
611 cell = fdt_getprop(blob, node, prop_name, &len);
612 if (!cell)
613 *err = -FDT_ERR_NOTFOUND;
614 else if (len < min_len)
615 *err = -FDT_ERR_BADLAYOUT;
616 else
617 *err = 0;
618 return cell;
619}
620
621int fdtdec_get_int_array(const void *blob, int node, const char *prop_name,
622 u32 *array, int count)
623{
624 const u32 *cell;
625 int i, err = 0;
626
627 debug("%s: %s\n", __func__, prop_name);
628 cell = get_prop_check_min_len(blob, node, prop_name,
629 sizeof(u32) * count, &err);
630 if (!err) {
631 for (i = 0; i < count; i++)
632 array[i] = fdt32_to_cpu(cell[i]);
633 }
634 return err;
635}
636
Simon Glassa9f04d42014-11-10 18:00:19 -0700637int fdtdec_get_int_array_count(const void *blob, int node,
638 const char *prop_name, u32 *array, int count)
639{
640 const u32 *cell;
641 int len, elems;
642 int i;
643
644 debug("%s: %s\n", __func__, prop_name);
645 cell = fdt_getprop(blob, node, prop_name, &len);
646 if (!cell)
647 return -FDT_ERR_NOTFOUND;
648 elems = len / sizeof(u32);
649 if (count > elems)
650 count = elems;
651 for (i = 0; i < count; i++)
652 array[i] = fdt32_to_cpu(cell[i]);
653
654 return count;
655}
656
Simon Glass96875e72012-04-02 13:18:41 +0000657const u32 *fdtdec_locate_array(const void *blob, int node,
658 const char *prop_name, int count)
659{
660 const u32 *cell;
661 int err;
662
663 cell = get_prop_check_min_len(blob, node, prop_name,
664 sizeof(u32) * count, &err);
665 return err ? NULL : cell;
666}
667
Simon Glassd17da652012-02-27 10:52:35 +0000668int fdtdec_get_bool(const void *blob, int node, const char *prop_name)
669{
670 const s32 *cell;
671 int len;
672
673 debug("%s: %s\n", __func__, prop_name);
674 cell = fdt_getprop(blob, node, prop_name, &len);
675 return cell != NULL;
676}
Simon Glassed3ee5c2012-02-27 10:52:36 +0000677
Simon Glass57068a72015-01-05 20:05:26 -0700678int fdtdec_parse_phandle_with_args(const void *blob, int src_node,
679 const char *list_name,
680 const char *cells_name,
681 int cell_count, int index,
682 struct fdtdec_phandle_args *out_args)
683{
684 const __be32 *list, *list_end;
685 int rc = 0, size, cur_index = 0;
686 uint32_t count = 0;
687 int node = -1;
688 int phandle;
689
690 /* Retrieve the phandle list property */
691 list = fdt_getprop(blob, src_node, list_name, &size);
692 if (!list)
693 return -ENOENT;
694 list_end = list + size / sizeof(*list);
695
696 /* Loop over the phandles until all the requested entry is found */
697 while (list < list_end) {
698 rc = -EINVAL;
699 count = 0;
700
701 /*
702 * If phandle is 0, then it is an empty entry with no
703 * arguments. Skip forward to the next entry.
704 */
705 phandle = be32_to_cpup(list++);
706 if (phandle) {
707 /*
708 * Find the provider node and parse the #*-cells
709 * property to determine the argument length.
710 *
711 * This is not needed if the cell count is hard-coded
712 * (i.e. cells_name not set, but cell_count is set),
713 * except when we're going to return the found node
714 * below.
715 */
716 if (cells_name || cur_index == index) {
717 node = fdt_node_offset_by_phandle(blob,
718 phandle);
719 if (!node) {
720 debug("%s: could not find phandle\n",
721 fdt_get_name(blob, src_node,
722 NULL));
723 goto err;
724 }
725 }
726
727 if (cells_name) {
728 count = fdtdec_get_int(blob, node, cells_name,
729 -1);
730 if (count == -1) {
731 debug("%s: could not get %s for %s\n",
732 fdt_get_name(blob, src_node,
733 NULL),
734 cells_name,
735 fdt_get_name(blob, node,
736 NULL));
737 goto err;
738 }
739 } else {
740 count = cell_count;
741 }
742
743 /*
744 * Make sure that the arguments actually fit in the
745 * remaining property data length
746 */
747 if (list + count > list_end) {
748 debug("%s: arguments longer than property\n",
749 fdt_get_name(blob, src_node, NULL));
750 goto err;
751 }
752 }
753
754 /*
755 * All of the error cases above bail out of the loop, so at
756 * this point, the parsing is successful. If the requested
757 * index matches, then fill the out_args structure and return,
758 * or return -ENOENT for an empty entry.
759 */
760 rc = -ENOENT;
761 if (cur_index == index) {
762 if (!phandle)
763 goto err;
764
765 if (out_args) {
766 int i;
767
768 if (count > MAX_PHANDLE_ARGS) {
769 debug("%s: too many arguments %d\n",
770 fdt_get_name(blob, src_node,
771 NULL), count);
772 count = MAX_PHANDLE_ARGS;
773 }
774 out_args->node = node;
775 out_args->args_count = count;
776 for (i = 0; i < count; i++) {
777 out_args->args[i] =
778 be32_to_cpup(list++);
779 }
780 }
781
782 /* Found it! return success */
783 return 0;
784 }
785
786 node = -1;
787 list += count;
788 cur_index++;
789 }
790
791 /*
792 * Result will be one of:
793 * -ENOENT : index is for empty phandle
794 * -EINVAL : parsing error on data
795 * [1..n] : Number of phandle (count mode; when index = -1)
796 */
797 rc = index < 0 ? cur_index : -ENOENT;
798 err:
799 return rc;
800}
801
Anton Staffbed4d892012-04-17 09:01:28 +0000802int fdtdec_get_byte_array(const void *blob, int node, const char *prop_name,
803 u8 *array, int count)
804{
805 const u8 *cell;
806 int err;
807
808 cell = get_prop_check_min_len(blob, node, prop_name, count, &err);
809 if (!err)
810 memcpy(array, cell, count);
811 return err;
812}
813
814const u8 *fdtdec_locate_byte_array(const void *blob, int node,
815 const char *prop_name, int count)
816{
817 const u8 *cell;
818 int err;
819
820 cell = get_prop_check_min_len(blob, node, prop_name, count, &err);
821 if (err)
822 return NULL;
823 return cell;
824}
Abhilash Kesavan09258f12012-10-25 16:30:58 +0000825
Abhilash Kesavan09258f12012-10-25 16:30:58 +0000826int fdtdec_get_config_int(const void *blob, const char *prop_name,
827 int default_val)
828{
829 int config_node;
830
831 debug("%s: %s\n", __func__, prop_name);
832 config_node = fdt_path_offset(blob, "/config");
833 if (config_node < 0)
834 return default_val;
835 return fdtdec_get_int(blob, config_node, prop_name, default_val);
836}
Simon Glass332ab0d2012-10-25 16:30:59 +0000837
Gabe Black79289c02012-10-25 16:31:04 +0000838int fdtdec_get_config_bool(const void *blob, const char *prop_name)
839{
840 int config_node;
841 const void *prop;
842
843 debug("%s: %s\n", __func__, prop_name);
844 config_node = fdt_path_offset(blob, "/config");
845 if (config_node < 0)
846 return 0;
847 prop = fdt_get_property(blob, config_node, prop_name, NULL);
848
849 return prop != NULL;
850}
851
Simon Glass332ab0d2012-10-25 16:30:59 +0000852char *fdtdec_get_config_string(const void *blob, const char *prop_name)
853{
854 const char *nodep;
855 int nodeoffset;
856 int len;
857
858 debug("%s: %s\n", __func__, prop_name);
859 nodeoffset = fdt_path_offset(blob, "/config");
860 if (nodeoffset < 0)
861 return NULL;
862
863 nodep = fdt_getprop(blob, nodeoffset, prop_name, &len);
864 if (!nodep)
865 return NULL;
866
867 return (char *)nodep;
868}
Simon Glassf20c4612012-10-25 16:31:00 +0000869
Simon Glass76489832014-10-23 18:58:51 -0600870int fdtdec_decode_region(const void *blob, int node, const char *prop_name,
871 fdt_addr_t *basep, fdt_size_t *sizep)
Simon Glassf20c4612012-10-25 16:31:00 +0000872{
873 const fdt_addr_t *cell;
874 int len;
875
Simon Glass76489832014-10-23 18:58:51 -0600876 debug("%s: %s: %s\n", __func__, fdt_get_name(blob, node, NULL),
877 prop_name);
Simon Glassf20c4612012-10-25 16:31:00 +0000878 cell = fdt_getprop(blob, node, prop_name, &len);
Simon Glass76489832014-10-23 18:58:51 -0600879 if (!cell || (len < sizeof(fdt_addr_t) * 2)) {
880 debug("cell=%p, len=%d\n", cell, len);
Simon Glassf20c4612012-10-25 16:31:00 +0000881 return -1;
Simon Glass76489832014-10-23 18:58:51 -0600882 }
Simon Glassf20c4612012-10-25 16:31:00 +0000883
Simon Glass76489832014-10-23 18:58:51 -0600884 *basep = fdt_addr_to_cpu(*cell);
885 *sizep = fdt_size_to_cpu(cell[1]);
886 debug("%s: base=%08lx, size=%lx\n", __func__, (ulong)*basep,
887 (ulong)*sizep);
888
Simon Glassf20c4612012-10-25 16:31:00 +0000889 return 0;
890}
Simon Glass006e73b2014-02-27 13:26:01 -0700891
892/**
893 * Read a flash entry from the fdt
894 *
895 * @param blob FDT blob
896 * @param node Offset of node to read
897 * @param name Name of node being read
898 * @param entry Place to put offset and size of this node
899 * @return 0 if ok, -ve on error
900 */
901int fdtdec_read_fmap_entry(const void *blob, int node, const char *name,
902 struct fmap_entry *entry)
903{
Simon Glassf3cc44f2014-10-23 18:58:52 -0600904 const char *prop;
Simon Glass006e73b2014-02-27 13:26:01 -0700905 u32 reg[2];
906
907 if (fdtdec_get_int_array(blob, node, "reg", reg, 2)) {
908 debug("Node '%s' has bad/missing 'reg' property\n", name);
909 return -FDT_ERR_NOTFOUND;
910 }
911 entry->offset = reg[0];
912 entry->length = reg[1];
Simon Glassf3cc44f2014-10-23 18:58:52 -0600913 entry->used = fdtdec_get_int(blob, node, "used", entry->length);
914 prop = fdt_getprop(blob, node, "compress", NULL);
915 entry->compress_algo = prop && !strcmp(prop, "lzo") ?
916 FMAP_COMPRESS_LZO : FMAP_COMPRESS_NONE;
917 prop = fdt_getprop(blob, node, "hash", &entry->hash_size);
918 entry->hash_algo = prop ? FMAP_HASH_SHA256 : FMAP_HASH_NONE;
919 entry->hash = (uint8_t *)prop;
Simon Glass006e73b2014-02-27 13:26:01 -0700920
921 return 0;
922}
Thierry Reding56f42242014-08-26 17:33:53 +0200923
Simon Glass5f7bfdd2015-03-05 12:25:14 -0700924u64 fdtdec_get_number(const fdt32_t *ptr, unsigned int cells)
Thierry Reding56f42242014-08-26 17:33:53 +0200925{
926 u64 number = 0;
927
928 while (cells--)
929 number = (number << 32) | fdt32_to_cpu(*ptr++);
930
931 return number;
932}
933
934int fdt_get_resource(const void *fdt, int node, const char *property,
935 unsigned int index, struct fdt_resource *res)
936{
937 const fdt32_t *ptr, *end;
938 int na, ns, len, parent;
939 unsigned int i = 0;
940
941 parent = fdt_parent_offset(fdt, node);
942 if (parent < 0)
943 return parent;
944
945 na = fdt_address_cells(fdt, parent);
946 ns = fdt_size_cells(fdt, parent);
947
948 ptr = fdt_getprop(fdt, node, property, &len);
949 if (!ptr)
950 return len;
951
952 end = ptr + len / sizeof(*ptr);
953
954 while (ptr + na + ns <= end) {
955 if (i == index) {
956 res->start = res->end = fdtdec_get_number(ptr, na);
957 res->end += fdtdec_get_number(&ptr[na], ns) - 1;
958 return 0;
959 }
960
961 ptr += na + ns;
962 i++;
963 }
964
965 return -FDT_ERR_NOTFOUND;
966}
967
968int fdt_get_named_resource(const void *fdt, int node, const char *property,
969 const char *prop_names, const char *name,
970 struct fdt_resource *res)
971{
972 int index;
973
974 index = fdt_find_string(fdt, node, prop_names, name);
975 if (index < 0)
976 return index;
977
978 return fdt_get_resource(fdt, node, property, index, res);
979}
Thierry Reding9f85eee2014-08-26 17:33:54 +0200980
Simon Glass26403872014-10-23 18:58:56 -0600981int fdtdec_decode_memory_region(const void *blob, int config_node,
982 const char *mem_type, const char *suffix,
983 fdt_addr_t *basep, fdt_size_t *sizep)
984{
985 char prop_name[50];
986 const char *mem;
987 fdt_size_t size, offset_size;
988 fdt_addr_t base, offset;
989 int node;
990
991 if (config_node == -1) {
992 config_node = fdt_path_offset(blob, "/config");
993 if (config_node < 0) {
994 debug("%s: Cannot find /config node\n", __func__);
995 return -ENOENT;
996 }
997 }
998 if (!suffix)
999 suffix = "";
1000
1001 snprintf(prop_name, sizeof(prop_name), "%s-memory%s", mem_type,
1002 suffix);
1003 mem = fdt_getprop(blob, config_node, prop_name, NULL);
1004 if (!mem) {
1005 debug("%s: No memory type for '%s', using /memory\n", __func__,
1006 prop_name);
1007 mem = "/memory";
1008 }
1009
1010 node = fdt_path_offset(blob, mem);
1011 if (node < 0) {
1012 debug("%s: Failed to find node '%s': %s\n", __func__, mem,
1013 fdt_strerror(node));
1014 return -ENOENT;
1015 }
1016
1017 /*
1018 * Not strictly correct - the memory may have multiple banks. We just
1019 * use the first
1020 */
1021 if (fdtdec_decode_region(blob, node, "reg", &base, &size)) {
1022 debug("%s: Failed to decode memory region %s\n", __func__,
1023 mem);
1024 return -EINVAL;
1025 }
1026
1027 snprintf(prop_name, sizeof(prop_name), "%s-offset%s", mem_type,
1028 suffix);
1029 if (fdtdec_decode_region(blob, config_node, prop_name, &offset,
1030 &offset_size)) {
1031 debug("%s: Failed to decode memory region '%s'\n", __func__,
1032 prop_name);
1033 return -EINVAL;
1034 }
1035
1036 *basep = base + offset;
1037 *sizep = offset_size;
1038
1039 return 0;
1040}
Simon Glassb45122f2015-02-27 22:06:34 -07001041
Simon Glass12e67112015-04-14 21:03:21 -06001042static int decode_timing_property(const void *blob, int node, const char *name,
1043 struct timing_entry *result)
1044{
1045 int length, ret = 0;
1046 const u32 *prop;
1047
1048 prop = fdt_getprop(blob, node, name, &length);
1049 if (!prop) {
1050 debug("%s: could not find property %s\n",
1051 fdt_get_name(blob, node, NULL), name);
1052 return length;
1053 }
1054
1055 if (length == sizeof(u32)) {
1056 result->typ = fdtdec_get_int(blob, node, name, 0);
1057 result->min = result->typ;
1058 result->max = result->typ;
1059 } else {
1060 ret = fdtdec_get_int_array(blob, node, name, &result->min, 3);
1061 }
1062
1063 return ret;
1064}
1065
1066int fdtdec_decode_display_timing(const void *blob, int parent, int index,
1067 struct display_timing *dt)
1068{
1069 int i, node, timings_node;
1070 u32 val = 0;
1071 int ret = 0;
1072
1073 timings_node = fdt_subnode_offset(blob, parent, "display-timings");
1074 if (timings_node < 0)
1075 return timings_node;
1076
1077 for (i = 0, node = fdt_first_subnode(blob, timings_node);
1078 node > 0 && i != index;
1079 node = fdt_next_subnode(blob, node))
1080 i++;
1081
1082 if (node < 0)
1083 return node;
1084
1085 memset(dt, 0, sizeof(*dt));
1086
1087 ret |= decode_timing_property(blob, node, "hback-porch",
1088 &dt->hback_porch);
1089 ret |= decode_timing_property(blob, node, "hfront-porch",
1090 &dt->hfront_porch);
1091 ret |= decode_timing_property(blob, node, "hactive", &dt->hactive);
1092 ret |= decode_timing_property(blob, node, "hsync-len", &dt->hsync_len);
1093 ret |= decode_timing_property(blob, node, "vback-porch",
1094 &dt->vback_porch);
1095 ret |= decode_timing_property(blob, node, "vfront-porch",
1096 &dt->vfront_porch);
1097 ret |= decode_timing_property(blob, node, "vactive", &dt->vactive);
1098 ret |= decode_timing_property(blob, node, "vsync-len", &dt->vsync_len);
1099 ret |= decode_timing_property(blob, node, "clock-frequency",
1100 &dt->pixelclock);
1101
1102 dt->flags = 0;
1103 val = fdtdec_get_int(blob, node, "vsync-active", -1);
1104 if (val != -1) {
1105 dt->flags |= val ? DISPLAY_FLAGS_VSYNC_HIGH :
1106 DISPLAY_FLAGS_VSYNC_LOW;
1107 }
1108 val = fdtdec_get_int(blob, node, "hsync-active", -1);
1109 if (val != -1) {
1110 dt->flags |= val ? DISPLAY_FLAGS_HSYNC_HIGH :
1111 DISPLAY_FLAGS_HSYNC_LOW;
1112 }
1113 val = fdtdec_get_int(blob, node, "de-active", -1);
1114 if (val != -1) {
1115 dt->flags |= val ? DISPLAY_FLAGS_DE_HIGH :
1116 DISPLAY_FLAGS_DE_LOW;
1117 }
1118 val = fdtdec_get_int(blob, node, "pixelclk-active", -1);
1119 if (val != -1) {
1120 dt->flags |= val ? DISPLAY_FLAGS_PIXDATA_POSEDGE :
1121 DISPLAY_FLAGS_PIXDATA_NEGEDGE;
1122 }
1123
1124 if (fdtdec_get_bool(blob, node, "interlaced"))
1125 dt->flags |= DISPLAY_FLAGS_INTERLACED;
1126 if (fdtdec_get_bool(blob, node, "doublescan"))
1127 dt->flags |= DISPLAY_FLAGS_DOUBLESCAN;
1128 if (fdtdec_get_bool(blob, node, "doubleclk"))
1129 dt->flags |= DISPLAY_FLAGS_DOUBLECLK;
1130
1131 return 0;
1132}
1133
Simon Glass08793612015-02-27 22:06:35 -07001134int fdtdec_setup(void)
Simon Glassb45122f2015-02-27 22:06:34 -07001135{
1136#ifdef CONFIG_OF_CONTROL
1137# ifdef CONFIG_OF_EMBED
1138 /* Get a pointer to the FDT */
1139 gd->fdt_blob = __dtb_dt_begin;
1140# elif defined CONFIG_OF_SEPARATE
1141# ifdef CONFIG_SPL_BUILD
1142 /* FDT is at end of BSS */
1143 gd->fdt_blob = (ulong *)&__bss_end;
1144# else
1145 /* FDT is at end of image */
1146 gd->fdt_blob = (ulong *)&_end;
Heiko Schocher29a23f92014-03-03 12:19:30 +01001147#endif
Simon Glassb45122f2015-02-27 22:06:34 -07001148# elif defined(CONFIG_OF_HOSTFILE)
1149 if (sandbox_read_fdt_from_file()) {
1150 puts("Failed to read control FDT\n");
1151 return -1;
1152 }
1153# endif
1154# ifndef CONFIG_SPL_BUILD
1155 /* Allow the early environment to override the fdt address */
1156 gd->fdt_blob = (void *)getenv_ulong("fdtcontroladdr", 16,
1157 (uintptr_t)gd->fdt_blob);
1158# endif
1159#endif
Simon Glass08793612015-02-27 22:06:35 -07001160 return fdtdec_prepare_fdt();
Simon Glassb45122f2015-02-27 22:06:34 -07001161}
1162
1163#endif /* !USE_HOSTCC */