blob: 480442f871a9f842f7d71e9b1b8867602587d331 [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
Michal Simeke46431e2012-07-11 02:26:38 +000014#include <asm/gpio.h>
Simon Glassed3ee5c2012-02-27 10:52:36 +000015
Simon Glassb5220bc2011-10-24 19:15:32 +000016DECLARE_GLOBAL_DATA_PTR;
17
18/*
19 * Here are the type we know about. One day we might allow drivers to
20 * register. For now we just put them here. The COMPAT macro allows us to
21 * turn this into a sparse list later, and keeps the ID with the name.
22 */
23#define COMPAT(id, name) name
24static const char * const compat_names[COMPAT_COUNT] = {
Simon Glassf88fe2d2012-02-27 10:52:34 +000025 COMPAT(UNKNOWN, "<none>"),
Simon Glass87f938c2012-02-27 10:52:49 +000026 COMPAT(NVIDIA_TEGRA20_USB, "nvidia,tegra20-ehci"),
Jim Lin7e44d932013-06-21 19:05:47 +080027 COMPAT(NVIDIA_TEGRA30_USB, "nvidia,tegra30-ehci"),
28 COMPAT(NVIDIA_TEGRA114_USB, "nvidia,tegra114-ehci"),
Tom Warrene32624e2013-02-08 07:25:30 +000029 COMPAT(NVIDIA_TEGRA114_I2C, "nvidia,tegra114-i2c"),
Yen Lin96a78ac2012-03-06 19:00:23 +000030 COMPAT(NVIDIA_TEGRA20_I2C, "nvidia,tegra20-i2c"),
31 COMPAT(NVIDIA_TEGRA20_DVC, "nvidia,tegra20-i2c-dvc"),
Jimmy Zhang0e35ad02012-04-02 13:18:52 +000032 COMPAT(NVIDIA_TEGRA20_EMC, "nvidia,tegra20-emc"),
33 COMPAT(NVIDIA_TEGRA20_EMC_TABLE, "nvidia,tegra20-emc-table"),
Rakesh Iyer6642a682012-04-17 09:01:35 +000034 COMPAT(NVIDIA_TEGRA20_KBC, "nvidia,tegra20-kbc"),
Jim Lin312693c2012-07-29 20:53:29 +000035 COMPAT(NVIDIA_TEGRA20_NAND, "nvidia,tegra20-nand"),
Simon Glasse1ae0d12012-10-17 13:24:49 +000036 COMPAT(NVIDIA_TEGRA20_PWM, "nvidia,tegra20-pwm"),
Wei Ni87540de2012-10-17 13:24:50 +000037 COMPAT(NVIDIA_TEGRA20_DC, "nvidia,tegra20-dc"),
Stephen Warrena73ca472014-01-24 12:46:06 -070038 COMPAT(NVIDIA_TEGRA124_SDMMC, "nvidia,tegra124-sdhci"),
Tom Warrenf4e4e0b2013-03-04 14:07:18 -070039 COMPAT(NVIDIA_TEGRA30_SDMMC, "nvidia,tegra30-sdhci"),
Tom Warrenc9aa8312013-02-21 12:31:30 +000040 COMPAT(NVIDIA_TEGRA20_SDMMC, "nvidia,tegra20-sdhci"),
Allen Martin8f1b46b2013-01-29 13:51:24 +000041 COMPAT(NVIDIA_TEGRA20_SFLASH, "nvidia,tegra20-sflash"),
Allen Martinb19f5742013-01-29 13:51:28 +000042 COMPAT(NVIDIA_TEGRA20_SLINK, "nvidia,tegra20-slink"),
Allen Martinc3bb3c82013-03-16 18:58:09 +000043 COMPAT(NVIDIA_TEGRA114_SPI, "nvidia,tegra114-spi"),
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"),
Rajeshwari Shinde5d506592012-12-26 20:03:20 +000049 COMPAT(SAMSUNG_EXYNOS_SPI, "samsung,exynos-spi"),
Hung-ying Tyan88364382013-05-15 18:27:28 +080050 COMPAT(GOOGLE_CROS_EC, "google,cros-ec"),
Hung-ying Tyan713cb682013-05-15 18:27:32 +080051 COMPAT(GOOGLE_CROS_EC_KEYB, "google,cros-ec-keyb"),
Rajeshwari Shinde6abd1622013-01-07 23:35:05 +000052 COMPAT(SAMSUNG_EXYNOS_EHCI, "samsung,exynos-ehci"),
Vivek Gautam108b85b2013-09-14 14:02:48 +053053 COMPAT(SAMSUNG_EXYNOS5_XHCI, "samsung,exynos5250-xhci"),
Rajeshwari Shinde6abd1622013-01-07 23:35:05 +000054 COMPAT(SAMSUNG_EXYNOS_USB_PHY, "samsung,exynos-usb-phy"),
Vivek Gautam108b85b2013-09-14 14:02:48 +053055 COMPAT(SAMSUNG_EXYNOS5_USB3_PHY, "samsung,exynos5250-usb3-phy"),
Akshay Saraswat618766c2013-02-25 01:13:01 +000056 COMPAT(SAMSUNG_EXYNOS_TMU, "samsung,exynos-tmu"),
Ajay Kumard7377b52013-02-21 23:53:00 +000057 COMPAT(SAMSUNG_EXYNOS_FIMD, "samsung,exynos-fimd"),
Piotr Wilczekde461c52014-03-07 14:59:39 +010058 COMPAT(SAMSUNG_EXYNOS_MIPI_DSI, "samsung,exynos-mipi-dsi"),
Ajay Kumar1e4706a2013-02-21 23:53:05 +000059 COMPAT(SAMSUNG_EXYNOS5_DP, "samsung,exynos5-dp"),
Jaehoon Chung7d3ca0f2014-05-16 13:59:51 +090060 COMPAT(SAMSUNG_EXYNOS_DWMMC, "samsung,exynos-dwmmc"),
Piotr Wilczek3577fe82014-03-07 14:59:41 +010061 COMPAT(SAMSUNG_EXYNOS_MMC, "samsung,exynos-mmc"),
Rajeshwari Shindeee1e3c22013-06-24 16:47:20 +053062 COMPAT(SAMSUNG_EXYNOS_SERIAL, "samsung,exynos4210-uart"),
Rajeshwari Shindecd577e22013-01-08 21:03:38 +000063 COMPAT(MAXIM_MAX77686_PMIC, "maxim,max77686_pmic"),
Simon Glassbb8215f2013-03-11 06:08:08 +000064 COMPAT(GENERIC_SPI_FLASH, "spi-flash"),
Rajeshwari Shinde7772bb72013-02-14 19:46:15 +000065 COMPAT(MAXIM_98095_CODEC, "maxim,max98095-codec"),
Rong Changf6267992013-04-12 10:44:57 +000066 COMPAT(INFINEON_SLB9635_TPM, "infineon,slb9635-tpm"),
Vincent Palatinec34fa52013-04-12 11:04:36 +000067 COMPAT(INFINEON_SLB9645_TPM, "infineon,slb9645-tpm"),
naveen krishna chatradhiecbd7e12013-04-29 15:58:52 -070068 COMPAT(SAMSUNG_EXYNOS5_I2C, "samsung,exynos5-hsi2c"),
Simon Glassdf93d902014-02-27 13:26:12 -070069 COMPAT(SANDBOX_HOST_EMULATION, "sandbox,host-emulation"),
Simon Glass7d95f2a2014-02-27 13:26:19 -070070 COMPAT(SANDBOX_LCD_SDL, "sandbox,lcd-sdl"),
Tom Wai-Hong Tamac1058f2014-05-20 06:01:36 -060071 COMPAT(TI_TPS65090, "ti,tps65090"),
Simon Glassa9cf6da2014-05-20 06:01:42 -060072 COMPAT(COMPAT_NXP_PTN3460, "nxp,ptn3460"),
Ajay Kumar45c480c2014-09-05 16:53:33 +053073 COMPAT(SAMSUNG_EXYNOS_SYSMMU, "samsung,sysmmu-v3.3"),
Vadim Bendebury9e8f6642014-09-05 16:53:34 +053074 COMPAT(PARADE_PS8625, "parade,ps8625"),
Simon Glassca42d3f2014-10-10 07:30:14 -060075 COMPAT(COMPAT_INTEL_LPC, "intel,lpc"),
Simon Glass77f9b1f2014-11-12 22:42:21 -070076 COMPAT(INTEL_MICROCODE, "intel,microcode"),
Simon Glass65dd74a2014-11-12 22:42:28 -070077 COMPAT(MEMORY_SPD, "memory-spd"),
Simon Glass3ac83932014-11-14 18:18:38 -070078 COMPAT(INTEL_PANTHERPOINT_AHCI, "intel,pantherpoint-ahci"),
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
Che-Liang Chiouaadef0a2012-10-25 16:31:05 +0000122uint64_t fdtdec_get_uint64(const void *blob, int node, const char *prop_name,
123 uint64_t default_val)
124{
125 const uint64_t *cell64;
126 int length;
127
128 cell64 = fdt_getprop(blob, node, prop_name, &length);
129 if (!cell64 || length < sizeof(*cell64))
130 return default_val;
131
132 return fdt64_to_cpu(*cell64);
133}
134
Simon Glassf88fe2d2012-02-27 10:52:34 +0000135int fdtdec_get_is_enabled(const void *blob, int node)
Simon Glassb5220bc2011-10-24 19:15:32 +0000136{
137 const char *cell;
138
Simon Glassf88fe2d2012-02-27 10:52:34 +0000139 /*
140 * It should say "okay", so only allow that. Some fdts use "ok" but
141 * this is a bug. Please fix your device tree source file. See here
142 * for discussion:
143 *
144 * http://www.mail-archive.com/u-boot@lists.denx.de/msg71598.html
145 */
Simon Glassb5220bc2011-10-24 19:15:32 +0000146 cell = fdt_getprop(blob, node, "status", NULL);
147 if (cell)
Simon Glassf88fe2d2012-02-27 10:52:34 +0000148 return 0 == strcmp(cell, "okay");
149 return 1;
Simon Glassb5220bc2011-10-24 19:15:32 +0000150}
151
Gerald Van Baren7cde3972012-11-12 23:13:54 -0500152enum fdt_compat_id fdtdec_lookup(const void *blob, int node)
Simon Glassb5220bc2011-10-24 19:15:32 +0000153{
154 enum fdt_compat_id id;
155
156 /* Search our drivers */
157 for (id = COMPAT_UNKNOWN; id < COMPAT_COUNT; id++)
158 if (0 == fdt_node_check_compatible(blob, node,
159 compat_names[id]))
160 return id;
161 return COMPAT_UNKNOWN;
162}
163
164int fdtdec_next_compatible(const void *blob, int node,
165 enum fdt_compat_id id)
166{
167 return fdt_node_offset_by_compatible(blob, node, compat_names[id]);
168}
169
Simon Glass3ddecfc2012-04-02 13:18:42 +0000170int fdtdec_next_compatible_subnode(const void *blob, int node,
171 enum fdt_compat_id id, int *depthp)
172{
173 do {
174 node = fdt_next_node(blob, node, depthp);
175 } while (*depthp > 1);
176
177 /* If this is a direct subnode, and compatible, return it */
178 if (*depthp == 1 && 0 == fdt_node_check_compatible(
179 blob, node, compat_names[id]))
180 return node;
181
182 return -FDT_ERR_NOTFOUND;
183}
184
Simon Glassb5220bc2011-10-24 19:15:32 +0000185int fdtdec_next_alias(const void *blob, const char *name,
186 enum fdt_compat_id id, int *upto)
187{
188#define MAX_STR_LEN 20
189 char str[MAX_STR_LEN + 20];
190 int node, err;
191
192 /* snprintf() is not available */
193 assert(strlen(name) < MAX_STR_LEN);
194 sprintf(str, "%.*s%d", MAX_STR_LEN, name, *upto);
Simon Glass00878472012-10-31 14:02:42 +0000195 node = fdt_path_offset(blob, str);
Simon Glassb5220bc2011-10-24 19:15:32 +0000196 if (node < 0)
197 return node;
198 err = fdt_node_check_compatible(blob, node, compat_names[id]);
199 if (err < 0)
200 return err;
Simon Glassf88fe2d2012-02-27 10:52:34 +0000201 if (err)
202 return -FDT_ERR_NOTFOUND;
203 (*upto)++;
204 return node;
Simon Glassb5220bc2011-10-24 19:15:32 +0000205}
206
Simon Glassa53f4a22012-01-17 08:20:50 +0000207int fdtdec_find_aliases_for_id(const void *blob, const char *name,
208 enum fdt_compat_id id, int *node_list, int maxcount)
209{
Simon Glassc6782272012-02-03 15:13:53 +0000210 memset(node_list, '\0', sizeof(*node_list) * maxcount);
211
212 return fdtdec_add_aliases_for_id(blob, name, id, node_list, maxcount);
213}
214
215/* TODO: Can we tighten this code up a little? */
216int fdtdec_add_aliases_for_id(const void *blob, const char *name,
217 enum fdt_compat_id id, int *node_list, int maxcount)
218{
Simon Glassa53f4a22012-01-17 08:20:50 +0000219 int name_len = strlen(name);
220 int nodes[maxcount];
221 int num_found = 0;
222 int offset, node;
223 int alias_node;
224 int count;
225 int i, j;
226
227 /* find the alias node if present */
228 alias_node = fdt_path_offset(blob, "/aliases");
229
230 /*
231 * start with nothing, and we can assume that the root node can't
232 * match
233 */
234 memset(nodes, '\0', sizeof(nodes));
235
236 /* First find all the compatible nodes */
237 for (node = count = 0; node >= 0 && count < maxcount;) {
238 node = fdtdec_next_compatible(blob, node, id);
239 if (node >= 0)
240 nodes[count++] = node;
241 }
242 if (node >= 0)
243 debug("%s: warning: maxcount exceeded with alias '%s'\n",
244 __func__, name);
245
246 /* Now find all the aliases */
Simon Glassa53f4a22012-01-17 08:20:50 +0000247 for (offset = fdt_first_property_offset(blob, alias_node);
248 offset > 0;
249 offset = fdt_next_property_offset(blob, offset)) {
250 const struct fdt_property *prop;
251 const char *path;
252 int number;
253 int found;
254
255 node = 0;
256 prop = fdt_get_property_by_offset(blob, offset, NULL);
257 path = fdt_string(blob, fdt32_to_cpu(prop->nameoff));
258 if (prop->len && 0 == strncmp(path, name, name_len))
259 node = fdt_path_offset(blob, prop->data);
260 if (node <= 0)
261 continue;
262
263 /* Get the alias number */
264 number = simple_strtoul(path + name_len, NULL, 10);
265 if (number < 0 || number >= maxcount) {
266 debug("%s: warning: alias '%s' is out of range\n",
267 __func__, path);
268 continue;
269 }
270
271 /* Make sure the node we found is actually in our list! */
272 found = -1;
273 for (j = 0; j < count; j++)
274 if (nodes[j] == node) {
275 found = j;
276 break;
277 }
278
279 if (found == -1) {
280 debug("%s: warning: alias '%s' points to a node "
281 "'%s' that is missing or is not compatible "
282 " with '%s'\n", __func__, path,
283 fdt_get_name(blob, node, NULL),
284 compat_names[id]);
285 continue;
286 }
287
288 /*
289 * Add this node to our list in the right place, and mark
290 * it as done.
291 */
292 if (fdtdec_get_is_enabled(blob, node)) {
Simon Glassc6782272012-02-03 15:13:53 +0000293 if (node_list[number]) {
294 debug("%s: warning: alias '%s' requires that "
295 "a node be placed in the list in a "
296 "position which is already filled by "
297 "node '%s'\n", __func__, path,
298 fdt_get_name(blob, node, NULL));
299 continue;
300 }
Simon Glassa53f4a22012-01-17 08:20:50 +0000301 node_list[number] = node;
302 if (number >= num_found)
303 num_found = number + 1;
304 }
Simon Glassc6782272012-02-03 15:13:53 +0000305 nodes[found] = 0;
Simon Glassa53f4a22012-01-17 08:20:50 +0000306 }
307
308 /* Add any nodes not mentioned by an alias */
309 for (i = j = 0; i < maxcount; i++) {
310 if (!node_list[i]) {
311 for (; j < maxcount; j++)
312 if (nodes[j] &&
313 fdtdec_get_is_enabled(blob, nodes[j]))
314 break;
315
316 /* Have we run out of nodes to add? */
317 if (j == maxcount)
318 break;
319
320 assert(!node_list[i]);
321 node_list[i] = nodes[j++];
322 if (i >= num_found)
323 num_found = i + 1;
324 }
325 }
326
327 return num_found;
328}
329
Simon Glass5c33c9f2014-07-23 06:55:09 -0600330int fdtdec_get_alias_seq(const void *blob, const char *base, int offset,
331 int *seqp)
332{
333 int base_len = strlen(base);
334 const char *find_name;
335 int find_namelen;
336 int prop_offset;
337 int aliases;
338
339 find_name = fdt_get_name(blob, offset, &find_namelen);
340 debug("Looking for '%s' at %d, name %s\n", base, offset, find_name);
341
342 aliases = fdt_path_offset(blob, "/aliases");
343 for (prop_offset = fdt_first_property_offset(blob, aliases);
344 prop_offset > 0;
345 prop_offset = fdt_next_property_offset(blob, prop_offset)) {
346 const char *prop;
347 const char *name;
348 const char *slash;
349 const char *p;
350 int len;
351
352 prop = fdt_getprop_by_offset(blob, prop_offset, &name, &len);
353 debug(" - %s, %s\n", name, prop);
354 if (len < find_namelen || *prop != '/' || prop[len - 1] ||
355 strncmp(name, base, base_len))
356 continue;
357
358 slash = strrchr(prop, '/');
359 if (strcmp(slash + 1, find_name))
360 continue;
Simon Glassa88340d2014-11-11 10:46:20 -0700361 for (p = name + strlen(name) - 1; p > name; p--) {
362 if (!isdigit(*p)) {
363 *seqp = simple_strtoul(p + 1, NULL, 10);
Simon Glass5c33c9f2014-07-23 06:55:09 -0600364 debug("Found seq %d\n", *seqp);
365 return 0;
366 }
367 }
368 }
369
370 debug("Not found\n");
371 return -ENOENT;
372}
373
Simon Glass3234aa42014-07-23 06:55:16 -0600374int fdtdec_get_alias_node(const void *blob, const char *name)
375{
376 const char *prop;
377 int alias_node;
378 int len;
379
380 if (!blob)
381 return -FDT_ERR_NOTFOUND;
382 alias_node = fdt_path_offset(blob, "/aliases");
383 prop = fdt_getprop(blob, alias_node, name, &len);
384 if (!prop)
385 return -FDT_ERR_NOTFOUND;
386 return fdt_path_offset(blob, prop);
387}
388
Simon Glassaac07d42014-09-04 16:27:24 -0600389int fdtdec_get_chosen_node(const void *blob, const char *name)
390{
391 const char *prop;
392 int chosen_node;
393 int len;
394
395 if (!blob)
396 return -FDT_ERR_NOTFOUND;
397 chosen_node = fdt_path_offset(blob, "/chosen");
398 prop = fdt_getprop(blob, chosen_node, name, &len);
399 if (!prop)
400 return -FDT_ERR_NOTFOUND;
401 return fdt_path_offset(blob, prop);
402}
403
Simon Glass9a263e52012-03-28 10:08:24 +0000404int fdtdec_check_fdt(void)
405{
406 /*
407 * We must have an FDT, but we cannot panic() yet since the console
408 * is not ready. So for now, just assert(). Boards which need an early
409 * FDT (prior to console ready) will need to make their own
410 * arrangements and do their own checks.
411 */
412 assert(!fdtdec_prepare_fdt());
413 return 0;
414}
415
Simon Glassb5220bc2011-10-24 19:15:32 +0000416/*
417 * This function is a little odd in that it accesses global data. At some
418 * point if the architecture board.c files merge this will make more sense.
419 * Even now, it is common code.
420 */
Simon Glass9a263e52012-03-28 10:08:24 +0000421int fdtdec_prepare_fdt(void)
Simon Glassb5220bc2011-10-24 19:15:32 +0000422{
Simon Glassc309c2d2013-04-20 08:42:46 +0000423 if (!gd->fdt_blob || ((uintptr_t)gd->fdt_blob & 3) ||
424 fdt_check_header(gd->fdt_blob)) {
Simon Glass9a263e52012-03-28 10:08:24 +0000425 printf("No valid FDT found - please append one to U-Boot "
426 "binary, use u-boot-dtb.bin or define "
Simon Glassa733b062013-04-26 02:53:43 +0000427 "CONFIG_OF_EMBED. For sandbox, use -d <file.dtb>\n");
Simon Glass9a263e52012-03-28 10:08:24 +0000428 return -1;
429 }
Simon Glassb5220bc2011-10-24 19:15:32 +0000430 return 0;
431}
Simon Glassd17da652012-02-27 10:52:35 +0000432
433int fdtdec_lookup_phandle(const void *blob, int node, const char *prop_name)
434{
435 const u32 *phandle;
436 int lookup;
437
Simon Glass1cb23232012-07-12 05:25:01 +0000438 debug("%s: %s\n", __func__, prop_name);
Simon Glassd17da652012-02-27 10:52:35 +0000439 phandle = fdt_getprop(blob, node, prop_name, NULL);
440 if (!phandle)
441 return -FDT_ERR_NOTFOUND;
442
443 lookup = fdt_node_offset_by_phandle(blob, fdt32_to_cpu(*phandle));
444 return lookup;
445}
446
447/**
448 * Look up a property in a node and check that it has a minimum length.
449 *
450 * @param blob FDT blob
451 * @param node node to examine
452 * @param prop_name name of property to find
453 * @param min_len minimum property length in bytes
454 * @param err 0 if ok, or -FDT_ERR_NOTFOUND if the property is not
455 found, or -FDT_ERR_BADLAYOUT if not enough data
456 * @return pointer to cell, which is only valid if err == 0
457 */
458static const void *get_prop_check_min_len(const void *blob, int node,
459 const char *prop_name, int min_len, int *err)
460{
461 const void *cell;
462 int len;
463
464 debug("%s: %s\n", __func__, prop_name);
465 cell = fdt_getprop(blob, node, prop_name, &len);
466 if (!cell)
467 *err = -FDT_ERR_NOTFOUND;
468 else if (len < min_len)
469 *err = -FDT_ERR_BADLAYOUT;
470 else
471 *err = 0;
472 return cell;
473}
474
475int fdtdec_get_int_array(const void *blob, int node, const char *prop_name,
476 u32 *array, int count)
477{
478 const u32 *cell;
479 int i, err = 0;
480
481 debug("%s: %s\n", __func__, prop_name);
482 cell = get_prop_check_min_len(blob, node, prop_name,
483 sizeof(u32) * count, &err);
484 if (!err) {
485 for (i = 0; i < count; i++)
486 array[i] = fdt32_to_cpu(cell[i]);
487 }
488 return err;
489}
490
Simon Glassa9f04d42014-11-10 18:00:19 -0700491int fdtdec_get_int_array_count(const void *blob, int node,
492 const char *prop_name, u32 *array, int count)
493{
494 const u32 *cell;
495 int len, elems;
496 int i;
497
498 debug("%s: %s\n", __func__, prop_name);
499 cell = fdt_getprop(blob, node, prop_name, &len);
500 if (!cell)
501 return -FDT_ERR_NOTFOUND;
502 elems = len / sizeof(u32);
503 if (count > elems)
504 count = elems;
505 for (i = 0; i < count; i++)
506 array[i] = fdt32_to_cpu(cell[i]);
507
508 return count;
509}
510
Simon Glass96875e72012-04-02 13:18:41 +0000511const u32 *fdtdec_locate_array(const void *blob, int node,
512 const char *prop_name, int count)
513{
514 const u32 *cell;
515 int err;
516
517 cell = get_prop_check_min_len(blob, node, prop_name,
518 sizeof(u32) * count, &err);
519 return err ? NULL : cell;
520}
521
Simon Glassd17da652012-02-27 10:52:35 +0000522int fdtdec_get_bool(const void *blob, int node, const char *prop_name)
523{
524 const s32 *cell;
525 int len;
526
527 debug("%s: %s\n", __func__, prop_name);
528 cell = fdt_getprop(blob, node, prop_name, &len);
529 return cell != NULL;
530}
Simon Glassed3ee5c2012-02-27 10:52:36 +0000531
532/**
533 * Decode a list of GPIOs from an FDT. This creates a list of GPIOs with no
534 * terminating item.
535 *
536 * @param blob FDT blob to use
537 * @param node Node to look at
538 * @param prop_name Node property name
539 * @param gpio Array of gpio elements to fill from FDT. This will be
540 * untouched if either 0 or an error is returned
541 * @param max_count Maximum number of elements allowed
542 * @return number of GPIOs read if ok, -FDT_ERR_BADLAYOUT if max_count would
543 * be exceeded, or -FDT_ERR_NOTFOUND if the property is missing.
544 */
Abhilash Kesavan5921f6a2012-10-25 16:31:01 +0000545int fdtdec_decode_gpios(const void *blob, int node, const char *prop_name,
546 struct fdt_gpio_state *gpio, int max_count)
Simon Glassed3ee5c2012-02-27 10:52:36 +0000547{
548 const struct fdt_property *prop;
549 const u32 *cell;
550 const char *name;
551 int len, i;
552
553 debug("%s: %s\n", __func__, prop_name);
554 assert(max_count > 0);
555 prop = fdt_get_property(blob, node, prop_name, &len);
556 if (!prop) {
Simon Glass1cb23232012-07-12 05:25:01 +0000557 debug("%s: property '%s' missing\n", __func__, prop_name);
Simon Glassed3ee5c2012-02-27 10:52:36 +0000558 return -FDT_ERR_NOTFOUND;
559 }
560
561 /* We will use the name to tag the GPIO */
562 name = fdt_string(blob, fdt32_to_cpu(prop->nameoff));
563 cell = (u32 *)prop->data;
564 len /= sizeof(u32) * 3; /* 3 cells per GPIO record */
565 if (len > max_count) {
Simon Glass1cb23232012-07-12 05:25:01 +0000566 debug(" %s: too many GPIOs / cells for "
Simon Glassed3ee5c2012-02-27 10:52:36 +0000567 "property '%s'\n", __func__, prop_name);
568 return -FDT_ERR_BADLAYOUT;
569 }
570
571 /* Read out the GPIO data from the cells */
572 for (i = 0; i < len; i++, cell += 3) {
573 gpio[i].gpio = fdt32_to_cpu(cell[1]);
574 gpio[i].flags = fdt32_to_cpu(cell[2]);
575 gpio[i].name = name;
576 }
577
578 return len;
579}
580
581int fdtdec_decode_gpio(const void *blob, int node, const char *prop_name,
582 struct fdt_gpio_state *gpio)
583{
584 int err;
585
586 debug("%s: %s\n", __func__, prop_name);
587 gpio->gpio = FDT_GPIO_NONE;
588 gpio->name = NULL;
589 err = fdtdec_decode_gpios(blob, node, prop_name, gpio, 1);
590 return err == 1 ? 0 : err;
591}
592
Sean Paul202ff752012-10-25 16:31:06 +0000593int fdtdec_get_gpio(struct fdt_gpio_state *gpio)
594{
595 int val;
596
597 if (!fdt_gpio_isvalid(gpio))
598 return -1;
599
600 val = gpio_get_value(gpio->gpio);
601 return gpio->flags & FDT_GPIO_ACTIVE_LOW ? val ^ 1 : val;
602}
603
604int fdtdec_set_gpio(struct fdt_gpio_state *gpio, int val)
605{
606 if (!fdt_gpio_isvalid(gpio))
607 return -1;
608
609 val = gpio->flags & FDT_GPIO_ACTIVE_LOW ? val ^ 1 : val;
610 return gpio_set_value(gpio->gpio, val);
611}
612
Simon Glassed3ee5c2012-02-27 10:52:36 +0000613int fdtdec_setup_gpio(struct fdt_gpio_state *gpio)
614{
615 /*
616 * Return success if there is no GPIO defined. This is used for
617 * optional GPIOs)
618 */
619 if (!fdt_gpio_isvalid(gpio))
620 return 0;
621
622 if (gpio_request(gpio->gpio, gpio->name))
623 return -1;
624 return 0;
625}
Anton Staffbed4d892012-04-17 09:01:28 +0000626
627int fdtdec_get_byte_array(const void *blob, int node, const char *prop_name,
628 u8 *array, int count)
629{
630 const u8 *cell;
631 int err;
632
633 cell = get_prop_check_min_len(blob, node, prop_name, count, &err);
634 if (!err)
635 memcpy(array, cell, count);
636 return err;
637}
638
639const u8 *fdtdec_locate_byte_array(const void *blob, int node,
640 const char *prop_name, int count)
641{
642 const u8 *cell;
643 int err;
644
645 cell = get_prop_check_min_len(blob, node, prop_name, count, &err);
646 if (err)
647 return NULL;
648 return cell;
649}
Abhilash Kesavan09258f12012-10-25 16:30:58 +0000650
Abhilash Kesavan09258f12012-10-25 16:30:58 +0000651int fdtdec_get_config_int(const void *blob, const char *prop_name,
652 int default_val)
653{
654 int config_node;
655
656 debug("%s: %s\n", __func__, prop_name);
657 config_node = fdt_path_offset(blob, "/config");
658 if (config_node < 0)
659 return default_val;
660 return fdtdec_get_int(blob, config_node, prop_name, default_val);
661}
Simon Glass332ab0d2012-10-25 16:30:59 +0000662
Gabe Black79289c02012-10-25 16:31:04 +0000663int fdtdec_get_config_bool(const void *blob, const char *prop_name)
664{
665 int config_node;
666 const void *prop;
667
668 debug("%s: %s\n", __func__, prop_name);
669 config_node = fdt_path_offset(blob, "/config");
670 if (config_node < 0)
671 return 0;
672 prop = fdt_get_property(blob, config_node, prop_name, NULL);
673
674 return prop != NULL;
675}
676
Simon Glass332ab0d2012-10-25 16:30:59 +0000677char *fdtdec_get_config_string(const void *blob, const char *prop_name)
678{
679 const char *nodep;
680 int nodeoffset;
681 int len;
682
683 debug("%s: %s\n", __func__, prop_name);
684 nodeoffset = fdt_path_offset(blob, "/config");
685 if (nodeoffset < 0)
686 return NULL;
687
688 nodep = fdt_getprop(blob, nodeoffset, prop_name, &len);
689 if (!nodep)
690 return NULL;
691
692 return (char *)nodep;
693}
Simon Glassf20c4612012-10-25 16:31:00 +0000694
695int fdtdec_decode_region(const void *blob, int node,
696 const char *prop_name, void **ptrp, size_t *size)
697{
698 const fdt_addr_t *cell;
699 int len;
700
701 debug("%s: %s\n", __func__, prop_name);
702 cell = fdt_getprop(blob, node, prop_name, &len);
703 if (!cell || (len != sizeof(fdt_addr_t) * 2))
704 return -1;
705
Simon Glass370b6c52013-11-10 10:26:54 -0700706 *ptrp = map_sysmem(fdt_addr_to_cpu(*cell), *size);
Simon Glassf20c4612012-10-25 16:31:00 +0000707 *size = fdt_size_to_cpu(cell[1]);
708 debug("%s: size=%zx\n", __func__, *size);
709 return 0;
710}
Simon Glass006e73b2014-02-27 13:26:01 -0700711
712/**
713 * Read a flash entry from the fdt
714 *
715 * @param blob FDT blob
716 * @param node Offset of node to read
717 * @param name Name of node being read
718 * @param entry Place to put offset and size of this node
719 * @return 0 if ok, -ve on error
720 */
721int fdtdec_read_fmap_entry(const void *blob, int node, const char *name,
722 struct fmap_entry *entry)
723{
724 u32 reg[2];
725
726 if (fdtdec_get_int_array(blob, node, "reg", reg, 2)) {
727 debug("Node '%s' has bad/missing 'reg' property\n", name);
728 return -FDT_ERR_NOTFOUND;
729 }
730 entry->offset = reg[0];
731 entry->length = reg[1];
732
733 return 0;
734}
Thierry Reding56f42242014-08-26 17:33:53 +0200735
736static u64 fdtdec_get_number(const fdt32_t *ptr, unsigned int cells)
737{
738 u64 number = 0;
739
740 while (cells--)
741 number = (number << 32) | fdt32_to_cpu(*ptr++);
742
743 return number;
744}
745
746int fdt_get_resource(const void *fdt, int node, const char *property,
747 unsigned int index, struct fdt_resource *res)
748{
749 const fdt32_t *ptr, *end;
750 int na, ns, len, parent;
751 unsigned int i = 0;
752
753 parent = fdt_parent_offset(fdt, node);
754 if (parent < 0)
755 return parent;
756
757 na = fdt_address_cells(fdt, parent);
758 ns = fdt_size_cells(fdt, parent);
759
760 ptr = fdt_getprop(fdt, node, property, &len);
761 if (!ptr)
762 return len;
763
764 end = ptr + len / sizeof(*ptr);
765
766 while (ptr + na + ns <= end) {
767 if (i == index) {
768 res->start = res->end = fdtdec_get_number(ptr, na);
769 res->end += fdtdec_get_number(&ptr[na], ns) - 1;
770 return 0;
771 }
772
773 ptr += na + ns;
774 i++;
775 }
776
777 return -FDT_ERR_NOTFOUND;
778}
779
780int fdt_get_named_resource(const void *fdt, int node, const char *property,
781 const char *prop_names, const char *name,
782 struct fdt_resource *res)
783{
784 int index;
785
786 index = fdt_find_string(fdt, node, prop_names, name);
787 if (index < 0)
788 return index;
789
790 return fdt_get_resource(fdt, node, property, index, res);
791}
Thierry Reding9f85eee2014-08-26 17:33:54 +0200792
793int fdtdec_pci_get_bdf(const void *fdt, int node, int *bdf)
794{
795 const fdt32_t *prop;
796 int len;
797
798 prop = fdt_getprop(fdt, node, "reg", &len);
799 if (!prop)
800 return len;
801
802 *bdf = fdt32_to_cpu(*prop) & 0xffffff;
803
804 return 0;
805}
Heiko Schocher29a23f92014-03-03 12:19:30 +0100806#endif