blob: 4416670699ee9b506b0b2c8ef569815a73f7379f [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"),
Yen Lin96a78ac2012-03-06 19:00:23 +000040 COMPAT(NVIDIA_TEGRA20_I2C, "nvidia,tegra20-i2c"),
41 COMPAT(NVIDIA_TEGRA20_DVC, "nvidia,tegra20-i2c-dvc"),
Jimmy Zhang0e35ad02012-04-02 13:18:52 +000042 COMPAT(NVIDIA_TEGRA20_EMC, "nvidia,tegra20-emc"),
43 COMPAT(NVIDIA_TEGRA20_EMC_TABLE, "nvidia,tegra20-emc-table"),
Rakesh Iyer6642a682012-04-17 09:01:35 +000044 COMPAT(NVIDIA_TEGRA20_KBC, "nvidia,tegra20-kbc"),
Jim Lin312693c2012-07-29 20:53:29 +000045 COMPAT(NVIDIA_TEGRA20_NAND, "nvidia,tegra20-nand"),
Simon Glasse1ae0d12012-10-17 13:24:49 +000046 COMPAT(NVIDIA_TEGRA20_PWM, "nvidia,tegra20-pwm"),
Wei Ni87540de2012-10-17 13:24:50 +000047 COMPAT(NVIDIA_TEGRA20_DC, "nvidia,tegra20-dc"),
Hatim RVcc9fe332012-12-11 00:52:46 +000048 COMPAT(SMSC_LAN9215, "smsc,lan9215"),
49 COMPAT(SAMSUNG_EXYNOS5_SROMC, "samsung,exynos-sromc"),
Rajeshwari Shindec34253d2012-12-26 20:03:10 +000050 COMPAT(SAMSUNG_S3C2440_I2C, "samsung,s3c2440-i2c"),
Rajeshwari Shinde72dbff12012-12-26 20:03:16 +000051 COMPAT(SAMSUNG_EXYNOS5_SOUND, "samsung,exynos-sound"),
52 COMPAT(WOLFSON_WM8994_CODEC, "wolfson,wm8994-codec"),
Rajeshwari Shinde5d506592012-12-26 20:03:20 +000053 COMPAT(SAMSUNG_EXYNOS_SPI, "samsung,exynos-spi"),
Rajeshwari Shinde6abd1622013-01-07 23:35:05 +000054 COMPAT(SAMSUNG_EXYNOS_EHCI, "samsung,exynos-ehci"),
55 COMPAT(SAMSUNG_EXYNOS_USB_PHY, "samsung,exynos-usb-phy"),
Simon Glassb5220bc2011-10-24 19:15:32 +000056};
57
Simon Glassa53f4a22012-01-17 08:20:50 +000058const char *fdtdec_get_compatible(enum fdt_compat_id id)
59{
60 /* We allow reading of the 'unknown' ID for testing purposes */
61 assert(id >= 0 && id < COMPAT_COUNT);
62 return compat_names[id];
63}
64
Simon Glassb5220bc2011-10-24 19:15:32 +000065fdt_addr_t fdtdec_get_addr(const void *blob, int node,
66 const char *prop_name)
67{
68 const fdt_addr_t *cell;
69 int len;
70
Simon Glass1cb23232012-07-12 05:25:01 +000071 debug("%s: %s: ", __func__, prop_name);
Simon Glassb5220bc2011-10-24 19:15:32 +000072 cell = fdt_getprop(blob, node, prop_name, &len);
73 if (cell && (len == sizeof(fdt_addr_t) ||
Simon Glass1cb23232012-07-12 05:25:01 +000074 len == sizeof(fdt_addr_t) * 2)) {
75 fdt_addr_t addr = fdt_addr_to_cpu(*cell);
76
77 debug("%p\n", (void *)addr);
78 return addr;
79 }
80 debug("(not found)\n");
Simon Glassb5220bc2011-10-24 19:15:32 +000081 return FDT_ADDR_T_NONE;
82}
83
84s32 fdtdec_get_int(const void *blob, int node, const char *prop_name,
85 s32 default_val)
86{
87 const s32 *cell;
88 int len;
89
Simon Glass1cb23232012-07-12 05:25:01 +000090 debug("%s: %s: ", __func__, prop_name);
Simon Glassb5220bc2011-10-24 19:15:32 +000091 cell = fdt_getprop(blob, node, prop_name, &len);
Simon Glass1cb23232012-07-12 05:25:01 +000092 if (cell && len >= sizeof(s32)) {
93 s32 val = fdt32_to_cpu(cell[0]);
94
95 debug("%#x (%d)\n", val, val);
96 return val;
97 }
98 debug("(not found)\n");
Simon Glassb5220bc2011-10-24 19:15:32 +000099 return default_val;
100}
101
Che-Liang Chiouaadef0a2012-10-25 16:31:05 +0000102uint64_t fdtdec_get_uint64(const void *blob, int node, const char *prop_name,
103 uint64_t default_val)
104{
105 const uint64_t *cell64;
106 int length;
107
108 cell64 = fdt_getprop(blob, node, prop_name, &length);
109 if (!cell64 || length < sizeof(*cell64))
110 return default_val;
111
112 return fdt64_to_cpu(*cell64);
113}
114
Simon Glassf88fe2d2012-02-27 10:52:34 +0000115int fdtdec_get_is_enabled(const void *blob, int node)
Simon Glassb5220bc2011-10-24 19:15:32 +0000116{
117 const char *cell;
118
Simon Glassf88fe2d2012-02-27 10:52:34 +0000119 /*
120 * It should say "okay", so only allow that. Some fdts use "ok" but
121 * this is a bug. Please fix your device tree source file. See here
122 * for discussion:
123 *
124 * http://www.mail-archive.com/u-boot@lists.denx.de/msg71598.html
125 */
Simon Glassb5220bc2011-10-24 19:15:32 +0000126 cell = fdt_getprop(blob, node, "status", NULL);
127 if (cell)
Simon Glassf88fe2d2012-02-27 10:52:34 +0000128 return 0 == strcmp(cell, "okay");
129 return 1;
Simon Glassb5220bc2011-10-24 19:15:32 +0000130}
131
Gerald Van Baren7cde3972012-11-12 23:13:54 -0500132enum fdt_compat_id fdtdec_lookup(const void *blob, int node)
Simon Glassb5220bc2011-10-24 19:15:32 +0000133{
134 enum fdt_compat_id id;
135
136 /* Search our drivers */
137 for (id = COMPAT_UNKNOWN; id < COMPAT_COUNT; id++)
138 if (0 == fdt_node_check_compatible(blob, node,
139 compat_names[id]))
140 return id;
141 return COMPAT_UNKNOWN;
142}
143
144int fdtdec_next_compatible(const void *blob, int node,
145 enum fdt_compat_id id)
146{
147 return fdt_node_offset_by_compatible(blob, node, compat_names[id]);
148}
149
Simon Glass3ddecfc2012-04-02 13:18:42 +0000150int fdtdec_next_compatible_subnode(const void *blob, int node,
151 enum fdt_compat_id id, int *depthp)
152{
153 do {
154 node = fdt_next_node(blob, node, depthp);
155 } while (*depthp > 1);
156
157 /* If this is a direct subnode, and compatible, return it */
158 if (*depthp == 1 && 0 == fdt_node_check_compatible(
159 blob, node, compat_names[id]))
160 return node;
161
162 return -FDT_ERR_NOTFOUND;
163}
164
Simon Glassb5220bc2011-10-24 19:15:32 +0000165int fdtdec_next_alias(const void *blob, const char *name,
166 enum fdt_compat_id id, int *upto)
167{
168#define MAX_STR_LEN 20
169 char str[MAX_STR_LEN + 20];
170 int node, err;
171
172 /* snprintf() is not available */
173 assert(strlen(name) < MAX_STR_LEN);
174 sprintf(str, "%.*s%d", MAX_STR_LEN, name, *upto);
Simon Glass00878472012-10-31 14:02:42 +0000175 node = fdt_path_offset(blob, str);
Simon Glassb5220bc2011-10-24 19:15:32 +0000176 if (node < 0)
177 return node;
178 err = fdt_node_check_compatible(blob, node, compat_names[id]);
179 if (err < 0)
180 return err;
Simon Glassf88fe2d2012-02-27 10:52:34 +0000181 if (err)
182 return -FDT_ERR_NOTFOUND;
183 (*upto)++;
184 return node;
Simon Glassb5220bc2011-10-24 19:15:32 +0000185}
186
Simon Glassa53f4a22012-01-17 08:20:50 +0000187int fdtdec_find_aliases_for_id(const void *blob, const char *name,
188 enum fdt_compat_id id, int *node_list, int maxcount)
189{
Simon Glassc6782272012-02-03 15:13:53 +0000190 memset(node_list, '\0', sizeof(*node_list) * maxcount);
191
192 return fdtdec_add_aliases_for_id(blob, name, id, node_list, maxcount);
193}
194
195/* TODO: Can we tighten this code up a little? */
196int fdtdec_add_aliases_for_id(const void *blob, const char *name,
197 enum fdt_compat_id id, int *node_list, int maxcount)
198{
Simon Glassa53f4a22012-01-17 08:20:50 +0000199 int name_len = strlen(name);
200 int nodes[maxcount];
201 int num_found = 0;
202 int offset, node;
203 int alias_node;
204 int count;
205 int i, j;
206
207 /* find the alias node if present */
208 alias_node = fdt_path_offset(blob, "/aliases");
209
210 /*
211 * start with nothing, and we can assume that the root node can't
212 * match
213 */
214 memset(nodes, '\0', sizeof(nodes));
215
216 /* First find all the compatible nodes */
217 for (node = count = 0; node >= 0 && count < maxcount;) {
218 node = fdtdec_next_compatible(blob, node, id);
219 if (node >= 0)
220 nodes[count++] = node;
221 }
222 if (node >= 0)
223 debug("%s: warning: maxcount exceeded with alias '%s'\n",
224 __func__, name);
225
226 /* Now find all the aliases */
Simon Glassa53f4a22012-01-17 08:20:50 +0000227 for (offset = fdt_first_property_offset(blob, alias_node);
228 offset > 0;
229 offset = fdt_next_property_offset(blob, offset)) {
230 const struct fdt_property *prop;
231 const char *path;
232 int number;
233 int found;
234
235 node = 0;
236 prop = fdt_get_property_by_offset(blob, offset, NULL);
237 path = fdt_string(blob, fdt32_to_cpu(prop->nameoff));
238 if (prop->len && 0 == strncmp(path, name, name_len))
239 node = fdt_path_offset(blob, prop->data);
240 if (node <= 0)
241 continue;
242
243 /* Get the alias number */
244 number = simple_strtoul(path + name_len, NULL, 10);
245 if (number < 0 || number >= maxcount) {
246 debug("%s: warning: alias '%s' is out of range\n",
247 __func__, path);
248 continue;
249 }
250
251 /* Make sure the node we found is actually in our list! */
252 found = -1;
253 for (j = 0; j < count; j++)
254 if (nodes[j] == node) {
255 found = j;
256 break;
257 }
258
259 if (found == -1) {
260 debug("%s: warning: alias '%s' points to a node "
261 "'%s' that is missing or is not compatible "
262 " with '%s'\n", __func__, path,
263 fdt_get_name(blob, node, NULL),
264 compat_names[id]);
265 continue;
266 }
267
268 /*
269 * Add this node to our list in the right place, and mark
270 * it as done.
271 */
272 if (fdtdec_get_is_enabled(blob, node)) {
Simon Glassc6782272012-02-03 15:13:53 +0000273 if (node_list[number]) {
274 debug("%s: warning: alias '%s' requires that "
275 "a node be placed in the list in a "
276 "position which is already filled by "
277 "node '%s'\n", __func__, path,
278 fdt_get_name(blob, node, NULL));
279 continue;
280 }
Simon Glassa53f4a22012-01-17 08:20:50 +0000281 node_list[number] = node;
282 if (number >= num_found)
283 num_found = number + 1;
284 }
Simon Glassc6782272012-02-03 15:13:53 +0000285 nodes[found] = 0;
Simon Glassa53f4a22012-01-17 08:20:50 +0000286 }
287
288 /* Add any nodes not mentioned by an alias */
289 for (i = j = 0; i < maxcount; i++) {
290 if (!node_list[i]) {
291 for (; j < maxcount; j++)
292 if (nodes[j] &&
293 fdtdec_get_is_enabled(blob, nodes[j]))
294 break;
295
296 /* Have we run out of nodes to add? */
297 if (j == maxcount)
298 break;
299
300 assert(!node_list[i]);
301 node_list[i] = nodes[j++];
302 if (i >= num_found)
303 num_found = i + 1;
304 }
305 }
306
307 return num_found;
308}
309
Simon Glass9a263e52012-03-28 10:08:24 +0000310int fdtdec_check_fdt(void)
311{
312 /*
313 * We must have an FDT, but we cannot panic() yet since the console
314 * is not ready. So for now, just assert(). Boards which need an early
315 * FDT (prior to console ready) will need to make their own
316 * arrangements and do their own checks.
317 */
318 assert(!fdtdec_prepare_fdt());
319 return 0;
320}
321
Simon Glassb5220bc2011-10-24 19:15:32 +0000322/*
323 * This function is a little odd in that it accesses global data. At some
324 * point if the architecture board.c files merge this will make more sense.
325 * Even now, it is common code.
326 */
Simon Glass9a263e52012-03-28 10:08:24 +0000327int fdtdec_prepare_fdt(void)
Simon Glassb5220bc2011-10-24 19:15:32 +0000328{
Simon Glass9a263e52012-03-28 10:08:24 +0000329 if (((uintptr_t)gd->fdt_blob & 3) || fdt_check_header(gd->fdt_blob)) {
330 printf("No valid FDT found - please append one to U-Boot "
331 "binary, use u-boot-dtb.bin or define "
332 "CONFIG_OF_EMBED\n");
333 return -1;
334 }
Simon Glassb5220bc2011-10-24 19:15:32 +0000335 return 0;
336}
Simon Glassd17da652012-02-27 10:52:35 +0000337
338int fdtdec_lookup_phandle(const void *blob, int node, const char *prop_name)
339{
340 const u32 *phandle;
341 int lookup;
342
Simon Glass1cb23232012-07-12 05:25:01 +0000343 debug("%s: %s\n", __func__, prop_name);
Simon Glassd17da652012-02-27 10:52:35 +0000344 phandle = fdt_getprop(blob, node, prop_name, NULL);
345 if (!phandle)
346 return -FDT_ERR_NOTFOUND;
347
348 lookup = fdt_node_offset_by_phandle(blob, fdt32_to_cpu(*phandle));
349 return lookup;
350}
351
352/**
353 * Look up a property in a node and check that it has a minimum length.
354 *
355 * @param blob FDT blob
356 * @param node node to examine
357 * @param prop_name name of property to find
358 * @param min_len minimum property length in bytes
359 * @param err 0 if ok, or -FDT_ERR_NOTFOUND if the property is not
360 found, or -FDT_ERR_BADLAYOUT if not enough data
361 * @return pointer to cell, which is only valid if err == 0
362 */
363static const void *get_prop_check_min_len(const void *blob, int node,
364 const char *prop_name, int min_len, int *err)
365{
366 const void *cell;
367 int len;
368
369 debug("%s: %s\n", __func__, prop_name);
370 cell = fdt_getprop(blob, node, prop_name, &len);
371 if (!cell)
372 *err = -FDT_ERR_NOTFOUND;
373 else if (len < min_len)
374 *err = -FDT_ERR_BADLAYOUT;
375 else
376 *err = 0;
377 return cell;
378}
379
380int fdtdec_get_int_array(const void *blob, int node, const char *prop_name,
381 u32 *array, int count)
382{
383 const u32 *cell;
384 int i, err = 0;
385
386 debug("%s: %s\n", __func__, prop_name);
387 cell = get_prop_check_min_len(blob, node, prop_name,
388 sizeof(u32) * count, &err);
389 if (!err) {
390 for (i = 0; i < count; i++)
391 array[i] = fdt32_to_cpu(cell[i]);
392 }
393 return err;
394}
395
Simon Glass96875e72012-04-02 13:18:41 +0000396const u32 *fdtdec_locate_array(const void *blob, int node,
397 const char *prop_name, int count)
398{
399 const u32 *cell;
400 int err;
401
402 cell = get_prop_check_min_len(blob, node, prop_name,
403 sizeof(u32) * count, &err);
404 return err ? NULL : cell;
405}
406
Simon Glassd17da652012-02-27 10:52:35 +0000407int fdtdec_get_bool(const void *blob, int node, const char *prop_name)
408{
409 const s32 *cell;
410 int len;
411
412 debug("%s: %s\n", __func__, prop_name);
413 cell = fdt_getprop(blob, node, prop_name, &len);
414 return cell != NULL;
415}
Simon Glassed3ee5c2012-02-27 10:52:36 +0000416
417/**
418 * Decode a list of GPIOs from an FDT. This creates a list of GPIOs with no
419 * terminating item.
420 *
421 * @param blob FDT blob to use
422 * @param node Node to look at
423 * @param prop_name Node property name
424 * @param gpio Array of gpio elements to fill from FDT. This will be
425 * untouched if either 0 or an error is returned
426 * @param max_count Maximum number of elements allowed
427 * @return number of GPIOs read if ok, -FDT_ERR_BADLAYOUT if max_count would
428 * be exceeded, or -FDT_ERR_NOTFOUND if the property is missing.
429 */
Abhilash Kesavan5921f6a2012-10-25 16:31:01 +0000430int fdtdec_decode_gpios(const void *blob, int node, const char *prop_name,
431 struct fdt_gpio_state *gpio, int max_count)
Simon Glassed3ee5c2012-02-27 10:52:36 +0000432{
433 const struct fdt_property *prop;
434 const u32 *cell;
435 const char *name;
436 int len, i;
437
438 debug("%s: %s\n", __func__, prop_name);
439 assert(max_count > 0);
440 prop = fdt_get_property(blob, node, prop_name, &len);
441 if (!prop) {
Simon Glass1cb23232012-07-12 05:25:01 +0000442 debug("%s: property '%s' missing\n", __func__, prop_name);
Simon Glassed3ee5c2012-02-27 10:52:36 +0000443 return -FDT_ERR_NOTFOUND;
444 }
445
446 /* We will use the name to tag the GPIO */
447 name = fdt_string(blob, fdt32_to_cpu(prop->nameoff));
448 cell = (u32 *)prop->data;
449 len /= sizeof(u32) * 3; /* 3 cells per GPIO record */
450 if (len > max_count) {
Simon Glass1cb23232012-07-12 05:25:01 +0000451 debug(" %s: too many GPIOs / cells for "
Simon Glassed3ee5c2012-02-27 10:52:36 +0000452 "property '%s'\n", __func__, prop_name);
453 return -FDT_ERR_BADLAYOUT;
454 }
455
456 /* Read out the GPIO data from the cells */
457 for (i = 0; i < len; i++, cell += 3) {
458 gpio[i].gpio = fdt32_to_cpu(cell[1]);
459 gpio[i].flags = fdt32_to_cpu(cell[2]);
460 gpio[i].name = name;
461 }
462
463 return len;
464}
465
466int fdtdec_decode_gpio(const void *blob, int node, const char *prop_name,
467 struct fdt_gpio_state *gpio)
468{
469 int err;
470
471 debug("%s: %s\n", __func__, prop_name);
472 gpio->gpio = FDT_GPIO_NONE;
473 gpio->name = NULL;
474 err = fdtdec_decode_gpios(blob, node, prop_name, gpio, 1);
475 return err == 1 ? 0 : err;
476}
477
Sean Paul202ff752012-10-25 16:31:06 +0000478int fdtdec_get_gpio(struct fdt_gpio_state *gpio)
479{
480 int val;
481
482 if (!fdt_gpio_isvalid(gpio))
483 return -1;
484
485 val = gpio_get_value(gpio->gpio);
486 return gpio->flags & FDT_GPIO_ACTIVE_LOW ? val ^ 1 : val;
487}
488
489int fdtdec_set_gpio(struct fdt_gpio_state *gpio, int val)
490{
491 if (!fdt_gpio_isvalid(gpio))
492 return -1;
493
494 val = gpio->flags & FDT_GPIO_ACTIVE_LOW ? val ^ 1 : val;
495 return gpio_set_value(gpio->gpio, val);
496}
497
Simon Glassed3ee5c2012-02-27 10:52:36 +0000498int fdtdec_setup_gpio(struct fdt_gpio_state *gpio)
499{
500 /*
501 * Return success if there is no GPIO defined. This is used for
502 * optional GPIOs)
503 */
504 if (!fdt_gpio_isvalid(gpio))
505 return 0;
506
507 if (gpio_request(gpio->gpio, gpio->name))
508 return -1;
509 return 0;
510}
Anton Staffbed4d892012-04-17 09:01:28 +0000511
512int fdtdec_get_byte_array(const void *blob, int node, const char *prop_name,
513 u8 *array, int count)
514{
515 const u8 *cell;
516 int err;
517
518 cell = get_prop_check_min_len(blob, node, prop_name, count, &err);
519 if (!err)
520 memcpy(array, cell, count);
521 return err;
522}
523
524const u8 *fdtdec_locate_byte_array(const void *blob, int node,
525 const char *prop_name, int count)
526{
527 const u8 *cell;
528 int err;
529
530 cell = get_prop_check_min_len(blob, node, prop_name, count, &err);
531 if (err)
532 return NULL;
533 return cell;
534}
Abhilash Kesavan09258f12012-10-25 16:30:58 +0000535
Abhilash Kesavan09258f12012-10-25 16:30:58 +0000536int fdtdec_get_config_int(const void *blob, const char *prop_name,
537 int default_val)
538{
539 int config_node;
540
541 debug("%s: %s\n", __func__, prop_name);
542 config_node = fdt_path_offset(blob, "/config");
543 if (config_node < 0)
544 return default_val;
545 return fdtdec_get_int(blob, config_node, prop_name, default_val);
546}
Simon Glass332ab0d2012-10-25 16:30:59 +0000547
Gabe Black79289c02012-10-25 16:31:04 +0000548int fdtdec_get_config_bool(const void *blob, const char *prop_name)
549{
550 int config_node;
551 const void *prop;
552
553 debug("%s: %s\n", __func__, prop_name);
554 config_node = fdt_path_offset(blob, "/config");
555 if (config_node < 0)
556 return 0;
557 prop = fdt_get_property(blob, config_node, prop_name, NULL);
558
559 return prop != NULL;
560}
561
Simon Glass332ab0d2012-10-25 16:30:59 +0000562char *fdtdec_get_config_string(const void *blob, const char *prop_name)
563{
564 const char *nodep;
565 int nodeoffset;
566 int len;
567
568 debug("%s: %s\n", __func__, prop_name);
569 nodeoffset = fdt_path_offset(blob, "/config");
570 if (nodeoffset < 0)
571 return NULL;
572
573 nodep = fdt_getprop(blob, nodeoffset, prop_name, &len);
574 if (!nodep)
575 return NULL;
576
577 return (char *)nodep;
578}
Simon Glassf20c4612012-10-25 16:31:00 +0000579
580int fdtdec_decode_region(const void *blob, int node,
581 const char *prop_name, void **ptrp, size_t *size)
582{
583 const fdt_addr_t *cell;
584 int len;
585
586 debug("%s: %s\n", __func__, prop_name);
587 cell = fdt_getprop(blob, node, prop_name, &len);
588 if (!cell || (len != sizeof(fdt_addr_t) * 2))
589 return -1;
590
591 *ptrp = (void *)fdt_addr_to_cpu(*cell);
592 *size = fdt_size_to_cpu(cell[1]);
593 debug("%s: size=%zx\n", __func__, *size);
594 return 0;
595}