1 // SPDX-License-Identifier: GPL-2.0-only
3 * IOMMU API for QCOM secure IOMMUs. Somewhat based on arm-smmu.c
5 * Copyright (C) 2013 ARM Limited
6 * Copyright (C) 2017 Red Hat
9 #include <linux/atomic.h>
10 #include <linux/bitfield.h>
11 #include <linux/clk.h>
12 #include <linux/delay.h>
13 #include <linux/dma-iommu.h>
14 #include <linux/dma-mapping.h>
15 #include <linux/err.h>
16 #include <linux/interrupt.h>
18 #include <linux/io-64-nonatomic-hi-lo.h>
19 #include <linux/io-pgtable.h>
20 #include <linux/iommu.h>
21 #include <linux/iopoll.h>
22 #include <linux/kconfig.h>
23 #include <linux/init.h>
24 #include <linux/mutex.h>
26 #include <linux/of_address.h>
27 #include <linux/of_device.h>
28 #include <linux/of_iommu.h>
29 #include <linux/platform_device.h>
31 #include <linux/pm_runtime.h>
32 #include <linux/qcom_scm.h>
33 #include <linux/slab.h>
34 #include <linux/spinlock.h>
38 #define SMMU_INTR_SEL_NS 0x2000
47 struct qcom_iommu_ctx
;
49 struct qcom_iommu_dev
{
50 /* IOMMU core code handle */
51 struct iommu_device iommu
;
53 struct clk_bulk_data clks
[CLK_NUM
];
54 void __iomem
*local_base
;
57 struct qcom_iommu_ctx
*ctxs
[]; /* indexed by asid-1 */
60 struct qcom_iommu_ctx
{
64 u8 asid
; /* asid and ctx bank # are 1:1 */
65 struct iommu_domain
*domain
;
68 struct qcom_iommu_domain
{
69 struct io_pgtable_ops
*pgtbl_ops
;
70 spinlock_t pgtbl_lock
;
71 struct mutex init_mutex
; /* Protects iommu pointer */
72 struct iommu_domain domain
;
73 struct qcom_iommu_dev
*iommu
;
74 struct iommu_fwspec
*fwspec
;
77 static struct qcom_iommu_domain
*to_qcom_iommu_domain(struct iommu_domain
*dom
)
79 return container_of(dom
, struct qcom_iommu_domain
, domain
);
82 static const struct iommu_ops qcom_iommu_ops
;
84 static struct qcom_iommu_dev
* to_iommu(struct device
*dev
)
86 struct iommu_fwspec
*fwspec
= dev_iommu_fwspec_get(dev
);
88 if (!fwspec
|| fwspec
->ops
!= &qcom_iommu_ops
)
91 return dev_iommu_priv_get(dev
);
94 static struct qcom_iommu_ctx
* to_ctx(struct qcom_iommu_domain
*d
, unsigned asid
)
96 struct qcom_iommu_dev
*qcom_iommu
= d
->iommu
;
99 return qcom_iommu
->ctxs
[asid
- 1];
103 iommu_writel(struct qcom_iommu_ctx
*ctx
, unsigned reg
, u32 val
)
105 writel_relaxed(val
, ctx
->base
+ reg
);
109 iommu_writeq(struct qcom_iommu_ctx
*ctx
, unsigned reg
, u64 val
)
111 writeq_relaxed(val
, ctx
->base
+ reg
);
115 iommu_readl(struct qcom_iommu_ctx
*ctx
, unsigned reg
)
117 return readl_relaxed(ctx
->base
+ reg
);
121 iommu_readq(struct qcom_iommu_ctx
*ctx
, unsigned reg
)
123 return readq_relaxed(ctx
->base
+ reg
);
126 static void qcom_iommu_tlb_sync(void *cookie
)
128 struct qcom_iommu_domain
*qcom_domain
= cookie
;
129 struct iommu_fwspec
*fwspec
= qcom_domain
->fwspec
;
132 for (i
= 0; i
< fwspec
->num_ids
; i
++) {
133 struct qcom_iommu_ctx
*ctx
= to_ctx(qcom_domain
, fwspec
->ids
[i
]);
134 unsigned int val
, ret
;
136 iommu_writel(ctx
, ARM_SMMU_CB_TLBSYNC
, 0);
138 ret
= readl_poll_timeout(ctx
->base
+ ARM_SMMU_CB_TLBSTATUS
, val
,
139 (val
& 0x1) == 0, 0, 5000000);
141 dev_err(ctx
->dev
, "timeout waiting for TLB SYNC\n");
145 static void qcom_iommu_tlb_inv_context(void *cookie
)
147 struct qcom_iommu_domain
*qcom_domain
= cookie
;
148 struct iommu_fwspec
*fwspec
= qcom_domain
->fwspec
;
151 for (i
= 0; i
< fwspec
->num_ids
; i
++) {
152 struct qcom_iommu_ctx
*ctx
= to_ctx(qcom_domain
, fwspec
->ids
[i
]);
153 iommu_writel(ctx
, ARM_SMMU_CB_S1_TLBIASID
, ctx
->asid
);
156 qcom_iommu_tlb_sync(cookie
);
159 static void qcom_iommu_tlb_inv_range_nosync(unsigned long iova
, size_t size
,
160 size_t granule
, bool leaf
, void *cookie
)
162 struct qcom_iommu_domain
*qcom_domain
= cookie
;
163 struct iommu_fwspec
*fwspec
= qcom_domain
->fwspec
;
166 reg
= leaf
? ARM_SMMU_CB_S1_TLBIVAL
: ARM_SMMU_CB_S1_TLBIVA
;
168 for (i
= 0; i
< fwspec
->num_ids
; i
++) {
169 struct qcom_iommu_ctx
*ctx
= to_ctx(qcom_domain
, fwspec
->ids
[i
]);
172 iova
= (iova
>> 12) << 12;
175 iommu_writel(ctx
, reg
, iova
);
177 } while (s
-= granule
);
181 static void qcom_iommu_tlb_flush_walk(unsigned long iova
, size_t size
,
182 size_t granule
, void *cookie
)
184 qcom_iommu_tlb_inv_range_nosync(iova
, size
, granule
, false, cookie
);
185 qcom_iommu_tlb_sync(cookie
);
188 static void qcom_iommu_tlb_add_page(struct iommu_iotlb_gather
*gather
,
189 unsigned long iova
, size_t granule
,
192 qcom_iommu_tlb_inv_range_nosync(iova
, granule
, granule
, true, cookie
);
195 static const struct iommu_flush_ops qcom_flush_ops
= {
196 .tlb_flush_all
= qcom_iommu_tlb_inv_context
,
197 .tlb_flush_walk
= qcom_iommu_tlb_flush_walk
,
198 .tlb_add_page
= qcom_iommu_tlb_add_page
,
201 static irqreturn_t
qcom_iommu_fault(int irq
, void *dev
)
203 struct qcom_iommu_ctx
*ctx
= dev
;
207 fsr
= iommu_readl(ctx
, ARM_SMMU_CB_FSR
);
209 if (!(fsr
& ARM_SMMU_FSR_FAULT
))
212 fsynr
= iommu_readl(ctx
, ARM_SMMU_CB_FSYNR0
);
213 iova
= iommu_readq(ctx
, ARM_SMMU_CB_FAR
);
215 if (!report_iommu_fault(ctx
->domain
, ctx
->dev
, iova
, 0)) {
216 dev_err_ratelimited(ctx
->dev
,
217 "Unhandled context fault: fsr=0x%x, "
218 "iova=0x%016llx, fsynr=0x%x, cb=%d\n",
219 fsr
, iova
, fsynr
, ctx
->asid
);
222 iommu_writel(ctx
, ARM_SMMU_CB_FSR
, fsr
);
223 iommu_writel(ctx
, ARM_SMMU_CB_RESUME
, ARM_SMMU_RESUME_TERMINATE
);
228 static int qcom_iommu_init_domain(struct iommu_domain
*domain
,
229 struct qcom_iommu_dev
*qcom_iommu
,
232 struct qcom_iommu_domain
*qcom_domain
= to_qcom_iommu_domain(domain
);
233 struct iommu_fwspec
*fwspec
= dev_iommu_fwspec_get(dev
);
234 struct io_pgtable_ops
*pgtbl_ops
;
235 struct io_pgtable_cfg pgtbl_cfg
;
239 mutex_lock(&qcom_domain
->init_mutex
);
240 if (qcom_domain
->iommu
)
243 pgtbl_cfg
= (struct io_pgtable_cfg
) {
244 .pgsize_bitmap
= qcom_iommu_ops
.pgsize_bitmap
,
247 .tlb
= &qcom_flush_ops
,
248 .iommu_dev
= qcom_iommu
->dev
,
251 qcom_domain
->iommu
= qcom_iommu
;
252 qcom_domain
->fwspec
= fwspec
;
254 pgtbl_ops
= alloc_io_pgtable_ops(ARM_32_LPAE_S1
, &pgtbl_cfg
, qcom_domain
);
256 dev_err(qcom_iommu
->dev
, "failed to allocate pagetable ops\n");
258 goto out_clear_iommu
;
261 /* Update the domain's page sizes to reflect the page table format */
262 domain
->pgsize_bitmap
= pgtbl_cfg
.pgsize_bitmap
;
263 domain
->geometry
.aperture_end
= (1ULL << pgtbl_cfg
.ias
) - 1;
264 domain
->geometry
.force_aperture
= true;
266 for (i
= 0; i
< fwspec
->num_ids
; i
++) {
267 struct qcom_iommu_ctx
*ctx
= to_ctx(qcom_domain
, fwspec
->ids
[i
]);
269 if (!ctx
->secure_init
) {
270 ret
= qcom_scm_restore_sec_cfg(qcom_iommu
->sec_id
, ctx
->asid
);
272 dev_err(qcom_iommu
->dev
, "secure init failed: %d\n", ret
);
273 goto out_clear_iommu
;
275 ctx
->secure_init
= true;
279 iommu_writeq(ctx
, ARM_SMMU_CB_TTBR0
,
280 pgtbl_cfg
.arm_lpae_s1_cfg
.ttbr
|
281 FIELD_PREP(ARM_SMMU_TTBRn_ASID
, ctx
->asid
));
282 iommu_writeq(ctx
, ARM_SMMU_CB_TTBR1
, 0);
285 iommu_writel(ctx
, ARM_SMMU_CB_TCR2
,
286 arm_smmu_lpae_tcr2(&pgtbl_cfg
));
287 iommu_writel(ctx
, ARM_SMMU_CB_TCR
,
288 arm_smmu_lpae_tcr(&pgtbl_cfg
) | ARM_SMMU_TCR_EAE
);
290 /* MAIRs (stage-1 only) */
291 iommu_writel(ctx
, ARM_SMMU_CB_S1_MAIR0
,
292 pgtbl_cfg
.arm_lpae_s1_cfg
.mair
);
293 iommu_writel(ctx
, ARM_SMMU_CB_S1_MAIR1
,
294 pgtbl_cfg
.arm_lpae_s1_cfg
.mair
>> 32);
297 reg
= ARM_SMMU_SCTLR_CFIE
| ARM_SMMU_SCTLR_CFRE
|
298 ARM_SMMU_SCTLR_AFE
| ARM_SMMU_SCTLR_TRE
|
299 ARM_SMMU_SCTLR_M
| ARM_SMMU_SCTLR_S1_ASIDPNE
|
300 ARM_SMMU_SCTLR_CFCFG
;
302 if (IS_ENABLED(CONFIG_CPU_BIG_ENDIAN
))
303 reg
|= ARM_SMMU_SCTLR_E
;
305 iommu_writel(ctx
, ARM_SMMU_CB_SCTLR
, reg
);
307 ctx
->domain
= domain
;
310 mutex_unlock(&qcom_domain
->init_mutex
);
312 /* Publish page table ops for map/unmap */
313 qcom_domain
->pgtbl_ops
= pgtbl_ops
;
318 qcom_domain
->iommu
= NULL
;
320 mutex_unlock(&qcom_domain
->init_mutex
);
324 static struct iommu_domain
*qcom_iommu_domain_alloc(unsigned type
)
326 struct qcom_iommu_domain
*qcom_domain
;
328 if (type
!= IOMMU_DOMAIN_UNMANAGED
&& type
!= IOMMU_DOMAIN_DMA
)
331 * Allocate the domain and initialise some of its data structures.
332 * We can't really do anything meaningful until we've added a
335 qcom_domain
= kzalloc(sizeof(*qcom_domain
), GFP_KERNEL
);
339 if (type
== IOMMU_DOMAIN_DMA
&&
340 iommu_get_dma_cookie(&qcom_domain
->domain
)) {
345 mutex_init(&qcom_domain
->init_mutex
);
346 spin_lock_init(&qcom_domain
->pgtbl_lock
);
348 return &qcom_domain
->domain
;
351 static void qcom_iommu_domain_free(struct iommu_domain
*domain
)
353 struct qcom_iommu_domain
*qcom_domain
= to_qcom_iommu_domain(domain
);
355 iommu_put_dma_cookie(domain
);
357 if (qcom_domain
->iommu
) {
359 * NOTE: unmap can be called after client device is powered
360 * off, for example, with GPUs or anything involving dma-buf.
361 * So we cannot rely on the device_link. Make sure the IOMMU
362 * is on to avoid unclocked accesses in the TLB inv path:
364 pm_runtime_get_sync(qcom_domain
->iommu
->dev
);
365 free_io_pgtable_ops(qcom_domain
->pgtbl_ops
);
366 pm_runtime_put_sync(qcom_domain
->iommu
->dev
);
372 static int qcom_iommu_attach_dev(struct iommu_domain
*domain
, struct device
*dev
)
374 struct qcom_iommu_dev
*qcom_iommu
= to_iommu(dev
);
375 struct qcom_iommu_domain
*qcom_domain
= to_qcom_iommu_domain(domain
);
379 dev_err(dev
, "cannot attach to IOMMU, is it on the same bus?\n");
383 /* Ensure that the domain is finalized */
384 pm_runtime_get_sync(qcom_iommu
->dev
);
385 ret
= qcom_iommu_init_domain(domain
, qcom_iommu
, dev
);
386 pm_runtime_put_sync(qcom_iommu
->dev
);
391 * Sanity check the domain. We don't support domains across
394 if (qcom_domain
->iommu
!= qcom_iommu
) {
395 dev_err(dev
, "cannot attach to IOMMU %s while already "
396 "attached to domain on IOMMU %s\n",
397 dev_name(qcom_domain
->iommu
->dev
),
398 dev_name(qcom_iommu
->dev
));
405 static void qcom_iommu_detach_dev(struct iommu_domain
*domain
, struct device
*dev
)
407 struct qcom_iommu_domain
*qcom_domain
= to_qcom_iommu_domain(domain
);
408 struct iommu_fwspec
*fwspec
= dev_iommu_fwspec_get(dev
);
409 struct qcom_iommu_dev
*qcom_iommu
= to_iommu(dev
);
412 if (WARN_ON(!qcom_domain
->iommu
))
415 pm_runtime_get_sync(qcom_iommu
->dev
);
416 for (i
= 0; i
< fwspec
->num_ids
; i
++) {
417 struct qcom_iommu_ctx
*ctx
= to_ctx(qcom_domain
, fwspec
->ids
[i
]);
419 /* Disable the context bank: */
420 iommu_writel(ctx
, ARM_SMMU_CB_SCTLR
, 0);
424 pm_runtime_put_sync(qcom_iommu
->dev
);
427 static int qcom_iommu_map(struct iommu_domain
*domain
, unsigned long iova
,
428 phys_addr_t paddr
, size_t size
, int prot
, gfp_t gfp
)
432 struct qcom_iommu_domain
*qcom_domain
= to_qcom_iommu_domain(domain
);
433 struct io_pgtable_ops
*ops
= qcom_domain
->pgtbl_ops
;
438 spin_lock_irqsave(&qcom_domain
->pgtbl_lock
, flags
);
439 ret
= ops
->map(ops
, iova
, paddr
, size
, prot
, GFP_ATOMIC
);
440 spin_unlock_irqrestore(&qcom_domain
->pgtbl_lock
, flags
);
444 static size_t qcom_iommu_unmap(struct iommu_domain
*domain
, unsigned long iova
,
445 size_t size
, struct iommu_iotlb_gather
*gather
)
449 struct qcom_iommu_domain
*qcom_domain
= to_qcom_iommu_domain(domain
);
450 struct io_pgtable_ops
*ops
= qcom_domain
->pgtbl_ops
;
455 /* NOTE: unmap can be called after client device is powered off,
456 * for example, with GPUs or anything involving dma-buf. So we
457 * cannot rely on the device_link. Make sure the IOMMU is on to
458 * avoid unclocked accesses in the TLB inv path:
460 pm_runtime_get_sync(qcom_domain
->iommu
->dev
);
461 spin_lock_irqsave(&qcom_domain
->pgtbl_lock
, flags
);
462 ret
= ops
->unmap(ops
, iova
, size
, gather
);
463 spin_unlock_irqrestore(&qcom_domain
->pgtbl_lock
, flags
);
464 pm_runtime_put_sync(qcom_domain
->iommu
->dev
);
469 static void qcom_iommu_flush_iotlb_all(struct iommu_domain
*domain
)
471 struct qcom_iommu_domain
*qcom_domain
= to_qcom_iommu_domain(domain
);
472 struct io_pgtable
*pgtable
= container_of(qcom_domain
->pgtbl_ops
,
473 struct io_pgtable
, ops
);
474 if (!qcom_domain
->pgtbl_ops
)
477 pm_runtime_get_sync(qcom_domain
->iommu
->dev
);
478 qcom_iommu_tlb_sync(pgtable
->cookie
);
479 pm_runtime_put_sync(qcom_domain
->iommu
->dev
);
482 static void qcom_iommu_iotlb_sync(struct iommu_domain
*domain
,
483 struct iommu_iotlb_gather
*gather
)
485 qcom_iommu_flush_iotlb_all(domain
);
488 static phys_addr_t
qcom_iommu_iova_to_phys(struct iommu_domain
*domain
,
493 struct qcom_iommu_domain
*qcom_domain
= to_qcom_iommu_domain(domain
);
494 struct io_pgtable_ops
*ops
= qcom_domain
->pgtbl_ops
;
499 spin_lock_irqsave(&qcom_domain
->pgtbl_lock
, flags
);
500 ret
= ops
->iova_to_phys(ops
, iova
);
501 spin_unlock_irqrestore(&qcom_domain
->pgtbl_lock
, flags
);
506 static bool qcom_iommu_capable(enum iommu_cap cap
)
509 case IOMMU_CAP_CACHE_COHERENCY
:
511 * Return true here as the SMMU can always send out coherent
515 case IOMMU_CAP_NOEXEC
:
522 static struct iommu_device
*qcom_iommu_probe_device(struct device
*dev
)
524 struct qcom_iommu_dev
*qcom_iommu
= to_iommu(dev
);
525 struct device_link
*link
;
528 return ERR_PTR(-ENODEV
);
531 * Establish the link between iommu and master, so that the
532 * iommu gets runtime enabled/disabled as per the master's
535 link
= device_link_add(dev
, qcom_iommu
->dev
, DL_FLAG_PM_RUNTIME
);
537 dev_err(qcom_iommu
->dev
, "Unable to create device link between %s and %s\n",
538 dev_name(qcom_iommu
->dev
), dev_name(dev
));
539 return ERR_PTR(-ENODEV
);
542 return &qcom_iommu
->iommu
;
545 static void qcom_iommu_release_device(struct device
*dev
)
547 struct qcom_iommu_dev
*qcom_iommu
= to_iommu(dev
);
552 iommu_fwspec_free(dev
);
555 static int qcom_iommu_of_xlate(struct device
*dev
, struct of_phandle_args
*args
)
557 struct qcom_iommu_dev
*qcom_iommu
;
558 struct platform_device
*iommu_pdev
;
559 unsigned asid
= args
->args
[0];
561 if (args
->args_count
!= 1) {
562 dev_err(dev
, "incorrect number of iommu params found for %s "
563 "(found %d, expected 1)\n",
564 args
->np
->full_name
, args
->args_count
);
568 iommu_pdev
= of_find_device_by_node(args
->np
);
569 if (WARN_ON(!iommu_pdev
))
572 qcom_iommu
= platform_get_drvdata(iommu_pdev
);
574 /* make sure the asid specified in dt is valid, so we don't have
575 * to sanity check this elsewhere, since 'asid - 1' is used to
576 * index into qcom_iommu->ctxs:
578 if (WARN_ON(asid
< 1) ||
579 WARN_ON(asid
> qcom_iommu
->num_ctxs
)) {
580 put_device(&iommu_pdev
->dev
);
584 if (!dev_iommu_priv_get(dev
)) {
585 dev_iommu_priv_set(dev
, qcom_iommu
);
587 /* make sure devices iommus dt node isn't referring to
588 * multiple different iommu devices. Multiple context
589 * banks are ok, but multiple devices are not:
591 if (WARN_ON(qcom_iommu
!= dev_iommu_priv_get(dev
))) {
592 put_device(&iommu_pdev
->dev
);
597 return iommu_fwspec_add_ids(dev
, &asid
, 1);
600 static const struct iommu_ops qcom_iommu_ops
= {
601 .capable
= qcom_iommu_capable
,
602 .domain_alloc
= qcom_iommu_domain_alloc
,
603 .domain_free
= qcom_iommu_domain_free
,
604 .attach_dev
= qcom_iommu_attach_dev
,
605 .detach_dev
= qcom_iommu_detach_dev
,
606 .map
= qcom_iommu_map
,
607 .unmap
= qcom_iommu_unmap
,
608 .flush_iotlb_all
= qcom_iommu_flush_iotlb_all
,
609 .iotlb_sync
= qcom_iommu_iotlb_sync
,
610 .iova_to_phys
= qcom_iommu_iova_to_phys
,
611 .probe_device
= qcom_iommu_probe_device
,
612 .release_device
= qcom_iommu_release_device
,
613 .device_group
= generic_device_group
,
614 .of_xlate
= qcom_iommu_of_xlate
,
615 .pgsize_bitmap
= SZ_4K
| SZ_64K
| SZ_1M
| SZ_16M
,
618 static int qcom_iommu_sec_ptbl_init(struct device
*dev
)
621 unsigned int spare
= 0;
625 static bool allocated
= false;
631 ret
= qcom_scm_iommu_secure_ptbl_size(spare
, &psize
);
633 dev_err(dev
, "failed to get iommu secure pgtable size (%d)\n",
638 dev_info(dev
, "iommu sec: pgtable size: %zu\n", psize
);
640 attrs
= DMA_ATTR_NO_KERNEL_MAPPING
;
642 cpu_addr
= dma_alloc_attrs(dev
, psize
, &paddr
, GFP_KERNEL
, attrs
);
644 dev_err(dev
, "failed to allocate %zu bytes for pgtable\n",
649 ret
= qcom_scm_iommu_secure_ptbl_init(paddr
, psize
, spare
);
651 dev_err(dev
, "failed to init iommu pgtable (%d)\n", ret
);
659 dma_free_attrs(dev
, psize
, cpu_addr
, paddr
, attrs
);
663 static int get_asid(const struct device_node
*np
)
667 /* read the "reg" property directly to get the relative address
668 * of the context bank, and calculate the asid from that:
670 if (of_property_read_u32_index(np
, "reg", 0, ®
))
673 return reg
/ 0x1000; /* context banks are 0x1000 apart */
676 static int qcom_iommu_ctx_probe(struct platform_device
*pdev
)
678 struct qcom_iommu_ctx
*ctx
;
679 struct device
*dev
= &pdev
->dev
;
680 struct qcom_iommu_dev
*qcom_iommu
= dev_get_drvdata(dev
->parent
);
681 struct resource
*res
;
684 ctx
= devm_kzalloc(dev
, sizeof(*ctx
), GFP_KERNEL
);
689 platform_set_drvdata(pdev
, ctx
);
691 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
692 ctx
->base
= devm_ioremap_resource(dev
, res
);
693 if (IS_ERR(ctx
->base
))
694 return PTR_ERR(ctx
->base
);
696 irq
= platform_get_irq(pdev
, 0);
700 /* clear IRQs before registering fault handler, just in case the
701 * boot-loader left us a surprise:
703 iommu_writel(ctx
, ARM_SMMU_CB_FSR
, iommu_readl(ctx
, ARM_SMMU_CB_FSR
));
705 ret
= devm_request_irq(dev
, irq
,
711 dev_err(dev
, "failed to request IRQ %u\n", irq
);
715 ret
= get_asid(dev
->of_node
);
717 dev_err(dev
, "missing reg property\n");
723 dev_dbg(dev
, "found asid %u\n", ctx
->asid
);
725 qcom_iommu
->ctxs
[ctx
->asid
- 1] = ctx
;
730 static int qcom_iommu_ctx_remove(struct platform_device
*pdev
)
732 struct qcom_iommu_dev
*qcom_iommu
= dev_get_drvdata(pdev
->dev
.parent
);
733 struct qcom_iommu_ctx
*ctx
= platform_get_drvdata(pdev
);
735 platform_set_drvdata(pdev
, NULL
);
737 qcom_iommu
->ctxs
[ctx
->asid
- 1] = NULL
;
742 static const struct of_device_id ctx_of_match
[] = {
743 { .compatible
= "qcom,msm-iommu-v1-ns" },
744 { .compatible
= "qcom,msm-iommu-v1-sec" },
748 static struct platform_driver qcom_iommu_ctx_driver
= {
750 .name
= "qcom-iommu-ctx",
751 .of_match_table
= ctx_of_match
,
753 .probe
= qcom_iommu_ctx_probe
,
754 .remove
= qcom_iommu_ctx_remove
,
757 static bool qcom_iommu_has_secure_context(struct qcom_iommu_dev
*qcom_iommu
)
759 struct device_node
*child
;
761 for_each_child_of_node(qcom_iommu
->dev
->of_node
, child
)
762 if (of_device_is_compatible(child
, "qcom,msm-iommu-v1-sec"))
768 static int qcom_iommu_device_probe(struct platform_device
*pdev
)
770 struct device_node
*child
;
771 struct qcom_iommu_dev
*qcom_iommu
;
772 struct device
*dev
= &pdev
->dev
;
773 struct resource
*res
;
775 int ret
, max_asid
= 0;
777 /* find the max asid (which is 1:1 to ctx bank idx), so we know how
778 * many child ctx devices we have:
780 for_each_child_of_node(dev
->of_node
, child
)
781 max_asid
= max(max_asid
, get_asid(child
));
783 qcom_iommu
= devm_kzalloc(dev
, struct_size(qcom_iommu
, ctxs
, max_asid
),
787 qcom_iommu
->num_ctxs
= max_asid
;
788 qcom_iommu
->dev
= dev
;
790 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
792 qcom_iommu
->local_base
= devm_ioremap_resource(dev
, res
);
793 if (IS_ERR(qcom_iommu
->local_base
))
794 return PTR_ERR(qcom_iommu
->local_base
);
797 clk
= devm_clk_get(dev
, "iface");
799 dev_err(dev
, "failed to get iface clock\n");
802 qcom_iommu
->clks
[CLK_IFACE
].clk
= clk
;
804 clk
= devm_clk_get(dev
, "bus");
806 dev_err(dev
, "failed to get bus clock\n");
809 qcom_iommu
->clks
[CLK_BUS
].clk
= clk
;
811 clk
= devm_clk_get_optional(dev
, "tbu");
813 dev_err(dev
, "failed to get tbu clock\n");
816 qcom_iommu
->clks
[CLK_TBU
].clk
= clk
;
818 if (of_property_read_u32(dev
->of_node
, "qcom,iommu-secure-id",
819 &qcom_iommu
->sec_id
)) {
820 dev_err(dev
, "missing qcom,iommu-secure-id property\n");
824 if (qcom_iommu_has_secure_context(qcom_iommu
)) {
825 ret
= qcom_iommu_sec_ptbl_init(dev
);
827 dev_err(dev
, "cannot init secure pg table(%d)\n", ret
);
832 platform_set_drvdata(pdev
, qcom_iommu
);
834 pm_runtime_enable(dev
);
836 /* register context bank devices, which are child nodes: */
837 ret
= devm_of_platform_populate(dev
);
839 dev_err(dev
, "Failed to populate iommu contexts\n");
843 ret
= iommu_device_sysfs_add(&qcom_iommu
->iommu
, dev
, NULL
,
846 dev_err(dev
, "Failed to register iommu in sysfs\n");
850 iommu_device_set_ops(&qcom_iommu
->iommu
, &qcom_iommu_ops
);
851 iommu_device_set_fwnode(&qcom_iommu
->iommu
, dev
->fwnode
);
853 ret
= iommu_device_register(&qcom_iommu
->iommu
);
855 dev_err(dev
, "Failed to register iommu\n");
859 bus_set_iommu(&platform_bus_type
, &qcom_iommu_ops
);
861 if (qcom_iommu
->local_base
) {
862 pm_runtime_get_sync(dev
);
863 writel_relaxed(0xffffffff, qcom_iommu
->local_base
+ SMMU_INTR_SEL_NS
);
864 pm_runtime_put_sync(dev
);
870 static int qcom_iommu_device_remove(struct platform_device
*pdev
)
872 struct qcom_iommu_dev
*qcom_iommu
= platform_get_drvdata(pdev
);
874 bus_set_iommu(&platform_bus_type
, NULL
);
876 pm_runtime_force_suspend(&pdev
->dev
);
877 platform_set_drvdata(pdev
, NULL
);
878 iommu_device_sysfs_remove(&qcom_iommu
->iommu
);
879 iommu_device_unregister(&qcom_iommu
->iommu
);
884 static int __maybe_unused
qcom_iommu_resume(struct device
*dev
)
886 struct qcom_iommu_dev
*qcom_iommu
= dev_get_drvdata(dev
);
888 return clk_bulk_prepare_enable(CLK_NUM
, qcom_iommu
->clks
);
891 static int __maybe_unused
qcom_iommu_suspend(struct device
*dev
)
893 struct qcom_iommu_dev
*qcom_iommu
= dev_get_drvdata(dev
);
895 clk_bulk_disable_unprepare(CLK_NUM
, qcom_iommu
->clks
);
900 static const struct dev_pm_ops qcom_iommu_pm_ops
= {
901 SET_RUNTIME_PM_OPS(qcom_iommu_suspend
, qcom_iommu_resume
, NULL
)
902 SET_SYSTEM_SLEEP_PM_OPS(pm_runtime_force_suspend
,
903 pm_runtime_force_resume
)
906 static const struct of_device_id qcom_iommu_of_match
[] = {
907 { .compatible
= "qcom,msm-iommu-v1" },
911 static struct platform_driver qcom_iommu_driver
= {
913 .name
= "qcom-iommu",
914 .of_match_table
= qcom_iommu_of_match
,
915 .pm
= &qcom_iommu_pm_ops
,
917 .probe
= qcom_iommu_device_probe
,
918 .remove
= qcom_iommu_device_remove
,
921 static int __init
qcom_iommu_init(void)
925 ret
= platform_driver_register(&qcom_iommu_ctx_driver
);
929 ret
= platform_driver_register(&qcom_iommu_driver
);
931 platform_driver_unregister(&qcom_iommu_ctx_driver
);
935 device_initcall(qcom_iommu_init
);