efi_loader: add some description about UEFI secure boot
[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/device.h>
8 #include <dm/ofnode.h>
9 #include <dm/read.h>
10 #include <dm/util.h>
11 #include <linux/libfdt.h>
12 #include <vsprintf.h>
13
14 #ifdef CONFIG_DM_WARN
15 void dm_warn(const char *fmt, ...)
16 {
17         va_list args;
18
19         va_start(args, fmt);
20         vprintf(fmt, args);
21         va_end(args);
22 }
23 #endif
24
25 int list_count_items(struct list_head *head)
26 {
27         struct list_head *node;
28         int count = 0;
29
30         list_for_each(node, head)
31                 count++;
32
33         return count;
34 }
35
36 #if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)
37 bool dm_ofnode_pre_reloc(ofnode node)
38 {
39 #if defined(CONFIG_SPL_BUILD) || defined(CONFIG_TPL_BUILD)
40         /* for SPL and TPL the remaining nodes after the fdtgrep 1st pass
41          * had property dm-pre-reloc or u-boot,dm-spl/tpl.
42          * They are removed in final dtb (fdtgrep 2nd pass)
43          */
44         return true;
45 #else
46         if (ofnode_read_bool(node, "u-boot,dm-pre-reloc"))
47                 return true;
48         if (ofnode_read_bool(node, "u-boot,dm-pre-proper"))
49                 return true;
50
51         /*
52          * In regular builds individual spl and tpl handling both
53          * count as handled pre-relocation for later second init.
54          */
55         if (ofnode_read_bool(node, "u-boot,dm-spl") ||
56             ofnode_read_bool(node, "u-boot,dm-tpl"))
57                 return true;
58
59         return false;
60 #endif
61 }
62 #endif
63
64 #if !CONFIG_IS_ENABLED(OF_PLATDATA)
65 int pci_get_devfn(struct udevice *dev)
66 {
67         struct fdt_pci_addr addr;
68         int ret;
69
70         /* Extract the devfn from fdt_pci_addr */
71         ret = ofnode_read_pci_addr(dev_ofnode(dev), FDT_PCI_SPACE_CONFIG,
72                                    "reg", &addr);
73         if (ret) {
74                 if (ret != -ENOENT)
75                         return -EINVAL;
76         }
77
78         return addr.phys_hi & 0xff00;
79 }
80 #endif