Merge tag 'dm-pull-9jul19-take2' of https://gitlab.denx.de/u-boot/custodians/u-boot-dm
[oweals/u-boot.git] / drivers / core / util.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Copyright (c) 2013 Google, Inc
4  */
5
6 #include <common.h>
7 #include <dm/ofnode.h>
8 #include <dm/util.h>
9 #include <linux/libfdt.h>
10 #include <vsprintf.h>
11
12 #ifdef CONFIG_DM_WARN
13 void dm_warn(const char *fmt, ...)
14 {
15         va_list args;
16
17         va_start(args, fmt);
18         vprintf(fmt, args);
19         va_end(args);
20 }
21 #endif
22
23 int list_count_items(struct list_head *head)
24 {
25         struct list_head *node;
26         int count = 0;
27
28         list_for_each(node, head)
29                 count++;
30
31         return count;
32 }
33
34 bool dm_ofnode_pre_reloc(ofnode node)
35 {
36 #if defined(CONFIG_SPL_BUILD) || defined(CONFIG_TPL_BUILD)
37         /* for SPL and TPL the remaining nodes after the fdtgrep 1st pass
38          * had property dm-pre-reloc or u-boot,dm-spl/tpl.
39          * They are removed in final dtb (fdtgrep 2nd pass)
40          */
41         return true;
42 #else
43         if (ofnode_read_bool(node, "u-boot,dm-pre-reloc"))
44                 return true;
45         if (ofnode_read_bool(node, "u-boot,dm-pre-proper"))
46                 return true;
47
48         /*
49          * In regular builds individual spl and tpl handling both
50          * count as handled pre-relocation for later second init.
51          */
52         if (ofnode_read_bool(node, "u-boot,dm-spl") ||
53             ofnode_read_bool(node, "u-boot,dm-tpl"))
54                 return true;
55
56         return false;
57 #endif
58 }