Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 125619
b: refs/heads/master
c: 26961ef
h: refs/heads/master
i:
  125617: 04f841d
  125615: 5cf5466
v: v3
  • Loading branch information
Joerg Roedel committed Jan 3, 2009
1 parent 161f788 commit d8ae37b
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 645c4c8d7289a718c9c828ec217f2b94e3b3e6ff
refs/heads/master: 26961efe0dab9ca73f8fc3b6137b814252e04972
18 changes: 18 additions & 0 deletions trunk/arch/x86/kernel/amd_iommu.c
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@ static DEFINE_RWLOCK(amd_iommu_devtable_lock);
static LIST_HEAD(iommu_pd_list);
static DEFINE_SPINLOCK(iommu_pd_list_lock);

#ifdef CONFIG_IOMMU_API
static struct iommu_ops amd_iommu_ops;
#endif

/*
* general struct to manage commands send to an IOMMU
*/
Expand Down Expand Up @@ -1593,6 +1597,10 @@ int __init amd_iommu_init_dma_ops(void)
/* Make the driver finally visible to the drivers */
dma_ops = &amd_iommu_dma_ops;

#ifdef CONFIG_IOMMU_API
register_iommu(&amd_iommu_ops);
#endif

bus_register_notifier(&pci_bus_type, &device_nb);

return 0;
Expand Down Expand Up @@ -1819,4 +1827,14 @@ static phys_addr_t amd_iommu_iova_to_phys(struct iommu_domain *dom,
return paddr;
}

static struct iommu_ops amd_iommu_ops = {
.domain_init = amd_iommu_domain_init,
.domain_destroy = amd_iommu_domain_destroy,
.attach_dev = amd_iommu_attach_device,
.detach_dev = amd_iommu_detach_device,
.map = amd_iommu_map_range,
.unmap = amd_iommu_unmap_range,
.iova_to_phys = amd_iommu_iova_to_phys,
};

#endif

0 comments on commit d8ae37b

Please sign in to comment.