hc
2023-10-25 6c2073b7aa40e29d0eca7d571dd7bc590c7ecaa7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/* SPDX-License-Identifier: GPL-2.0-only */
#ifndef ASMARM_DMA_IOMMU_H
#define ASMARM_DMA_IOMMU_H
 
#ifdef __KERNEL__
 
#include <linux/err.h>
#include <linux/mm_types.h>
#include <linux/scatterlist.h>
#include <linux/dma-debug.h>
#include <linux/kref.h>
#include <linux/dma-mapping-fast.h>
 
struct dma_iommu_mapping {
   /* iommu specific data */
   struct iommu_domain    *domain;
   bool            init;
   struct kref        kref;
   const struct dma_map_ops *ops;
 
   /* Protects bitmap */
   spinlock_t        lock;
   void            *bitmap;
   size_t            bits;
   dma_addr_t        base;
 
   struct dma_fast_smmu_mapping *fast;
};
 
#ifdef CONFIG_ARM64_DMA_USE_IOMMU
void arm_iommu_put_dma_cookie(struct iommu_domain *domain);
#else  /* !CONFIG_ARM64_DMA_USE_IOMMU */
static inline void arm_iommu_put_dma_cookie(struct iommu_domain *domain) {}
#endif    /* CONFIG_ARM64_DMA_USE_IOMMU */
 
#endif /* __KERNEL__ */
#endif