blob: 71062e9602f5a01a69e52e089b510972e5b95ced [file] [log] [blame]
Sebastian Andrzej Siewior04bea682011-01-24 09:58:55 +05301#ifndef __OF_PCI_H
2#define __OF_PCI_H
3
4#include <linux/pci.h>
Thomas Petazzoni0d5a6db2013-08-09 22:27:09 +02005#include <linux/msi.h>
Sebastian Andrzej Siewior04bea682011-01-24 09:58:55 +05306
7struct pci_dev;
Grant Likely530210c2013-09-15 16:39:11 +01008struct of_phandle_args;
Benjamin Herrenschmidt98d9f30c82011-04-11 11:37:07 +10009struct device_node;
Arnd Bergmann64c5c752014-06-04 04:40:19 -050010
11#ifdef CONFIG_OF
12int of_irq_parse_pci(const struct pci_dev *pdev, struct of_phandle_args *out_irq);
Benjamin Herrenschmidt98d9f30c82011-04-11 11:37:07 +100013struct device_node *of_pci_find_child_device(struct device_node *parent,
14 unsigned int devfn);
Thierry Reding45ab9702013-05-16 17:55:18 +020015int of_pci_get_devfn(struct device_node *np);
Arnd Bergmann64c5c752014-06-04 04:40:19 -050016int of_irq_parse_and_map_pci(const struct pci_dev *dev, u8 slot, u8 pin);
Thierry Reding4e23d3f2013-05-16 17:55:19 +020017int of_pci_parse_bus_range(struct device_node *node, struct resource *res);
Liviu Dudau41e5c0f2014-09-29 15:29:27 +010018int of_get_pci_domain_nr(struct device_node *node);
Arnd Bergmann64c5c752014-06-04 04:40:19 -050019#else
20static inline int of_irq_parse_pci(const struct pci_dev *pdev, struct of_phandle_args *out_irq)
21{
22 return 0;
23}
24
25static inline struct device_node *of_pci_find_child_device(struct device_node *parent,
26 unsigned int devfn)
27{
28 return NULL;
29}
30
31static inline int of_pci_get_devfn(struct device_node *np)
32{
33 return -EINVAL;
34}
35
36static inline int
37of_irq_parse_and_map_pci(const struct pci_dev *dev, u8 slot, u8 pin)
38{
39 return 0;
40}
41
42static inline int
43of_pci_parse_bus_range(struct device_node *node, struct resource *res)
44{
45 return -EINVAL;
46}
Liviu Dudau41e5c0f2014-09-29 15:29:27 +010047
48static inline int
49of_get_pci_domain_nr(struct device_node *node)
50{
51 return -1;
52}
Arnd Bergmann64c5c752014-06-04 04:40:19 -050053#endif
Benjamin Herrenschmidt98d9f30c82011-04-11 11:37:07 +100054
Thomas Petazzoni0d5a6db2013-08-09 22:27:09 +020055#if defined(CONFIG_OF) && defined(CONFIG_PCI_MSI)
56int of_pci_msi_chip_add(struct msi_chip *chip);
57void of_pci_msi_chip_remove(struct msi_chip *chip);
58struct msi_chip *of_pci_find_msi_chip_by_node(struct device_node *of_node);
59#else
60static inline int of_pci_msi_chip_add(struct msi_chip *chip) { return -EINVAL; }
61static inline void of_pci_msi_chip_remove(struct msi_chip *chip) { }
62static inline struct msi_chip *
63of_pci_find_msi_chip_by_node(struct device_node *of_node) { return NULL; }
64#endif
65
Sebastian Andrzej Siewior04bea682011-01-24 09:58:55 +053066#endif