amd-iommu: add function to flush tlb for all devices
authorJoerg Roedel <joerg.roedel@amd.com>
Tue, 5 May 2009 13:48:10 +0000 (15:48 +0200)
committerJoerg Roedel <joerg.roedel@amd.com>
Thu, 28 May 2009 16:10:43 +0000 (18:10 +0200)
This function is required for suspend/resume support with AMD IOMMU
enabled.

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

index 1750e1f85d3c5ec0829e616d65034e060c9c30b2..262e02820049aa8cc92dca18e83afdcbb829a71c 100644 (file)
@@ -28,6 +28,7 @@ extern int amd_iommu_init_dma_ops(void);
 extern void amd_iommu_detect(void);
 extern irqreturn_t amd_iommu_int_handler(int irq, void *data);
 extern void amd_iommu_flush_all_domains(void);
+extern void amd_iommu_flush_all_devices(void);
 #else
 static inline int amd_iommu_init(void) { return -ENODEV; }
 static inline void amd_iommu_detect(void) { }
index 826ad079efc41b7b944bfa1afa812f58a5fc5bd6..92b0e1881e09f860ec7885e8ffa8462dfbe4ddf6 100644 (file)
@@ -460,6 +460,24 @@ void amd_iommu_flush_all_domains(void)
        }
 }
 
+void amd_iommu_flush_all_devices(void)
+{
+       struct amd_iommu *iommu;
+       int i;
+
+       for (i = 0; i <= amd_iommu_last_bdf; ++i) {
+               if (amd_iommu_pd_table[i] == NULL)
+                       continue;
+
+               iommu = amd_iommu_rlookup_table[i];
+               if (!iommu)
+                       continue;
+
+               iommu_queue_inv_dev_entry(iommu, i);
+               iommu_completion_wait(iommu);
+       }
+}
+
 /****************************************************************************
  *
  * The functions below are used the create the page table mappings for
This page took 0.029135 seconds and 5 git commands to generate.