blob: 000130f932412f139f3ab720cec5351b79d5240d [file] [log] [blame]
Simon Glassb5220bc2011-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 Simeke46431e2012-07-11 02:26:38 +000027#include <asm/gpio.h>
Simon Glassed3ee5c2012-02-27 10:52:36 +000028
Simon Glassb5220bc2011-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 Glassf88fe2d2012-02-27 10:52:34 +000038 COMPAT(UNKNOWN, "<none>"),
Simon Glass87f938c2012-02-27 10:52:49 +000039 COMPAT(NVIDIA_TEGRA20_USB, "nvidia,tegra20-ehci"),
Tom Warrene32624e2013-02-08 07:25:30 +000040 COMPAT(NVIDIA_TEGRA114_I2C, "nvidia,tegra114-i2c"),
Yen Lin96a78ac2012-03-06 19:00:23 +000041 COMPAT(NVIDIA_TEGRA20_I2C, "nvidia,tegra20-i2c"),
42 COMPAT(NVIDIA_TEGRA20_DVC, "nvidia,tegra20-i2c-dvc"),
Jimmy Zhang0e35ad02012-04-02 13:18:52 +000043 COMPAT(NVIDIA_TEGRA20_EMC, "nvidia,tegra20-emc"),
44 COMPAT(NVIDIA_TEGRA20_EMC_TABLE, "nvidia,tegra20-emc-table"),
Rakesh Iyer6642a682012-04-17 09:01:35 +000045 COMPAT(NVIDIA_TEGRA20_KBC, "nvidia,tegra20-kbc"),
Jim Lin312693c2012-07-29 20:53:29 +000046 COMPAT(NVIDIA_TEGRA20_NAND, "nvidia,tegra20-nand"),
Simon Glasse1ae0d12012-10-17 13:24:49 +000047 COMPAT(NVIDIA_TEGRA20_PWM, "nvidia,tegra20-pwm"),
Wei Ni87540de2012-10-17 13:24:50 +000048 COMPAT(NVIDIA_TEGRA20_DC, "nvidia,tegra20-dc"),
Tom Warrenc9aa8312013-02-21 12:31:30 +000049 COMPAT(NVIDIA_TEGRA20_SDMMC, "nvidia,tegra20-sdhci"),
Allen Martin8f1b46b2013-01-29 13:51:24 +000050 COMPAT(NVIDIA_TEGRA20_SFLASH, "nvidia,tegra20-sflash"),
Allen Martinb19f5742013-01-29 13:51:28 +000051 COMPAT(NVIDIA_TEGRA20_SLINK, "nvidia,tegra20-slink"),
Hatim RVcc9fe332012-12-11 00:52:46 +000052 COMPAT(SMSC_LAN9215, "smsc,lan9215"),
53 COMPAT(SAMSUNG_EXYNOS5_SROMC, "samsung,exynos-sromc"),
Rajeshwari Shindec34253d2012-12-26 20:03:10 +000054 COMPAT(SAMSUNG_S3C2440_I2C, "samsung,s3c2440-i2c"),
Rajeshwari Shinde72dbff12012-12-26 20:03:16 +000055 COMPAT(SAMSUNG_EXYNOS5_SOUND, "samsung,exynos-sound"),
56 COMPAT(WOLFSON_WM8994_CODEC, "wolfson,wm8994-codec"),
Rajeshwari Shinde5d506592012-12-26 20:03:20 +000057 COMPAT(SAMSUNG_EXYNOS_SPI, "samsung,exynos-spi"),
Rajeshwari Shinde6abd1622013-01-07 23:35:05 +000058 COMPAT(SAMSUNG_EXYNOS_EHCI, "samsung,exynos-ehci"),
59 COMPAT(SAMSUNG_EXYNOS_USB_PHY, "samsung,exynos-usb-phy"),
Rajeshwari Shindecd577e22013-01-08 21:03:38 +000060 COMPAT(MAXIM_MAX77686_PMIC, "maxim,max77686_pmic"),
Simon Glassb5220bc2011-10-24 19:15:32 +000061};
62
Simon Glassa53f4a22012-01-17 08:20:50 +000063const char *fdtdec_get_compatible(enum fdt_compat_id id)
64{
65 /* We allow reading of the 'unknown' ID for testing purposes */
66 assert(id >= 0 && id < COMPAT_COUNT);
67 return compat_names[id];
68}
69
Simon Glassb5220bc2011-10-24 19:15:32 +000070fdt_addr_t fdtdec_get_addr(const void *blob, int node,
71 const char *prop_name)
72{
73 const fdt_addr_t *cell;
74 int len;
75
Simon Glass1cb23232012-07-12 05:25:01 +000076 debug("%s: %s: ", __func__, prop_name);
Simon Glassb5220bc2011-10-24 19:15:32 +000077 cell = fdt_getprop(blob, node, prop_name, &len);
78 if (cell && (len == sizeof(fdt_addr_t) ||
Simon Glass1cb23232012-07-12 05:25:01 +000079 len == sizeof(fdt_addr_t) * 2)) {
80 fdt_addr_t addr = fdt_addr_to_cpu(*cell);
81
82 debug("%p\n", (void *)addr);
83 return addr;
84 }
85 debug("(not found)\n");
Simon Glassb5220bc2011-10-24 19:15:32 +000086 return FDT_ADDR_T_NONE;
87}
88
89s32 fdtdec_get_int(const void *blob, int node, const char *prop_name,
90 s32 default_val)
91{
92 const s32 *cell;
93 int len;
94
Simon Glass1cb23232012-07-12 05:25:01 +000095 debug("%s: %s: ", __func__, prop_name);
Simon Glassb5220bc2011-10-24 19:15:32 +000096 cell = fdt_getprop(blob, node, prop_name, &len);
Simon Glass1cb23232012-07-12 05:25:01 +000097 if (cell && len >= sizeof(s32)) {
98 s32 val = fdt32_to_cpu(cell[0]);
99
100 debug("%#x (%d)\n", val, val);
101 return val;
102 }
103 debug("(not found)\n");
Simon Glassb5220bc2011-10-24 19:15:32 +0000104 return default_val;
105}
106
Che-Liang Chiouaadef0a2012-10-25 16:31:05 +0000107uint64_t fdtdec_get_uint64(const void *blob, int node, const char *prop_name,
108 uint64_t default_val)
109{
110 const uint64_t *cell64;
111 int length;
112
113 cell64 = fdt_getprop(blob, node, prop_name, &length);
114 if (!cell64 || length < sizeof(*cell64))
115 return default_val;
116
117 return fdt64_to_cpu(*cell64);
118}
119
Simon Glassf88fe2d2012-02-27 10:52:34 +0000120int fdtdec_get_is_enabled(const void *blob, int node)
Simon Glassb5220bc2011-10-24 19:15:32 +0000121{
122 const char *cell;
123
Simon Glassf88fe2d2012-02-27 10:52:34 +0000124 /*
125 * It should say "okay", so only allow that. Some fdts use "ok" but
126 * this is a bug. Please fix your device tree source file. See here
127 * for discussion:
128 *
129 * http://www.mail-archive.com/u-boot@lists.denx.de/msg71598.html
130 */
Simon Glassb5220bc2011-10-24 19:15:32 +0000131 cell = fdt_getprop(blob, node, "status", NULL);
132 if (cell)
Simon Glassf88fe2d2012-02-27 10:52:34 +0000133 return 0 == strcmp(cell, "okay");
134 return 1;
Simon Glassb5220bc2011-10-24 19:15:32 +0000135}
136
Gerald Van Baren7cde3972012-11-12 23:13:54 -0500137enum fdt_compat_id fdtdec_lookup(const void *blob, int node)
Simon Glassb5220bc2011-10-24 19:15:32 +0000138{
139 enum fdt_compat_id id;
140
141 /* Search our drivers */
142 for (id = COMPAT_UNKNOWN; id < COMPAT_COUNT; id++)
143 if (0 == fdt_node_check_compatible(blob, node,
144 compat_names[id]))
145 return id;
146 return COMPAT_UNKNOWN;
147}
148
149int fdtdec_next_compatible(const void *blob, int node,
150 enum fdt_compat_id id)
151{
152 return fdt_node_offset_by_compatible(blob, node, compat_names[id]);
153}
154
Simon Glass3ddecfc2012-04-02 13:18:42 +0000155int fdtdec_next_compatible_subnode(const void *blob, int node,
156 enum fdt_compat_id id, int *depthp)
157{
158 do {
159 node = fdt_next_node(blob, node, depthp);
160 } while (*depthp > 1);
161
162 /* If this is a direct subnode, and compatible, return it */
163 if (*depthp == 1 && 0 == fdt_node_check_compatible(
164 blob, node, compat_names[id]))
165 return node;
166
167 return -FDT_ERR_NOTFOUND;
168}
169
Simon Glassb5220bc2011-10-24 19:15:32 +0000170int fdtdec_next_alias(const void *blob, const char *name,
171 enum fdt_compat_id id, int *upto)
172{
173#define MAX_STR_LEN 20
174 char str[MAX_STR_LEN + 20];
175 int node, err;
176
177 /* snprintf() is not available */
178 assert(strlen(name) < MAX_STR_LEN);
179 sprintf(str, "%.*s%d", MAX_STR_LEN, name, *upto);
Simon Glass00878472012-10-31 14:02:42 +0000180 node = fdt_path_offset(blob, str);
Simon Glassb5220bc2011-10-24 19:15:32 +0000181 if (node < 0)
182 return node;
183 err = fdt_node_check_compatible(blob, node, compat_names[id]);
184 if (err < 0)
185 return err;
Simon Glassf88fe2d2012-02-27 10:52:34 +0000186 if (err)
187 return -FDT_ERR_NOTFOUND;
188 (*upto)++;
189 return node;
Simon Glassb5220bc2011-10-24 19:15:32 +0000190}
191
Simon Glassa53f4a22012-01-17 08:20:50 +0000192int fdtdec_find_aliases_for_id(const void *blob, const char *name,
193 enum fdt_compat_id id, int *node_list, int maxcount)
194{
Simon Glassc6782272012-02-03 15:13:53 +0000195 memset(node_list, '\0', sizeof(*node_list) * maxcount);
196
197 return fdtdec_add_aliases_for_id(blob, name, id, node_list, maxcount);
198}
199
200/* TODO: Can we tighten this code up a little? */
201int fdtdec_add_aliases_for_id(const void *blob, const char *name,
202 enum fdt_compat_id id, int *node_list, int maxcount)
203{
Simon Glassa53f4a22012-01-17 08:20:50 +0000204 int name_len = strlen(name);
205 int nodes[maxcount];
206 int num_found = 0;
207 int offset, node;
208 int alias_node;
209 int count;
210 int i, j;
211
212 /* find the alias node if present */
213 alias_node = fdt_path_offset(blob, "/aliases");
214
215 /*
216 * start with nothing, and we can assume that the root node can't
217 * match
218 */
219 memset(nodes, '\0', sizeof(nodes));
220
221 /* First find all the compatible nodes */
222 for (node = count = 0; node >= 0 && count < maxcount;) {
223 node = fdtdec_next_compatible(blob, node, id);
224 if (node >= 0)
225 nodes[count++] = node;
226 }
227 if (node >= 0)
228 debug("%s: warning: maxcount exceeded with alias '%s'\n",
229 __func__, name);
230
231 /* Now find all the aliases */
Simon Glassa53f4a22012-01-17 08:20:50 +0000232 for (offset = fdt_first_property_offset(blob, alias_node);
233 offset > 0;
234 offset = fdt_next_property_offset(blob, offset)) {
235 const struct fdt_property *prop;
236 const char *path;
237 int number;
238 int found;
239
240 node = 0;
241 prop = fdt_get_property_by_offset(blob, offset, NULL);
242 path = fdt_string(blob, fdt32_to_cpu(prop->nameoff));
243 if (prop->len && 0 == strncmp(path, name, name_len))
244 node = fdt_path_offset(blob, prop->data);
245 if (node <= 0)
246 continue;
247
248 /* Get the alias number */
249 number = simple_strtoul(path + name_len, NULL, 10);
250 if (number < 0 || number >= maxcount) {
251 debug("%s: warning: alias '%s' is out of range\n",
252 __func__, path);
253 continue;
254 }
255
256 /* Make sure the node we found is actually in our list! */
257 found = -1;
258 for (j = 0; j < count; j++)
259 if (nodes[j] == node) {
260 found = j;
261 break;
262 }
263
264 if (found == -1) {
265 debug("%s: warning: alias '%s' points to a node "
266 "'%s' that is missing or is not compatible "
267 " with '%s'\n", __func__, path,
268 fdt_get_name(blob, node, NULL),
269 compat_names[id]);
270 continue;
271 }
272
273 /*
274 * Add this node to our list in the right place, and mark
275 * it as done.
276 */
277 if (fdtdec_get_is_enabled(blob, node)) {
Simon Glassc6782272012-02-03 15:13:53 +0000278 if (node_list[number]) {
279 debug("%s: warning: alias '%s' requires that "
280 "a node be placed in the list in a "
281 "position which is already filled by "
282 "node '%s'\n", __func__, path,
283 fdt_get_name(blob, node, NULL));
284 continue;
285 }
Simon Glassa53f4a22012-01-17 08:20:50 +0000286 node_list[number] = node;
287 if (number >= num_found)
288 num_found = number + 1;
289 }
Simon Glassc6782272012-02-03 15:13:53 +0000290 nodes[found] = 0;
Simon Glassa53f4a22012-01-17 08:20:50 +0000291 }
292
293 /* Add any nodes not mentioned by an alias */
294 for (i = j = 0; i < maxcount; i++) {
295 if (!node_list[i]) {
296 for (; j < maxcount; j++)
297 if (nodes[j] &&
298 fdtdec_get_is_enabled(blob, nodes[j]))
299 break;
300
301 /* Have we run out of nodes to add? */
302 if (j == maxcount)
303 break;
304
305 assert(!node_list[i]);
306 node_list[i] = nodes[j++];
307 if (i >= num_found)
308 num_found = i + 1;
309 }
310 }
311
312 return num_found;
313}
314
Simon Glass9a263e52012-03-28 10:08:24 +0000315int fdtdec_check_fdt(void)
316{
317 /*
318 * We must have an FDT, but we cannot panic() yet since the console
319 * is not ready. So for now, just assert(). Boards which need an early
320 * FDT (prior to console ready) will need to make their own
321 * arrangements and do their own checks.
322 */
323 assert(!fdtdec_prepare_fdt());
324 return 0;
325}
326
Simon Glassb5220bc2011-10-24 19:15:32 +0000327/*
328 * This function is a little odd in that it accesses global data. At some
329 * point if the architecture board.c files merge this will make more sense.
330 * Even now, it is common code.
331 */
Simon Glass9a263e52012-03-28 10:08:24 +0000332int fdtdec_prepare_fdt(void)
Simon Glassb5220bc2011-10-24 19:15:32 +0000333{
Simon Glass9a263e52012-03-28 10:08:24 +0000334 if (((uintptr_t)gd->fdt_blob & 3) || fdt_check_header(gd->fdt_blob)) {
335 printf("No valid FDT found - please append one to U-Boot "
336 "binary, use u-boot-dtb.bin or define "
337 "CONFIG_OF_EMBED\n");
338 return -1;
339 }
Simon Glassb5220bc2011-10-24 19:15:32 +0000340 return 0;
341}
Simon Glassd17da652012-02-27 10:52:35 +0000342
343int fdtdec_lookup_phandle(const void *blob, int node, const char *prop_name)
344{
345 const u32 *phandle;
346 int lookup;
347
Simon Glass1cb23232012-07-12 05:25:01 +0000348 debug("%s: %s\n", __func__, prop_name);
Simon Glassd17da652012-02-27 10:52:35 +0000349 phandle = fdt_getprop(blob, node, prop_name, NULL);
350 if (!phandle)
351 return -FDT_ERR_NOTFOUND;
352
353 lookup = fdt_node_offset_by_phandle(blob, fdt32_to_cpu(*phandle));
354 return lookup;
355}
356
357/**
358 * Look up a property in a node and check that it has a minimum length.
359 *
360 * @param blob FDT blob
361 * @param node node to examine
362 * @param prop_name name of property to find
363 * @param min_len minimum property length in bytes
364 * @param err 0 if ok, or -FDT_ERR_NOTFOUND if the property is not
365 found, or -FDT_ERR_BADLAYOUT if not enough data
366 * @return pointer to cell, which is only valid if err == 0
367 */
368static const void *get_prop_check_min_len(const void *blob, int node,
369 const char *prop_name, int min_len, int *err)
370{
371 const void *cell;
372 int len;
373
374 debug("%s: %s\n", __func__, prop_name);
375 cell = fdt_getprop(blob, node, prop_name, &len);
376 if (!cell)
377 *err = -FDT_ERR_NOTFOUND;
378 else if (len < min_len)
379 *err = -FDT_ERR_BADLAYOUT;
380 else
381 *err = 0;
382 return cell;
383}
384
385int fdtdec_get_int_array(const void *blob, int node, const char *prop_name,
386 u32 *array, int count)
387{
388 const u32 *cell;
389 int i, err = 0;
390
391 debug("%s: %s\n", __func__, prop_name);
392 cell = get_prop_check_min_len(blob, node, prop_name,
393 sizeof(u32) * count, &err);
394 if (!err) {
395 for (i = 0; i < count; i++)
396 array[i] = fdt32_to_cpu(cell[i]);
397 }
398 return err;
399}
400
Simon Glass96875e72012-04-02 13:18:41 +0000401const u32 *fdtdec_locate_array(const void *blob, int node,
402 const char *prop_name, int count)
403{
404 const u32 *cell;
405 int err;
406
407 cell = get_prop_check_min_len(blob, node, prop_name,
408 sizeof(u32) * count, &err);
409 return err ? NULL : cell;
410}
411
Simon Glassd17da652012-02-27 10:52:35 +0000412int fdtdec_get_bool(const void *blob, int node, const char *prop_name)
413{
414 const s32 *cell;
415 int len;
416
417 debug("%s: %s\n", __func__, prop_name);
418 cell = fdt_getprop(blob, node, prop_name, &len);
419 return cell != NULL;
420}
Simon Glassed3ee5c2012-02-27 10:52:36 +0000421
422/**
423 * Decode a list of GPIOs from an FDT. This creates a list of GPIOs with no
424 * terminating item.
425 *
426 * @param blob FDT blob to use
427 * @param node Node to look at
428 * @param prop_name Node property name
429 * @param gpio Array of gpio elements to fill from FDT. This will be
430 * untouched if either 0 or an error is returned
431 * @param max_count Maximum number of elements allowed
432 * @return number of GPIOs read if ok, -FDT_ERR_BADLAYOUT if max_count would
433 * be exceeded, or -FDT_ERR_NOTFOUND if the property is missing.
434 */
Abhilash Kesavan5921f6a2012-10-25 16:31:01 +0000435int fdtdec_decode_gpios(const void *blob, int node, const char *prop_name,
436 struct fdt_gpio_state *gpio, int max_count)
Simon Glassed3ee5c2012-02-27 10:52:36 +0000437{
438 const struct fdt_property *prop;
439 const u32 *cell;
440 const char *name;
441 int len, i;
442
443 debug("%s: %s\n", __func__, prop_name);
444 assert(max_count > 0);
445 prop = fdt_get_property(blob, node, prop_name, &len);
446 if (!prop) {
Simon Glass1cb23232012-07-12 05:25:01 +0000447 debug("%s: property '%s' missing\n", __func__, prop_name);
Simon Glassed3ee5c2012-02-27 10:52:36 +0000448 return -FDT_ERR_NOTFOUND;
449 }
450
451 /* We will use the name to tag the GPIO */
452 name = fdt_string(blob, fdt32_to_cpu(prop->nameoff));
453 cell = (u32 *)prop->data;
454 len /= sizeof(u32) * 3; /* 3 cells per GPIO record */
455 if (len > max_count) {
Simon Glass1cb23232012-07-12 05:25:01 +0000456 debug(" %s: too many GPIOs / cells for "
Simon Glassed3ee5c2012-02-27 10:52:36 +0000457 "property '%s'\n", __func__, prop_name);
458 return -FDT_ERR_BADLAYOUT;
459 }
460
461 /* Read out the GPIO data from the cells */
462 for (i = 0; i < len; i++, cell += 3) {
463 gpio[i].gpio = fdt32_to_cpu(cell[1]);
464 gpio[i].flags = fdt32_to_cpu(cell[2]);
465 gpio[i].name = name;
466 }
467
468 return len;
469}
470
471int fdtdec_decode_gpio(const void *blob, int node, const char *prop_name,
472 struct fdt_gpio_state *gpio)
473{
474 int err;
475
476 debug("%s: %s\n", __func__, prop_name);
477 gpio->gpio = FDT_GPIO_NONE;
478 gpio->name = NULL;
479 err = fdtdec_decode_gpios(blob, node, prop_name, gpio, 1);
480 return err == 1 ? 0 : err;
481}
482
Sean Paul202ff752012-10-25 16:31:06 +0000483int fdtdec_get_gpio(struct fdt_gpio_state *gpio)
484{
485 int val;
486
487 if (!fdt_gpio_isvalid(gpio))
488 return -1;
489
490 val = gpio_get_value(gpio->gpio);
491 return gpio->flags & FDT_GPIO_ACTIVE_LOW ? val ^ 1 : val;
492}
493
494int fdtdec_set_gpio(struct fdt_gpio_state *gpio, int val)
495{
496 if (!fdt_gpio_isvalid(gpio))
497 return -1;
498
499 val = gpio->flags & FDT_GPIO_ACTIVE_LOW ? val ^ 1 : val;
500 return gpio_set_value(gpio->gpio, val);
501}
502
Simon Glassed3ee5c2012-02-27 10:52:36 +0000503int fdtdec_setup_gpio(struct fdt_gpio_state *gpio)
504{
505 /*
506 * Return success if there is no GPIO defined. This is used for
507 * optional GPIOs)
508 */
509 if (!fdt_gpio_isvalid(gpio))
510 return 0;
511
512 if (gpio_request(gpio->gpio, gpio->name))
513 return -1;
514 return 0;
515}
Anton Staffbed4d892012-04-17 09:01:28 +0000516
517int fdtdec_get_byte_array(const void *blob, int node, const char *prop_name,
518 u8 *array, int count)
519{
520 const u8 *cell;
521 int err;
522
523 cell = get_prop_check_min_len(blob, node, prop_name, count, &err);
524 if (!err)
525 memcpy(array, cell, count);
526 return err;
527}
528
529const u8 *fdtdec_locate_byte_array(const void *blob, int node,
530 const char *prop_name, int count)
531{
532 const u8 *cell;
533 int err;
534
535 cell = get_prop_check_min_len(blob, node, prop_name, count, &err);
536 if (err)
537 return NULL;
538 return cell;
539}
Abhilash Kesavan09258f12012-10-25 16:30:58 +0000540
Abhilash Kesavan09258f12012-10-25 16:30:58 +0000541int fdtdec_get_config_int(const void *blob, const char *prop_name,
542 int default_val)
543{
544 int config_node;
545
546 debug("%s: %s\n", __func__, prop_name);
547 config_node = fdt_path_offset(blob, "/config");
548 if (config_node < 0)
549 return default_val;
550 return fdtdec_get_int(blob, config_node, prop_name, default_val);
551}
Simon Glass332ab0d2012-10-25 16:30:59 +0000552
Gabe Black79289c02012-10-25 16:31:04 +0000553int fdtdec_get_config_bool(const void *blob, const char *prop_name)
554{
555 int config_node;
556 const void *prop;
557
558 debug("%s: %s\n", __func__, prop_name);
559 config_node = fdt_path_offset(blob, "/config");
560 if (config_node < 0)
561 return 0;
562 prop = fdt_get_property(blob, config_node, prop_name, NULL);
563
564 return prop != NULL;
565}
566
Simon Glass332ab0d2012-10-25 16:30:59 +0000567char *fdtdec_get_config_string(const void *blob, const char *prop_name)
568{
569 const char *nodep;
570 int nodeoffset;
571 int len;
572
573 debug("%s: %s\n", __func__, prop_name);
574 nodeoffset = fdt_path_offset(blob, "/config");
575 if (nodeoffset < 0)
576 return NULL;
577
578 nodep = fdt_getprop(blob, nodeoffset, prop_name, &len);
579 if (!nodep)
580 return NULL;
581
582 return (char *)nodep;
583}
Simon Glassf20c4612012-10-25 16:31:00 +0000584
585int fdtdec_decode_region(const void *blob, int node,
586 const char *prop_name, void **ptrp, size_t *size)
587{
588 const fdt_addr_t *cell;
589 int len;
590
591 debug("%s: %s\n", __func__, prop_name);
592 cell = fdt_getprop(blob, node, prop_name, &len);
593 if (!cell || (len != sizeof(fdt_addr_t) * 2))
594 return -1;
595
596 *ptrp = (void *)fdt_addr_to_cpu(*cell);
597 *size = fdt_size_to_cpu(cell[1]);
598 debug("%s: size=%zx\n", __func__, *size);
599 return 0;
600}