blob: 0f34bdcf580a606f6ad2cf3ca9c176d21b3545ab [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"),
Ajay Kumard7377b52013-02-21 23:53:00 +000063 COMPAT(SAMSUNG_EXYNOS_FIMD, "samsung,exynos-fimd"),
Ajay Kumar1e4706a2013-02-21 23:53:05 +000064 COMPAT(SAMSUNG_EXYNOS5_DP, "samsung,exynos5-dp"),
Rajeshwari Shindecd577e22013-01-08 21:03:38 +000065 COMPAT(MAXIM_MAX77686_PMIC, "maxim,max77686_pmic"),
Rajeshwari Shinde7772bb72013-02-14 19:46:15 +000066 COMPAT(MAXIM_98095_CODEC, "maxim,max98095-codec"),
Simon Glassb5220bc2011-10-24 19:15:32 +000067};
68
Simon Glassa53f4a22012-01-17 08:20:50 +000069const char *fdtdec_get_compatible(enum fdt_compat_id id)
70{
71 /* We allow reading of the 'unknown' ID for testing purposes */
72 assert(id >= 0 && id < COMPAT_COUNT);
73 return compat_names[id];
74}
75
Simon Glassb5220bc2011-10-24 19:15:32 +000076fdt_addr_t fdtdec_get_addr(const void *blob, int node,
77 const char *prop_name)
78{
79 const fdt_addr_t *cell;
80 int len;
81
Simon Glass1cb23232012-07-12 05:25:01 +000082 debug("%s: %s: ", __func__, prop_name);
Simon Glassb5220bc2011-10-24 19:15:32 +000083 cell = fdt_getprop(blob, node, prop_name, &len);
84 if (cell && (len == sizeof(fdt_addr_t) ||
Simon Glass1cb23232012-07-12 05:25:01 +000085 len == sizeof(fdt_addr_t) * 2)) {
86 fdt_addr_t addr = fdt_addr_to_cpu(*cell);
87
88 debug("%p\n", (void *)addr);
89 return addr;
90 }
91 debug("(not found)\n");
Simon Glassb5220bc2011-10-24 19:15:32 +000092 return FDT_ADDR_T_NONE;
93}
94
95s32 fdtdec_get_int(const void *blob, int node, const char *prop_name,
96 s32 default_val)
97{
98 const s32 *cell;
99 int len;
100
Simon Glass1cb23232012-07-12 05:25:01 +0000101 debug("%s: %s: ", __func__, prop_name);
Simon Glassb5220bc2011-10-24 19:15:32 +0000102 cell = fdt_getprop(blob, node, prop_name, &len);
Simon Glass1cb23232012-07-12 05:25:01 +0000103 if (cell && len >= sizeof(s32)) {
104 s32 val = fdt32_to_cpu(cell[0]);
105
106 debug("%#x (%d)\n", val, val);
107 return val;
108 }
109 debug("(not found)\n");
Simon Glassb5220bc2011-10-24 19:15:32 +0000110 return default_val;
111}
112
Che-Liang Chiouaadef0a2012-10-25 16:31:05 +0000113uint64_t fdtdec_get_uint64(const void *blob, int node, const char *prop_name,
114 uint64_t default_val)
115{
116 const uint64_t *cell64;
117 int length;
118
119 cell64 = fdt_getprop(blob, node, prop_name, &length);
120 if (!cell64 || length < sizeof(*cell64))
121 return default_val;
122
123 return fdt64_to_cpu(*cell64);
124}
125
Simon Glassf88fe2d2012-02-27 10:52:34 +0000126int fdtdec_get_is_enabled(const void *blob, int node)
Simon Glassb5220bc2011-10-24 19:15:32 +0000127{
128 const char *cell;
129
Simon Glassf88fe2d2012-02-27 10:52:34 +0000130 /*
131 * It should say "okay", so only allow that. Some fdts use "ok" but
132 * this is a bug. Please fix your device tree source file. See here
133 * for discussion:
134 *
135 * http://www.mail-archive.com/u-boot@lists.denx.de/msg71598.html
136 */
Simon Glassb5220bc2011-10-24 19:15:32 +0000137 cell = fdt_getprop(blob, node, "status", NULL);
138 if (cell)
Simon Glassf88fe2d2012-02-27 10:52:34 +0000139 return 0 == strcmp(cell, "okay");
140 return 1;
Simon Glassb5220bc2011-10-24 19:15:32 +0000141}
142
Gerald Van Baren7cde3972012-11-12 23:13:54 -0500143enum fdt_compat_id fdtdec_lookup(const void *blob, int node)
Simon Glassb5220bc2011-10-24 19:15:32 +0000144{
145 enum fdt_compat_id id;
146
147 /* Search our drivers */
148 for (id = COMPAT_UNKNOWN; id < COMPAT_COUNT; id++)
149 if (0 == fdt_node_check_compatible(blob, node,
150 compat_names[id]))
151 return id;
152 return COMPAT_UNKNOWN;
153}
154
155int fdtdec_next_compatible(const void *blob, int node,
156 enum fdt_compat_id id)
157{
158 return fdt_node_offset_by_compatible(blob, node, compat_names[id]);
159}
160
Simon Glass3ddecfc2012-04-02 13:18:42 +0000161int fdtdec_next_compatible_subnode(const void *blob, int node,
162 enum fdt_compat_id id, int *depthp)
163{
164 do {
165 node = fdt_next_node(blob, node, depthp);
166 } while (*depthp > 1);
167
168 /* If this is a direct subnode, and compatible, return it */
169 if (*depthp == 1 && 0 == fdt_node_check_compatible(
170 blob, node, compat_names[id]))
171 return node;
172
173 return -FDT_ERR_NOTFOUND;
174}
175
Simon Glassb5220bc2011-10-24 19:15:32 +0000176int fdtdec_next_alias(const void *blob, const char *name,
177 enum fdt_compat_id id, int *upto)
178{
179#define MAX_STR_LEN 20
180 char str[MAX_STR_LEN + 20];
181 int node, err;
182
183 /* snprintf() is not available */
184 assert(strlen(name) < MAX_STR_LEN);
185 sprintf(str, "%.*s%d", MAX_STR_LEN, name, *upto);
Simon Glass00878472012-10-31 14:02:42 +0000186 node = fdt_path_offset(blob, str);
Simon Glassb5220bc2011-10-24 19:15:32 +0000187 if (node < 0)
188 return node;
189 err = fdt_node_check_compatible(blob, node, compat_names[id]);
190 if (err < 0)
191 return err;
Simon Glassf88fe2d2012-02-27 10:52:34 +0000192 if (err)
193 return -FDT_ERR_NOTFOUND;
194 (*upto)++;
195 return node;
Simon Glassb5220bc2011-10-24 19:15:32 +0000196}
197
Simon Glassa53f4a22012-01-17 08:20:50 +0000198int fdtdec_find_aliases_for_id(const void *blob, const char *name,
199 enum fdt_compat_id id, int *node_list, int maxcount)
200{
Simon Glassc6782272012-02-03 15:13:53 +0000201 memset(node_list, '\0', sizeof(*node_list) * maxcount);
202
203 return fdtdec_add_aliases_for_id(blob, name, id, node_list, maxcount);
204}
205
206/* TODO: Can we tighten this code up a little? */
207int fdtdec_add_aliases_for_id(const void *blob, const char *name,
208 enum fdt_compat_id id, int *node_list, int maxcount)
209{
Simon Glassa53f4a22012-01-17 08:20:50 +0000210 int name_len = strlen(name);
211 int nodes[maxcount];
212 int num_found = 0;
213 int offset, node;
214 int alias_node;
215 int count;
216 int i, j;
217
218 /* find the alias node if present */
219 alias_node = fdt_path_offset(blob, "/aliases");
220
221 /*
222 * start with nothing, and we can assume that the root node can't
223 * match
224 */
225 memset(nodes, '\0', sizeof(nodes));
226
227 /* First find all the compatible nodes */
228 for (node = count = 0; node >= 0 && count < maxcount;) {
229 node = fdtdec_next_compatible(blob, node, id);
230 if (node >= 0)
231 nodes[count++] = node;
232 }
233 if (node >= 0)
234 debug("%s: warning: maxcount exceeded with alias '%s'\n",
235 __func__, name);
236
237 /* Now find all the aliases */
Simon Glassa53f4a22012-01-17 08:20:50 +0000238 for (offset = fdt_first_property_offset(blob, alias_node);
239 offset > 0;
240 offset = fdt_next_property_offset(blob, offset)) {
241 const struct fdt_property *prop;
242 const char *path;
243 int number;
244 int found;
245
246 node = 0;
247 prop = fdt_get_property_by_offset(blob, offset, NULL);
248 path = fdt_string(blob, fdt32_to_cpu(prop->nameoff));
249 if (prop->len && 0 == strncmp(path, name, name_len))
250 node = fdt_path_offset(blob, prop->data);
251 if (node <= 0)
252 continue;
253
254 /* Get the alias number */
255 number = simple_strtoul(path + name_len, NULL, 10);
256 if (number < 0 || number >= maxcount) {
257 debug("%s: warning: alias '%s' is out of range\n",
258 __func__, path);
259 continue;
260 }
261
262 /* Make sure the node we found is actually in our list! */
263 found = -1;
264 for (j = 0; j < count; j++)
265 if (nodes[j] == node) {
266 found = j;
267 break;
268 }
269
270 if (found == -1) {
271 debug("%s: warning: alias '%s' points to a node "
272 "'%s' that is missing or is not compatible "
273 " with '%s'\n", __func__, path,
274 fdt_get_name(blob, node, NULL),
275 compat_names[id]);
276 continue;
277 }
278
279 /*
280 * Add this node to our list in the right place, and mark
281 * it as done.
282 */
283 if (fdtdec_get_is_enabled(blob, node)) {
Simon Glassc6782272012-02-03 15:13:53 +0000284 if (node_list[number]) {
285 debug("%s: warning: alias '%s' requires that "
286 "a node be placed in the list in a "
287 "position which is already filled by "
288 "node '%s'\n", __func__, path,
289 fdt_get_name(blob, node, NULL));
290 continue;
291 }
Simon Glassa53f4a22012-01-17 08:20:50 +0000292 node_list[number] = node;
293 if (number >= num_found)
294 num_found = number + 1;
295 }
Simon Glassc6782272012-02-03 15:13:53 +0000296 nodes[found] = 0;
Simon Glassa53f4a22012-01-17 08:20:50 +0000297 }
298
299 /* Add any nodes not mentioned by an alias */
300 for (i = j = 0; i < maxcount; i++) {
301 if (!node_list[i]) {
302 for (; j < maxcount; j++)
303 if (nodes[j] &&
304 fdtdec_get_is_enabled(blob, nodes[j]))
305 break;
306
307 /* Have we run out of nodes to add? */
308 if (j == maxcount)
309 break;
310
311 assert(!node_list[i]);
312 node_list[i] = nodes[j++];
313 if (i >= num_found)
314 num_found = i + 1;
315 }
316 }
317
318 return num_found;
319}
320
Simon Glass9a263e52012-03-28 10:08:24 +0000321int fdtdec_check_fdt(void)
322{
323 /*
324 * We must have an FDT, but we cannot panic() yet since the console
325 * is not ready. So for now, just assert(). Boards which need an early
326 * FDT (prior to console ready) will need to make their own
327 * arrangements and do their own checks.
328 */
329 assert(!fdtdec_prepare_fdt());
330 return 0;
331}
332
Simon Glassb5220bc2011-10-24 19:15:32 +0000333/*
334 * This function is a little odd in that it accesses global data. At some
335 * point if the architecture board.c files merge this will make more sense.
336 * Even now, it is common code.
337 */
Simon Glass9a263e52012-03-28 10:08:24 +0000338int fdtdec_prepare_fdt(void)
Simon Glassb5220bc2011-10-24 19:15:32 +0000339{
Simon Glass9a263e52012-03-28 10:08:24 +0000340 if (((uintptr_t)gd->fdt_blob & 3) || fdt_check_header(gd->fdt_blob)) {
341 printf("No valid FDT found - please append one to U-Boot "
342 "binary, use u-boot-dtb.bin or define "
343 "CONFIG_OF_EMBED\n");
344 return -1;
345 }
Simon Glassb5220bc2011-10-24 19:15:32 +0000346 return 0;
347}
Simon Glassd17da652012-02-27 10:52:35 +0000348
349int fdtdec_lookup_phandle(const void *blob, int node, const char *prop_name)
350{
351 const u32 *phandle;
352 int lookup;
353
Simon Glass1cb23232012-07-12 05:25:01 +0000354 debug("%s: %s\n", __func__, prop_name);
Simon Glassd17da652012-02-27 10:52:35 +0000355 phandle = fdt_getprop(blob, node, prop_name, NULL);
356 if (!phandle)
357 return -FDT_ERR_NOTFOUND;
358
359 lookup = fdt_node_offset_by_phandle(blob, fdt32_to_cpu(*phandle));
360 return lookup;
361}
362
363/**
364 * Look up a property in a node and check that it has a minimum length.
365 *
366 * @param blob FDT blob
367 * @param node node to examine
368 * @param prop_name name of property to find
369 * @param min_len minimum property length in bytes
370 * @param err 0 if ok, or -FDT_ERR_NOTFOUND if the property is not
371 found, or -FDT_ERR_BADLAYOUT if not enough data
372 * @return pointer to cell, which is only valid if err == 0
373 */
374static const void *get_prop_check_min_len(const void *blob, int node,
375 const char *prop_name, int min_len, int *err)
376{
377 const void *cell;
378 int len;
379
380 debug("%s: %s\n", __func__, prop_name);
381 cell = fdt_getprop(blob, node, prop_name, &len);
382 if (!cell)
383 *err = -FDT_ERR_NOTFOUND;
384 else if (len < min_len)
385 *err = -FDT_ERR_BADLAYOUT;
386 else
387 *err = 0;
388 return cell;
389}
390
391int fdtdec_get_int_array(const void *blob, int node, const char *prop_name,
392 u32 *array, int count)
393{
394 const u32 *cell;
395 int i, err = 0;
396
397 debug("%s: %s\n", __func__, prop_name);
398 cell = get_prop_check_min_len(blob, node, prop_name,
399 sizeof(u32) * count, &err);
400 if (!err) {
401 for (i = 0; i < count; i++)
402 array[i] = fdt32_to_cpu(cell[i]);
403 }
404 return err;
405}
406
Simon Glass96875e72012-04-02 13:18:41 +0000407const u32 *fdtdec_locate_array(const void *blob, int node,
408 const char *prop_name, int count)
409{
410 const u32 *cell;
411 int err;
412
413 cell = get_prop_check_min_len(blob, node, prop_name,
414 sizeof(u32) * count, &err);
415 return err ? NULL : cell;
416}
417
Simon Glassd17da652012-02-27 10:52:35 +0000418int fdtdec_get_bool(const void *blob, int node, const char *prop_name)
419{
420 const s32 *cell;
421 int len;
422
423 debug("%s: %s\n", __func__, prop_name);
424 cell = fdt_getprop(blob, node, prop_name, &len);
425 return cell != NULL;
426}
Simon Glassed3ee5c2012-02-27 10:52:36 +0000427
428/**
429 * Decode a list of GPIOs from an FDT. This creates a list of GPIOs with no
430 * terminating item.
431 *
432 * @param blob FDT blob to use
433 * @param node Node to look at
434 * @param prop_name Node property name
435 * @param gpio Array of gpio elements to fill from FDT. This will be
436 * untouched if either 0 or an error is returned
437 * @param max_count Maximum number of elements allowed
438 * @return number of GPIOs read if ok, -FDT_ERR_BADLAYOUT if max_count would
439 * be exceeded, or -FDT_ERR_NOTFOUND if the property is missing.
440 */
Abhilash Kesavan5921f6a2012-10-25 16:31:01 +0000441int fdtdec_decode_gpios(const void *blob, int node, const char *prop_name,
442 struct fdt_gpio_state *gpio, int max_count)
Simon Glassed3ee5c2012-02-27 10:52:36 +0000443{
444 const struct fdt_property *prop;
445 const u32 *cell;
446 const char *name;
447 int len, i;
448
449 debug("%s: %s\n", __func__, prop_name);
450 assert(max_count > 0);
451 prop = fdt_get_property(blob, node, prop_name, &len);
452 if (!prop) {
Simon Glass1cb23232012-07-12 05:25:01 +0000453 debug("%s: property '%s' missing\n", __func__, prop_name);
Simon Glassed3ee5c2012-02-27 10:52:36 +0000454 return -FDT_ERR_NOTFOUND;
455 }
456
457 /* We will use the name to tag the GPIO */
458 name = fdt_string(blob, fdt32_to_cpu(prop->nameoff));
459 cell = (u32 *)prop->data;
460 len /= sizeof(u32) * 3; /* 3 cells per GPIO record */
461 if (len > max_count) {
Simon Glass1cb23232012-07-12 05:25:01 +0000462 debug(" %s: too many GPIOs / cells for "
Simon Glassed3ee5c2012-02-27 10:52:36 +0000463 "property '%s'\n", __func__, prop_name);
464 return -FDT_ERR_BADLAYOUT;
465 }
466
467 /* Read out the GPIO data from the cells */
468 for (i = 0; i < len; i++, cell += 3) {
469 gpio[i].gpio = fdt32_to_cpu(cell[1]);
470 gpio[i].flags = fdt32_to_cpu(cell[2]);
471 gpio[i].name = name;
472 }
473
474 return len;
475}
476
477int fdtdec_decode_gpio(const void *blob, int node, const char *prop_name,
478 struct fdt_gpio_state *gpio)
479{
480 int err;
481
482 debug("%s: %s\n", __func__, prop_name);
483 gpio->gpio = FDT_GPIO_NONE;
484 gpio->name = NULL;
485 err = fdtdec_decode_gpios(blob, node, prop_name, gpio, 1);
486 return err == 1 ? 0 : err;
487}
488
Sean Paul202ff752012-10-25 16:31:06 +0000489int fdtdec_get_gpio(struct fdt_gpio_state *gpio)
490{
491 int val;
492
493 if (!fdt_gpio_isvalid(gpio))
494 return -1;
495
496 val = gpio_get_value(gpio->gpio);
497 return gpio->flags & FDT_GPIO_ACTIVE_LOW ? val ^ 1 : val;
498}
499
500int fdtdec_set_gpio(struct fdt_gpio_state *gpio, int val)
501{
502 if (!fdt_gpio_isvalid(gpio))
503 return -1;
504
505 val = gpio->flags & FDT_GPIO_ACTIVE_LOW ? val ^ 1 : val;
506 return gpio_set_value(gpio->gpio, val);
507}
508
Simon Glassed3ee5c2012-02-27 10:52:36 +0000509int fdtdec_setup_gpio(struct fdt_gpio_state *gpio)
510{
511 /*
512 * Return success if there is no GPIO defined. This is used for
513 * optional GPIOs)
514 */
515 if (!fdt_gpio_isvalid(gpio))
516 return 0;
517
518 if (gpio_request(gpio->gpio, gpio->name))
519 return -1;
520 return 0;
521}
Anton Staffbed4d892012-04-17 09:01:28 +0000522
523int fdtdec_get_byte_array(const void *blob, int node, const char *prop_name,
524 u8 *array, int count)
525{
526 const u8 *cell;
527 int err;
528
529 cell = get_prop_check_min_len(blob, node, prop_name, count, &err);
530 if (!err)
531 memcpy(array, cell, count);
532 return err;
533}
534
535const u8 *fdtdec_locate_byte_array(const void *blob, int node,
536 const char *prop_name, int count)
537{
538 const u8 *cell;
539 int err;
540
541 cell = get_prop_check_min_len(blob, node, prop_name, count, &err);
542 if (err)
543 return NULL;
544 return cell;
545}
Abhilash Kesavan09258f12012-10-25 16:30:58 +0000546
Abhilash Kesavan09258f12012-10-25 16:30:58 +0000547int fdtdec_get_config_int(const void *blob, const char *prop_name,
548 int default_val)
549{
550 int config_node;
551
552 debug("%s: %s\n", __func__, prop_name);
553 config_node = fdt_path_offset(blob, "/config");
554 if (config_node < 0)
555 return default_val;
556 return fdtdec_get_int(blob, config_node, prop_name, default_val);
557}
Simon Glass332ab0d2012-10-25 16:30:59 +0000558
Gabe Black79289c02012-10-25 16:31:04 +0000559int fdtdec_get_config_bool(const void *blob, const char *prop_name)
560{
561 int config_node;
562 const void *prop;
563
564 debug("%s: %s\n", __func__, prop_name);
565 config_node = fdt_path_offset(blob, "/config");
566 if (config_node < 0)
567 return 0;
568 prop = fdt_get_property(blob, config_node, prop_name, NULL);
569
570 return prop != NULL;
571}
572
Simon Glass332ab0d2012-10-25 16:30:59 +0000573char *fdtdec_get_config_string(const void *blob, const char *prop_name)
574{
575 const char *nodep;
576 int nodeoffset;
577 int len;
578
579 debug("%s: %s\n", __func__, prop_name);
580 nodeoffset = fdt_path_offset(blob, "/config");
581 if (nodeoffset < 0)
582 return NULL;
583
584 nodep = fdt_getprop(blob, nodeoffset, prop_name, &len);
585 if (!nodep)
586 return NULL;
587
588 return (char *)nodep;
589}
Simon Glassf20c4612012-10-25 16:31:00 +0000590
591int fdtdec_decode_region(const void *blob, int node,
592 const char *prop_name, void **ptrp, size_t *size)
593{
594 const fdt_addr_t *cell;
595 int len;
596
597 debug("%s: %s\n", __func__, prop_name);
598 cell = fdt_getprop(blob, node, prop_name, &len);
599 if (!cell || (len != sizeof(fdt_addr_t) * 2))
600 return -1;
601
602 *ptrp = (void *)fdt_addr_to_cpu(*cell);
603 *size = fdt_size_to_cpu(cell[1]);
604 debug("%s: size=%zx\n", __func__, *size);
605 return 0;
606}