-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 138999 b: refs/heads/master c: 0a0c516 h: refs/heads/master i: 138997: b7b4ea9 138995: 99d35c6 138991: 6fb7562 v: v3
- Loading branch information
Rafael J. Wysocki
committed
Mar 30, 2009
1 parent
e710187
commit eae1bed
Showing
118 changed files
with
5,022 additions
and
32,582 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 93c36ed8348934b462044d2d60ab345055318933 | ||
refs/heads/master: 0a0c5168df270a50e3518e4f12bddb31f8f5f38f |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
#include <linux/types.h> | ||
#include <linux/kernel.h> | ||
#include <linux/module.h> | ||
#include <linux/intel-iommu.h> | ||
|
||
void * | ||
vtd_alloc_coherent(struct device *dev, size_t size, dma_addr_t *dma_handle, | ||
gfp_t flags) | ||
{ | ||
return intel_alloc_coherent(dev, size, dma_handle, flags); | ||
} | ||
EXPORT_SYMBOL_GPL(vtd_alloc_coherent); | ||
|
||
void | ||
vtd_free_coherent(struct device *dev, size_t size, void *vaddr, | ||
dma_addr_t dma_handle) | ||
{ | ||
intel_free_coherent(dev, size, vaddr, dma_handle); | ||
} | ||
EXPORT_SYMBOL_GPL(vtd_free_coherent); | ||
|
||
dma_addr_t | ||
vtd_map_single_attrs(struct device *dev, void *addr, size_t size, | ||
int dir, struct dma_attrs *attrs) | ||
{ | ||
return intel_map_single(dev, (phys_addr_t)addr, size, dir); | ||
} | ||
EXPORT_SYMBOL_GPL(vtd_map_single_attrs); | ||
|
||
void | ||
vtd_unmap_single_attrs(struct device *dev, dma_addr_t iova, size_t size, | ||
int dir, struct dma_attrs *attrs) | ||
{ | ||
intel_unmap_single(dev, iova, size, dir); | ||
} | ||
EXPORT_SYMBOL_GPL(vtd_unmap_single_attrs); | ||
|
||
int | ||
vtd_map_sg_attrs(struct device *dev, struct scatterlist *sglist, int nents, | ||
int dir, struct dma_attrs *attrs) | ||
{ | ||
return intel_map_sg(dev, sglist, nents, dir); | ||
} | ||
EXPORT_SYMBOL_GPL(vtd_map_sg_attrs); | ||
|
||
void | ||
vtd_unmap_sg_attrs(struct device *dev, struct scatterlist *sglist, | ||
int nents, int dir, struct dma_attrs *attrs) | ||
{ | ||
intel_unmap_sg(dev, sglist, nents, dir); | ||
} | ||
EXPORT_SYMBOL_GPL(vtd_unmap_sg_attrs); | ||
|
||
int | ||
vtd_dma_mapping_error(struct device *dev, dma_addr_t dma_addr) | ||
{ | ||
return 0; | ||
} | ||
EXPORT_SYMBOL_GPL(vtd_dma_mapping_error); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.