2 * Copyright (c) 2011 The Chromium OS Authors.
3 * See file CREDITS for list of people who contributed to this
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.
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.
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,
29 DECLARE_GLOBAL_DATA_PTR;
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.
36 #define COMPAT(id, name) name
37 static const char * const compat_names[COMPAT_COUNT] = {
38 COMPAT(UNKNOWN, "<none>"),
39 COMPAT(NVIDIA_TEGRA20_USB, "nvidia,tegra20-ehci"),
40 COMPAT(NVIDIA_TEGRA20_I2C, "nvidia,tegra20-i2c"),
41 COMPAT(NVIDIA_TEGRA20_DVC, "nvidia,tegra20-i2c-dvc"),
42 COMPAT(NVIDIA_TEGRA20_EMC, "nvidia,tegra20-emc"),
43 COMPAT(NVIDIA_TEGRA20_EMC_TABLE, "nvidia,tegra20-emc-table"),
44 COMPAT(NVIDIA_TEGRA20_KBC, "nvidia,tegra20-kbc"),
45 COMPAT(NVIDIA_TEGRA20_NAND, "nvidia,tegra20-nand"),
46 COMPAT(NVIDIA_TEGRA20_PWM, "nvidia,tegra20-pwm"),
47 COMPAT(NVIDIA_TEGRA20_DC, "nvidia,tegra20-dc"),
48 COMPAT(NVIDIA_TEGRA20_SFLASH, "nvidia,tegra20-sflash"),
49 COMPAT(NVIDIA_TEGRA20_SLINK, "nvidia,tegra20-slink"),
50 COMPAT(SMSC_LAN9215, "smsc,lan9215"),
51 COMPAT(SAMSUNG_EXYNOS5_SROMC, "samsung,exynos-sromc"),
52 COMPAT(SAMSUNG_S3C2440_I2C, "samsung,s3c2440-i2c"),
53 COMPAT(SAMSUNG_EXYNOS5_SOUND, "samsung,exynos-sound"),
54 COMPAT(WOLFSON_WM8994_CODEC, "wolfson,wm8994-codec"),
55 COMPAT(SAMSUNG_EXYNOS_SPI, "samsung,exynos-spi"),
56 COMPAT(SAMSUNG_EXYNOS_EHCI, "samsung,exynos-ehci"),
57 COMPAT(SAMSUNG_EXYNOS_USB_PHY, "samsung,exynos-usb-phy"),
58 COMPAT(MAXIM_MAX77686_PMIC, "maxim,max77686_pmic"),
61 const char *fdtdec_get_compatible(enum fdt_compat_id id)
63 /* We allow reading of the 'unknown' ID for testing purposes */
64 assert(id >= 0 && id < COMPAT_COUNT);
65 return compat_names[id];
68 fdt_addr_t fdtdec_get_addr(const void *blob, int node,
69 const char *prop_name)
71 const fdt_addr_t *cell;
74 debug("%s: %s: ", __func__, prop_name);
75 cell = fdt_getprop(blob, node, prop_name, &len);
76 if (cell && (len == sizeof(fdt_addr_t) ||
77 len == sizeof(fdt_addr_t) * 2)) {
78 fdt_addr_t addr = fdt_addr_to_cpu(*cell);
80 debug("%p\n", (void *)addr);
83 debug("(not found)\n");
84 return FDT_ADDR_T_NONE;
87 s32 fdtdec_get_int(const void *blob, int node, const char *prop_name,
93 debug("%s: %s: ", __func__, prop_name);
94 cell = fdt_getprop(blob, node, prop_name, &len);
95 if (cell && len >= sizeof(s32)) {
96 s32 val = fdt32_to_cpu(cell[0]);
98 debug("%#x (%d)\n", val, val);
101 debug("(not found)\n");
105 uint64_t fdtdec_get_uint64(const void *blob, int node, const char *prop_name,
106 uint64_t default_val)
108 const uint64_t *cell64;
111 cell64 = fdt_getprop(blob, node, prop_name, &length);
112 if (!cell64 || length < sizeof(*cell64))
115 return fdt64_to_cpu(*cell64);
118 int fdtdec_get_is_enabled(const void *blob, int node)
123 * It should say "okay", so only allow that. Some fdts use "ok" but
124 * this is a bug. Please fix your device tree source file. See here
127 * http://www.mail-archive.com/u-boot@lists.denx.de/msg71598.html
129 cell = fdt_getprop(blob, node, "status", NULL);
131 return 0 == strcmp(cell, "okay");
135 enum fdt_compat_id fdtdec_lookup(const void *blob, int node)
137 enum fdt_compat_id id;
139 /* Search our drivers */
140 for (id = COMPAT_UNKNOWN; id < COMPAT_COUNT; id++)
141 if (0 == fdt_node_check_compatible(blob, node,
144 return COMPAT_UNKNOWN;
147 int fdtdec_next_compatible(const void *blob, int node,
148 enum fdt_compat_id id)
150 return fdt_node_offset_by_compatible(blob, node, compat_names[id]);
153 int fdtdec_next_compatible_subnode(const void *blob, int node,
154 enum fdt_compat_id id, int *depthp)
157 node = fdt_next_node(blob, node, depthp);
158 } while (*depthp > 1);
160 /* If this is a direct subnode, and compatible, return it */
161 if (*depthp == 1 && 0 == fdt_node_check_compatible(
162 blob, node, compat_names[id]))
165 return -FDT_ERR_NOTFOUND;
168 int fdtdec_next_alias(const void *blob, const char *name,
169 enum fdt_compat_id id, int *upto)
171 #define MAX_STR_LEN 20
172 char str[MAX_STR_LEN + 20];
175 /* snprintf() is not available */
176 assert(strlen(name) < MAX_STR_LEN);
177 sprintf(str, "%.*s%d", MAX_STR_LEN, name, *upto);
178 node = fdt_path_offset(blob, str);
181 err = fdt_node_check_compatible(blob, node, compat_names[id]);
185 return -FDT_ERR_NOTFOUND;
190 int fdtdec_find_aliases_for_id(const void *blob, const char *name,
191 enum fdt_compat_id id, int *node_list, int maxcount)
193 memset(node_list, '\0', sizeof(*node_list) * maxcount);
195 return fdtdec_add_aliases_for_id(blob, name, id, node_list, maxcount);
198 /* TODO: Can we tighten this code up a little? */
199 int fdtdec_add_aliases_for_id(const void *blob, const char *name,
200 enum fdt_compat_id id, int *node_list, int maxcount)
202 int name_len = strlen(name);
210 /* find the alias node if present */
211 alias_node = fdt_path_offset(blob, "/aliases");
214 * start with nothing, and we can assume that the root node can't
217 memset(nodes, '\0', sizeof(nodes));
219 /* First find all the compatible nodes */
220 for (node = count = 0; node >= 0 && count < maxcount;) {
221 node = fdtdec_next_compatible(blob, node, id);
223 nodes[count++] = node;
226 debug("%s: warning: maxcount exceeded with alias '%s'\n",
229 /* Now find all the aliases */
230 for (offset = fdt_first_property_offset(blob, alias_node);
232 offset = fdt_next_property_offset(blob, offset)) {
233 const struct fdt_property *prop;
239 prop = fdt_get_property_by_offset(blob, offset, NULL);
240 path = fdt_string(blob, fdt32_to_cpu(prop->nameoff));
241 if (prop->len && 0 == strncmp(path, name, name_len))
242 node = fdt_path_offset(blob, prop->data);
246 /* Get the alias number */
247 number = simple_strtoul(path + name_len, NULL, 10);
248 if (number < 0 || number >= maxcount) {
249 debug("%s: warning: alias '%s' is out of range\n",
254 /* Make sure the node we found is actually in our list! */
256 for (j = 0; j < count; j++)
257 if (nodes[j] == node) {
263 debug("%s: warning: alias '%s' points to a node "
264 "'%s' that is missing or is not compatible "
265 " with '%s'\n", __func__, path,
266 fdt_get_name(blob, node, NULL),
272 * Add this node to our list in the right place, and mark
275 if (fdtdec_get_is_enabled(blob, node)) {
276 if (node_list[number]) {
277 debug("%s: warning: alias '%s' requires that "
278 "a node be placed in the list in a "
279 "position which is already filled by "
280 "node '%s'\n", __func__, path,
281 fdt_get_name(blob, node, NULL));
284 node_list[number] = node;
285 if (number >= num_found)
286 num_found = number + 1;
291 /* Add any nodes not mentioned by an alias */
292 for (i = j = 0; i < maxcount; i++) {
294 for (; j < maxcount; j++)
296 fdtdec_get_is_enabled(blob, nodes[j]))
299 /* Have we run out of nodes to add? */
303 assert(!node_list[i]);
304 node_list[i] = nodes[j++];
313 int fdtdec_check_fdt(void)
316 * We must have an FDT, but we cannot panic() yet since the console
317 * is not ready. So for now, just assert(). Boards which need an early
318 * FDT (prior to console ready) will need to make their own
319 * arrangements and do their own checks.
321 assert(!fdtdec_prepare_fdt());
326 * This function is a little odd in that it accesses global data. At some
327 * point if the architecture board.c files merge this will make more sense.
328 * Even now, it is common code.
330 int fdtdec_prepare_fdt(void)
332 if (((uintptr_t)gd->fdt_blob & 3) || fdt_check_header(gd->fdt_blob)) {
333 printf("No valid FDT found - please append one to U-Boot "
334 "binary, use u-boot-dtb.bin or define "
335 "CONFIG_OF_EMBED\n");
341 int fdtdec_lookup_phandle(const void *blob, int node, const char *prop_name)
346 debug("%s: %s\n", __func__, prop_name);
347 phandle = fdt_getprop(blob, node, prop_name, NULL);
349 return -FDT_ERR_NOTFOUND;
351 lookup = fdt_node_offset_by_phandle(blob, fdt32_to_cpu(*phandle));
356 * Look up a property in a node and check that it has a minimum length.
358 * @param blob FDT blob
359 * @param node node to examine
360 * @param prop_name name of property to find
361 * @param min_len minimum property length in bytes
362 * @param err 0 if ok, or -FDT_ERR_NOTFOUND if the property is not
363 found, or -FDT_ERR_BADLAYOUT if not enough data
364 * @return pointer to cell, which is only valid if err == 0
366 static const void *get_prop_check_min_len(const void *blob, int node,
367 const char *prop_name, int min_len, int *err)
372 debug("%s: %s\n", __func__, prop_name);
373 cell = fdt_getprop(blob, node, prop_name, &len);
375 *err = -FDT_ERR_NOTFOUND;
376 else if (len < min_len)
377 *err = -FDT_ERR_BADLAYOUT;
383 int fdtdec_get_int_array(const void *blob, int node, const char *prop_name,
384 u32 *array, int count)
389 debug("%s: %s\n", __func__, prop_name);
390 cell = get_prop_check_min_len(blob, node, prop_name,
391 sizeof(u32) * count, &err);
393 for (i = 0; i < count; i++)
394 array[i] = fdt32_to_cpu(cell[i]);
399 const u32 *fdtdec_locate_array(const void *blob, int node,
400 const char *prop_name, int count)
405 cell = get_prop_check_min_len(blob, node, prop_name,
406 sizeof(u32) * count, &err);
407 return err ? NULL : cell;
410 int fdtdec_get_bool(const void *blob, int node, const char *prop_name)
415 debug("%s: %s\n", __func__, prop_name);
416 cell = fdt_getprop(blob, node, prop_name, &len);
421 * Decode a list of GPIOs from an FDT. This creates a list of GPIOs with no
424 * @param blob FDT blob to use
425 * @param node Node to look at
426 * @param prop_name Node property name
427 * @param gpio Array of gpio elements to fill from FDT. This will be
428 * untouched if either 0 or an error is returned
429 * @param max_count Maximum number of elements allowed
430 * @return number of GPIOs read if ok, -FDT_ERR_BADLAYOUT if max_count would
431 * be exceeded, or -FDT_ERR_NOTFOUND if the property is missing.
433 int fdtdec_decode_gpios(const void *blob, int node, const char *prop_name,
434 struct fdt_gpio_state *gpio, int max_count)
436 const struct fdt_property *prop;
441 debug("%s: %s\n", __func__, prop_name);
442 assert(max_count > 0);
443 prop = fdt_get_property(blob, node, prop_name, &len);
445 debug("%s: property '%s' missing\n", __func__, prop_name);
446 return -FDT_ERR_NOTFOUND;
449 /* We will use the name to tag the GPIO */
450 name = fdt_string(blob, fdt32_to_cpu(prop->nameoff));
451 cell = (u32 *)prop->data;
452 len /= sizeof(u32) * 3; /* 3 cells per GPIO record */
453 if (len > max_count) {
454 debug(" %s: too many GPIOs / cells for "
455 "property '%s'\n", __func__, prop_name);
456 return -FDT_ERR_BADLAYOUT;
459 /* Read out the GPIO data from the cells */
460 for (i = 0; i < len; i++, cell += 3) {
461 gpio[i].gpio = fdt32_to_cpu(cell[1]);
462 gpio[i].flags = fdt32_to_cpu(cell[2]);
469 int fdtdec_decode_gpio(const void *blob, int node, const char *prop_name,
470 struct fdt_gpio_state *gpio)
474 debug("%s: %s\n", __func__, prop_name);
475 gpio->gpio = FDT_GPIO_NONE;
477 err = fdtdec_decode_gpios(blob, node, prop_name, gpio, 1);
478 return err == 1 ? 0 : err;
481 int fdtdec_get_gpio(struct fdt_gpio_state *gpio)
485 if (!fdt_gpio_isvalid(gpio))
488 val = gpio_get_value(gpio->gpio);
489 return gpio->flags & FDT_GPIO_ACTIVE_LOW ? val ^ 1 : val;
492 int fdtdec_set_gpio(struct fdt_gpio_state *gpio, int val)
494 if (!fdt_gpio_isvalid(gpio))
497 val = gpio->flags & FDT_GPIO_ACTIVE_LOW ? val ^ 1 : val;
498 return gpio_set_value(gpio->gpio, val);
501 int fdtdec_setup_gpio(struct fdt_gpio_state *gpio)
504 * Return success if there is no GPIO defined. This is used for
507 if (!fdt_gpio_isvalid(gpio))
510 if (gpio_request(gpio->gpio, gpio->name))
515 int fdtdec_get_byte_array(const void *blob, int node, const char *prop_name,
516 u8 *array, int count)
521 cell = get_prop_check_min_len(blob, node, prop_name, count, &err);
523 memcpy(array, cell, count);
527 const u8 *fdtdec_locate_byte_array(const void *blob, int node,
528 const char *prop_name, int count)
533 cell = get_prop_check_min_len(blob, node, prop_name, count, &err);
539 int fdtdec_get_config_int(const void *blob, const char *prop_name,
544 debug("%s: %s\n", __func__, prop_name);
545 config_node = fdt_path_offset(blob, "/config");
548 return fdtdec_get_int(blob, config_node, prop_name, default_val);
551 int fdtdec_get_config_bool(const void *blob, const char *prop_name)
556 debug("%s: %s\n", __func__, prop_name);
557 config_node = fdt_path_offset(blob, "/config");
560 prop = fdt_get_property(blob, config_node, prop_name, NULL);
565 char *fdtdec_get_config_string(const void *blob, const char *prop_name)
571 debug("%s: %s\n", __func__, prop_name);
572 nodeoffset = fdt_path_offset(blob, "/config");
576 nodep = fdt_getprop(blob, nodeoffset, prop_name, &len);
580 return (char *)nodep;
583 int fdtdec_decode_region(const void *blob, int node,
584 const char *prop_name, void **ptrp, size_t *size)
586 const fdt_addr_t *cell;
589 debug("%s: %s\n", __func__, prop_name);
590 cell = fdt_getprop(blob, node, prop_name, &len);
591 if (!cell || (len != sizeof(fdt_addr_t) * 2))
594 *ptrp = (void *)fdt_addr_to_cpu(*cell);
595 *size = fdt_size_to_cpu(cell[1]);
596 debug("%s: size=%zx\n", __func__, *size);