blob: 809c2f1873ac2a04c6ebb262407196302d00ea46 [file] [log] [blame]
Jayachandran C35ff9472016-05-10 17:19:51 +02001/*
2 * Copyright 2016 Broadcom
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License, version 2, as
6 * published by the Free Software Foundation (the "GPL").
7 *
8 * This program is distributed in the hope that it will be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License version 2 (GPLv2) for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * version 2 (GPLv2) along with this source code.
15 */
16#ifndef DRIVERS_PCI_ECAM_H
17#define DRIVERS_PCI_ECAM_H
18
Marc Gonzalez41334f52017-03-17 15:53:19 +010019#include <linux/pci.h>
Jayachandran C35ff9472016-05-10 17:19:51 +020020#include <linux/kernel.h>
21#include <linux/platform_device.h>
22
23/*
24 * struct to hold pci ops and bus shift of the config window
25 * for a PCI controller.
26 */
27struct pci_config_window;
28struct pci_ecam_ops {
29 unsigned int bus_shift;
30 struct pci_ops pci_ops;
Jayachandran C5c3d14f2016-06-10 21:55:10 +020031 int (*init)(struct pci_config_window *);
Jayachandran C35ff9472016-05-10 17:19:51 +020032};
33
34/*
35 * struct to hold the mappings of a config space window. This
36 * is expected to be used as sysdata for PCI controllers that
37 * use ECAM.
38 */
39struct pci_config_window {
40 struct resource res;
41 struct resource busr;
42 void *priv;
43 struct pci_ecam_ops *ops;
44 union {
45 void __iomem *win; /* 64-bit single mapping */
46 void __iomem **winp; /* 32-bit per-bus mapping */
47 };
Jayachandran C5c3d14f2016-06-10 21:55:10 +020048 struct device *parent;/* ECAM res was from this dev */
Jayachandran C35ff9472016-05-10 17:19:51 +020049};
50
51/* create and free pci_config_window */
52struct pci_config_window *pci_ecam_create(struct device *dev,
53 struct resource *cfgres, struct resource *busr,
54 struct pci_ecam_ops *ops);
55void pci_ecam_free(struct pci_config_window *cfg);
56
57/* map_bus when ->sysdata is an instance of pci_config_window */
58void __iomem *pci_ecam_map_bus(struct pci_bus *bus, unsigned int devfn,
59 int where);
60/* default ECAM ops */
61extern struct pci_ecam_ops pci_generic_ecam_ops;
62
Christopher Covington2ca5b8d2016-11-02 11:11:27 -050063#if defined(CONFIG_ACPI) && defined(CONFIG_PCI_QUIRKS)
64extern struct pci_ecam_ops pci_32b_ops; /* 32-bit accesses only */
Dongdong Liu5f00f1a2016-12-01 00:45:35 -060065extern struct pci_ecam_ops hisi_pcie_ops; /* HiSilicon */
Tomasz Nowicki648d93f2016-11-30 23:16:34 -060066extern struct pci_ecam_ops thunder_pem_ecam_ops; /* Cavium ThunderX 1.x & 2.x */
67extern struct pci_ecam_ops pci_thunder_ecam_ops; /* Cavium ThunderX 1.x */
Duc Dangc5d46032016-12-01 18:27:07 -080068extern struct pci_ecam_ops xgene_v1_pcie_ecam_ops; /* APM X-Gene PCIe v1 */
69extern struct pci_ecam_ops xgene_v2_pcie_ecam_ops; /* APM X-Gene PCIe v2.x */
Christopher Covington2ca5b8d2016-11-02 11:11:27 -050070#endif
71
Marc Gonzalezde5bbdd2017-04-18 14:21:04 -050072#ifdef CONFIG_PCI_HOST_COMMON
Jayachandran C1958e712016-05-11 17:34:46 -050073/* for DT-based PCI controllers that support ECAM */
74int pci_host_common_probe(struct platform_device *pdev,
75 struct pci_ecam_ops *ops);
76#endif
Jayachandran C35ff9472016-05-10 17:19:51 +020077#endif