blob: 8707e24e625e606791eb9233ee428128f60bf3eb [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>
15#include <linux/acpi.h>
16#include <linux/bitmap.h>
17#include <asm/e820.h>
18
19#include "pci.h"
20
21/* aperture is up to 256MB but BIOS may reserve less */
22#define MMCONFIG_APER_MIN (2 * 1024*1024)
23#define MMCONFIG_APER_MAX (256 * 1024*1024)
24
Aaron Durbina5ba7972007-07-21 17:10:34 +020025/* Indicate if the mmcfg resources have been placed into the resource table. */
26static int __initdata pci_mmcfg_resources_inserted;
27
OGAWA Hirofumi429d5122007-02-13 13:26:20 +010028static const char __init *pci_mmcfg_e7520(void)
Olivier Galibert9358c692007-02-13 13:26:20 +010029{
30 u32 win;
Matthew Wilcoxb6ce0682008-02-10 09:45:28 -050031 pci_direct_conf1.read(0, 0, PCI_DEVFN(0,0), 0xce, 2, &win);
Olivier Galibert9358c692007-02-13 13:26:20 +010032
Olivier Galibertb5229db2007-05-02 19:27:22 +020033 win = win & 0xf000;
34 if(win == 0x0000 || win == 0xf000)
35 pci_mmcfg_config_num = 0;
36 else {
37 pci_mmcfg_config_num = 1;
38 pci_mmcfg_config = kzalloc(sizeof(pci_mmcfg_config[0]), GFP_KERNEL);
39 if (!pci_mmcfg_config)
40 return NULL;
41 pci_mmcfg_config[0].address = win << 16;
42 pci_mmcfg_config[0].pci_segment = 0;
43 pci_mmcfg_config[0].start_bus_number = 0;
44 pci_mmcfg_config[0].end_bus_number = 255;
45 }
Olivier Galibert9358c692007-02-13 13:26:20 +010046
47 return "Intel Corporation E7520 Memory Controller Hub";
48}
49
OGAWA Hirofumi429d5122007-02-13 13:26:20 +010050static const char __init *pci_mmcfg_intel_945(void)
Olivier Galibert9358c692007-02-13 13:26:20 +010051{
52 u32 pciexbar, mask = 0, len = 0;
53
54 pci_mmcfg_config_num = 1;
55
Matthew Wilcoxb6ce0682008-02-10 09:45:28 -050056 pci_direct_conf1.read(0, 0, PCI_DEVFN(0,0), 0x48, 4, &pciexbar);
Olivier Galibert9358c692007-02-13 13:26:20 +010057
58 /* Enable bit */
59 if (!(pciexbar & 1))
60 pci_mmcfg_config_num = 0;
61
62 /* Size bits */
63 switch ((pciexbar >> 1) & 3) {
64 case 0:
65 mask = 0xf0000000U;
66 len = 0x10000000U;
67 break;
68 case 1:
69 mask = 0xf8000000U;
70 len = 0x08000000U;
71 break;
72 case 2:
73 mask = 0xfc000000U;
74 len = 0x04000000U;
75 break;
76 default:
77 pci_mmcfg_config_num = 0;
78 }
79
80 /* Errata #2, things break when not aligned on a 256Mb boundary */
81 /* Can only happen in 64M/128M mode */
82
83 if ((pciexbar & mask) & 0x0fffffffU)
84 pci_mmcfg_config_num = 0;
85
Olivier Galibertb5229db2007-05-02 19:27:22 +020086 /* Don't hit the APIC registers and their friends */
87 if ((pciexbar & mask) >= 0xf0000000U)
88 pci_mmcfg_config_num = 0;
89
Olivier Galibert9358c692007-02-13 13:26:20 +010090 if (pci_mmcfg_config_num) {
91 pci_mmcfg_config = kzalloc(sizeof(pci_mmcfg_config[0]), GFP_KERNEL);
92 if (!pci_mmcfg_config)
93 return NULL;
94 pci_mmcfg_config[0].address = pciexbar & mask;
95 pci_mmcfg_config[0].pci_segment = 0;
96 pci_mmcfg_config[0].start_bus_number = 0;
97 pci_mmcfg_config[0].end_bus_number = (len >> 20) - 1;
98 }
99
100 return "Intel Corporation 945G/GZ/P/PL Express Memory Controller Hub";
101}
102
Yinghai Lu7fd0da42008-02-19 03:13:02 -0800103static const char __init *pci_mmcfg_amd_fam10h(void)
104{
105 u32 low, high, address;
106 u64 base, msr;
107 int i;
108 unsigned segnbits = 0, busnbits;
109
110 address = MSR_FAM10H_MMIO_CONF_BASE;
111 if (rdmsr_safe(address, &low, &high))
112 return NULL;
113
114 msr = high;
115 msr <<= 32;
116 msr |= low;
117
118 /* mmconfig is not enable */
119 if (!(msr & FAM10H_MMIO_CONF_ENABLE))
120 return NULL;
121
122 base = msr & (FAM10H_MMIO_CONF_BASE_MASK<<FAM10H_MMIO_CONF_BASE_SHIFT);
123
124 busnbits = (msr >> FAM10H_MMIO_CONF_BUSRANGE_SHIFT) &
125 FAM10H_MMIO_CONF_BUSRANGE_MASK;
126
127 /*
128 * only handle bus 0 ?
129 * need to skip it
130 */
131 if (!busnbits)
132 return NULL;
133
134 if (busnbits > 8) {
135 segnbits = busnbits - 8;
136 busnbits = 8;
137 }
138
139 pci_mmcfg_config_num = (1 << segnbits);
140 pci_mmcfg_config = kzalloc(sizeof(pci_mmcfg_config[0]) *
141 pci_mmcfg_config_num, GFP_KERNEL);
142 if (!pci_mmcfg_config)
143 return NULL;
144
145 for (i = 0; i < (1 << segnbits); i++) {
146 pci_mmcfg_config[i].address = base + (1<<28) * i;
147 pci_mmcfg_config[i].pci_segment = i;
148 pci_mmcfg_config[i].start_bus_number = 0;
149 pci_mmcfg_config[i].end_bus_number = (1 << busnbits) - 1;
150 }
151
152 return "AMD Family 10h NB";
153}
154
Olivier Galibert9358c692007-02-13 13:26:20 +0100155struct pci_mmcfg_hostbridge_probe {
Yinghai Lu7fd0da42008-02-19 03:13:02 -0800156 u32 bus;
157 u32 devfn;
Olivier Galibert9358c692007-02-13 13:26:20 +0100158 u32 vendor;
159 u32 device;
160 const char *(*probe)(void);
161};
162
OGAWA Hirofumi429d5122007-02-13 13:26:20 +0100163static struct pci_mmcfg_hostbridge_probe pci_mmcfg_probes[] __initdata = {
Yinghai Lu7fd0da42008-02-19 03:13:02 -0800164 { 0, PCI_DEVFN(0, 0), PCI_VENDOR_ID_INTEL,
165 PCI_DEVICE_ID_INTEL_E7520_MCH, pci_mmcfg_e7520 },
166 { 0, PCI_DEVFN(0, 0), PCI_VENDOR_ID_INTEL,
167 PCI_DEVICE_ID_INTEL_82945G_HB, pci_mmcfg_intel_945 },
168 { 0, PCI_DEVFN(0x18, 0), PCI_VENDOR_ID_AMD,
169 0x1200, pci_mmcfg_amd_fam10h },
170 { 0xff, PCI_DEVFN(0, 0), PCI_VENDOR_ID_AMD,
171 0x1200, pci_mmcfg_amd_fam10h },
Olivier Galibert9358c692007-02-13 13:26:20 +0100172};
173
174static int __init pci_mmcfg_check_hostbridge(void)
175{
176 u32 l;
Yinghai Lu7fd0da42008-02-19 03:13:02 -0800177 u32 bus, devfn;
Olivier Galibert9358c692007-02-13 13:26:20 +0100178 u16 vendor, device;
179 int i;
180 const char *name;
181
Olivier Galibert9358c692007-02-13 13:26:20 +0100182 pci_mmcfg_config_num = 0;
183 pci_mmcfg_config = NULL;
184 name = NULL;
185
OGAWA Hirofumi429d5122007-02-13 13:26:20 +0100186 for (i = 0; !name && i < ARRAY_SIZE(pci_mmcfg_probes); i++) {
Yinghai Lu7fd0da42008-02-19 03:13:02 -0800187 bus = pci_mmcfg_probes[i].bus;
188 devfn = pci_mmcfg_probes[i].devfn;
189 pci_direct_conf1.read(0, bus, devfn, 0, 4, &l);
190 vendor = l & 0xffff;
191 device = (l >> 16) & 0xffff;
192
OGAWA Hirofumi429d5122007-02-13 13:26:20 +0100193 if (pci_mmcfg_probes[i].vendor == vendor &&
194 pci_mmcfg_probes[i].device == device)
Olivier Galibert9358c692007-02-13 13:26:20 +0100195 name = pci_mmcfg_probes[i].probe();
OGAWA Hirofumi429d5122007-02-13 13:26:20 +0100196 }
Olivier Galibert9358c692007-02-13 13:26:20 +0100197
198 if (name) {
OGAWA Hirofumi429d5122007-02-13 13:26:20 +0100199 printk(KERN_INFO "PCI: Found %s %s MMCONFIG support.\n",
200 name, pci_mmcfg_config_num ? "with" : "without");
Olivier Galibert9358c692007-02-13 13:26:20 +0100201 }
202
203 return name != NULL;
204}
205
Aaron Durbina5ba7972007-07-21 17:10:34 +0200206static void __init pci_mmcfg_insert_resources(unsigned long resource_flags)
Olivier Galibert6a0668f2007-02-13 13:26:20 +0100207{
208#define PCI_MMCFG_RESOURCE_NAME_LEN 19
209 int i;
210 struct resource *res;
211 char *names;
212 unsigned num_buses;
213
214 res = kcalloc(PCI_MMCFG_RESOURCE_NAME_LEN + sizeof(*res),
215 pci_mmcfg_config_num, GFP_KERNEL);
Olivier Galibert6a0668f2007-02-13 13:26:20 +0100216 if (!res) {
217 printk(KERN_ERR "PCI: Unable to allocate MMCONFIG resources\n");
218 return;
219 }
220
221 names = (void *)&res[pci_mmcfg_config_num];
222 for (i = 0; i < pci_mmcfg_config_num; i++, res++) {
OGAWA Hirofumi429d5122007-02-13 13:26:20 +0100223 struct acpi_mcfg_allocation *cfg = &pci_mmcfg_config[i];
224 num_buses = cfg->end_bus_number - cfg->start_bus_number + 1;
Olivier Galibert6a0668f2007-02-13 13:26:20 +0100225 res->name = names;
226 snprintf(names, PCI_MMCFG_RESOURCE_NAME_LEN, "PCI MMCONFIG %u",
OGAWA Hirofumi429d5122007-02-13 13:26:20 +0100227 cfg->pci_segment);
228 res->start = cfg->address;
Olivier Galibert6a0668f2007-02-13 13:26:20 +0100229 res->end = res->start + (num_buses << 20) - 1;
Aaron Durbina5ba7972007-07-21 17:10:34 +0200230 res->flags = IORESOURCE_MEM | resource_flags;
Olivier Galibert6a0668f2007-02-13 13:26:20 +0100231 insert_resource(&iomem_resource, res);
232 names += PCI_MMCFG_RESOURCE_NAME_LEN;
233 }
Aaron Durbina5ba7972007-07-21 17:10:34 +0200234
235 /* Mark that the resources have been inserted. */
236 pci_mmcfg_resources_inserted = 1;
Olivier Galibert6a0668f2007-02-13 13:26:20 +0100237}
238
Robert Hancock7752d5c2008-02-15 01:27:20 -0800239static acpi_status __init check_mcfg_resource(struct acpi_resource *res,
240 void *data)
241{
242 struct resource *mcfg_res = data;
243 struct acpi_resource_address64 address;
244 acpi_status status;
245
246 if (res->type == ACPI_RESOURCE_TYPE_FIXED_MEMORY32) {
247 struct acpi_resource_fixed_memory32 *fixmem32 =
248 &res->data.fixed_memory32;
249 if (!fixmem32)
250 return AE_OK;
251 if ((mcfg_res->start >= fixmem32->address) &&
252 (mcfg_res->end < (fixmem32->address +
253 fixmem32->address_length))) {
254 mcfg_res->flags = 1;
255 return AE_CTRL_TERMINATE;
256 }
257 }
258 if ((res->type != ACPI_RESOURCE_TYPE_ADDRESS32) &&
259 (res->type != ACPI_RESOURCE_TYPE_ADDRESS64))
260 return AE_OK;
261
262 status = acpi_resource_to_address64(res, &address);
263 if (ACPI_FAILURE(status) ||
264 (address.address_length <= 0) ||
265 (address.resource_type != ACPI_MEMORY_RANGE))
266 return AE_OK;
267
268 if ((mcfg_res->start >= address.minimum) &&
269 (mcfg_res->end < (address.minimum + address.address_length))) {
270 mcfg_res->flags = 1;
271 return AE_CTRL_TERMINATE;
272 }
273 return AE_OK;
274}
275
276static acpi_status __init find_mboard_resource(acpi_handle handle, u32 lvl,
277 void *context, void **rv)
278{
279 struct resource *mcfg_res = context;
280
281 acpi_walk_resources(handle, METHOD_NAME__CRS,
282 check_mcfg_resource, context);
283
284 if (mcfg_res->flags)
285 return AE_CTRL_TERMINATE;
286
287 return AE_OK;
288}
289
290static int __init is_acpi_reserved(unsigned long start, unsigned long end)
291{
292 struct resource mcfg_res;
293
294 mcfg_res.start = start;
295 mcfg_res.end = end;
296 mcfg_res.flags = 0;
297
298 acpi_get_devices("PNP0C01", find_mboard_resource, &mcfg_res, NULL);
299
300 if (!mcfg_res.flags)
301 acpi_get_devices("PNP0C02", find_mboard_resource, &mcfg_res,
302 NULL);
303
304 return mcfg_res.flags;
305}
306
Yinghai Lu05c58b82008-02-15 01:30:14 -0800307static void __init pci_mmcfg_reject_broken(int type, int early)
OGAWA Hirofumi44de0202007-02-13 13:26:20 +0100308{
OGAWA Hirofumi26054ed2007-02-13 13:26:20 +0100309 typeof(pci_mmcfg_config[0]) *cfg;
Robert Hancock7752d5c2008-02-15 01:27:20 -0800310 int i;
OGAWA Hirofumi26054ed2007-02-13 13:26:20 +0100311
312 if ((pci_mmcfg_config_num == 0) ||
313 (pci_mmcfg_config == NULL) ||
314 (pci_mmcfg_config[0].address == 0))
315 return;
316
317 cfg = &pci_mmcfg_config[0];
OGAWA Hirofumi44de0202007-02-13 13:26:20 +0100318
319 /*
320 * Handle more broken MCFG tables on Asus etc.
321 * They only contain a single entry for bus 0-0.
322 */
323 if (pci_mmcfg_config_num == 1 &&
324 cfg->pci_segment == 0 &&
325 (cfg->start_bus_number | cfg->end_bus_number) == 0) {
OGAWA Hirofumi44de0202007-02-13 13:26:20 +0100326 printk(KERN_ERR "PCI: start and end of bus number is 0. "
OGAWA Hirofumi26054ed2007-02-13 13:26:20 +0100327 "Rejected as broken MCFG.\n");
328 goto reject;
OGAWA Hirofumi44de0202007-02-13 13:26:20 +0100329 }
OGAWA Hirofumi26054ed2007-02-13 13:26:20 +0100330
Robert Hancock7752d5c2008-02-15 01:27:20 -0800331 for (i = 0; i < pci_mmcfg_config_num; i++) {
Yinghai Lu05c58b82008-02-15 01:30:14 -0800332 int valid = 0;
Robert Hancock7752d5c2008-02-15 01:27:20 -0800333 u32 size = (cfg->end_bus_number + 1) << 20;
334 cfg = &pci_mmcfg_config[i];
Yinghai Lu05c58b82008-02-15 01:30:14 -0800335 printk(KERN_NOTICE "PCI: MCFG configuration %d: base %lx "
Robert Hancock7752d5c2008-02-15 01:27:20 -0800336 "segment %hu buses %u - %u\n",
337 i, (unsigned long)cfg->address, cfg->pci_segment,
338 (unsigned int)cfg->start_bus_number,
339 (unsigned int)cfg->end_bus_number);
Yinghai Lu05c58b82008-02-15 01:30:14 -0800340
341 if (!early &&
342 is_acpi_reserved(cfg->address, cfg->address + size - 1)) {
Robert Hancock7752d5c2008-02-15 01:27:20 -0800343 printk(KERN_NOTICE "PCI: MCFG area at %Lx reserved "
344 "in ACPI motherboard resources\n",
345 cfg->address);
Yinghai Lu05c58b82008-02-15 01:30:14 -0800346 valid = 1;
347 }
348
349 if (valid)
350 continue;
351
352 if (!early)
Robert Hancock7752d5c2008-02-15 01:27:20 -0800353 printk(KERN_ERR "PCI: BIOS Bug: MCFG area at %Lx is not"
354 " reserved in ACPI motherboard resources\n",
355 cfg->address);
Yinghai Lu05c58b82008-02-15 01:30:14 -0800356 /* Don't try to do this check unless configuration
357 type 1 is available. */
358 if (type == 1 && e820_all_mapped(cfg->address,
359 cfg->address + size - 1,
360 E820_RESERVED)) {
361 printk(KERN_NOTICE
362 "PCI: MCFG area at %Lx reserved in E820\n",
363 cfg->address);
364 valid = 1;
Robert Hancock7752d5c2008-02-15 01:27:20 -0800365 }
Yinghai Lu05c58b82008-02-15 01:30:14 -0800366
367 if (!valid)
368 goto reject;
OGAWA Hirofumi26054ed2007-02-13 13:26:20 +0100369 }
Robert Hancock7752d5c2008-02-15 01:27:20 -0800370
OGAWA Hirofumi26054ed2007-02-13 13:26:20 +0100371 return;
372
373reject:
374 printk(KERN_ERR "PCI: Not using MMCONFIG.\n");
Yinghai Lu0b64ad72008-02-15 01:28:41 -0800375 pci_mmcfg_arch_free();
OGAWA Hirofumi26054ed2007-02-13 13:26:20 +0100376 kfree(pci_mmcfg_config);
377 pci_mmcfg_config = NULL;
378 pci_mmcfg_config_num = 0;
OGAWA Hirofumi44de0202007-02-13 13:26:20 +0100379}
380
Yinghai Lu05c58b82008-02-15 01:30:14 -0800381static int __initdata known_bridge;
382
383void __init __pci_mmcfg_init(int type, int early)
Olivier Galibertb7867392007-02-13 13:26:20 +0100384{
Robert Hancock7752d5c2008-02-15 01:27:20 -0800385 /* MMCONFIG disabled */
386 if ((pci_probe & PCI_PROBE_MMCONF) == 0)
387 return;
388
389 /* MMCONFIG already enabled */
Yinghai Lu05c58b82008-02-15 01:30:14 -0800390 if (!early && !(pci_probe & PCI_PROBE_MASK & ~PCI_PROBE_MMCONF))
Robert Hancock7752d5c2008-02-15 01:27:20 -0800391 return;
392
Yinghai Lu05c58b82008-02-15 01:30:14 -0800393 /* for late to exit */
394 if (known_bridge)
395 return;
Robert Hancock7752d5c2008-02-15 01:27:20 -0800396
Yinghai Lu05c58b82008-02-15 01:30:14 -0800397 if (early && type == 1) {
398 if (pci_mmcfg_check_hostbridge())
399 known_bridge = 1;
400 }
401
402 if (!known_bridge) {
403 acpi_table_parse(ACPI_SIG_MCFG, acpi_parse_mcfg);
404 pci_mmcfg_reject_broken(type, early);
405 }
Olivier Galibertb7867392007-02-13 13:26:20 +0100406
407 if ((pci_mmcfg_config_num == 0) ||
408 (pci_mmcfg_config == NULL) ||
409 (pci_mmcfg_config[0].address == 0))
410 return;
411
Olivier Galibertb7867392007-02-13 13:26:20 +0100412 if (pci_mmcfg_arch_init()) {
Olivier Galibert6a0668f2007-02-13 13:26:20 +0100413 if (known_bridge)
Aaron Durbina5ba7972007-07-21 17:10:34 +0200414 pci_mmcfg_insert_resources(IORESOURCE_BUSY);
Olivier Galibertb7867392007-02-13 13:26:20 +0100415 pci_probe = (pci_probe & ~PCI_PROBE_MASK) | PCI_PROBE_MMCONF;
Aaron Durbina5ba7972007-07-21 17:10:34 +0200416 } else {
417 /*
418 * Signal not to attempt to insert mmcfg resources because
419 * the architecture mmcfg setup could not initialize.
420 */
421 pci_mmcfg_resources_inserted = 1;
Olivier Galibertb7867392007-02-13 13:26:20 +0100422 }
423}
Aaron Durbina5ba7972007-07-21 17:10:34 +0200424
Yinghai Lu05c58b82008-02-15 01:30:14 -0800425void __init pci_mmcfg_early_init(int type)
426{
427 __pci_mmcfg_init(type, 1);
428}
429
430void __init pci_mmcfg_late_init(void)
431{
432 int type = 0;
433
434 if (pci_probe & PCI_PROBE_CONF1)
435 type = 1;
436
437 __pci_mmcfg_init(type, 0);
438}
439
Aaron Durbina5ba7972007-07-21 17:10:34 +0200440static int __init pci_mmcfg_late_insert_resources(void)
441{
442 /*
443 * If resources are already inserted or we are not using MMCONFIG,
444 * don't insert the resources.
445 */
446 if ((pci_mmcfg_resources_inserted == 1) ||
447 (pci_probe & PCI_PROBE_MMCONF) == 0 ||
448 (pci_mmcfg_config_num == 0) ||
449 (pci_mmcfg_config == NULL) ||
450 (pci_mmcfg_config[0].address == 0))
451 return 1;
452
453 /*
454 * Attempt to insert the mmcfg resources but not with the busy flag
455 * marked so it won't cause request errors when __request_region is
456 * called.
457 */
458 pci_mmcfg_insert_resources(0);
459
460 return 0;
461}
462
463/*
464 * Perform MMCONFIG resource insertion after PCI initialization to allow for
465 * misprogrammed MCFG tables that state larger sizes but actually conflict
466 * with other system resources.
467 */
468late_initcall(pci_mmcfg_late_insert_resources);