]> Git Repo - J-u-boot.git/blame - lib/fdtdec.c
x86: spi: Set maximum write size for ICH
[J-u-boot.git] / lib / fdtdec.c
CommitLineData
b5220bc6
SG
1/*
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
e46431e1 27#include <asm/gpio.h>
ed3ee5cd 28
b5220bc6
SG
29DECLARE_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] = {
f88fe2de 38 COMPAT(UNKNOWN, "<none>"),
87f938c9 39 COMPAT(NVIDIA_TEGRA20_USB, "nvidia,tegra20-ehci"),
e32624ef 40 COMPAT(NVIDIA_TEGRA114_I2C, "nvidia,tegra114-i2c"),
96a78ac0
YL
41 COMPAT(NVIDIA_TEGRA20_I2C, "nvidia,tegra20-i2c"),
42 COMPAT(NVIDIA_TEGRA20_DVC, "nvidia,tegra20-i2c-dvc"),
0e35ad05
JZ
43 COMPAT(NVIDIA_TEGRA20_EMC, "nvidia,tegra20-emc"),
44 COMPAT(NVIDIA_TEGRA20_EMC_TABLE, "nvidia,tegra20-emc-table"),
6642a681 45 COMPAT(NVIDIA_TEGRA20_KBC, "nvidia,tegra20-kbc"),
312693c3 46 COMPAT(NVIDIA_TEGRA20_NAND, "nvidia,tegra20-nand"),
e1ae0d1f 47 COMPAT(NVIDIA_TEGRA20_PWM, "nvidia,tegra20-pwm"),
87540de3 48 COMPAT(NVIDIA_TEGRA20_DC, "nvidia,tegra20-dc"),
f4e4e0b0 49 COMPAT(NVIDIA_TEGRA30_SDMMC, "nvidia,tegra30-sdhci"),
c9aa831e 50 COMPAT(NVIDIA_TEGRA20_SDMMC, "nvidia,tegra20-sdhci"),
8f1b46b1 51 COMPAT(NVIDIA_TEGRA20_SFLASH, "nvidia,tegra20-sflash"),
b19f5749 52 COMPAT(NVIDIA_TEGRA20_SLINK, "nvidia,tegra20-slink"),
cc9fe33a
HR
53 COMPAT(SMSC_LAN9215, "smsc,lan9215"),
54 COMPAT(SAMSUNG_EXYNOS5_SROMC, "samsung,exynos-sromc"),
c34253d1 55 COMPAT(SAMSUNG_S3C2440_I2C, "samsung,s3c2440-i2c"),
72dbff12
RS
56 COMPAT(SAMSUNG_EXYNOS5_SOUND, "samsung,exynos-sound"),
57 COMPAT(WOLFSON_WM8994_CODEC, "wolfson,wm8994-codec"),
5d50659d 58 COMPAT(SAMSUNG_EXYNOS_SPI, "samsung,exynos-spi"),
6abd1620
RS
59 COMPAT(SAMSUNG_EXYNOS_EHCI, "samsung,exynos-ehci"),
60 COMPAT(SAMSUNG_EXYNOS_USB_PHY, "samsung,exynos-usb-phy"),
cd577e2b 61 COMPAT(MAXIM_MAX77686_PMIC, "maxim,max77686_pmic"),
b5220bc6
SG
62};
63
a53f4a29
SG
64const char *fdtdec_get_compatible(enum fdt_compat_id id)
65{
66 /* We allow reading of the 'unknown' ID for testing purposes */
67 assert(id >= 0 && id < COMPAT_COUNT);
68 return compat_names[id];
69}
70
4397a2a8
SG
71fdt_addr_t fdtdec_get_addr_size(const void *blob, int node,
72 const char *prop_name, fdt_size_t *sizep)
b5220bc6
SG
73{
74 const fdt_addr_t *cell;
75 int len;
76
1cb2323b 77 debug("%s: %s: ", __func__, prop_name);
b5220bc6 78 cell = fdt_getprop(blob, node, prop_name, &len);
4397a2a8
SG
79 if (cell && ((!sizep && len == sizeof(fdt_addr_t)) ||
80 len == sizeof(fdt_addr_t) * 2)) {
1cb2323b 81 fdt_addr_t addr = fdt_addr_to_cpu(*cell);
4397a2a8
SG
82 if (sizep) {
83 const fdt_size_t *size;
1cb2323b 84
4397a2a8
SG
85 size = (fdt_size_t *)((char *)cell +
86 sizeof(fdt_addr_t));
87 *sizep = fdt_size_to_cpu(*size);
88 debug("addr=%p, size=%p\n", (void *)addr,
89 (void *)*sizep);
90 } else {
91 debug("%p\n", (void *)addr);
92 }
1cb2323b
SG
93 return addr;
94 }
95 debug("(not found)\n");
b5220bc6
SG
96 return FDT_ADDR_T_NONE;
97}
98
4397a2a8
SG
99fdt_addr_t fdtdec_get_addr(const void *blob, int node,
100 const char *prop_name)
101{
102 return fdtdec_get_addr_size(blob, node, prop_name, NULL);
103}
104
b5220bc6
SG
105s32 fdtdec_get_int(const void *blob, int node, const char *prop_name,
106 s32 default_val)
107{
108 const s32 *cell;
109 int len;
110
1cb2323b 111 debug("%s: %s: ", __func__, prop_name);
b5220bc6 112 cell = fdt_getprop(blob, node, prop_name, &len);
1cb2323b
SG
113 if (cell && len >= sizeof(s32)) {
114 s32 val = fdt32_to_cpu(cell[0]);
115
116 debug("%#x (%d)\n", val, val);
117 return val;
118 }
119 debug("(not found)\n");
b5220bc6
SG
120 return default_val;
121}
122
aadef0a1
CLC
123uint64_t fdtdec_get_uint64(const void *blob, int node, const char *prop_name,
124 uint64_t default_val)
125{
126 const uint64_t *cell64;
127 int length;
128
129 cell64 = fdt_getprop(blob, node, prop_name, &length);
130 if (!cell64 || length < sizeof(*cell64))
131 return default_val;
132
133 return fdt64_to_cpu(*cell64);
134}
135
f88fe2de 136int fdtdec_get_is_enabled(const void *blob, int node)
b5220bc6
SG
137{
138 const char *cell;
139
f88fe2de
SG
140 /*
141 * It should say "okay", so only allow that. Some fdts use "ok" but
142 * this is a bug. Please fix your device tree source file. See here
143 * for discussion:
144 *
145 * http://www.mail-archive.com/[email protected]/msg71598.html
146 */
b5220bc6
SG
147 cell = fdt_getprop(blob, node, "status", NULL);
148 if (cell)
f88fe2de
SG
149 return 0 == strcmp(cell, "okay");
150 return 1;
b5220bc6
SG
151}
152
7cde397b 153enum fdt_compat_id fdtdec_lookup(const void *blob, int node)
b5220bc6
SG
154{
155 enum fdt_compat_id id;
156
157 /* Search our drivers */
158 for (id = COMPAT_UNKNOWN; id < COMPAT_COUNT; id++)
159 if (0 == fdt_node_check_compatible(blob, node,
160 compat_names[id]))
161 return id;
162 return COMPAT_UNKNOWN;
163}
164
165int fdtdec_next_compatible(const void *blob, int node,
166 enum fdt_compat_id id)
167{
168 return fdt_node_offset_by_compatible(blob, node, compat_names[id]);
169}
170
3ddecfc7
SG
171int fdtdec_next_compatible_subnode(const void *blob, int node,
172 enum fdt_compat_id id, int *depthp)
173{
174 do {
175 node = fdt_next_node(blob, node, depthp);
176 } while (*depthp > 1);
177
178 /* If this is a direct subnode, and compatible, return it */
179 if (*depthp == 1 && 0 == fdt_node_check_compatible(
180 blob, node, compat_names[id]))
181 return node;
182
183 return -FDT_ERR_NOTFOUND;
184}
185
b5220bc6
SG
186int fdtdec_next_alias(const void *blob, const char *name,
187 enum fdt_compat_id id, int *upto)
188{
189#define MAX_STR_LEN 20
190 char str[MAX_STR_LEN + 20];
191 int node, err;
192
193 /* snprintf() is not available */
194 assert(strlen(name) < MAX_STR_LEN);
195 sprintf(str, "%.*s%d", MAX_STR_LEN, name, *upto);
00878476 196 node = fdt_path_offset(blob, str);
b5220bc6
SG
197 if (node < 0)
198 return node;
199 err = fdt_node_check_compatible(blob, node, compat_names[id]);
200 if (err < 0)
201 return err;
f88fe2de
SG
202 if (err)
203 return -FDT_ERR_NOTFOUND;
204 (*upto)++;
205 return node;
b5220bc6
SG
206}
207
a53f4a29
SG
208int fdtdec_find_aliases_for_id(const void *blob, const char *name,
209 enum fdt_compat_id id, int *node_list, int maxcount)
c6782270
SG
210{
211 memset(node_list, '\0', sizeof(*node_list) * maxcount);
212
213 return fdtdec_add_aliases_for_id(blob, name, id, node_list, maxcount);
214}
215
216/* TODO: Can we tighten this code up a little? */
217int fdtdec_add_aliases_for_id(const void *blob, const char *name,
218 enum fdt_compat_id id, int *node_list, int maxcount)
a53f4a29
SG
219{
220 int name_len = strlen(name);
221 int nodes[maxcount];
222 int num_found = 0;
223 int offset, node;
224 int alias_node;
225 int count;
226 int i, j;
227
228 /* find the alias node if present */
229 alias_node = fdt_path_offset(blob, "/aliases");
230
231 /*
232 * start with nothing, and we can assume that the root node can't
233 * match
234 */
235 memset(nodes, '\0', sizeof(nodes));
236
237 /* First find all the compatible nodes */
238 for (node = count = 0; node >= 0 && count < maxcount;) {
239 node = fdtdec_next_compatible(blob, node, id);
240 if (node >= 0)
241 nodes[count++] = node;
242 }
243 if (node >= 0)
244 debug("%s: warning: maxcount exceeded with alias '%s'\n",
245 __func__, name);
246
247 /* Now find all the aliases */
a53f4a29
SG
248 for (offset = fdt_first_property_offset(blob, alias_node);
249 offset > 0;
250 offset = fdt_next_property_offset(blob, offset)) {
251 const struct fdt_property *prop;
252 const char *path;
253 int number;
254 int found;
255
256 node = 0;
257 prop = fdt_get_property_by_offset(blob, offset, NULL);
258 path = fdt_string(blob, fdt32_to_cpu(prop->nameoff));
259 if (prop->len && 0 == strncmp(path, name, name_len))
260 node = fdt_path_offset(blob, prop->data);
261 if (node <= 0)
262 continue;
263
264 /* Get the alias number */
265 number = simple_strtoul(path + name_len, NULL, 10);
266 if (number < 0 || number >= maxcount) {
267 debug("%s: warning: alias '%s' is out of range\n",
268 __func__, path);
269 continue;
270 }
271
272 /* Make sure the node we found is actually in our list! */
273 found = -1;
274 for (j = 0; j < count; j++)
275 if (nodes[j] == node) {
276 found = j;
277 break;
278 }
279
280 if (found == -1) {
281 debug("%s: warning: alias '%s' points to a node "
282 "'%s' that is missing or is not compatible "
283 " with '%s'\n", __func__, path,
284 fdt_get_name(blob, node, NULL),
285 compat_names[id]);
286 continue;
287 }
288
289 /*
290 * Add this node to our list in the right place, and mark
291 * it as done.
292 */
293 if (fdtdec_get_is_enabled(blob, node)) {
c6782270
SG
294 if (node_list[number]) {
295 debug("%s: warning: alias '%s' requires that "
296 "a node be placed in the list in a "
297 "position which is already filled by "
298 "node '%s'\n", __func__, path,
299 fdt_get_name(blob, node, NULL));
300 continue;
301 }
a53f4a29
SG
302 node_list[number] = node;
303 if (number >= num_found)
304 num_found = number + 1;
305 }
c6782270 306 nodes[found] = 0;
a53f4a29
SG
307 }
308
309 /* Add any nodes not mentioned by an alias */
310 for (i = j = 0; i < maxcount; i++) {
311 if (!node_list[i]) {
312 for (; j < maxcount; j++)
313 if (nodes[j] &&
314 fdtdec_get_is_enabled(blob, nodes[j]))
315 break;
316
317 /* Have we run out of nodes to add? */
318 if (j == maxcount)
319 break;
320
321 assert(!node_list[i]);
322 node_list[i] = nodes[j++];
323 if (i >= num_found)
324 num_found = i + 1;
325 }
326 }
327
328 return num_found;
329}
330
9a263e55
SG
331int fdtdec_check_fdt(void)
332{
333 /*
334 * We must have an FDT, but we cannot panic() yet since the console
335 * is not ready. So for now, just assert(). Boards which need an early
336 * FDT (prior to console ready) will need to make their own
337 * arrangements and do their own checks.
338 */
339 assert(!fdtdec_prepare_fdt());
340 return 0;
341}
342
b5220bc6
SG
343/*
344 * This function is a little odd in that it accesses global data. At some
345 * point if the architecture board.c files merge this will make more sense.
346 * Even now, it is common code.
347 */
9a263e55 348int fdtdec_prepare_fdt(void)
b5220bc6 349{
9a263e55
SG
350 if (((uintptr_t)gd->fdt_blob & 3) || fdt_check_header(gd->fdt_blob)) {
351 printf("No valid FDT found - please append one to U-Boot "
352 "binary, use u-boot-dtb.bin or define "
353 "CONFIG_OF_EMBED\n");
354 return -1;
355 }
b5220bc6
SG
356 return 0;
357}
d17da655
SG
358
359int fdtdec_lookup_phandle(const void *blob, int node, const char *prop_name)
360{
361 const u32 *phandle;
362 int lookup;
363
1cb2323b 364 debug("%s: %s\n", __func__, prop_name);
d17da655
SG
365 phandle = fdt_getprop(blob, node, prop_name, NULL);
366 if (!phandle)
367 return -FDT_ERR_NOTFOUND;
368
369 lookup = fdt_node_offset_by_phandle(blob, fdt32_to_cpu(*phandle));
370 return lookup;
371}
372
373/**
374 * Look up a property in a node and check that it has a minimum length.
375 *
376 * @param blob FDT blob
377 * @param node node to examine
378 * @param prop_name name of property to find
379 * @param min_len minimum property length in bytes
380 * @param err 0 if ok, or -FDT_ERR_NOTFOUND if the property is not
381 found, or -FDT_ERR_BADLAYOUT if not enough data
382 * @return pointer to cell, which is only valid if err == 0
383 */
384static const void *get_prop_check_min_len(const void *blob, int node,
385 const char *prop_name, int min_len, int *err)
386{
387 const void *cell;
388 int len;
389
390 debug("%s: %s\n", __func__, prop_name);
391 cell = fdt_getprop(blob, node, prop_name, &len);
392 if (!cell)
393 *err = -FDT_ERR_NOTFOUND;
394 else if (len < min_len)
395 *err = -FDT_ERR_BADLAYOUT;
396 else
397 *err = 0;
398 return cell;
399}
400
401int fdtdec_get_int_array(const void *blob, int node, const char *prop_name,
402 u32 *array, int count)
403{
404 const u32 *cell;
405 int i, err = 0;
406
407 debug("%s: %s\n", __func__, prop_name);
408 cell = get_prop_check_min_len(blob, node, prop_name,
409 sizeof(u32) * count, &err);
410 if (!err) {
411 for (i = 0; i < count; i++)
412 array[i] = fdt32_to_cpu(cell[i]);
413 }
414 return err;
415}
416
96875e7d
SG
417const u32 *fdtdec_locate_array(const void *blob, int node,
418 const char *prop_name, int count)
419{
420 const u32 *cell;
421 int err;
422
423 cell = get_prop_check_min_len(blob, node, prop_name,
424 sizeof(u32) * count, &err);
425 return err ? NULL : cell;
426}
427
d17da655
SG
428int fdtdec_get_bool(const void *blob, int node, const char *prop_name)
429{
430 const s32 *cell;
431 int len;
432
433 debug("%s: %s\n", __func__, prop_name);
434 cell = fdt_getprop(blob, node, prop_name, &len);
435 return cell != NULL;
436}
ed3ee5cd
SG
437
438/**
439 * Decode a list of GPIOs from an FDT. This creates a list of GPIOs with no
440 * terminating item.
441 *
442 * @param blob FDT blob to use
443 * @param node Node to look at
444 * @param prop_name Node property name
445 * @param gpio Array of gpio elements to fill from FDT. This will be
446 * untouched if either 0 or an error is returned
447 * @param max_count Maximum number of elements allowed
448 * @return number of GPIOs read if ok, -FDT_ERR_BADLAYOUT if max_count would
449 * be exceeded, or -FDT_ERR_NOTFOUND if the property is missing.
450 */
5921f6a2
AK
451int fdtdec_decode_gpios(const void *blob, int node, const char *prop_name,
452 struct fdt_gpio_state *gpio, int max_count)
ed3ee5cd
SG
453{
454 const struct fdt_property *prop;
455 const u32 *cell;
456 const char *name;
457 int len, i;
458
459 debug("%s: %s\n", __func__, prop_name);
460 assert(max_count > 0);
461 prop = fdt_get_property(blob, node, prop_name, &len);
462 if (!prop) {
1cb2323b 463 debug("%s: property '%s' missing\n", __func__, prop_name);
ed3ee5cd
SG
464 return -FDT_ERR_NOTFOUND;
465 }
466
467 /* We will use the name to tag the GPIO */
468 name = fdt_string(blob, fdt32_to_cpu(prop->nameoff));
469 cell = (u32 *)prop->data;
470 len /= sizeof(u32) * 3; /* 3 cells per GPIO record */
471 if (len > max_count) {
1cb2323b 472 debug(" %s: too many GPIOs / cells for "
ed3ee5cd
SG
473 "property '%s'\n", __func__, prop_name);
474 return -FDT_ERR_BADLAYOUT;
475 }
476
477 /* Read out the GPIO data from the cells */
478 for (i = 0; i < len; i++, cell += 3) {
479 gpio[i].gpio = fdt32_to_cpu(cell[1]);
480 gpio[i].flags = fdt32_to_cpu(cell[2]);
481 gpio[i].name = name;
482 }
483
484 return len;
485}
486
487int fdtdec_decode_gpio(const void *blob, int node, const char *prop_name,
488 struct fdt_gpio_state *gpio)
489{
490 int err;
491
492 debug("%s: %s\n", __func__, prop_name);
493 gpio->gpio = FDT_GPIO_NONE;
494 gpio->name = NULL;
495 err = fdtdec_decode_gpios(blob, node, prop_name, gpio, 1);
496 return err == 1 ? 0 : err;
497}
498
202ff753
SP
499int fdtdec_get_gpio(struct fdt_gpio_state *gpio)
500{
501 int val;
502
503 if (!fdt_gpio_isvalid(gpio))
504 return -1;
505
506 val = gpio_get_value(gpio->gpio);
507 return gpio->flags & FDT_GPIO_ACTIVE_LOW ? val ^ 1 : val;
508}
509
510int fdtdec_set_gpio(struct fdt_gpio_state *gpio, int val)
511{
512 if (!fdt_gpio_isvalid(gpio))
513 return -1;
514
515 val = gpio->flags & FDT_GPIO_ACTIVE_LOW ? val ^ 1 : val;
516 return gpio_set_value(gpio->gpio, val);
517}
518
ed3ee5cd
SG
519int fdtdec_setup_gpio(struct fdt_gpio_state *gpio)
520{
521 /*
522 * Return success if there is no GPIO defined. This is used for
523 * optional GPIOs)
524 */
525 if (!fdt_gpio_isvalid(gpio))
526 return 0;
527
528 if (gpio_request(gpio->gpio, gpio->name))
529 return -1;
530 return 0;
531}
bed4d892
AS
532
533int fdtdec_get_byte_array(const void *blob, int node, const char *prop_name,
534 u8 *array, 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 memcpy(array, cell, count);
542 return err;
543}
544
545const u8 *fdtdec_locate_byte_array(const void *blob, int node,
546 const char *prop_name, int count)
547{
548 const u8 *cell;
549 int err;
550
551 cell = get_prop_check_min_len(blob, node, prop_name, count, &err);
552 if (err)
553 return NULL;
554 return cell;
555}
09258f1e 556
09258f1e
AK
557int fdtdec_get_config_int(const void *blob, const char *prop_name,
558 int default_val)
559{
560 int config_node;
561
562 debug("%s: %s\n", __func__, prop_name);
563 config_node = fdt_path_offset(blob, "/config");
564 if (config_node < 0)
565 return default_val;
566 return fdtdec_get_int(blob, config_node, prop_name, default_val);
567}
332ab0d5 568
79289c0b
GB
569int fdtdec_get_config_bool(const void *blob, const char *prop_name)
570{
571 int config_node;
572 const void *prop;
573
574 debug("%s: %s\n", __func__, prop_name);
575 config_node = fdt_path_offset(blob, "/config");
576 if (config_node < 0)
577 return 0;
578 prop = fdt_get_property(blob, config_node, prop_name, NULL);
579
580 return prop != NULL;
581}
582
332ab0d5
SG
583char *fdtdec_get_config_string(const void *blob, const char *prop_name)
584{
585 const char *nodep;
586 int nodeoffset;
587 int len;
588
589 debug("%s: %s\n", __func__, prop_name);
590 nodeoffset = fdt_path_offset(blob, "/config");
591 if (nodeoffset < 0)
592 return NULL;
593
594 nodep = fdt_getprop(blob, nodeoffset, prop_name, &len);
595 if (!nodep)
596 return NULL;
597
598 return (char *)nodep;
599}
f20c4619
SG
600
601int fdtdec_decode_region(const void *blob, int node,
602 const char *prop_name, void **ptrp, size_t *size)
603{
604 const fdt_addr_t *cell;
605 int len;
606
607 debug("%s: %s\n", __func__, prop_name);
608 cell = fdt_getprop(blob, node, prop_name, &len);
609 if (!cell || (len != sizeof(fdt_addr_t) * 2))
610 return -1;
611
612 *ptrp = (void *)fdt_addr_to_cpu(*cell);
613 *size = fdt_size_to_cpu(cell[1]);
614 debug("%s: size=%zx\n", __func__, *size);
615 return 0;
616}
This page took 0.147161 seconds and 4 git commands to generate.