blob: 6dde3a9db92ec9d5fb18b5fa07aa18773fcb35b3 [file] [log] [blame]
Stepan Moskovchenko41f3f512011-02-24 18:00:39 -08001/* Copyright (c) 2010-2011, Code Aurora Forum. All rights reserved.
Stepan Moskovchenko0720d1f2010-08-24 18:31:10 -07002 *
Paul Gortmakera007dd52018-12-01 14:19:11 -05003 * Author: Stepan Moskovchenko <stepanm@codeaurora.org>
4 *
Stepan Moskovchenko0720d1f2010-08-24 18:31:10 -07005 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 and
7 * only version 2 as published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17 * 02110-1301, USA.
18 */
19
20#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
21#include <linux/kernel.h>
Paul Gortmakera007dd52018-12-01 14:19:11 -050022#include <linux/init.h>
Stepan Moskovchenko0720d1f2010-08-24 18:31:10 -070023#include <linux/platform_device.h>
24#include <linux/errno.h>
25#include <linux/io.h>
26#include <linux/interrupt.h>
27#include <linux/list.h>
28#include <linux/spinlock.h>
29#include <linux/slab.h>
30#include <linux/iommu.h>
Stepan Moskovchenko41f3f512011-02-24 18:00:39 -080031#include <linux/clk.h>
Sricharan Rf7f125e2016-06-13 17:06:04 +053032#include <linux/err.h>
Sricharan Rf78ebca2016-06-13 17:06:05 +053033#include <linux/of_iommu.h>
Stepan Moskovchenko0720d1f2010-08-24 18:31:10 -070034
35#include <asm/cacheflush.h>
36#include <asm/sizes.h>
37
Stephen Boyd0b559df2013-07-24 13:54:33 -070038#include "msm_iommu_hw-8xxx.h"
39#include "msm_iommu.h"
Sricharan Rc9220fb2016-06-13 17:06:06 +053040#include "io-pgtable.h"
Stepan Moskovchenko0720d1f2010-08-24 18:31:10 -070041
Stepan Moskovchenko100832c2010-11-15 18:20:08 -080042#define MRC(reg, processor, op1, crn, crm, op2) \
43__asm__ __volatile__ ( \
44" mrc " #processor "," #op1 ", %0," #crn "," #crm "," #op2 "\n" \
45: "=r" (reg))
46
Ohad Ben-Cohen83427272011-11-10 11:32:28 +020047/* bitmap of the page sizes currently supported */
48#define MSM_IOMMU_PGSIZES (SZ_4K | SZ_64K | SZ_1M | SZ_16M)
49
Stepan Moskovchenko0720d1f2010-08-24 18:31:10 -070050DEFINE_SPINLOCK(msm_iommu_lock);
Sricharan R109bd482016-06-13 17:06:02 +053051static LIST_HEAD(qcom_iommu_devices);
Sricharan Rc9220fb2016-06-13 17:06:06 +053052static struct iommu_ops msm_iommu_ops;
Stepan Moskovchenko0720d1f2010-08-24 18:31:10 -070053
54struct msm_priv {
Stepan Moskovchenko0720d1f2010-08-24 18:31:10 -070055 struct list_head list_attached;
Joerg Roedel3e116c32015-03-26 13:43:14 +010056 struct iommu_domain domain;
Sricharan Rc9220fb2016-06-13 17:06:06 +053057 struct io_pgtable_cfg cfg;
58 struct io_pgtable_ops *iop;
59 struct device *dev;
60 spinlock_t pgtlock; /* pagetable lock */
Stepan Moskovchenko0720d1f2010-08-24 18:31:10 -070061};
62
Joerg Roedel3e116c32015-03-26 13:43:14 +010063static struct msm_priv *to_msm_priv(struct iommu_domain *dom)
64{
65 return container_of(dom, struct msm_priv, domain);
66}
67
Sricharan R109bd482016-06-13 17:06:02 +053068static int __enable_clocks(struct msm_iommu_dev *iommu)
Stepan Moskovchenko41f3f512011-02-24 18:00:39 -080069{
70 int ret;
71
Sricharan R109bd482016-06-13 17:06:02 +053072 ret = clk_enable(iommu->pclk);
Stepan Moskovchenko41f3f512011-02-24 18:00:39 -080073 if (ret)
74 goto fail;
75
Sricharan R109bd482016-06-13 17:06:02 +053076 if (iommu->clk) {
77 ret = clk_enable(iommu->clk);
Stepan Moskovchenko41f3f512011-02-24 18:00:39 -080078 if (ret)
Sricharan R109bd482016-06-13 17:06:02 +053079 clk_disable(iommu->pclk);
Stepan Moskovchenko41f3f512011-02-24 18:00:39 -080080 }
81fail:
82 return ret;
83}
84
Sricharan R109bd482016-06-13 17:06:02 +053085static void __disable_clocks(struct msm_iommu_dev *iommu)
Stepan Moskovchenko41f3f512011-02-24 18:00:39 -080086{
Sricharan R109bd482016-06-13 17:06:02 +053087 if (iommu->clk)
88 clk_disable(iommu->clk);
89 clk_disable(iommu->pclk);
Stepan Moskovchenko41f3f512011-02-24 18:00:39 -080090}
91
Sricharan Rf7f125e2016-06-13 17:06:04 +053092static void msm_iommu_reset(void __iomem *base, int ncb)
93{
94 int ctx;
95
96 SET_RPUE(base, 0);
97 SET_RPUEIE(base, 0);
98 SET_ESRRESTORE(base, 0);
99 SET_TBE(base, 0);
100 SET_CR(base, 0);
101 SET_SPDMBE(base, 0);
102 SET_TESTBUSCR(base, 0);
103 SET_TLBRSW(base, 0);
104 SET_GLOBAL_TLBIALL(base, 0);
105 SET_RPU_ACR(base, 0);
106 SET_TLBLKCRWE(base, 1);
107
108 for (ctx = 0; ctx < ncb; ctx++) {
109 SET_BPRCOSH(base, ctx, 0);
110 SET_BPRCISH(base, ctx, 0);
111 SET_BPRCNSH(base, ctx, 0);
112 SET_BPSHCFG(base, ctx, 0);
113 SET_BPMTCFG(base, ctx, 0);
114 SET_ACTLR(base, ctx, 0);
115 SET_SCTLR(base, ctx, 0);
116 SET_FSRRESTORE(base, ctx, 0);
117 SET_TTBR0(base, ctx, 0);
118 SET_TTBR1(base, ctx, 0);
119 SET_TTBCR(base, ctx, 0);
120 SET_BFBCR(base, ctx, 0);
121 SET_PAR(base, ctx, 0);
122 SET_FAR(base, ctx, 0);
123 SET_CTX_TLBIALL(base, ctx, 0);
124 SET_TLBFLPTER(base, ctx, 0);
125 SET_TLBSLPTER(base, ctx, 0);
126 SET_TLBLKCR(base, ctx, 0);
Sricharan Rf7f125e2016-06-13 17:06:04 +0530127 SET_CONTEXTIDR(base, ctx, 0);
128 }
129}
130
Sricharan Rc9220fb2016-06-13 17:06:06 +0530131static void __flush_iotlb(void *cookie)
Stepan Moskovchenko0720d1f2010-08-24 18:31:10 -0700132{
Sricharan Rc9220fb2016-06-13 17:06:06 +0530133 struct msm_priv *priv = cookie;
Sricharan R109bd482016-06-13 17:06:02 +0530134 struct msm_iommu_dev *iommu = NULL;
135 struct msm_iommu_ctx_dev *master;
Stepan Moskovchenko33069732010-11-12 19:30:00 -0800136 int ret = 0;
Sricharan R109bd482016-06-13 17:06:02 +0530137
Sricharan R109bd482016-06-13 17:06:02 +0530138 list_for_each_entry(iommu, &priv->list_attached, dom_node) {
139 ret = __enable_clocks(iommu);
Stepan Moskovchenko41f3f512011-02-24 18:00:39 -0800140 if (ret)
141 goto fail;
142
Sricharan R109bd482016-06-13 17:06:02 +0530143 list_for_each_entry(master, &iommu->ctx_list, list)
144 SET_CTX_TLBIALL(iommu->base, master->num, 0);
145
146 __disable_clocks(iommu);
Stepan Moskovchenko41f3f512011-02-24 18:00:39 -0800147 }
148fail:
Sricharan Rc9220fb2016-06-13 17:06:06 +0530149 return;
Stepan Moskovchenko0720d1f2010-08-24 18:31:10 -0700150}
151
Sricharan Rc9220fb2016-06-13 17:06:06 +0530152static void __flush_iotlb_range(unsigned long iova, size_t size,
153 size_t granule, bool leaf, void *cookie)
154{
155 struct msm_priv *priv = cookie;
156 struct msm_iommu_dev *iommu = NULL;
157 struct msm_iommu_ctx_dev *master;
158 int ret = 0;
159 int temp_size;
160
161 list_for_each_entry(iommu, &priv->list_attached, dom_node) {
162 ret = __enable_clocks(iommu);
163 if (ret)
164 goto fail;
165
166 list_for_each_entry(master, &iommu->ctx_list, list) {
167 temp_size = size;
168 do {
169 iova &= TLBIVA_VA;
170 iova |= GET_CONTEXTIDR_ASID(iommu->base,
171 master->num);
172 SET_TLBIVA(iommu->base, master->num, iova);
173 iova += granule;
174 } while (temp_size -= granule);
175 }
176
177 __disable_clocks(iommu);
178 }
179
180fail:
181 return;
182}
183
184static void __flush_iotlb_sync(void *cookie)
185{
186 /*
187 * Nothing is needed here, the barrier to guarantee
188 * completion of the tlb sync operation is implicitly
189 * taken care when the iommu client does a writel before
190 * kick starting the other master.
191 */
192}
193
194static const struct iommu_gather_ops msm_iommu_gather_ops = {
195 .tlb_flush_all = __flush_iotlb,
196 .tlb_add_flush = __flush_iotlb_range,
197 .tlb_sync = __flush_iotlb_sync,
198};
199
Sricharan R109bd482016-06-13 17:06:02 +0530200static int msm_iommu_alloc_ctx(unsigned long *map, int start, int end)
201{
202 int idx;
203
204 do {
205 idx = find_next_zero_bit(map, end, start);
206 if (idx == end)
207 return -ENOSPC;
208 } while (test_and_set_bit(idx, map));
209
210 return idx;
211}
212
213static void msm_iommu_free_ctx(unsigned long *map, int idx)
214{
215 clear_bit(idx, map);
216}
217
218static void config_mids(struct msm_iommu_dev *iommu,
219 struct msm_iommu_ctx_dev *master)
220{
221 int mid, ctx, i;
222
223 for (i = 0; i < master->num_mids; i++) {
224 mid = master->mids[i];
225 ctx = master->num;
226
227 SET_M2VCBR_N(iommu->base, mid, 0);
228 SET_CBACR_N(iommu->base, ctx, 0);
229
230 /* Set VMID = 0 */
231 SET_VMID(iommu->base, mid, 0);
232
233 /* Set the context number for that MID to this context */
234 SET_CBNDX(iommu->base, mid, ctx);
235
236 /* Set MID associated with this context bank to 0*/
237 SET_CBVMID(iommu->base, ctx, 0);
238
239 /* Set the ASID for TLB tagging for this context */
240 SET_CONTEXTIDR_ASID(iommu->base, ctx, ctx);
241
242 /* Set security bit override to be Non-secure */
243 SET_NSCFG(iommu->base, mid, 3);
244 }
245}
246
Stepan Moskovchenko0720d1f2010-08-24 18:31:10 -0700247static void __reset_context(void __iomem *base, int ctx)
248{
249 SET_BPRCOSH(base, ctx, 0);
250 SET_BPRCISH(base, ctx, 0);
251 SET_BPRCNSH(base, ctx, 0);
252 SET_BPSHCFG(base, ctx, 0);
253 SET_BPMTCFG(base, ctx, 0);
254 SET_ACTLR(base, ctx, 0);
255 SET_SCTLR(base, ctx, 0);
256 SET_FSRRESTORE(base, ctx, 0);
257 SET_TTBR0(base, ctx, 0);
258 SET_TTBR1(base, ctx, 0);
259 SET_TTBCR(base, ctx, 0);
260 SET_BFBCR(base, ctx, 0);
261 SET_PAR(base, ctx, 0);
262 SET_FAR(base, ctx, 0);
263 SET_CTX_TLBIALL(base, ctx, 0);
264 SET_TLBFLPTER(base, ctx, 0);
265 SET_TLBSLPTER(base, ctx, 0);
266 SET_TLBLKCR(base, ctx, 0);
Stepan Moskovchenko0720d1f2010-08-24 18:31:10 -0700267}
268
Sricharan Rc9220fb2016-06-13 17:06:06 +0530269static void __program_context(void __iomem *base, int ctx,
270 struct msm_priv *priv)
Stepan Moskovchenko0720d1f2010-08-24 18:31:10 -0700271{
272 __reset_context(base, ctx);
273
Sricharan Rc9220fb2016-06-13 17:06:06 +0530274 /* Turn on TEX Remap */
275 SET_TRE(base, ctx, 1);
276 SET_AFE(base, ctx, 1);
277
Stepan Moskovchenko0720d1f2010-08-24 18:31:10 -0700278 /* Set up HTW mode */
279 /* TLB miss configuration: perform HTW on miss */
280 SET_TLBMCFG(base, ctx, 0x3);
281
282 /* V2P configuration: HTW for access */
283 SET_V2PCFG(base, ctx, 0x3);
284
Sricharan Rc9220fb2016-06-13 17:06:06 +0530285 SET_TTBCR(base, ctx, priv->cfg.arm_v7s_cfg.tcr);
286 SET_TTBR0(base, ctx, priv->cfg.arm_v7s_cfg.ttbr[0]);
287 SET_TTBR1(base, ctx, priv->cfg.arm_v7s_cfg.ttbr[1]);
288
289 /* Set prrr and nmrr */
290 SET_PRRR(base, ctx, priv->cfg.arm_v7s_cfg.prrr);
291 SET_NMRR(base, ctx, priv->cfg.arm_v7s_cfg.nmrr);
Stepan Moskovchenko0720d1f2010-08-24 18:31:10 -0700292
293 /* Invalidate the TLB for this context */
294 SET_CTX_TLBIALL(base, ctx, 0);
295
296 /* Set interrupt number to "secure" interrupt */
297 SET_IRPTNDX(base, ctx, 0);
298
299 /* Enable context fault interrupt */
300 SET_CFEIE(base, ctx, 1);
301
302 /* Stall access on a context fault and let the handler deal with it */
303 SET_CFCFG(base, ctx, 1);
304
305 /* Redirect all cacheable requests to L2 slave port. */
306 SET_RCISH(base, ctx, 1);
307 SET_RCOSH(base, ctx, 1);
308 SET_RCNSH(base, ctx, 1);
309
Stepan Moskovchenko0720d1f2010-08-24 18:31:10 -0700310 /* Turn on BFB prefetch */
311 SET_BFBDFE(base, ctx, 1);
312
Stepan Moskovchenko0720d1f2010-08-24 18:31:10 -0700313 /* Enable the MMU */
314 SET_M(base, ctx, 1);
315}
316
Joerg Roedel3e116c32015-03-26 13:43:14 +0100317static struct iommu_domain *msm_iommu_domain_alloc(unsigned type)
Stepan Moskovchenko0720d1f2010-08-24 18:31:10 -0700318{
Joerg Roedel3e116c32015-03-26 13:43:14 +0100319 struct msm_priv *priv;
Stepan Moskovchenko0720d1f2010-08-24 18:31:10 -0700320
Joerg Roedel3e116c32015-03-26 13:43:14 +0100321 if (type != IOMMU_DOMAIN_UNMANAGED)
322 return NULL;
323
324 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
Stepan Moskovchenko0720d1f2010-08-24 18:31:10 -0700325 if (!priv)
326 goto fail_nomem;
327
328 INIT_LIST_HEAD(&priv->list_attached);
Joerg Roedel4be6a292012-01-26 19:40:56 +0100329
Joerg Roedel3e116c32015-03-26 13:43:14 +0100330 priv->domain.geometry.aperture_start = 0;
331 priv->domain.geometry.aperture_end = (1ULL << 32) - 1;
332 priv->domain.geometry.force_aperture = true;
Joerg Roedel4be6a292012-01-26 19:40:56 +0100333
Joerg Roedel3e116c32015-03-26 13:43:14 +0100334 return &priv->domain;
Stepan Moskovchenko0720d1f2010-08-24 18:31:10 -0700335
336fail_nomem:
337 kfree(priv);
Joerg Roedel3e116c32015-03-26 13:43:14 +0100338 return NULL;
Stepan Moskovchenko0720d1f2010-08-24 18:31:10 -0700339}
340
Joerg Roedel3e116c32015-03-26 13:43:14 +0100341static void msm_iommu_domain_free(struct iommu_domain *domain)
Stepan Moskovchenko0720d1f2010-08-24 18:31:10 -0700342{
343 struct msm_priv *priv;
344 unsigned long flags;
Stepan Moskovchenko0720d1f2010-08-24 18:31:10 -0700345
346 spin_lock_irqsave(&msm_iommu_lock, flags);
Joerg Roedel3e116c32015-03-26 13:43:14 +0100347 priv = to_msm_priv(domain);
Stepan Moskovchenko0720d1f2010-08-24 18:31:10 -0700348 kfree(priv);
349 spin_unlock_irqrestore(&msm_iommu_lock, flags);
350}
351
Sricharan Rc9220fb2016-06-13 17:06:06 +0530352static int msm_iommu_domain_config(struct msm_priv *priv)
353{
354 spin_lock_init(&priv->pgtlock);
355
356 priv->cfg = (struct io_pgtable_cfg) {
357 .quirks = IO_PGTABLE_QUIRK_TLBI_ON_MAP,
358 .pgsize_bitmap = msm_iommu_ops.pgsize_bitmap,
359 .ias = 32,
360 .oas = 32,
361 .tlb = &msm_iommu_gather_ops,
362 .iommu_dev = priv->dev,
363 };
364
365 priv->iop = alloc_io_pgtable_ops(ARM_V7S, &priv->cfg, priv);
366 if (!priv->iop) {
367 dev_err(priv->dev, "Failed to allocate pgtable\n");
368 return -EINVAL;
369 }
370
371 msm_iommu_ops.pgsize_bitmap = priv->cfg.pgsize_bitmap;
372
373 return 0;
374}
375
Joerg Roedel42df43b2017-02-02 18:52:34 +0100376/* Must be called under msm_iommu_lock */
377static struct msm_iommu_dev *find_iommu_for_dev(struct device *dev)
378{
379 struct msm_iommu_dev *iommu, *ret = NULL;
380 struct msm_iommu_ctx_dev *master;
381
382 list_for_each_entry(iommu, &qcom_iommu_devices, dev_node) {
383 master = list_first_entry(&iommu->ctx_list,
384 struct msm_iommu_ctx_dev,
385 list);
386 if (master->of_node == dev->of_node) {
387 ret = iommu;
388 break;
389 }
390 }
391
392 return ret;
393}
394
395static int msm_iommu_add_device(struct device *dev)
396{
397 struct msm_iommu_dev *iommu;
Robin Murphyce2eb8f2017-07-21 13:12:35 +0100398 struct iommu_group *group;
Joerg Roedel42df43b2017-02-02 18:52:34 +0100399 unsigned long flags;
Joerg Roedel42df43b2017-02-02 18:52:34 +0100400
401 spin_lock_irqsave(&msm_iommu_lock, flags);
Joerg Roedel42df43b2017-02-02 18:52:34 +0100402 iommu = find_iommu_for_dev(dev);
Niklas Cassel37952142018-06-12 16:06:10 +0200403 spin_unlock_irqrestore(&msm_iommu_lock, flags);
404
Joerg Roedel42df43b2017-02-02 18:52:34 +0100405 if (iommu)
406 iommu_device_link(&iommu->iommu, dev);
407 else
Niklas Cassel37952142018-06-12 16:06:10 +0200408 return -ENODEV;
Robin Murphyce2eb8f2017-07-21 13:12:35 +0100409
410 group = iommu_group_get_for_dev(dev);
411 if (IS_ERR(group))
412 return PTR_ERR(group);
413
414 iommu_group_put(group);
415
416 return 0;
Joerg Roedel42df43b2017-02-02 18:52:34 +0100417}
418
419static void msm_iommu_remove_device(struct device *dev)
420{
421 struct msm_iommu_dev *iommu;
422 unsigned long flags;
423
424 spin_lock_irqsave(&msm_iommu_lock, flags);
Joerg Roedel42df43b2017-02-02 18:52:34 +0100425 iommu = find_iommu_for_dev(dev);
Niklas Cassel37952142018-06-12 16:06:10 +0200426 spin_unlock_irqrestore(&msm_iommu_lock, flags);
427
Joerg Roedel42df43b2017-02-02 18:52:34 +0100428 if (iommu)
429 iommu_device_unlink(&iommu->iommu, dev);
430
Robin Murphyce2eb8f2017-07-21 13:12:35 +0100431 iommu_group_remove_device(dev);
Joerg Roedel42df43b2017-02-02 18:52:34 +0100432}
433
Stepan Moskovchenko0720d1f2010-08-24 18:31:10 -0700434static int msm_iommu_attach_dev(struct iommu_domain *domain, struct device *dev)
435{
Stepan Moskovchenko0720d1f2010-08-24 18:31:10 -0700436 int ret = 0;
437 unsigned long flags;
Sricharan R109bd482016-06-13 17:06:02 +0530438 struct msm_iommu_dev *iommu;
439 struct msm_priv *priv = to_msm_priv(domain);
440 struct msm_iommu_ctx_dev *master;
Stepan Moskovchenko0720d1f2010-08-24 18:31:10 -0700441
Sricharan Rc9220fb2016-06-13 17:06:06 +0530442 priv->dev = dev;
443 msm_iommu_domain_config(priv);
444
Stepan Moskovchenko0720d1f2010-08-24 18:31:10 -0700445 spin_lock_irqsave(&msm_iommu_lock, flags);
Sricharan R109bd482016-06-13 17:06:02 +0530446 list_for_each_entry(iommu, &qcom_iommu_devices, dev_node) {
447 master = list_first_entry(&iommu->ctx_list,
448 struct msm_iommu_ctx_dev,
449 list);
450 if (master->of_node == dev->of_node) {
451 ret = __enable_clocks(iommu);
452 if (ret)
453 goto fail;
Stepan Moskovchenko0720d1f2010-08-24 18:31:10 -0700454
Sricharan R109bd482016-06-13 17:06:02 +0530455 list_for_each_entry(master, &iommu->ctx_list, list) {
456 if (master->num) {
457 dev_err(dev, "domain already attached");
458 ret = -EEXIST;
459 goto fail;
460 }
461 master->num =
462 msm_iommu_alloc_ctx(iommu->context_map,
463 0, iommu->ncb);
Julia Lawallba93c3572018-12-30 16:53:15 +0100464 if (IS_ERR_VALUE(master->num)) {
465 ret = -ENODEV;
466 goto fail;
467 }
Sricharan R109bd482016-06-13 17:06:02 +0530468 config_mids(iommu, master);
469 __program_context(iommu->base, master->num,
Sricharan Rc9220fb2016-06-13 17:06:06 +0530470 priv);
Sricharan R109bd482016-06-13 17:06:02 +0530471 }
472 __disable_clocks(iommu);
473 list_add(&iommu->dom_node, &priv->list_attached);
Stepan Moskovchenko0720d1f2010-08-24 18:31:10 -0700474 }
Sricharan R109bd482016-06-13 17:06:02 +0530475 }
Stepan Moskovchenko0720d1f2010-08-24 18:31:10 -0700476
Stepan Moskovchenko0720d1f2010-08-24 18:31:10 -0700477fail:
478 spin_unlock_irqrestore(&msm_iommu_lock, flags);
Sricharan R109bd482016-06-13 17:06:02 +0530479
Stepan Moskovchenko0720d1f2010-08-24 18:31:10 -0700480 return ret;
481}
482
483static void msm_iommu_detach_dev(struct iommu_domain *domain,
484 struct device *dev)
485{
Sricharan R109bd482016-06-13 17:06:02 +0530486 struct msm_priv *priv = to_msm_priv(domain);
Stepan Moskovchenko0720d1f2010-08-24 18:31:10 -0700487 unsigned long flags;
Sricharan R109bd482016-06-13 17:06:02 +0530488 struct msm_iommu_dev *iommu;
489 struct msm_iommu_ctx_dev *master;
Stepan Moskovchenko33069732010-11-12 19:30:00 -0800490 int ret;
Stepan Moskovchenko0720d1f2010-08-24 18:31:10 -0700491
Sricharan Rc9220fb2016-06-13 17:06:06 +0530492 free_io_pgtable_ops(priv->iop);
Stepan Moskovchenko33069732010-11-12 19:30:00 -0800493
Sricharan Rc9220fb2016-06-13 17:06:06 +0530494 spin_lock_irqsave(&msm_iommu_lock, flags);
Sricharan R109bd482016-06-13 17:06:02 +0530495 list_for_each_entry(iommu, &priv->list_attached, dom_node) {
496 ret = __enable_clocks(iommu);
497 if (ret)
498 goto fail;
Stepan Moskovchenko41f3f512011-02-24 18:00:39 -0800499
Sricharan R109bd482016-06-13 17:06:02 +0530500 list_for_each_entry(master, &iommu->ctx_list, list) {
501 msm_iommu_free_ctx(iommu->context_map, master->num);
502 __reset_context(iommu->base, master->num);
503 }
504 __disable_clocks(iommu);
505 }
Stepan Moskovchenko0720d1f2010-08-24 18:31:10 -0700506fail:
507 spin_unlock_irqrestore(&msm_iommu_lock, flags);
508}
509
Sricharan Rc9220fb2016-06-13 17:06:06 +0530510static int msm_iommu_map(struct iommu_domain *domain, unsigned long iova,
Ohad Ben-Cohen50090652011-11-10 11:32:25 +0200511 phys_addr_t pa, size_t len, int prot)
Stepan Moskovchenko0720d1f2010-08-24 18:31:10 -0700512{
Sricharan Rc9220fb2016-06-13 17:06:06 +0530513 struct msm_priv *priv = to_msm_priv(domain);
Stepan Moskovchenko0720d1f2010-08-24 18:31:10 -0700514 unsigned long flags;
Sricharan Rc9220fb2016-06-13 17:06:06 +0530515 int ret;
Stepan Moskovchenko0720d1f2010-08-24 18:31:10 -0700516
Sricharan Rc9220fb2016-06-13 17:06:06 +0530517 spin_lock_irqsave(&priv->pgtlock, flags);
518 ret = priv->iop->map(priv->iop, iova, pa, len, prot);
519 spin_unlock_irqrestore(&priv->pgtlock, flags);
Stepan Moskovchenko0720d1f2010-08-24 18:31:10 -0700520
Stepan Moskovchenko0720d1f2010-08-24 18:31:10 -0700521 return ret;
522}
523
Sricharan Rc9220fb2016-06-13 17:06:06 +0530524static size_t msm_iommu_unmap(struct iommu_domain *domain, unsigned long iova,
525 size_t len)
Stepan Moskovchenko0720d1f2010-08-24 18:31:10 -0700526{
Sricharan Rc9220fb2016-06-13 17:06:06 +0530527 struct msm_priv *priv = to_msm_priv(domain);
Stepan Moskovchenko0720d1f2010-08-24 18:31:10 -0700528 unsigned long flags;
Stepan Moskovchenko0720d1f2010-08-24 18:31:10 -0700529
Sricharan Rc9220fb2016-06-13 17:06:06 +0530530 spin_lock_irqsave(&priv->pgtlock, flags);
531 len = priv->iop->unmap(priv->iop, iova, len);
532 spin_unlock_irqrestore(&priv->pgtlock, flags);
Stepan Moskovchenko0720d1f2010-08-24 18:31:10 -0700533
Ohad Ben-Cohen50090652011-11-10 11:32:25 +0200534 return len;
Stepan Moskovchenko0720d1f2010-08-24 18:31:10 -0700535}
536
537static phys_addr_t msm_iommu_iova_to_phys(struct iommu_domain *domain,
Varun Sethibb5547a2013-03-29 01:23:58 +0530538 dma_addr_t va)
Stepan Moskovchenko0720d1f2010-08-24 18:31:10 -0700539{
540 struct msm_priv *priv;
Sricharan R109bd482016-06-13 17:06:02 +0530541 struct msm_iommu_dev *iommu;
542 struct msm_iommu_ctx_dev *master;
Stepan Moskovchenko0720d1f2010-08-24 18:31:10 -0700543 unsigned int par;
544 unsigned long flags;
Stepan Moskovchenko0720d1f2010-08-24 18:31:10 -0700545 phys_addr_t ret = 0;
Stepan Moskovchenko0720d1f2010-08-24 18:31:10 -0700546
547 spin_lock_irqsave(&msm_iommu_lock, flags);
548
Joerg Roedel3e116c32015-03-26 13:43:14 +0100549 priv = to_msm_priv(domain);
Sricharan R109bd482016-06-13 17:06:02 +0530550 iommu = list_first_entry(&priv->list_attached,
551 struct msm_iommu_dev, dom_node);
552
553 if (list_empty(&iommu->ctx_list))
Stepan Moskovchenko0720d1f2010-08-24 18:31:10 -0700554 goto fail;
555
Sricharan R109bd482016-06-13 17:06:02 +0530556 master = list_first_entry(&iommu->ctx_list,
557 struct msm_iommu_ctx_dev, list);
558 if (!master)
559 goto fail;
Stepan Moskovchenko0720d1f2010-08-24 18:31:10 -0700560
Sricharan R109bd482016-06-13 17:06:02 +0530561 ret = __enable_clocks(iommu);
Stepan Moskovchenko41f3f512011-02-24 18:00:39 -0800562 if (ret)
563 goto fail;
564
Stepan Moskovchenko0720d1f2010-08-24 18:31:10 -0700565 /* Invalidate context TLB */
Sricharan R109bd482016-06-13 17:06:02 +0530566 SET_CTX_TLBIALL(iommu->base, master->num, 0);
567 SET_V2PPR(iommu->base, master->num, va & V2Pxx_VA);
Stepan Moskovchenko0720d1f2010-08-24 18:31:10 -0700568
Sricharan R109bd482016-06-13 17:06:02 +0530569 par = GET_PAR(iommu->base, master->num);
Stepan Moskovchenko0720d1f2010-08-24 18:31:10 -0700570
571 /* We are dealing with a supersection */
Sricharan R109bd482016-06-13 17:06:02 +0530572 if (GET_NOFAULT_SS(iommu->base, master->num))
Stepan Moskovchenko0720d1f2010-08-24 18:31:10 -0700573 ret = (par & 0xFF000000) | (va & 0x00FFFFFF);
574 else /* Upper 20 bits from PAR, lower 12 from VA */
575 ret = (par & 0xFFFFF000) | (va & 0x00000FFF);
576
Sricharan R109bd482016-06-13 17:06:02 +0530577 if (GET_FAULT(iommu->base, master->num))
Stepan Moskovchenko33069732010-11-12 19:30:00 -0800578 ret = 0;
579
Sricharan R109bd482016-06-13 17:06:02 +0530580 __disable_clocks(iommu);
Stepan Moskovchenko0720d1f2010-08-24 18:31:10 -0700581fail:
582 spin_unlock_irqrestore(&msm_iommu_lock, flags);
583 return ret;
584}
585
Joerg Roedel44808452014-09-05 10:51:14 +0200586static bool msm_iommu_capable(enum iommu_cap cap)
Stepan Moskovchenko0720d1f2010-08-24 18:31:10 -0700587{
Joerg Roedel44808452014-09-05 10:51:14 +0200588 return false;
Stepan Moskovchenko0720d1f2010-08-24 18:31:10 -0700589}
590
591static void print_ctx_regs(void __iomem *base, int ctx)
592{
593 unsigned int fsr = GET_FSR(base, ctx);
594 pr_err("FAR = %08x PAR = %08x\n",
595 GET_FAR(base, ctx), GET_PAR(base, ctx));
596 pr_err("FSR = %08x [%s%s%s%s%s%s%s%s%s%s]\n", fsr,
597 (fsr & 0x02) ? "TF " : "",
598 (fsr & 0x04) ? "AFF " : "",
599 (fsr & 0x08) ? "APF " : "",
600 (fsr & 0x10) ? "TLBMF " : "",
601 (fsr & 0x20) ? "HTWDEEF " : "",
602 (fsr & 0x40) ? "HTWSEEF " : "",
603 (fsr & 0x80) ? "MHF " : "",
604 (fsr & 0x10000) ? "SL " : "",
605 (fsr & 0x40000000) ? "SS " : "",
606 (fsr & 0x80000000) ? "MULTI " : "");
607
608 pr_err("FSYNR0 = %08x FSYNR1 = %08x\n",
609 GET_FSYNR0(base, ctx), GET_FSYNR1(base, ctx));
610 pr_err("TTBR0 = %08x TTBR1 = %08x\n",
611 GET_TTBR0(base, ctx), GET_TTBR1(base, ctx));
612 pr_err("SCTLR = %08x ACTLR = %08x\n",
613 GET_SCTLR(base, ctx), GET_ACTLR(base, ctx));
Stepan Moskovchenko0720d1f2010-08-24 18:31:10 -0700614}
615
Sricharan Rf78ebca2016-06-13 17:06:05 +0530616static void insert_iommu_master(struct device *dev,
617 struct msm_iommu_dev **iommu,
618 struct of_phandle_args *spec)
619{
620 struct msm_iommu_ctx_dev *master = dev->archdata.iommu;
621 int sid;
622
623 if (list_empty(&(*iommu)->ctx_list)) {
624 master = kzalloc(sizeof(*master), GFP_ATOMIC);
625 master->of_node = dev->of_node;
626 list_add(&master->list, &(*iommu)->ctx_list);
627 dev->archdata.iommu = master;
628 }
629
630 for (sid = 0; sid < master->num_mids; sid++)
631 if (master->mids[sid] == spec->args[0]) {
632 dev_warn(dev, "Stream ID 0x%hx repeated; ignoring\n",
633 sid);
634 return;
635 }
636
637 master->mids[master->num_mids++] = spec->args[0];
638}
639
640static int qcom_iommu_of_xlate(struct device *dev,
641 struct of_phandle_args *spec)
642{
643 struct msm_iommu_dev *iommu;
644 unsigned long flags;
645 int ret = 0;
646
647 spin_lock_irqsave(&msm_iommu_lock, flags);
648 list_for_each_entry(iommu, &qcom_iommu_devices, dev_node)
649 if (iommu->dev->of_node == spec->np)
650 break;
651
652 if (!iommu || iommu->dev->of_node != spec->np) {
653 ret = -ENODEV;
654 goto fail;
655 }
656
657 insert_iommu_master(dev, &iommu, spec);
658fail:
659 spin_unlock_irqrestore(&msm_iommu_lock, flags);
660
661 return ret;
662}
663
Stepan Moskovchenko0720d1f2010-08-24 18:31:10 -0700664irqreturn_t msm_iommu_fault_handler(int irq, void *dev_id)
665{
Sricharan R109bd482016-06-13 17:06:02 +0530666 struct msm_iommu_dev *iommu = dev_id;
Stepan Moskovchenko33069732010-11-12 19:30:00 -0800667 unsigned int fsr;
Stepan Moskovchenkoa43d8c12011-02-24 18:00:42 -0800668 int i, ret;
Stepan Moskovchenko0720d1f2010-08-24 18:31:10 -0700669
670 spin_lock(&msm_iommu_lock);
671
Sricharan R109bd482016-06-13 17:06:02 +0530672 if (!iommu) {
Stepan Moskovchenko0720d1f2010-08-24 18:31:10 -0700673 pr_err("Invalid device ID in context interrupt handler\n");
674 goto fail;
675 }
676
Stepan Moskovchenko0720d1f2010-08-24 18:31:10 -0700677 pr_err("Unexpected IOMMU page fault!\n");
Sricharan R109bd482016-06-13 17:06:02 +0530678 pr_err("base = %08x\n", (unsigned int)iommu->base);
Stepan Moskovchenko0720d1f2010-08-24 18:31:10 -0700679
Sricharan R109bd482016-06-13 17:06:02 +0530680 ret = __enable_clocks(iommu);
Stepan Moskovchenko41f3f512011-02-24 18:00:39 -0800681 if (ret)
682 goto fail;
683
Sricharan R109bd482016-06-13 17:06:02 +0530684 for (i = 0; i < iommu->ncb; i++) {
685 fsr = GET_FSR(iommu->base, i);
Stepan Moskovchenko0720d1f2010-08-24 18:31:10 -0700686 if (fsr) {
687 pr_err("Fault occurred in context %d.\n", i);
688 pr_err("Interesting registers:\n");
Sricharan R109bd482016-06-13 17:06:02 +0530689 print_ctx_regs(iommu->base, i);
690 SET_FSR(iommu->base, i, 0x4000000F);
Stepan Moskovchenko0720d1f2010-08-24 18:31:10 -0700691 }
692 }
Sricharan R109bd482016-06-13 17:06:02 +0530693 __disable_clocks(iommu);
Stepan Moskovchenko0720d1f2010-08-24 18:31:10 -0700694fail:
695 spin_unlock(&msm_iommu_lock);
696 return 0;
697}
698
Sricharan Rf78ebca2016-06-13 17:06:05 +0530699static struct iommu_ops msm_iommu_ops = {
Joerg Roedel44808452014-09-05 10:51:14 +0200700 .capable = msm_iommu_capable,
Joerg Roedel3e116c32015-03-26 13:43:14 +0100701 .domain_alloc = msm_iommu_domain_alloc,
702 .domain_free = msm_iommu_domain_free,
Stepan Moskovchenko0720d1f2010-08-24 18:31:10 -0700703 .attach_dev = msm_iommu_attach_dev,
704 .detach_dev = msm_iommu_detach_dev,
705 .map = msm_iommu_map,
706 .unmap = msm_iommu_unmap,
707 .iova_to_phys = msm_iommu_iova_to_phys,
Joerg Roedel42df43b2017-02-02 18:52:34 +0100708 .add_device = msm_iommu_add_device,
709 .remove_device = msm_iommu_remove_device,
Robin Murphyce2eb8f2017-07-21 13:12:35 +0100710 .device_group = generic_device_group,
Ohad Ben-Cohen83427272011-11-10 11:32:28 +0200711 .pgsize_bitmap = MSM_IOMMU_PGSIZES,
Sricharan Rf78ebca2016-06-13 17:06:05 +0530712 .of_xlate = qcom_iommu_of_xlate,
Stepan Moskovchenko0720d1f2010-08-24 18:31:10 -0700713};
714
Sricharan Rf7f125e2016-06-13 17:06:04 +0530715static int msm_iommu_probe(struct platform_device *pdev)
716{
717 struct resource *r;
Joerg Roedel42df43b2017-02-02 18:52:34 +0100718 resource_size_t ioaddr;
Sricharan Rf7f125e2016-06-13 17:06:04 +0530719 struct msm_iommu_dev *iommu;
720 int ret, par, val;
721
722 iommu = devm_kzalloc(&pdev->dev, sizeof(*iommu), GFP_KERNEL);
723 if (!iommu)
724 return -ENODEV;
725
726 iommu->dev = &pdev->dev;
727 INIT_LIST_HEAD(&iommu->ctx_list);
728
729 iommu->pclk = devm_clk_get(iommu->dev, "smmu_pclk");
730 if (IS_ERR(iommu->pclk)) {
731 dev_err(iommu->dev, "could not get smmu_pclk\n");
732 return PTR_ERR(iommu->pclk);
733 }
734
735 ret = clk_prepare(iommu->pclk);
736 if (ret) {
737 dev_err(iommu->dev, "could not prepare smmu_pclk\n");
738 return ret;
739 }
740
741 iommu->clk = devm_clk_get(iommu->dev, "iommu_clk");
742 if (IS_ERR(iommu->clk)) {
743 dev_err(iommu->dev, "could not get iommu_clk\n");
744 clk_unprepare(iommu->pclk);
745 return PTR_ERR(iommu->clk);
746 }
747
748 ret = clk_prepare(iommu->clk);
749 if (ret) {
750 dev_err(iommu->dev, "could not prepare iommu_clk\n");
751 clk_unprepare(iommu->pclk);
752 return ret;
753 }
754
755 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
756 iommu->base = devm_ioremap_resource(iommu->dev, r);
757 if (IS_ERR(iommu->base)) {
758 dev_err(iommu->dev, "could not get iommu base\n");
759 ret = PTR_ERR(iommu->base);
760 goto fail;
761 }
Joerg Roedel42df43b2017-02-02 18:52:34 +0100762 ioaddr = r->start;
Sricharan Rf7f125e2016-06-13 17:06:04 +0530763
764 iommu->irq = platform_get_irq(pdev, 0);
765 if (iommu->irq < 0) {
766 dev_err(iommu->dev, "could not get iommu irq\n");
767 ret = -ENODEV;
768 goto fail;
769 }
770
771 ret = of_property_read_u32(iommu->dev->of_node, "qcom,ncb", &val);
772 if (ret) {
773 dev_err(iommu->dev, "could not get ncb\n");
774 goto fail;
775 }
776 iommu->ncb = val;
777
778 msm_iommu_reset(iommu->base, iommu->ncb);
779 SET_M(iommu->base, 0, 1);
780 SET_PAR(iommu->base, 0, 0);
781 SET_V2PCFG(iommu->base, 0, 1);
782 SET_V2PPR(iommu->base, 0, 0);
783 par = GET_PAR(iommu->base, 0);
784 SET_V2PCFG(iommu->base, 0, 0);
785 SET_M(iommu->base, 0, 0);
786
787 if (!par) {
788 pr_err("Invalid PAR value detected\n");
789 ret = -ENODEV;
790 goto fail;
791 }
792
793 ret = devm_request_threaded_irq(iommu->dev, iommu->irq, NULL,
794 msm_iommu_fault_handler,
795 IRQF_ONESHOT | IRQF_SHARED,
796 "msm_iommu_secure_irpt_handler",
797 iommu);
798 if (ret) {
799 pr_err("Request IRQ %d failed with ret=%d\n", iommu->irq, ret);
800 goto fail;
801 }
802
803 list_add(&iommu->dev_node, &qcom_iommu_devices);
Joerg Roedel42df43b2017-02-02 18:52:34 +0100804
805 ret = iommu_device_sysfs_add(&iommu->iommu, iommu->dev, NULL,
806 "msm-smmu.%pa", &ioaddr);
807 if (ret) {
808 pr_err("Could not add msm-smmu at %pa to sysfs\n", &ioaddr);
809 goto fail;
810 }
811
812 iommu_device_set_ops(&iommu->iommu, &msm_iommu_ops);
813 iommu_device_set_fwnode(&iommu->iommu, &pdev->dev.of_node->fwnode);
814
815 ret = iommu_device_register(&iommu->iommu);
816 if (ret) {
817 pr_err("Could not register msm-smmu at %pa\n", &ioaddr);
818 goto fail;
819 }
820
Robin Murphy892d7aa2018-01-09 16:17:25 +0000821 bus_set_iommu(&platform_bus_type, &msm_iommu_ops);
822
Sricharan Rf7f125e2016-06-13 17:06:04 +0530823 pr_info("device mapped at %p, irq %d with %d ctx banks\n",
824 iommu->base, iommu->irq, iommu->ncb);
825
826 return ret;
827fail:
828 clk_unprepare(iommu->clk);
829 clk_unprepare(iommu->pclk);
830 return ret;
831}
832
833static const struct of_device_id msm_iommu_dt_match[] = {
834 { .compatible = "qcom,apq8064-iommu" },
835 {}
836};
837
838static int msm_iommu_remove(struct platform_device *pdev)
839{
840 struct msm_iommu_dev *iommu = platform_get_drvdata(pdev);
841
842 clk_unprepare(iommu->clk);
843 clk_unprepare(iommu->pclk);
844 return 0;
845}
846
847static struct platform_driver msm_iommu_driver = {
848 .driver = {
849 .name = "msm_iommu",
850 .of_match_table = msm_iommu_dt_match,
851 },
852 .probe = msm_iommu_probe,
853 .remove = msm_iommu_remove,
854};
855
856static int __init msm_iommu_driver_init(void)
857{
858 int ret;
859
860 ret = platform_driver_register(&msm_iommu_driver);
861 if (ret != 0)
862 pr_err("Failed to register IOMMU driver\n");
863
864 return ret;
865}
Sricharan Rf7f125e2016-06-13 17:06:04 +0530866subsys_initcall(msm_iommu_driver_init);
Sricharan Rf7f125e2016-06-13 17:06:04 +0530867