blob: 091033a6b836fd78bd4a22dfdb622eb4b39c32b8 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Sebastian Andrzej Siewior04bea682011-01-24 09:58:55 +05302#ifndef __OF_PCI_H
3#define __OF_PCI_H
4
5#include <linux/pci.h>
Thomas Petazzoni0d5a6db2013-08-09 22:27:09 +02006#include <linux/msi.h>
Sebastian Andrzej Siewior04bea682011-01-24 09:58:55 +05307
8struct pci_dev;
Grant Likely530210c2013-09-15 16:39:11 +01009struct of_phandle_args;
Benjamin Herrenschmidt98d9f30c82011-04-11 11:37:07 +100010struct device_node;
Arnd Bergmann64c5c752014-06-04 04:40:19 -050011
Rob Herring4670d612018-01-17 17:36:39 -060012#if IS_ENABLED(CONFIG_OF) && IS_ENABLED(CONFIG_PCI)
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);
Thierry Reding4e23d3f2013-05-16 17:55:19 +020016int of_pci_parse_bus_range(struct device_node *node, struct resource *res);
Liviu Dudau41e5c0f2014-09-29 15:29:27 +010017int of_get_pci_domain_nr(struct device_node *node);
Shawn Lin9a1dc382016-11-14 15:21:14 -060018int of_pci_get_max_link_speed(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
Arnd Bergmann64c5c752014-06-04 04:40:19 -050024static inline struct device_node *of_pci_find_child_device(struct device_node *parent,
25 unsigned int devfn)
26{
27 return NULL;
28}
29
30static inline int of_pci_get_devfn(struct device_node *np)
31{
32 return -EINVAL;
33}
34
35static inline int
Arnd Bergmann64c5c752014-06-04 04:40:19 -050036of_pci_parse_bus_range(struct device_node *node, struct resource *res)
37{
38 return -EINVAL;
39}
Liviu Dudau41e5c0f2014-09-29 15:29:27 +010040
41static inline int
42of_get_pci_domain_nr(struct device_node *node)
43{
44 return -1;
45}
Murali Karicheric49b8fc2015-03-03 12:52:12 -050046
Robin Murphy987068f2016-09-12 17:13:40 +010047static inline int of_pci_map_rid(struct device_node *np, u32 rid,
48 const char *map_name, const char *map_mask_name,
49 struct device_node **target, u32 *id_out)
50{
51 return -EINVAL;
52}
53
Shawn Lin9a1dc382016-11-14 15:21:14 -060054static inline int
55of_pci_get_max_link_speed(struct device_node *node)
56{
57 return -EINVAL;
58}
59
Marc Zyngierf81c11a2015-09-04 17:50:08 +010060static inline void of_pci_check_probe_only(void) { }
Arnd Bergmann64c5c752014-06-04 04:40:19 -050061#endif
Benjamin Herrenschmidt98d9f30c82011-04-11 11:37:07 +100062
Guenter Roecka6f10862018-03-05 15:22:30 -080063#if IS_ENABLED(CONFIG_OF_IRQ)
64int of_irq_parse_and_map_pci(const struct pci_dev *dev, u8 slot, u8 pin);
65#else
66static inline int
67of_irq_parse_and_map_pci(const struct pci_dev *dev, u8 slot, u8 pin)
68{
69 return 0;
70}
71#endif
72
Liviu Dudaucbe40972014-09-29 15:29:28 +010073#if defined(CONFIG_OF_ADDRESS)
74int of_pci_get_host_bridge_resources(struct device_node *dev,
75 unsigned char busno, unsigned char bus_max,
76 struct list_head *resources, resource_size_t *io_base);
Arnd Bergmann40704b12015-12-18 16:02:41 +010077#else
78static inline int of_pci_get_host_bridge_resources(struct device_node *dev,
79 unsigned char busno, unsigned char bus_max,
80 struct list_head *resources, resource_size_t *io_base)
81{
82 return -EINVAL;
83}
Liviu Dudaucbe40972014-09-29 15:29:28 +010084#endif
85
Sebastian Andrzej Siewior04bea682011-01-24 09:58:55 +053086#endif