blob: fd9c408631a09ddee11f5852b65488915e2e4f10 [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;
8struct of_irq;
John Crispin3df425f2012-04-12 17:33:07 +02009int of_irq_map_pci(const struct pci_dev *pdev, struct of_irq *out_irq);
Benjamin Herrenschmidt98d9f30c82011-04-11 11:37:07 +100010
11struct device_node;
12struct device_node *of_pci_find_child_device(struct device_node *parent,
13 unsigned int devfn);
Thierry Reding45ab9702013-05-16 17:55:18 +020014int of_pci_get_devfn(struct device_node *np);
Thierry Reding4e23d3f2013-05-16 17:55:19 +020015int of_pci_parse_bus_range(struct device_node *node, struct resource *res);
Benjamin Herrenschmidt98d9f30c82011-04-11 11:37:07 +100016
Thomas Petazzoni0d5a6db2013-08-09 22:27:09 +020017#if defined(CONFIG_OF) && defined(CONFIG_PCI_MSI)
18int of_pci_msi_chip_add(struct msi_chip *chip);
19void of_pci_msi_chip_remove(struct msi_chip *chip);
20struct msi_chip *of_pci_find_msi_chip_by_node(struct device_node *of_node);
21#else
22static inline int of_pci_msi_chip_add(struct msi_chip *chip) { return -EINVAL; }
23static inline void of_pci_msi_chip_remove(struct msi_chip *chip) { }
24static inline struct msi_chip *
25of_pci_find_msi_chip_by_node(struct device_node *of_node) { return NULL; }
26#endif
27
Sebastian Andrzej Siewior04bea682011-01-24 09:58:55 +053028#endif