aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/pci-calgary_64.c
diff options
context:
space:
mode:
authorFUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>2009-11-10 05:46:13 -0500
committerIngo Molnar <mingo@elte.hu>2009-11-10 06:31:15 -0500
commitd7b9f7be216b04ff9d108f856bc03d96e7b3439c (patch)
tree8ee21e81501bbba10bead150235ca811bf81a6bb /arch/x86/kernel/pci-calgary_64.c
parentd07c1be0693e0902d743160b8b638585b808f8ac (diff)
x86: Calgary: Convert detect_calgary() to use iommu_init hook
This changes detect_calgary() to set init_calgary() to iommu_init hook if detect_calgary() finds the Calgary IOMMU. We can kill the code to check if we found the IOMMU in init_calgary() since detect_calgary() sets init_calgary() only when it found the IOMMU. Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> Acked-by: Muli Ben-Yehuda <muli@il.ibm.com> Cc: chrisw@sous-sol.org Cc: dwmw2@infradead.org Cc: joerg.roedel@amd.com LKML-Reference: <1257849980-22640-3-git-send-email-fujita.tomonori@lab.ntt.co.jp> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel/pci-calgary_64.c')
-rw-r--r--arch/x86/kernel/pci-calgary_64.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/arch/x86/kernel/pci-calgary_64.c b/arch/x86/kernel/pci-calgary_64.c
index 971a3bec47a8..47bd419ea4d2 100644
--- a/arch/x86/kernel/pci-calgary_64.c
+++ b/arch/x86/kernel/pci-calgary_64.c
@@ -46,6 +46,7 @@
46#include <asm/dma.h> 46#include <asm/dma.h>
47#include <asm/rio.h> 47#include <asm/rio.h>
48#include <asm/bios_ebda.h> 48#include <asm/bios_ebda.h>
49#include <asm/x86_init.h>
49 50
50#ifdef CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT 51#ifdef CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT
51int use_calgary __read_mostly = 1; 52int use_calgary __read_mostly = 1;
@@ -1344,6 +1345,8 @@ static void __init get_tce_space_from_tar(void)
1344 return; 1345 return;
1345} 1346}
1346 1347
1348int __init calgary_iommu_init(void);
1349
1347void __init detect_calgary(void) 1350void __init detect_calgary(void)
1348{ 1351{
1349 int bus; 1352 int bus;
@@ -1445,6 +1448,8 @@ void __init detect_calgary(void)
1445 /* swiotlb for devices that aren't behind the Calgary. */ 1448 /* swiotlb for devices that aren't behind the Calgary. */
1446 if (max_pfn > MAX_DMA32_PFN) 1449 if (max_pfn > MAX_DMA32_PFN)
1447 swiotlb = 1; 1450 swiotlb = 1;
1451
1452 x86_init.iommu.iommu_init = calgary_iommu_init;
1448 } 1453 }
1449 return; 1454 return;
1450 1455
@@ -1461,12 +1466,6 @@ int __init calgary_iommu_init(void)
1461{ 1466{
1462 int ret; 1467 int ret;
1463 1468
1464 if (no_iommu || (swiotlb && !calgary_detected))
1465 return -ENODEV;
1466
1467 if (!calgary_detected)
1468 return -ENODEV;
1469
1470 /* ok, we're trying to use Calgary - let's roll */ 1469 /* ok, we're trying to use Calgary - let's roll */
1471 printk(KERN_INFO "PCI-DMA: Using Calgary IOMMU\n"); 1470 printk(KERN_INFO "PCI-DMA: Using Calgary IOMMU\n");
1472 1471