2019-05-31 11:09:45 +03:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
2005-04-17 02:20:36 +04:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2004 Matthew Wilcox <matthew@wil.cx>
|
|
|
|
* Copyright (C) 2004 Intel Corp.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* mmconfig.c - Low-level direct PCI config space access via MMCONFIG
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/pci.h>
|
|
|
|
#include <linux/init.h>
|
2012-06-22 10:55:12 +04:00
|
|
|
#include <linux/rcupdate.h>
|
2017-01-27 12:27:10 +03:00
|
|
|
#include <asm/e820/api.h>
|
2008-12-27 16:02:28 +03:00
|
|
|
#include <asm/pci_x86.h>
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2006-04-07 21:50:12 +04:00
|
|
|
/* Assume systems with more busses have correct MCFG */
|
2005-04-17 02:20:36 +04:00
|
|
|
#define mmcfg_virt_addr ((void __iomem *) fix_to_virt(FIX_PCIE_MCFG))
|
|
|
|
|
|
|
|
/* The base address of the last MMCONFIG device accessed */
|
|
|
|
static u32 mmcfg_last_accessed_device;
|
2006-12-23 04:00:43 +03:00
|
|
|
static int mmcfg_last_accessed_cpu;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Functions for accessing PCI configuration space with MMCONFIG accesses
|
|
|
|
*/
|
2005-12-13 09:17:11 +03:00
|
|
|
static u32 get_base_addr(unsigned int seg, int bus, unsigned devfn)
|
2005-06-24 04:35:56 +04:00
|
|
|
{
|
2009-11-14 03:35:04 +03:00
|
|
|
struct pci_mmcfg_region *cfg = pci_mmconfig_lookup(seg, bus);
|
2005-06-24 04:35:56 +04:00
|
|
|
|
2009-11-14 03:35:04 +03:00
|
|
|
if (cfg)
|
|
|
|
return cfg->address;
|
2006-01-27 04:03:50 +03:00
|
|
|
return 0;
|
2005-06-24 04:35:56 +04:00
|
|
|
}
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2006-10-01 10:27:10 +04:00
|
|
|
/*
|
|
|
|
* This is always called under pci_config_lock
|
|
|
|
*/
|
|
|
|
static void pci_exp_set_dev_base(unsigned int base, int bus, int devfn)
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
2009-11-14 03:34:08 +03:00
|
|
|
u32 dev_base = base | PCI_MMCFG_BUS_OFFSET(bus) | (devfn << 12);
|
2006-12-23 04:00:43 +03:00
|
|
|
int cpu = smp_processor_id();
|
|
|
|
if (dev_base != mmcfg_last_accessed_device ||
|
|
|
|
cpu != mmcfg_last_accessed_cpu) {
|
2005-04-17 02:20:36 +04:00
|
|
|
mmcfg_last_accessed_device = dev_base;
|
2006-12-23 04:00:43 +03:00
|
|
|
mmcfg_last_accessed_cpu = cpu;
|
2005-04-17 02:20:36 +04:00
|
|
|
set_fixmap_nocache(FIX_PCIE_MCFG, dev_base);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static int pci_mmcfg_read(unsigned int seg, unsigned int bus,
|
|
|
|
unsigned int devfn, int reg, int len, u32 *value)
|
|
|
|
{
|
|
|
|
unsigned long flags;
|
2005-12-13 09:17:10 +03:00
|
|
|
u32 base;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2006-04-11 14:54:48 +04:00
|
|
|
if ((bus > 255) || (devfn > 255) || (reg > 4095)) {
|
2008-01-15 01:31:09 +03:00
|
|
|
err: *value = -1;
|
2005-04-17 02:20:36 +04:00
|
|
|
return -EINVAL;
|
2006-04-07 21:50:15 +04:00
|
|
|
}
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2012-06-22 10:55:12 +04:00
|
|
|
rcu_read_lock();
|
2005-12-13 09:17:11 +03:00
|
|
|
base = get_base_addr(seg, bus, devfn);
|
2012-06-22 10:55:12 +04:00
|
|
|
if (!base) {
|
|
|
|
rcu_read_unlock();
|
2008-01-15 01:31:09 +03:00
|
|
|
goto err;
|
2012-06-22 10:55:12 +04:00
|
|
|
}
|
2005-12-13 09:17:10 +03:00
|
|
|
|
2010-02-17 17:35:25 +03:00
|
|
|
raw_spin_lock_irqsave(&pci_config_lock, flags);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2005-12-13 09:17:10 +03:00
|
|
|
pci_exp_set_dev_base(base, bus, devfn);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
switch (len) {
|
|
|
|
case 1:
|
2007-08-11 00:30:59 +04:00
|
|
|
*value = mmio_config_readb(mmcfg_virt_addr + reg);
|
2005-04-17 02:20:36 +04:00
|
|
|
break;
|
|
|
|
case 2:
|
2007-08-11 00:30:59 +04:00
|
|
|
*value = mmio_config_readw(mmcfg_virt_addr + reg);
|
2005-04-17 02:20:36 +04:00
|
|
|
break;
|
|
|
|
case 4:
|
2007-08-11 00:30:59 +04:00
|
|
|
*value = mmio_config_readl(mmcfg_virt_addr + reg);
|
2005-04-17 02:20:36 +04:00
|
|
|
break;
|
|
|
|
}
|
2010-02-17 17:35:25 +03:00
|
|
|
raw_spin_unlock_irqrestore(&pci_config_lock, flags);
|
2012-06-22 10:55:12 +04:00
|
|
|
rcu_read_unlock();
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int pci_mmcfg_write(unsigned int seg, unsigned int bus,
|
|
|
|
unsigned int devfn, int reg, int len, u32 value)
|
|
|
|
{
|
|
|
|
unsigned long flags;
|
2005-12-13 09:17:10 +03:00
|
|
|
u32 base;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2007-02-02 19:48:22 +03:00
|
|
|
if ((bus > 255) || (devfn > 255) || (reg > 4095))
|
2005-04-17 02:20:36 +04:00
|
|
|
return -EINVAL;
|
|
|
|
|
2012-06-22 10:55:12 +04:00
|
|
|
rcu_read_lock();
|
2005-12-13 09:17:11 +03:00
|
|
|
base = get_base_addr(seg, bus, devfn);
|
2012-06-22 10:55:12 +04:00
|
|
|
if (!base) {
|
|
|
|
rcu_read_unlock();
|
2008-01-15 01:31:09 +03:00
|
|
|
return -EINVAL;
|
2012-06-22 10:55:12 +04:00
|
|
|
}
|
2005-12-13 09:17:10 +03:00
|
|
|
|
2010-02-17 17:35:25 +03:00
|
|
|
raw_spin_lock_irqsave(&pci_config_lock, flags);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2005-12-13 09:17:10 +03:00
|
|
|
pci_exp_set_dev_base(base, bus, devfn);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
switch (len) {
|
|
|
|
case 1:
|
2007-08-12 13:23:16 +04:00
|
|
|
mmio_config_writeb(mmcfg_virt_addr + reg, value);
|
2005-04-17 02:20:36 +04:00
|
|
|
break;
|
|
|
|
case 2:
|
2007-08-12 13:23:16 +04:00
|
|
|
mmio_config_writew(mmcfg_virt_addr + reg, value);
|
2005-04-17 02:20:36 +04:00
|
|
|
break;
|
|
|
|
case 4:
|
2007-08-12 13:23:16 +04:00
|
|
|
mmio_config_writel(mmcfg_virt_addr + reg, value);
|
2005-04-17 02:20:36 +04:00
|
|
|
break;
|
|
|
|
}
|
2010-02-17 17:35:25 +03:00
|
|
|
raw_spin_unlock_irqrestore(&pci_config_lock, flags);
|
2012-06-22 10:55:12 +04:00
|
|
|
rcu_read_unlock();
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-06-22 10:55:17 +04:00
|
|
|
const struct pci_raw_ops pci_mmcfg = {
|
2005-04-17 02:20:36 +04:00
|
|
|
.read = pci_mmcfg_read,
|
|
|
|
.write = pci_mmcfg_write,
|
|
|
|
};
|
|
|
|
|
2007-02-13 15:26:20 +03:00
|
|
|
int __init pci_mmcfg_arch_init(void)
|
2005-12-13 09:17:11 +03:00
|
|
|
{
|
2008-02-10 17:45:28 +03:00
|
|
|
printk(KERN_INFO "PCI: Using MMCONFIG for extended config space\n");
|
|
|
|
raw_pci_ext_ops = &pci_mmcfg;
|
2007-02-13 15:26:20 +03:00
|
|
|
return 1;
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
2008-02-15 12:28:41 +03:00
|
|
|
|
|
|
|
void __init pci_mmcfg_arch_free(void)
|
|
|
|
{
|
|
|
|
}
|
2012-06-22 10:55:13 +04:00
|
|
|
|
2012-12-22 02:02:53 +04:00
|
|
|
int pci_mmcfg_arch_map(struct pci_mmcfg_region *cfg)
|
2012-06-22 10:55:13 +04:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void pci_mmcfg_arch_unmap(struct pci_mmcfg_region *cfg)
|
|
|
|
{
|
|
|
|
unsigned long flags;
|
|
|
|
|
|
|
|
/* Invalidate the cached mmcfg map entry. */
|
|
|
|
raw_spin_lock_irqsave(&pci_config_lock, flags);
|
|
|
|
mmcfg_last_accessed_device = 0;
|
|
|
|
raw_spin_unlock_irqrestore(&pci_config_lock, flags);
|
|
|
|
}
|