Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Stephen Rothwell | 78b0973 | 2005-11-19 01:40:46 +1100 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2004 IBM |
| 4 | * |
| 5 | * Implements the generic device dma API for powerpc. |
| 6 | * the pci and vio busses |
| 7 | */ |
| 8 | #ifndef _ASM_DMA_MAPPING_H |
| 9 | #define _ASM_DMA_MAPPING_H |
Anton Blanchard | 33ff910 | 2007-10-16 14:54:33 -0500 | [diff] [blame] | 10 | #ifdef __KERNEL__ |
| 11 | |
| 12 | #include <linux/types.h> |
| 13 | #include <linux/cache.h> |
| 14 | /* need struct page definitions */ |
| 15 | #include <linux/mm.h> |
| 16 | #include <linux/scatterlist.h> |
FUJITA Tomonori | 46bab4e | 2009-08-04 19:08:26 +0000 | [diff] [blame] | 17 | #include <linux/dma-debug.h> |
Anton Blanchard | 33ff910 | 2007-10-16 14:54:33 -0500 | [diff] [blame] | 18 | #include <asm/io.h> |
Becky Bruce | ec3cf2e | 2009-05-14 12:42:28 +0000 | [diff] [blame] | 19 | #include <asm/swiotlb.h> |
Anton Blanchard | 33ff910 | 2007-10-16 14:54:33 -0500 | [diff] [blame] | 20 | |
Becky Bruce | ec3cf2e | 2009-05-14 12:42:28 +0000 | [diff] [blame] | 21 | /* Some dma direct funcs must be visible for use in other dma_ops */ |
Christoph Hellwig | 2d9d6f6 | 2017-12-22 10:58:24 +0100 | [diff] [blame] | 22 | extern void *__dma_nommu_alloc_coherent(struct device *dev, size_t size, |
Benjamin Herrenschmidt | 817820b | 2015-06-24 15:25:31 +1000 | [diff] [blame] | 23 | dma_addr_t *dma_handle, gfp_t flag, |
Krzysztof Kozlowski | 00085f1 | 2016-08-03 13:46:00 -0700 | [diff] [blame] | 24 | unsigned long attrs); |
Christoph Hellwig | 2d9d6f6 | 2017-12-22 10:58:24 +0100 | [diff] [blame] | 25 | extern void __dma_nommu_free_coherent(struct device *dev, size_t size, |
Benjamin Herrenschmidt | 817820b | 2015-06-24 15:25:31 +1000 | [diff] [blame] | 26 | void *vaddr, dma_addr_t dma_handle, |
Krzysztof Kozlowski | 00085f1 | 2016-08-03 13:46:00 -0700 | [diff] [blame] | 27 | unsigned long attrs); |
Christoph Hellwig | 2d9d6f6 | 2017-12-22 10:58:24 +0100 | [diff] [blame] | 28 | extern int dma_nommu_mmap_coherent(struct device *dev, |
Marek Szyprowski | 64ccc9c | 2012-06-14 13:03:04 +0200 | [diff] [blame] | 29 | struct vm_area_struct *vma, |
| 30 | void *cpu_addr, dma_addr_t handle, |
Krzysztof Kozlowski | 00085f1 | 2016-08-03 13:46:00 -0700 | [diff] [blame] | 31 | size_t size, unsigned long attrs); |
Becky Bruce | ec3cf2e | 2009-05-14 12:42:28 +0000 | [diff] [blame] | 32 | |
Anton Blanchard | 33ff910 | 2007-10-16 14:54:33 -0500 | [diff] [blame] | 33 | #ifdef CONFIG_NOT_COHERENT_CACHE |
| 34 | /* |
| 35 | * DMA-consistent mapping functions for PowerPCs that don't support |
| 36 | * cache snooping. These allocate/free a region of uncached mapped |
| 37 | * memory space for use with DMA devices. Alternatively, you could |
| 38 | * allocate the space "normally" and use the cache management functions |
| 39 | * to ensure it is consistent. |
| 40 | */ |
Benjamin Herrenschmidt | 8b31e49 | 2009-05-27 13:50:33 +1000 | [diff] [blame] | 41 | struct device; |
| 42 | extern void *__dma_alloc_coherent(struct device *dev, size_t size, |
| 43 | dma_addr_t *handle, gfp_t gfp); |
Anton Blanchard | 33ff910 | 2007-10-16 14:54:33 -0500 | [diff] [blame] | 44 | extern void __dma_free_coherent(size_t size, void *vaddr); |
| 45 | extern void __dma_sync(void *vaddr, size_t size, int direction); |
| 46 | extern void __dma_sync_page(struct page *page, unsigned long offset, |
| 47 | size_t size, int direction); |
Benjamin Herrenschmidt | 6090912 | 2011-03-24 20:50:06 +0000 | [diff] [blame] | 48 | extern unsigned long __dma_get_coherent_pfn(unsigned long cpu_addr); |
Anton Blanchard | 33ff910 | 2007-10-16 14:54:33 -0500 | [diff] [blame] | 49 | |
| 50 | #else /* ! CONFIG_NOT_COHERENT_CACHE */ |
| 51 | /* |
| 52 | * Cache coherent cores. |
| 53 | */ |
| 54 | |
Benjamin Herrenschmidt | 8b31e49 | 2009-05-27 13:50:33 +1000 | [diff] [blame] | 55 | #define __dma_alloc_coherent(dev, gfp, size, handle) NULL |
Anton Blanchard | 33ff910 | 2007-10-16 14:54:33 -0500 | [diff] [blame] | 56 | #define __dma_free_coherent(size, addr) ((void)0) |
| 57 | #define __dma_sync(addr, size, rw) ((void)0) |
| 58 | #define __dma_sync_page(pg, off, sz, rw) ((void)0) |
| 59 | |
| 60 | #endif /* ! CONFIG_NOT_COHERENT_CACHE */ |
| 61 | |
Mark Nelson | 3a4c6f0 | 2008-07-05 05:05:45 +1000 | [diff] [blame] | 62 | static inline unsigned long device_to_mask(struct device *dev) |
| 63 | { |
| 64 | if (dev->dma_mask && *dev->dma_mask) |
| 65 | return *dev->dma_mask; |
| 66 | /* Assume devices without mask can take 32 bit addresses */ |
| 67 | return 0xfffffffful; |
| 68 | } |
| 69 | |
Anton Blanchard | 33ff910 | 2007-10-16 14:54:33 -0500 | [diff] [blame] | 70 | /* |
Becky Bruce | 4fc665b | 2008-09-12 10:34:46 +0000 | [diff] [blame] | 71 | * Available generic sets of operations |
| 72 | */ |
| 73 | #ifdef CONFIG_PPC64 |
FUJITA Tomonori | 45223c5 | 2009-08-04 19:08:25 +0000 | [diff] [blame] | 74 | extern struct dma_map_ops dma_iommu_ops; |
Becky Bruce | 4fc665b | 2008-09-12 10:34:46 +0000 | [diff] [blame] | 75 | #endif |
Christoph Hellwig | 2d9d6f6 | 2017-12-22 10:58:24 +0100 | [diff] [blame] | 76 | extern const struct dma_map_ops dma_nommu_ops; |
Becky Bruce | 4fc665b | 2008-09-12 10:34:46 +0000 | [diff] [blame] | 77 | |
Bart Van Assche | 815dd18 | 2017-01-20 13:04:04 -0800 | [diff] [blame] | 78 | static inline const struct dma_map_ops *get_arch_dma_ops(struct bus_type *bus) |
Anton Blanchard | 33ff910 | 2007-10-16 14:54:33 -0500 | [diff] [blame] | 79 | { |
| 80 | /* We don't handle the NULL dev case for ISA for now. We could |
| 81 | * do it via an out of line call but it is not needed for now. The |
| 82 | * only ISA DMA device we support is the floppy and we have a hack |
| 83 | * in the floppy driver directly to get a device for us. |
| 84 | */ |
Bart Van Assche | 815dd18 | 2017-01-20 13:04:04 -0800 | [diff] [blame] | 85 | return NULL; |
Anton Blanchard | 33ff910 | 2007-10-16 14:54:33 -0500 | [diff] [blame] | 86 | } |
| 87 | |
Becky Bruce | 1cebd7a | 2009-09-21 08:26:34 +0000 | [diff] [blame] | 88 | /* |
| 89 | * get_dma_offset() |
| 90 | * |
| 91 | * Get the dma offset on configurations where the dma address can be determined |
| 92 | * from the physical address by looking at a simple offset. Direct dma and |
| 93 | * swiotlb use this function, but it is typically not used by implementations |
| 94 | * with an iommu. |
| 95 | */ |
Becky Bruce | 738ef42 | 2009-09-21 08:26:35 +0000 | [diff] [blame] | 96 | static inline dma_addr_t get_dma_offset(struct device *dev) |
Becky Bruce | 1cebd7a | 2009-09-21 08:26:34 +0000 | [diff] [blame] | 97 | { |
| 98 | if (dev) |
Benjamin Herrenschmidt | 2db4928 | 2015-06-24 15:25:22 +1000 | [diff] [blame] | 99 | return dev->archdata.dma_offset; |
Becky Bruce | 1cebd7a | 2009-09-21 08:26:34 +0000 | [diff] [blame] | 100 | |
| 101 | return PCI_DRAM_OFFSET; |
| 102 | } |
| 103 | |
Becky Bruce | 738ef42 | 2009-09-21 08:26:35 +0000 | [diff] [blame] | 104 | static inline void set_dma_offset(struct device *dev, dma_addr_t off) |
| 105 | { |
| 106 | if (dev) |
Benjamin Herrenschmidt | 2db4928 | 2015-06-24 15:25:22 +1000 | [diff] [blame] | 107 | dev->archdata.dma_offset = off; |
Becky Bruce | 738ef42 | 2009-09-21 08:26:35 +0000 | [diff] [blame] | 108 | } |
| 109 | |
Christoph Hellwig | 452e06a | 2015-09-09 15:39:53 -0700 | [diff] [blame] | 110 | #define HAVE_ARCH_DMA_SET_MASK 1 |
| 111 | extern int dma_set_mask(struct device *dev, u64 dma_mask); |
| 112 | |
Gavin Shan | fe7e85c | 2014-09-30 12:39:10 +1000 | [diff] [blame] | 113 | extern u64 __dma_get_required_mask(struct device *dev); |
Anton Blanchard | 33ff910 | 2007-10-16 14:54:33 -0500 | [diff] [blame] | 114 | |
Benjamin Herrenschmidt | 6090912 | 2011-03-24 20:50:06 +0000 | [diff] [blame] | 115 | #define ARCH_HAS_DMA_MMAP_COHERENT |
| 116 | |
Arnd Bergmann | 88ced03 | 2005-12-16 22:43:46 +0100 | [diff] [blame] | 117 | #endif /* __KERNEL__ */ |
Stephen Rothwell | 78b0973 | 2005-11-19 01:40:46 +1100 | [diff] [blame] | 118 | #endif /* _ASM_DMA_MAPPING_H */ |