Merge tag 'io_uring-5.11-2021-01-16' of git://git.kernel.dk/linux-block
[linux/fpc-iii.git] / drivers / gpu / drm / msm / msm_mmu.h
blob61ade89d9e481f0f2641d14ac46dbb26df9d71a9
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /*
3 * Copyright (C) 2013 Red Hat
4 * Author: Rob Clark <robdclark@gmail.com>
5 */
7 #ifndef __MSM_MMU_H__
8 #define __MSM_MMU_H__
10 #include <linux/iommu.h>
12 struct msm_mmu_funcs {
13 void (*detach)(struct msm_mmu *mmu);
14 int (*map)(struct msm_mmu *mmu, uint64_t iova, struct sg_table *sgt,
15 size_t len, int prot);
16 int (*unmap)(struct msm_mmu *mmu, uint64_t iova, size_t len);
17 void (*destroy)(struct msm_mmu *mmu);
20 enum msm_mmu_type {
21 MSM_MMU_GPUMMU,
22 MSM_MMU_IOMMU,
23 MSM_MMU_IOMMU_PAGETABLE,
26 struct msm_mmu {
27 const struct msm_mmu_funcs *funcs;
28 struct device *dev;
29 int (*handler)(void *arg, unsigned long iova, int flags);
30 void *arg;
31 enum msm_mmu_type type;
34 static inline void msm_mmu_init(struct msm_mmu *mmu, struct device *dev,
35 const struct msm_mmu_funcs *funcs, enum msm_mmu_type type)
37 mmu->dev = dev;
38 mmu->funcs = funcs;
39 mmu->type = type;
42 struct msm_mmu *msm_iommu_new(struct device *dev, struct iommu_domain *domain);
43 struct msm_mmu *msm_gpummu_new(struct device *dev, struct msm_gpu *gpu);
45 static inline void msm_mmu_set_fault_handler(struct msm_mmu *mmu, void *arg,
46 int (*handler)(void *arg, unsigned long iova, int flags))
48 mmu->arg = arg;
49 mmu->handler = handler;
52 struct msm_mmu *msm_iommu_pagetable_create(struct msm_mmu *parent);
54 void msm_gpummu_params(struct msm_mmu *mmu, dma_addr_t *pt_base,
55 dma_addr_t *tran_error);
58 int msm_iommu_pagetable_params(struct msm_mmu *mmu, phys_addr_t *ttbr,
59 int *asid);
61 #endif /* __MSM_MMU_H__ */