acpi.c 12.5 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3
#include <linux/pci.h>
#include <linux/acpi.h>
#include <linux/init.h>
4
#include <linux/irq.h>
5
#include <linux/dmi.h>
6
#include <linux/slab.h>
7
#include <asm/numa.h>
8
#include <asm/pci_x86.h>
L
Linus Torvalds 已提交
9

10
struct pci_root_info {
11
	struct acpi_device *bridge;
12
	char name[16];
13
	struct pci_sysdata sd;
14 15 16 17 18 19
#ifdef	CONFIG_PCI_MMCONFIG
	bool mcfg_added;
	u16 segment;
	u8 start_bus;
	u8 end_bus;
#endif
20 21
};

22
static bool pci_use_crs = true;
B
Bjorn Helgaas 已提交
23
static bool pci_ignore_seg = false;
24 25 26 27 28 29 30

static int __init set_use_crs(const struct dmi_system_id *id)
{
	pci_use_crs = true;
	return 0;
}

31 32 33 34 35 36
static int __init set_nouse_crs(const struct dmi_system_id *id)
{
	pci_use_crs = false;
	return 0;
}

B
Bjorn Helgaas 已提交
37 38 39 40 41 42 43 44
static int __init set_ignore_seg(const struct dmi_system_id *id)
{
	printk(KERN_INFO "PCI: %s detected: ignoring ACPI _SEG\n", id->ident);
	pci_ignore_seg = true;
	return 0;
}

static const struct dmi_system_id pci_crs_quirks[] __initconst = {
45 46 47 48 49 50 51 52 53
	/* http://bugzilla.kernel.org/show_bug.cgi?id=14183 */
	{
		.callback = set_use_crs,
		.ident = "IBM System x3800",
		.matches = {
			DMI_MATCH(DMI_SYS_VENDOR, "IBM"),
			DMI_MATCH(DMI_PRODUCT_NAME, "x3800"),
		},
	},
54 55 56 57 58 59 60 61 62
	/* https://bugzilla.kernel.org/show_bug.cgi?id=16007 */
	/* 2006 AMD HT/VIA system with two host bridges */
        {
		.callback = set_use_crs,
		.ident = "ASRock ALiveSATA2-GLAN",
		.matches = {
			DMI_MATCH(DMI_PRODUCT_NAME, "ALiveSATA2-GLAN"),
                },
        },
63 64 65 66 67 68 69 70 71 72 73
	/* https://bugzilla.kernel.org/show_bug.cgi?id=30552 */
	/* 2006 AMD HT/VIA system with two host bridges */
	{
		.callback = set_use_crs,
		.ident = "ASUS M2V-MX SE",
		.matches = {
			DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
			DMI_MATCH(DMI_BOARD_NAME, "M2V-MX SE"),
			DMI_MATCH(DMI_BIOS_VENDOR, "American Megatrends Inc."),
		},
	},
74 75 76 77 78 79 80 81 82 83
	/* https://bugzilla.kernel.org/show_bug.cgi?id=42619 */
	{
		.callback = set_use_crs,
		.ident = "MSI MS-7253",
		.matches = {
			DMI_MATCH(DMI_BOARD_VENDOR, "MICRO-STAR INTERNATIONAL CO., LTD"),
			DMI_MATCH(DMI_BOARD_NAME, "MS-7253"),
			DMI_MATCH(DMI_BIOS_VENDOR, "Phoenix Technologies, LTD"),
		},
	},
84

85 86 87 88 89 90 91 92 93 94 95 96
	/* Now for the blacklist.. */

	/* https://bugzilla.redhat.com/show_bug.cgi?id=769657 */
	{
		.callback = set_nouse_crs,
		.ident = "Dell Studio 1557",
		.matches = {
			DMI_MATCH(DMI_BOARD_VENDOR, "Dell Inc."),
			DMI_MATCH(DMI_PRODUCT_NAME, "Studio 1557"),
			DMI_MATCH(DMI_BIOS_VERSION, "A09"),
		},
	},
97 98 99 100 101 102 103 104 105 106
	/* https://bugzilla.redhat.com/show_bug.cgi?id=769657 */
	{
		.callback = set_nouse_crs,
		.ident = "Thinkpad SL510",
		.matches = {
			DMI_MATCH(DMI_BOARD_VENDOR, "LENOVO"),
			DMI_MATCH(DMI_BOARD_NAME, "2847DFG"),
			DMI_MATCH(DMI_BIOS_VERSION, "6JET85WW (1.43 )"),
		},
	},
B
Bjorn Helgaas 已提交
107 108 109 110 111 112 113 114 115 116

	/* https://bugzilla.kernel.org/show_bug.cgi?id=15362 */
	{
		.callback = set_ignore_seg,
		.ident = "HP xw9300",
		.matches = {
			DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
			DMI_MATCH(DMI_PRODUCT_NAME, "HP xw9300 Workstation"),
		},
	},
117 118 119 120 121 122 123 124 125 126
	{}
};

void __init pci_acpi_crs_quirks(void)
{
	int year;

	if (dmi_get_date(DMI_BIOS_DATE, &year, NULL, NULL) && year < 2008)
		pci_use_crs = false;

B
Bjorn Helgaas 已提交
127
	dmi_check_system(pci_crs_quirks);
128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143

	/*
	 * If the user specifies "pci=use_crs" or "pci=nocrs" explicitly, that
	 * takes precedence over anything we figured out above.
	 */
	if (pci_probe & PCI_ROOT_NO_CRS)
		pci_use_crs = false;
	else if (pci_probe & PCI_USE__CRS)
		pci_use_crs = true;

	printk(KERN_INFO "PCI: %s host bridge windows from ACPI; "
	       "if necessary, use \"pci=%s\" and report a bug\n",
	       pci_use_crs ? "Using" : "Ignoring",
	       pci_use_crs ? "nocrs" : "use_crs");
}

144
#ifdef	CONFIG_PCI_MMCONFIG
145
static int check_segment(u16 seg, struct device *dev, char *estr)
146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167
{
	if (seg) {
		dev_err(dev,
			"%s can't access PCI configuration "
			"space under this host bridge.\n",
			estr);
		return -EIO;
	}

	/*
	 * Failure in adding MMCFG information is not fatal,
	 * just can't access extended configuration space of
	 * devices under this host bridge.
	 */
	dev_warn(dev,
		 "%s can't access extended PCI configuration "
		 "space under this bridge.\n",
		 estr);

	return 0;
}

168 169
static int setup_mcfg_map(struct pci_root_info *info, u16 seg, u8 start,
			  u8 end, phys_addr_t addr)
170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206
{
	int result;
	struct device *dev = &info->bridge->dev;

	info->start_bus = start;
	info->end_bus = end;
	info->mcfg_added = false;

	/* return success if MMCFG is not in use */
	if (raw_pci_ext_ops && raw_pci_ext_ops != &pci_mmcfg)
		return 0;

	if (!(pci_probe & PCI_PROBE_MMCONF))
		return check_segment(seg, dev, "MMCONFIG is disabled,");

	result = pci_mmconfig_insert(dev, seg, start, end, addr);
	if (result == 0) {
		/* enable MMCFG if it hasn't been enabled yet */
		if (raw_pci_ext_ops == NULL)
			raw_pci_ext_ops = &pci_mmcfg;
		info->mcfg_added = true;
	} else if (result != -EEXIST)
		return check_segment(seg, dev,
			 "fail to add MMCONFIG information,");

	return 0;
}

static void teardown_mcfg_map(struct pci_root_info *info)
{
	if (info->mcfg_added) {
		pci_mmconfig_delete(info->segment, info->start_bus,
				    info->end_bus);
		info->mcfg_added = false;
	}
}
#else
207
static int setup_mcfg_map(struct pci_root_info *info,
208 209 210 211 212 213 214 215 216 217
				    u16 seg, u8 start, u8 end,
				    phys_addr_t addr)
{
	return 0;
}
static void teardown_mcfg_map(struct pci_root_info *info)
{
}
#endif

218 219
static void validate_resources(struct device *dev, struct list_head *crs_res,
			       unsigned long type)
220
{
221 222 223
	LIST_HEAD(list);
	struct resource *res1, *res2, *root = NULL;
	struct resource_entry *tmp, *entry, *entry2;
224

225 226
	BUG_ON((type & (IORESOURCE_MEM | IORESOURCE_IO)) == 0);
	root = (type & IORESOURCE_MEM) ? &iomem_resource : &ioport_resource;
227

228 229 230 231
	list_splice_init(crs_res, &list);
	resource_list_for_each_entry_safe(entry, tmp, &list) {
		bool free = false;
		resource_size_t end;
232

233
		res1 = entry->res;
234
		if (!(res1->flags & type))
235 236 237 238 239 240 241 242 243 244 245 246 247 248 249
			goto next;

		/* Exclude non-addressable range or non-addressable portion */
		end = min(res1->end, root->end);
		if (end <= res1->start) {
			dev_info(dev, "host bridge window %pR (ignored, not CPU addressable)\n",
				 res1);
			free = true;
			goto next;
		} else if (res1->end != end) {
			dev_info(dev, "host bridge window %pR ([%#llx-%#llx] ignored, not CPU addressable)\n",
				 res1, (unsigned long long)end + 1,
				 (unsigned long long)res1->end);
			res1->end = end;
		}
250

251 252
		resource_list_for_each_entry(entry2, crs_res) {
			res2 = entry2->res;
253 254 255 256 257 258 259 260
			if (!(res2->flags & type))
				continue;

			/*
			 * I don't like throwing away windows because then
			 * our resources no longer match the ACPI _CRS, but
			 * the kernel resource tree doesn't allow overlaps.
			 */
W
Wei Yang 已提交
261
			if (resource_overlaps(res1, res2)) {
262 263
				res2->start = min(res1->start, res2->start);
				res2->end = max(res1->end, res2->end);
264
				dev_info(dev, "host bridge window expanded to %pR; %pR ignored\n",
265
					 res2, res1);
266 267
				free = true;
				goto next;
268 269
			}
		}
270 271 272 273 274 275 276

next:
		resource_list_del(entry);
		if (free)
			resource_list_free_entry(entry);
		else
			resource_list_add_tail(entry, crs_res);
277 278 279
	}
}

280
static void add_resources(struct pci_root_info *info,
281 282
			  struct list_head *resources,
			  struct list_head *crs_res)
283
{
284 285
	struct resource_entry *entry, *tmp;
	struct resource *res, *conflict, *root = NULL;
286

287 288
	validate_resources(&info->bridge->dev, crs_res, IORESOURCE_MEM);
	validate_resources(&info->bridge->dev, crs_res, IORESOURCE_IO);
289

290 291
	resource_list_for_each_entry_safe(entry, tmp, crs_res) {
		res = entry->res;
292 293 294 295
		if (res->flags & IORESOURCE_MEM)
			root = &iomem_resource;
		else if (res->flags & IORESOURCE_IO)
			root = &ioport_resource;
296
		else
297
			BUG_ON(res);
298 299

		conflict = insert_resource_conflict(root, res);
300
		if (conflict) {
301 302 303
			dev_info(&info->bridge->dev,
				 "ignoring host bridge window %pR (conflicts with %s %pR)\n",
				 res, conflict->name, conflict);
304 305
			resource_list_destroy_entry(entry);
		}
306 307
	}

308
	list_splice_tail(crs_res, resources);
309 310
}

311
static void release_pci_root_info(struct pci_host_bridge *bridge)
312 313
{
	struct resource *res;
314 315
	struct resource_entry *entry;
	struct pci_root_info *info = bridge->release_data;
316

317 318 319 320 321
	resource_list_for_each_entry(entry, &bridge->windows) {
		res = entry->res;
		if (res->parent &&
		    (res->flags & (IORESOURCE_MEM | IORESOURCE_IO)))
			release_resource(res);
322 323
	}

324
	teardown_mcfg_map(info);
325 326
	kfree(info);
}
327

328 329
static void probe_pci_root_info(struct pci_root_info *info,
				struct acpi_device *device,
330 331
				int busnum, int domain,
				struct list_head *list)
332
{
333
	int ret;
334
	struct resource_entry *entry, *tmp;
335

336
	sprintf(info->name, "PCI Bus %04x:%02x", domain, busnum);
337
	info->bridge = device;
338 339 340 341 342 343 344 345 346 347
	ret = acpi_dev_get_resources(device, list,
				     acpi_dev_filter_resource_type_cb,
				     (void *)(IORESOURCE_IO | IORESOURCE_MEM));
	if (ret < 0)
		dev_warn(&device->dev,
			 "failed to parse _CRS method, error code %d\n", ret);
	else if (ret == 0)
		dev_dbg(&device->dev,
			"no IO and memory resources present in _CRS\n");
	else
348 349 350 351 352 353 354
		resource_list_for_each_entry_safe(entry, tmp, list) {
			if ((entry->res->flags & IORESOURCE_WINDOW) == 0 ||
			    (entry->res->flags & IORESOURCE_DISABLED))
				resource_list_destroy_entry(entry);
			else
				entry->res->name = info->name;
		}
355 356
}

357
struct pci_bus *pci_acpi_scan_root(struct acpi_pci_root *root)
L
Linus Torvalds 已提交
358
{
359
	struct acpi_device *device = root->device;
360
	struct pci_root_info *info;
361 362
	int domain = root->segment;
	int busnum = root->secondary.start;
363 364
	struct resource_entry *res_entry;
	LIST_HEAD(crs_res);
365
	LIST_HEAD(resources);
366
	struct pci_bus *bus;
367
	struct pci_sysdata *sd;
Y
Yinghai Lu 已提交
368
	int node;
369

B
Bjorn Helgaas 已提交
370 371 372
	if (pci_ignore_seg)
		domain = 0;

373
	if (domain && !pci_domains_supported) {
374 375 376
		printk(KERN_WARNING "pci_bus %04x:%02x: "
		       "ignored (multiple domains not supported)\n",
		       domain, busnum);
377 378 379
		return NULL;
	}

380
	node = acpi_get_node(device->handle);
381
	if (node == NUMA_NO_NODE) {
382
		node = x86_pci_root_bus_node(busnum);
383 384 385 386
		if (node != 0 && node != NUMA_NO_NODE)
			dev_info(&device->dev, FW_BUG "no _PXM; falling back to node %d from hardware (may be inconsistent with ACPI node numbers)\n",
				node);
	}
387

388 389
	if (node != NUMA_NO_NODE && !node_online(node))
		node = NUMA_NO_NODE;
Y
Yinghai Lu 已提交
390

391
	info = kzalloc_node(sizeof(*info), GFP_KERNEL, node);
392
	if (!info) {
393 394
		printk(KERN_WARNING "pci_bus %04x:%02x: "
		       "ignored (out of memory)\n", domain, busnum);
395 396
		return NULL;
	}
397

398
	sd = &info->sd;
399
	sd->domain = domain;
Y
Yinghai Lu 已提交
400
	sd->node = node;
401
	sd->companion = device;
B
Bjorn Helgaas 已提交
402

403 404 405
	bus = pci_find_bus(domain, busnum);
	if (bus) {
		/*
B
Bjorn Helgaas 已提交
406 407
		 * If the desired bus has been scanned already, replace
		 * its bus->sysdata.
408 409
		 */
		memcpy(bus->sysdata, sd, sizeof(*sd));
410
		kfree(info);
411
	} else {
412 413
		/* insert busn res at first */
		pci_add_resource(&resources,  &root->secondary);
414

415 416 417 418
		/*
		 * _CRS with no apertures is normal, so only fall back to
		 * defaults or native bridge info if we're ignoring _CRS.
		 */
419 420 421 422 423 424 425 426 427
		probe_pci_root_info(info, device, busnum, domain, &crs_res);
		if (pci_use_crs) {
			add_resources(info, &resources, &crs_res);
		} else {
			resource_list_for_each_entry(res_entry, &crs_res)
				dev_printk(KERN_DEBUG, &device->dev,
					   "host bridge window %pR (ignored)\n",
					   res_entry->res);
			resource_list_free(&crs_res);
428
			x86_pci_root_bus_resources(busnum, &resources);
429
		}
430

431 432 433 434 435
		if (!setup_mcfg_map(info, domain, (u8)root->secondary.start,
				    (u8)root->secondary.end, root->mcfg_addr))
			bus = pci_create_root_bus(NULL, busnum, &pci_root_ops,
						  sd, &resources);

436
		if (bus) {
437
			pci_scan_child_bus(bus);
438 439 440 441
			pci_set_host_bridge_release(
				to_pci_host_bridge(bus->bridge),
				release_pci_root_info, info);
		} else {
442 443 444
			resource_list_free(&resources);
			teardown_mcfg_map(info);
			kfree(info);
445
		}
446
	}
447

448 449 450 451 452
	/* After the PCI-E bus has been walked and all devices discovered,
	 * configure any settings of the fabric that might be necessary.
	 */
	if (bus) {
		struct pci_bus *child;
453 454
		list_for_each_entry(child, &bus->children, node)
			pcie_bus_configure_settings(child);
455 456
	}

457
	if (bus && node != NUMA_NO_NODE)
458
		dev_printk(KERN_DEBUG, &bus->dev, "on NUMA node %d\n", node);
459

460
	return bus;
L
Linus Torvalds 已提交
461 462
}

463 464 465 466
int pcibios_root_bridge_prepare(struct pci_host_bridge *bridge)
{
	struct pci_sysdata *sd = bridge->bus->sysdata;

467
	ACPI_COMPANION_SET(&bridge->dev, sd->companion);
468 469 470
	return 0;
}

471
int __init pci_acpi_init(void)
L
Linus Torvalds 已提交
472 473 474 475
{
	struct pci_dev *dev = NULL;

	if (acpi_noirq)
476
		return -ENODEV;
L
Linus Torvalds 已提交
477 478 479 480

	printk(KERN_INFO "PCI: Using ACPI for IRQ routing\n");
	acpi_irq_penalty_init();
	pcibios_enable_irq = acpi_pci_irq_enable;
481
	pcibios_disable_irq = acpi_pci_irq_disable;
482
	x86_init.pci.init_irq = x86_init_noop;
L
Linus Torvalds 已提交
483 484 485 486 487 488 489 490

	if (pci_routeirq) {
		/*
		 * PCI IRQ routing is set up by pci_enable_device(), but we
		 * also do it here in case there are still broken drivers that
		 * don't use pci_enable_device().
		 */
		printk(KERN_INFO "PCI: Routing PCI interrupts for all devices because \"pci=routeirq\" specified\n");
491
		for_each_pci_dev(dev)
L
Linus Torvalds 已提交
492
			acpi_pci_irq_enable(dev);
493
	}
L
Linus Torvalds 已提交
494 495 496

	return 0;
}