blob: d2166e66323cba31796387d1bd37c8198ecc05e0 [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 Warrenf4e4e0b2013-03-04 14:07:18 -070049 COMPAT(NVIDIA_TEGRA30_SDMMC, "nvidia,tegra30-sdhci"),
Tom Warrenc9aa8312013-02-21 12:31:30 +000050 COMPAT(NVIDIA_TEGRA20_SDMMC, "nvidia,tegra20-sdhci"),
Allen Martin8f1b46b2013-01-29 13:51:24 +000051 COMPAT(NVIDIA_TEGRA20_SFLASH, "nvidia,tegra20-sflash"),
Allen Martinb19f5742013-01-29 13:51:28 +000052 COMPAT(NVIDIA_TEGRA20_SLINK, "nvidia,tegra20-slink"),
Allen Martinc3bb3c82013-03-16 18:58:09 +000053 COMPAT(NVIDIA_TEGRA114_SPI, "nvidia,tegra114-spi"),
Hatim RVcc9fe332012-12-11 00:52:46 +000054 COMPAT(SMSC_LAN9215, "smsc,lan9215"),
55 COMPAT(SAMSUNG_EXYNOS5_SROMC, "samsung,exynos-sromc"),
Rajeshwari Shindec34253d2012-12-26 20:03:10 +000056 COMPAT(SAMSUNG_S3C2440_I2C, "samsung,s3c2440-i2c"),
Rajeshwari Shinde72dbff12012-12-26 20:03:16 +000057 COMPAT(SAMSUNG_EXYNOS5_SOUND, "samsung,exynos-sound"),
58 COMPAT(WOLFSON_WM8994_CODEC, "wolfson,wm8994-codec"),
Rajeshwari Shinde5d506592012-12-26 20:03:20 +000059 COMPAT(SAMSUNG_EXYNOS_SPI, "samsung,exynos-spi"),
Rajeshwari Shinde6abd1622013-01-07 23:35:05 +000060 COMPAT(SAMSUNG_EXYNOS_EHCI, "samsung,exynos-ehci"),
61 COMPAT(SAMSUNG_EXYNOS_USB_PHY, "samsung,exynos-usb-phy"),
Akshay Saraswat618766c2013-02-25 01:13:01 +000062 COMPAT(SAMSUNG_EXYNOS_TMU, "samsung,exynos-tmu"),
Rajeshwari Shindecd577e22013-01-08 21:03:38 +000063 COMPAT(MAXIM_MAX77686_PMIC, "maxim,max77686_pmic"),
Rajeshwari Shinde7772bb72013-02-14 19:46:15 +000064 COMPAT(MAXIM_98095_CODEC, "maxim,max98095-codec"),
Simon Glassb5220bc2011-10-24 19:15:32 +000065};
66
Simon Glassa53f4a22012-01-17 08:20:50 +000067const char *fdtdec_get_compatible(enum fdt_compat_id id)
68{
69 /* We allow reading of the 'unknown' ID for testing purposes */
70 assert(id >= 0 && id < COMPAT_COUNT);
71 return compat_names[id];
72}
73
Simon Glassb5220bc2011-10-24 19:15:32 +000074fdt_addr_t fdtdec_get_addr(const void *blob, int node,
75 const char *prop_name)
76{
77 const fdt_addr_t *cell;
78 int len;
79
Simon Glass1cb23232012-07-12 05:25:01 +000080 debug("%s: %s: ", __func__, prop_name);
Simon Glassb5220bc2011-10-24 19:15:32 +000081 cell = fdt_getprop(blob, node, prop_name, &len);
82 if (cell && (len == sizeof(fdt_addr_t) ||
Simon Glass1cb23232012-07-12 05:25:01 +000083 len == sizeof(fdt_addr_t) * 2)) {
84 fdt_addr_t addr = fdt_addr_to_cpu(*cell);
85
86 debug("%p\n", (void *)addr);
87 return addr;
88 }
89 debug("(not found)\n");
Simon Glassb5220bc2011-10-24 19:15:32 +000090 return FDT_ADDR_T_NONE;
91}
92
93s32 fdtdec_get_int(const void *blob, int node, const char *prop_name,
94 s32 default_val)
95{
96 const s32 *cell;
97 int len;
98
Simon Glass1cb23232012-07-12 05:25:01 +000099 debug("%s: %s: ", __func__, prop_name);
Simon Glassb5220bc2011-10-24 19:15:32 +0000100 cell = fdt_getprop(blob, node, prop_name, &len);
Simon Glass1cb23232012-07-12 05:25:01 +0000101 if (cell && len >= sizeof(s32)) {
102 s32 val = fdt32_to_cpu(cell[0]);
103
104 debug("%#x (%d)\n", val, val);
105 return val;
106 }
107 debug("(not found)\n");
Simon Glassb5220bc2011-10-24 19:15:32 +0000108 return default_val;
109}
110
Che-Liang Chiouaadef0a2012-10-25 16:31:05 +0000111uint64_t fdtdec_get_uint64(const void *blob, int node, const char *prop_name,
112 uint64_t default_val)
113{
114 const uint64_t *cell64;
115 int length;
116
117 cell64 = fdt_getprop(blob, node, prop_name, &length);
118 if (!cell64 || length < sizeof(*cell64))
119 return default_val;
120
121 return fdt64_to_cpu(*cell64);
122}
123
Simon Glassf88fe2d2012-02-27 10:52:34 +0000124int fdtdec_get_is_enabled(const void *blob, int node)
Simon Glassb5220bc2011-10-24 19:15:32 +0000125{
126 const char *cell;
127
Simon Glassf88fe2d2012-02-27 10:52:34 +0000128 /*
129 * It should say "okay", so only allow that. Some fdts use "ok" but
130 * this is a bug. Please fix your device tree source file. See here
131 * for discussion:
132 *
133 * http://www.mail-archive.com/u-boot@lists.denx.de/msg71598.html
134 */
Simon Glassb5220bc2011-10-24 19:15:32 +0000135 cell = fdt_getprop(blob, node, "status", NULL);
136 if (cell)
Simon Glassf88fe2d2012-02-27 10:52:34 +0000137 return 0 == strcmp(cell, "okay");
138 return 1;
Simon Glassb5220bc2011-10-24 19:15:32 +0000139}
140
Gerald Van Baren7cde3972012-11-12 23:13:54 -0500141enum fdt_compat_id fdtdec_lookup(const void *blob, int node)
Simon Glassb5220bc2011-10-24 19:15:32 +0000142{
143 enum fdt_compat_id id;
144
145 /* Search our drivers */
146 for (id = COMPAT_UNKNOWN; id < COMPAT_COUNT; id++)
147 if (0 == fdt_node_check_compatible(blob, node,
148 compat_names[id]))
149 return id;
150 return COMPAT_UNKNOWN;
151}
152
153int fdtdec_next_compatible(const void *blob, int node,
154 enum fdt_compat_id id)
155{
156 return fdt_node_offset_by_compatible(blob, node, compat_names[id]);
157}
158
Simon Glass3ddecfc2012-04-02 13:18:42 +0000159int fdtdec_next_compatible_subnode(const void *blob, int node,
160 enum fdt_compat_id id, int *depthp)
161{
162 do {
163 node = fdt_next_node(blob, node, depthp);
164 } while (*depthp > 1);
165
166 /* If this is a direct subnode, and compatible, return it */
167 if (*depthp == 1 && 0 == fdt_node_check_compatible(
168 blob, node, compat_names[id]))
169 return node;
170
171 return -FDT_ERR_NOTFOUND;
172}
173
Simon Glassb5220bc2011-10-24 19:15:32 +0000174int fdtdec_next_alias(const void *blob, const char *name,
175 enum fdt_compat_id id, int *upto)
176{
177#define MAX_STR_LEN 20
178 char str[MAX_STR_LEN + 20];
179 int node, err;
180
181 /* snprintf() is not available */
182 assert(strlen(name) < MAX_STR_LEN);
183 sprintf(str, "%.*s%d", MAX_STR_LEN, name, *upto);
Simon Glass00878472012-10-31 14:02:42 +0000184 node = fdt_path_offset(blob, str);
Simon Glassb5220bc2011-10-24 19:15:32 +0000185 if (node < 0)
186 return node;
187 err = fdt_node_check_compatible(blob, node, compat_names[id]);
188 if (err < 0)
189 return err;
Simon Glassf88fe2d2012-02-27 10:52:34 +0000190 if (err)
191 return -FDT_ERR_NOTFOUND;
192 (*upto)++;
193 return node;
Simon Glassb5220bc2011-10-24 19:15:32 +0000194}
195
Simon Glassa53f4a22012-01-17 08:20:50 +0000196int fdtdec_find_aliases_for_id(const void *blob, const char *name,
197 enum fdt_compat_id id, int *node_list, int maxcount)
198{
Simon Glassc6782272012-02-03 15:13:53 +0000199 memset(node_list, '\0', sizeof(*node_list) * maxcount);
200
201 return fdtdec_add_aliases_for_id(blob, name, id, node_list, maxcount);
202}
203
204/* TODO: Can we tighten this code up a little? */
205int fdtdec_add_aliases_for_id(const void *blob, const char *name,
206 enum fdt_compat_id id, int *node_list, int maxcount)
207{
Simon Glassa53f4a22012-01-17 08:20:50 +0000208 int name_len = strlen(name);
209 int nodes[maxcount];
210 int num_found = 0;
211 int offset, node;
212 int alias_node;
213 int count;
214 int i, j;
215
216 /* find the alias node if present */
217 alias_node = fdt_path_offset(blob, "/aliases");
218
219 /*
220 * start with nothing, and we can assume that the root node can't
221 * match
222 */
223 memset(nodes, '\0', sizeof(nodes));
224
225 /* First find all the compatible nodes */
226 for (node = count = 0; node >= 0 && count < maxcount;) {
227 node = fdtdec_next_compatible(blob, node, id);
228 if (node >= 0)
229 nodes[count++] = node;
230 }
231 if (node >= 0)
232 debug("%s: warning: maxcount exceeded with alias '%s'\n",
233 __func__, name);
234
235 /* Now find all the aliases */
Simon Glassa53f4a22012-01-17 08:20:50 +0000236 for (offset = fdt_first_property_offset(blob, alias_node);
237 offset > 0;
238 offset = fdt_next_property_offset(blob, offset)) {
239 const struct fdt_property *prop;
240 const char *path;
241 int number;
242 int found;
243
244 node = 0;
245 prop = fdt_get_property_by_offset(blob, offset, NULL);
246 path = fdt_string(blob, fdt32_to_cpu(prop->nameoff));
247 if (prop->len && 0 == strncmp(path, name, name_len))
248 node = fdt_path_offset(blob, prop->data);
249 if (node <= 0)
250 continue;
251
252 /* Get the alias number */
253 number = simple_strtoul(path + name_len, NULL, 10);
254 if (number < 0 || number >= maxcount) {
255 debug("%s: warning: alias '%s' is out of range\n",
256 __func__, path);
257 continue;
258 }
259
260 /* Make sure the node we found is actually in our list! */
261 found = -1;
262 for (j = 0; j < count; j++)
263 if (nodes[j] == node) {
264 found = j;
265 break;
266 }
267
268 if (found == -1) {
269 debug("%s: warning: alias '%s' points to a node "
270 "'%s' that is missing or is not compatible "
271 " with '%s'\n", __func__, path,
272 fdt_get_name(blob, node, NULL),
273 compat_names[id]);
274 continue;
275 }
276
277 /*
278 * Add this node to our list in the right place, and mark
279 * it as done.
280 */
281 if (fdtdec_get_is_enabled(blob, node)) {
Simon Glassc6782272012-02-03 15:13:53 +0000282 if (node_list[number]) {
283 debug("%s: warning: alias '%s' requires that "
284 "a node be placed in the list in a "
285 "position which is already filled by "
286 "node '%s'\n", __func__, path,
287 fdt_get_name(blob, node, NULL));
288 continue;
289 }
Simon Glassa53f4a22012-01-17 08:20:50 +0000290 node_list[number] = node;
291 if (number >= num_found)
292 num_found = number + 1;
293 }
Simon Glassc6782272012-02-03 15:13:53 +0000294 nodes[found] = 0;
Simon Glassa53f4a22012-01-17 08:20:50 +0000295 }
296
297 /* Add any nodes not mentioned by an alias */
298 for (i = j = 0; i < maxcount; i++) {
299 if (!node_list[i]) {
300 for (; j < maxcount; j++)
301 if (nodes[j] &&
302 fdtdec_get_is_enabled(blob, nodes[j]))
303 break;
304
305 /* Have we run out of nodes to add? */
306 if (j == maxcount)
307 break;
308
309 assert(!node_list[i]);
310 node_list[i] = nodes[j++];
311 if (i >= num_found)
312 num_found = i + 1;
313 }
314 }
315
316 return num_found;
317}
318
Simon Glass9a263e52012-03-28 10:08:24 +0000319int fdtdec_check_fdt(void)
320{
321 /*
322 * We must have an FDT, but we cannot panic() yet since the console
323 * is not ready. So for now, just assert(). Boards which need an early
324 * FDT (prior to console ready) will need to make their own
325 * arrangements and do their own checks.
326 */
327 assert(!fdtdec_prepare_fdt());
328 return 0;
329}
330
Simon Glassb5220bc2011-10-24 19:15:32 +0000331/*
332 * This function is a little odd in that it accesses global data. At some
333 * point if the architecture board.c files merge this will make more sense.
334 * Even now, it is common code.
335 */
Simon Glass9a263e52012-03-28 10:08:24 +0000336int fdtdec_prepare_fdt(void)
Simon Glassb5220bc2011-10-24 19:15:32 +0000337{
Simon Glass9a263e52012-03-28 10:08:24 +0000338 if (((uintptr_t)gd->fdt_blob & 3) || fdt_check_header(gd->fdt_blob)) {
339 printf("No valid FDT found - please append one to U-Boot "
340 "binary, use u-boot-dtb.bin or define "
341 "CONFIG_OF_EMBED\n");
342 return -1;
343 }
Simon Glassb5220bc2011-10-24 19:15:32 +0000344 return 0;
345}
Simon Glassd17da652012-02-27 10:52:35 +0000346
347int fdtdec_lookup_phandle(const void *blob, int node, const char *prop_name)
348{
349 const u32 *phandle;
350 int lookup;
351
Simon Glass1cb23232012-07-12 05:25:01 +0000352 debug("%s: %s\n", __func__, prop_name);
Simon Glassd17da652012-02-27 10:52:35 +0000353 phandle = fdt_getprop(blob, node, prop_name, NULL);
354 if (!phandle)
355 return -FDT_ERR_NOTFOUND;
356
357 lookup = fdt_node_offset_by_phandle(blob, fdt32_to_cpu(*phandle));
358 return lookup;
359}
360
361/**
362 * Look up a property in a node and check that it has a minimum length.
363 *
364 * @param blob FDT blob
365 * @param node node to examine
366 * @param prop_name name of property to find
367 * @param min_len minimum property length in bytes
368 * @param err 0 if ok, or -FDT_ERR_NOTFOUND if the property is not
369 found, or -FDT_ERR_BADLAYOUT if not enough data
370 * @return pointer to cell, which is only valid if err == 0
371 */
372static const void *get_prop_check_min_len(const void *blob, int node,
373 const char *prop_name, int min_len, int *err)
374{
375 const void *cell;
376 int len;
377
378 debug("%s: %s\n", __func__, prop_name);
379 cell = fdt_getprop(blob, node, prop_name, &len);
380 if (!cell)
381 *err = -FDT_ERR_NOTFOUND;
382 else if (len < min_len)
383 *err = -FDT_ERR_BADLAYOUT;
384 else
385 *err = 0;
386 return cell;
387}
388
389int fdtdec_get_int_array(const void *blob, int node, const char *prop_name,
390 u32 *array, int count)
391{
392 const u32 *cell;
393 int i, err = 0;
394
395 debug("%s: %s\n", __func__, prop_name);
396 cell = get_prop_check_min_len(blob, node, prop_name,
397 sizeof(u32) * count, &err);
398 if (!err) {
399 for (i = 0; i < count; i++)
400 array[i] = fdt32_to_cpu(cell[i]);
401 }
402 return err;
403}
404
Simon Glass96875e72012-04-02 13:18:41 +0000405const u32 *fdtdec_locate_array(const void *blob, int node,
406 const char *prop_name, int count)
407{
408 const u32 *cell;
409 int err;
410
411 cell = get_prop_check_min_len(blob, node, prop_name,
412 sizeof(u32) * count, &err);
413 return err ? NULL : cell;
414}
415
Simon Glassd17da652012-02-27 10:52:35 +0000416int fdtdec_get_bool(const void *blob, int node, const char *prop_name)
417{
418 const s32 *cell;
419 int len;
420
421 debug("%s: %s\n", __func__, prop_name);
422 cell = fdt_getprop(blob, node, prop_name, &len);
423 return cell != NULL;
424}
Simon Glassed3ee5c2012-02-27 10:52:36 +0000425
426/**
427 * Decode a list of GPIOs from an FDT. This creates a list of GPIOs with no
428 * terminating item.
429 *
430 * @param blob FDT blob to use
431 * @param node Node to look at
432 * @param prop_name Node property name
433 * @param gpio Array of gpio elements to fill from FDT. This will be
434 * untouched if either 0 or an error is returned
435 * @param max_count Maximum number of elements allowed
436 * @return number of GPIOs read if ok, -FDT_ERR_BADLAYOUT if max_count would
437 * be exceeded, or -FDT_ERR_NOTFOUND if the property is missing.
438 */
Abhilash Kesavan5921f6a2012-10-25 16:31:01 +0000439int fdtdec_decode_gpios(const void *blob, int node, const char *prop_name,
440 struct fdt_gpio_state *gpio, int max_count)
Simon Glassed3ee5c2012-02-27 10:52:36 +0000441{
442 const struct fdt_property *prop;
443 const u32 *cell;
444 const char *name;
445 int len, i;
446
447 debug("%s: %s\n", __func__, prop_name);
448 assert(max_count > 0);
449 prop = fdt_get_property(blob, node, prop_name, &len);
450 if (!prop) {
Simon Glass1cb23232012-07-12 05:25:01 +0000451 debug("%s: property '%s' missing\n", __func__, prop_name);
Simon Glassed3ee5c2012-02-27 10:52:36 +0000452 return -FDT_ERR_NOTFOUND;
453 }
454
455 /* We will use the name to tag the GPIO */
456 name = fdt_string(blob, fdt32_to_cpu(prop->nameoff));
457 cell = (u32 *)prop->data;
458 len /= sizeof(u32) * 3; /* 3 cells per GPIO record */
459 if (len > max_count) {
Simon Glass1cb23232012-07-12 05:25:01 +0000460 debug(" %s: too many GPIOs / cells for "
Simon Glassed3ee5c2012-02-27 10:52:36 +0000461 "property '%s'\n", __func__, prop_name);
462 return -FDT_ERR_BADLAYOUT;
463 }
464
465 /* Read out the GPIO data from the cells */
466 for (i = 0; i < len; i++, cell += 3) {
467 gpio[i].gpio = fdt32_to_cpu(cell[1]);
468 gpio[i].flags = fdt32_to_cpu(cell[2]);
469 gpio[i].name = name;
470 }
471
472 return len;
473}
474
475int fdtdec_decode_gpio(const void *blob, int node, const char *prop_name,
476 struct fdt_gpio_state *gpio)
477{
478 int err;
479
480 debug("%s: %s\n", __func__, prop_name);
481 gpio->gpio = FDT_GPIO_NONE;
482 gpio->name = NULL;
483 err = fdtdec_decode_gpios(blob, node, prop_name, gpio, 1);
484 return err == 1 ? 0 : err;
485}
486
Sean Paul202ff752012-10-25 16:31:06 +0000487int fdtdec_get_gpio(struct fdt_gpio_state *gpio)
488{
489 int val;
490
491 if (!fdt_gpio_isvalid(gpio))
492 return -1;
493
494 val = gpio_get_value(gpio->gpio);
495 return gpio->flags & FDT_GPIO_ACTIVE_LOW ? val ^ 1 : val;
496}
497
498int fdtdec_set_gpio(struct fdt_gpio_state *gpio, int val)
499{
500 if (!fdt_gpio_isvalid(gpio))
501 return -1;
502
503 val = gpio->flags & FDT_GPIO_ACTIVE_LOW ? val ^ 1 : val;
504 return gpio_set_value(gpio->gpio, val);
505}
506
Simon Glassed3ee5c2012-02-27 10:52:36 +0000507int fdtdec_setup_gpio(struct fdt_gpio_state *gpio)
508{
509 /*
510 * Return success if there is no GPIO defined. This is used for
511 * optional GPIOs)
512 */
513 if (!fdt_gpio_isvalid(gpio))
514 return 0;
515
516 if (gpio_request(gpio->gpio, gpio->name))
517 return -1;
518 return 0;
519}
Anton Staffbed4d892012-04-17 09:01:28 +0000520
521int fdtdec_get_byte_array(const void *blob, int node, const char *prop_name,
522 u8 *array, int count)
523{
524 const u8 *cell;
525 int err;
526
527 cell = get_prop_check_min_len(blob, node, prop_name, count, &err);
528 if (!err)
529 memcpy(array, cell, count);
530 return err;
531}
532
533const u8 *fdtdec_locate_byte_array(const void *blob, int node,
534 const char *prop_name, int count)
535{
536 const u8 *cell;
537 int err;
538
539 cell = get_prop_check_min_len(blob, node, prop_name, count, &err);
540 if (err)
541 return NULL;
542 return cell;
543}
Abhilash Kesavan09258f12012-10-25 16:30:58 +0000544
Abhilash Kesavan09258f12012-10-25 16:30:58 +0000545int fdtdec_get_config_int(const void *blob, const char *prop_name,
546 int default_val)
547{
548 int config_node;
549
550 debug("%s: %s\n", __func__, prop_name);
551 config_node = fdt_path_offset(blob, "/config");
552 if (config_node < 0)
553 return default_val;
554 return fdtdec_get_int(blob, config_node, prop_name, default_val);
555}
Simon Glass332ab0d2012-10-25 16:30:59 +0000556
Gabe Black79289c02012-10-25 16:31:04 +0000557int fdtdec_get_config_bool(const void *blob, const char *prop_name)
558{
559 int config_node;
560 const void *prop;
561
562 debug("%s: %s\n", __func__, prop_name);
563 config_node = fdt_path_offset(blob, "/config");
564 if (config_node < 0)
565 return 0;
566 prop = fdt_get_property(blob, config_node, prop_name, NULL);
567
568 return prop != NULL;
569}
570
Simon Glass332ab0d2012-10-25 16:30:59 +0000571char *fdtdec_get_config_string(const void *blob, const char *prop_name)
572{
573 const char *nodep;
574 int nodeoffset;
575 int len;
576
577 debug("%s: %s\n", __func__, prop_name);
578 nodeoffset = fdt_path_offset(blob, "/config");
579 if (nodeoffset < 0)
580 return NULL;
581
582 nodep = fdt_getprop(blob, nodeoffset, prop_name, &len);
583 if (!nodep)
584 return NULL;
585
586 return (char *)nodep;
587}
Simon Glassf20c4612012-10-25 16:31:00 +0000588
589int fdtdec_decode_region(const void *blob, int node,
590 const char *prop_name, void **ptrp, size_t *size)
591{
592 const fdt_addr_t *cell;
593 int len;
594
595 debug("%s: %s\n", __func__, prop_name);
596 cell = fdt_getprop(blob, node, prop_name, &len);
597 if (!cell || (len != sizeof(fdt_addr_t) * 2))
598 return -1;
599
600 *ptrp = (void *)fdt_addr_to_cpu(*cell);
601 *size = fdt_size_to_cpu(cell[1]);
602 debug("%s: size=%zx\n", __func__, *size);
603 return 0;
604}