1 /* Copyright (c) 2010-2011, Code Aurora Forum. All rights reserved.
3 * Author: Stepan Moskovchenko <stepanm@codeaurora.org>
5 * 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.
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.
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
20 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
21 #include <linux/kernel.h>
22 #include <linux/init.h>
23 #include <linux/platform_device.h>
24 #include <linux/errno.h>
26 #include <linux/io-pgtable.h>
27 #include <linux/interrupt.h>
28 #include <linux/list.h>
29 #include <linux/spinlock.h>
30 #include <linux/slab.h>
31 #include <linux/iommu.h>
32 #include <linux/clk.h>
33 #include <linux/err.h>
34 #include <linux/of_iommu.h>
36 #include <asm/cacheflush.h>
37 #include <asm/sizes.h>
39 #include "msm_iommu_hw-8xxx.h"
40 #include "msm_iommu.h"
42 #define MRC(reg, processor, op1, crn, crm, op2) \
43 __asm__ __volatile__ ( \
44 " mrc " #processor "," #op1 ", %0," #crn "," #crm "," #op2 "\n" \
47 /* bitmap of the page sizes currently supported */
48 #define MSM_IOMMU_PGSIZES (SZ_4K | SZ_64K | SZ_1M | SZ_16M)
50 DEFINE_SPINLOCK(msm_iommu_lock
);
51 static LIST_HEAD(qcom_iommu_devices
);
52 static struct iommu_ops msm_iommu_ops
;
55 struct list_head list_attached
;
56 struct iommu_domain domain
;
57 struct io_pgtable_cfg cfg
;
58 struct io_pgtable_ops
*iop
;
60 spinlock_t pgtlock
; /* pagetable lock */
63 static struct msm_priv
*to_msm_priv(struct iommu_domain
*dom
)
65 return container_of(dom
, struct msm_priv
, domain
);
68 static int __enable_clocks(struct msm_iommu_dev
*iommu
)
72 ret
= clk_enable(iommu
->pclk
);
77 ret
= clk_enable(iommu
->clk
);
79 clk_disable(iommu
->pclk
);
85 static void __disable_clocks(struct msm_iommu_dev
*iommu
)
88 clk_disable(iommu
->clk
);
89 clk_disable(iommu
->pclk
);
92 static void msm_iommu_reset(void __iomem
*base
, int ncb
)
98 SET_ESRRESTORE(base
, 0);
102 SET_TESTBUSCR(base
, 0);
104 SET_GLOBAL_TLBIALL(base
, 0);
105 SET_RPU_ACR(base
, 0);
106 SET_TLBLKCRWE(base
, 1);
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);
127 SET_CONTEXTIDR(base
, ctx
, 0);
131 static void __flush_iotlb(void *cookie
)
133 struct msm_priv
*priv
= cookie
;
134 struct msm_iommu_dev
*iommu
= NULL
;
135 struct msm_iommu_ctx_dev
*master
;
138 list_for_each_entry(iommu
, &priv
->list_attached
, dom_node
) {
139 ret
= __enable_clocks(iommu
);
143 list_for_each_entry(master
, &iommu
->ctx_list
, list
)
144 SET_CTX_TLBIALL(iommu
->base
, master
->num
, 0);
146 __disable_clocks(iommu
);
152 static void __flush_iotlb_range(unsigned long iova
, size_t size
,
153 size_t granule
, bool leaf
, void *cookie
)
155 struct msm_priv
*priv
= cookie
;
156 struct msm_iommu_dev
*iommu
= NULL
;
157 struct msm_iommu_ctx_dev
*master
;
161 list_for_each_entry(iommu
, &priv
->list_attached
, dom_node
) {
162 ret
= __enable_clocks(iommu
);
166 list_for_each_entry(master
, &iommu
->ctx_list
, list
) {
170 iova
|= GET_CONTEXTIDR_ASID(iommu
->base
,
172 SET_TLBIVA(iommu
->base
, master
->num
, iova
);
174 } while (temp_size
-= granule
);
177 __disable_clocks(iommu
);
184 static void __flush_iotlb_sync(void *cookie
)
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.
194 static 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
,
200 static int msm_iommu_alloc_ctx(unsigned long *map
, int start
, int end
)
205 idx
= find_next_zero_bit(map
, end
, start
);
208 } while (test_and_set_bit(idx
, map
));
213 static void msm_iommu_free_ctx(unsigned long *map
, int idx
)
218 static void config_mids(struct msm_iommu_dev
*iommu
,
219 struct msm_iommu_ctx_dev
*master
)
223 for (i
= 0; i
< master
->num_mids
; i
++) {
224 mid
= master
->mids
[i
];
227 SET_M2VCBR_N(iommu
->base
, mid
, 0);
228 SET_CBACR_N(iommu
->base
, ctx
, 0);
231 SET_VMID(iommu
->base
, mid
, 0);
233 /* Set the context number for that MID to this context */
234 SET_CBNDX(iommu
->base
, mid
, ctx
);
236 /* Set MID associated with this context bank to 0*/
237 SET_CBVMID(iommu
->base
, ctx
, 0);
239 /* Set the ASID for TLB tagging for this context */
240 SET_CONTEXTIDR_ASID(iommu
->base
, ctx
, ctx
);
242 /* Set security bit override to be Non-secure */
243 SET_NSCFG(iommu
->base
, mid
, 3);
247 static void __reset_context(void __iomem
*base
, int ctx
)
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);
269 static void __program_context(void __iomem
*base
, int ctx
,
270 struct msm_priv
*priv
)
272 __reset_context(base
, ctx
);
274 /* Turn on TEX Remap */
275 SET_TRE(base
, ctx
, 1);
276 SET_AFE(base
, ctx
, 1);
278 /* Set up HTW mode */
279 /* TLB miss configuration: perform HTW on miss */
280 SET_TLBMCFG(base
, ctx
, 0x3);
282 /* V2P configuration: HTW for access */
283 SET_V2PCFG(base
, ctx
, 0x3);
285 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]);
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
);
293 /* Invalidate the TLB for this context */
294 SET_CTX_TLBIALL(base
, ctx
, 0);
296 /* Set interrupt number to "secure" interrupt */
297 SET_IRPTNDX(base
, ctx
, 0);
299 /* Enable context fault interrupt */
300 SET_CFEIE(base
, ctx
, 1);
302 /* Stall access on a context fault and let the handler deal with it */
303 SET_CFCFG(base
, ctx
, 1);
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);
310 /* Turn on BFB prefetch */
311 SET_BFBDFE(base
, ctx
, 1);
317 static struct iommu_domain
*msm_iommu_domain_alloc(unsigned type
)
319 struct msm_priv
*priv
;
321 if (type
!= IOMMU_DOMAIN_UNMANAGED
)
324 priv
= kzalloc(sizeof(*priv
), GFP_KERNEL
);
328 INIT_LIST_HEAD(&priv
->list_attached
);
330 priv
->domain
.geometry
.aperture_start
= 0;
331 priv
->domain
.geometry
.aperture_end
= (1ULL << 32) - 1;
332 priv
->domain
.geometry
.force_aperture
= true;
334 return &priv
->domain
;
341 static void msm_iommu_domain_free(struct iommu_domain
*domain
)
343 struct msm_priv
*priv
;
346 spin_lock_irqsave(&msm_iommu_lock
, flags
);
347 priv
= to_msm_priv(domain
);
349 spin_unlock_irqrestore(&msm_iommu_lock
, flags
);
352 static int msm_iommu_domain_config(struct msm_priv
*priv
)
354 spin_lock_init(&priv
->pgtlock
);
356 priv
->cfg
= (struct io_pgtable_cfg
) {
357 .quirks
= IO_PGTABLE_QUIRK_TLBI_ON_MAP
,
358 .pgsize_bitmap
= msm_iommu_ops
.pgsize_bitmap
,
361 .tlb
= &msm_iommu_gather_ops
,
362 .iommu_dev
= priv
->dev
,
365 priv
->iop
= alloc_io_pgtable_ops(ARM_V7S
, &priv
->cfg
, priv
);
367 dev_err(priv
->dev
, "Failed to allocate pgtable\n");
371 msm_iommu_ops
.pgsize_bitmap
= priv
->cfg
.pgsize_bitmap
;
376 /* Must be called under msm_iommu_lock */
377 static struct msm_iommu_dev
*find_iommu_for_dev(struct device
*dev
)
379 struct msm_iommu_dev
*iommu
, *ret
= NULL
;
380 struct msm_iommu_ctx_dev
*master
;
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
,
386 if (master
->of_node
== dev
->of_node
) {
395 static int msm_iommu_add_device(struct device
*dev
)
397 struct msm_iommu_dev
*iommu
;
398 struct iommu_group
*group
;
401 spin_lock_irqsave(&msm_iommu_lock
, flags
);
402 iommu
= find_iommu_for_dev(dev
);
403 spin_unlock_irqrestore(&msm_iommu_lock
, flags
);
406 iommu_device_link(&iommu
->iommu
, dev
);
410 group
= iommu_group_get_for_dev(dev
);
412 return PTR_ERR(group
);
414 iommu_group_put(group
);
419 static void msm_iommu_remove_device(struct device
*dev
)
421 struct msm_iommu_dev
*iommu
;
424 spin_lock_irqsave(&msm_iommu_lock
, flags
);
425 iommu
= find_iommu_for_dev(dev
);
426 spin_unlock_irqrestore(&msm_iommu_lock
, flags
);
429 iommu_device_unlink(&iommu
->iommu
, dev
);
431 iommu_group_remove_device(dev
);
434 static int msm_iommu_attach_dev(struct iommu_domain
*domain
, struct device
*dev
)
438 struct msm_iommu_dev
*iommu
;
439 struct msm_priv
*priv
= to_msm_priv(domain
);
440 struct msm_iommu_ctx_dev
*master
;
443 msm_iommu_domain_config(priv
);
445 spin_lock_irqsave(&msm_iommu_lock
, flags
);
446 list_for_each_entry(iommu
, &qcom_iommu_devices
, dev_node
) {
447 master
= list_first_entry(&iommu
->ctx_list
,
448 struct msm_iommu_ctx_dev
,
450 if (master
->of_node
== dev
->of_node
) {
451 ret
= __enable_clocks(iommu
);
455 list_for_each_entry(master
, &iommu
->ctx_list
, list
) {
457 dev_err(dev
, "domain already attached");
462 msm_iommu_alloc_ctx(iommu
->context_map
,
464 if (IS_ERR_VALUE(master
->num
)) {
468 config_mids(iommu
, master
);
469 __program_context(iommu
->base
, master
->num
,
472 __disable_clocks(iommu
);
473 list_add(&iommu
->dom_node
, &priv
->list_attached
);
478 spin_unlock_irqrestore(&msm_iommu_lock
, flags
);
483 static void msm_iommu_detach_dev(struct iommu_domain
*domain
,
486 struct msm_priv
*priv
= to_msm_priv(domain
);
488 struct msm_iommu_dev
*iommu
;
489 struct msm_iommu_ctx_dev
*master
;
492 free_io_pgtable_ops(priv
->iop
);
494 spin_lock_irqsave(&msm_iommu_lock
, flags
);
495 list_for_each_entry(iommu
, &priv
->list_attached
, dom_node
) {
496 ret
= __enable_clocks(iommu
);
500 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
);
504 __disable_clocks(iommu
);
507 spin_unlock_irqrestore(&msm_iommu_lock
, flags
);
510 static int msm_iommu_map(struct iommu_domain
*domain
, unsigned long iova
,
511 phys_addr_t pa
, size_t len
, int prot
)
513 struct msm_priv
*priv
= to_msm_priv(domain
);
517 spin_lock_irqsave(&priv
->pgtlock
, flags
);
518 ret
= priv
->iop
->map(priv
->iop
, iova
, pa
, len
, prot
);
519 spin_unlock_irqrestore(&priv
->pgtlock
, flags
);
524 static size_t msm_iommu_unmap(struct iommu_domain
*domain
, unsigned long iova
,
527 struct msm_priv
*priv
= to_msm_priv(domain
);
530 spin_lock_irqsave(&priv
->pgtlock
, flags
);
531 len
= priv
->iop
->unmap(priv
->iop
, iova
, len
);
532 spin_unlock_irqrestore(&priv
->pgtlock
, flags
);
537 static phys_addr_t
msm_iommu_iova_to_phys(struct iommu_domain
*domain
,
540 struct msm_priv
*priv
;
541 struct msm_iommu_dev
*iommu
;
542 struct msm_iommu_ctx_dev
*master
;
547 spin_lock_irqsave(&msm_iommu_lock
, flags
);
549 priv
= to_msm_priv(domain
);
550 iommu
= list_first_entry(&priv
->list_attached
,
551 struct msm_iommu_dev
, dom_node
);
553 if (list_empty(&iommu
->ctx_list
))
556 master
= list_first_entry(&iommu
->ctx_list
,
557 struct msm_iommu_ctx_dev
, list
);
561 ret
= __enable_clocks(iommu
);
565 /* Invalidate context TLB */
566 SET_CTX_TLBIALL(iommu
->base
, master
->num
, 0);
567 SET_V2PPR(iommu
->base
, master
->num
, va
& V2Pxx_VA
);
569 par
= GET_PAR(iommu
->base
, master
->num
);
571 /* We are dealing with a supersection */
572 if (GET_NOFAULT_SS(iommu
->base
, master
->num
))
573 ret
= (par
& 0xFF000000) | (va
& 0x00FFFFFF);
574 else /* Upper 20 bits from PAR, lower 12 from VA */
575 ret
= (par
& 0xFFFFF000) | (va
& 0x00000FFF);
577 if (GET_FAULT(iommu
->base
, master
->num
))
580 __disable_clocks(iommu
);
582 spin_unlock_irqrestore(&msm_iommu_lock
, flags
);
586 static bool msm_iommu_capable(enum iommu_cap cap
)
591 static void print_ctx_regs(void __iomem
*base
, int ctx
)
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 " : "");
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
));
616 static void insert_iommu_master(struct device
*dev
,
617 struct msm_iommu_dev
**iommu
,
618 struct of_phandle_args
*spec
)
620 struct msm_iommu_ctx_dev
*master
= dev
->archdata
.iommu
;
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
;
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",
637 master
->mids
[master
->num_mids
++] = spec
->args
[0];
640 static int qcom_iommu_of_xlate(struct device
*dev
,
641 struct of_phandle_args
*spec
)
643 struct msm_iommu_dev
*iommu
;
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
)
652 if (!iommu
|| iommu
->dev
->of_node
!= spec
->np
) {
657 insert_iommu_master(dev
, &iommu
, spec
);
659 spin_unlock_irqrestore(&msm_iommu_lock
, flags
);
664 irqreturn_t
msm_iommu_fault_handler(int irq
, void *dev_id
)
666 struct msm_iommu_dev
*iommu
= dev_id
;
670 spin_lock(&msm_iommu_lock
);
673 pr_err("Invalid device ID in context interrupt handler\n");
677 pr_err("Unexpected IOMMU page fault!\n");
678 pr_err("base = %08x\n", (unsigned int)iommu
->base
);
680 ret
= __enable_clocks(iommu
);
684 for (i
= 0; i
< iommu
->ncb
; i
++) {
685 fsr
= GET_FSR(iommu
->base
, i
);
687 pr_err("Fault occurred in context %d.\n", i
);
688 pr_err("Interesting registers:\n");
689 print_ctx_regs(iommu
->base
, i
);
690 SET_FSR(iommu
->base
, i
, 0x4000000F);
693 __disable_clocks(iommu
);
695 spin_unlock(&msm_iommu_lock
);
699 static struct iommu_ops msm_iommu_ops
= {
700 .capable
= msm_iommu_capable
,
701 .domain_alloc
= msm_iommu_domain_alloc
,
702 .domain_free
= msm_iommu_domain_free
,
703 .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
,
708 .add_device
= msm_iommu_add_device
,
709 .remove_device
= msm_iommu_remove_device
,
710 .device_group
= generic_device_group
,
711 .pgsize_bitmap
= MSM_IOMMU_PGSIZES
,
712 .of_xlate
= qcom_iommu_of_xlate
,
715 static int msm_iommu_probe(struct platform_device
*pdev
)
718 resource_size_t ioaddr
;
719 struct msm_iommu_dev
*iommu
;
722 iommu
= devm_kzalloc(&pdev
->dev
, sizeof(*iommu
), GFP_KERNEL
);
726 iommu
->dev
= &pdev
->dev
;
727 INIT_LIST_HEAD(&iommu
->ctx_list
);
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
);
735 ret
= clk_prepare(iommu
->pclk
);
737 dev_err(iommu
->dev
, "could not prepare smmu_pclk\n");
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
);
748 ret
= clk_prepare(iommu
->clk
);
750 dev_err(iommu
->dev
, "could not prepare iommu_clk\n");
751 clk_unprepare(iommu
->pclk
);
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
);
764 iommu
->irq
= platform_get_irq(pdev
, 0);
765 if (iommu
->irq
< 0) {
766 dev_err(iommu
->dev
, "could not get iommu irq\n");
771 ret
= of_property_read_u32(iommu
->dev
->of_node
, "qcom,ncb", &val
);
773 dev_err(iommu
->dev
, "could not get ncb\n");
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);
788 pr_err("Invalid PAR value detected\n");
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",
799 pr_err("Request IRQ %d failed with ret=%d\n", iommu
->irq
, ret
);
803 list_add(&iommu
->dev_node
, &qcom_iommu_devices
);
805 ret
= iommu_device_sysfs_add(&iommu
->iommu
, iommu
->dev
, NULL
,
806 "msm-smmu.%pa", &ioaddr
);
808 pr_err("Could not add msm-smmu at %pa to sysfs\n", &ioaddr
);
812 iommu_device_set_ops(&iommu
->iommu
, &msm_iommu_ops
);
813 iommu_device_set_fwnode(&iommu
->iommu
, &pdev
->dev
.of_node
->fwnode
);
815 ret
= iommu_device_register(&iommu
->iommu
);
817 pr_err("Could not register msm-smmu at %pa\n", &ioaddr
);
821 bus_set_iommu(&platform_bus_type
, &msm_iommu_ops
);
823 pr_info("device mapped at %p, irq %d with %d ctx banks\n",
824 iommu
->base
, iommu
->irq
, iommu
->ncb
);
828 clk_unprepare(iommu
->clk
);
829 clk_unprepare(iommu
->pclk
);
833 static const struct of_device_id msm_iommu_dt_match
[] = {
834 { .compatible
= "qcom,apq8064-iommu" },
838 static int msm_iommu_remove(struct platform_device
*pdev
)
840 struct msm_iommu_dev
*iommu
= platform_get_drvdata(pdev
);
842 clk_unprepare(iommu
->clk
);
843 clk_unprepare(iommu
->pclk
);
847 static struct platform_driver msm_iommu_driver
= {
850 .of_match_table
= msm_iommu_dt_match
,
852 .probe
= msm_iommu_probe
,
853 .remove
= msm_iommu_remove
,
856 static int __init
msm_iommu_driver_init(void)
860 ret
= platform_driver_register(&msm_iommu_driver
);
862 pr_err("Failed to register IOMMU driver\n");
866 subsys_initcall(msm_iommu_driver_init
);