blob: 7f5779daf5c864d43a3a7fdb6497780c6f20150a [file] [log] [blame]
Rob Clark871d8122013-11-16 12:56:06 -05001/*
2 * Copyright (C) 2013 Red Hat
3 * Author: Rob Clark <robdclark@gmail.com>
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 as published by
7 * the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
13 *
14 * You should have received a copy of the GNU General Public License along with
15 * this program. If not, see <http://www.gnu.org/licenses/>.
16 */
17
18#include "msm_drv.h"
19#include "msm_mmu.h"
20
21struct msm_iommu {
22 struct msm_mmu base;
23 struct iommu_domain *domain;
24};
25#define to_msm_iommu(x) container_of(x, struct msm_iommu, base)
26
Rob Clark7f8036b2016-12-07 11:13:53 -050027static int msm_fault_handler(struct iommu_domain *domain, struct device *dev,
Rob Clark871d8122013-11-16 12:56:06 -050028 unsigned long iova, int flags, void *arg)
29{
Rob Clark7f8036b2016-12-07 11:13:53 -050030 struct msm_iommu *iommu = arg;
31 if (iommu->base.handler)
32 return iommu->base.handler(iommu->base.arg, iova, flags);
Rob Clark6814dbf2014-08-09 09:07:25 -040033 pr_warn_ratelimited("*** fault: iova=%08lx, flags=%d\n", iova, flags);
34 return 0;
Rob Clark871d8122013-11-16 12:56:06 -050035}
36
Rob Clarkd72ab592016-02-25 11:19:43 +053037static int msm_iommu_attach(struct msm_mmu *mmu, const char * const *names,
38 int cnt)
Rob Clark871d8122013-11-16 12:56:06 -050039{
Rob Clark871d8122013-11-16 12:56:06 -050040 struct msm_iommu *iommu = to_msm_iommu(mmu);
Rob Clark944fc362014-07-09 22:08:15 -040041 return iommu_attach_device(iommu->domain, mmu->dev);
Rob Clark871d8122013-11-16 12:56:06 -050042}
43
Rob Clarkd72ab592016-02-25 11:19:43 +053044static void msm_iommu_detach(struct msm_mmu *mmu, const char * const *names,
45 int cnt)
Stephane Viau87e956e2014-06-17 10:32:37 -040046{
47 struct msm_iommu *iommu = to_msm_iommu(mmu);
Rob Clark944fc362014-07-09 22:08:15 -040048 iommu_detach_device(iommu->domain, mmu->dev);
Stephane Viau87e956e2014-06-17 10:32:37 -040049}
50
Rob Clark78babc12016-11-11 12:06:46 -050051static int msm_iommu_map(struct msm_mmu *mmu, uint64_t iova,
Rob Clark871d8122013-11-16 12:56:06 -050052 struct sg_table *sgt, unsigned len, int prot)
53{
54 struct msm_iommu *iommu = to_msm_iommu(mmu);
55 struct iommu_domain *domain = iommu->domain;
56 struct scatterlist *sg;
Rob Clark78babc12016-11-11 12:06:46 -050057 unsigned long da = iova;
Rob Clark871d8122013-11-16 12:56:06 -050058 unsigned int i, j;
59 int ret;
60
61 if (!domain || !sgt)
62 return -EINVAL;
63
64 for_each_sg(sgt->sgl, sg, sgt->nents, i) {
Archit Taneja69be1f42016-04-17 20:28:43 +053065 dma_addr_t pa = sg_phys(sg) - sg->offset;
Rob Clark871d8122013-11-16 12:56:06 -050066 size_t bytes = sg->length + sg->offset;
67
Rob Clark78babc12016-11-11 12:06:46 -050068 VERB("map[%d]: %08lx %08lx(%zx)", i, da, (unsigned long)pa, bytes);
Rob Clark871d8122013-11-16 12:56:06 -050069
70 ret = iommu_map(domain, da, pa, bytes, prot);
71 if (ret)
72 goto fail;
73
74 da += bytes;
75 }
76
77 return 0;
78
79fail:
80 da = iova;
81
82 for_each_sg(sgt->sgl, sg, i, j) {
83 size_t bytes = sg->length + sg->offset;
84 iommu_unmap(domain, da, bytes);
85 da += bytes;
86 }
87 return ret;
88}
89
Rob Clark78babc12016-11-11 12:06:46 -050090static int msm_iommu_unmap(struct msm_mmu *mmu, uint64_t iova,
Rob Clark871d8122013-11-16 12:56:06 -050091 struct sg_table *sgt, unsigned len)
92{
93 struct msm_iommu *iommu = to_msm_iommu(mmu);
94 struct iommu_domain *domain = iommu->domain;
95 struct scatterlist *sg;
Rob Clark78babc12016-11-11 12:06:46 -050096 unsigned long da = iova;
Rob Clark871d8122013-11-16 12:56:06 -050097 int i;
98
99 for_each_sg(sgt->sgl, sg, sgt->nents, i) {
100 size_t bytes = sg->length + sg->offset;
101 size_t unmapped;
102
103 unmapped = iommu_unmap(domain, da, bytes);
104 if (unmapped < bytes)
105 return unmapped;
106
Rob Clark78babc12016-11-11 12:06:46 -0500107 VERB("unmap[%d]: %08lx(%zx)", i, da, bytes);
Rob Clark871d8122013-11-16 12:56:06 -0500108
Fabian Frederickcf3198c2014-06-15 00:24:26 +0200109 BUG_ON(!PAGE_ALIGNED(bytes));
Rob Clark871d8122013-11-16 12:56:06 -0500110
111 da += bytes;
112 }
113
114 return 0;
115}
116
117static void msm_iommu_destroy(struct msm_mmu *mmu)
118{
119 struct msm_iommu *iommu = to_msm_iommu(mmu);
120 iommu_domain_free(iommu->domain);
121 kfree(iommu);
122}
123
124static const struct msm_mmu_funcs funcs = {
125 .attach = msm_iommu_attach,
Stephane Viau87e956e2014-06-17 10:32:37 -0400126 .detach = msm_iommu_detach,
Rob Clark871d8122013-11-16 12:56:06 -0500127 .map = msm_iommu_map,
128 .unmap = msm_iommu_unmap,
129 .destroy = msm_iommu_destroy,
130};
131
Rob Clark944fc362014-07-09 22:08:15 -0400132struct msm_mmu *msm_iommu_new(struct device *dev, struct iommu_domain *domain)
Rob Clark871d8122013-11-16 12:56:06 -0500133{
134 struct msm_iommu *iommu;
135
136 iommu = kzalloc(sizeof(*iommu), GFP_KERNEL);
137 if (!iommu)
138 return ERR_PTR(-ENOMEM);
139
140 iommu->domain = domain;
141 msm_mmu_init(&iommu->base, dev, &funcs);
Rob Clark7f8036b2016-12-07 11:13:53 -0500142 iommu_set_fault_handler(domain, msm_fault_handler, iommu);
Rob Clark871d8122013-11-16 12:56:06 -0500143
144 return &iommu->base;
145}