1
2
3
4
5 #ifndef DRIVERS_PCI_ECAM_H
6 #define DRIVERS_PCI_ECAM_H
7
8 #include <linux/pci.h>
9 #include <linux/kernel.h>
10 #include <linux/platform_device.h>
11
12
13
14
15
16 struct pci_config_window;
17 struct pci_ecam_ops {
18 unsigned int bus_shift;
19 struct pci_ops pci_ops;
20 int (*init)(struct pci_config_window *);
21 };
22
23
24
25
26
27
28 struct pci_config_window {
29 struct resource res;
30 struct resource busr;
31 void *priv;
32 struct pci_ecam_ops *ops;
33 union {
34 void __iomem *win;
35 void __iomem **winp;
36 };
37 struct device *parent;
38 };
39
40
41 struct pci_config_window *pci_ecam_create(struct device *dev,
42 struct resource *cfgres, struct resource *busr,
43 struct pci_ecam_ops *ops);
44 void pci_ecam_free(struct pci_config_window *cfg);
45
46
47 void __iomem *pci_ecam_map_bus(struct pci_bus *bus, unsigned int devfn,
48 int where);
49
50 extern struct pci_ecam_ops pci_generic_ecam_ops;
51
52 #if defined(CONFIG_ACPI) && defined(CONFIG_PCI_QUIRKS)
53 extern struct pci_ecam_ops pci_32b_ops;
54 extern struct pci_ecam_ops hisi_pcie_ops;
55 extern struct pci_ecam_ops thunder_pem_ecam_ops;
56 extern struct pci_ecam_ops pci_thunder_ecam_ops;
57 extern struct pci_ecam_ops xgene_v1_pcie_ecam_ops;
58 extern struct pci_ecam_ops xgene_v2_pcie_ecam_ops;
59 extern struct pci_ecam_ops al_pcie_ops;
60 #endif
61
62 #ifdef CONFIG_PCI_HOST_COMMON
63
64 int pci_host_common_probe(struct platform_device *pdev,
65 struct pci_ecam_ops *ops);
66 int pci_host_common_remove(struct platform_device *pdev);
67 #endif
68 #endif