Glauber Costa | 6f53663 | 2008-03-25 18:36:20 -0300 | [diff] [blame^] | 1 | #ifndef _ASM_DMA_MAPPING_H_ |
| 2 | #define _ASM_DMA_MAPPING_H_ |
| 3 | |
| 4 | /* |
| 5 | * IOMMU interface. See Documentation/DMA-mapping.txt and DMA-API.txt for |
| 6 | * documentation. |
| 7 | */ |
| 8 | |
| 9 | #include <linux/scatterlist.h> |
| 10 | #include <asm/io.h> |
| 11 | #include <asm/swiotlb.h> |
| 12 | |
| 13 | struct dma_mapping_ops { |
| 14 | int (*mapping_error)(dma_addr_t dma_addr); |
| 15 | void* (*alloc_coherent)(struct device *dev, size_t size, |
| 16 | dma_addr_t *dma_handle, gfp_t gfp); |
| 17 | void (*free_coherent)(struct device *dev, size_t size, |
| 18 | void *vaddr, dma_addr_t dma_handle); |
| 19 | dma_addr_t (*map_single)(struct device *hwdev, void *ptr, |
| 20 | size_t size, int direction); |
| 21 | /* like map_single, but doesn't check the device mask */ |
| 22 | dma_addr_t (*map_simple)(struct device *hwdev, char *ptr, |
| 23 | size_t size, int direction); |
| 24 | void (*unmap_single)(struct device *dev, dma_addr_t addr, |
| 25 | size_t size, int direction); |
| 26 | void (*sync_single_for_cpu)(struct device *hwdev, |
| 27 | dma_addr_t dma_handle, size_t size, |
| 28 | int direction); |
| 29 | void (*sync_single_for_device)(struct device *hwdev, |
| 30 | dma_addr_t dma_handle, size_t size, |
| 31 | int direction); |
| 32 | void (*sync_single_range_for_cpu)(struct device *hwdev, |
| 33 | dma_addr_t dma_handle, unsigned long offset, |
| 34 | size_t size, int direction); |
| 35 | void (*sync_single_range_for_device)(struct device *hwdev, |
| 36 | dma_addr_t dma_handle, unsigned long offset, |
| 37 | size_t size, int direction); |
| 38 | void (*sync_sg_for_cpu)(struct device *hwdev, |
| 39 | struct scatterlist *sg, int nelems, |
| 40 | int direction); |
| 41 | void (*sync_sg_for_device)(struct device *hwdev, |
| 42 | struct scatterlist *sg, int nelems, |
| 43 | int direction); |
| 44 | int (*map_sg)(struct device *hwdev, struct scatterlist *sg, |
| 45 | int nents, int direction); |
| 46 | void (*unmap_sg)(struct device *hwdev, |
| 47 | struct scatterlist *sg, int nents, |
| 48 | int direction); |
| 49 | int (*dma_supported)(struct device *hwdev, u64 mask); |
| 50 | int is_phys; |
| 51 | }; |
| 52 | |
Thomas Gleixner | 96a388d | 2007-10-11 11:20:03 +0200 | [diff] [blame] | 53 | #ifdef CONFIG_X86_32 |
| 54 | # include "dma-mapping_32.h" |
| 55 | #else |
| 56 | # include "dma-mapping_64.h" |
| 57 | #endif |
Glauber Costa | 6f53663 | 2008-03-25 18:36:20 -0300 | [diff] [blame^] | 58 | |
| 59 | #endif |