1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright (C) 2016 Google, Inc
10 #include <linux/libfdt.h>
12 ulong fdt_getprop_u32(const void *fdt, int node, const char *prop)
17 cell = fdt_getprop(fdt, node, prop, &len);
18 if (!cell || len != sizeof(*cell))
21 return fdt32_to_cpu(*cell);
24 __weak int board_fit_config_name_match(const char *name)
30 * Iterate over all /configurations subnodes and call a platform specific
31 * function to find the matching configuration.
32 * Returns the node offset or a negative error number.
34 int fit_find_config_node(const void *fdt)
38 const char *dflt_conf_name;
39 const char *dflt_conf_desc = NULL;
40 int dflt_conf_node = -ENOENT;
42 conf = fdt_path_offset(fdt, FIT_CONFS_PATH);
44 debug("%s: Cannot find /configurations node: %d\n", __func__,
49 dflt_conf_name = fdt_getprop(fdt, conf, "default", &len);
51 for (node = fdt_first_subnode(fdt, conf);
53 node = fdt_next_subnode(fdt, node)) {
54 name = fdt_getprop(fdt, node, "description", &len);
56 #ifdef CONFIG_SPL_LIBCOMMON_SUPPORT
57 printf("%s: Missing FDT description in DTB\n",
64 const char *node_name = fdt_get_name(fdt, node, NULL);
65 if (strcmp(dflt_conf_name, node_name) == 0) {
66 dflt_conf_node = node;
67 dflt_conf_desc = name;
71 if (board_fit_config_name_match(name))
74 debug("Selecting config '%s'\n", name);
79 if (dflt_conf_node != -ENOENT) {
80 debug("Selecting default config '%s'\n", dflt_conf_desc);
81 return dflt_conf_node;