2 * Copyright (C) 2004 Matthew Wilcox <matthew@wil.cx>
3 * Copyright (C) 2004 Intel Corp.
5 * This code is released under the GNU General Public License version 2.
9 * mmconfig.c - Low-level direct PCI config space access via MMCONFIG
12 #include <linux/pci.h>
13 #include <linux/init.h>
14 #include <linux/acpi.h>
18 /* Assume systems with more busses have correct MCFG */
19 #define mmcfg_virt_addr ((void __iomem *) fix_to_virt(FIX_PCIE_MCFG))
21 /* The base address of the last MMCONFIG device accessed */
22 static u32 mmcfg_last_accessed_device;
23 static int mmcfg_last_accessed_cpu;
26 * Functions for accessing PCI configuration space with MMCONFIG accesses
28 static u32 get_base_addr(unsigned int seg, int bus, unsigned devfn)
31 struct acpi_mcfg_allocation *cfg;
33 if (seg == 0 && bus < PCI_MMCFG_MAX_CHECK_BUS &&
34 test_bit(PCI_SLOT(devfn) + 32*bus, pci_mmcfg_fallback_slots))
39 if (cfg_num >= pci_mmcfg_config_num) {
42 cfg = &pci_mmcfg_config[cfg_num];
43 if (cfg->pci_segment != seg)
45 if ((cfg->start_bus_number <= bus) &&
46 (cfg->end_bus_number >= bus))
50 /* Fall back to type 0 */
55 * This is always called under pci_config_lock
57 static void pci_exp_set_dev_base(unsigned int base, int bus, int devfn)
59 u32 dev_base = base | (bus << 20) | (devfn << 12);
60 int cpu = smp_processor_id();
61 if (dev_base != mmcfg_last_accessed_device ||
62 cpu != mmcfg_last_accessed_cpu) {
63 mmcfg_last_accessed_device = dev_base;
64 mmcfg_last_accessed_cpu = cpu;
65 set_fixmap_nocache(FIX_PCIE_MCFG, dev_base);
69 static int pci_mmcfg_read(unsigned int seg, unsigned int bus,
70 unsigned int devfn, int reg, int len, u32 *value)
75 if ((bus > 255) || (devfn > 255) || (reg > 4095)) {
80 base = get_base_addr(seg, bus, devfn);
82 return pci_conf1_read(seg,bus,devfn,reg,len,value);
84 spin_lock_irqsave(&pci_config_lock, flags);
86 pci_exp_set_dev_base(base, bus, devfn);
90 *value = readb(mmcfg_virt_addr + reg);
93 *value = readw(mmcfg_virt_addr + reg);
96 *value = readl(mmcfg_virt_addr + reg);
100 spin_unlock_irqrestore(&pci_config_lock, flags);
105 static int pci_mmcfg_write(unsigned int seg, unsigned int bus,
106 unsigned int devfn, int reg, int len, u32 value)
111 if ((bus > 255) || (devfn > 255) || (reg > 4095))
114 base = get_base_addr(seg, bus, devfn);
116 return pci_conf1_write(seg,bus,devfn,reg,len,value);
118 spin_lock_irqsave(&pci_config_lock, flags);
120 pci_exp_set_dev_base(base, bus, devfn);
124 writeb(value, mmcfg_virt_addr + reg);
127 writew(value, mmcfg_virt_addr + reg);
130 writel(value, mmcfg_virt_addr + reg);
134 spin_unlock_irqrestore(&pci_config_lock, flags);
139 static struct pci_raw_ops pci_mmcfg = {
140 .read = pci_mmcfg_read,
141 .write = pci_mmcfg_write,
144 int __init pci_mmcfg_arch_init(void)
146 printk(KERN_INFO "PCI: Using MMCONFIG\n");
147 raw_pci_ops = &pci_mmcfg;