Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 138876
b: refs/heads/master
c: 98c382b
h: refs/heads/master
v: v3
  • Loading branch information
FUJITA Tomonori authored and Ingo Molnar committed Jan 6, 2009
1 parent 21917c0 commit 22bbdef
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: 917f69b8b74e0b3283fcd1f2885949847d787d24
refs/heads/master: 98c382bca9382128b2dbc2108a4c77d667d87abc
18 changes: 18 additions & 0 deletions trunk/arch/ia64/dig/dig_vtd_iommu.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#include <linux/types.h>
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/dma-mapping.h>
#include <linux/intel-iommu.h>

void *
Expand Down Expand Up @@ -57,3 +58,20 @@ vtd_dma_mapping_error(struct device *dev, dma_addr_t dma_addr)
return 0;
}
EXPORT_SYMBOL_GPL(vtd_dma_mapping_error);

extern int iommu_dma_supported(struct device *dev, u64 mask);

struct dma_mapping_ops vtd_dma_ops = {
.alloc_coherent = vtd_alloc_coherent,
.free_coherent = vtd_free_coherent,
.map_single_attrs = vtd_map_single_attrs,
.unmap_single_attrs = vtd_unmap_single_attrs,
.map_sg_attrs = vtd_map_sg_attrs,
.unmap_sg_attrs = vtd_unmap_sg_attrs,
.sync_single_for_cpu = machvec_dma_sync_single,
.sync_sg_for_cpu = machvec_dma_sync_sg,
.sync_single_for_device = machvec_dma_sync_single,
.sync_sg_for_device = machvec_dma_sync_sg,
.dma_supported_op = iommu_dma_supported,
.mapping_error = vtd_dma_mapping_error,
};

0 comments on commit 22bbdef

Please sign in to comment.