Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2013 Google, Inc |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #include <common.h> |
Simon Glass | 0b591e0 | 2019-12-06 21:41:38 -0700 | [diff] [blame] | 7 | #include <dm/device.h> |
Bin Meng | dddc3a8 | 2018-10-10 22:06:57 -0700 | [diff] [blame] | 8 | #include <dm/ofnode.h> |
Simon Glass | 0b591e0 | 2019-12-06 21:41:38 -0700 | [diff] [blame] | 9 | #include <dm/read.h> |
Masahiro Yamada | 3247fdb | 2017-06-22 16:50:01 +0900 | [diff] [blame] | 10 | #include <dm/util.h> |
Masahiro Yamada | 75f82d0 | 2018-03-05 01:20:11 +0900 | [diff] [blame] | 11 | #include <linux/libfdt.h> |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 12 | #include <vsprintf.h> |
| 13 | |
Simon Glass | 85bf4f2 | 2020-10-03 11:31:26 -0600 | [diff] [blame] | 14 | #if CONFIG_IS_ENABLED(DM_WARN) |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 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 | } |
Masahiro Yamada | 3247fdb | 2017-06-22 16:50:01 +0900 | [diff] [blame] | 23 | #endif |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 24 | |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 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 | } |
Heiko Stübner | 9a2cdca | 2017-02-18 19:46:21 +0100 | [diff] [blame] | 35 | |
Simon Glass | 0b591e0 | 2019-12-06 21:41:38 -0700 | [diff] [blame] | 36 | #if !CONFIG_IS_ENABLED(OF_PLATDATA) |
| 37 | int pci_get_devfn(struct udevice *dev) |
| 38 | { |
| 39 | struct fdt_pci_addr addr; |
| 40 | int ret; |
| 41 | |
| 42 | /* Extract the devfn from fdt_pci_addr */ |
| 43 | ret = ofnode_read_pci_addr(dev_ofnode(dev), FDT_PCI_SPACE_CONFIG, |
| 44 | "reg", &addr); |
| 45 | if (ret) { |
| 46 | if (ret != -ENOENT) |
| 47 | return -EINVAL; |
| 48 | } |
| 49 | |
| 50 | return addr.phys_hi & 0xff00; |
| 51 | } |
| 52 | #endif |