blob: 0e0974eceb803b64cee8f8f67a7bde55d58f8f4a [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);
Shawn Lin9a1dc382016-11-14 15:21:14 -060019int of_pci_get_max_link_speed(struct device_node *node);
Marc Zyngierf81c11a2015-09-04 17:50:08 +010020void of_pci_check_probe_only(void);
Robin Murphy987068f2016-09-12 17:13:40 +010021int of_pci_map_rid(struct device_node *np, u32 rid,
22 const char *map_name, const char *map_mask_name,
23 struct device_node **target, u32 *id_out);
Arnd Bergmann64c5c752014-06-04 04:40:19 -050024#else
25static inline int of_irq_parse_pci(const struct pci_dev *pdev, struct of_phandle_args *out_irq)
26{
27 return 0;
28}
29
30static inline struct device_node *of_pci_find_child_device(struct device_node *parent,
31 unsigned int devfn)
32{
33 return NULL;
34}
35
36static inline int of_pci_get_devfn(struct device_node *np)
37{
38 return -EINVAL;
39}
40
41static inline int
42of_irq_parse_and_map_pci(const struct pci_dev *dev, u8 slot, u8 pin)
43{
44 return 0;
45}
46
47static inline int
48of_pci_parse_bus_range(struct device_node *node, struct resource *res)
49{
50 return -EINVAL;
51}
Liviu Dudau41e5c0f2014-09-29 15:29:27 +010052
53static inline int
54of_get_pci_domain_nr(struct device_node *node)
55{
56 return -1;
57}
Murali Karicheric49b8fc2015-03-03 12:52:12 -050058
Robin Murphy987068f2016-09-12 17:13:40 +010059static inline int of_pci_map_rid(struct device_node *np, u32 rid,
60 const char *map_name, const char *map_mask_name,
61 struct device_node **target, u32 *id_out)
62{
63 return -EINVAL;
64}
65
Shawn Lin9a1dc382016-11-14 15:21:14 -060066static inline int
67of_pci_get_max_link_speed(struct device_node *node)
68{
69 return -EINVAL;
70}
71
Marc Zyngierf81c11a2015-09-04 17:50:08 +010072static inline void of_pci_check_probe_only(void) { }
Arnd Bergmann64c5c752014-06-04 04:40:19 -050073#endif
Benjamin Herrenschmidt98d9f30c82011-04-11 11:37:07 +100074
Liviu Dudaucbe40972014-09-29 15:29:28 +010075#if defined(CONFIG_OF_ADDRESS)
76int of_pci_get_host_bridge_resources(struct device_node *dev,
77 unsigned char busno, unsigned char bus_max,
78 struct list_head *resources, resource_size_t *io_base);
Arnd Bergmann40704b12015-12-18 16:02:41 +010079#else
80static inline int of_pci_get_host_bridge_resources(struct device_node *dev,
81 unsigned char busno, unsigned char bus_max,
82 struct list_head *resources, resource_size_t *io_base)
83{
84 return -EINVAL;
85}
Liviu Dudaucbe40972014-09-29 15:29:28 +010086#endif
87
Thomas Petazzoni0d5a6db2013-08-09 22:27:09 +020088#if defined(CONFIG_OF) && defined(CONFIG_PCI_MSI)
Yijing Wangc2791b82014-11-11 17:45:45 -070089int of_pci_msi_chip_add(struct msi_controller *chip);
90void of_pci_msi_chip_remove(struct msi_controller *chip);
91struct msi_controller *of_pci_find_msi_chip_by_node(struct device_node *of_node);
Thomas Petazzoni0d5a6db2013-08-09 22:27:09 +020092#else
Yijing Wangc2791b82014-11-11 17:45:45 -070093static inline int of_pci_msi_chip_add(struct msi_controller *chip) { return -EINVAL; }
94static inline void of_pci_msi_chip_remove(struct msi_controller *chip) { }
95static inline struct msi_controller *
Thomas Petazzoni0d5a6db2013-08-09 22:27:09 +020096of_pci_find_msi_chip_by_node(struct device_node *of_node) { return NULL; }
97#endif
98
Sebastian Andrzej Siewior04bea682011-01-24 09:58:55 +053099#endif