2018-01-26 18:50:27 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2016-05-10 15:19:51 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2016 Broadcom
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/device.h>
|
|
|
|
#include <linux/io.h>
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/pci.h>
|
2016-06-10 19:55:09 +00:00
|
|
|
#include <linux/pci-ecam.h>
|
2016-05-10 15:19:51 +00:00
|
|
|
#include <linux/slab.h>
|
|
|
|
|
|
|
|
/*
|
|
|
|
* On 64-bit systems, we do a single ioremap for the whole config space
|
|
|
|
* since we have enough virtual address range available. On 32-bit, we
|
|
|
|
* ioremap the config space for each bus individually.
|
|
|
|
*/
|
2016-08-03 20:45:50 +00:00
|
|
|
static const bool per_bus_mapping = !IS_ENABLED(CONFIG_64BIT);
|
2016-05-10 15:19:51 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Create a PCI config space window
|
|
|
|
* - reserve mem region
|
|
|
|
* - alloc struct pci_config_window with space for all mappings
|
|
|
|
* - ioremap the config space
|
|
|
|
*/
|
|
|
|
struct pci_config_window *pci_ecam_create(struct device *dev,
|
|
|
|
struct resource *cfgres, struct resource *busr,
|
2020-04-09 23:49:21 +00:00
|
|
|
const struct pci_ecam_ops *ops)
|
2016-05-10 15:19:51 +00:00
|
|
|
{
|
2020-11-29 23:07:39 +00:00
|
|
|
unsigned int bus_shift = ops->bus_shift;
|
2016-05-10 15:19:51 +00:00
|
|
|
struct pci_config_window *cfg;
|
|
|
|
unsigned int bus_range, bus_range_max, bsz;
|
|
|
|
struct resource *conflict;
|
|
|
|
int i, err;
|
|
|
|
|
|
|
|
if (busr->start > busr->end)
|
|
|
|
return ERR_PTR(-EINVAL);
|
|
|
|
|
|
|
|
cfg = kzalloc(sizeof(*cfg), GFP_KERNEL);
|
|
|
|
if (!cfg)
|
|
|
|
return ERR_PTR(-ENOMEM);
|
|
|
|
|
2020-11-29 23:07:39 +00:00
|
|
|
/* ECAM-compliant platforms need not supply ops->bus_shift */
|
|
|
|
if (!bus_shift)
|
|
|
|
bus_shift = PCIE_ECAM_BUS_SHIFT;
|
|
|
|
|
2016-06-10 19:55:10 +00:00
|
|
|
cfg->parent = dev;
|
2016-05-10 15:19:51 +00:00
|
|
|
cfg->ops = ops;
|
|
|
|
cfg->busr.start = busr->start;
|
|
|
|
cfg->busr.end = busr->end;
|
|
|
|
cfg->busr.flags = IORESOURCE_BUS;
|
|
|
|
bus_range = resource_size(&cfg->busr);
|
2020-11-29 23:07:39 +00:00
|
|
|
bus_range_max = resource_size(cfgres) >> bus_shift;
|
2016-05-10 15:19:51 +00:00
|
|
|
if (bus_range > bus_range_max) {
|
|
|
|
bus_range = bus_range_max;
|
|
|
|
cfg->busr.end = busr->start + bus_range - 1;
|
|
|
|
dev_warn(dev, "ECAM area %pR can only accommodate %pR (reduced from %pR desired)\n",
|
|
|
|
cfgres, &cfg->busr, busr);
|
|
|
|
}
|
2020-11-29 23:07:39 +00:00
|
|
|
bsz = 1 << bus_shift;
|
2016-05-10 15:19:51 +00:00
|
|
|
|
|
|
|
cfg->res.start = cfgres->start;
|
|
|
|
cfg->res.end = cfgres->end;
|
|
|
|
cfg->res.flags = IORESOURCE_MEM | IORESOURCE_BUSY;
|
|
|
|
cfg->res.name = "PCI ECAM";
|
|
|
|
|
|
|
|
conflict = request_resource_conflict(&iomem_resource, &cfg->res);
|
|
|
|
if (conflict) {
|
|
|
|
err = -EBUSY;
|
|
|
|
dev_err(dev, "can't claim ECAM area %pR: address conflict with %s %pR\n",
|
|
|
|
&cfg->res, conflict->name, conflict);
|
|
|
|
goto err_exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (per_bus_mapping) {
|
|
|
|
cfg->winp = kcalloc(bus_range, sizeof(*cfg->winp), GFP_KERNEL);
|
|
|
|
if (!cfg->winp)
|
|
|
|
goto err_exit_malloc;
|
|
|
|
for (i = 0; i < bus_range; i++) {
|
2017-04-19 16:48:56 +00:00
|
|
|
cfg->winp[i] =
|
|
|
|
pci_remap_cfgspace(cfgres->start + i * bsz,
|
|
|
|
bsz);
|
2016-05-10 15:19:51 +00:00
|
|
|
if (!cfg->winp[i])
|
|
|
|
goto err_exit_iomap;
|
|
|
|
}
|
|
|
|
} else {
|
2017-04-19 16:48:56 +00:00
|
|
|
cfg->win = pci_remap_cfgspace(cfgres->start, bus_range * bsz);
|
2016-05-10 15:19:51 +00:00
|
|
|
if (!cfg->win)
|
|
|
|
goto err_exit_iomap;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ops->init) {
|
2016-06-10 19:55:10 +00:00
|
|
|
err = ops->init(cfg);
|
2016-05-10 15:19:51 +00:00
|
|
|
if (err)
|
|
|
|
goto err_exit;
|
|
|
|
}
|
|
|
|
dev_info(dev, "ECAM at %pR for %pR\n", &cfg->res, &cfg->busr);
|
|
|
|
return cfg;
|
|
|
|
|
|
|
|
err_exit_iomap:
|
|
|
|
dev_err(dev, "ECAM ioremap failed\n");
|
|
|
|
err_exit_malloc:
|
|
|
|
err = -ENOMEM;
|
|
|
|
err_exit:
|
|
|
|
pci_ecam_free(cfg);
|
|
|
|
return ERR_PTR(err);
|
|
|
|
}
|
2020-04-09 23:49:22 +00:00
|
|
|
EXPORT_SYMBOL_GPL(pci_ecam_create);
|
2016-05-10 15:19:51 +00:00
|
|
|
|
|
|
|
void pci_ecam_free(struct pci_config_window *cfg)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (per_bus_mapping) {
|
|
|
|
if (cfg->winp) {
|
|
|
|
for (i = 0; i < resource_size(&cfg->busr); i++)
|
|
|
|
if (cfg->winp[i])
|
|
|
|
iounmap(cfg->winp[i]);
|
|
|
|
kfree(cfg->winp);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (cfg->win)
|
|
|
|
iounmap(cfg->win);
|
|
|
|
}
|
|
|
|
if (cfg->res.parent)
|
|
|
|
release_resource(&cfg->res);
|
|
|
|
kfree(cfg);
|
|
|
|
}
|
2020-04-09 23:49:22 +00:00
|
|
|
EXPORT_SYMBOL_GPL(pci_ecam_free);
|
2016-05-10 15:19:51 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Function to implement the pci_ops ->map_bus method
|
|
|
|
*/
|
|
|
|
void __iomem *pci_ecam_map_bus(struct pci_bus *bus, unsigned int devfn,
|
|
|
|
int where)
|
|
|
|
{
|
|
|
|
struct pci_config_window *cfg = bus->sysdata;
|
2020-11-29 23:07:39 +00:00
|
|
|
unsigned int bus_shift = cfg->ops->bus_shift;
|
2016-05-10 15:19:51 +00:00
|
|
|
unsigned int devfn_shift = cfg->ops->bus_shift - 8;
|
|
|
|
unsigned int busn = bus->number;
|
|
|
|
void __iomem *base;
|
2020-11-29 23:07:39 +00:00
|
|
|
u32 bus_offset, devfn_offset;
|
2016-05-10 15:19:51 +00:00
|
|
|
|
|
|
|
if (busn < cfg->busr.start || busn > cfg->busr.end)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
busn -= cfg->busr.start;
|
2020-11-29 23:07:39 +00:00
|
|
|
if (per_bus_mapping) {
|
2016-05-10 15:19:51 +00:00
|
|
|
base = cfg->winp[busn];
|
2020-11-29 23:07:39 +00:00
|
|
|
busn = 0;
|
|
|
|
} else
|
|
|
|
base = cfg->win;
|
|
|
|
|
|
|
|
if (cfg->ops->bus_shift) {
|
|
|
|
bus_offset = (busn & PCIE_ECAM_BUS_MASK) << bus_shift;
|
|
|
|
devfn_offset = (devfn & PCIE_ECAM_DEVFN_MASK) << devfn_shift;
|
|
|
|
where &= PCIE_ECAM_REG_MASK;
|
|
|
|
|
|
|
|
return base + (bus_offset | devfn_offset | where);
|
|
|
|
}
|
|
|
|
|
|
|
|
return base + PCIE_ECAM_OFFSET(busn, devfn, where);
|
2016-05-10 15:19:51 +00:00
|
|
|
}
|
2020-04-09 23:49:22 +00:00
|
|
|
EXPORT_SYMBOL_GPL(pci_ecam_map_bus);
|
2016-05-10 15:19:51 +00:00
|
|
|
|
|
|
|
/* ECAM ops */
|
2020-04-09 23:49:21 +00:00
|
|
|
const struct pci_ecam_ops pci_generic_ecam_ops = {
|
2016-05-10 15:19:51 +00:00
|
|
|
.pci_ops = {
|
|
|
|
.map_bus = pci_ecam_map_bus,
|
|
|
|
.read = pci_generic_config_read,
|
|
|
|
.write = pci_generic_config_write,
|
|
|
|
}
|
|
|
|
};
|
2020-04-09 23:49:22 +00:00
|
|
|
EXPORT_SYMBOL_GPL(pci_generic_ecam_ops);
|
2016-11-02 16:11:27 +00:00
|
|
|
|
|
|
|
#if defined(CONFIG_ACPI) && defined(CONFIG_PCI_QUIRKS)
|
|
|
|
/* ECAM ops for 32-bit access only (non-compliant) */
|
2020-04-09 23:49:21 +00:00
|
|
|
const struct pci_ecam_ops pci_32b_ops = {
|
2016-11-02 16:11:27 +00:00
|
|
|
.pci_ops = {
|
|
|
|
.map_bus = pci_ecam_map_bus,
|
|
|
|
.read = pci_generic_config_read32,
|
|
|
|
.write = pci_generic_config_write32,
|
|
|
|
}
|
|
|
|
};
|
2020-08-06 21:57:34 +00:00
|
|
|
|
|
|
|
/* ECAM ops for 32-bit read only (non-compliant) */
|
|
|
|
const struct pci_ecam_ops pci_32b_read_ops = {
|
|
|
|
.pci_ops = {
|
|
|
|
.map_bus = pci_ecam_map_bus,
|
|
|
|
.read = pci_generic_config_read32,
|
|
|
|
.write = pci_generic_config_write,
|
|
|
|
}
|
|
|
|
};
|
2016-11-02 16:11:27 +00:00
|
|
|
#endif
|