]> asedeno.scripts.mit.edu Git - linux.git/blob - arch/powerpc/include/asm/dma-mapping.h
93e57e28be289b0ae5d5308ff3f63f2b32296bfb
[linux.git] / arch / powerpc / include / asm / dma-mapping.h
1 /* SPDX-License-Identifier: GPL-2.0 */
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
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>
17 #include <linux/dma-debug.h>
18 #include <asm/io.h>
19 #include <asm/swiotlb.h>
20
21 static inline unsigned long device_to_mask(struct device *dev)
22 {
23         if (dev->dma_mask && *dev->dma_mask)
24                 return *dev->dma_mask;
25         /* Assume devices without mask can take 32 bit addresses */
26         return 0xfffffffful;
27 }
28
29 /*
30  * Available generic sets of operations
31  */
32 #ifdef CONFIG_PPC64
33 extern const struct dma_map_ops dma_iommu_ops;
34 #endif
35
36 static inline const struct dma_map_ops *get_arch_dma_ops(struct bus_type *bus)
37 {
38         /* We don't handle the NULL dev case for ISA for now. We could
39          * do it via an out of line call but it is not needed for now. The
40          * only ISA DMA device we support is the floppy and we have a hack
41          * in the floppy driver directly to get a device for us.
42          */
43         return NULL;
44 }
45
46 /*
47  * get_dma_offset()
48  *
49  * Get the dma offset on configurations where the dma address can be determined
50  * from the physical address by looking at a simple offset.  Direct dma and
51  * swiotlb use this function, but it is typically not used by implementations
52  * with an iommu.
53  */
54 static inline dma_addr_t get_dma_offset(struct device *dev)
55 {
56         if (dev)
57                 return dev->archdata.dma_offset;
58
59         return PCI_DRAM_OFFSET;
60 }
61
62 static inline void set_dma_offset(struct device *dev, dma_addr_t off)
63 {
64         if (dev)
65                 dev->archdata.dma_offset = off;
66 }
67
68 #endif /* __KERNEL__ */
69 #endif  /* _ASM_DMA_MAPPING_H */