1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (C) 2004 Matthew Wilcox <matthew@wil.cx>
4 * Copyright (C) 2004 Intel Corp.
8 * mmconfig.c - Low-level direct PCI config space access via MMCONFIG
11 #include <linux/pci.h>
12 #include <linux/init.h>
13 #include <linux/rcupdate.h>
14 #include <asm/e820/api.h>
15 #include <asm/pci_x86.h>
17 /* Assume systems with more busses have correct MCFG */
18 #define mmcfg_virt_addr ((void __iomem *) fix_to_virt(FIX_PCIE_MCFG))
20 /* The base address of the last MMCONFIG device accessed */
21 static u32 mmcfg_last_accessed_device
;
22 static int mmcfg_last_accessed_cpu
;
25 * Functions for accessing PCI configuration space with MMCONFIG accesses
27 static u32
get_base_addr(unsigned int seg
, int bus
, unsigned devfn
)
29 struct pci_mmcfg_region
*cfg
= pci_mmconfig_lookup(seg
, bus
);
37 * This is always called under pci_config_lock
39 static void pci_exp_set_dev_base(unsigned int base
, int bus
, int devfn
)
41 u32 dev_base
= base
| PCI_MMCFG_BUS_OFFSET(bus
) | (devfn
<< 12);
42 int cpu
= smp_processor_id();
43 if (dev_base
!= mmcfg_last_accessed_device
||
44 cpu
!= mmcfg_last_accessed_cpu
) {
45 mmcfg_last_accessed_device
= dev_base
;
46 mmcfg_last_accessed_cpu
= cpu
;
47 set_fixmap_nocache(FIX_PCIE_MCFG
, dev_base
);
51 static int pci_mmcfg_read(unsigned int seg
, unsigned int bus
,
52 unsigned int devfn
, int reg
, int len
, u32
*value
)
57 if ((bus
> 255) || (devfn
> 255) || (reg
> 4095)) {
63 base
= get_base_addr(seg
, bus
, devfn
);
69 raw_spin_lock_irqsave(&pci_config_lock
, flags
);
71 pci_exp_set_dev_base(base
, bus
, devfn
);
75 *value
= mmio_config_readb(mmcfg_virt_addr
+ reg
);
78 *value
= mmio_config_readw(mmcfg_virt_addr
+ reg
);
81 *value
= mmio_config_readl(mmcfg_virt_addr
+ reg
);
84 raw_spin_unlock_irqrestore(&pci_config_lock
, flags
);
90 static int pci_mmcfg_write(unsigned int seg
, unsigned int bus
,
91 unsigned int devfn
, int reg
, int len
, u32 value
)
96 if ((bus
> 255) || (devfn
> 255) || (reg
> 4095))
100 base
= get_base_addr(seg
, bus
, devfn
);
106 raw_spin_lock_irqsave(&pci_config_lock
, flags
);
108 pci_exp_set_dev_base(base
, bus
, devfn
);
112 mmio_config_writeb(mmcfg_virt_addr
+ reg
, value
);
115 mmio_config_writew(mmcfg_virt_addr
+ reg
, value
);
118 mmio_config_writel(mmcfg_virt_addr
+ reg
, value
);
121 raw_spin_unlock_irqrestore(&pci_config_lock
, flags
);
127 const struct pci_raw_ops pci_mmcfg
= {
128 .read
= pci_mmcfg_read
,
129 .write
= pci_mmcfg_write
,
132 int __init
pci_mmcfg_arch_init(void)
134 printk(KERN_INFO
"PCI: Using MMCONFIG for extended config space\n");
135 raw_pci_ext_ops
= &pci_mmcfg
;
139 void __init
pci_mmcfg_arch_free(void)
143 int pci_mmcfg_arch_map(struct pci_mmcfg_region
*cfg
)
148 void pci_mmcfg_arch_unmap(struct pci_mmcfg_region
*cfg
)
152 /* Invalidate the cached mmcfg map entry. */
153 raw_spin_lock_irqsave(&pci_config_lock
, flags
);
154 mmcfg_last_accessed_device
= 0;
155 raw_spin_unlock_irqrestore(&pci_config_lock
, flags
);