|
@@ -137,25 +137,18 @@ pci_acpi_setup_ecam_mapping(struct acpi_pci_root *root)
|
|
|
struct device *dev = &root->device->dev;
|
|
|
struct resource *bus_res = &root->secondary;
|
|
|
u16 seg = root->segment;
|
|
|
+ struct pci_ecam_ops *ecam_ops;
|
|
|
struct resource cfgres;
|
|
|
struct acpi_device *adev;
|
|
|
struct pci_config_window *cfg;
|
|
|
- unsigned int bsz;
|
|
|
+ int ret;
|
|
|
|
|
|
- /* Use address from _CBA if present, otherwise lookup MCFG */
|
|
|
- if (!root->mcfg_addr)
|
|
|
- root->mcfg_addr = pci_mcfg_lookup(seg, bus_res);
|
|
|
-
|
|
|
- if (!root->mcfg_addr) {
|
|
|
+ ret = pci_mcfg_lookup(root, &cfgres, &ecam_ops);
|
|
|
+ if (ret) {
|
|
|
dev_err(dev, "%04x:%pR ECAM region not found\n", seg, bus_res);
|
|
|
return NULL;
|
|
|
}
|
|
|
|
|
|
- bsz = 1 << pci_generic_ecam_ops.bus_shift;
|
|
|
- cfgres.start = root->mcfg_addr + bus_res->start * bsz;
|
|
|
- cfgres.end = cfgres.start + resource_size(bus_res) * bsz - 1;
|
|
|
- cfgres.flags = IORESOURCE_MEM;
|
|
|
-
|
|
|
adev = acpi_resource_consumer(&cfgres);
|
|
|
if (adev)
|
|
|
dev_info(dev, "ECAM area %pR reserved by %s\n", &cfgres,
|
|
@@ -164,7 +157,7 @@ pci_acpi_setup_ecam_mapping(struct acpi_pci_root *root)
|
|
|
dev_warn(dev, FW_BUG "ECAM area %pR not reserved in ACPI namespace\n",
|
|
|
&cfgres);
|
|
|
|
|
|
- cfg = pci_ecam_create(dev, &cfgres, bus_res, &pci_generic_ecam_ops);
|
|
|
+ cfg = pci_ecam_create(dev, &cfgres, bus_res, ecam_ops);
|
|
|
if (IS_ERR(cfg)) {
|
|
|
dev_err(dev, "%04x:%pR error %ld mapping ECAM\n", seg, bus_res,
|
|
|
PTR_ERR(cfg));
|