Merge tag 'pull-18-rc1-work.mount' of git://git.kernel.org/pub/scm/linux/kernel/git...
[linux-block.git] / include / linux / pci-ecam.h
CommitLineData
8cfab3cf 1/* SPDX-License-Identifier: GPL-2.0 */
35ff9477
J
2/*
3 * Copyright 2016 Broadcom
35ff9477
J
4 */
5#ifndef DRIVERS_PCI_ECAM_H
6#define DRIVERS_PCI_ECAM_H
7
41334f54 8#include <linux/pci.h>
35ff9477
J
9#include <linux/kernel.h>
10#include <linux/platform_device.h>
11
e7708f5b
KW
12/*
13 * Memory address shift values for the byte-level address that
14 * can be used when accessing the PCI Express Configuration Space.
15 */
16
17/*
18 * Enhanced Configuration Access Mechanism (ECAM)
19 *
20 * See PCI Express Base Specification, Revision 5.0, Version 1.0,
21 * Section 7.2.2, Table 7-1, p. 677.
22 */
23#define PCIE_ECAM_BUS_SHIFT 20 /* Bus number */
24#define PCIE_ECAM_DEVFN_SHIFT 12 /* Device and Function number */
25
26#define PCIE_ECAM_BUS_MASK 0xff
27#define PCIE_ECAM_DEVFN_MASK 0xff
28#define PCIE_ECAM_REG_MASK 0xfff /* Limit offset to a maximum of 4K */
29
30#define PCIE_ECAM_BUS(x) (((x) & PCIE_ECAM_BUS_MASK) << PCIE_ECAM_BUS_SHIFT)
31#define PCIE_ECAM_DEVFN(x) (((x) & PCIE_ECAM_DEVFN_MASK) << PCIE_ECAM_DEVFN_SHIFT)
32#define PCIE_ECAM_REG(x) ((x) & PCIE_ECAM_REG_MASK)
33
34#define PCIE_ECAM_OFFSET(bus, devfn, where) \
35 (PCIE_ECAM_BUS(bus) | \
36 PCIE_ECAM_DEVFN(devfn) | \
37 PCIE_ECAM_REG(where))
38
35ff9477
J
39/*
40 * struct to hold pci ops and bus shift of the config window
41 * for a PCI controller.
42 */
43struct pci_config_window;
44struct pci_ecam_ops {
45 unsigned int bus_shift;
46 struct pci_ops pci_ops;
5c3d14f7 47 int (*init)(struct pci_config_window *);
35ff9477
J
48};
49
50/*
51 * struct to hold the mappings of a config space window. This
52 * is expected to be used as sysdata for PCI controllers that
53 * use ECAM.
54 */
55struct pci_config_window {
56 struct resource res;
57 struct resource busr;
8fe55ef2 58 unsigned int bus_shift;
35ff9477 59 void *priv;
0b104773 60 const struct pci_ecam_ops *ops;
35ff9477
J
61 union {
62 void __iomem *win; /* 64-bit single mapping */
63 void __iomem **winp; /* 32-bit per-bus mapping */
64 };
5c3d14f7 65 struct device *parent;/* ECAM res was from this dev */
35ff9477
J
66};
67
68/* create and free pci_config_window */
69struct pci_config_window *pci_ecam_create(struct device *dev,
70 struct resource *cfgres, struct resource *busr,
0b104773 71 const struct pci_ecam_ops *ops);
35ff9477
J
72void pci_ecam_free(struct pci_config_window *cfg);
73
74/* map_bus when ->sysdata is an instance of pci_config_window */
75void __iomem *pci_ecam_map_bus(struct pci_bus *bus, unsigned int devfn,
76 int where);
77/* default ECAM ops */
0b104773 78extern const struct pci_ecam_ops pci_generic_ecam_ops;
35ff9477 79
2ca5b8dd 80#if defined(CONFIG_ACPI) && defined(CONFIG_PCI_QUIRKS)
0b104773 81extern const struct pci_ecam_ops pci_32b_ops; /* 32-bit accesses only */
877c1a5f 82extern const struct pci_ecam_ops pci_32b_read_ops; /* 32-bit read only */
0b104773
RH
83extern const struct pci_ecam_ops hisi_pcie_ops; /* HiSilicon */
84extern const struct pci_ecam_ops thunder_pem_ecam_ops; /* Cavium ThunderX 1.x & 2.x */
85extern const struct pci_ecam_ops pci_thunder_ecam_ops; /* Cavium ThunderX 1.x */
86extern const struct pci_ecam_ops xgene_v1_pcie_ecam_ops; /* APM X-Gene PCIe v1 */
87extern const struct pci_ecam_ops xgene_v2_pcie_ecam_ops; /* APM X-Gene PCIe v2.x */
88extern const struct pci_ecam_ops al_pcie_ops; /* Amazon Annapurna Labs PCIe */
7f100744 89extern const struct pci_ecam_ops tegra194_pcie_ops; /* Tegra194 PCIe */
2ca5b8dd
CC
90#endif
91
0c59c06a 92#if IS_ENABLED(CONFIG_PCI_HOST_COMMON)
1958e717 93/* for DT-based PCI controllers that support ECAM */
b2f75a41 94int pci_host_common_probe(struct platform_device *pdev);
01fcb7f7 95int pci_host_common_remove(struct platform_device *pdev);
1958e717 96#endif
35ff9477 97#endif