Sebastian Andrzej Siewior | 04bea68 | 2011-01-24 09:58:55 +0530 | [diff] [blame] | 1 | #include <linux/kernel.h> |
Paul Gortmaker | 9775913 | 2011-05-27 17:06:52 -0400 | [diff] [blame] | 2 | #include <linux/export.h> |
Grant Likely | a642285 | 2011-07-23 23:52:48 -0600 | [diff] [blame] | 3 | #include <linux/of.h> |
Sebastian Andrzej Siewior | 04bea68 | 2011-01-24 09:58:55 +0530 | [diff] [blame] | 4 | #include <linux/of_pci.h> |
Sebastian Andrzej Siewior | 04bea68 | 2011-01-24 09:58:55 +0530 | [diff] [blame] | 5 | #include <asm/prom.h> |
| 6 | |
Benjamin Herrenschmidt | 98d9f30c8 | 2011-04-11 11:37:07 +1000 | [diff] [blame] | 7 | static inline int __of_pci_pci_compare(struct device_node *node, |
Thierry Reding | 45ab970 | 2013-05-16 17:55:18 +0200 | [diff] [blame^] | 8 | unsigned int data) |
Sebastian Andrzej Siewior | 04bea68 | 2011-01-24 09:58:55 +0530 | [diff] [blame] | 9 | { |
Thierry Reding | 45ab970 | 2013-05-16 17:55:18 +0200 | [diff] [blame^] | 10 | int devfn; |
Sebastian Andrzej Siewior | 04bea68 | 2011-01-24 09:58:55 +0530 | [diff] [blame] | 11 | |
Thierry Reding | 45ab970 | 2013-05-16 17:55:18 +0200 | [diff] [blame^] | 12 | devfn = of_pci_get_devfn(node); |
| 13 | if (devfn < 0) |
Benjamin Herrenschmidt | 98d9f30c8 | 2011-04-11 11:37:07 +1000 | [diff] [blame] | 14 | return 0; |
Thierry Reding | 45ab970 | 2013-05-16 17:55:18 +0200 | [diff] [blame^] | 15 | |
| 16 | return devfn == data; |
Sebastian Andrzej Siewior | 04bea68 | 2011-01-24 09:58:55 +0530 | [diff] [blame] | 17 | } |
Benjamin Herrenschmidt | 98d9f30c8 | 2011-04-11 11:37:07 +1000 | [diff] [blame] | 18 | |
| 19 | struct device_node *of_pci_find_child_device(struct device_node *parent, |
| 20 | unsigned int devfn) |
| 21 | { |
| 22 | struct device_node *node, *node2; |
| 23 | |
| 24 | for_each_child_of_node(parent, node) { |
| 25 | if (__of_pci_pci_compare(node, devfn)) |
| 26 | return node; |
| 27 | /* |
| 28 | * Some OFs create a parent node "multifunc-device" as |
| 29 | * a fake root for all functions of a multi-function |
| 30 | * device we go down them as well. |
| 31 | */ |
| 32 | if (!strcmp(node->name, "multifunc-device")) { |
| 33 | for_each_child_of_node(node, node2) { |
| 34 | if (__of_pci_pci_compare(node2, devfn)) { |
| 35 | of_node_put(node); |
| 36 | return node2; |
| 37 | } |
| 38 | } |
| 39 | } |
| 40 | } |
| 41 | return NULL; |
| 42 | } |
| 43 | EXPORT_SYMBOL_GPL(of_pci_find_child_device); |
Thierry Reding | 45ab970 | 2013-05-16 17:55:18 +0200 | [diff] [blame^] | 44 | |
| 45 | /** |
| 46 | * of_pci_get_devfn() - Get device and function numbers for a device node |
| 47 | * @np: device node |
| 48 | * |
| 49 | * Parses a standard 5-cell PCI resource and returns an 8-bit value that can |
| 50 | * be passed to the PCI_SLOT() and PCI_FUNC() macros to extract the device |
| 51 | * and function numbers respectively. On error a negative error code is |
| 52 | * returned. |
| 53 | */ |
| 54 | int of_pci_get_devfn(struct device_node *np) |
| 55 | { |
| 56 | unsigned int size; |
| 57 | const __be32 *reg; |
| 58 | |
| 59 | reg = of_get_property(np, "reg", &size); |
| 60 | |
| 61 | if (!reg || size < 5 * sizeof(__be32)) |
| 62 | return -EINVAL; |
| 63 | |
| 64 | return (be32_to_cpup(reg) >> 8) & 0xff; |
| 65 | } |
| 66 | EXPORT_SYMBOL_GPL(of_pci_get_devfn); |