blob: 69f83755f05fa6455e2e122e6a806941aa0aa46c [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glass6494d702014-02-26 15:59:18 -07002/*
3 * Copyright (c) 2013 Google, Inc
Simon Glass6494d702014-02-26 15:59:18 -07004 */
5
6#include <common.h>
Simon Glass6dd4b012019-12-06 21:41:38 -07007#include <dm/device.h>
Bin Menge601ab12018-10-10 22:06:57 -07008#include <dm/ofnode.h>
Simon Glass6dd4b012019-12-06 21:41:38 -07009#include <dm/read.h>
Masahiro Yamada766c28a2017-06-22 16:50:01 +090010#include <dm/util.h>
Masahiro Yamadab08c8c42018-03-05 01:20:11 +090011#include <linux/libfdt.h>
Simon Glass6494d702014-02-26 15:59:18 -070012#include <vsprintf.h>
13
Masahiro Yamada766c28a2017-06-22 16:50:01 +090014#ifdef CONFIG_DM_WARN
Simon Glass6494d702014-02-26 15:59:18 -070015void 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}
Masahiro Yamada766c28a2017-06-22 16:50:01 +090023#endif
Simon Glass6494d702014-02-26 15:59:18 -070024
Simon Glass6494d702014-02-26 15:59:18 -070025int 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}
Heiko Stübner27326c72017-02-18 19:46:21 +010035
Marek Vasutd7677bf2019-08-31 18:03:28 +020036#if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)
Bin Menge601ab12018-10-10 22:06:57 -070037bool dm_ofnode_pre_reloc(ofnode node)
38{
Patrick Delaunayc7a88da2019-02-11 12:49:57 +010039#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
Bin Menge601ab12018-10-10 22:06:57 -070046 if (ofnode_read_bool(node, "u-boot,dm-pre-reloc"))
47 return true;
Patrick Delaunay69989742019-05-21 19:19:12 +020048 if (ofnode_read_bool(node, "u-boot,dm-pre-proper"))
49 return true;
Bin Menge601ab12018-10-10 22:06:57 -070050
Bin Menge601ab12018-10-10 22:06:57 -070051 /*
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;
Bin Menge601ab12018-10-10 22:06:57 -070058
59 return false;
Patrick Delaunayc7a88da2019-02-11 12:49:57 +010060#endif
Bin Menge601ab12018-10-10 22:06:57 -070061}
Marek Vasutd7677bf2019-08-31 18:03:28 +020062#endif
Simon Glass6dd4b012019-12-06 21:41:38 -070063
64#if !CONFIG_IS_ENABLED(OF_PLATDATA)
65int 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