blob: 248642f4bab7140c6ee7e80862b46b0c76fdc42f [file] [log] [blame]
Olivier Galibertb7867392007-02-13 13:26:20 +01001/*
2 * mmconfig-shared.c - Low-level direct PCI config space access via
3 * MMCONFIG - common code between i386 and x86-64.
4 *
5 * This code does:
Olivier Galibert9358c692007-02-13 13:26:20 +01006 * - known chipset handling
Olivier Galibertb7867392007-02-13 13:26:20 +01007 * - ACPI decoding and validation
8 *
9 * Per-architecture code takes care of the mappings and accesses
10 * themselves.
11 */
12
13#include <linux/pci.h>
14#include <linux/init.h>
Feng Tang5f0db7a2009-08-14 15:37:50 -040015#include <linux/sfi_acpi.h>
Olivier Galibertb7867392007-02-13 13:26:20 +010016#include <linux/bitmap.h>
Bjorn Helgaas9a08f7d2009-10-23 15:20:33 -060017#include <linux/dmi.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090018#include <linux/slab.h>
Jiang Liu376f70a2012-06-22 14:55:12 +080019#include <linux/mutex.h>
20#include <linux/rculist.h>
Olivier Galibertb7867392007-02-13 13:26:20 +010021#include <asm/e820.h>
Jaswinder Singh Rajput82487712008-12-27 18:32:28 +053022#include <asm/pci_x86.h>
Feng Tang5f0db7a2009-08-14 15:37:50 -040023#include <asm/acpi.h>
Olivier Galibertb7867392007-02-13 13:26:20 +010024
Len Brownf4a2d582009-07-28 16:48:02 -040025#define PREFIX "PCI: "
Len Browna192a952009-07-28 16:45:54 -040026
Aaron Durbina5ba7972007-07-21 17:10:34 +020027/* Indicate if the mmcfg resources have been placed into the resource table. */
Jiang Liu95c5e922012-06-22 14:55:14 +080028static bool pci_mmcfg_running_state;
Jiang Liu9c951112012-06-22 14:55:15 +080029static bool pci_mmcfg_arch_init_failed;
Jiang Liu376f70a2012-06-22 14:55:12 +080030static DEFINE_MUTEX(pci_mmcfg_lock);
Aaron Durbina5ba7972007-07-21 17:10:34 +020031
Bjorn Helgaasff097dd2009-11-13 17:34:49 -070032LIST_HEAD(pci_mmcfg_list);
33
Bjorn Helgaasba2afba2009-11-13 17:34:54 -070034static __init void pci_mmconfig_remove(struct pci_mmcfg_region *cfg)
35{
36 if (cfg->res.parent)
37 release_resource(&cfg->res);
38 list_del(&cfg->list);
39 kfree(cfg);
40}
41
Bjorn Helgaas7da7d362009-11-13 17:33:53 -070042static __init void free_all_mmcfg(void)
43{
Bjorn Helgaasff097dd2009-11-13 17:34:49 -070044 struct pci_mmcfg_region *cfg, *tmp;
Bjorn Helgaas56ddf4d2009-11-13 17:34:29 -070045
Bjorn Helgaas7da7d362009-11-13 17:33:53 -070046 pci_mmcfg_arch_free();
Bjorn Helgaasba2afba2009-11-13 17:34:54 -070047 list_for_each_entry_safe(cfg, tmp, &pci_mmcfg_list, list)
48 pci_mmconfig_remove(cfg);
Bjorn Helgaasff097dd2009-11-13 17:34:49 -070049}
50
Greg Kroah-Hartmana18e3692012-12-21 14:02:53 -080051static void list_add_sorted(struct pci_mmcfg_region *new)
Bjorn Helgaasff097dd2009-11-13 17:34:49 -070052{
53 struct pci_mmcfg_region *cfg;
54
55 /* keep list sorted by segment and starting bus number */
Jiang Liu376f70a2012-06-22 14:55:12 +080056 list_for_each_entry_rcu(cfg, &pci_mmcfg_list, list) {
Bjorn Helgaasff097dd2009-11-13 17:34:49 -070057 if (cfg->segment > new->segment ||
58 (cfg->segment == new->segment &&
59 cfg->start_bus >= new->start_bus)) {
Jiang Liu376f70a2012-06-22 14:55:12 +080060 list_add_tail_rcu(&new->list, &cfg->list);
Bjorn Helgaasff097dd2009-11-13 17:34:49 -070061 return;
62 }
63 }
Jiang Liu376f70a2012-06-22 14:55:12 +080064 list_add_tail_rcu(&new->list, &pci_mmcfg_list);
Bjorn Helgaas7da7d362009-11-13 17:33:53 -070065}
66
Greg Kroah-Hartmana18e3692012-12-21 14:02:53 -080067static struct pci_mmcfg_region *pci_mmconfig_alloc(int segment, int start,
68 int end, u64 addr)
Yinghai Lu068258b2009-03-19 20:55:35 -070069{
Bjorn Helgaasd215a9c2009-11-13 17:34:13 -070070 struct pci_mmcfg_region *new;
Bjorn Helgaas56ddf4d2009-11-13 17:34:29 -070071 struct resource *res;
Yinghai Lu068258b2009-03-19 20:55:35 -070072
Bjorn Helgaasf7ca6982009-11-13 17:34:03 -070073 if (addr == 0)
74 return NULL;
75
Bjorn Helgaasff097dd2009-11-13 17:34:49 -070076 new = kzalloc(sizeof(*new), GFP_KERNEL);
Yinghai Lu068258b2009-03-19 20:55:35 -070077 if (!new)
Bjorn Helgaas7da7d362009-11-13 17:33:53 -070078 return NULL;
Yinghai Lu068258b2009-03-19 20:55:35 -070079
Bjorn Helgaas95cf1cf2009-11-13 17:34:24 -070080 new->address = addr;
81 new->segment = segment;
82 new->start_bus = start;
83 new->end_bus = end;
Bjorn Helgaas7da7d362009-11-13 17:33:53 -070084
Bjorn Helgaas56ddf4d2009-11-13 17:34:29 -070085 res = &new->res;
86 res->start = addr + PCI_MMCFG_BUS_OFFSET(start);
Bjorn Helgaas1ca98fa2010-10-04 12:49:24 -060087 res->end = addr + PCI_MMCFG_BUS_OFFSET(end + 1) - 1;
Bjorn Helgaas56ddf4d2009-11-13 17:34:29 -070088 res->flags = IORESOURCE_MEM | IORESOURCE_BUSY;
89 snprintf(new->name, PCI_MMCFG_RESOURCE_NAME_LEN,
90 "PCI MMCONFIG %04x [bus %02x-%02x]", segment, start, end);
91 res->name = new->name;
92
Bjorn Helgaasff097dd2009-11-13 17:34:49 -070093 return new;
Yinghai Lu068258b2009-03-19 20:55:35 -070094}
95
Jiang Liu846e4022012-06-22 14:55:11 +080096static __init struct pci_mmcfg_region *pci_mmconfig_add(int segment, int start,
97 int end, u64 addr)
98{
99 struct pci_mmcfg_region *new;
100
101 new = pci_mmconfig_alloc(segment, start, end, addr);
Jiang Liu376f70a2012-06-22 14:55:12 +0800102 if (new) {
103 mutex_lock(&pci_mmcfg_lock);
Jiang Liu846e4022012-06-22 14:55:11 +0800104 list_add_sorted(new);
Jiang Liu376f70a2012-06-22 14:55:12 +0800105 mutex_unlock(&pci_mmcfg_lock);
Jiang Liu9c951112012-06-22 14:55:15 +0800106
Jiang Liu24c97f02012-06-22 14:55:22 +0800107 pr_info(PREFIX
Jiang Liu9c951112012-06-22 14:55:15 +0800108 "MMCONFIG for domain %04x [bus %02x-%02x] at %pR "
109 "(base %#lx)\n",
110 segment, start, end, &new->res, (unsigned long)addr);
Jiang Liu376f70a2012-06-22 14:55:12 +0800111 }
Jiang Liu846e4022012-06-22 14:55:11 +0800112
113 return new;
114}
115
Bjorn Helgaasf6e1d8c2009-11-13 17:35:04 -0700116struct pci_mmcfg_region *pci_mmconfig_lookup(int segment, int bus)
117{
118 struct pci_mmcfg_region *cfg;
119
Jiang Liu376f70a2012-06-22 14:55:12 +0800120 list_for_each_entry_rcu(cfg, &pci_mmcfg_list, list)
Bjorn Helgaasf6e1d8c2009-11-13 17:35:04 -0700121 if (cfg->segment == segment &&
122 cfg->start_bus <= bus && bus <= cfg->end_bus)
123 return cfg;
124
125 return NULL;
126}
127
OGAWA Hirofumi429d5122007-02-13 13:26:20 +0100128static const char __init *pci_mmcfg_e7520(void)
Olivier Galibert9358c692007-02-13 13:26:20 +0100129{
130 u32 win;
Yinghai Lubb63b422008-02-28 23:56:50 -0800131 raw_pci_ops->read(0, 0, PCI_DEVFN(0, 0), 0xce, 2, &win);
Olivier Galibert9358c692007-02-13 13:26:20 +0100132
Olivier Galibertb5229db2007-05-02 19:27:22 +0200133 win = win & 0xf000;
Yinghai Lu068258b2009-03-19 20:55:35 -0700134 if (win == 0x0000 || win == 0xf000)
135 return NULL;
136
Bjorn Helgaas7da7d362009-11-13 17:33:53 -0700137 if (pci_mmconfig_add(0, 0, 255, win << 16) == NULL)
Yinghai Lu068258b2009-03-19 20:55:35 -0700138 return NULL;
139
Olivier Galibert9358c692007-02-13 13:26:20 +0100140 return "Intel Corporation E7520 Memory Controller Hub";
141}
142
OGAWA Hirofumi429d5122007-02-13 13:26:20 +0100143static const char __init *pci_mmcfg_intel_945(void)
Olivier Galibert9358c692007-02-13 13:26:20 +0100144{
145 u32 pciexbar, mask = 0, len = 0;
146
Yinghai Lubb63b422008-02-28 23:56:50 -0800147 raw_pci_ops->read(0, 0, PCI_DEVFN(0, 0), 0x48, 4, &pciexbar);
Olivier Galibert9358c692007-02-13 13:26:20 +0100148
149 /* Enable bit */
150 if (!(pciexbar & 1))
Yinghai Lu068258b2009-03-19 20:55:35 -0700151 return NULL;
Olivier Galibert9358c692007-02-13 13:26:20 +0100152
153 /* Size bits */
154 switch ((pciexbar >> 1) & 3) {
155 case 0:
156 mask = 0xf0000000U;
157 len = 0x10000000U;
158 break;
159 case 1:
160 mask = 0xf8000000U;
161 len = 0x08000000U;
162 break;
163 case 2:
164 mask = 0xfc000000U;
165 len = 0x04000000U;
166 break;
167 default:
Yinghai Lu068258b2009-03-19 20:55:35 -0700168 return NULL;
Olivier Galibert9358c692007-02-13 13:26:20 +0100169 }
170
171 /* Errata #2, things break when not aligned on a 256Mb boundary */
172 /* Can only happen in 64M/128M mode */
173
174 if ((pciexbar & mask) & 0x0fffffffU)
Yinghai Lu068258b2009-03-19 20:55:35 -0700175 return NULL;
Olivier Galibert9358c692007-02-13 13:26:20 +0100176
Olivier Galibertb5229db2007-05-02 19:27:22 +0200177 /* Don't hit the APIC registers and their friends */
178 if ((pciexbar & mask) >= 0xf0000000U)
Yinghai Lu068258b2009-03-19 20:55:35 -0700179 return NULL;
Olivier Galibertb5229db2007-05-02 19:27:22 +0200180
Bjorn Helgaas7da7d362009-11-13 17:33:53 -0700181 if (pci_mmconfig_add(0, 0, (len >> 20) - 1, pciexbar & mask) == NULL)
Yinghai Lu068258b2009-03-19 20:55:35 -0700182 return NULL;
183
Olivier Galibert9358c692007-02-13 13:26:20 +0100184 return "Intel Corporation 945G/GZ/P/PL Express Memory Controller Hub";
185}
186
Yinghai Lu7fd0da42008-02-19 03:13:02 -0800187static const char __init *pci_mmcfg_amd_fam10h(void)
188{
189 u32 low, high, address;
190 u64 base, msr;
191 int i;
Bjorn Helgaas7da7d362009-11-13 17:33:53 -0700192 unsigned segnbits = 0, busnbits, end_bus;
Yinghai Lu7fd0da42008-02-19 03:13:02 -0800193
Yinghai Lu5f0b2972008-04-14 16:08:25 -0700194 if (!(pci_probe & PCI_CHECK_ENABLE_AMD_MMCONF))
195 return NULL;
196
Yinghai Lu7fd0da42008-02-19 03:13:02 -0800197 address = MSR_FAM10H_MMIO_CONF_BASE;
198 if (rdmsr_safe(address, &low, &high))
199 return NULL;
200
201 msr = high;
202 msr <<= 32;
203 msr |= low;
204
205 /* mmconfig is not enable */
206 if (!(msr & FAM10H_MMIO_CONF_ENABLE))
207 return NULL;
208
209 base = msr & (FAM10H_MMIO_CONF_BASE_MASK<<FAM10H_MMIO_CONF_BASE_SHIFT);
210
211 busnbits = (msr >> FAM10H_MMIO_CONF_BUSRANGE_SHIFT) &
212 FAM10H_MMIO_CONF_BUSRANGE_MASK;
213
214 /*
215 * only handle bus 0 ?
216 * need to skip it
217 */
218 if (!busnbits)
219 return NULL;
220
221 if (busnbits > 8) {
222 segnbits = busnbits - 8;
223 busnbits = 8;
224 }
225
Bjorn Helgaas7da7d362009-11-13 17:33:53 -0700226 end_bus = (1 << busnbits) - 1;
Yinghai Lu068258b2009-03-19 20:55:35 -0700227 for (i = 0; i < (1 << segnbits); i++)
Bjorn Helgaas7da7d362009-11-13 17:33:53 -0700228 if (pci_mmconfig_add(i, 0, end_bus,
229 base + (1<<28) * i) == NULL) {
230 free_all_mmcfg();
231 return NULL;
232 }
Yinghai Lu7fd0da42008-02-19 03:13:02 -0800233
234 return "AMD Family 10h NB";
235}
236
Ed Swierk5546d6f2009-03-19 20:57:56 -0700237static bool __initdata mcp55_checked;
238static const char __init *pci_mmcfg_nvidia_mcp55(void)
239{
240 int bus;
241 int mcp55_mmconf_found = 0;
242
243 static const u32 extcfg_regnum = 0x90;
244 static const u32 extcfg_regsize = 4;
245 static const u32 extcfg_enable_mask = 1<<31;
246 static const u32 extcfg_start_mask = 0xff<<16;
247 static const int extcfg_start_shift = 16;
248 static const u32 extcfg_size_mask = 0x3<<28;
249 static const int extcfg_size_shift = 28;
250 static const int extcfg_sizebus[] = {0x100, 0x80, 0x40, 0x20};
251 static const u32 extcfg_base_mask[] = {0x7ff8, 0x7ffc, 0x7ffe, 0x7fff};
252 static const int extcfg_base_lshift = 25;
253
254 /*
255 * do check if amd fam10h already took over
256 */
Bjorn Helgaasff097dd2009-11-13 17:34:49 -0700257 if (!acpi_disabled || !list_empty(&pci_mmcfg_list) || mcp55_checked)
Ed Swierk5546d6f2009-03-19 20:57:56 -0700258 return NULL;
259
260 mcp55_checked = true;
261 for (bus = 0; bus < 256; bus++) {
262 u64 base;
263 u32 l, extcfg;
264 u16 vendor, device;
265 int start, size_index, end;
266
267 raw_pci_ops->read(0, bus, PCI_DEVFN(0, 0), 0, 4, &l);
268 vendor = l & 0xffff;
269 device = (l >> 16) & 0xffff;
270
271 if (PCI_VENDOR_ID_NVIDIA != vendor || 0x0369 != device)
272 continue;
273
274 raw_pci_ops->read(0, bus, PCI_DEVFN(0, 0), extcfg_regnum,
275 extcfg_regsize, &extcfg);
276
277 if (!(extcfg & extcfg_enable_mask))
278 continue;
279
Ed Swierk5546d6f2009-03-19 20:57:56 -0700280 size_index = (extcfg & extcfg_size_mask) >> extcfg_size_shift;
281 base = extcfg & extcfg_base_mask[size_index];
282 /* base could > 4G */
283 base <<= extcfg_base_lshift;
284 start = (extcfg & extcfg_start_mask) >> extcfg_start_shift;
285 end = start + extcfg_sizebus[size_index] - 1;
Bjorn Helgaas7da7d362009-11-13 17:33:53 -0700286 if (pci_mmconfig_add(0, start, end, base) == NULL)
287 continue;
Ed Swierk5546d6f2009-03-19 20:57:56 -0700288 mcp55_mmconf_found++;
289 }
290
291 if (!mcp55_mmconf_found)
292 return NULL;
293
294 return "nVidia MCP55";
295}
296
Olivier Galibert9358c692007-02-13 13:26:20 +0100297struct pci_mmcfg_hostbridge_probe {
Yinghai Lu7fd0da42008-02-19 03:13:02 -0800298 u32 bus;
299 u32 devfn;
Olivier Galibert9358c692007-02-13 13:26:20 +0100300 u32 vendor;
301 u32 device;
302 const char *(*probe)(void);
303};
304
OGAWA Hirofumi429d5122007-02-13 13:26:20 +0100305static struct pci_mmcfg_hostbridge_probe pci_mmcfg_probes[] __initdata = {
Yinghai Lu7fd0da42008-02-19 03:13:02 -0800306 { 0, PCI_DEVFN(0, 0), PCI_VENDOR_ID_INTEL,
307 PCI_DEVICE_ID_INTEL_E7520_MCH, pci_mmcfg_e7520 },
308 { 0, PCI_DEVFN(0, 0), PCI_VENDOR_ID_INTEL,
309 PCI_DEVICE_ID_INTEL_82945G_HB, pci_mmcfg_intel_945 },
310 { 0, PCI_DEVFN(0x18, 0), PCI_VENDOR_ID_AMD,
311 0x1200, pci_mmcfg_amd_fam10h },
312 { 0xff, PCI_DEVFN(0, 0), PCI_VENDOR_ID_AMD,
313 0x1200, pci_mmcfg_amd_fam10h },
Ed Swierk5546d6f2009-03-19 20:57:56 -0700314 { 0, PCI_DEVFN(0, 0), PCI_VENDOR_ID_NVIDIA,
315 0x0369, pci_mmcfg_nvidia_mcp55 },
Olivier Galibert9358c692007-02-13 13:26:20 +0100316};
317
Yinghai Lu068258b2009-03-19 20:55:35 -0700318static void __init pci_mmcfg_check_end_bus_number(void)
319{
Bjorn Helgaas987c3672009-11-13 17:34:44 -0700320 struct pci_mmcfg_region *cfg, *cfgx;
Yinghai Lu068258b2009-03-19 20:55:35 -0700321
Thomas Gleixnerbb8d4132010-02-25 16:42:11 +0100322 /* Fixup overlaps */
Bjorn Helgaasff097dd2009-11-13 17:34:49 -0700323 list_for_each_entry(cfg, &pci_mmcfg_list, list) {
Bjorn Helgaasd7e6b662009-11-13 17:34:18 -0700324 if (cfg->end_bus < cfg->start_bus)
325 cfg->end_bus = 255;
Yinghai Lu068258b2009-03-19 20:55:35 -0700326
Thomas Gleixnerbb8d4132010-02-25 16:42:11 +0100327 /* Don't access the list head ! */
328 if (cfg->list.next == &pci_mmcfg_list)
329 break;
330
Bjorn Helgaasff097dd2009-11-13 17:34:49 -0700331 cfgx = list_entry(cfg->list.next, typeof(*cfg), list);
Thomas Gleixnerbb8d4132010-02-25 16:42:11 +0100332 if (cfg->end_bus >= cfgx->start_bus)
Bjorn Helgaasd7e6b662009-11-13 17:34:18 -0700333 cfg->end_bus = cfgx->start_bus - 1;
Yinghai Lu068258b2009-03-19 20:55:35 -0700334 }
335}
336
Olivier Galibert9358c692007-02-13 13:26:20 +0100337static int __init pci_mmcfg_check_hostbridge(void)
338{
339 u32 l;
Yinghai Lu7fd0da42008-02-19 03:13:02 -0800340 u32 bus, devfn;
Olivier Galibert9358c692007-02-13 13:26:20 +0100341 u16 vendor, device;
342 int i;
343 const char *name;
344
Yinghai Lubb63b422008-02-28 23:56:50 -0800345 if (!raw_pci_ops)
346 return 0;
347
Bjorn Helgaas7da7d362009-11-13 17:33:53 -0700348 free_all_mmcfg();
Olivier Galibert9358c692007-02-13 13:26:20 +0100349
Yinghai Lu068258b2009-03-19 20:55:35 -0700350 for (i = 0; i < ARRAY_SIZE(pci_mmcfg_probes); i++) {
Yinghai Lu7fd0da42008-02-19 03:13:02 -0800351 bus = pci_mmcfg_probes[i].bus;
352 devfn = pci_mmcfg_probes[i].devfn;
Yinghai Lubb63b422008-02-28 23:56:50 -0800353 raw_pci_ops->read(0, bus, devfn, 0, 4, &l);
Yinghai Lu7fd0da42008-02-19 03:13:02 -0800354 vendor = l & 0xffff;
355 device = (l >> 16) & 0xffff;
356
Yinghai Lu068258b2009-03-19 20:55:35 -0700357 name = NULL;
OGAWA Hirofumi429d5122007-02-13 13:26:20 +0100358 if (pci_mmcfg_probes[i].vendor == vendor &&
359 pci_mmcfg_probes[i].device == device)
Olivier Galibert9358c692007-02-13 13:26:20 +0100360 name = pci_mmcfg_probes[i].probe();
Yinghai Lu068258b2009-03-19 20:55:35 -0700361
362 if (name)
Jiang Liu24c97f02012-06-22 14:55:22 +0800363 pr_info(PREFIX "%s with MMCONFIG support\n", name);
OGAWA Hirofumi429d5122007-02-13 13:26:20 +0100364 }
Olivier Galibert9358c692007-02-13 13:26:20 +0100365
Yinghai Lu068258b2009-03-19 20:55:35 -0700366 /* some end_bus_number is crazy, fix it */
367 pci_mmcfg_check_end_bus_number();
Olivier Galibert9358c692007-02-13 13:26:20 +0100368
Bjorn Helgaasff097dd2009-11-13 17:34:49 -0700369 return !list_empty(&pci_mmcfg_list);
Olivier Galibert9358c692007-02-13 13:26:20 +0100370}
371
Greg Kroah-Hartmana18e3692012-12-21 14:02:53 -0800372static acpi_status check_mcfg_resource(struct acpi_resource *res, void *data)
Robert Hancock7752d5c2008-02-15 01:27:20 -0800373{
374 struct resource *mcfg_res = data;
375 struct acpi_resource_address64 address;
376 acpi_status status;
377
378 if (res->type == ACPI_RESOURCE_TYPE_FIXED_MEMORY32) {
379 struct acpi_resource_fixed_memory32 *fixmem32 =
380 &res->data.fixed_memory32;
381 if (!fixmem32)
382 return AE_OK;
383 if ((mcfg_res->start >= fixmem32->address) &&
Yinghai Lu75e613c2009-06-03 00:13:13 -0700384 (mcfg_res->end < (fixmem32->address +
Robert Hancock7752d5c2008-02-15 01:27:20 -0800385 fixmem32->address_length))) {
386 mcfg_res->flags = 1;
387 return AE_CTRL_TERMINATE;
388 }
389 }
390 if ((res->type != ACPI_RESOURCE_TYPE_ADDRESS32) &&
391 (res->type != ACPI_RESOURCE_TYPE_ADDRESS64))
392 return AE_OK;
393
394 status = acpi_resource_to_address64(res, &address);
395 if (ACPI_FAILURE(status) ||
396 (address.address_length <= 0) ||
397 (address.resource_type != ACPI_MEMORY_RANGE))
398 return AE_OK;
399
400 if ((mcfg_res->start >= address.minimum) &&
Yinghai Lu75e613c2009-06-03 00:13:13 -0700401 (mcfg_res->end < (address.minimum + address.address_length))) {
Robert Hancock7752d5c2008-02-15 01:27:20 -0800402 mcfg_res->flags = 1;
403 return AE_CTRL_TERMINATE;
404 }
405 return AE_OK;
406}
407
Greg Kroah-Hartmana18e3692012-12-21 14:02:53 -0800408static acpi_status find_mboard_resource(acpi_handle handle, u32 lvl,
409 void *context, void **rv)
Robert Hancock7752d5c2008-02-15 01:27:20 -0800410{
411 struct resource *mcfg_res = context;
412
413 acpi_walk_resources(handle, METHOD_NAME__CRS,
414 check_mcfg_resource, context);
415
416 if (mcfg_res->flags)
417 return AE_CTRL_TERMINATE;
418
419 return AE_OK;
420}
421
Greg Kroah-Hartmana18e3692012-12-21 14:02:53 -0800422static int is_acpi_reserved(u64 start, u64 end, unsigned not_used)
Robert Hancock7752d5c2008-02-15 01:27:20 -0800423{
424 struct resource mcfg_res;
425
426 mcfg_res.start = start;
Yinghai Lu75e613c2009-06-03 00:13:13 -0700427 mcfg_res.end = end - 1;
Robert Hancock7752d5c2008-02-15 01:27:20 -0800428 mcfg_res.flags = 0;
429
430 acpi_get_devices("PNP0C01", find_mboard_resource, &mcfg_res, NULL);
431
432 if (!mcfg_res.flags)
433 acpi_get_devices("PNP0C02", find_mboard_resource, &mcfg_res,
434 NULL);
435
436 return mcfg_res.flags;
437}
438
Yinghai Lua83fe322008-07-18 13:22:36 -0700439typedef int (*check_reserved_t)(u64 start, u64 end, unsigned type);
440
Jiang Liu95c5e922012-06-22 14:55:14 +0800441static int __ref is_mmconf_reserved(check_reserved_t is_reserved,
442 struct pci_mmcfg_region *cfg,
443 struct device *dev, int with_e820)
Yinghai Lua83fe322008-07-18 13:22:36 -0700444{
Bjorn Helgaas2f2a8b92009-11-13 17:34:34 -0700445 u64 addr = cfg->res.start;
446 u64 size = resource_size(&cfg->res);
Yinghai Lua83fe322008-07-18 13:22:36 -0700447 u64 old_size = size;
Jiang Liu95c5e922012-06-22 14:55:14 +0800448 int num_buses;
449 char *method = with_e820 ? "E820" : "ACPI motherboard resources";
Yinghai Lua83fe322008-07-18 13:22:36 -0700450
Yinghai Lu044cd802009-04-18 01:43:46 -0700451 while (!is_reserved(addr, addr + size, E820_RESERVED)) {
Yinghai Lua83fe322008-07-18 13:22:36 -0700452 size >>= 1;
453 if (size < (16UL<<20))
454 break;
455 }
456
Jiang Liu95c5e922012-06-22 14:55:14 +0800457 if (size < (16UL<<20) && size != old_size)
458 return 0;
Yinghai Lua83fe322008-07-18 13:22:36 -0700459
Jiang Liu95c5e922012-06-22 14:55:14 +0800460 if (dev)
461 dev_info(dev, "MMCONFIG at %pR reserved in %s\n",
462 &cfg->res, method);
463 else
Jiang Liu24c97f02012-06-22 14:55:22 +0800464 pr_info(PREFIX "MMCONFIG at %pR reserved in %s\n",
Jiang Liu95c5e922012-06-22 14:55:14 +0800465 &cfg->res, method);
466
467 if (old_size != size) {
468 /* update end_bus */
469 cfg->end_bus = cfg->start_bus + ((size>>20) - 1);
470 num_buses = cfg->end_bus - cfg->start_bus + 1;
471 cfg->res.end = cfg->res.start +
472 PCI_MMCFG_BUS_OFFSET(num_buses) - 1;
473 snprintf(cfg->name, PCI_MMCFG_RESOURCE_NAME_LEN,
474 "PCI MMCONFIG %04x [bus %02x-%02x]",
475 cfg->segment, cfg->start_bus, cfg->end_bus);
476
477 if (dev)
478 dev_info(dev,
479 "MMCONFIG "
480 "at %pR (base %#lx) (size reduced!)\n",
481 &cfg->res, (unsigned long) cfg->address);
482 else
Jiang Liu24c97f02012-06-22 14:55:22 +0800483 pr_info(PREFIX
Jiang Liu95c5e922012-06-22 14:55:14 +0800484 "MMCONFIG for %04x [bus%02x-%02x] "
485 "at %pR (base %#lx) (size reduced!)\n",
486 cfg->segment, cfg->start_bus, cfg->end_bus,
487 &cfg->res, (unsigned long) cfg->address);
Yinghai Lua83fe322008-07-18 13:22:36 -0700488 }
489
Jiang Liu95c5e922012-06-22 14:55:14 +0800490 return 1;
Yinghai Lua83fe322008-07-18 13:22:36 -0700491}
492
Jiang Liu95c5e922012-06-22 14:55:14 +0800493static int __ref pci_mmcfg_check_reserved(struct device *dev,
494 struct pci_mmcfg_region *cfg, int early)
Jiang Liu2a76c452012-06-22 14:55:10 +0800495{
496 if (!early && !acpi_disabled) {
Jiang Liu95c5e922012-06-22 14:55:14 +0800497 if (is_mmconf_reserved(is_acpi_reserved, cfg, dev, 0))
Jiang Liu2a76c452012-06-22 14:55:10 +0800498 return 1;
Jiang Liu95c5e922012-06-22 14:55:14 +0800499
500 if (dev)
501 dev_info(dev, FW_INFO
502 "MMCONFIG at %pR not reserved in "
503 "ACPI motherboard resources\n",
504 &cfg->res);
Jiang Liu2a76c452012-06-22 14:55:10 +0800505 else
Jiang Liu24c97f02012-06-22 14:55:22 +0800506 pr_info(FW_INFO PREFIX
Jiang Liu2a76c452012-06-22 14:55:10 +0800507 "MMCONFIG at %pR not reserved in "
508 "ACPI motherboard resources\n",
509 &cfg->res);
510 }
511
Jiang Liu95c5e922012-06-22 14:55:14 +0800512 /*
513 * e820_all_mapped() is marked as __init.
514 * All entries from ACPI MCFG table have been checked at boot time.
515 * For MCFG information constructed from hotpluggable host bridge's
516 * _CBA method, just assume it's reserved.
517 */
518 if (pci_mmcfg_running_state)
519 return 1;
520
Jiang Liu2a76c452012-06-22 14:55:10 +0800521 /* Don't try to do this check unless configuration
522 type 1 is available. how about type 2 ?*/
523 if (raw_pci_ops)
Jiang Liu95c5e922012-06-22 14:55:14 +0800524 return is_mmconf_reserved(e820_all_mapped, cfg, dev, 1);
Jiang Liu2a76c452012-06-22 14:55:10 +0800525
526 return 0;
527}
528
Yinghai Lubb63b422008-02-28 23:56:50 -0800529static void __init pci_mmcfg_reject_broken(int early)
OGAWA Hirofumi44de0202007-02-13 13:26:20 +0100530{
Bjorn Helgaas987c3672009-11-13 17:34:44 -0700531 struct pci_mmcfg_region *cfg;
OGAWA Hirofumi26054ed2007-02-13 13:26:20 +0100532
Bjorn Helgaasff097dd2009-11-13 17:34:49 -0700533 list_for_each_entry(cfg, &pci_mmcfg_list, list) {
Jiang Liu95c5e922012-06-22 14:55:14 +0800534 if (pci_mmcfg_check_reserved(NULL, cfg, early) == 0) {
Jiang Liu24c97f02012-06-22 14:55:22 +0800535 pr_info(PREFIX "not using MMCONFIG\n");
Jiang Liu2a76c452012-06-22 14:55:10 +0800536 free_all_mmcfg();
537 return;
Feng Tanga02ce952010-05-05 17:08:49 +0800538 }
OGAWA Hirofumi26054ed2007-02-13 13:26:20 +0100539 }
OGAWA Hirofumi44de0202007-02-13 13:26:20 +0100540}
541
Bjorn Helgaas9a08f7d2009-10-23 15:20:33 -0600542static int __init acpi_mcfg_check_entry(struct acpi_table_mcfg *mcfg,
543 struct acpi_mcfg_allocation *cfg)
Len Brownc4bf2f32009-06-11 23:53:55 -0400544{
Bjorn Helgaas9a08f7d2009-10-23 15:20:33 -0600545 int year;
Len Brownc4bf2f32009-06-11 23:53:55 -0400546
Bjorn Helgaas9a08f7d2009-10-23 15:20:33 -0600547 if (cfg->address < 0xFFFFFFFF)
548 return 0;
549
Mike Travis526018b2013-02-11 13:45:10 -0600550 if (!strncmp(mcfg->header.oem_id, "SGI", 3))
Bjorn Helgaas9a08f7d2009-10-23 15:20:33 -0600551 return 0;
552
553 if (mcfg->header.revision >= 1) {
554 if (dmi_get_date(DMI_BIOS_DATE, &year, NULL, NULL) &&
555 year >= 2010)
556 return 0;
557 }
558
Jiang Liu24c97f02012-06-22 14:55:22 +0800559 pr_err(PREFIX "MCFG region for %04x [bus %02x-%02x] at %#llx "
Bjorn Helgaas9a08f7d2009-10-23 15:20:33 -0600560 "is above 4GB, ignored\n", cfg->pci_segment,
561 cfg->start_bus_number, cfg->end_bus_number, cfg->address);
562 return -EINVAL;
Len Brownc4bf2f32009-06-11 23:53:55 -0400563}
564
565static int __init pci_parse_mcfg(struct acpi_table_header *header)
566{
567 struct acpi_table_mcfg *mcfg;
Bjorn Helgaasd3578ef2009-11-13 17:33:47 -0700568 struct acpi_mcfg_allocation *cfg_table, *cfg;
Len Brownc4bf2f32009-06-11 23:53:55 -0400569 unsigned long i;
Bjorn Helgaas7da7d362009-11-13 17:33:53 -0700570 int entries;
Len Brownc4bf2f32009-06-11 23:53:55 -0400571
572 if (!header)
573 return -EINVAL;
574
575 mcfg = (struct acpi_table_mcfg *)header;
576
577 /* how many config structures do we have */
Bjorn Helgaas7da7d362009-11-13 17:33:53 -0700578 free_all_mmcfg();
Bjorn Helgaase823d6f2009-11-13 17:33:42 -0700579 entries = 0;
Len Brownc4bf2f32009-06-11 23:53:55 -0400580 i = header->length - sizeof(struct acpi_table_mcfg);
581 while (i >= sizeof(struct acpi_mcfg_allocation)) {
Bjorn Helgaase823d6f2009-11-13 17:33:42 -0700582 entries++;
Len Brownc4bf2f32009-06-11 23:53:55 -0400583 i -= sizeof(struct acpi_mcfg_allocation);
Peter Senna Tschudin4b8073e2012-09-18 18:36:14 +0200584 }
Bjorn Helgaase823d6f2009-11-13 17:33:42 -0700585 if (entries == 0) {
Jiang Liu24c97f02012-06-22 14:55:22 +0800586 pr_err(PREFIX "MMCONFIG has no entries\n");
Len Brownc4bf2f32009-06-11 23:53:55 -0400587 return -ENODEV;
588 }
589
Bjorn Helgaasd3578ef2009-11-13 17:33:47 -0700590 cfg_table = (struct acpi_mcfg_allocation *) &mcfg[1];
Bjorn Helgaase823d6f2009-11-13 17:33:42 -0700591 for (i = 0; i < entries; i++) {
Bjorn Helgaasd3578ef2009-11-13 17:33:47 -0700592 cfg = &cfg_table[i];
593 if (acpi_mcfg_check_entry(mcfg, cfg)) {
Bjorn Helgaas7da7d362009-11-13 17:33:53 -0700594 free_all_mmcfg();
Len Brownc4bf2f32009-06-11 23:53:55 -0400595 return -ENODEV;
596 }
Bjorn Helgaas7da7d362009-11-13 17:33:53 -0700597
598 if (pci_mmconfig_add(cfg->pci_segment, cfg->start_bus_number,
599 cfg->end_bus_number, cfg->address) == NULL) {
Jiang Liu24c97f02012-06-22 14:55:22 +0800600 pr_warn(PREFIX "no memory for MCFG entries\n");
Bjorn Helgaas7da7d362009-11-13 17:33:53 -0700601 free_all_mmcfg();
602 return -ENOMEM;
603 }
Len Brownc4bf2f32009-06-11 23:53:55 -0400604 }
605
606 return 0;
607}
608
Thomas Gleixner968cbfa2008-05-12 15:43:37 +0200609static void __init __pci_mmcfg_init(int early)
Olivier Galibertb7867392007-02-13 13:26:20 +0100610{
Yinghai Lu068258b2009-03-19 20:55:35 -0700611 pci_mmcfg_reject_broken(early);
Bjorn Helgaasff097dd2009-11-13 17:34:49 -0700612 if (list_empty(&pci_mmcfg_list))
Olivier Galibertb7867392007-02-13 13:26:20 +0100613 return;
614
Jan Beulicha3170c12011-02-23 10:08:10 +0000615 if (pcibios_last_bus < 0) {
616 const struct pci_mmcfg_region *cfg;
617
618 list_for_each_entry(cfg, &pci_mmcfg_list, list) {
619 if (cfg->segment)
620 break;
621 pcibios_last_bus = cfg->end_bus;
622 }
623 }
624
Yinghai Luebd60cd2008-09-04 21:04:32 +0200625 if (pci_mmcfg_arch_init())
Olivier Galibertb7867392007-02-13 13:26:20 +0100626 pci_probe = (pci_probe & ~PCI_PROBE_MASK) | PCI_PROBE_MMCONF;
Yinghai Luebd60cd2008-09-04 21:04:32 +0200627 else {
Jiang Liu66e88502012-06-22 14:55:18 +0800628 free_all_mmcfg();
Jiang Liu9c951112012-06-22 14:55:15 +0800629 pci_mmcfg_arch_init_failed = true;
Olivier Galibertb7867392007-02-13 13:26:20 +0100630 }
631}
Aaron Durbina5ba7972007-07-21 17:10:34 +0200632
Jiang Liu574a5942012-06-22 14:55:20 +0800633static int __initdata known_bridge;
634
Yinghai Lubb63b422008-02-28 23:56:50 -0800635void __init pci_mmcfg_early_init(void)
Yinghai Lu05c58b82008-02-15 01:30:14 -0800636{
Jiang Liu574a5942012-06-22 14:55:20 +0800637 if (pci_probe & PCI_PROBE_MMCONF) {
638 if (pci_mmcfg_check_hostbridge())
639 known_bridge = 1;
640 else
641 acpi_sfi_table_parse(ACPI_SIG_MCFG, pci_parse_mcfg);
642 __pci_mmcfg_init(1);
643 }
Yinghai Lu05c58b82008-02-15 01:30:14 -0800644}
645
646void __init pci_mmcfg_late_init(void)
647{
Jiang Liu574a5942012-06-22 14:55:20 +0800648 /* MMCONFIG disabled */
649 if ((pci_probe & PCI_PROBE_MMCONF) == 0)
650 return;
651
652 if (known_bridge)
653 return;
654
655 /* MMCONFIG hasn't been enabled yet, try again */
656 if (pci_probe & PCI_PROBE_MASK & ~PCI_PROBE_MMCONF) {
657 acpi_sfi_table_parse(ACPI_SIG_MCFG, pci_parse_mcfg);
658 __pci_mmcfg_init(0);
659 }
Yinghai Lu05c58b82008-02-15 01:30:14 -0800660}
661
Aaron Durbina5ba7972007-07-21 17:10:34 +0200662static int __init pci_mmcfg_late_insert_resources(void)
663{
Jiang Liu66e88502012-06-22 14:55:18 +0800664 struct pci_mmcfg_region *cfg;
665
Jiang Liu95c5e922012-06-22 14:55:14 +0800666 pci_mmcfg_running_state = true;
667
Jiang Liu66e88502012-06-22 14:55:18 +0800668 /* If we are not using MMCONFIG, don't insert the resources. */
669 if ((pci_probe & PCI_PROBE_MMCONF) == 0)
Aaron Durbina5ba7972007-07-21 17:10:34 +0200670 return 1;
671
672 /*
673 * Attempt to insert the mmcfg resources but not with the busy flag
674 * marked so it won't cause request errors when __request_region is
675 * called.
676 */
Jiang Liu66e88502012-06-22 14:55:18 +0800677 list_for_each_entry(cfg, &pci_mmcfg_list, list)
678 if (!cfg->res.parent)
679 insert_resource(&iomem_resource, &cfg->res);
Aaron Durbina5ba7972007-07-21 17:10:34 +0200680
681 return 0;
682}
683
684/*
685 * Perform MMCONFIG resource insertion after PCI initialization to allow for
686 * misprogrammed MCFG tables that state larger sizes but actually conflict
687 * with other system resources.
688 */
689late_initcall(pci_mmcfg_late_insert_resources);
Jiang Liu9c951112012-06-22 14:55:15 +0800690
691/* Add MMCFG information for host bridges */
Greg Kroah-Hartmana18e3692012-12-21 14:02:53 -0800692int pci_mmconfig_insert(struct device *dev, u16 seg, u8 start, u8 end,
693 phys_addr_t addr)
Jiang Liu9c951112012-06-22 14:55:15 +0800694{
695 int rc;
696 struct resource *tmp = NULL;
697 struct pci_mmcfg_region *cfg;
698
699 if (!(pci_probe & PCI_PROBE_MMCONF) || pci_mmcfg_arch_init_failed)
700 return -ENODEV;
701
Bjorn Helgaas67d470e2013-10-04 16:14:30 -0600702 if (start > end)
Jiang Liu9c951112012-06-22 14:55:15 +0800703 return -EINVAL;
704
705 mutex_lock(&pci_mmcfg_lock);
706 cfg = pci_mmconfig_lookup(seg, start);
707 if (cfg) {
708 if (cfg->end_bus < end)
709 dev_info(dev, FW_INFO
710 "MMCONFIG for "
711 "domain %04x [bus %02x-%02x] "
712 "only partially covers this bridge\n",
713 cfg->segment, cfg->start_bus, cfg->end_bus);
714 mutex_unlock(&pci_mmcfg_lock);
715 return -EEXIST;
716 }
717
Bjorn Helgaas67d470e2013-10-04 16:14:30 -0600718 if (!addr) {
719 mutex_unlock(&pci_mmcfg_lock);
720 return -EINVAL;
721 }
722
Jiang Liu9c951112012-06-22 14:55:15 +0800723 rc = -EBUSY;
724 cfg = pci_mmconfig_alloc(seg, start, end, addr);
725 if (cfg == NULL) {
726 dev_warn(dev, "fail to add MMCONFIG (out of memory)\n");
727 rc = -ENOMEM;
728 } else if (!pci_mmcfg_check_reserved(dev, cfg, 0)) {
729 dev_warn(dev, FW_BUG "MMCONFIG %pR isn't reserved\n",
730 &cfg->res);
731 } else {
732 /* Insert resource if it's not in boot stage */
733 if (pci_mmcfg_running_state)
734 tmp = insert_resource_conflict(&iomem_resource,
735 &cfg->res);
736
737 if (tmp) {
738 dev_warn(dev,
739 "MMCONFIG %pR conflicts with "
740 "%s %pR\n",
741 &cfg->res, tmp->name, tmp);
742 } else if (pci_mmcfg_arch_map(cfg)) {
743 dev_warn(dev, "fail to map MMCONFIG %pR.\n",
744 &cfg->res);
745 } else {
746 list_add_sorted(cfg);
747 dev_info(dev, "MMCONFIG at %pR (base %#lx)\n",
748 &cfg->res, (unsigned long)addr);
749 cfg = NULL;
750 rc = 0;
751 }
752 }
753
754 if (cfg) {
755 if (cfg->res.parent)
756 release_resource(&cfg->res);
757 kfree(cfg);
758 }
759
760 mutex_unlock(&pci_mmcfg_lock);
761
762 return rc;
763}
764
765/* Delete MMCFG information for host bridges */
766int pci_mmconfig_delete(u16 seg, u8 start, u8 end)
767{
768 struct pci_mmcfg_region *cfg;
769
770 mutex_lock(&pci_mmcfg_lock);
771 list_for_each_entry_rcu(cfg, &pci_mmcfg_list, list)
772 if (cfg->segment == seg && cfg->start_bus == start &&
773 cfg->end_bus == end) {
774 list_del_rcu(&cfg->list);
775 synchronize_rcu();
776 pci_mmcfg_arch_unmap(cfg);
777 if (cfg->res.parent)
778 release_resource(&cfg->res);
779 mutex_unlock(&pci_mmcfg_lock);
780 kfree(cfg);
781 return 0;
782 }
783 mutex_unlock(&pci_mmcfg_lock);
784
785 return -ENOENT;
786}