Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Sebastian Andrzej Siewior | 04bea68 | 2011-01-24 09:58:55 +0530 | [diff] [blame] | 2 | #ifndef __OF_PCI_H |
| 3 | #define __OF_PCI_H |
| 4 | |
| 5 | #include <linux/pci.h> |
Thomas Petazzoni | 0d5a6db | 2013-08-09 22:27:09 +0200 | [diff] [blame] | 6 | #include <linux/msi.h> |
Sebastian Andrzej Siewior | 04bea68 | 2011-01-24 09:58:55 +0530 | [diff] [blame] | 7 | |
| 8 | struct pci_dev; |
Grant Likely | 530210c | 2013-09-15 16:39:11 +0100 | [diff] [blame] | 9 | struct of_phandle_args; |
Benjamin Herrenschmidt | 98d9f30c8 | 2011-04-11 11:37:07 +1000 | [diff] [blame] | 10 | struct device_node; |
Arnd Bergmann | 64c5c75 | 2014-06-04 04:40:19 -0500 | [diff] [blame] | 11 | |
Robin Murphy | 5c1d331 | 2016-06-07 18:44:48 +0100 | [diff] [blame] | 12 | #ifdef CONFIG_OF_PCI |
Arnd Bergmann | 64c5c75 | 2014-06-04 04:40:19 -0500 | [diff] [blame] | 13 | int of_irq_parse_pci(const struct pci_dev *pdev, struct of_phandle_args *out_irq); |
Benjamin Herrenschmidt | 98d9f30c8 | 2011-04-11 11:37:07 +1000 | [diff] [blame] | 14 | struct device_node *of_pci_find_child_device(struct device_node *parent, |
| 15 | unsigned int devfn); |
Thierry Reding | 45ab970 | 2013-05-16 17:55:18 +0200 | [diff] [blame] | 16 | int of_pci_get_devfn(struct device_node *np); |
Arnd Bergmann | 64c5c75 | 2014-06-04 04:40:19 -0500 | [diff] [blame] | 17 | int of_irq_parse_and_map_pci(const struct pci_dev *dev, u8 slot, u8 pin); |
Thierry Reding | 4e23d3f | 2013-05-16 17:55:19 +0200 | [diff] [blame] | 18 | int of_pci_parse_bus_range(struct device_node *node, struct resource *res); |
Liviu Dudau | 41e5c0f | 2014-09-29 15:29:27 +0100 | [diff] [blame] | 19 | int of_get_pci_domain_nr(struct device_node *node); |
Shawn Lin | 9a1dc38 | 2016-11-14 15:21:14 -0600 | [diff] [blame] | 20 | int of_pci_get_max_link_speed(struct device_node *node); |
Marc Zyngier | f81c11a | 2015-09-04 17:50:08 +0100 | [diff] [blame] | 21 | void of_pci_check_probe_only(void); |
Robin Murphy | 987068f | 2016-09-12 17:13:40 +0100 | [diff] [blame] | 22 | int of_pci_map_rid(struct device_node *np, u32 rid, |
| 23 | const char *map_name, const char *map_mask_name, |
| 24 | struct device_node **target, u32 *id_out); |
Arnd Bergmann | 64c5c75 | 2014-06-04 04:40:19 -0500 | [diff] [blame] | 25 | #else |
| 26 | static inline int of_irq_parse_pci(const struct pci_dev *pdev, struct of_phandle_args *out_irq) |
| 27 | { |
| 28 | return 0; |
| 29 | } |
| 30 | |
| 31 | static inline struct device_node *of_pci_find_child_device(struct device_node *parent, |
| 32 | unsigned int devfn) |
| 33 | { |
| 34 | return NULL; |
| 35 | } |
| 36 | |
| 37 | static inline int of_pci_get_devfn(struct device_node *np) |
| 38 | { |
| 39 | return -EINVAL; |
| 40 | } |
| 41 | |
| 42 | static inline int |
| 43 | of_irq_parse_and_map_pci(const struct pci_dev *dev, u8 slot, u8 pin) |
| 44 | { |
| 45 | return 0; |
| 46 | } |
| 47 | |
| 48 | static inline int |
| 49 | of_pci_parse_bus_range(struct device_node *node, struct resource *res) |
| 50 | { |
| 51 | return -EINVAL; |
| 52 | } |
Liviu Dudau | 41e5c0f | 2014-09-29 15:29:27 +0100 | [diff] [blame] | 53 | |
| 54 | static inline int |
| 55 | of_get_pci_domain_nr(struct device_node *node) |
| 56 | { |
| 57 | return -1; |
| 58 | } |
Murali Karicheri | c49b8fc | 2015-03-03 12:52:12 -0500 | [diff] [blame] | 59 | |
Robin Murphy | 987068f | 2016-09-12 17:13:40 +0100 | [diff] [blame] | 60 | static inline int of_pci_map_rid(struct device_node *np, u32 rid, |
| 61 | const char *map_name, const char *map_mask_name, |
| 62 | struct device_node **target, u32 *id_out) |
| 63 | { |
| 64 | return -EINVAL; |
| 65 | } |
| 66 | |
Shawn Lin | 9a1dc38 | 2016-11-14 15:21:14 -0600 | [diff] [blame] | 67 | static inline int |
| 68 | of_pci_get_max_link_speed(struct device_node *node) |
| 69 | { |
| 70 | return -EINVAL; |
| 71 | } |
| 72 | |
Marc Zyngier | f81c11a | 2015-09-04 17:50:08 +0100 | [diff] [blame] | 73 | static inline void of_pci_check_probe_only(void) { } |
Arnd Bergmann | 64c5c75 | 2014-06-04 04:40:19 -0500 | [diff] [blame] | 74 | #endif |
Benjamin Herrenschmidt | 98d9f30c8 | 2011-04-11 11:37:07 +1000 | [diff] [blame] | 75 | |
Liviu Dudau | cbe4097 | 2014-09-29 15:29:28 +0100 | [diff] [blame] | 76 | #if defined(CONFIG_OF_ADDRESS) |
| 77 | int of_pci_get_host_bridge_resources(struct device_node *dev, |
| 78 | unsigned char busno, unsigned char bus_max, |
| 79 | struct list_head *resources, resource_size_t *io_base); |
Arnd Bergmann | 40704b1 | 2015-12-18 16:02:41 +0100 | [diff] [blame] | 80 | #else |
| 81 | static inline int of_pci_get_host_bridge_resources(struct device_node *dev, |
| 82 | unsigned char busno, unsigned char bus_max, |
| 83 | struct list_head *resources, resource_size_t *io_base) |
| 84 | { |
| 85 | return -EINVAL; |
| 86 | } |
Liviu Dudau | cbe4097 | 2014-09-29 15:29:28 +0100 | [diff] [blame] | 87 | #endif |
| 88 | |
Sebastian Andrzej Siewior | 04bea68 | 2011-01-24 09:58:55 +0530 | [diff] [blame] | 89 | #endif |