blob: 7fd5cfce91403f0571335fc4b172d889e6ad371e [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
Robin Murphy5c1d3312016-06-07 18:44:48 +010011#ifdef CONFIG_OF_PCI
Arnd Bergmann64c5c752014-06-04 04:40:19 -050012int 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);
Marc Zyngierf81c11a2015-09-04 17:50:08 +010019void of_pci_check_probe_only(void);
Robin Murphy987068f2016-09-12 17:13:40 +010020int of_pci_map_rid(struct device_node *np, u32 rid,
21 const char *map_name, const char *map_mask_name,
22 struct device_node **target, u32 *id_out);
Arnd Bergmann64c5c752014-06-04 04:40:19 -050023#else
24static inline int of_irq_parse_pci(const struct pci_dev *pdev, struct of_phandle_args *out_irq)
25{
26 return 0;
27}
28
29static inline struct device_node *of_pci_find_child_device(struct device_node *parent,
30 unsigned int devfn)
31{
32 return NULL;
33}
34
35static inline int of_pci_get_devfn(struct device_node *np)
36{
37 return -EINVAL;
38}
39
40static inline int
41of_irq_parse_and_map_pci(const struct pci_dev *dev, u8 slot, u8 pin)
42{
43 return 0;
44}
45
46static inline int
47of_pci_parse_bus_range(struct device_node *node, struct resource *res)
48{
49 return -EINVAL;
50}
Liviu Dudau41e5c0f2014-09-29 15:29:27 +010051
52static inline int
53of_get_pci_domain_nr(struct device_node *node)
54{
55 return -1;
56}
Murali Karicheric49b8fc2015-03-03 12:52:12 -050057
Robin Murphy987068f2016-09-12 17:13:40 +010058static inline int of_pci_map_rid(struct device_node *np, u32 rid,
59 const char *map_name, const char *map_mask_name,
60 struct device_node **target, u32 *id_out)
61{
62 return -EINVAL;
63}
64
Marc Zyngierf81c11a2015-09-04 17:50:08 +010065static inline void of_pci_check_probe_only(void) { }
Arnd Bergmann64c5c752014-06-04 04:40:19 -050066#endif
Benjamin Herrenschmidt98d9f30c82011-04-11 11:37:07 +100067
Liviu Dudaucbe40972014-09-29 15:29:28 +010068#if defined(CONFIG_OF_ADDRESS)
69int of_pci_get_host_bridge_resources(struct device_node *dev,
70 unsigned char busno, unsigned char bus_max,
71 struct list_head *resources, resource_size_t *io_base);
Arnd Bergmann40704b12015-12-18 16:02:41 +010072#else
73static inline int of_pci_get_host_bridge_resources(struct device_node *dev,
74 unsigned char busno, unsigned char bus_max,
75 struct list_head *resources, resource_size_t *io_base)
76{
77 return -EINVAL;
78}
Liviu Dudaucbe40972014-09-29 15:29:28 +010079#endif
80
Thomas Petazzoni0d5a6db2013-08-09 22:27:09 +020081#if defined(CONFIG_OF) && defined(CONFIG_PCI_MSI)
Yijing Wangc2791b82014-11-11 17:45:45 -070082int of_pci_msi_chip_add(struct msi_controller *chip);
83void of_pci_msi_chip_remove(struct msi_controller *chip);
84struct msi_controller *of_pci_find_msi_chip_by_node(struct device_node *of_node);
Thomas Petazzoni0d5a6db2013-08-09 22:27:09 +020085#else
Yijing Wangc2791b82014-11-11 17:45:45 -070086static inline int of_pci_msi_chip_add(struct msi_controller *chip) { return -EINVAL; }
87static inline void of_pci_msi_chip_remove(struct msi_controller *chip) { }
88static inline struct msi_controller *
Thomas Petazzoni0d5a6db2013-08-09 22:27:09 +020089of_pci_find_msi_chip_by_node(struct device_node *of_node) { return NULL; }
90#endif
91
Sebastian Andrzej Siewior04bea682011-01-24 09:58:55 +053092#endif