The patch titled MMCONFIG: Fix x86_64 ioremap base_address has been added to the -mm tree. Its filename is mmconfig-fix-x86_64-ioremap-base_address.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: MMCONFIG: Fix x86_64 ioremap base_address From: OGAWA Hirofumi <hirofumi@xxxxxxxxxxxxxxxxxx> Current mmconfig has some problems of remapped range. The base address always corresponds to bus number 0, but currently we are assuming it corresponds to start bus number. This patch fixes the above problems. Signed-off-by: OGAWA Hirofumi <hirofumi@xxxxxxxxxxxxxxxxxx> Cc: Arjan van de Ven <arjan@xxxxxxxxxxxxxxx> Cc: Andi Kleen <ak@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- arch/x86_64/pci/mmconfig.c | 21 +++++++++++++++------ 1 files changed, 15 insertions(+), 6 deletions(-) diff -puN arch/x86_64/pci/mmconfig.c~mmconfig-fix-x86_64-ioremap-base_address arch/x86_64/pci/mmconfig.c --- a/arch/x86_64/pci/mmconfig.c~mmconfig-fix-x86_64-ioremap-base_address +++ a/arch/x86_64/pci/mmconfig.c @@ -118,6 +118,20 @@ int __init pci_mmcfg_arch_reachable(unsi return pci_dev_base(seg, bus, devfn) != NULL; } +static void __iomem * __init mcfg_ioremap(struct acpi_table_mcfg_config *cfg) +{ + void __iomem *addr; + u32 size; + + size = (cfg->end_bus_number + 1) << 20; + addr = ioremap_nocache(cfg->base_address, size); + if (addr) { + printk(KERN_INFO "PCI: Using MMCONFIG at %x - %x\n", + cfg->base_address, cfg->base_address + size - 1); + } + return addr; +} + int __init pci_mmcfg_arch_init(void) { int i; @@ -128,19 +142,14 @@ int __init pci_mmcfg_arch_init(void) } for (i = 0; i < pci_mmcfg_config_num; ++i) { - u32 size = (pci_mmcfg_config[0].end_bus_number - pci_mmcfg_config[0].start_bus_number + 1) << 20; pci_mmcfg_virt[i].cfg = &pci_mmcfg_config[i]; - pci_mmcfg_virt[i].virt = ioremap_nocache(pci_mmcfg_config[i].base_address, - size); + pci_mmcfg_virt[i].virt = mcfg_ioremap(&pci_mmcfg_config[i]); if (!pci_mmcfg_virt[i].virt) { printk(KERN_ERR "PCI: Cannot map mmconfig aperture for " "segment %d\n", pci_mmcfg_config[i].pci_segment_group_number); return 0; } - printk(KERN_INFO "PCI: Using MMCONFIG at %x-%x\n", - pci_mmcfg_config[i].base_address, - pci_mmcfg_config[i].base_address + size - 1); } raw_pci_ops = &pci_mmcfg; _ Patches currently in -mm which might be from hirofumi@xxxxxxxxxxxxxxxxxx are mmconfig-cleanup.patch mmconfig-reject-a-broken-mcfg-tables-on-asus-etc.patch mmconfig-fix-unreachable_devices.patch mmconfig-fix-x86_64-ioremap-base_address.patch relax-check-for-aix-in-msdos-partition-table.patch msdos-partitions-fix-logic-error-in-aix-detection.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html