diff options
author | Thierry Reding <thierry.reding@avionic-design.de> | 2013-05-16 11:55:19 -0400 |
---|---|---|
committer | Nitin Garg <nitin.garg@freescale.com> | 2014-04-16 09:47:19 -0400 |
commit | 944ee2d096faae7d70961bc8b5944414a79b0c2f (patch) | |
tree | 2acfa1283be16ed98cbbd09abc4b912054c5eeab | |
parent | 3b185938d95790a62e5858b8dcacf747f614da2a (diff) |
of/pci: Add of_pci_parse_bus_range() function
This function can be used to parse a bus-range property as specified by
device nodes representing PCI bridges.
Signed-off-by: Thierry Reding <thierry.reding@avionic-design.de>
Signed-off-by: Jason Cooper <jason@lakedaemon.net>
-rw-r--r-- | drivers/of/of_pci.c | 25 | ||||
-rw-r--r-- | include/linux/of_pci.h | 1 |
2 files changed, 26 insertions, 0 deletions
diff --git a/drivers/of/of_pci.c b/drivers/of/of_pci.c index 4dd7b9b80076..42c687a820ac 100644 --- a/drivers/of/of_pci.c +++ b/drivers/of/of_pci.c | |||
@@ -64,3 +64,28 @@ int of_pci_get_devfn(struct device_node *np) | |||
64 | return (be32_to_cpup(reg) >> 8) & 0xff; | 64 | return (be32_to_cpup(reg) >> 8) & 0xff; |
65 | } | 65 | } |
66 | EXPORT_SYMBOL_GPL(of_pci_get_devfn); | 66 | EXPORT_SYMBOL_GPL(of_pci_get_devfn); |
67 | |||
68 | /** | ||
69 | * of_pci_parse_bus_range() - parse the bus-range property of a PCI device | ||
70 | * @node: device node | ||
71 | * @res: address to a struct resource to return the bus-range | ||
72 | * | ||
73 | * Returns 0 on success or a negative error-code on failure. | ||
74 | */ | ||
75 | int of_pci_parse_bus_range(struct device_node *node, struct resource *res) | ||
76 | { | ||
77 | const __be32 *values; | ||
78 | int len; | ||
79 | |||
80 | values = of_get_property(node, "bus-range", &len); | ||
81 | if (!values || len < sizeof(*values) * 2) | ||
82 | return -EINVAL; | ||
83 | |||
84 | res->name = node->name; | ||
85 | res->start = be32_to_cpup(values++); | ||
86 | res->end = be32_to_cpup(values); | ||
87 | res->flags = IORESOURCE_BUS; | ||
88 | |||
89 | return 0; | ||
90 | } | ||
91 | EXPORT_SYMBOL_GPL(of_pci_parse_bus_range); | ||
diff --git a/include/linux/of_pci.h b/include/linux/of_pci.h index 91ec484e0045..7a04826018c0 100644 --- a/include/linux/of_pci.h +++ b/include/linux/of_pci.h | |||
@@ -11,5 +11,6 @@ struct device_node; | |||
11 | struct device_node *of_pci_find_child_device(struct device_node *parent, | 11 | struct device_node *of_pci_find_child_device(struct device_node *parent, |
12 | unsigned int devfn); | 12 | unsigned int devfn); |
13 | int of_pci_get_devfn(struct device_node *np); | 13 | int of_pci_get_devfn(struct device_node *np); |
14 | int of_pci_parse_bus_range(struct device_node *node, struct resource *res); | ||
14 | 15 | ||
15 | #endif | 16 | #endif |