diff options
Diffstat (limited to 'arch/sparc/include/asm/dma-mapping.h')
| -rw-r--r-- | arch/sparc/include/asm/dma-mapping.h | 145 |
1 files changed, 22 insertions, 123 deletions
diff --git a/arch/sparc/include/asm/dma-mapping.h b/arch/sparc/include/asm/dma-mapping.h index 204e4bf64438..5a8c308e2b5c 100644 --- a/arch/sparc/include/asm/dma-mapping.h +++ b/arch/sparc/include/asm/dma-mapping.h | |||
| @@ -3,6 +3,7 @@ | |||
| 3 | 3 | ||
| 4 | #include <linux/scatterlist.h> | 4 | #include <linux/scatterlist.h> |
| 5 | #include <linux/mm.h> | 5 | #include <linux/mm.h> |
| 6 | #include <linux/dma-debug.h> | ||
| 6 | 7 | ||
| 7 | #define DMA_ERROR_CODE (~(dma_addr_t)0x0) | 8 | #define DMA_ERROR_CODE (~(dma_addr_t)0x0) |
| 8 | 9 | ||
| @@ -13,142 +14,40 @@ extern int dma_set_mask(struct device *dev, u64 dma_mask); | |||
| 13 | #define dma_free_noncoherent(d, s, v, h) dma_free_coherent(d, s, v, h) | 14 | #define dma_free_noncoherent(d, s, v, h) dma_free_coherent(d, s, v, h) |
| 14 | #define dma_is_consistent(d, h) (1) | 15 | #define dma_is_consistent(d, h) (1) |
| 15 | 16 | ||
| 16 | struct dma_ops { | 17 | extern struct dma_map_ops *dma_ops, pci32_dma_ops; |
| 17 | void *(*alloc_coherent)(struct device *dev, size_t size, | 18 | extern struct bus_type pci_bus_type; |
| 18 | dma_addr_t *dma_handle, gfp_t flag); | ||
| 19 | void (*free_coherent)(struct device *dev, size_t size, | ||
| 20 | void *cpu_addr, dma_addr_t dma_handle); | ||
| 21 | dma_addr_t (*map_page)(struct device *dev, struct page *page, | ||
| 22 | unsigned long offset, size_t size, | ||
| 23 | enum dma_data_direction direction); | ||
| 24 | void (*unmap_page)(struct device *dev, dma_addr_t dma_addr, | ||
| 25 | size_t size, | ||
| 26 | enum dma_data_direction direction); | ||
| 27 | int (*map_sg)(struct device *dev, struct scatterlist *sg, int nents, | ||
| 28 | enum dma_data_direction direction); | ||
| 29 | void (*unmap_sg)(struct device *dev, struct scatterlist *sg, | ||
| 30 | int nhwentries, | ||
| 31 | enum dma_data_direction direction); | ||
| 32 | void (*sync_single_for_cpu)(struct device *dev, | ||
| 33 | dma_addr_t dma_handle, size_t size, | ||
| 34 | enum dma_data_direction direction); | ||
| 35 | void (*sync_single_for_device)(struct device *dev, | ||
| 36 | dma_addr_t dma_handle, size_t size, | ||
| 37 | enum dma_data_direction direction); | ||
| 38 | void (*sync_sg_for_cpu)(struct device *dev, struct scatterlist *sg, | ||
| 39 | int nelems, | ||
| 40 | enum dma_data_direction direction); | ||
| 41 | void (*sync_sg_for_device)(struct device *dev, | ||
| 42 | struct scatterlist *sg, int nents, | ||
| 43 | enum dma_data_direction dir); | ||
| 44 | }; | ||
| 45 | extern const struct dma_ops *dma_ops; | ||
| 46 | 19 | ||
| 47 | static inline void *dma_alloc_coherent(struct device *dev, size_t size, | 20 | static inline struct dma_map_ops *get_dma_ops(struct device *dev) |
| 48 | dma_addr_t *dma_handle, gfp_t flag) | ||
| 49 | { | ||
| 50 | return dma_ops->alloc_coherent(dev, size, dma_handle, flag); | ||
| 51 | } | ||
| 52 | |||
| 53 | static inline void dma_free_coherent(struct device *dev, size_t size, | ||
| 54 | void *cpu_addr, dma_addr_t dma_handle) | ||
| 55 | { | ||
| 56 | dma_ops->free_coherent(dev, size, cpu_addr, dma_handle); | ||
| 57 | } | ||
| 58 | |||
| 59 | static inline dma_addr_t dma_map_single(struct device *dev, void *cpu_addr, | ||
| 60 | size_t size, | ||
| 61 | enum dma_data_direction direction) | ||
| 62 | { | ||
| 63 | return dma_ops->map_page(dev, virt_to_page(cpu_addr), | ||
| 64 | (unsigned long)cpu_addr & ~PAGE_MASK, size, | ||
| 65 | direction); | ||
| 66 | } | ||
| 67 | |||
| 68 | static inline void dma_unmap_single(struct device *dev, dma_addr_t dma_addr, | ||
| 69 | size_t size, | ||
| 70 | enum dma_data_direction direction) | ||
| 71 | { | ||
| 72 | dma_ops->unmap_page(dev, dma_addr, size, direction); | ||
| 73 | } | ||
| 74 | |||
| 75 | static inline dma_addr_t dma_map_page(struct device *dev, struct page *page, | ||
| 76 | unsigned long offset, size_t size, | ||
| 77 | enum dma_data_direction direction) | ||
| 78 | { | ||
| 79 | return dma_ops->map_page(dev, page, offset, size, direction); | ||
| 80 | } | ||
| 81 | |||
| 82 | static inline void dma_unmap_page(struct device *dev, dma_addr_t dma_address, | ||
| 83 | size_t size, | ||
| 84 | enum dma_data_direction direction) | ||
| 85 | { | ||
| 86 | dma_ops->unmap_page(dev, dma_address, size, direction); | ||
| 87 | } | ||
| 88 | |||
| 89 | static inline int dma_map_sg(struct device *dev, struct scatterlist *sg, | ||
| 90 | int nents, enum dma_data_direction direction) | ||
| 91 | { | ||
| 92 | return dma_ops->map_sg(dev, sg, nents, direction); | ||
| 93 | } | ||
| 94 | |||
| 95 | static inline void dma_unmap_sg(struct device *dev, struct scatterlist *sg, | ||
| 96 | int nents, enum dma_data_direction direction) | ||
| 97 | { | 21 | { |
| 98 | dma_ops->unmap_sg(dev, sg, nents, direction); | 22 | #if defined(CONFIG_SPARC32) && defined(CONFIG_PCI) |
| 99 | } | 23 | if (dev->bus == &pci_bus_type) |
| 100 | 24 | return &pci32_dma_ops; | |
| 101 | static inline void dma_sync_single_for_cpu(struct device *dev, | 25 | #endif |
| 102 | dma_addr_t dma_handle, size_t size, | 26 | return dma_ops; |
| 103 | enum dma_data_direction direction) | ||
| 104 | { | ||
| 105 | dma_ops->sync_single_for_cpu(dev, dma_handle, size, direction); | ||
| 106 | } | 27 | } |
| 107 | 28 | ||
| 108 | static inline void dma_sync_single_for_device(struct device *dev, | 29 | #include <asm-generic/dma-mapping-common.h> |
| 109 | dma_addr_t dma_handle, | ||
| 110 | size_t size, | ||
| 111 | enum dma_data_direction direction) | ||
| 112 | { | ||
| 113 | if (dma_ops->sync_single_for_device) | ||
| 114 | dma_ops->sync_single_for_device(dev, dma_handle, size, | ||
| 115 | direction); | ||
| 116 | } | ||
| 117 | 30 | ||
| 118 | static inline void dma_sync_sg_for_cpu(struct device *dev, | 31 | static inline void *dma_alloc_coherent(struct device *dev, size_t size, |
| 119 | struct scatterlist *sg, int nelems, | 32 | dma_addr_t *dma_handle, gfp_t flag) |
| 120 | enum dma_data_direction direction) | ||
| 121 | { | 33 | { |
| 122 | dma_ops->sync_sg_for_cpu(dev, sg, nelems, direction); | 34 | struct dma_map_ops *ops = get_dma_ops(dev); |
| 123 | } | 35 | void *cpu_addr; |
| 124 | 36 | ||
| 125 | static inline void dma_sync_sg_for_device(struct device *dev, | 37 | cpu_addr = ops->alloc_coherent(dev, size, dma_handle, flag); |
| 126 | struct scatterlist *sg, int nelems, | 38 | debug_dma_alloc_coherent(dev, size, *dma_handle, cpu_addr); |
| 127 | enum dma_data_direction direction) | 39 | return cpu_addr; |
| 128 | { | ||
| 129 | if (dma_ops->sync_sg_for_device) | ||
| 130 | dma_ops->sync_sg_for_device(dev, sg, nelems, direction); | ||
| 131 | } | 40 | } |
| 132 | 41 | ||
| 133 | static inline void dma_sync_single_range_for_cpu(struct device *dev, | 42 | static inline void dma_free_coherent(struct device *dev, size_t size, |
| 134 | dma_addr_t dma_handle, | 43 | void *cpu_addr, dma_addr_t dma_handle) |
| 135 | unsigned long offset, | ||
| 136 | size_t size, | ||
| 137 | enum dma_data_direction dir) | ||
| 138 | { | 44 | { |
| 139 | dma_sync_single_for_cpu(dev, dma_handle+offset, size, dir); | 45 | struct dma_map_ops *ops = get_dma_ops(dev); |
| 140 | } | ||
| 141 | 46 | ||
| 142 | static inline void dma_sync_single_range_for_device(struct device *dev, | 47 | debug_dma_free_coherent(dev, size, cpu_addr, dma_handle); |
| 143 | dma_addr_t dma_handle, | 48 | ops->free_coherent(dev, size, cpu_addr, dma_handle); |
| 144 | unsigned long offset, | ||
| 145 | size_t size, | ||
| 146 | enum dma_data_direction dir) | ||
| 147 | { | ||
| 148 | dma_sync_single_for_device(dev, dma_handle+offset, size, dir); | ||
| 149 | } | 49 | } |
| 150 | 50 | ||
| 151 | |||
| 152 | static inline int dma_mapping_error(struct device *dev, dma_addr_t dma_addr) | 51 | static inline int dma_mapping_error(struct device *dev, dma_addr_t dma_addr) |
| 153 | { | 52 | { |
| 154 | return (dma_addr == DMA_ERROR_CODE); | 53 | return (dma_addr == DMA_ERROR_CODE); |
