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