blob: 5bf8f29b13e92fbfcb9f0d83132e0e6ac987d0e2 [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 Glass5c33c9f2014-07-23 06:55:09 -060012#include <linux/ctype.h>
Simon Glassb5220bc2011-10-24 19:15:32 +000013
14DECLARE_GLOBAL_DATA_PTR;
15
16/*
17 * Here are the type we know about. One day we might allow drivers to
18 * register. For now we just put them here. The COMPAT macro allows us to
19 * turn this into a sparse list later, and keeps the ID with the name.
20 */
21#define COMPAT(id, name) name
22static const char * const compat_names[COMPAT_COUNT] = {
Simon Glassf88fe2d2012-02-27 10:52:34 +000023 COMPAT(UNKNOWN, "<none>"),
Simon Glass87f938c2012-02-27 10:52:49 +000024 COMPAT(NVIDIA_TEGRA20_USB, "nvidia,tegra20-ehci"),
Jim Lin7e44d932013-06-21 19:05:47 +080025 COMPAT(NVIDIA_TEGRA30_USB, "nvidia,tegra30-ehci"),
26 COMPAT(NVIDIA_TEGRA114_USB, "nvidia,tegra114-ehci"),
Jimmy Zhang0e35ad02012-04-02 13:18:52 +000027 COMPAT(NVIDIA_TEGRA20_EMC, "nvidia,tegra20-emc"),
28 COMPAT(NVIDIA_TEGRA20_EMC_TABLE, "nvidia,tegra20-emc-table"),
Rakesh Iyer6642a682012-04-17 09:01:35 +000029 COMPAT(NVIDIA_TEGRA20_KBC, "nvidia,tegra20-kbc"),
Jim Lin312693c2012-07-29 20:53:29 +000030 COMPAT(NVIDIA_TEGRA20_NAND, "nvidia,tegra20-nand"),
Simon Glasse1ae0d12012-10-17 13:24:49 +000031 COMPAT(NVIDIA_TEGRA20_PWM, "nvidia,tegra20-pwm"),
Wei Ni87540de2012-10-17 13:24:50 +000032 COMPAT(NVIDIA_TEGRA20_DC, "nvidia,tegra20-dc"),
Stephen Warrena73ca472014-01-24 12:46:06 -070033 COMPAT(NVIDIA_TEGRA124_SDMMC, "nvidia,tegra124-sdhci"),
Tom Warrenf4e4e0b2013-03-04 14:07:18 -070034 COMPAT(NVIDIA_TEGRA30_SDMMC, "nvidia,tegra30-sdhci"),
Tom Warrenc9aa8312013-02-21 12:31:30 +000035 COMPAT(NVIDIA_TEGRA20_SDMMC, "nvidia,tegra20-sdhci"),
Thierry Redingf3158282014-12-09 22:25:12 -070036 COMPAT(NVIDIA_TEGRA124_PCIE, "nvidia,tegra124-pcie"),
37 COMPAT(NVIDIA_TEGRA30_PCIE, "nvidia,tegra30-pcie"),
38 COMPAT(NVIDIA_TEGRA20_PCIE, "nvidia,tegra20-pcie"),
Thierry Reding79c7a902014-12-09 22:25:09 -070039 COMPAT(NVIDIA_TEGRA124_XUSB_PADCTL, "nvidia,tegra124-xusb-padctl"),
Hatim RVcc9fe332012-12-11 00:52:46 +000040 COMPAT(SMSC_LAN9215, "smsc,lan9215"),
41 COMPAT(SAMSUNG_EXYNOS5_SROMC, "samsung,exynos-sromc"),
Rajeshwari Shindec34253d2012-12-26 20:03:10 +000042 COMPAT(SAMSUNG_S3C2440_I2C, "samsung,s3c2440-i2c"),
Rajeshwari Shinde72dbff12012-12-26 20:03:16 +000043 COMPAT(SAMSUNG_EXYNOS5_SOUND, "samsung,exynos-sound"),
44 COMPAT(WOLFSON_WM8994_CODEC, "wolfson,wm8994-codec"),
Hung-ying Tyan88364382013-05-15 18:27:28 +080045 COMPAT(GOOGLE_CROS_EC, "google,cros-ec"),
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_EHCI, "samsung,exynos-ehci"),
Vivek Gautam108b85b2013-09-14 14:02:48 +053048 COMPAT(SAMSUNG_EXYNOS5_XHCI, "samsung,exynos5250-xhci"),
Rajeshwari Shinde6abd1622013-01-07 23:35:05 +000049 COMPAT(SAMSUNG_EXYNOS_USB_PHY, "samsung,exynos-usb-phy"),
Vivek Gautam108b85b2013-09-14 14:02:48 +053050 COMPAT(SAMSUNG_EXYNOS5_USB3_PHY, "samsung,exynos5250-usb3-phy"),
Akshay Saraswat618766c2013-02-25 01:13:01 +000051 COMPAT(SAMSUNG_EXYNOS_TMU, "samsung,exynos-tmu"),
Ajay Kumard7377b52013-02-21 23:53:00 +000052 COMPAT(SAMSUNG_EXYNOS_FIMD, "samsung,exynos-fimd"),
Piotr Wilczekde461c52014-03-07 14:59:39 +010053 COMPAT(SAMSUNG_EXYNOS_MIPI_DSI, "samsung,exynos-mipi-dsi"),
Ajay Kumar1e4706a2013-02-21 23:53:05 +000054 COMPAT(SAMSUNG_EXYNOS5_DP, "samsung,exynos5-dp"),
Jaehoon Chung7d3ca0f2014-05-16 13:59:51 +090055 COMPAT(SAMSUNG_EXYNOS_DWMMC, "samsung,exynos-dwmmc"),
Piotr Wilczek3577fe82014-03-07 14:59:41 +010056 COMPAT(SAMSUNG_EXYNOS_MMC, "samsung,exynos-mmc"),
Rajeshwari Shindeee1e3c22013-06-24 16:47:20 +053057 COMPAT(SAMSUNG_EXYNOS_SERIAL, "samsung,exynos4210-uart"),
Rajeshwari Shindecd577e22013-01-08 21:03:38 +000058 COMPAT(MAXIM_MAX77686_PMIC, "maxim,max77686_pmic"),
Simon Glassbb8215f2013-03-11 06:08:08 +000059 COMPAT(GENERIC_SPI_FLASH, "spi-flash"),
Rajeshwari Shinde7772bb72013-02-14 19:46:15 +000060 COMPAT(MAXIM_98095_CODEC, "maxim,max98095-codec"),
Rong Changf6267992013-04-12 10:44:57 +000061 COMPAT(INFINEON_SLB9635_TPM, "infineon,slb9635-tpm"),
Vincent Palatinec34fa52013-04-12 11:04:36 +000062 COMPAT(INFINEON_SLB9645_TPM, "infineon,slb9645-tpm"),
naveen krishna chatradhiecbd7e12013-04-29 15:58:52 -070063 COMPAT(SAMSUNG_EXYNOS5_I2C, "samsung,exynos5-hsi2c"),
Simon Glassdf93d902014-02-27 13:26:12 -070064 COMPAT(SANDBOX_HOST_EMULATION, "sandbox,host-emulation"),
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 Glassca42d3f2014-10-10 07:30:14 -060070 COMPAT(COMPAT_INTEL_LPC, "intel,lpc"),
Simon Glass77f9b1f2014-11-12 22:42:21 -070071 COMPAT(INTEL_MICROCODE, "intel,microcode"),
Simon Glass65dd74a2014-11-12 22:42:28 -070072 COMPAT(MEMORY_SPD, "memory-spd"),
Simon Glass3ac83932014-11-14 18:18:38 -070073 COMPAT(INTEL_PANTHERPOINT_AHCI, "intel,pantherpoint-ahci"),
Simon Glassbb80be32014-11-24 21:18:16 -070074 COMPAT(INTEL_MODEL_206AX, "intel,model-206ax"),
Simon Glasseffcf062014-11-14 20:56:36 -070075 COMPAT(INTEL_GMA, "intel,gma"),
Thierry Reding6173c452014-12-09 22:25:05 -070076 COMPAT(AMS_AS3722, "ams,as3722"),
Simon Glass5da38082015-01-19 22:16:06 -070077 COMPAT(INTEL_ICH_SPI, "intel,ich-spi"),
Simon Glassb5220bc2011-10-24 19:15:32 +000078};
79
Simon Glassa53f4a22012-01-17 08:20:50 +000080const char *fdtdec_get_compatible(enum fdt_compat_id id)
81{
82 /* We allow reading of the 'unknown' ID for testing purposes */
83 assert(id >= 0 && id < COMPAT_COUNT);
84 return compat_names[id];
85}
86
Simon Glass4397a2a2013-03-19 04:58:51 +000087fdt_addr_t fdtdec_get_addr_size(const void *blob, int node,
88 const char *prop_name, fdt_size_t *sizep)
Simon Glassb5220bc2011-10-24 19:15:32 +000089{
90 const fdt_addr_t *cell;
91 int len;
92
Simon Glass1cb23232012-07-12 05:25:01 +000093 debug("%s: %s: ", __func__, prop_name);
Simon Glassb5220bc2011-10-24 19:15:32 +000094 cell = fdt_getprop(blob, node, prop_name, &len);
Simon Glass4397a2a2013-03-19 04:58:51 +000095 if (cell && ((!sizep && len == sizeof(fdt_addr_t)) ||
96 len == sizeof(fdt_addr_t) * 2)) {
Simon Glass1cb23232012-07-12 05:25:01 +000097 fdt_addr_t addr = fdt_addr_to_cpu(*cell);
Simon Glass4397a2a2013-03-19 04:58:51 +000098 if (sizep) {
99 const fdt_size_t *size;
Simon Glass1cb23232012-07-12 05:25:01 +0000100
Simon Glass4397a2a2013-03-19 04:58:51 +0000101 size = (fdt_size_t *)((char *)cell +
102 sizeof(fdt_addr_t));
103 *sizep = fdt_size_to_cpu(*size);
Simon Glass370b6c52013-11-10 10:26:54 -0700104 debug("addr=%08lx, size=%08x\n",
105 (ulong)addr, *sizep);
Simon Glass4397a2a2013-03-19 04:58:51 +0000106 } else {
Simon Glass370b6c52013-11-10 10:26:54 -0700107 debug("%08lx\n", (ulong)addr);
Simon Glass4397a2a2013-03-19 04:58:51 +0000108 }
Simon Glass1cb23232012-07-12 05:25:01 +0000109 return addr;
110 }
111 debug("(not found)\n");
Simon Glassb5220bc2011-10-24 19:15:32 +0000112 return FDT_ADDR_T_NONE;
113}
114
Simon Glass4397a2a2013-03-19 04:58:51 +0000115fdt_addr_t fdtdec_get_addr(const void *blob, int node,
116 const char *prop_name)
117{
118 return fdtdec_get_addr_size(blob, node, prop_name, NULL);
119}
120
Bin Menga62e84d2014-12-31 16:05:11 +0800121#ifdef CONFIG_PCI
122int fdtdec_get_pci_addr(const void *blob, int node, enum fdt_pci_space type,
123 const char *prop_name, struct fdt_pci_addr *addr)
124{
125 const u32 *cell;
126 int len;
127 int ret = -ENOENT;
128
129 debug("%s: %s: ", __func__, prop_name);
130
131 /*
132 * If we follow the pci bus bindings strictly, we should check
133 * the value of the node's parent node's #address-cells and
134 * #size-cells. They need to be 3 and 2 accordingly. However,
135 * for simplicity we skip the check here.
136 */
137 cell = fdt_getprop(blob, node, prop_name, &len);
138 if (!cell)
139 goto fail;
140
141 if ((len % FDT_PCI_REG_SIZE) == 0) {
142 int num = len / FDT_PCI_REG_SIZE;
143 int i;
144
145 for (i = 0; i < num; i++) {
146 debug("pci address #%d: %08lx %08lx %08lx\n", i,
147 (ulong)fdt_addr_to_cpu(cell[0]),
148 (ulong)fdt_addr_to_cpu(cell[1]),
149 (ulong)fdt_addr_to_cpu(cell[2]));
150 if ((fdt_addr_to_cpu(*cell) & type) == type) {
151 addr->phys_hi = fdt_addr_to_cpu(cell[0]);
152 addr->phys_mid = fdt_addr_to_cpu(cell[1]);
153 addr->phys_lo = fdt_addr_to_cpu(cell[2]);
154 break;
155 } else {
156 cell += (FDT_PCI_ADDR_CELLS +
157 FDT_PCI_SIZE_CELLS);
158 }
159 }
160
161 if (i == num)
162 goto fail;
163
164 return 0;
165 } else {
166 ret = -EINVAL;
167 }
168
169fail:
170 debug("(not found)\n");
171 return ret;
172}
173
174int fdtdec_get_pci_vendev(const void *blob, int node, u16 *vendor, u16 *device)
175{
176 const char *list, *end;
177 int len;
178
179 list = fdt_getprop(blob, node, "compatible", &len);
180 if (!list)
181 return -ENOENT;
182
183 end = list + len;
184 while (list < end) {
185 char *s;
186
187 len = strlen(list);
188 if (len >= strlen("pciVVVV,DDDD")) {
189 s = strstr(list, "pci");
190
191 /*
192 * check if the string is something like pciVVVV,DDDD.RR
193 * or just pciVVVV,DDDD
194 */
195 if (s && s[7] == ',' &&
196 (s[12] == '.' || s[12] == 0)) {
197 s += 3;
198 *vendor = simple_strtol(s, NULL, 16);
199
200 s += 5;
201 *device = simple_strtol(s, NULL, 16);
202
203 return 0;
204 }
205 } else {
206 list += (len + 1);
207 }
208 }
209
210 return -ENOENT;
211}
212
213int fdtdec_get_pci_bdf(const void *blob, int node,
214 struct fdt_pci_addr *addr, pci_dev_t *bdf)
215{
216 u16 dt_vendor, dt_device, vendor, device;
217 int ret;
218
219 /* get vendor id & device id from the compatible string */
220 ret = fdtdec_get_pci_vendev(blob, node, &dt_vendor, &dt_device);
221 if (ret)
222 return ret;
223
224 /* extract the bdf from fdt_pci_addr */
225 *bdf = addr->phys_hi & 0xffff00;
226
227 /* read vendor id & device id based on bdf */
228 pci_read_config_word(*bdf, PCI_VENDOR_ID, &vendor);
229 pci_read_config_word(*bdf, PCI_DEVICE_ID, &device);
230
231 /*
232 * Note there are two places in the device tree to fully describe
233 * a pci device: one is via compatible string with a format of
234 * "pciVVVV,DDDD" and the other one is the bdf numbers encoded in
235 * the device node's reg address property. We read the vendor id
236 * and device id based on bdf and compare the values with the
237 * "VVVV,DDDD". If they are the same, then we are good to use bdf
238 * to read device's bar. But if they are different, we have to rely
239 * on the vendor id and device id extracted from the compatible
240 * string and locate the real bdf by pci_find_device(). This is
241 * because normally we may only know device's device number and
242 * function number when writing device tree. The bus number is
243 * dynamically assigned during the pci enumeration process.
244 */
245 if ((dt_vendor != vendor) || (dt_device != device)) {
246 *bdf = pci_find_device(dt_vendor, dt_device, 0);
247 if (*bdf == -1)
248 return -ENODEV;
249 }
250
251 return 0;
252}
253
254int fdtdec_get_pci_bar32(const void *blob, int node,
255 struct fdt_pci_addr *addr, u32 *bar)
256{
257 pci_dev_t bdf;
258 int barnum;
259 int ret;
260
261 /* get pci devices's bdf */
262 ret = fdtdec_get_pci_bdf(blob, node, addr, &bdf);
263 if (ret)
264 return ret;
265
266 /* extract the bar number from fdt_pci_addr */
267 barnum = addr->phys_hi & 0xff;
268 if ((barnum < PCI_BASE_ADDRESS_0) || (barnum > PCI_CARDBUS_CIS))
269 return -EINVAL;
270
271 barnum = (barnum - PCI_BASE_ADDRESS_0) / 4;
272 *bar = pci_read_bar32(pci_bus_to_hose(PCI_BUS(bdf)), bdf, barnum);
273
274 return 0;
275}
276#endif
277
Che-Liang Chiouaadef0a2012-10-25 16:31:05 +0000278uint64_t fdtdec_get_uint64(const void *blob, int node, const char *prop_name,
279 uint64_t default_val)
280{
281 const uint64_t *cell64;
282 int length;
283
284 cell64 = fdt_getprop(blob, node, prop_name, &length);
285 if (!cell64 || length < sizeof(*cell64))
286 return default_val;
287
288 return fdt64_to_cpu(*cell64);
289}
290
Simon Glassf88fe2d2012-02-27 10:52:34 +0000291int fdtdec_get_is_enabled(const void *blob, int node)
Simon Glassb5220bc2011-10-24 19:15:32 +0000292{
293 const char *cell;
294
Simon Glassf88fe2d2012-02-27 10:52:34 +0000295 /*
296 * It should say "okay", so only allow that. Some fdts use "ok" but
297 * this is a bug. Please fix your device tree source file. See here
298 * for discussion:
299 *
300 * http://www.mail-archive.com/u-boot@lists.denx.de/msg71598.html
301 */
Simon Glassb5220bc2011-10-24 19:15:32 +0000302 cell = fdt_getprop(blob, node, "status", NULL);
303 if (cell)
Simon Glassf88fe2d2012-02-27 10:52:34 +0000304 return 0 == strcmp(cell, "okay");
305 return 1;
Simon Glassb5220bc2011-10-24 19:15:32 +0000306}
307
Gerald Van Baren7cde3972012-11-12 23:13:54 -0500308enum fdt_compat_id fdtdec_lookup(const void *blob, int node)
Simon Glassb5220bc2011-10-24 19:15:32 +0000309{
310 enum fdt_compat_id id;
311
312 /* Search our drivers */
313 for (id = COMPAT_UNKNOWN; id < COMPAT_COUNT; id++)
314 if (0 == fdt_node_check_compatible(blob, node,
315 compat_names[id]))
316 return id;
317 return COMPAT_UNKNOWN;
318}
319
320int fdtdec_next_compatible(const void *blob, int node,
321 enum fdt_compat_id id)
322{
323 return fdt_node_offset_by_compatible(blob, node, compat_names[id]);
324}
325
Simon Glass3ddecfc2012-04-02 13:18:42 +0000326int fdtdec_next_compatible_subnode(const void *blob, int node,
327 enum fdt_compat_id id, int *depthp)
328{
329 do {
330 node = fdt_next_node(blob, node, depthp);
331 } while (*depthp > 1);
332
333 /* If this is a direct subnode, and compatible, return it */
334 if (*depthp == 1 && 0 == fdt_node_check_compatible(
335 blob, node, compat_names[id]))
336 return node;
337
338 return -FDT_ERR_NOTFOUND;
339}
340
Simon Glassb5220bc2011-10-24 19:15:32 +0000341int fdtdec_next_alias(const void *blob, const char *name,
342 enum fdt_compat_id id, int *upto)
343{
344#define MAX_STR_LEN 20
345 char str[MAX_STR_LEN + 20];
346 int node, err;
347
348 /* snprintf() is not available */
349 assert(strlen(name) < MAX_STR_LEN);
350 sprintf(str, "%.*s%d", MAX_STR_LEN, name, *upto);
Simon Glass00878472012-10-31 14:02:42 +0000351 node = fdt_path_offset(blob, str);
Simon Glassb5220bc2011-10-24 19:15:32 +0000352 if (node < 0)
353 return node;
354 err = fdt_node_check_compatible(blob, node, compat_names[id]);
355 if (err < 0)
356 return err;
Simon Glassf88fe2d2012-02-27 10:52:34 +0000357 if (err)
358 return -FDT_ERR_NOTFOUND;
359 (*upto)++;
360 return node;
Simon Glassb5220bc2011-10-24 19:15:32 +0000361}
362
Simon Glassa53f4a22012-01-17 08:20:50 +0000363int fdtdec_find_aliases_for_id(const void *blob, const char *name,
364 enum fdt_compat_id id, int *node_list, int maxcount)
365{
Simon Glassc6782272012-02-03 15:13:53 +0000366 memset(node_list, '\0', sizeof(*node_list) * maxcount);
367
368 return fdtdec_add_aliases_for_id(blob, name, id, node_list, maxcount);
369}
370
371/* TODO: Can we tighten this code up a little? */
372int fdtdec_add_aliases_for_id(const void *blob, const char *name,
373 enum fdt_compat_id id, int *node_list, int maxcount)
374{
Simon Glassa53f4a22012-01-17 08:20:50 +0000375 int name_len = strlen(name);
376 int nodes[maxcount];
377 int num_found = 0;
378 int offset, node;
379 int alias_node;
380 int count;
381 int i, j;
382
383 /* find the alias node if present */
384 alias_node = fdt_path_offset(blob, "/aliases");
385
386 /*
387 * start with nothing, and we can assume that the root node can't
388 * match
389 */
390 memset(nodes, '\0', sizeof(nodes));
391
392 /* First find all the compatible nodes */
393 for (node = count = 0; node >= 0 && count < maxcount;) {
394 node = fdtdec_next_compatible(blob, node, id);
395 if (node >= 0)
396 nodes[count++] = node;
397 }
398 if (node >= 0)
399 debug("%s: warning: maxcount exceeded with alias '%s'\n",
400 __func__, name);
401
402 /* Now find all the aliases */
Simon Glassa53f4a22012-01-17 08:20:50 +0000403 for (offset = fdt_first_property_offset(blob, alias_node);
404 offset > 0;
405 offset = fdt_next_property_offset(blob, offset)) {
406 const struct fdt_property *prop;
407 const char *path;
408 int number;
409 int found;
410
411 node = 0;
412 prop = fdt_get_property_by_offset(blob, offset, NULL);
413 path = fdt_string(blob, fdt32_to_cpu(prop->nameoff));
414 if (prop->len && 0 == strncmp(path, name, name_len))
415 node = fdt_path_offset(blob, prop->data);
416 if (node <= 0)
417 continue;
418
419 /* Get the alias number */
420 number = simple_strtoul(path + name_len, NULL, 10);
421 if (number < 0 || number >= maxcount) {
422 debug("%s: warning: alias '%s' is out of range\n",
423 __func__, path);
424 continue;
425 }
426
427 /* Make sure the node we found is actually in our list! */
428 found = -1;
429 for (j = 0; j < count; j++)
430 if (nodes[j] == node) {
431 found = j;
432 break;
433 }
434
435 if (found == -1) {
436 debug("%s: warning: alias '%s' points to a node "
437 "'%s' that is missing or is not compatible "
438 " with '%s'\n", __func__, path,
439 fdt_get_name(blob, node, NULL),
440 compat_names[id]);
441 continue;
442 }
443
444 /*
445 * Add this node to our list in the right place, and mark
446 * it as done.
447 */
448 if (fdtdec_get_is_enabled(blob, node)) {
Simon Glassc6782272012-02-03 15:13:53 +0000449 if (node_list[number]) {
450 debug("%s: warning: alias '%s' requires that "
451 "a node be placed in the list in a "
452 "position which is already filled by "
453 "node '%s'\n", __func__, path,
454 fdt_get_name(blob, node, NULL));
455 continue;
456 }
Simon Glassa53f4a22012-01-17 08:20:50 +0000457 node_list[number] = node;
458 if (number >= num_found)
459 num_found = number + 1;
460 }
Simon Glassc6782272012-02-03 15:13:53 +0000461 nodes[found] = 0;
Simon Glassa53f4a22012-01-17 08:20:50 +0000462 }
463
464 /* Add any nodes not mentioned by an alias */
465 for (i = j = 0; i < maxcount; i++) {
466 if (!node_list[i]) {
467 for (; j < maxcount; j++)
468 if (nodes[j] &&
469 fdtdec_get_is_enabled(blob, nodes[j]))
470 break;
471
472 /* Have we run out of nodes to add? */
473 if (j == maxcount)
474 break;
475
476 assert(!node_list[i]);
477 node_list[i] = nodes[j++];
478 if (i >= num_found)
479 num_found = i + 1;
480 }
481 }
482
483 return num_found;
484}
485
Simon Glass5c33c9f2014-07-23 06:55:09 -0600486int fdtdec_get_alias_seq(const void *blob, const char *base, int offset,
487 int *seqp)
488{
489 int base_len = strlen(base);
490 const char *find_name;
491 int find_namelen;
492 int prop_offset;
493 int aliases;
494
495 find_name = fdt_get_name(blob, offset, &find_namelen);
496 debug("Looking for '%s' at %d, name %s\n", base, offset, find_name);
497
498 aliases = fdt_path_offset(blob, "/aliases");
499 for (prop_offset = fdt_first_property_offset(blob, aliases);
500 prop_offset > 0;
501 prop_offset = fdt_next_property_offset(blob, prop_offset)) {
502 const char *prop;
503 const char *name;
504 const char *slash;
505 const char *p;
506 int len;
507
508 prop = fdt_getprop_by_offset(blob, prop_offset, &name, &len);
509 debug(" - %s, %s\n", name, prop);
510 if (len < find_namelen || *prop != '/' || prop[len - 1] ||
511 strncmp(name, base, base_len))
512 continue;
513
514 slash = strrchr(prop, '/');
515 if (strcmp(slash + 1, find_name))
516 continue;
Simon Glassa88340d2014-11-11 10:46:20 -0700517 for (p = name + strlen(name) - 1; p > name; p--) {
518 if (!isdigit(*p)) {
519 *seqp = simple_strtoul(p + 1, NULL, 10);
Simon Glass5c33c9f2014-07-23 06:55:09 -0600520 debug("Found seq %d\n", *seqp);
521 return 0;
522 }
523 }
524 }
525
526 debug("Not found\n");
527 return -ENOENT;
528}
529
Simon Glassaac07d42014-09-04 16:27:24 -0600530int fdtdec_get_chosen_node(const void *blob, const char *name)
531{
532 const char *prop;
533 int chosen_node;
534 int len;
535
536 if (!blob)
537 return -FDT_ERR_NOTFOUND;
538 chosen_node = fdt_path_offset(blob, "/chosen");
539 prop = fdt_getprop(blob, chosen_node, name, &len);
540 if (!prop)
541 return -FDT_ERR_NOTFOUND;
542 return fdt_path_offset(blob, prop);
543}
544
Simon Glass9a263e52012-03-28 10:08:24 +0000545int fdtdec_check_fdt(void)
546{
547 /*
548 * We must have an FDT, but we cannot panic() yet since the console
549 * is not ready. So for now, just assert(). Boards which need an early
550 * FDT (prior to console ready) will need to make their own
551 * arrangements and do their own checks.
552 */
553 assert(!fdtdec_prepare_fdt());
554 return 0;
555}
556
Simon Glassb5220bc2011-10-24 19:15:32 +0000557/*
558 * This function is a little odd in that it accesses global data. At some
559 * point if the architecture board.c files merge this will make more sense.
560 * Even now, it is common code.
561 */
Simon Glass9a263e52012-03-28 10:08:24 +0000562int fdtdec_prepare_fdt(void)
Simon Glassb5220bc2011-10-24 19:15:32 +0000563{
Simon Glassc309c2d2013-04-20 08:42:46 +0000564 if (!gd->fdt_blob || ((uintptr_t)gd->fdt_blob & 3) ||
565 fdt_check_header(gd->fdt_blob)) {
Simon Glass9a263e52012-03-28 10:08:24 +0000566 printf("No valid FDT found - please append one to U-Boot "
567 "binary, use u-boot-dtb.bin or define "
Simon Glassa733b062013-04-26 02:53:43 +0000568 "CONFIG_OF_EMBED. For sandbox, use -d <file.dtb>\n");
Simon Glass9a263e52012-03-28 10:08:24 +0000569 return -1;
570 }
Simon Glassb5220bc2011-10-24 19:15:32 +0000571 return 0;
572}
Simon Glassd17da652012-02-27 10:52:35 +0000573
574int fdtdec_lookup_phandle(const void *blob, int node, const char *prop_name)
575{
576 const u32 *phandle;
577 int lookup;
578
Simon Glass1cb23232012-07-12 05:25:01 +0000579 debug("%s: %s\n", __func__, prop_name);
Simon Glassd17da652012-02-27 10:52:35 +0000580 phandle = fdt_getprop(blob, node, prop_name, NULL);
581 if (!phandle)
582 return -FDT_ERR_NOTFOUND;
583
584 lookup = fdt_node_offset_by_phandle(blob, fdt32_to_cpu(*phandle));
585 return lookup;
586}
587
588/**
589 * Look up a property in a node and check that it has a minimum length.
590 *
591 * @param blob FDT blob
592 * @param node node to examine
593 * @param prop_name name of property to find
594 * @param min_len minimum property length in bytes
595 * @param err 0 if ok, or -FDT_ERR_NOTFOUND if the property is not
596 found, or -FDT_ERR_BADLAYOUT if not enough data
597 * @return pointer to cell, which is only valid if err == 0
598 */
599static const void *get_prop_check_min_len(const void *blob, int node,
600 const char *prop_name, int min_len, int *err)
601{
602 const void *cell;
603 int len;
604
605 debug("%s: %s\n", __func__, prop_name);
606 cell = fdt_getprop(blob, node, prop_name, &len);
607 if (!cell)
608 *err = -FDT_ERR_NOTFOUND;
609 else if (len < min_len)
610 *err = -FDT_ERR_BADLAYOUT;
611 else
612 *err = 0;
613 return cell;
614}
615
616int fdtdec_get_int_array(const void *blob, int node, const char *prop_name,
617 u32 *array, int count)
618{
619 const u32 *cell;
620 int i, err = 0;
621
622 debug("%s: %s\n", __func__, prop_name);
623 cell = get_prop_check_min_len(blob, node, prop_name,
624 sizeof(u32) * count, &err);
625 if (!err) {
626 for (i = 0; i < count; i++)
627 array[i] = fdt32_to_cpu(cell[i]);
628 }
629 return err;
630}
631
Simon Glassa9f04d42014-11-10 18:00:19 -0700632int fdtdec_get_int_array_count(const void *blob, int node,
633 const char *prop_name, u32 *array, int count)
634{
635 const u32 *cell;
636 int len, elems;
637 int i;
638
639 debug("%s: %s\n", __func__, prop_name);
640 cell = fdt_getprop(blob, node, prop_name, &len);
641 if (!cell)
642 return -FDT_ERR_NOTFOUND;
643 elems = len / sizeof(u32);
644 if (count > elems)
645 count = elems;
646 for (i = 0; i < count; i++)
647 array[i] = fdt32_to_cpu(cell[i]);
648
649 return count;
650}
651
Simon Glass96875e72012-04-02 13:18:41 +0000652const u32 *fdtdec_locate_array(const void *blob, int node,
653 const char *prop_name, int count)
654{
655 const u32 *cell;
656 int err;
657
658 cell = get_prop_check_min_len(blob, node, prop_name,
659 sizeof(u32) * count, &err);
660 return err ? NULL : cell;
661}
662
Simon Glassd17da652012-02-27 10:52:35 +0000663int fdtdec_get_bool(const void *blob, int node, const char *prop_name)
664{
665 const s32 *cell;
666 int len;
667
668 debug("%s: %s\n", __func__, prop_name);
669 cell = fdt_getprop(blob, node, prop_name, &len);
670 return cell != NULL;
671}
Simon Glassed3ee5c2012-02-27 10:52:36 +0000672
Simon Glass57068a72015-01-05 20:05:26 -0700673int fdtdec_parse_phandle_with_args(const void *blob, int src_node,
674 const char *list_name,
675 const char *cells_name,
676 int cell_count, int index,
677 struct fdtdec_phandle_args *out_args)
678{
679 const __be32 *list, *list_end;
680 int rc = 0, size, cur_index = 0;
681 uint32_t count = 0;
682 int node = -1;
683 int phandle;
684
685 /* Retrieve the phandle list property */
686 list = fdt_getprop(blob, src_node, list_name, &size);
687 if (!list)
688 return -ENOENT;
689 list_end = list + size / sizeof(*list);
690
691 /* Loop over the phandles until all the requested entry is found */
692 while (list < list_end) {
693 rc = -EINVAL;
694 count = 0;
695
696 /*
697 * If phandle is 0, then it is an empty entry with no
698 * arguments. Skip forward to the next entry.
699 */
700 phandle = be32_to_cpup(list++);
701 if (phandle) {
702 /*
703 * Find the provider node and parse the #*-cells
704 * property to determine the argument length.
705 *
706 * This is not needed if the cell count is hard-coded
707 * (i.e. cells_name not set, but cell_count is set),
708 * except when we're going to return the found node
709 * below.
710 */
711 if (cells_name || cur_index == index) {
712 node = fdt_node_offset_by_phandle(blob,
713 phandle);
714 if (!node) {
715 debug("%s: could not find phandle\n",
716 fdt_get_name(blob, src_node,
717 NULL));
718 goto err;
719 }
720 }
721
722 if (cells_name) {
723 count = fdtdec_get_int(blob, node, cells_name,
724 -1);
725 if (count == -1) {
726 debug("%s: could not get %s for %s\n",
727 fdt_get_name(blob, src_node,
728 NULL),
729 cells_name,
730 fdt_get_name(blob, node,
731 NULL));
732 goto err;
733 }
734 } else {
735 count = cell_count;
736 }
737
738 /*
739 * Make sure that the arguments actually fit in the
740 * remaining property data length
741 */
742 if (list + count > list_end) {
743 debug("%s: arguments longer than property\n",
744 fdt_get_name(blob, src_node, NULL));
745 goto err;
746 }
747 }
748
749 /*
750 * All of the error cases above bail out of the loop, so at
751 * this point, the parsing is successful. If the requested
752 * index matches, then fill the out_args structure and return,
753 * or return -ENOENT for an empty entry.
754 */
755 rc = -ENOENT;
756 if (cur_index == index) {
757 if (!phandle)
758 goto err;
759
760 if (out_args) {
761 int i;
762
763 if (count > MAX_PHANDLE_ARGS) {
764 debug("%s: too many arguments %d\n",
765 fdt_get_name(blob, src_node,
766 NULL), count);
767 count = MAX_PHANDLE_ARGS;
768 }
769 out_args->node = node;
770 out_args->args_count = count;
771 for (i = 0; i < count; i++) {
772 out_args->args[i] =
773 be32_to_cpup(list++);
774 }
775 }
776
777 /* Found it! return success */
778 return 0;
779 }
780
781 node = -1;
782 list += count;
783 cur_index++;
784 }
785
786 /*
787 * Result will be one of:
788 * -ENOENT : index is for empty phandle
789 * -EINVAL : parsing error on data
790 * [1..n] : Number of phandle (count mode; when index = -1)
791 */
792 rc = index < 0 ? cur_index : -ENOENT;
793 err:
794 return rc;
795}
796
Anton Staffbed4d892012-04-17 09:01:28 +0000797int fdtdec_get_byte_array(const void *blob, int node, const char *prop_name,
798 u8 *array, int count)
799{
800 const u8 *cell;
801 int err;
802
803 cell = get_prop_check_min_len(blob, node, prop_name, count, &err);
804 if (!err)
805 memcpy(array, cell, count);
806 return err;
807}
808
809const u8 *fdtdec_locate_byte_array(const void *blob, int node,
810 const char *prop_name, int count)
811{
812 const u8 *cell;
813 int err;
814
815 cell = get_prop_check_min_len(blob, node, prop_name, count, &err);
816 if (err)
817 return NULL;
818 return cell;
819}
Abhilash Kesavan09258f12012-10-25 16:30:58 +0000820
Abhilash Kesavan09258f12012-10-25 16:30:58 +0000821int fdtdec_get_config_int(const void *blob, const char *prop_name,
822 int default_val)
823{
824 int config_node;
825
826 debug("%s: %s\n", __func__, prop_name);
827 config_node = fdt_path_offset(blob, "/config");
828 if (config_node < 0)
829 return default_val;
830 return fdtdec_get_int(blob, config_node, prop_name, default_val);
831}
Simon Glass332ab0d2012-10-25 16:30:59 +0000832
Gabe Black79289c02012-10-25 16:31:04 +0000833int fdtdec_get_config_bool(const void *blob, const char *prop_name)
834{
835 int config_node;
836 const void *prop;
837
838 debug("%s: %s\n", __func__, prop_name);
839 config_node = fdt_path_offset(blob, "/config");
840 if (config_node < 0)
841 return 0;
842 prop = fdt_get_property(blob, config_node, prop_name, NULL);
843
844 return prop != NULL;
845}
846
Simon Glass332ab0d2012-10-25 16:30:59 +0000847char *fdtdec_get_config_string(const void *blob, const char *prop_name)
848{
849 const char *nodep;
850 int nodeoffset;
851 int len;
852
853 debug("%s: %s\n", __func__, prop_name);
854 nodeoffset = fdt_path_offset(blob, "/config");
855 if (nodeoffset < 0)
856 return NULL;
857
858 nodep = fdt_getprop(blob, nodeoffset, prop_name, &len);
859 if (!nodep)
860 return NULL;
861
862 return (char *)nodep;
863}
Simon Glassf20c4612012-10-25 16:31:00 +0000864
Simon Glass76489832014-10-23 18:58:51 -0600865int fdtdec_decode_region(const void *blob, int node, const char *prop_name,
866 fdt_addr_t *basep, fdt_size_t *sizep)
Simon Glassf20c4612012-10-25 16:31:00 +0000867{
868 const fdt_addr_t *cell;
869 int len;
870
Simon Glass76489832014-10-23 18:58:51 -0600871 debug("%s: %s: %s\n", __func__, fdt_get_name(blob, node, NULL),
872 prop_name);
Simon Glassf20c4612012-10-25 16:31:00 +0000873 cell = fdt_getprop(blob, node, prop_name, &len);
Simon Glass76489832014-10-23 18:58:51 -0600874 if (!cell || (len < sizeof(fdt_addr_t) * 2)) {
875 debug("cell=%p, len=%d\n", cell, len);
Simon Glassf20c4612012-10-25 16:31:00 +0000876 return -1;
Simon Glass76489832014-10-23 18:58:51 -0600877 }
Simon Glassf20c4612012-10-25 16:31:00 +0000878
Simon Glass76489832014-10-23 18:58:51 -0600879 *basep = fdt_addr_to_cpu(*cell);
880 *sizep = fdt_size_to_cpu(cell[1]);
881 debug("%s: base=%08lx, size=%lx\n", __func__, (ulong)*basep,
882 (ulong)*sizep);
883
Simon Glassf20c4612012-10-25 16:31:00 +0000884 return 0;
885}
Simon Glass006e73b2014-02-27 13:26:01 -0700886
887/**
888 * Read a flash entry from the fdt
889 *
890 * @param blob FDT blob
891 * @param node Offset of node to read
892 * @param name Name of node being read
893 * @param entry Place to put offset and size of this node
894 * @return 0 if ok, -ve on error
895 */
896int fdtdec_read_fmap_entry(const void *blob, int node, const char *name,
897 struct fmap_entry *entry)
898{
Simon Glassf3cc44f2014-10-23 18:58:52 -0600899 const char *prop;
Simon Glass006e73b2014-02-27 13:26:01 -0700900 u32 reg[2];
901
902 if (fdtdec_get_int_array(blob, node, "reg", reg, 2)) {
903 debug("Node '%s' has bad/missing 'reg' property\n", name);
904 return -FDT_ERR_NOTFOUND;
905 }
906 entry->offset = reg[0];
907 entry->length = reg[1];
Simon Glassf3cc44f2014-10-23 18:58:52 -0600908 entry->used = fdtdec_get_int(blob, node, "used", entry->length);
909 prop = fdt_getprop(blob, node, "compress", NULL);
910 entry->compress_algo = prop && !strcmp(prop, "lzo") ?
911 FMAP_COMPRESS_LZO : FMAP_COMPRESS_NONE;
912 prop = fdt_getprop(blob, node, "hash", &entry->hash_size);
913 entry->hash_algo = prop ? FMAP_HASH_SHA256 : FMAP_HASH_NONE;
914 entry->hash = (uint8_t *)prop;
Simon Glass006e73b2014-02-27 13:26:01 -0700915
916 return 0;
917}
Thierry Reding56f42242014-08-26 17:33:53 +0200918
919static u64 fdtdec_get_number(const fdt32_t *ptr, unsigned int cells)
920{
921 u64 number = 0;
922
923 while (cells--)
924 number = (number << 32) | fdt32_to_cpu(*ptr++);
925
926 return number;
927}
928
929int fdt_get_resource(const void *fdt, int node, const char *property,
930 unsigned int index, struct fdt_resource *res)
931{
932 const fdt32_t *ptr, *end;
933 int na, ns, len, parent;
934 unsigned int i = 0;
935
936 parent = fdt_parent_offset(fdt, node);
937 if (parent < 0)
938 return parent;
939
940 na = fdt_address_cells(fdt, parent);
941 ns = fdt_size_cells(fdt, parent);
942
943 ptr = fdt_getprop(fdt, node, property, &len);
944 if (!ptr)
945 return len;
946
947 end = ptr + len / sizeof(*ptr);
948
949 while (ptr + na + ns <= end) {
950 if (i == index) {
951 res->start = res->end = fdtdec_get_number(ptr, na);
952 res->end += fdtdec_get_number(&ptr[na], ns) - 1;
953 return 0;
954 }
955
956 ptr += na + ns;
957 i++;
958 }
959
960 return -FDT_ERR_NOTFOUND;
961}
962
963int fdt_get_named_resource(const void *fdt, int node, const char *property,
964 const char *prop_names, const char *name,
965 struct fdt_resource *res)
966{
967 int index;
968
969 index = fdt_find_string(fdt, node, prop_names, name);
970 if (index < 0)
971 return index;
972
973 return fdt_get_resource(fdt, node, property, index, res);
974}
Thierry Reding9f85eee2014-08-26 17:33:54 +0200975
Simon Glass26403872014-10-23 18:58:56 -0600976int fdtdec_decode_memory_region(const void *blob, int config_node,
977 const char *mem_type, const char *suffix,
978 fdt_addr_t *basep, fdt_size_t *sizep)
979{
980 char prop_name[50];
981 const char *mem;
982 fdt_size_t size, offset_size;
983 fdt_addr_t base, offset;
984 int node;
985
986 if (config_node == -1) {
987 config_node = fdt_path_offset(blob, "/config");
988 if (config_node < 0) {
989 debug("%s: Cannot find /config node\n", __func__);
990 return -ENOENT;
991 }
992 }
993 if (!suffix)
994 suffix = "";
995
996 snprintf(prop_name, sizeof(prop_name), "%s-memory%s", mem_type,
997 suffix);
998 mem = fdt_getprop(blob, config_node, prop_name, NULL);
999 if (!mem) {
1000 debug("%s: No memory type for '%s', using /memory\n", __func__,
1001 prop_name);
1002 mem = "/memory";
1003 }
1004
1005 node = fdt_path_offset(blob, mem);
1006 if (node < 0) {
1007 debug("%s: Failed to find node '%s': %s\n", __func__, mem,
1008 fdt_strerror(node));
1009 return -ENOENT;
1010 }
1011
1012 /*
1013 * Not strictly correct - the memory may have multiple banks. We just
1014 * use the first
1015 */
1016 if (fdtdec_decode_region(blob, node, "reg", &base, &size)) {
1017 debug("%s: Failed to decode memory region %s\n", __func__,
1018 mem);
1019 return -EINVAL;
1020 }
1021
1022 snprintf(prop_name, sizeof(prop_name), "%s-offset%s", mem_type,
1023 suffix);
1024 if (fdtdec_decode_region(blob, config_node, prop_name, &offset,
1025 &offset_size)) {
1026 debug("%s: Failed to decode memory region '%s'\n", __func__,
1027 prop_name);
1028 return -EINVAL;
1029 }
1030
1031 *basep = base + offset;
1032 *sizep = offset_size;
1033
1034 return 0;
1035}
Heiko Schocher29a23f92014-03-03 12:19:30 +01001036#endif