blob: c56f7d4845d5de7b3ff0569c0c012e77d9a9f851 [file] [log] [blame]
Simon Glass2d2af852011-10-24 19:15:32 +00001/*
2 * Copyright (c) 2011 The Chromium OS Authors.
3 * See file CREDITS for list of people who contributed to this
4 * project.
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation; either version 2 of
9 * the License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
19 * MA 02111-1307 USA
20 */
21
22#include <common.h>
23#include <serial.h>
24#include <libfdt.h>
25#include <fdtdec.h>
26
Michal Simekbcd35ce2012-07-11 02:26:38 +000027#include <asm/gpio.h>
Simon Glass0d83c4d2012-02-27 10:52:36 +000028
Simon Glass2d2af852011-10-24 19:15:32 +000029DECLARE_GLOBAL_DATA_PTR;
30
31/*
32 * Here are the type we know about. One day we might allow drivers to
33 * register. For now we just put them here. The COMPAT macro allows us to
34 * turn this into a sparse list later, and keeps the ID with the name.
35 */
36#define COMPAT(id, name) name
37static const char * const compat_names[COMPAT_COUNT] = {
Simon Glass65444982012-02-27 10:52:34 +000038 COMPAT(UNKNOWN, "<none>"),
Simon Glass08d6ec22012-02-27 10:52:49 +000039 COMPAT(NVIDIA_TEGRA20_USB, "nvidia,tegra20-ehci"),
Tom Warrenf8cf4b22013-02-08 07:25:30 +000040 COMPAT(NVIDIA_TEGRA114_I2C, "nvidia,tegra114-i2c"),
Yen Linccf7e902012-03-06 19:00:23 +000041 COMPAT(NVIDIA_TEGRA20_I2C, "nvidia,tegra20-i2c"),
42 COMPAT(NVIDIA_TEGRA20_DVC, "nvidia,tegra20-i2c-dvc"),
Jimmy Zhang5983ef82012-04-02 13:18:52 +000043 COMPAT(NVIDIA_TEGRA20_EMC, "nvidia,tegra20-emc"),
44 COMPAT(NVIDIA_TEGRA20_EMC_TABLE, "nvidia,tegra20-emc-table"),
Rakesh Iyer382abbd2012-04-17 09:01:35 +000045 COMPAT(NVIDIA_TEGRA20_KBC, "nvidia,tegra20-kbc"),
Jim Lin5d309e62012-07-29 20:53:29 +000046 COMPAT(NVIDIA_TEGRA20_NAND, "nvidia,tegra20-nand"),
Simon Glass1564f342012-10-17 13:24:49 +000047 COMPAT(NVIDIA_TEGRA20_PWM, "nvidia,tegra20-pwm"),
Wei Ni6555e692012-10-17 13:24:50 +000048 COMPAT(NVIDIA_TEGRA20_DC, "nvidia,tegra20-dc"),
Tom Warren7db0e2d2013-03-04 14:07:18 -070049 COMPAT(NVIDIA_TEGRA30_SDMMC, "nvidia,tegra30-sdhci"),
Tom Warren9745cf82013-02-21 12:31:30 +000050 COMPAT(NVIDIA_TEGRA20_SDMMC, "nvidia,tegra20-sdhci"),
Allen Martine7659522013-01-29 13:51:24 +000051 COMPAT(NVIDIA_TEGRA20_SFLASH, "nvidia,tegra20-sflash"),
Allen Martinba4fb9b2013-01-29 13:51:28 +000052 COMPAT(NVIDIA_TEGRA20_SLINK, "nvidia,tegra20-slink"),
Allen Martinb54f0d92013-03-16 18:58:09 +000053 COMPAT(NVIDIA_TEGRA114_SPI, "nvidia,tegra114-spi"),
Hatim RVbe5ad5a2012-12-11 00:52:46 +000054 COMPAT(SMSC_LAN9215, "smsc,lan9215"),
55 COMPAT(SAMSUNG_EXYNOS5_SROMC, "samsung,exynos-sromc"),
Rajeshwari Shinde2b71e9d2012-12-26 20:03:10 +000056 COMPAT(SAMSUNG_S3C2440_I2C, "samsung,s3c2440-i2c"),
Rajeshwari Shinde9d116732012-12-26 20:03:16 +000057 COMPAT(SAMSUNG_EXYNOS5_SOUND, "samsung,exynos-sound"),
58 COMPAT(WOLFSON_WM8994_CODEC, "wolfson,wm8994-codec"),
Rajeshwari Shinded95beaf2012-12-26 20:03:20 +000059 COMPAT(SAMSUNG_EXYNOS_SPI, "samsung,exynos-spi"),
Rajeshwari Shinded6e9f442013-01-07 23:35:05 +000060 COMPAT(SAMSUNG_EXYNOS_EHCI, "samsung,exynos-ehci"),
61 COMPAT(SAMSUNG_EXYNOS_USB_PHY, "samsung,exynos-usb-phy"),
Rajeshwari Shinde1e9eeb02013-01-08 21:03:38 +000062 COMPAT(MAXIM_MAX77686_PMIC, "maxim,max77686_pmic"),
Simon Glass2d2af852011-10-24 19:15:32 +000063};
64
Simon Glassb022ead2012-01-17 08:20:50 +000065const char *fdtdec_get_compatible(enum fdt_compat_id id)
66{
67 /* We allow reading of the 'unknown' ID for testing purposes */
68 assert(id >= 0 && id < COMPAT_COUNT);
69 return compat_names[id];
70}
71
Simon Glass2d2af852011-10-24 19:15:32 +000072fdt_addr_t fdtdec_get_addr(const void *blob, int node,
73 const char *prop_name)
74{
75 const fdt_addr_t *cell;
76 int len;
77
Simon Glassc8c86dd2012-07-12 05:25:01 +000078 debug("%s: %s: ", __func__, prop_name);
Simon Glass2d2af852011-10-24 19:15:32 +000079 cell = fdt_getprop(blob, node, prop_name, &len);
80 if (cell && (len == sizeof(fdt_addr_t) ||
Simon Glassc8c86dd2012-07-12 05:25:01 +000081 len == sizeof(fdt_addr_t) * 2)) {
82 fdt_addr_t addr = fdt_addr_to_cpu(*cell);
83
84 debug("%p\n", (void *)addr);
85 return addr;
86 }
87 debug("(not found)\n");
Simon Glass2d2af852011-10-24 19:15:32 +000088 return FDT_ADDR_T_NONE;
89}
90
91s32 fdtdec_get_int(const void *blob, int node, const char *prop_name,
92 s32 default_val)
93{
94 const s32 *cell;
95 int len;
96
Simon Glassc8c86dd2012-07-12 05:25:01 +000097 debug("%s: %s: ", __func__, prop_name);
Simon Glass2d2af852011-10-24 19:15:32 +000098 cell = fdt_getprop(blob, node, prop_name, &len);
Simon Glassc8c86dd2012-07-12 05:25:01 +000099 if (cell && len >= sizeof(s32)) {
100 s32 val = fdt32_to_cpu(cell[0]);
101
102 debug("%#x (%d)\n", val, val);
103 return val;
104 }
105 debug("(not found)\n");
Simon Glass2d2af852011-10-24 19:15:32 +0000106 return default_val;
107}
108
Che-Liang Chioud81d0172012-10-25 16:31:05 +0000109uint64_t fdtdec_get_uint64(const void *blob, int node, const char *prop_name,
110 uint64_t default_val)
111{
112 const uint64_t *cell64;
113 int length;
114
115 cell64 = fdt_getprop(blob, node, prop_name, &length);
116 if (!cell64 || length < sizeof(*cell64))
117 return default_val;
118
119 return fdt64_to_cpu(*cell64);
120}
121
Simon Glass65444982012-02-27 10:52:34 +0000122int fdtdec_get_is_enabled(const void *blob, int node)
Simon Glass2d2af852011-10-24 19:15:32 +0000123{
124 const char *cell;
125
Simon Glass65444982012-02-27 10:52:34 +0000126 /*
127 * It should say "okay", so only allow that. Some fdts use "ok" but
128 * this is a bug. Please fix your device tree source file. See here
129 * for discussion:
130 *
131 * http://www.mail-archive.com/u-boot@lists.denx.de/msg71598.html
132 */
Simon Glass2d2af852011-10-24 19:15:32 +0000133 cell = fdt_getprop(blob, node, "status", NULL);
134 if (cell)
Simon Glass65444982012-02-27 10:52:34 +0000135 return 0 == strcmp(cell, "okay");
136 return 1;
Simon Glass2d2af852011-10-24 19:15:32 +0000137}
138
Gerald Van Barencdac3392012-11-12 23:13:54 -0500139enum fdt_compat_id fdtdec_lookup(const void *blob, int node)
Simon Glass2d2af852011-10-24 19:15:32 +0000140{
141 enum fdt_compat_id id;
142
143 /* Search our drivers */
144 for (id = COMPAT_UNKNOWN; id < COMPAT_COUNT; id++)
145 if (0 == fdt_node_check_compatible(blob, node,
146 compat_names[id]))
147 return id;
148 return COMPAT_UNKNOWN;
149}
150
151int fdtdec_next_compatible(const void *blob, int node,
152 enum fdt_compat_id id)
153{
154 return fdt_node_offset_by_compatible(blob, node, compat_names[id]);
155}
156
Simon Glass2e979b12012-04-02 13:18:42 +0000157int fdtdec_next_compatible_subnode(const void *blob, int node,
158 enum fdt_compat_id id, int *depthp)
159{
160 do {
161 node = fdt_next_node(blob, node, depthp);
162 } while (*depthp > 1);
163
164 /* If this is a direct subnode, and compatible, return it */
165 if (*depthp == 1 && 0 == fdt_node_check_compatible(
166 blob, node, compat_names[id]))
167 return node;
168
169 return -FDT_ERR_NOTFOUND;
170}
171
Simon Glass2d2af852011-10-24 19:15:32 +0000172int fdtdec_next_alias(const void *blob, const char *name,
173 enum fdt_compat_id id, int *upto)
174{
175#define MAX_STR_LEN 20
176 char str[MAX_STR_LEN + 20];
177 int node, err;
178
179 /* snprintf() is not available */
180 assert(strlen(name) < MAX_STR_LEN);
181 sprintf(str, "%.*s%d", MAX_STR_LEN, name, *upto);
Simon Glasse1d15ca2012-10-31 14:02:42 +0000182 node = fdt_path_offset(blob, str);
Simon Glass2d2af852011-10-24 19:15:32 +0000183 if (node < 0)
184 return node;
185 err = fdt_node_check_compatible(blob, node, compat_names[id]);
186 if (err < 0)
187 return err;
Simon Glass65444982012-02-27 10:52:34 +0000188 if (err)
189 return -FDT_ERR_NOTFOUND;
190 (*upto)++;
191 return node;
Simon Glass2d2af852011-10-24 19:15:32 +0000192}
193
Simon Glassb022ead2012-01-17 08:20:50 +0000194int fdtdec_find_aliases_for_id(const void *blob, const char *name,
195 enum fdt_compat_id id, int *node_list, int maxcount)
196{
Simon Glass1f772662012-02-03 15:13:53 +0000197 memset(node_list, '\0', sizeof(*node_list) * maxcount);
198
199 return fdtdec_add_aliases_for_id(blob, name, id, node_list, maxcount);
200}
201
202/* TODO: Can we tighten this code up a little? */
203int fdtdec_add_aliases_for_id(const void *blob, const char *name,
204 enum fdt_compat_id id, int *node_list, int maxcount)
205{
Simon Glassb022ead2012-01-17 08:20:50 +0000206 int name_len = strlen(name);
207 int nodes[maxcount];
208 int num_found = 0;
209 int offset, node;
210 int alias_node;
211 int count;
212 int i, j;
213
214 /* find the alias node if present */
215 alias_node = fdt_path_offset(blob, "/aliases");
216
217 /*
218 * start with nothing, and we can assume that the root node can't
219 * match
220 */
221 memset(nodes, '\0', sizeof(nodes));
222
223 /* First find all the compatible nodes */
224 for (node = count = 0; node >= 0 && count < maxcount;) {
225 node = fdtdec_next_compatible(blob, node, id);
226 if (node >= 0)
227 nodes[count++] = node;
228 }
229 if (node >= 0)
230 debug("%s: warning: maxcount exceeded with alias '%s'\n",
231 __func__, name);
232
233 /* Now find all the aliases */
Simon Glassb022ead2012-01-17 08:20:50 +0000234 for (offset = fdt_first_property_offset(blob, alias_node);
235 offset > 0;
236 offset = fdt_next_property_offset(blob, offset)) {
237 const struct fdt_property *prop;
238 const char *path;
239 int number;
240 int found;
241
242 node = 0;
243 prop = fdt_get_property_by_offset(blob, offset, NULL);
244 path = fdt_string(blob, fdt32_to_cpu(prop->nameoff));
245 if (prop->len && 0 == strncmp(path, name, name_len))
246 node = fdt_path_offset(blob, prop->data);
247 if (node <= 0)
248 continue;
249
250 /* Get the alias number */
251 number = simple_strtoul(path + name_len, NULL, 10);
252 if (number < 0 || number >= maxcount) {
253 debug("%s: warning: alias '%s' is out of range\n",
254 __func__, path);
255 continue;
256 }
257
258 /* Make sure the node we found is actually in our list! */
259 found = -1;
260 for (j = 0; j < count; j++)
261 if (nodes[j] == node) {
262 found = j;
263 break;
264 }
265
266 if (found == -1) {
267 debug("%s: warning: alias '%s' points to a node "
268 "'%s' that is missing or is not compatible "
269 " with '%s'\n", __func__, path,
270 fdt_get_name(blob, node, NULL),
271 compat_names[id]);
272 continue;
273 }
274
275 /*
276 * Add this node to our list in the right place, and mark
277 * it as done.
278 */
279 if (fdtdec_get_is_enabled(blob, node)) {
Simon Glass1f772662012-02-03 15:13:53 +0000280 if (node_list[number]) {
281 debug("%s: warning: alias '%s' requires that "
282 "a node be placed in the list in a "
283 "position which is already filled by "
284 "node '%s'\n", __func__, path,
285 fdt_get_name(blob, node, NULL));
286 continue;
287 }
Simon Glassb022ead2012-01-17 08:20:50 +0000288 node_list[number] = node;
289 if (number >= num_found)
290 num_found = number + 1;
291 }
Simon Glass1f772662012-02-03 15:13:53 +0000292 nodes[found] = 0;
Simon Glassb022ead2012-01-17 08:20:50 +0000293 }
294
295 /* Add any nodes not mentioned by an alias */
296 for (i = j = 0; i < maxcount; i++) {
297 if (!node_list[i]) {
298 for (; j < maxcount; j++)
299 if (nodes[j] &&
300 fdtdec_get_is_enabled(blob, nodes[j]))
301 break;
302
303 /* Have we run out of nodes to add? */
304 if (j == maxcount)
305 break;
306
307 assert(!node_list[i]);
308 node_list[i] = nodes[j++];
309 if (i >= num_found)
310 num_found = i + 1;
311 }
312 }
313
314 return num_found;
315}
316
Simon Glass1691f692012-03-28 10:08:24 +0000317int fdtdec_check_fdt(void)
318{
319 /*
320 * We must have an FDT, but we cannot panic() yet since the console
321 * is not ready. So for now, just assert(). Boards which need an early
322 * FDT (prior to console ready) will need to make their own
323 * arrangements and do their own checks.
324 */
325 assert(!fdtdec_prepare_fdt());
326 return 0;
327}
328
Simon Glass2d2af852011-10-24 19:15:32 +0000329/*
330 * This function is a little odd in that it accesses global data. At some
331 * point if the architecture board.c files merge this will make more sense.
332 * Even now, it is common code.
333 */
Simon Glass1691f692012-03-28 10:08:24 +0000334int fdtdec_prepare_fdt(void)
Simon Glass2d2af852011-10-24 19:15:32 +0000335{
Simon Glass1691f692012-03-28 10:08:24 +0000336 if (((uintptr_t)gd->fdt_blob & 3) || fdt_check_header(gd->fdt_blob)) {
337 printf("No valid FDT found - please append one to U-Boot "
338 "binary, use u-boot-dtb.bin or define "
339 "CONFIG_OF_EMBED\n");
340 return -1;
341 }
Simon Glass2d2af852011-10-24 19:15:32 +0000342 return 0;
343}
Simon Glassc4697362012-02-27 10:52:35 +0000344
345int fdtdec_lookup_phandle(const void *blob, int node, const char *prop_name)
346{
347 const u32 *phandle;
348 int lookup;
349
Simon Glassc8c86dd2012-07-12 05:25:01 +0000350 debug("%s: %s\n", __func__, prop_name);
Simon Glassc4697362012-02-27 10:52:35 +0000351 phandle = fdt_getprop(blob, node, prop_name, NULL);
352 if (!phandle)
353 return -FDT_ERR_NOTFOUND;
354
355 lookup = fdt_node_offset_by_phandle(blob, fdt32_to_cpu(*phandle));
356 return lookup;
357}
358
359/**
360 * Look up a property in a node and check that it has a minimum length.
361 *
362 * @param blob FDT blob
363 * @param node node to examine
364 * @param prop_name name of property to find
365 * @param min_len minimum property length in bytes
366 * @param err 0 if ok, or -FDT_ERR_NOTFOUND if the property is not
367 found, or -FDT_ERR_BADLAYOUT if not enough data
368 * @return pointer to cell, which is only valid if err == 0
369 */
370static const void *get_prop_check_min_len(const void *blob, int node,
371 const char *prop_name, int min_len, int *err)
372{
373 const void *cell;
374 int len;
375
376 debug("%s: %s\n", __func__, prop_name);
377 cell = fdt_getprop(blob, node, prop_name, &len);
378 if (!cell)
379 *err = -FDT_ERR_NOTFOUND;
380 else if (len < min_len)
381 *err = -FDT_ERR_BADLAYOUT;
382 else
383 *err = 0;
384 return cell;
385}
386
387int fdtdec_get_int_array(const void *blob, int node, const char *prop_name,
388 u32 *array, int count)
389{
390 const u32 *cell;
391 int i, err = 0;
392
393 debug("%s: %s\n", __func__, prop_name);
394 cell = get_prop_check_min_len(blob, node, prop_name,
395 sizeof(u32) * count, &err);
396 if (!err) {
397 for (i = 0; i < count; i++)
398 array[i] = fdt32_to_cpu(cell[i]);
399 }
400 return err;
401}
402
Simon Glass744ec232012-04-02 13:18:41 +0000403const u32 *fdtdec_locate_array(const void *blob, int node,
404 const char *prop_name, int count)
405{
406 const u32 *cell;
407 int err;
408
409 cell = get_prop_check_min_len(blob, node, prop_name,
410 sizeof(u32) * count, &err);
411 return err ? NULL : cell;
412}
413
Simon Glassc4697362012-02-27 10:52:35 +0000414int fdtdec_get_bool(const void *blob, int node, const char *prop_name)
415{
416 const s32 *cell;
417 int len;
418
419 debug("%s: %s\n", __func__, prop_name);
420 cell = fdt_getprop(blob, node, prop_name, &len);
421 return cell != NULL;
422}
Simon Glass0d83c4d2012-02-27 10:52:36 +0000423
424/**
425 * Decode a list of GPIOs from an FDT. This creates a list of GPIOs with no
426 * terminating item.
427 *
428 * @param blob FDT blob to use
429 * @param node Node to look at
430 * @param prop_name Node property name
431 * @param gpio Array of gpio elements to fill from FDT. This will be
432 * untouched if either 0 or an error is returned
433 * @param max_count Maximum number of elements allowed
434 * @return number of GPIOs read if ok, -FDT_ERR_BADLAYOUT if max_count would
435 * be exceeded, or -FDT_ERR_NOTFOUND if the property is missing.
436 */
Abhilash Kesavan4353ffc2012-10-25 16:31:01 +0000437int fdtdec_decode_gpios(const void *blob, int node, const char *prop_name,
438 struct fdt_gpio_state *gpio, int max_count)
Simon Glass0d83c4d2012-02-27 10:52:36 +0000439{
440 const struct fdt_property *prop;
441 const u32 *cell;
442 const char *name;
443 int len, i;
444
445 debug("%s: %s\n", __func__, prop_name);
446 assert(max_count > 0);
447 prop = fdt_get_property(blob, node, prop_name, &len);
448 if (!prop) {
Simon Glassc8c86dd2012-07-12 05:25:01 +0000449 debug("%s: property '%s' missing\n", __func__, prop_name);
Simon Glass0d83c4d2012-02-27 10:52:36 +0000450 return -FDT_ERR_NOTFOUND;
451 }
452
453 /* We will use the name to tag the GPIO */
454 name = fdt_string(blob, fdt32_to_cpu(prop->nameoff));
455 cell = (u32 *)prop->data;
456 len /= sizeof(u32) * 3; /* 3 cells per GPIO record */
457 if (len > max_count) {
Simon Glassc8c86dd2012-07-12 05:25:01 +0000458 debug(" %s: too many GPIOs / cells for "
Simon Glass0d83c4d2012-02-27 10:52:36 +0000459 "property '%s'\n", __func__, prop_name);
460 return -FDT_ERR_BADLAYOUT;
461 }
462
463 /* Read out the GPIO data from the cells */
464 for (i = 0; i < len; i++, cell += 3) {
465 gpio[i].gpio = fdt32_to_cpu(cell[1]);
466 gpio[i].flags = fdt32_to_cpu(cell[2]);
467 gpio[i].name = name;
468 }
469
470 return len;
471}
472
473int fdtdec_decode_gpio(const void *blob, int node, const char *prop_name,
474 struct fdt_gpio_state *gpio)
475{
476 int err;
477
478 debug("%s: %s\n", __func__, prop_name);
479 gpio->gpio = FDT_GPIO_NONE;
480 gpio->name = NULL;
481 err = fdtdec_decode_gpios(blob, node, prop_name, gpio, 1);
482 return err == 1 ? 0 : err;
483}
484
Sean Pauladbcfc92012-10-25 16:31:06 +0000485int fdtdec_get_gpio(struct fdt_gpio_state *gpio)
486{
487 int val;
488
489 if (!fdt_gpio_isvalid(gpio))
490 return -1;
491
492 val = gpio_get_value(gpio->gpio);
493 return gpio->flags & FDT_GPIO_ACTIVE_LOW ? val ^ 1 : val;
494}
495
496int fdtdec_set_gpio(struct fdt_gpio_state *gpio, int val)
497{
498 if (!fdt_gpio_isvalid(gpio))
499 return -1;
500
501 val = gpio->flags & FDT_GPIO_ACTIVE_LOW ? val ^ 1 : val;
502 return gpio_set_value(gpio->gpio, val);
503}
504
Simon Glass0d83c4d2012-02-27 10:52:36 +0000505int fdtdec_setup_gpio(struct fdt_gpio_state *gpio)
506{
507 /*
508 * Return success if there is no GPIO defined. This is used for
509 * optional GPIOs)
510 */
511 if (!fdt_gpio_isvalid(gpio))
512 return 0;
513
514 if (gpio_request(gpio->gpio, gpio->name))
515 return -1;
516 return 0;
517}
Anton Stafff2305ec2012-04-17 09:01:28 +0000518
519int fdtdec_get_byte_array(const void *blob, int node, const char *prop_name,
520 u8 *array, int count)
521{
522 const u8 *cell;
523 int err;
524
525 cell = get_prop_check_min_len(blob, node, prop_name, count, &err);
526 if (!err)
527 memcpy(array, cell, count);
528 return err;
529}
530
531const u8 *fdtdec_locate_byte_array(const void *blob, int node,
532 const char *prop_name, int count)
533{
534 const u8 *cell;
535 int err;
536
537 cell = get_prop_check_min_len(blob, node, prop_name, count, &err);
538 if (err)
539 return NULL;
540 return cell;
541}
Abhilash Kesavan67217af2012-10-25 16:30:58 +0000542
Abhilash Kesavan67217af2012-10-25 16:30:58 +0000543int fdtdec_get_config_int(const void *blob, const char *prop_name,
544 int default_val)
545{
546 int config_node;
547
548 debug("%s: %s\n", __func__, prop_name);
549 config_node = fdt_path_offset(blob, "/config");
550 if (config_node < 0)
551 return default_val;
552 return fdtdec_get_int(blob, config_node, prop_name, default_val);
553}
Simon Glassb0494472012-10-25 16:30:59 +0000554
Gabe Black3e1c1512012-10-25 16:31:04 +0000555int fdtdec_get_config_bool(const void *blob, const char *prop_name)
556{
557 int config_node;
558 const void *prop;
559
560 debug("%s: %s\n", __func__, prop_name);
561 config_node = fdt_path_offset(blob, "/config");
562 if (config_node < 0)
563 return 0;
564 prop = fdt_get_property(blob, config_node, prop_name, NULL);
565
566 return prop != NULL;
567}
568
Simon Glassb0494472012-10-25 16:30:59 +0000569char *fdtdec_get_config_string(const void *blob, const char *prop_name)
570{
571 const char *nodep;
572 int nodeoffset;
573 int len;
574
575 debug("%s: %s\n", __func__, prop_name);
576 nodeoffset = fdt_path_offset(blob, "/config");
577 if (nodeoffset < 0)
578 return NULL;
579
580 nodep = fdt_getprop(blob, nodeoffset, prop_name, &len);
581 if (!nodep)
582 return NULL;
583
584 return (char *)nodep;
585}
Simon Glassf909b9c2012-10-25 16:31:00 +0000586
587int fdtdec_decode_region(const void *blob, int node,
588 const char *prop_name, void **ptrp, size_t *size)
589{
590 const fdt_addr_t *cell;
591 int len;
592
593 debug("%s: %s\n", __func__, prop_name);
594 cell = fdt_getprop(blob, node, prop_name, &len);
595 if (!cell || (len != sizeof(fdt_addr_t) * 2))
596 return -1;
597
598 *ptrp = (void *)fdt_addr_to_cpu(*cell);
599 *size = fdt_size_to_cpu(cell[1]);
600 debug("%s: size=%zx\n", __func__, *size);
601 return 0;
602}