1 /* SPDX-License-Identifier: GPL-2.0 */ 2 /* 3 * This header is for implementations of dma_map_ops and related code. 4 * It should not be included in drivers just using the DMA API. 5 */ 6 #ifndef _LINUX_DMA_MAP_OPS_H 7 #define _LINUX_DMA_MAP_OPS_H 8 9 #include <linux/dma-mapping.h> 10 #include <linux/pgtable.h> 11 12 struct cma; 13 14 struct dma_map_ops { 15 void *(*alloc)(struct device *dev, size_t size, 16 dma_addr_t *dma_handle, gfp_t gfp, 17 unsigned long attrs); 18 void (*free)(struct device *dev, size_t size, void *vaddr, 19 dma_addr_t dma_handle, unsigned long attrs); 20 struct page *(*alloc_pages)(struct device *dev, size_t size, 21 dma_addr_t *dma_handle, enum dma_data_direction dir, 22 gfp_t gfp); 23 void (*free_pages)(struct device *dev, size_t size, struct page *vaddr, 24 dma_addr_t dma_handle, enum dma_data_direction dir); 25 struct sg_table *(*alloc_noncontiguous)(struct device *dev, size_t size, 26 enum dma_data_direction dir, gfp_t gfp, 27 unsigned long attrs); 28 void (*free_noncontiguous)(struct device *dev, size_t size, 29 struct sg_table *sgt, enum dma_data_direction dir); 30 int (*mmap)(struct device *, struct vm_area_struct *, 31 void *, dma_addr_t, size_t, unsigned long attrs); 32 33 int (*get_sgtable)(struct device *dev, struct sg_table *sgt, 34 void *cpu_addr, dma_addr_t dma_addr, size_t size, 35 unsigned long attrs); 36 37 dma_addr_t (*map_page)(struct device *dev, struct page *page, 38 unsigned long offset, size_t size, 39 enum dma_data_direction dir, unsigned long attrs); 40 void (*unmap_page)(struct device *dev, dma_addr_t dma_handle, 41 size_t size, enum dma_data_direction dir, 42 unsigned long attrs); 43 /* 44 * map_sg should return a negative error code on error. See 45 * dma_map_sgtable() for a list of appropriate error codes 46 * and their meanings. 47 */ 48 int (*map_sg)(struct device *dev, struct scatterlist *sg, int nents, 49 enum dma_data_direction dir, unsigned long attrs); 50 void (*unmap_sg)(struct device *dev, struct scatterlist *sg, int nents, 51 enum dma_data_direction dir, unsigned long attrs); 52 dma_addr_t (*map_resource)(struct device *dev, phys_addr_t phys_addr, 53 size_t size, enum dma_data_direction dir, 54 unsigned long attrs); 55 void (*unmap_resource)(struct device *dev, dma_addr_t dma_handle, 56 size_t size, enum dma_data_direction dir, 57 unsigned long attrs); 58 void (*sync_single_for_cpu)(struct device *dev, dma_addr_t dma_handle, 59 size_t size, enum dma_data_direction dir); 60 void (*sync_single_for_device)(struct device *dev, 61 dma_addr_t dma_handle, size_t size, 62 enum dma_data_direction dir); 63 void (*sync_sg_for_cpu)(struct device *dev, struct scatterlist *sg, 64 int nents, enum dma_data_direction dir); 65 void (*sync_sg_for_device)(struct device *dev, struct scatterlist *sg, 66 int nents, enum dma_data_direction dir); 67 void (*cache_sync)(struct device *dev, void *vaddr, size_t size, 68 enum dma_data_direction direction); 69 int (*dma_supported)(struct device *dev, u64 mask); 70 u64 (*get_required_mask)(struct device *dev); 71 size_t (*max_mapping_size)(struct device *dev); 72 unsigned long (*get_merge_boundary)(struct device *dev); 73 }; 74 75 #ifdef CONFIG_DMA_OPS 76 #include <asm/dma-mapping.h> 77 78 static inline const struct dma_map_ops *get_dma_ops(struct device *dev) 79 { 80 if (dev->dma_ops) 81 return dev->dma_ops; 82 return get_arch_dma_ops(dev->bus); 83 } 84 85 static inline void set_dma_ops(struct device *dev, 86 const struct dma_map_ops *dma_ops) 87 { 88 dev->dma_ops = dma_ops; 89 } 90 #else /* CONFIG_DMA_OPS */ 91 static inline const struct dma_map_ops *get_dma_ops(struct device *dev) 92 { 93 return NULL; 94 } 95 static inline void set_dma_ops(struct device *dev, 96 const struct dma_map_ops *dma_ops) 97 { 98 } 99 #endif /* CONFIG_DMA_OPS */ 100 101 #ifdef CONFIG_DMA_CMA 102 extern struct cma *dma_contiguous_default_area; 103 104 static inline struct cma *dev_get_cma_area(struct device *dev) 105 { 106 if (dev && dev->cma_area) 107 return dev->cma_area; 108 return dma_contiguous_default_area; 109 } 110 111 void dma_contiguous_reserve(phys_addr_t addr_limit); 112 int __init dma_contiguous_reserve_area(phys_addr_t size, phys_addr_t base, 113 phys_addr_t limit, struct cma **res_cma, bool fixed); 114 115 struct page *dma_alloc_from_contiguous(struct device *dev, size_t count, 116 unsigned int order, bool no_warn); 117 bool dma_release_from_contiguous(struct device *dev, struct page *pages, 118 int count); 119 struct page *dma_alloc_contiguous(struct device *dev, size_t size, gfp_t gfp); 120 void dma_free_contiguous(struct device *dev, struct page *page, size_t size); 121 122 void dma_contiguous_early_fixup(phys_addr_t base, unsigned long size); 123 #else /* CONFIG_DMA_CMA */ 124 static inline struct cma *dev_get_cma_area(struct device *dev) 125 { 126 return NULL; 127 } 128 static inline void dma_contiguous_reserve(phys_addr_t limit) 129 { 130 } 131 static inline int dma_contiguous_reserve_area(phys_addr_t size, 132 phys_addr_t base, phys_addr_t limit, struct cma **res_cma, 133 bool fixed) 134 { 135 return -ENOSYS; 136 } 137 static inline struct page *dma_alloc_from_contiguous(struct device *dev, 138 size_t count, unsigned int order, bool no_warn) 139 { 140 return NULL; 141 } 142 static inline bool dma_release_from_contiguous(struct device *dev, 143 struct page *pages, int count) 144 { 145 return false; 146 } 147 /* Use fallback alloc() and free() when CONFIG_DMA_CMA=n */ 148 static inline struct page *dma_alloc_contiguous(struct device *dev, size_t size, 149 gfp_t gfp) 150 { 151 return NULL; 152 } 153 static inline void dma_free_contiguous(struct device *dev, struct page *page, 154 size_t size) 155 { 156 __free_pages(page, get_order(size)); 157 } 158 #endif /* CONFIG_DMA_CMA*/ 159 160 #ifdef CONFIG_DMA_PERNUMA_CMA 161 void dma_pernuma_cma_reserve(void); 162 #else 163 static inline void dma_pernuma_cma_reserve(void) { } 164 #endif /* CONFIG_DMA_PERNUMA_CMA */ 165 166 #ifdef CONFIG_DMA_DECLARE_COHERENT 167 int dma_declare_coherent_memory(struct device *dev, phys_addr_t phys_addr, 168 dma_addr_t device_addr, size_t size); 169 void dma_release_coherent_memory(struct device *dev); 170 int dma_alloc_from_dev_coherent(struct device *dev, ssize_t size, 171 dma_addr_t *dma_handle, void **ret); 172 int dma_release_from_dev_coherent(struct device *dev, int order, void *vaddr); 173 int dma_mmap_from_dev_coherent(struct device *dev, struct vm_area_struct *vma, 174 void *cpu_addr, size_t size, int *ret); 175 #else 176 static inline int dma_declare_coherent_memory(struct device *dev, 177 phys_addr_t phys_addr, dma_addr_t device_addr, size_t size) 178 { 179 return -ENOSYS; 180 } 181 182 #define dma_alloc_from_dev_coherent(dev, size, handle, ret) (0) 183 #define dma_release_from_dev_coherent(dev, order, vaddr) (0) 184 #define dma_mmap_from_dev_coherent(dev, vma, vaddr, order, ret) (0) 185 static inline void dma_release_coherent_memory(struct device *dev) { } 186 #endif /* CONFIG_DMA_DECLARE_COHERENT */ 187 188 #ifdef CONFIG_DMA_GLOBAL_POOL 189 void *dma_alloc_from_global_coherent(struct device *dev, ssize_t size, 190 dma_addr_t *dma_handle); 191 int dma_release_from_global_coherent(int order, void *vaddr); 192 int dma_mmap_from_global_coherent(struct vm_area_struct *vma, void *cpu_addr, 193 size_t size, int *ret); 194 int dma_init_global_coherent(phys_addr_t phys_addr, size_t size); 195 #else 196 static inline void *dma_alloc_from_global_coherent(struct device *dev, 197 ssize_t size, dma_addr_t *dma_handle) 198 { 199 return NULL; 200 } 201 static inline int dma_release_from_global_coherent(int order, void *vaddr) 202 { 203 return 0; 204 } 205 static inline int dma_mmap_from_global_coherent(struct vm_area_struct *vma, 206 void *cpu_addr, size_t size, int *ret) 207 { 208 return 0; 209 } 210 #endif /* CONFIG_DMA_GLOBAL_POOL */ 211 212 /* 213 * This is the actual return value from the ->alloc_noncontiguous method. 214 * The users of the DMA API should only care about the sg_table, but to make 215 * the DMA-API internal vmaping and freeing easier we stash away the page 216 * array as well (except for the fallback case). This can go away any time, 217 * e.g. when a vmap-variant that takes a scatterlist comes along. 218 */ 219 struct dma_sgt_handle { 220 struct sg_table sgt; 221 struct page **pages; 222 }; 223 #define sgt_handle(sgt) \ 224 container_of((sgt), struct dma_sgt_handle, sgt) 225 226 int dma_common_get_sgtable(struct device *dev, struct sg_table *sgt, 227 void *cpu_addr, dma_addr_t dma_addr, size_t size, 228 unsigned long attrs); 229 int dma_common_mmap(struct device *dev, struct vm_area_struct *vma, 230 void *cpu_addr, dma_addr_t dma_addr, size_t size, 231 unsigned long attrs); 232 struct page *dma_common_alloc_pages(struct device *dev, size_t size, 233 dma_addr_t *dma_handle, enum dma_data_direction dir, gfp_t gfp); 234 void dma_common_free_pages(struct device *dev, size_t size, struct page *vaddr, 235 dma_addr_t dma_handle, enum dma_data_direction dir); 236 237 struct page **dma_common_find_pages(void *cpu_addr); 238 void *dma_common_contiguous_remap(struct page *page, size_t size, pgprot_t prot, 239 const void *caller); 240 void *dma_common_pages_remap(struct page **pages, size_t size, pgprot_t prot, 241 const void *caller); 242 void dma_common_free_remap(void *cpu_addr, size_t size); 243 244 struct page *dma_alloc_from_pool(struct device *dev, size_t size, 245 void **cpu_addr, gfp_t flags, 246 bool (*phys_addr_ok)(struct device *, phys_addr_t, size_t)); 247 bool dma_free_from_pool(struct device *dev, void *start, size_t size); 248 249 int dma_direct_set_offset(struct device *dev, phys_addr_t cpu_start, 250 dma_addr_t dma_start, u64 size); 251 252 #if defined(CONFIG_ARCH_HAS_SYNC_DMA_FOR_DEVICE) || \ 253 defined(CONFIG_ARCH_HAS_SYNC_DMA_FOR_CPU) || \ 254 defined(CONFIG_ARCH_HAS_SYNC_DMA_FOR_CPU_ALL) 255 extern bool dma_default_coherent; 256 static inline bool dev_is_dma_coherent(struct device *dev) 257 { 258 return dev->dma_coherent; 259 } 260 #else 261 static inline bool dev_is_dma_coherent(struct device *dev) 262 { 263 return true; 264 } 265 #endif /* CONFIG_ARCH_HAS_DMA_COHERENCE_H */ 266 267 void *arch_dma_alloc(struct device *dev, size_t size, dma_addr_t *dma_handle, 268 gfp_t gfp, unsigned long attrs); 269 void arch_dma_free(struct device *dev, size_t size, void *cpu_addr, 270 dma_addr_t dma_addr, unsigned long attrs); 271 272 #ifdef CONFIG_MMU 273 /* 274 * Page protection so that devices that can't snoop CPU caches can use the 275 * memory coherently. We default to pgprot_noncached which is usually used 276 * for ioremap as a safe bet, but architectures can override this with less 277 * strict semantics if possible. 278 */ 279 #ifndef pgprot_dmacoherent 280 #define pgprot_dmacoherent(prot) pgprot_noncached(prot) 281 #endif 282 283 pgprot_t dma_pgprot(struct device *dev, pgprot_t prot, unsigned long attrs); 284 #else 285 static inline pgprot_t dma_pgprot(struct device *dev, pgprot_t prot, 286 unsigned long attrs) 287 { 288 return prot; /* no protection bits supported without page tables */ 289 } 290 #endif /* CONFIG_MMU */ 291 292 #ifdef CONFIG_ARCH_HAS_SYNC_DMA_FOR_DEVICE 293 void arch_sync_dma_for_device(phys_addr_t paddr, size_t size, 294 enum dma_data_direction dir); 295 #else 296 static inline void arch_sync_dma_for_device(phys_addr_t paddr, size_t size, 297 enum dma_data_direction dir) 298 { 299 } 300 #endif /* ARCH_HAS_SYNC_DMA_FOR_DEVICE */ 301 302 #ifdef CONFIG_ARCH_HAS_SYNC_DMA_FOR_CPU 303 void arch_sync_dma_for_cpu(phys_addr_t paddr, size_t size, 304 enum dma_data_direction dir); 305 #else 306 static inline void arch_sync_dma_for_cpu(phys_addr_t paddr, size_t size, 307 enum dma_data_direction dir) 308 { 309 } 310 #endif /* ARCH_HAS_SYNC_DMA_FOR_CPU */ 311 312 #ifdef CONFIG_ARCH_HAS_SYNC_DMA_FOR_CPU_ALL 313 void arch_sync_dma_for_cpu_all(void); 314 #else 315 static inline void arch_sync_dma_for_cpu_all(void) 316 { 317 } 318 #endif /* CONFIG_ARCH_HAS_SYNC_DMA_FOR_CPU_ALL */ 319 320 #ifdef CONFIG_ARCH_HAS_DMA_PREP_COHERENT 321 void arch_dma_prep_coherent(struct page *page, size_t size); 322 #else 323 static inline void arch_dma_prep_coherent(struct page *page, size_t size) 324 { 325 } 326 #endif /* CONFIG_ARCH_HAS_DMA_PREP_COHERENT */ 327 328 #ifdef CONFIG_ARCH_HAS_DMA_MARK_CLEAN 329 void arch_dma_mark_clean(phys_addr_t paddr, size_t size); 330 #else 331 static inline void arch_dma_mark_clean(phys_addr_t paddr, size_t size) 332 { 333 } 334 #endif /* ARCH_HAS_DMA_MARK_CLEAN */ 335 336 void *arch_dma_set_uncached(void *addr, size_t size); 337 void arch_dma_clear_uncached(void *addr, size_t size); 338 339 #ifdef CONFIG_ARCH_HAS_DMA_MAP_DIRECT 340 bool arch_dma_map_page_direct(struct device *dev, phys_addr_t addr); 341 bool arch_dma_unmap_page_direct(struct device *dev, dma_addr_t dma_handle); 342 bool arch_dma_map_sg_direct(struct device *dev, struct scatterlist *sg, 343 int nents); 344 bool arch_dma_unmap_sg_direct(struct device *dev, struct scatterlist *sg, 345 int nents); 346 #else 347 #define arch_dma_map_page_direct(d, a) (false) 348 #define arch_dma_unmap_page_direct(d, a) (false) 349 #define arch_dma_map_sg_direct(d, s, n) (false) 350 #define arch_dma_unmap_sg_direct(d, s, n) (false) 351 #endif 352 353 #ifdef CONFIG_ARCH_HAS_SETUP_DMA_OPS 354 void arch_setup_dma_ops(struct device *dev, u64 dma_base, u64 size, 355 const struct iommu_ops *iommu, bool coherent); 356 #else 357 static inline void arch_setup_dma_ops(struct device *dev, u64 dma_base, 358 u64 size, const struct iommu_ops *iommu, bool coherent) 359 { 360 } 361 #endif /* CONFIG_ARCH_HAS_SETUP_DMA_OPS */ 362 363 #ifdef CONFIG_ARCH_HAS_TEARDOWN_DMA_OPS 364 void arch_teardown_dma_ops(struct device *dev); 365 #else 366 static inline void arch_teardown_dma_ops(struct device *dev) 367 { 368 } 369 #endif /* CONFIG_ARCH_HAS_TEARDOWN_DMA_OPS */ 370 371 #ifdef CONFIG_DMA_API_DEBUG 372 void dma_debug_add_bus(struct bus_type *bus); 373 void debug_dma_dump_mappings(struct device *dev); 374 #else 375 static inline void dma_debug_add_bus(struct bus_type *bus) 376 { 377 } 378 static inline void debug_dma_dump_mappings(struct device *dev) 379 { 380 } 381 #endif /* CONFIG_DMA_API_DEBUG */ 382 383 extern const struct dma_map_ops dma_dummy_ops; 384 385 #endif /* _LINUX_DMA_MAP_OPS_H */ 386