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
;
19 static bool pci_use_crs
= true;
21 static int __init
set_use_crs(const struct dmi_system_id
*id
)
27 static const struct dmi_system_id pci_use_crs_table
[] __initconst
= {
28 /* http://bugzilla.kernel.org/show_bug.cgi?id=14183 */
30 .callback
= set_use_crs
,
31 .ident
= "IBM System x3800",
33 DMI_MATCH(DMI_SYS_VENDOR
, "IBM"),
34 DMI_MATCH(DMI_PRODUCT_NAME
, "x3800"),
37 /* https://bugzilla.kernel.org/show_bug.cgi?id=16007 */
38 /* 2006 AMD HT/VIA system with two host bridges */
40 .callback
= set_use_crs
,
41 .ident
= "ASRock ALiveSATA2-GLAN",
43 DMI_MATCH(DMI_PRODUCT_NAME
, "ALiveSATA2-GLAN"),
46 /* https://bugzilla.kernel.org/show_bug.cgi?id=30552 */
47 /* 2006 AMD HT/VIA system with two host bridges */
49 .callback
= set_use_crs
,
50 .ident
= "ASUS M2V-MX SE",
52 DMI_MATCH(DMI_BOARD_VENDOR
, "ASUSTeK Computer INC."),
53 DMI_MATCH(DMI_BOARD_NAME
, "M2V-MX SE"),
54 DMI_MATCH(DMI_BIOS_VENDOR
, "American Megatrends Inc."),
57 /* https://bugzilla.kernel.org/show_bug.cgi?id=42619 */
59 .callback
= set_use_crs
,
60 .ident
= "MSI MS-7253",
62 DMI_MATCH(DMI_BOARD_VENDOR
, "MICRO-STAR INTERNATIONAL CO., LTD"),
63 DMI_MATCH(DMI_BOARD_NAME
, "MS-7253"),
64 DMI_MATCH(DMI_BIOS_VENDOR
, "Phoenix Technologies, LTD"),
70 void __init
pci_acpi_crs_quirks(void)
74 if (dmi_get_date(DMI_BIOS_DATE
, &year
, NULL
, NULL
) && year
< 2008)
77 dmi_check_system(pci_use_crs_table
);
80 * If the user specifies "pci=use_crs" or "pci=nocrs" explicitly, that
81 * takes precedence over anything we figured out above.
83 if (pci_probe
& PCI_ROOT_NO_CRS
)
85 else if (pci_probe
& PCI_USE__CRS
)
88 printk(KERN_INFO
"PCI: %s host bridge windows from ACPI; "
89 "if necessary, use \"pci=%s\" and report a bug\n",
90 pci_use_crs
? "Using" : "Ignoring",
91 pci_use_crs
? "nocrs" : "use_crs");
95 resource_to_addr(struct acpi_resource
*resource
,
96 struct acpi_resource_address64
*addr
)
99 struct acpi_resource_memory24
*memory24
;
100 struct acpi_resource_memory32
*memory32
;
101 struct acpi_resource_fixed_memory32
*fixed_memory32
;
103 memset(addr
, 0, sizeof(*addr
));
104 switch (resource
->type
) {
105 case ACPI_RESOURCE_TYPE_MEMORY24
:
106 memory24
= &resource
->data
.memory24
;
107 addr
->resource_type
= ACPI_MEMORY_RANGE
;
108 addr
->minimum
= memory24
->minimum
;
109 addr
->address_length
= memory24
->address_length
;
110 addr
->maximum
= addr
->minimum
+ addr
->address_length
- 1;
112 case ACPI_RESOURCE_TYPE_MEMORY32
:
113 memory32
= &resource
->data
.memory32
;
114 addr
->resource_type
= ACPI_MEMORY_RANGE
;
115 addr
->minimum
= memory32
->minimum
;
116 addr
->address_length
= memory32
->address_length
;
117 addr
->maximum
= addr
->minimum
+ addr
->address_length
- 1;
119 case ACPI_RESOURCE_TYPE_FIXED_MEMORY32
:
120 fixed_memory32
= &resource
->data
.fixed_memory32
;
121 addr
->resource_type
= ACPI_MEMORY_RANGE
;
122 addr
->minimum
= fixed_memory32
->address
;
123 addr
->address_length
= fixed_memory32
->address_length
;
124 addr
->maximum
= addr
->minimum
+ addr
->address_length
- 1;
126 case ACPI_RESOURCE_TYPE_ADDRESS16
:
127 case ACPI_RESOURCE_TYPE_ADDRESS32
:
128 case ACPI_RESOURCE_TYPE_ADDRESS64
:
129 status
= acpi_resource_to_address64(resource
, addr
);
130 if (ACPI_SUCCESS(status
) &&
131 (addr
->resource_type
== ACPI_MEMORY_RANGE
||
132 addr
->resource_type
== ACPI_IO_RANGE
) &&
133 addr
->address_length
> 0) {
142 count_resource(struct acpi_resource
*acpi_res
, void *data
)
144 struct pci_root_info
*info
= data
;
145 struct acpi_resource_address64 addr
;
148 status
= resource_to_addr(acpi_res
, &addr
);
149 if (ACPI_SUCCESS(status
))
155 setup_resource(struct acpi_resource
*acpi_res
, void *data
)
157 struct pci_root_info
*info
= data
;
158 struct resource
*res
;
159 struct acpi_resource_address64 addr
;
162 u64 start
, orig_end
, end
;
164 status
= resource_to_addr(acpi_res
, &addr
);
165 if (!ACPI_SUCCESS(status
))
168 if (addr
.resource_type
== ACPI_MEMORY_RANGE
) {
169 flags
= IORESOURCE_MEM
;
170 if (addr
.info
.mem
.caching
== ACPI_PREFETCHABLE_MEMORY
)
171 flags
|= IORESOURCE_PREFETCH
;
172 } else if (addr
.resource_type
== ACPI_IO_RANGE
) {
173 flags
= IORESOURCE_IO
;
177 start
= addr
.minimum
+ addr
.translation_offset
;
178 orig_end
= end
= addr
.maximum
+ addr
.translation_offset
;
180 /* Exclude non-addressable range or non-addressable portion of range */
181 end
= min(end
, (u64
)iomem_resource
.end
);
183 dev_info(&info
->bridge
->dev
,
184 "host bridge window [%#llx-%#llx] "
185 "(ignored, not CPU addressable)\n", start
, orig_end
);
187 } else if (orig_end
!= end
) {
188 dev_info(&info
->bridge
->dev
,
189 "host bridge window [%#llx-%#llx] "
190 "([%#llx-%#llx] ignored, not CPU addressable)\n",
191 start
, orig_end
, end
+ 1, orig_end
);
194 res
= &info
->res
[info
->res_num
];
195 res
->name
= info
->name
;
202 dev_printk(KERN_DEBUG
, &info
->bridge
->dev
,
203 "host bridge window %pR (ignored)\n", res
);
208 if (addr
.translation_offset
)
209 dev_info(&info
->bridge
->dev
, "host bridge window %pR "
210 "(PCI address [%#llx-%#llx])\n",
211 res
, res
->start
- addr
.translation_offset
,
212 res
->end
- addr
.translation_offset
);
214 dev_info(&info
->bridge
->dev
, "host bridge window %pR\n", res
);
219 static bool resource_contains(struct resource
*res
, resource_size_t point
)
221 if (res
->start
<= point
&& point
<= res
->end
)
226 static void coalesce_windows(struct pci_root_info
*info
, unsigned long type
)
229 struct resource
*res1
, *res2
;
231 for (i
= 0; i
< info
->res_num
; i
++) {
232 res1
= &info
->res
[i
];
233 if (!(res1
->flags
& type
))
236 for (j
= i
+ 1; j
< info
->res_num
; j
++) {
237 res2
= &info
->res
[j
];
238 if (!(res2
->flags
& type
))
242 * I don't like throwing away windows because then
243 * our resources no longer match the ACPI _CRS, but
244 * the kernel resource tree doesn't allow overlaps.
246 if (resource_contains(res1
, res2
->start
) ||
247 resource_contains(res1
, res2
->end
) ||
248 resource_contains(res2
, res1
->start
) ||
249 resource_contains(res2
, res1
->end
)) {
250 res1
->start
= min(res1
->start
, res2
->start
);
251 res1
->end
= max(res1
->end
, res2
->end
);
252 dev_info(&info
->bridge
->dev
,
253 "host bridge window expanded to %pR; %pR ignored\n",
261 static void add_resources(struct pci_root_info
*info
)
264 struct resource
*res
, *root
, *conflict
;
269 coalesce_windows(info
, IORESOURCE_MEM
);
270 coalesce_windows(info
, IORESOURCE_IO
);
272 for (i
= 0; i
< info
->res_num
; i
++) {
275 if (res
->flags
& IORESOURCE_MEM
)
276 root
= &iomem_resource
;
277 else if (res
->flags
& IORESOURCE_IO
)
278 root
= &ioport_resource
;
282 conflict
= insert_resource_conflict(root
, res
);
284 dev_err(&info
->bridge
->dev
,
285 "address space collision: host bridge window %pR "
286 "conflicts with %s %pR\n",
287 res
, conflict
->name
, conflict
);
289 pci_bus_add_resource(info
->bus
, res
, 0);
294 get_current_resources(struct acpi_device
*device
, int busnum
,
295 int domain
, struct pci_bus
*bus
)
297 struct pci_root_info info
;
301 pci_bus_remove_resources(bus
);
303 info
.bridge
= device
;
306 acpi_walk_resources(device
->handle
, METHOD_NAME__CRS
, count_resource
,
311 size
= sizeof(*info
.res
) * info
.res_num
;
312 info
.res
= kmalloc(size
, GFP_KERNEL
);
316 info
.name
= kasprintf(GFP_KERNEL
, "PCI Bus %04x:%02x", domain
, busnum
);
318 goto name_alloc_fail
;
321 acpi_walk_resources(device
->handle
, METHOD_NAME__CRS
, setup_resource
,
324 add_resources(&info
);
333 struct pci_bus
* __devinit
pci_acpi_scan_root(struct acpi_pci_root
*root
)
335 struct acpi_device
*device
= root
->device
;
336 int domain
= root
->segment
;
337 int busnum
= root
->secondary
.start
;
339 struct pci_sysdata
*sd
;
341 #ifdef CONFIG_ACPI_NUMA
345 if (domain
&& !pci_domains_supported
) {
346 printk(KERN_WARNING
"pci_bus %04x:%02x: "
347 "ignored (multiple domains not supported)\n",
353 #ifdef CONFIG_ACPI_NUMA
354 pxm
= acpi_get_pxm(device
->handle
);
356 node
= pxm_to_node(pxm
);
358 set_mp_bus_to_node(busnum
, node
);
361 node
= get_mp_bus_to_node(busnum
);
363 if (node
!= -1 && !node_online(node
))
366 /* Allocate per-root-bus (not per bus) arch-specific data.
367 * TODO: leak; this memory is never freed.
368 * It's arguable whether it's worth the trouble to care.
370 sd
= kzalloc(sizeof(*sd
), GFP_KERNEL
);
372 printk(KERN_WARNING
"pci_bus %04x:%02x: "
373 "ignored (out of memory)\n", domain
, busnum
);
380 * Maybe the desired pci bus has been already scanned. In such case
381 * it is unnecessary to scan the pci bus with the given domain,busnum.
383 bus
= pci_find_bus(domain
, busnum
);
386 * If the desired bus exits, the content of bus->sysdata will
389 memcpy(bus
->sysdata
, sd
, sizeof(*sd
));
392 bus
= pci_create_bus(NULL
, busnum
, &pci_root_ops
, sd
);
394 get_current_resources(device
, busnum
, domain
, bus
);
395 bus
->subordinate
= pci_scan_child_bus(bus
);
402 if (bus
&& node
!= -1) {
403 #ifdef CONFIG_ACPI_NUMA
405 dev_printk(KERN_DEBUG
, &bus
->dev
,
406 "on NUMA node %d (pxm %d)\n", node
, pxm
);
408 dev_printk(KERN_DEBUG
, &bus
->dev
, "on NUMA node %d\n", node
);
415 int __init
pci_acpi_init(void)
417 struct pci_dev
*dev
= NULL
;
422 printk(KERN_INFO
"PCI: Using ACPI for IRQ routing\n");
423 acpi_irq_penalty_init();
424 pcibios_enable_irq
= acpi_pci_irq_enable
;
425 pcibios_disable_irq
= acpi_pci_irq_disable
;
426 x86_init
.pci
.init_irq
= x86_init_noop
;
430 * PCI IRQ routing is set up by pci_enable_device(), but we
431 * also do it here in case there are still broken drivers that
432 * don't use pci_enable_device().
434 printk(KERN_INFO
"PCI: Routing PCI interrupts for all devices because \"pci=routeirq\" specified\n");
435 for_each_pci_dev(dev
)
436 acpi_pci_irq_enable(dev
);