]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
amd-iommu: add dump for iommus described in ivrs table
authorJoerg Roedel <joerg.roedel@amd.com>
Wed, 20 May 2009 11:53:57 +0000 (13:53 +0200)
committerJoerg Roedel <joerg.roedel@amd.com>
Thu, 28 May 2009 15:50:56 +0000 (17:50 +0200)
Add information about IOMMU devices described in the IVRS ACPI table to
the kernel log if amd_iommu_dump was specified on the kernel command
line.

Signed-off-by: Joerg Roedel <joerg.roedel@amd.com>
arch/x86/kernel/amd_iommu_init.c

index 57fb7a7cb6e850eccdc61473e45d126d77972542..28165902ae25bbb65da7db6853e09979c6715455 100644 (file)
@@ -748,6 +748,15 @@ static int __init init_iommu_all(struct acpi_table_header *table)
                h = (struct ivhd_header *)p;
                switch (*p) {
                case ACPI_IVHD_TYPE:
+
+                       DUMP_printk("IOMMU: device: %02x:%02x.%01x cap: %04x "
+                                   "seg: %d flags: %01x info %04x\n",
+                                   PCI_BUS(h->devid), PCI_SLOT(h->devid),
+                                   PCI_FUNC(h->devid), h->cap_ptr,
+                                   h->pci_seg, h->flags, h->info);
+                       DUMP_printk("       mmio-addr: %016llx\n",
+                                   h->mmio_phys);
+
                        iommu = kzalloc(sizeof(struct amd_iommu), GFP_KERNEL);
                        if (iommu == NULL)
                                return -ENOMEM;