Robin Murphy | 0db2e5d | 2015-10-01 20:13:58 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2014-2015 ARM Ltd. |
| 3 | * |
| 4 | * This program is free software; you can redistribute it and/or modify |
| 5 | * it under the terms of the GNU General Public License version 2 as |
| 6 | * published by the Free Software Foundation. |
| 7 | * |
| 8 | * This program is distributed in the hope that it will be useful, |
| 9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 11 | * GNU General Public License for more details. |
| 12 | * |
| 13 | * You should have received a copy of the GNU General Public License |
| 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 15 | */ |
| 16 | #ifndef __DMA_IOMMU_H |
| 17 | #define __DMA_IOMMU_H |
| 18 | |
| 19 | #ifdef __KERNEL__ |
| 20 | #include <asm/errno.h> |
| 21 | |
| 22 | #ifdef CONFIG_IOMMU_DMA |
| 23 | #include <linux/iommu.h> |
Robin Murphy | 44bb7e2 | 2016-09-12 17:13:59 +0100 | [diff] [blame] | 24 | #include <linux/msi.h> |
Robin Murphy | 0db2e5d | 2015-10-01 20:13:58 +0100 | [diff] [blame] | 25 | |
| 26 | int iommu_dma_init(void); |
| 27 | |
| 28 | /* Domain management interface for IOMMU drivers */ |
| 29 | int iommu_get_dma_cookie(struct iommu_domain *domain); |
| 30 | void iommu_put_dma_cookie(struct iommu_domain *domain); |
| 31 | |
| 32 | /* Setup call for arch DMA mapping code */ |
Robin Murphy | fade1ec | 2016-09-12 17:14:00 +0100 | [diff] [blame] | 33 | int iommu_dma_init_domain(struct iommu_domain *domain, dma_addr_t base, |
| 34 | u64 size, struct device *dev); |
Robin Murphy | 0db2e5d | 2015-10-01 20:13:58 +0100 | [diff] [blame] | 35 | |
| 36 | /* General helpers for DMA-API <-> IOMMU-API interaction */ |
| 37 | int dma_direction_to_prot(enum dma_data_direction dir, bool coherent); |
| 38 | |
| 39 | /* |
| 40 | * These implement the bulk of the relevant DMA mapping callbacks, but require |
| 41 | * the arch code to take care of attributes and cache maintenance |
| 42 | */ |
Robin Murphy | 3b6b7e1 | 2016-04-13 17:29:10 +0100 | [diff] [blame] | 43 | struct page **iommu_dma_alloc(struct device *dev, size_t size, gfp_t gfp, |
Krzysztof Kozlowski | 00085f1 | 2016-08-03 13:46:00 -0700 | [diff] [blame] | 44 | unsigned long attrs, int prot, dma_addr_t *handle, |
Robin Murphy | 0db2e5d | 2015-10-01 20:13:58 +0100 | [diff] [blame] | 45 | void (*flush_page)(struct device *, const void *, phys_addr_t)); |
| 46 | void iommu_dma_free(struct device *dev, struct page **pages, size_t size, |
| 47 | dma_addr_t *handle); |
| 48 | |
| 49 | int iommu_dma_mmap(struct page **pages, size_t size, struct vm_area_struct *vma); |
| 50 | |
| 51 | dma_addr_t iommu_dma_map_page(struct device *dev, struct page *page, |
| 52 | unsigned long offset, size_t size, int prot); |
| 53 | int iommu_dma_map_sg(struct device *dev, struct scatterlist *sg, |
| 54 | int nents, int prot); |
| 55 | |
| 56 | /* |
| 57 | * Arch code with no special attribute handling may use these |
| 58 | * directly as DMA mapping callbacks for simplicity |
| 59 | */ |
| 60 | void iommu_dma_unmap_page(struct device *dev, dma_addr_t handle, size_t size, |
Krzysztof Kozlowski | 00085f1 | 2016-08-03 13:46:00 -0700 | [diff] [blame] | 61 | enum dma_data_direction dir, unsigned long attrs); |
Robin Murphy | 0db2e5d | 2015-10-01 20:13:58 +0100 | [diff] [blame] | 62 | void iommu_dma_unmap_sg(struct device *dev, struct scatterlist *sg, int nents, |
Krzysztof Kozlowski | 00085f1 | 2016-08-03 13:46:00 -0700 | [diff] [blame] | 63 | enum dma_data_direction dir, unsigned long attrs); |
Robin Murphy | 0db2e5d | 2015-10-01 20:13:58 +0100 | [diff] [blame] | 64 | int iommu_dma_supported(struct device *dev, u64 mask); |
| 65 | int iommu_dma_mapping_error(struct device *dev, dma_addr_t dma_addr); |
| 66 | |
Robin Murphy | 44bb7e2 | 2016-09-12 17:13:59 +0100 | [diff] [blame] | 67 | /* The DMA API isn't _quite_ the whole story, though... */ |
| 68 | void iommu_dma_map_msi_msg(int irq, struct msi_msg *msg); |
| 69 | |
Robin Murphy | 0db2e5d | 2015-10-01 20:13:58 +0100 | [diff] [blame] | 70 | #else |
| 71 | |
| 72 | struct iommu_domain; |
Robin Murphy | 44bb7e2 | 2016-09-12 17:13:59 +0100 | [diff] [blame] | 73 | struct msi_msg; |
Robin Murphy | 0db2e5d | 2015-10-01 20:13:58 +0100 | [diff] [blame] | 74 | |
| 75 | static inline int iommu_dma_init(void) |
| 76 | { |
| 77 | return 0; |
| 78 | } |
| 79 | |
| 80 | static inline int iommu_get_dma_cookie(struct iommu_domain *domain) |
| 81 | { |
| 82 | return -ENODEV; |
| 83 | } |
| 84 | |
| 85 | static inline void iommu_put_dma_cookie(struct iommu_domain *domain) |
| 86 | { |
| 87 | } |
| 88 | |
Robin Murphy | 44bb7e2 | 2016-09-12 17:13:59 +0100 | [diff] [blame] | 89 | static inline void iommu_dma_map_msi_msg(int irq, struct msi_msg *msg) |
| 90 | { |
| 91 | } |
| 92 | |
Robin Murphy | 0db2e5d | 2015-10-01 20:13:58 +0100 | [diff] [blame] | 93 | #endif /* CONFIG_IOMMU_DMA */ |
| 94 | #endif /* __KERNEL__ */ |
| 95 | #endif /* __DMA_IOMMU_H */ |