blob: 3325b79e651cc7ae2b12db1f0a1863077c8e9083 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (C) 2004 Matthew Wilcox <matthew@wil.cx>
3 * Copyright (C) 2004 Intel Corp.
4 *
5 * This code is released under the GNU General Public License version 2.
6 */
7
8/*
9 * mmconfig.c - Low-level direct PCI config space access via MMCONFIG
10 */
11
12#include <linux/pci.h>
13#include <linux/init.h>
Greg Kroah-Hartman54549392005-06-23 17:35:56 -070014#include <linux/acpi.h>
Arjan van de Ven946f2ee2006-04-07 19:49:30 +020015#include <asm/e820.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include "pci.h"
17
Andi Kleen8c30b1a2006-04-07 19:50:12 +020018/* Assume systems with more busses have correct MCFG */
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#define mmcfg_virt_addr ((void __iomem *) fix_to_virt(FIX_PCIE_MCFG))
20
21/* The base address of the last MMCONFIG device accessed */
22static u32 mmcfg_last_accessed_device;
OGAWA Hirofumi8d1c4812006-12-23 10:00:43 +090023static int mmcfg_last_accessed_cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
25/*
26 * Functions for accessing PCI configuration space with MMCONFIG accesses
27 */
Andi Kleend6ece542005-12-12 22:17:11 -080028static u32 get_base_addr(unsigned int seg, int bus, unsigned devfn)
Linus Torvalds1da177e2005-04-16 15:20:36 -070029{
Greg Kroah-Hartmand57e26c2005-06-23 17:35:56 -070030 int cfg_num = -1;
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +030031 struct acpi_mcfg_allocation *cfg;
Greg Kroah-Hartmand57e26c2005-06-23 17:35:56 -070032
Olivier Galibertb7867392007-02-13 13:26:20 +010033 if (seg == 0 && bus < PCI_MMCFG_MAX_CHECK_BUS &&
34 test_bit(PCI_SLOT(devfn) + 32*bus, pci_mmcfg_fallback_slots))
Andi Kleend6ece542005-12-12 22:17:11 -080035 return 0;
36
Greg Kroah-Hartmand57e26c2005-06-23 17:35:56 -070037 while (1) {
38 ++cfg_num;
39 if (cfg_num >= pci_mmcfg_config_num) {
Andi Kleen31030392006-01-27 02:03:50 +010040 break;
Greg Kroah-Hartmand57e26c2005-06-23 17:35:56 -070041 }
42 cfg = &pci_mmcfg_config[cfg_num];
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +030043 if (cfg->pci_segment != seg)
Greg Kroah-Hartmand57e26c2005-06-23 17:35:56 -070044 continue;
45 if ((cfg->start_bus_number <= bus) &&
46 (cfg->end_bus_number >= bus))
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +030047 return cfg->address;
Greg Kroah-Hartmand57e26c2005-06-23 17:35:56 -070048 }
Andi Kleen31030392006-01-27 02:03:50 +010049
Andi Kleen31030392006-01-27 02:03:50 +010050 /* Fall back to type 0 */
51 return 0;
Greg Kroah-Hartmand57e26c2005-06-23 17:35:56 -070052}
53
Andrew Mortonbe5b7a82006-09-30 23:27:10 -070054/*
55 * This is always called under pci_config_lock
56 */
57static void pci_exp_set_dev_base(unsigned int base, int bus, int devfn)
Greg Kroah-Hartmand57e26c2005-06-23 17:35:56 -070058{
Andi Kleen928cf8c2005-12-12 22:17:10 -080059 u32 dev_base = base | (bus << 20) | (devfn << 12);
OGAWA Hirofumi8d1c4812006-12-23 10:00:43 +090060 int cpu = smp_processor_id();
61 if (dev_base != mmcfg_last_accessed_device ||
62 cpu != mmcfg_last_accessed_cpu) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 mmcfg_last_accessed_device = dev_base;
OGAWA Hirofumi8d1c4812006-12-23 10:00:43 +090064 mmcfg_last_accessed_cpu = cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 set_fixmap_nocache(FIX_PCIE_MCFG, dev_base);
66 }
67}
68
69static int pci_mmcfg_read(unsigned int seg, unsigned int bus,
70 unsigned int devfn, int reg, int len, u32 *value)
71{
72 unsigned long flags;
Andi Kleen928cf8c2005-12-12 22:17:10 -080073 u32 base;
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
Andi Kleenecc16ba2006-04-11 12:54:48 +020075 if ((bus > 255) || (devfn > 255) || (reg > 4095)) {
Andi Kleen49c93e82006-04-07 19:50:15 +020076 *value = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 return -EINVAL;
Andi Kleen49c93e82006-04-07 19:50:15 +020078 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
Andi Kleend6ece542005-12-12 22:17:11 -080080 base = get_base_addr(seg, bus, devfn);
Andi Kleen928cf8c2005-12-12 22:17:10 -080081 if (!base)
82 return pci_conf1_read(seg,bus,devfn,reg,len,value);
83
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 spin_lock_irqsave(&pci_config_lock, flags);
85
Andi Kleen928cf8c2005-12-12 22:17:10 -080086 pci_exp_set_dev_base(base, bus, devfn);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
88 switch (len) {
89 case 1:
90 *value = readb(mmcfg_virt_addr + reg);
91 break;
92 case 2:
93 *value = readw(mmcfg_virt_addr + reg);
94 break;
95 case 4:
96 *value = readl(mmcfg_virt_addr + reg);
97 break;
98 }
99
100 spin_unlock_irqrestore(&pci_config_lock, flags);
101
102 return 0;
103}
104
105static int pci_mmcfg_write(unsigned int seg, unsigned int bus,
106 unsigned int devfn, int reg, int len, u32 value)
107{
108 unsigned long flags;
Andi Kleen928cf8c2005-12-12 22:17:10 -0800109 u32 base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +0300111 if ((bus > 255) || (devfn > 255) || (reg > 4095))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 return -EINVAL;
113
Andi Kleend6ece542005-12-12 22:17:11 -0800114 base = get_base_addr(seg, bus, devfn);
Andi Kleen928cf8c2005-12-12 22:17:10 -0800115 if (!base)
116 return pci_conf1_write(seg,bus,devfn,reg,len,value);
117
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 spin_lock_irqsave(&pci_config_lock, flags);
119
Andi Kleen928cf8c2005-12-12 22:17:10 -0800120 pci_exp_set_dev_base(base, bus, devfn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
122 switch (len) {
123 case 1:
124 writeb(value, mmcfg_virt_addr + reg);
125 break;
126 case 2:
127 writew(value, mmcfg_virt_addr + reg);
128 break;
129 case 4:
130 writel(value, mmcfg_virt_addr + reg);
131 break;
132 }
133
134 spin_unlock_irqrestore(&pci_config_lock, flags);
135
136 return 0;
137}
138
139static struct pci_raw_ops pci_mmcfg = {
140 .read = pci_mmcfg_read,
141 .write = pci_mmcfg_write,
142};
143
Olivier Galibertb7867392007-02-13 13:26:20 +0100144int __init pci_mmcfg_arch_init(void)
Andi Kleend6ece542005-12-12 22:17:11 -0800145{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 printk(KERN_INFO "PCI: Using MMCONFIG\n");
147 raw_pci_ops = &pci_mmcfg;
Olivier Galibertb7867392007-02-13 13:26:20 +0100148 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149}