2 #include <linux/acpi.h>
3 #include <linux/init.h>
6 #include <linux/slab.h>
8 #include <asm/pci_x86.h>
10 struct pci_root_info
{
11 struct acpi_device
*bridge
;
15 struct pci_sysdata sd
;
16 #ifdef CONFIG_PCI_MMCONFIG
24 static bool pci_use_crs
= true;
26 static int __init
set_use_crs(const struct dmi_system_id
*id
)
32 static int __init
set_nouse_crs(const struct dmi_system_id
*id
)
38 static const struct dmi_system_id pci_use_crs_table
[] __initconst
= {
39 /* http://bugzilla.kernel.org/show_bug.cgi?id=14183 */
41 .callback
= set_use_crs
,
42 .ident
= "IBM System x3800",
44 DMI_MATCH(DMI_SYS_VENDOR
, "IBM"),
45 DMI_MATCH(DMI_PRODUCT_NAME
, "x3800"),
48 /* https://bugzilla.kernel.org/show_bug.cgi?id=16007 */
49 /* 2006 AMD HT/VIA system with two host bridges */
51 .callback
= set_use_crs
,
52 .ident
= "ASRock ALiveSATA2-GLAN",
54 DMI_MATCH(DMI_PRODUCT_NAME
, "ALiveSATA2-GLAN"),
57 /* https://bugzilla.kernel.org/show_bug.cgi?id=30552 */
58 /* 2006 AMD HT/VIA system with two host bridges */
60 .callback
= set_use_crs
,
61 .ident
= "ASUS M2V-MX SE",
63 DMI_MATCH(DMI_BOARD_VENDOR
, "ASUSTeK Computer INC."),
64 DMI_MATCH(DMI_BOARD_NAME
, "M2V-MX SE"),
65 DMI_MATCH(DMI_BIOS_VENDOR
, "American Megatrends Inc."),
68 /* https://bugzilla.kernel.org/show_bug.cgi?id=42619 */
70 .callback
= set_use_crs
,
71 .ident
= "MSI MS-7253",
73 DMI_MATCH(DMI_BOARD_VENDOR
, "MICRO-STAR INTERNATIONAL CO., LTD"),
74 DMI_MATCH(DMI_BOARD_NAME
, "MS-7253"),
75 DMI_MATCH(DMI_BIOS_VENDOR
, "Phoenix Technologies, LTD"),
79 /* Now for the blacklist.. */
81 /* https://bugzilla.redhat.com/show_bug.cgi?id=769657 */
83 .callback
= set_nouse_crs
,
84 .ident
= "Dell Studio 1557",
86 DMI_MATCH(DMI_BOARD_VENDOR
, "Dell Inc."),
87 DMI_MATCH(DMI_PRODUCT_NAME
, "Studio 1557"),
88 DMI_MATCH(DMI_BIOS_VERSION
, "A09"),
91 /* https://bugzilla.redhat.com/show_bug.cgi?id=769657 */
93 .callback
= set_nouse_crs
,
94 .ident
= "Thinkpad SL510",
96 DMI_MATCH(DMI_BOARD_VENDOR
, "LENOVO"),
97 DMI_MATCH(DMI_BOARD_NAME
, "2847DFG"),
98 DMI_MATCH(DMI_BIOS_VERSION
, "6JET85WW (1.43 )"),
104 void __init
pci_acpi_crs_quirks(void)
108 if (dmi_get_date(DMI_BIOS_DATE
, &year
, NULL
, NULL
) && year
< 2008)
111 dmi_check_system(pci_use_crs_table
);
114 * If the user specifies "pci=use_crs" or "pci=nocrs" explicitly, that
115 * takes precedence over anything we figured out above.
117 if (pci_probe
& PCI_ROOT_NO_CRS
)
119 else if (pci_probe
& PCI_USE__CRS
)
122 printk(KERN_INFO
"PCI: %s host bridge windows from ACPI; "
123 "if necessary, use \"pci=%s\" and report a bug\n",
124 pci_use_crs
? "Using" : "Ignoring",
125 pci_use_crs
? "nocrs" : "use_crs");
128 #ifdef CONFIG_PCI_MMCONFIG
129 static int __devinit
check_segment(u16 seg
, struct device
*dev
, char *estr
)
133 "%s can't access PCI configuration "
134 "space under this host bridge.\n",
140 * Failure in adding MMCFG information is not fatal,
141 * just can't access extended configuration space of
142 * devices under this host bridge.
145 "%s can't access extended PCI configuration "
146 "space under this bridge.\n",
152 static int __devinit
setup_mcfg_map(struct pci_root_info
*info
,
153 u16 seg
, u8 start
, u8 end
,
157 struct device
*dev
= &info
->bridge
->dev
;
159 info
->start_bus
= start
;
161 info
->mcfg_added
= false;
163 /* return success if MMCFG is not in use */
164 if (raw_pci_ext_ops
&& raw_pci_ext_ops
!= &pci_mmcfg
)
167 if (!(pci_probe
& PCI_PROBE_MMCONF
))
168 return check_segment(seg
, dev
, "MMCONFIG is disabled,");
170 result
= pci_mmconfig_insert(dev
, seg
, start
, end
, addr
);
172 /* enable MMCFG if it hasn't been enabled yet */
173 if (raw_pci_ext_ops
== NULL
)
174 raw_pci_ext_ops
= &pci_mmcfg
;
175 info
->mcfg_added
= true;
176 } else if (result
!= -EEXIST
)
177 return check_segment(seg
, dev
,
178 "fail to add MMCONFIG information,");
183 static void teardown_mcfg_map(struct pci_root_info
*info
)
185 if (info
->mcfg_added
) {
186 pci_mmconfig_delete(info
->segment
, info
->start_bus
,
188 info
->mcfg_added
= false;
192 static int __devinit
setup_mcfg_map(struct pci_root_info
*info
,
193 u16 seg
, u8 start
, u8 end
,
198 static void teardown_mcfg_map(struct pci_root_info
*info
)
204 resource_to_addr(struct acpi_resource
*resource
,
205 struct acpi_resource_address64
*addr
)
208 struct acpi_resource_memory24
*memory24
;
209 struct acpi_resource_memory32
*memory32
;
210 struct acpi_resource_fixed_memory32
*fixed_memory32
;
212 memset(addr
, 0, sizeof(*addr
));
213 switch (resource
->type
) {
214 case ACPI_RESOURCE_TYPE_MEMORY24
:
215 memory24
= &resource
->data
.memory24
;
216 addr
->resource_type
= ACPI_MEMORY_RANGE
;
217 addr
->minimum
= memory24
->minimum
;
218 addr
->address_length
= memory24
->address_length
;
219 addr
->maximum
= addr
->minimum
+ addr
->address_length
- 1;
221 case ACPI_RESOURCE_TYPE_MEMORY32
:
222 memory32
= &resource
->data
.memory32
;
223 addr
->resource_type
= ACPI_MEMORY_RANGE
;
224 addr
->minimum
= memory32
->minimum
;
225 addr
->address_length
= memory32
->address_length
;
226 addr
->maximum
= addr
->minimum
+ addr
->address_length
- 1;
228 case ACPI_RESOURCE_TYPE_FIXED_MEMORY32
:
229 fixed_memory32
= &resource
->data
.fixed_memory32
;
230 addr
->resource_type
= ACPI_MEMORY_RANGE
;
231 addr
->minimum
= fixed_memory32
->address
;
232 addr
->address_length
= fixed_memory32
->address_length
;
233 addr
->maximum
= addr
->minimum
+ addr
->address_length
- 1;
235 case ACPI_RESOURCE_TYPE_ADDRESS16
:
236 case ACPI_RESOURCE_TYPE_ADDRESS32
:
237 case ACPI_RESOURCE_TYPE_ADDRESS64
:
238 status
= acpi_resource_to_address64(resource
, addr
);
239 if (ACPI_SUCCESS(status
) &&
240 (addr
->resource_type
== ACPI_MEMORY_RANGE
||
241 addr
->resource_type
== ACPI_IO_RANGE
) &&
242 addr
->address_length
> 0) {
251 count_resource(struct acpi_resource
*acpi_res
, void *data
)
253 struct pci_root_info
*info
= data
;
254 struct acpi_resource_address64 addr
;
257 status
= resource_to_addr(acpi_res
, &addr
);
258 if (ACPI_SUCCESS(status
))
264 setup_resource(struct acpi_resource
*acpi_res
, void *data
)
266 struct pci_root_info
*info
= data
;
267 struct resource
*res
;
268 struct acpi_resource_address64 addr
;
271 u64 start
, orig_end
, end
;
273 status
= resource_to_addr(acpi_res
, &addr
);
274 if (!ACPI_SUCCESS(status
))
277 if (addr
.resource_type
== ACPI_MEMORY_RANGE
) {
278 flags
= IORESOURCE_MEM
;
279 if (addr
.info
.mem
.caching
== ACPI_PREFETCHABLE_MEMORY
)
280 flags
|= IORESOURCE_PREFETCH
;
281 } else if (addr
.resource_type
== ACPI_IO_RANGE
) {
282 flags
= IORESOURCE_IO
;
286 start
= addr
.minimum
+ addr
.translation_offset
;
287 orig_end
= end
= addr
.maximum
+ addr
.translation_offset
;
289 /* Exclude non-addressable range or non-addressable portion of range */
290 end
= min(end
, (u64
)iomem_resource
.end
);
292 dev_info(&info
->bridge
->dev
,
293 "host bridge window [%#llx-%#llx] "
294 "(ignored, not CPU addressable)\n", start
, orig_end
);
296 } else if (orig_end
!= end
) {
297 dev_info(&info
->bridge
->dev
,
298 "host bridge window [%#llx-%#llx] "
299 "([%#llx-%#llx] ignored, not CPU addressable)\n",
300 start
, orig_end
, end
+ 1, orig_end
);
303 res
= &info
->res
[info
->res_num
];
304 res
->name
= info
->name
;
311 dev_printk(KERN_DEBUG
, &info
->bridge
->dev
,
312 "host bridge window %pR (ignored)\n", res
);
321 static void coalesce_windows(struct pci_root_info
*info
, unsigned long type
)
324 struct resource
*res1
, *res2
;
326 for (i
= 0; i
< info
->res_num
; i
++) {
327 res1
= &info
->res
[i
];
328 if (!(res1
->flags
& type
))
331 for (j
= i
+ 1; j
< info
->res_num
; j
++) {
332 res2
= &info
->res
[j
];
333 if (!(res2
->flags
& type
))
337 * I don't like throwing away windows because then
338 * our resources no longer match the ACPI _CRS, but
339 * the kernel resource tree doesn't allow overlaps.
341 if (resource_overlaps(res1
, res2
)) {
342 res1
->start
= min(res1
->start
, res2
->start
);
343 res1
->end
= max(res1
->end
, res2
->end
);
344 dev_info(&info
->bridge
->dev
,
345 "host bridge window expanded to %pR; %pR ignored\n",
353 static void add_resources(struct pci_root_info
*info
,
354 struct list_head
*resources
)
357 struct resource
*res
, *root
, *conflict
;
359 coalesce_windows(info
, IORESOURCE_MEM
);
360 coalesce_windows(info
, IORESOURCE_IO
);
362 for (i
= 0; i
< info
->res_num
; i
++) {
365 if (res
->flags
& IORESOURCE_MEM
)
366 root
= &iomem_resource
;
367 else if (res
->flags
& IORESOURCE_IO
)
368 root
= &ioport_resource
;
372 conflict
= insert_resource_conflict(root
, res
);
374 dev_info(&info
->bridge
->dev
,
375 "ignoring host bridge window %pR (conflicts with %s %pR)\n",
376 res
, conflict
->name
, conflict
);
378 pci_add_resource(resources
, res
);
382 static void free_pci_root_info_res(struct pci_root_info
*info
)
389 static void __release_pci_root_info(struct pci_root_info
*info
)
392 struct resource
*res
;
394 for (i
= 0; i
< info
->res_num
; i
++) {
400 if (!(res
->flags
& (IORESOURCE_MEM
| IORESOURCE_IO
)))
403 release_resource(res
);
406 free_pci_root_info_res(info
);
408 teardown_mcfg_map(info
);
413 static void release_pci_root_info(struct pci_host_bridge
*bridge
)
415 struct pci_root_info
*info
= bridge
->release_data
;
417 __release_pci_root_info(info
);
421 probe_pci_root_info(struct pci_root_info
*info
, struct acpi_device
*device
,
422 int busnum
, int domain
)
426 sprintf(info
->name
, "PCI Bus %04x:%02x", domain
, busnum
);
427 info
->bridge
= device
;
430 acpi_walk_resources(device
->handle
, METHOD_NAME__CRS
, count_resource
,
435 size
= sizeof(*info
->res
) * info
->res_num
;
437 info
->res
= kmalloc(size
, GFP_KERNEL
);
441 acpi_walk_resources(device
->handle
, METHOD_NAME__CRS
, setup_resource
,
445 struct pci_bus
* __devinit
pci_acpi_scan_root(struct acpi_pci_root
*root
)
447 struct acpi_device
*device
= root
->device
;
448 struct pci_root_info
*info
= NULL
;
449 int domain
= root
->segment
;
450 int busnum
= root
->secondary
.start
;
451 LIST_HEAD(resources
);
452 struct pci_bus
*bus
= NULL
;
453 struct pci_sysdata
*sd
;
455 #ifdef CONFIG_ACPI_NUMA
459 if (domain
&& !pci_domains_supported
) {
460 printk(KERN_WARNING
"pci_bus %04x:%02x: "
461 "ignored (multiple domains not supported)\n",
467 #ifdef CONFIG_ACPI_NUMA
468 pxm
= acpi_get_pxm(device
->handle
);
470 node
= pxm_to_node(pxm
);
472 set_mp_bus_to_node(busnum
, node
);
475 node
= get_mp_bus_to_node(busnum
);
477 if (node
!= -1 && !node_online(node
))
480 info
= kzalloc(sizeof(*info
), GFP_KERNEL
);
482 printk(KERN_WARNING
"pci_bus %04x:%02x: "
483 "ignored (out of memory)\n", domain
, busnum
);
491 * Maybe the desired pci bus has been already scanned. In such case
492 * it is unnecessary to scan the pci bus with the given domain,busnum.
494 bus
= pci_find_bus(domain
, busnum
);
497 * If the desired bus exits, the content of bus->sysdata will
500 memcpy(bus
->sysdata
, sd
, sizeof(*sd
));
503 probe_pci_root_info(info
, device
, busnum
, domain
);
505 /* insert busn res at first */
506 pci_add_resource(&resources
, &root
->secondary
);
508 * _CRS with no apertures is normal, so only fall back to
509 * defaults or native bridge info if we're ignoring _CRS.
512 add_resources(info
, &resources
);
514 free_pci_root_info_res(info
);
515 x86_pci_root_bus_resources(busnum
, &resources
);
518 if (!setup_mcfg_map(info
, domain
, (u8
)root
->secondary
.start
,
519 (u8
)root
->secondary
.end
, root
->mcfg_addr
))
520 bus
= pci_create_root_bus(NULL
, busnum
, &pci_root_ops
,
524 pci_scan_child_bus(bus
);
525 pci_set_host_bridge_release(
526 to_pci_host_bridge(bus
->bridge
),
527 release_pci_root_info
, info
);
529 pci_free_resource_list(&resources
);
530 __release_pci_root_info(info
);
534 /* After the PCI-E bus has been walked and all devices discovered,
535 * configure any settings of the fabric that might be necessary.
538 struct pci_bus
*child
;
539 list_for_each_entry(child
, &bus
->children
, node
) {
540 struct pci_dev
*self
= child
->self
;
544 pcie_bus_configure_settings(child
, self
->pcie_mpss
);
548 if (bus
&& node
!= -1) {
549 #ifdef CONFIG_ACPI_NUMA
551 dev_printk(KERN_DEBUG
, &bus
->dev
,
552 "on NUMA node %d (pxm %d)\n", node
, pxm
);
554 dev_printk(KERN_DEBUG
, &bus
->dev
, "on NUMA node %d\n", node
);
561 int __init
pci_acpi_init(void)
563 struct pci_dev
*dev
= NULL
;
568 printk(KERN_INFO
"PCI: Using ACPI for IRQ routing\n");
569 acpi_irq_penalty_init();
570 pcibios_enable_irq
= acpi_pci_irq_enable
;
571 pcibios_disable_irq
= acpi_pci_irq_disable
;
572 x86_init
.pci
.init_irq
= x86_init_noop
;
576 * PCI IRQ routing is set up by pci_enable_device(), but we
577 * also do it here in case there are still broken drivers that
578 * don't use pci_enable_device().
580 printk(KERN_INFO
"PCI: Routing PCI interrupts for all devices because \"pci=routeirq\" specified\n");
581 for_each_pci_dev(dev
)
582 acpi_pci_irq_enable(dev
);