blob: 88865e0ebf4dd551f8c41bd9fbc0f78d7899b552 [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);
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
Arnd Bergmann64c5c752014-06-04 04:40:19 -050025static 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}
Murali Karicheric49b8fc2015-03-03 12:52:12 -050053
Robin Murphy987068f2016-09-12 17:13:40 +010054static inline int of_pci_map_rid(struct device_node *np, u32 rid,
55 const char *map_name, const char *map_mask_name,
56 struct device_node **target, u32 *id_out)
57{
58 return -EINVAL;
59}
60
Shawn Lin9a1dc382016-11-14 15:21:14 -060061static inline int
62of_pci_get_max_link_speed(struct device_node *node)
63{
64 return -EINVAL;
65}
66
Marc Zyngierf81c11a2015-09-04 17:50:08 +010067static inline void of_pci_check_probe_only(void) { }
Arnd Bergmann64c5c752014-06-04 04:40:19 -050068#endif
Benjamin Herrenschmidt98d9f30c82011-04-11 11:37:07 +100069
Liviu Dudaucbe40972014-09-29 15:29:28 +010070#if defined(CONFIG_OF_ADDRESS)
71int of_pci_get_host_bridge_resources(struct device_node *dev,
72 unsigned char busno, unsigned char bus_max,
73 struct list_head *resources, resource_size_t *io_base);
Arnd Bergmann40704b12015-12-18 16:02:41 +010074#else
75static inline int of_pci_get_host_bridge_resources(struct device_node *dev,
76 unsigned char busno, unsigned char bus_max,
77 struct list_head *resources, resource_size_t *io_base)
78{
79 return -EINVAL;
80}
Liviu Dudaucbe40972014-09-29 15:29:28 +010081#endif
82
Sebastian Andrzej Siewior04bea682011-01-24 09:58:55 +053083#endif