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 | |
Rob Herring | 4670d61 | 2018-01-17 17:36:39 -0600 | [diff] [blame] | 12 | #if IS_ENABLED(CONFIG_OF) && IS_ENABLED(CONFIG_PCI) |
Benjamin Herrenschmidt | 98d9f30c8 | 2011-04-11 11:37:07 +1000 | [diff] [blame] | 13 | struct device_node *of_pci_find_child_device(struct device_node *parent, |
| 14 | unsigned int devfn); |
Thierry Reding | 45ab970 | 2013-05-16 17:55:18 +0200 | [diff] [blame] | 15 | int of_pci_get_devfn(struct device_node *np); |
Marc Zyngier | f81c11a | 2015-09-04 17:50:08 +0100 | [diff] [blame] | 16 | void of_pci_check_probe_only(void); |
Robin Murphy | 987068f | 2016-09-12 17:13:40 +0100 | [diff] [blame] | 17 | int of_pci_map_rid(struct device_node *np, u32 rid, |
| 18 | const char *map_name, const char *map_mask_name, |
| 19 | struct device_node **target, u32 *id_out); |
Arnd Bergmann | 64c5c75 | 2014-06-04 04:40:19 -0500 | [diff] [blame] | 20 | #else |
Arnd Bergmann | 64c5c75 | 2014-06-04 04:40:19 -0500 | [diff] [blame] | 21 | static inline struct device_node *of_pci_find_child_device(struct device_node *parent, |
| 22 | unsigned int devfn) |
| 23 | { |
| 24 | return NULL; |
| 25 | } |
| 26 | |
| 27 | static inline int of_pci_get_devfn(struct device_node *np) |
| 28 | { |
| 29 | return -EINVAL; |
| 30 | } |
| 31 | |
Robin Murphy | 987068f | 2016-09-12 17:13:40 +0100 | [diff] [blame] | 32 | static inline int of_pci_map_rid(struct device_node *np, u32 rid, |
| 33 | const char *map_name, const char *map_mask_name, |
| 34 | struct device_node **target, u32 *id_out) |
| 35 | { |
| 36 | return -EINVAL; |
| 37 | } |
| 38 | |
Marc Zyngier | f81c11a | 2015-09-04 17:50:08 +0100 | [diff] [blame] | 39 | static inline void of_pci_check_probe_only(void) { } |
Arnd Bergmann | 64c5c75 | 2014-06-04 04:40:19 -0500 | [diff] [blame] | 40 | #endif |
Benjamin Herrenschmidt | 98d9f30c8 | 2011-04-11 11:37:07 +1000 | [diff] [blame] | 41 | |
Guenter Roeck | a6f1086 | 2018-03-05 15:22:30 -0800 | [diff] [blame] | 42 | #if IS_ENABLED(CONFIG_OF_IRQ) |
| 43 | int of_irq_parse_and_map_pci(const struct pci_dev *dev, u8 slot, u8 pin); |
| 44 | #else |
| 45 | static inline int |
| 46 | of_irq_parse_and_map_pci(const struct pci_dev *dev, u8 slot, u8 pin) |
| 47 | { |
| 48 | return 0; |
| 49 | } |
| 50 | #endif |
| 51 | |
Sebastian Andrzej Siewior | 04bea68 | 2011-01-24 09:58:55 +0530 | [diff] [blame] | 52 | #endif |