aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/of/of_pci.c
diff options
context:
space:
mode:
authorThierry Reding <thierry.reding@avionic-design.de>2013-05-16 11:55:19 -0400
committerJason Cooper <jason@lakedaemon.net>2013-05-19 16:30:10 -0400
commit4e23d3f505e8acfeac7cc33d4113fbb5a25c3090 (patch)
tree48184aadabb71896e0dd5295ee0daf14de81148c /drivers/of/of_pci.c
parent45ab9702fb47d18dca116b3a0509efa19fbcb27a (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>
Diffstat (limited to 'drivers/of/of_pci.c')
-rw-r--r--drivers/of/of_pci.c25
1 files changed, 25 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}
66EXPORT_SYMBOL_GPL(of_pci_get_devfn); 66EXPORT_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 */
75int 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}
91EXPORT_SYMBOL_GPL(of_pci_parse_bus_range);