2 * IOMMU API for ARM architected SMMU implementations.
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License
14 * along with this program; if not, write to the Free Software
15 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17 * Copyright (C) 2013 ARM Limited
19 * Author: Will Deacon <will.deacon@arm.com>
21 * This driver currently supports:
22 * - SMMUv1 and v2 implementations
23 * - Stream-matching and stream-indexing
24 * - v7/v8 long-descriptor format
25 * - Non-secure access to the SMMU
26 * - 4k and 64k pages, with contiguous pte hints.
27 * - Up to 48-bit addressing (dependent on VA_BITS)
28 * - Context fault reporting
31 #define pr_fmt(fmt) "arm-smmu: " fmt
33 #include <linux/delay.h>
34 #include <linux/dma-mapping.h>
35 #include <linux/err.h>
36 #include <linux/interrupt.h>
38 #include <linux/iommu.h>
40 #include <linux/module.h>
42 #include <linux/pci.h>
43 #include <linux/platform_device.h>
44 #include <linux/slab.h>
45 #include <linux/spinlock.h>
47 #include <linux/amba/bus.h>
49 #include <asm/pgalloc.h>
51 /* Maximum number of stream IDs assigned to a single device */
52 #define MAX_MASTER_STREAMIDS MAX_PHANDLE_ARGS
54 /* Maximum number of context banks per SMMU */
55 #define ARM_SMMU_MAX_CBS 128
57 /* Maximum number of mapping groups per SMMU */
58 #define ARM_SMMU_MAX_SMRS 128
60 /* SMMU global address space */
61 #define ARM_SMMU_GR0(smmu) ((smmu)->base)
62 #define ARM_SMMU_GR1(smmu) ((smmu)->base + (1 << (smmu)->pgshift))
65 * SMMU global address space with conditional offset to access secure
66 * aliases of non-secure registers (e.g. nsCR0: 0x400, nsGFSR: 0x448,
69 #define ARM_SMMU_GR0_NS(smmu) \
71 ((smmu->options & ARM_SMMU_OPT_SECURE_CFG_ACCESS) \
75 #define ARM_SMMU_PTE_XN (((pteval_t)3) << 53)
76 #define ARM_SMMU_PTE_CONT (((pteval_t)1) << 52)
77 #define ARM_SMMU_PTE_AF (((pteval_t)1) << 10)
78 #define ARM_SMMU_PTE_SH_NS (((pteval_t)0) << 8)
79 #define ARM_SMMU_PTE_SH_OS (((pteval_t)2) << 8)
80 #define ARM_SMMU_PTE_SH_IS (((pteval_t)3) << 8)
81 #define ARM_SMMU_PTE_PAGE (((pteval_t)3) << 0)
83 #if PAGE_SIZE == SZ_4K
84 #define ARM_SMMU_PTE_CONT_ENTRIES 16
85 #elif PAGE_SIZE == SZ_64K
86 #define ARM_SMMU_PTE_CONT_ENTRIES 32
88 #define ARM_SMMU_PTE_CONT_ENTRIES 1
91 #define ARM_SMMU_PTE_CONT_SIZE (PAGE_SIZE * ARM_SMMU_PTE_CONT_ENTRIES)
92 #define ARM_SMMU_PTE_CONT_MASK (~(ARM_SMMU_PTE_CONT_SIZE - 1))
95 #define ARM_SMMU_PTE_AP_UNPRIV (((pteval_t)1) << 6)
96 #define ARM_SMMU_PTE_AP_RDONLY (((pteval_t)2) << 6)
97 #define ARM_SMMU_PTE_ATTRINDX_SHIFT 2
98 #define ARM_SMMU_PTE_nG (((pteval_t)1) << 11)
101 #define ARM_SMMU_PTE_HAP_FAULT (((pteval_t)0) << 6)
102 #define ARM_SMMU_PTE_HAP_READ (((pteval_t)1) << 6)
103 #define ARM_SMMU_PTE_HAP_WRITE (((pteval_t)2) << 6)
104 #define ARM_SMMU_PTE_MEMATTR_OIWB (((pteval_t)0xf) << 2)
105 #define ARM_SMMU_PTE_MEMATTR_NC (((pteval_t)0x5) << 2)
106 #define ARM_SMMU_PTE_MEMATTR_DEV (((pteval_t)0x1) << 2)
108 /* Configuration registers */
109 #define ARM_SMMU_GR0_sCR0 0x0
110 #define sCR0_CLIENTPD (1 << 0)
111 #define sCR0_GFRE (1 << 1)
112 #define sCR0_GFIE (1 << 2)
113 #define sCR0_GCFGFRE (1 << 4)
114 #define sCR0_GCFGFIE (1 << 5)
115 #define sCR0_USFCFG (1 << 10)
116 #define sCR0_VMIDPNE (1 << 11)
117 #define sCR0_PTM (1 << 12)
118 #define sCR0_FB (1 << 13)
119 #define sCR0_BSU_SHIFT 14
120 #define sCR0_BSU_MASK 0x3
122 /* Identification registers */
123 #define ARM_SMMU_GR0_ID0 0x20
124 #define ARM_SMMU_GR0_ID1 0x24
125 #define ARM_SMMU_GR0_ID2 0x28
126 #define ARM_SMMU_GR0_ID3 0x2c
127 #define ARM_SMMU_GR0_ID4 0x30
128 #define ARM_SMMU_GR0_ID5 0x34
129 #define ARM_SMMU_GR0_ID6 0x38
130 #define ARM_SMMU_GR0_ID7 0x3c
131 #define ARM_SMMU_GR0_sGFSR 0x48
132 #define ARM_SMMU_GR0_sGFSYNR0 0x50
133 #define ARM_SMMU_GR0_sGFSYNR1 0x54
134 #define ARM_SMMU_GR0_sGFSYNR2 0x58
135 #define ARM_SMMU_GR0_PIDR0 0xfe0
136 #define ARM_SMMU_GR0_PIDR1 0xfe4
137 #define ARM_SMMU_GR0_PIDR2 0xfe8
139 #define ID0_S1TS (1 << 30)
140 #define ID0_S2TS (1 << 29)
141 #define ID0_NTS (1 << 28)
142 #define ID0_SMS (1 << 27)
143 #define ID0_PTFS_SHIFT 24
144 #define ID0_PTFS_MASK 0x2
145 #define ID0_PTFS_V8_ONLY 0x2
146 #define ID0_CTTW (1 << 14)
147 #define ID0_NUMIRPT_SHIFT 16
148 #define ID0_NUMIRPT_MASK 0xff
149 #define ID0_NUMSIDB_SHIFT 9
150 #define ID0_NUMSIDB_MASK 0xf
151 #define ID0_NUMSMRG_SHIFT 0
152 #define ID0_NUMSMRG_MASK 0xff
154 #define ID1_PAGESIZE (1 << 31)
155 #define ID1_NUMPAGENDXB_SHIFT 28
156 #define ID1_NUMPAGENDXB_MASK 7
157 #define ID1_NUMS2CB_SHIFT 16
158 #define ID1_NUMS2CB_MASK 0xff
159 #define ID1_NUMCB_SHIFT 0
160 #define ID1_NUMCB_MASK 0xff
162 #define ID2_OAS_SHIFT 4
163 #define ID2_OAS_MASK 0xf
164 #define ID2_IAS_SHIFT 0
165 #define ID2_IAS_MASK 0xf
166 #define ID2_UBS_SHIFT 8
167 #define ID2_UBS_MASK 0xf
168 #define ID2_PTFS_4K (1 << 12)
169 #define ID2_PTFS_16K (1 << 13)
170 #define ID2_PTFS_64K (1 << 14)
172 #define PIDR2_ARCH_SHIFT 4
173 #define PIDR2_ARCH_MASK 0xf
175 /* Global TLB invalidation */
176 #define ARM_SMMU_GR0_STLBIALL 0x60
177 #define ARM_SMMU_GR0_TLBIVMID 0x64
178 #define ARM_SMMU_GR0_TLBIALLNSNH 0x68
179 #define ARM_SMMU_GR0_TLBIALLH 0x6c
180 #define ARM_SMMU_GR0_sTLBGSYNC 0x70
181 #define ARM_SMMU_GR0_sTLBGSTATUS 0x74
182 #define sTLBGSTATUS_GSACTIVE (1 << 0)
183 #define TLB_LOOP_TIMEOUT 1000000 /* 1s! */
185 /* Stream mapping registers */
186 #define ARM_SMMU_GR0_SMR(n) (0x800 + ((n) << 2))
187 #define SMR_VALID (1 << 31)
188 #define SMR_MASK_SHIFT 16
189 #define SMR_MASK_MASK 0x7fff
190 #define SMR_ID_SHIFT 0
191 #define SMR_ID_MASK 0x7fff
193 #define ARM_SMMU_GR0_S2CR(n) (0xc00 + ((n) << 2))
194 #define S2CR_CBNDX_SHIFT 0
195 #define S2CR_CBNDX_MASK 0xff
196 #define S2CR_TYPE_SHIFT 16
197 #define S2CR_TYPE_MASK 0x3
198 #define S2CR_TYPE_TRANS (0 << S2CR_TYPE_SHIFT)
199 #define S2CR_TYPE_BYPASS (1 << S2CR_TYPE_SHIFT)
200 #define S2CR_TYPE_FAULT (2 << S2CR_TYPE_SHIFT)
202 /* Context bank attribute registers */
203 #define ARM_SMMU_GR1_CBAR(n) (0x0 + ((n) << 2))
204 #define CBAR_VMID_SHIFT 0
205 #define CBAR_VMID_MASK 0xff
206 #define CBAR_S1_BPSHCFG_SHIFT 8
207 #define CBAR_S1_BPSHCFG_MASK 3
208 #define CBAR_S1_BPSHCFG_NSH 3
209 #define CBAR_S1_MEMATTR_SHIFT 12
210 #define CBAR_S1_MEMATTR_MASK 0xf
211 #define CBAR_S1_MEMATTR_WB 0xf
212 #define CBAR_TYPE_SHIFT 16
213 #define CBAR_TYPE_MASK 0x3
214 #define CBAR_TYPE_S2_TRANS (0 << CBAR_TYPE_SHIFT)
215 #define CBAR_TYPE_S1_TRANS_S2_BYPASS (1 << CBAR_TYPE_SHIFT)
216 #define CBAR_TYPE_S1_TRANS_S2_FAULT (2 << CBAR_TYPE_SHIFT)
217 #define CBAR_TYPE_S1_TRANS_S2_TRANS (3 << CBAR_TYPE_SHIFT)
218 #define CBAR_IRPTNDX_SHIFT 24
219 #define CBAR_IRPTNDX_MASK 0xff
221 #define ARM_SMMU_GR1_CBA2R(n) (0x800 + ((n) << 2))
222 #define CBA2R_RW64_32BIT (0 << 0)
223 #define CBA2R_RW64_64BIT (1 << 0)
225 /* Translation context bank */
226 #define ARM_SMMU_CB_BASE(smmu) ((smmu)->base + ((smmu)->size >> 1))
227 #define ARM_SMMU_CB(smmu, n) ((n) * (1 << (smmu)->pgshift))
229 #define ARM_SMMU_CB_SCTLR 0x0
230 #define ARM_SMMU_CB_RESUME 0x8
231 #define ARM_SMMU_CB_TTBCR2 0x10
232 #define ARM_SMMU_CB_TTBR0_LO 0x20
233 #define ARM_SMMU_CB_TTBR0_HI 0x24
234 #define ARM_SMMU_CB_TTBCR 0x30
235 #define ARM_SMMU_CB_S1_MAIR0 0x38
236 #define ARM_SMMU_CB_FSR 0x58
237 #define ARM_SMMU_CB_FAR_LO 0x60
238 #define ARM_SMMU_CB_FAR_HI 0x64
239 #define ARM_SMMU_CB_FSYNR0 0x68
240 #define ARM_SMMU_CB_S1_TLBIASID 0x610
242 #define SCTLR_S1_ASIDPNE (1 << 12)
243 #define SCTLR_CFCFG (1 << 7)
244 #define SCTLR_CFIE (1 << 6)
245 #define SCTLR_CFRE (1 << 5)
246 #define SCTLR_E (1 << 4)
247 #define SCTLR_AFE (1 << 2)
248 #define SCTLR_TRE (1 << 1)
249 #define SCTLR_M (1 << 0)
250 #define SCTLR_EAE_SBOP (SCTLR_AFE | SCTLR_TRE)
252 #define RESUME_RETRY (0 << 0)
253 #define RESUME_TERMINATE (1 << 0)
255 #define TTBCR_EAE (1 << 31)
257 #define TTBCR_PASIZE_SHIFT 16
258 #define TTBCR_PASIZE_MASK 0x7
260 #define TTBCR_TG0_4K (0 << 14)
261 #define TTBCR_TG0_64K (1 << 14)
263 #define TTBCR_SH0_SHIFT 12
264 #define TTBCR_SH0_MASK 0x3
265 #define TTBCR_SH_NS 0
266 #define TTBCR_SH_OS 2
267 #define TTBCR_SH_IS 3
269 #define TTBCR_ORGN0_SHIFT 10
270 #define TTBCR_IRGN0_SHIFT 8
271 #define TTBCR_RGN_MASK 0x3
272 #define TTBCR_RGN_NC 0
273 #define TTBCR_RGN_WBWA 1
274 #define TTBCR_RGN_WT 2
275 #define TTBCR_RGN_WB 3
277 #define TTBCR_SL0_SHIFT 6
278 #define TTBCR_SL0_MASK 0x3
279 #define TTBCR_SL0_LVL_2 0
280 #define TTBCR_SL0_LVL_1 1
282 #define TTBCR_T1SZ_SHIFT 16
283 #define TTBCR_T0SZ_SHIFT 0
284 #define TTBCR_SZ_MASK 0xf
286 #define TTBCR2_SEP_SHIFT 15
287 #define TTBCR2_SEP_MASK 0x7
289 #define TTBCR2_PASIZE_SHIFT 0
290 #define TTBCR2_PASIZE_MASK 0x7
292 /* Common definitions for PASize and SEP fields */
293 #define TTBCR2_ADDR_32 0
294 #define TTBCR2_ADDR_36 1
295 #define TTBCR2_ADDR_40 2
296 #define TTBCR2_ADDR_42 3
297 #define TTBCR2_ADDR_44 4
298 #define TTBCR2_ADDR_48 5
300 #define TTBRn_HI_ASID_SHIFT 16
302 #define MAIR_ATTR_SHIFT(n) ((n) << 3)
303 #define MAIR_ATTR_MASK 0xff
304 #define MAIR_ATTR_DEVICE 0x04
305 #define MAIR_ATTR_NC 0x44
306 #define MAIR_ATTR_WBRWA 0xff
307 #define MAIR_ATTR_IDX_NC 0
308 #define MAIR_ATTR_IDX_CACHE 1
309 #define MAIR_ATTR_IDX_DEV 2
311 #define FSR_MULTI (1 << 31)
312 #define FSR_SS (1 << 30)
313 #define FSR_UUT (1 << 8)
314 #define FSR_ASF (1 << 7)
315 #define FSR_TLBLKF (1 << 6)
316 #define FSR_TLBMCF (1 << 5)
317 #define FSR_EF (1 << 4)
318 #define FSR_PF (1 << 3)
319 #define FSR_AFF (1 << 2)
320 #define FSR_TF (1 << 1)
322 #define FSR_IGN (FSR_AFF | FSR_ASF | \
323 FSR_TLBMCF | FSR_TLBLKF)
324 #define FSR_FAULT (FSR_MULTI | FSR_SS | FSR_UUT | \
325 FSR_EF | FSR_PF | FSR_TF | FSR_IGN)
327 #define FSYNR0_WNR (1 << 4)
329 static int force_stage
;
330 module_param_named(force_stage
, force_stage
, int, S_IRUGO
| S_IWUSR
);
331 MODULE_PARM_DESC(force_stage
,
332 "Force SMMU mappings to be installed at a particular stage of translation. A value of '1' or '2' forces the corresponding stage. All other values are ignored (i.e. no stage is forced). Note that selecting a specific stage will disable support for nested translation.");
334 enum arm_smmu_arch_version
{
339 struct arm_smmu_smr
{
345 struct arm_smmu_master_cfg
{
347 u16 streamids
[MAX_MASTER_STREAMIDS
];
348 struct arm_smmu_smr
*smrs
;
351 struct arm_smmu_master
{
352 struct device_node
*of_node
;
354 struct arm_smmu_master_cfg cfg
;
357 struct arm_smmu_device
{
362 unsigned long pgshift
;
364 #define ARM_SMMU_FEAT_COHERENT_WALK (1 << 0)
365 #define ARM_SMMU_FEAT_STREAM_MATCH (1 << 1)
366 #define ARM_SMMU_FEAT_TRANS_S1 (1 << 2)
367 #define ARM_SMMU_FEAT_TRANS_S2 (1 << 3)
368 #define ARM_SMMU_FEAT_TRANS_NESTED (1 << 4)
371 #define ARM_SMMU_OPT_SECURE_CFG_ACCESS (1 << 0)
373 enum arm_smmu_arch_version version
;
375 u32 num_context_banks
;
376 u32 num_s2_context_banks
;
377 DECLARE_BITMAP(context_map
, ARM_SMMU_MAX_CBS
);
380 u32 num_mapping_groups
;
381 DECLARE_BITMAP(smr_map
, ARM_SMMU_MAX_SMRS
);
383 unsigned long s1_input_size
;
384 unsigned long s1_output_size
;
385 unsigned long s2_input_size
;
386 unsigned long s2_output_size
;
389 u32 num_context_irqs
;
392 struct list_head list
;
393 struct rb_root masters
;
396 struct arm_smmu_cfg
{
402 #define INVALID_IRPTNDX 0xff
404 #define ARM_SMMU_CB_ASID(cfg) ((cfg)->cbndx)
405 #define ARM_SMMU_CB_VMID(cfg) ((cfg)->cbndx + 1)
407 struct arm_smmu_domain
{
408 struct arm_smmu_device
*smmu
;
409 struct arm_smmu_cfg cfg
;
413 static DEFINE_SPINLOCK(arm_smmu_devices_lock
);
414 static LIST_HEAD(arm_smmu_devices
);
416 struct arm_smmu_option_prop
{
421 static struct arm_smmu_option_prop arm_smmu_options
[] = {
422 { ARM_SMMU_OPT_SECURE_CFG_ACCESS
, "calxeda,smmu-secure-config-access" },
426 static void parse_driver_options(struct arm_smmu_device
*smmu
)
431 if (of_property_read_bool(smmu
->dev
->of_node
,
432 arm_smmu_options
[i
].prop
)) {
433 smmu
->options
|= arm_smmu_options
[i
].opt
;
434 dev_notice(smmu
->dev
, "option %s\n",
435 arm_smmu_options
[i
].prop
);
437 } while (arm_smmu_options
[++i
].opt
);
440 static struct device_node
*dev_get_dev_node(struct device
*dev
)
442 if (dev_is_pci(dev
)) {
443 struct pci_bus
*bus
= to_pci_dev(dev
)->bus
;
445 while (!pci_is_root_bus(bus
))
447 return bus
->bridge
->parent
->of_node
;
453 static struct arm_smmu_master
*find_smmu_master(struct arm_smmu_device
*smmu
,
454 struct device_node
*dev_node
)
456 struct rb_node
*node
= smmu
->masters
.rb_node
;
459 struct arm_smmu_master
*master
;
461 master
= container_of(node
, struct arm_smmu_master
, node
);
463 if (dev_node
< master
->of_node
)
464 node
= node
->rb_left
;
465 else if (dev_node
> master
->of_node
)
466 node
= node
->rb_right
;
474 static struct arm_smmu_master_cfg
*
475 find_smmu_master_cfg(struct device
*dev
)
477 struct arm_smmu_master_cfg
*cfg
= NULL
;
478 struct iommu_group
*group
= iommu_group_get(dev
);
481 cfg
= iommu_group_get_iommudata(group
);
482 iommu_group_put(group
);
488 static int insert_smmu_master(struct arm_smmu_device
*smmu
,
489 struct arm_smmu_master
*master
)
491 struct rb_node
**new, *parent
;
493 new = &smmu
->masters
.rb_node
;
496 struct arm_smmu_master
*this
497 = container_of(*new, struct arm_smmu_master
, node
);
500 if (master
->of_node
< this->of_node
)
501 new = &((*new)->rb_left
);
502 else if (master
->of_node
> this->of_node
)
503 new = &((*new)->rb_right
);
508 rb_link_node(&master
->node
, parent
, new);
509 rb_insert_color(&master
->node
, &smmu
->masters
);
513 static int register_smmu_master(struct arm_smmu_device
*smmu
,
515 struct of_phandle_args
*masterspec
)
518 struct arm_smmu_master
*master
;
520 master
= find_smmu_master(smmu
, masterspec
->np
);
523 "rejecting multiple registrations for master device %s\n",
524 masterspec
->np
->name
);
528 if (masterspec
->args_count
> MAX_MASTER_STREAMIDS
) {
530 "reached maximum number (%d) of stream IDs for master device %s\n",
531 MAX_MASTER_STREAMIDS
, masterspec
->np
->name
);
535 master
= devm_kzalloc(dev
, sizeof(*master
), GFP_KERNEL
);
539 master
->of_node
= masterspec
->np
;
540 master
->cfg
.num_streamids
= masterspec
->args_count
;
542 for (i
= 0; i
< master
->cfg
.num_streamids
; ++i
) {
543 u16 streamid
= masterspec
->args
[i
];
545 if (!(smmu
->features
& ARM_SMMU_FEAT_STREAM_MATCH
) &&
546 (streamid
>= smmu
->num_mapping_groups
)) {
548 "stream ID for master device %s greater than maximum allowed (%d)\n",
549 masterspec
->np
->name
, smmu
->num_mapping_groups
);
552 master
->cfg
.streamids
[i
] = streamid
;
554 return insert_smmu_master(smmu
, master
);
557 static struct arm_smmu_device
*find_smmu_for_device(struct device
*dev
)
559 struct arm_smmu_device
*smmu
;
560 struct arm_smmu_master
*master
= NULL
;
561 struct device_node
*dev_node
= dev_get_dev_node(dev
);
563 spin_lock(&arm_smmu_devices_lock
);
564 list_for_each_entry(smmu
, &arm_smmu_devices
, list
) {
565 master
= find_smmu_master(smmu
, dev_node
);
569 spin_unlock(&arm_smmu_devices_lock
);
571 return master
? smmu
: NULL
;
574 static int __arm_smmu_alloc_bitmap(unsigned long *map
, int start
, int end
)
579 idx
= find_next_zero_bit(map
, end
, start
);
582 } while (test_and_set_bit(idx
, map
));
587 static void __arm_smmu_free_bitmap(unsigned long *map
, int idx
)
592 /* Wait for any pending TLB invalidations to complete */
593 static void arm_smmu_tlb_sync(struct arm_smmu_device
*smmu
)
596 void __iomem
*gr0_base
= ARM_SMMU_GR0(smmu
);
598 writel_relaxed(0, gr0_base
+ ARM_SMMU_GR0_sTLBGSYNC
);
599 while (readl_relaxed(gr0_base
+ ARM_SMMU_GR0_sTLBGSTATUS
)
600 & sTLBGSTATUS_GSACTIVE
) {
602 if (++count
== TLB_LOOP_TIMEOUT
) {
603 dev_err_ratelimited(smmu
->dev
,
604 "TLB sync timed out -- SMMU may be deadlocked\n");
611 static void arm_smmu_tlb_inv_context(struct arm_smmu_domain
*smmu_domain
)
613 struct arm_smmu_cfg
*cfg
= &smmu_domain
->cfg
;
614 struct arm_smmu_device
*smmu
= smmu_domain
->smmu
;
615 void __iomem
*base
= ARM_SMMU_GR0(smmu
);
616 bool stage1
= cfg
->cbar
!= CBAR_TYPE_S2_TRANS
;
619 base
= ARM_SMMU_CB_BASE(smmu
) + ARM_SMMU_CB(smmu
, cfg
->cbndx
);
620 writel_relaxed(ARM_SMMU_CB_ASID(cfg
),
621 base
+ ARM_SMMU_CB_S1_TLBIASID
);
623 base
= ARM_SMMU_GR0(smmu
);
624 writel_relaxed(ARM_SMMU_CB_VMID(cfg
),
625 base
+ ARM_SMMU_GR0_TLBIVMID
);
628 arm_smmu_tlb_sync(smmu
);
631 static irqreturn_t
arm_smmu_context_fault(int irq
, void *dev
)
634 u32 fsr
, far
, fsynr
, resume
;
636 struct iommu_domain
*domain
= dev
;
637 struct arm_smmu_domain
*smmu_domain
= domain
->priv
;
638 struct arm_smmu_cfg
*cfg
= &smmu_domain
->cfg
;
639 struct arm_smmu_device
*smmu
= smmu_domain
->smmu
;
640 void __iomem
*cb_base
;
642 cb_base
= ARM_SMMU_CB_BASE(smmu
) + ARM_SMMU_CB(smmu
, cfg
->cbndx
);
643 fsr
= readl_relaxed(cb_base
+ ARM_SMMU_CB_FSR
);
645 if (!(fsr
& FSR_FAULT
))
649 dev_err_ratelimited(smmu
->dev
,
650 "Unexpected context fault (fsr 0x%x)\n",
653 fsynr
= readl_relaxed(cb_base
+ ARM_SMMU_CB_FSYNR0
);
654 flags
= fsynr
& FSYNR0_WNR
? IOMMU_FAULT_WRITE
: IOMMU_FAULT_READ
;
656 far
= readl_relaxed(cb_base
+ ARM_SMMU_CB_FAR_LO
);
659 far
= readl_relaxed(cb_base
+ ARM_SMMU_CB_FAR_HI
);
660 iova
|= ((unsigned long)far
<< 32);
663 if (!report_iommu_fault(domain
, smmu
->dev
, iova
, flags
)) {
665 resume
= RESUME_RETRY
;
667 dev_err_ratelimited(smmu
->dev
,
668 "Unhandled context fault: iova=0x%08lx, fsynr=0x%x, cb=%d\n",
669 iova
, fsynr
, cfg
->cbndx
);
671 resume
= RESUME_TERMINATE
;
674 /* Clear the faulting FSR */
675 writel(fsr
, cb_base
+ ARM_SMMU_CB_FSR
);
677 /* Retry or terminate any stalled transactions */
679 writel_relaxed(resume
, cb_base
+ ARM_SMMU_CB_RESUME
);
684 static irqreturn_t
arm_smmu_global_fault(int irq
, void *dev
)
686 u32 gfsr
, gfsynr0
, gfsynr1
, gfsynr2
;
687 struct arm_smmu_device
*smmu
= dev
;
688 void __iomem
*gr0_base
= ARM_SMMU_GR0_NS(smmu
);
690 gfsr
= readl_relaxed(gr0_base
+ ARM_SMMU_GR0_sGFSR
);
691 gfsynr0
= readl_relaxed(gr0_base
+ ARM_SMMU_GR0_sGFSYNR0
);
692 gfsynr1
= readl_relaxed(gr0_base
+ ARM_SMMU_GR0_sGFSYNR1
);
693 gfsynr2
= readl_relaxed(gr0_base
+ ARM_SMMU_GR0_sGFSYNR2
);
698 dev_err_ratelimited(smmu
->dev
,
699 "Unexpected global fault, this could be serious\n");
700 dev_err_ratelimited(smmu
->dev
,
701 "\tGFSR 0x%08x, GFSYNR0 0x%08x, GFSYNR1 0x%08x, GFSYNR2 0x%08x\n",
702 gfsr
, gfsynr0
, gfsynr1
, gfsynr2
);
704 writel(gfsr
, gr0_base
+ ARM_SMMU_GR0_sGFSR
);
708 static void arm_smmu_flush_pgtable(struct arm_smmu_device
*smmu
, void *addr
,
711 unsigned long offset
= (unsigned long)addr
& ~PAGE_MASK
;
714 /* Ensure new page tables are visible to the hardware walker */
715 if (smmu
->features
& ARM_SMMU_FEAT_COHERENT_WALK
) {
719 * If the SMMU can't walk tables in the CPU caches, treat them
720 * like non-coherent DMA since we need to flush the new entries
721 * all the way out to memory. There's no possibility of
722 * recursion here as the SMMU table walker will not be wired
723 * through another SMMU.
725 dma_map_page(smmu
->dev
, virt_to_page(addr
), offset
, size
,
730 static void arm_smmu_init_context_bank(struct arm_smmu_domain
*smmu_domain
)
734 struct arm_smmu_cfg
*cfg
= &smmu_domain
->cfg
;
735 struct arm_smmu_device
*smmu
= smmu_domain
->smmu
;
736 void __iomem
*cb_base
, *gr0_base
, *gr1_base
;
738 gr0_base
= ARM_SMMU_GR0(smmu
);
739 gr1_base
= ARM_SMMU_GR1(smmu
);
740 stage1
= cfg
->cbar
!= CBAR_TYPE_S2_TRANS
;
741 cb_base
= ARM_SMMU_CB_BASE(smmu
) + ARM_SMMU_CB(smmu
, cfg
->cbndx
);
745 if (smmu
->version
== ARM_SMMU_V1
)
746 reg
|= cfg
->irptndx
<< CBAR_IRPTNDX_SHIFT
;
749 * Use the weakest shareability/memory types, so they are
750 * overridden by the ttbcr/pte.
753 reg
|= (CBAR_S1_BPSHCFG_NSH
<< CBAR_S1_BPSHCFG_SHIFT
) |
754 (CBAR_S1_MEMATTR_WB
<< CBAR_S1_MEMATTR_SHIFT
);
756 reg
|= ARM_SMMU_CB_VMID(cfg
) << CBAR_VMID_SHIFT
;
758 writel_relaxed(reg
, gr1_base
+ ARM_SMMU_GR1_CBAR(cfg
->cbndx
));
760 if (smmu
->version
> ARM_SMMU_V1
) {
763 reg
= CBA2R_RW64_64BIT
;
765 reg
= CBA2R_RW64_32BIT
;
768 gr1_base
+ ARM_SMMU_GR1_CBA2R(cfg
->cbndx
));
771 switch (smmu
->s1_input_size
) {
773 reg
= (TTBCR2_ADDR_32
<< TTBCR2_SEP_SHIFT
);
776 reg
= (TTBCR2_ADDR_36
<< TTBCR2_SEP_SHIFT
);
780 reg
= (TTBCR2_ADDR_40
<< TTBCR2_SEP_SHIFT
);
783 reg
= (TTBCR2_ADDR_42
<< TTBCR2_SEP_SHIFT
);
786 reg
= (TTBCR2_ADDR_44
<< TTBCR2_SEP_SHIFT
);
789 reg
= (TTBCR2_ADDR_48
<< TTBCR2_SEP_SHIFT
);
793 switch (smmu
->s1_output_size
) {
795 reg
|= (TTBCR2_ADDR_32
<< TTBCR2_PASIZE_SHIFT
);
798 reg
|= (TTBCR2_ADDR_36
<< TTBCR2_PASIZE_SHIFT
);
802 reg
|= (TTBCR2_ADDR_40
<< TTBCR2_PASIZE_SHIFT
);
805 reg
|= (TTBCR2_ADDR_42
<< TTBCR2_PASIZE_SHIFT
);
808 reg
|= (TTBCR2_ADDR_44
<< TTBCR2_PASIZE_SHIFT
);
811 reg
|= (TTBCR2_ADDR_48
<< TTBCR2_PASIZE_SHIFT
);
816 writel_relaxed(reg
, cb_base
+ ARM_SMMU_CB_TTBCR2
);
820 arm_smmu_flush_pgtable(smmu
, cfg
->pgd
,
821 PTRS_PER_PGD
* sizeof(pgd_t
));
822 reg
= __pa(cfg
->pgd
);
823 writel_relaxed(reg
, cb_base
+ ARM_SMMU_CB_TTBR0_LO
);
824 reg
= (phys_addr_t
)__pa(cfg
->pgd
) >> 32;
826 reg
|= ARM_SMMU_CB_ASID(cfg
) << TTBRn_HI_ASID_SHIFT
;
827 writel_relaxed(reg
, cb_base
+ ARM_SMMU_CB_TTBR0_HI
);
831 * We use long descriptor, with inner-shareable WBWA tables in TTBR0.
833 if (smmu
->version
> ARM_SMMU_V1
) {
834 if (PAGE_SIZE
== SZ_4K
)
840 reg
|= (64 - smmu
->s2_input_size
) << TTBCR_T0SZ_SHIFT
;
842 switch (smmu
->s2_output_size
) {
844 reg
|= (TTBCR2_ADDR_32
<< TTBCR_PASIZE_SHIFT
);
847 reg
|= (TTBCR2_ADDR_36
<< TTBCR_PASIZE_SHIFT
);
850 reg
|= (TTBCR2_ADDR_40
<< TTBCR_PASIZE_SHIFT
);
853 reg
|= (TTBCR2_ADDR_42
<< TTBCR_PASIZE_SHIFT
);
856 reg
|= (TTBCR2_ADDR_44
<< TTBCR_PASIZE_SHIFT
);
859 reg
|= (TTBCR2_ADDR_48
<< TTBCR_PASIZE_SHIFT
);
863 reg
|= (64 - smmu
->s1_input_size
) << TTBCR_T0SZ_SHIFT
;
870 (TTBCR_SH_IS
<< TTBCR_SH0_SHIFT
) |
871 (TTBCR_RGN_WBWA
<< TTBCR_ORGN0_SHIFT
) |
872 (TTBCR_RGN_WBWA
<< TTBCR_IRGN0_SHIFT
);
875 reg
|= (TTBCR_SL0_LVL_1
<< TTBCR_SL0_SHIFT
);
877 writel_relaxed(reg
, cb_base
+ ARM_SMMU_CB_TTBCR
);
879 /* MAIR0 (stage-1 only) */
881 reg
= (MAIR_ATTR_NC
<< MAIR_ATTR_SHIFT(MAIR_ATTR_IDX_NC
)) |
882 (MAIR_ATTR_WBRWA
<< MAIR_ATTR_SHIFT(MAIR_ATTR_IDX_CACHE
)) |
883 (MAIR_ATTR_DEVICE
<< MAIR_ATTR_SHIFT(MAIR_ATTR_IDX_DEV
));
884 writel_relaxed(reg
, cb_base
+ ARM_SMMU_CB_S1_MAIR0
);
888 reg
= SCTLR_CFCFG
| SCTLR_CFIE
| SCTLR_CFRE
| SCTLR_M
| SCTLR_EAE_SBOP
;
890 reg
|= SCTLR_S1_ASIDPNE
;
894 writel_relaxed(reg
, cb_base
+ ARM_SMMU_CB_SCTLR
);
897 static int arm_smmu_init_domain_context(struct iommu_domain
*domain
,
898 struct arm_smmu_device
*smmu
)
900 int irq
, start
, ret
= 0;
902 struct arm_smmu_domain
*smmu_domain
= domain
->priv
;
903 struct arm_smmu_cfg
*cfg
= &smmu_domain
->cfg
;
905 spin_lock_irqsave(&smmu_domain
->lock
, flags
);
906 if (smmu_domain
->smmu
)
909 if (smmu
->features
& ARM_SMMU_FEAT_TRANS_NESTED
) {
911 * We will likely want to change this if/when KVM gets
914 cfg
->cbar
= CBAR_TYPE_S1_TRANS_S2_BYPASS
;
915 start
= smmu
->num_s2_context_banks
;
916 } else if (smmu
->features
& ARM_SMMU_FEAT_TRANS_S1
) {
917 cfg
->cbar
= CBAR_TYPE_S1_TRANS_S2_BYPASS
;
918 start
= smmu
->num_s2_context_banks
;
920 cfg
->cbar
= CBAR_TYPE_S2_TRANS
;
924 ret
= __arm_smmu_alloc_bitmap(smmu
->context_map
, start
,
925 smmu
->num_context_banks
);
926 if (IS_ERR_VALUE(ret
))
930 if (smmu
->version
== ARM_SMMU_V1
) {
931 cfg
->irptndx
= atomic_inc_return(&smmu
->irptndx
);
932 cfg
->irptndx
%= smmu
->num_context_irqs
;
934 cfg
->irptndx
= cfg
->cbndx
;
937 ACCESS_ONCE(smmu_domain
->smmu
) = smmu
;
938 arm_smmu_init_context_bank(smmu_domain
);
939 spin_unlock_irqrestore(&smmu_domain
->lock
, flags
);
941 irq
= smmu
->irqs
[smmu
->num_global_irqs
+ cfg
->irptndx
];
942 ret
= request_irq(irq
, arm_smmu_context_fault
, IRQF_SHARED
,
943 "arm-smmu-context-fault", domain
);
944 if (IS_ERR_VALUE(ret
)) {
945 dev_err(smmu
->dev
, "failed to request context IRQ %d (%u)\n",
947 cfg
->irptndx
= INVALID_IRPTNDX
;
953 spin_unlock_irqrestore(&smmu_domain
->lock
, flags
);
957 static void arm_smmu_destroy_domain_context(struct iommu_domain
*domain
)
959 struct arm_smmu_domain
*smmu_domain
= domain
->priv
;
960 struct arm_smmu_device
*smmu
= smmu_domain
->smmu
;
961 struct arm_smmu_cfg
*cfg
= &smmu_domain
->cfg
;
962 void __iomem
*cb_base
;
968 /* Disable the context bank and nuke the TLB before freeing it. */
969 cb_base
= ARM_SMMU_CB_BASE(smmu
) + ARM_SMMU_CB(smmu
, cfg
->cbndx
);
970 writel_relaxed(0, cb_base
+ ARM_SMMU_CB_SCTLR
);
971 arm_smmu_tlb_inv_context(smmu_domain
);
973 if (cfg
->irptndx
!= INVALID_IRPTNDX
) {
974 irq
= smmu
->irqs
[smmu
->num_global_irqs
+ cfg
->irptndx
];
975 free_irq(irq
, domain
);
978 __arm_smmu_free_bitmap(smmu
->context_map
, cfg
->cbndx
);
981 static int arm_smmu_domain_init(struct iommu_domain
*domain
)
983 struct arm_smmu_domain
*smmu_domain
;
987 * Allocate the domain and initialise some of its data structures.
988 * We can't really do anything meaningful until we've added a
991 smmu_domain
= kzalloc(sizeof(*smmu_domain
), GFP_KERNEL
);
995 pgd
= kcalloc(PTRS_PER_PGD
, sizeof(pgd_t
), GFP_KERNEL
);
997 goto out_free_domain
;
998 smmu_domain
->cfg
.pgd
= pgd
;
1000 spin_lock_init(&smmu_domain
->lock
);
1001 domain
->priv
= smmu_domain
;
1009 static void arm_smmu_free_ptes(pmd_t
*pmd
)
1011 pgtable_t table
= pmd_pgtable(*pmd
);
1016 static void arm_smmu_free_pmds(pud_t
*pud
)
1019 pmd_t
*pmd
, *pmd_base
= pmd_offset(pud
, 0);
1022 for (i
= 0; i
< PTRS_PER_PMD
; ++i
) {
1026 arm_smmu_free_ptes(pmd
);
1030 pmd_free(NULL
, pmd_base
);
1033 static void arm_smmu_free_puds(pgd_t
*pgd
)
1036 pud_t
*pud
, *pud_base
= pud_offset(pgd
, 0);
1039 for (i
= 0; i
< PTRS_PER_PUD
; ++i
) {
1043 arm_smmu_free_pmds(pud
);
1047 pud_free(NULL
, pud_base
);
1050 static void arm_smmu_free_pgtables(struct arm_smmu_domain
*smmu_domain
)
1053 struct arm_smmu_cfg
*cfg
= &smmu_domain
->cfg
;
1054 pgd_t
*pgd
, *pgd_base
= cfg
->pgd
;
1057 * Recursively free the page tables for this domain. We don't
1058 * care about speculative TLB filling because the tables should
1059 * not be active in any context bank at this point (SCTLR.M is 0).
1062 for (i
= 0; i
< PTRS_PER_PGD
; ++i
) {
1065 arm_smmu_free_puds(pgd
);
1072 static void arm_smmu_domain_destroy(struct iommu_domain
*domain
)
1074 struct arm_smmu_domain
*smmu_domain
= domain
->priv
;
1077 * Free the domain resources. We assume that all devices have
1078 * already been detached.
1080 arm_smmu_destroy_domain_context(domain
);
1081 arm_smmu_free_pgtables(smmu_domain
);
1085 static int arm_smmu_master_configure_smrs(struct arm_smmu_device
*smmu
,
1086 struct arm_smmu_master_cfg
*cfg
)
1089 struct arm_smmu_smr
*smrs
;
1090 void __iomem
*gr0_base
= ARM_SMMU_GR0(smmu
);
1092 if (!(smmu
->features
& ARM_SMMU_FEAT_STREAM_MATCH
))
1098 smrs
= kmalloc_array(cfg
->num_streamids
, sizeof(*smrs
), GFP_KERNEL
);
1100 dev_err(smmu
->dev
, "failed to allocate %d SMRs\n",
1101 cfg
->num_streamids
);
1105 /* Allocate the SMRs on the SMMU */
1106 for (i
= 0; i
< cfg
->num_streamids
; ++i
) {
1107 int idx
= __arm_smmu_alloc_bitmap(smmu
->smr_map
, 0,
1108 smmu
->num_mapping_groups
);
1109 if (IS_ERR_VALUE(idx
)) {
1110 dev_err(smmu
->dev
, "failed to allocate free SMR\n");
1114 smrs
[i
] = (struct arm_smmu_smr
) {
1116 .mask
= 0, /* We don't currently share SMRs */
1117 .id
= cfg
->streamids
[i
],
1121 /* It worked! Now, poke the actual hardware */
1122 for (i
= 0; i
< cfg
->num_streamids
; ++i
) {
1123 u32 reg
= SMR_VALID
| smrs
[i
].id
<< SMR_ID_SHIFT
|
1124 smrs
[i
].mask
<< SMR_MASK_SHIFT
;
1125 writel_relaxed(reg
, gr0_base
+ ARM_SMMU_GR0_SMR(smrs
[i
].idx
));
1133 __arm_smmu_free_bitmap(smmu
->smr_map
, smrs
[i
].idx
);
1138 static void arm_smmu_master_free_smrs(struct arm_smmu_device
*smmu
,
1139 struct arm_smmu_master_cfg
*cfg
)
1142 void __iomem
*gr0_base
= ARM_SMMU_GR0(smmu
);
1143 struct arm_smmu_smr
*smrs
= cfg
->smrs
;
1148 /* Invalidate the SMRs before freeing back to the allocator */
1149 for (i
= 0; i
< cfg
->num_streamids
; ++i
) {
1150 u8 idx
= smrs
[i
].idx
;
1152 writel_relaxed(~SMR_VALID
, gr0_base
+ ARM_SMMU_GR0_SMR(idx
));
1153 __arm_smmu_free_bitmap(smmu
->smr_map
, idx
);
1160 static int arm_smmu_domain_add_master(struct arm_smmu_domain
*smmu_domain
,
1161 struct arm_smmu_master_cfg
*cfg
)
1164 struct arm_smmu_device
*smmu
= smmu_domain
->smmu
;
1165 void __iomem
*gr0_base
= ARM_SMMU_GR0(smmu
);
1167 /* Devices in an IOMMU group may already be configured */
1168 ret
= arm_smmu_master_configure_smrs(smmu
, cfg
);
1170 return ret
== -EEXIST
? 0 : ret
;
1172 for (i
= 0; i
< cfg
->num_streamids
; ++i
) {
1175 idx
= cfg
->smrs
? cfg
->smrs
[i
].idx
: cfg
->streamids
[i
];
1176 s2cr
= S2CR_TYPE_TRANS
|
1177 (smmu_domain
->cfg
.cbndx
<< S2CR_CBNDX_SHIFT
);
1178 writel_relaxed(s2cr
, gr0_base
+ ARM_SMMU_GR0_S2CR(idx
));
1184 static void arm_smmu_domain_remove_master(struct arm_smmu_domain
*smmu_domain
,
1185 struct arm_smmu_master_cfg
*cfg
)
1188 struct arm_smmu_device
*smmu
= smmu_domain
->smmu
;
1189 void __iomem
*gr0_base
= ARM_SMMU_GR0(smmu
);
1191 /* An IOMMU group is torn down by the first device to be removed */
1192 if ((smmu
->features
& ARM_SMMU_FEAT_STREAM_MATCH
) && !cfg
->smrs
)
1196 * We *must* clear the S2CR first, because freeing the SMR means
1197 * that it can be re-allocated immediately.
1199 for (i
= 0; i
< cfg
->num_streamids
; ++i
) {
1200 u32 idx
= cfg
->smrs
? cfg
->smrs
[i
].idx
: cfg
->streamids
[i
];
1202 writel_relaxed(S2CR_TYPE_BYPASS
,
1203 gr0_base
+ ARM_SMMU_GR0_S2CR(idx
));
1206 arm_smmu_master_free_smrs(smmu
, cfg
);
1209 static int arm_smmu_attach_dev(struct iommu_domain
*domain
, struct device
*dev
)
1212 struct arm_smmu_domain
*smmu_domain
= domain
->priv
;
1213 struct arm_smmu_device
*smmu
, *dom_smmu
;
1214 struct arm_smmu_master_cfg
*cfg
;
1216 smmu
= find_smmu_for_device(dev
);
1218 dev_err(dev
, "cannot attach to SMMU, is it on the same bus?\n");
1222 if (dev
->archdata
.iommu
) {
1223 dev_err(dev
, "already attached to IOMMU domain\n");
1228 * Sanity check the domain. We don't support domains across
1231 dom_smmu
= ACCESS_ONCE(smmu_domain
->smmu
);
1233 /* Now that we have a master, we can finalise the domain */
1234 ret
= arm_smmu_init_domain_context(domain
, smmu
);
1235 if (IS_ERR_VALUE(ret
))
1238 dom_smmu
= smmu_domain
->smmu
;
1241 if (dom_smmu
!= smmu
) {
1243 "cannot attach to SMMU %s whilst already attached to domain on SMMU %s\n",
1244 dev_name(smmu_domain
->smmu
->dev
), dev_name(smmu
->dev
));
1248 /* Looks ok, so add the device to the domain */
1249 cfg
= find_smmu_master_cfg(dev
);
1253 ret
= arm_smmu_domain_add_master(smmu_domain
, cfg
);
1255 dev
->archdata
.iommu
= domain
;
1259 static void arm_smmu_detach_dev(struct iommu_domain
*domain
, struct device
*dev
)
1261 struct arm_smmu_domain
*smmu_domain
= domain
->priv
;
1262 struct arm_smmu_master_cfg
*cfg
;
1264 cfg
= find_smmu_master_cfg(dev
);
1268 dev
->archdata
.iommu
= NULL
;
1269 arm_smmu_domain_remove_master(smmu_domain
, cfg
);
1272 static bool arm_smmu_pte_is_contiguous_range(unsigned long addr
,
1275 return !(addr
& ~ARM_SMMU_PTE_CONT_MASK
) &&
1276 (addr
+ ARM_SMMU_PTE_CONT_SIZE
<= end
);
1279 static int arm_smmu_alloc_init_pte(struct arm_smmu_device
*smmu
, pmd_t
*pmd
,
1280 unsigned long addr
, unsigned long end
,
1281 unsigned long pfn
, int prot
, int stage
)
1284 pteval_t pteval
= ARM_SMMU_PTE_PAGE
| ARM_SMMU_PTE_AF
| ARM_SMMU_PTE_XN
;
1286 if (pmd_none(*pmd
)) {
1287 /* Allocate a new set of tables */
1288 pgtable_t table
= alloc_page(GFP_ATOMIC
|__GFP_ZERO
);
1293 arm_smmu_flush_pgtable(smmu
, page_address(table
), PAGE_SIZE
);
1294 pmd_populate(NULL
, pmd
, table
);
1295 arm_smmu_flush_pgtable(smmu
, pmd
, sizeof(*pmd
));
1299 pteval
|= ARM_SMMU_PTE_AP_UNPRIV
| ARM_SMMU_PTE_nG
;
1300 if (!(prot
& IOMMU_WRITE
) && (prot
& IOMMU_READ
))
1301 pteval
|= ARM_SMMU_PTE_AP_RDONLY
;
1303 if (prot
& IOMMU_CACHE
)
1304 pteval
|= (MAIR_ATTR_IDX_CACHE
<<
1305 ARM_SMMU_PTE_ATTRINDX_SHIFT
);
1307 pteval
|= ARM_SMMU_PTE_HAP_FAULT
;
1308 if (prot
& IOMMU_READ
)
1309 pteval
|= ARM_SMMU_PTE_HAP_READ
;
1310 if (prot
& IOMMU_WRITE
)
1311 pteval
|= ARM_SMMU_PTE_HAP_WRITE
;
1312 if (prot
& IOMMU_CACHE
)
1313 pteval
|= ARM_SMMU_PTE_MEMATTR_OIWB
;
1315 pteval
|= ARM_SMMU_PTE_MEMATTR_NC
;
1318 /* If no access, create a faulting entry to avoid TLB fills */
1319 if (prot
& IOMMU_EXEC
)
1320 pteval
&= ~ARM_SMMU_PTE_XN
;
1321 else if (!(prot
& (IOMMU_READ
| IOMMU_WRITE
)))
1322 pteval
&= ~ARM_SMMU_PTE_PAGE
;
1324 pteval
|= ARM_SMMU_PTE_SH_IS
;
1325 start
= pmd_page_vaddr(*pmd
) + pte_index(addr
);
1329 * Install the page table entries. This is fairly complicated
1330 * since we attempt to make use of the contiguous hint in the
1331 * ptes where possible. The contiguous hint indicates a series
1332 * of ARM_SMMU_PTE_CONT_ENTRIES ptes mapping a physically
1333 * contiguous region with the following constraints:
1335 * - The region start is aligned to ARM_SMMU_PTE_CONT_SIZE
1336 * - Each pte in the region has the contiguous hint bit set
1338 * This complicates unmapping (also handled by this code, when
1339 * neither IOMMU_READ or IOMMU_WRITE are set) because it is
1340 * possible, yet highly unlikely, that a client may unmap only
1341 * part of a contiguous range. This requires clearing of the
1342 * contiguous hint bits in the range before installing the new
1345 * Note that re-mapping an address range without first unmapping
1346 * it is not supported, so TLB invalidation is not required here
1347 * and is instead performed at unmap and domain-init time.
1352 pteval
&= ~ARM_SMMU_PTE_CONT
;
1354 if (arm_smmu_pte_is_contiguous_range(addr
, end
)) {
1355 i
= ARM_SMMU_PTE_CONT_ENTRIES
;
1356 pteval
|= ARM_SMMU_PTE_CONT
;
1357 } else if (pte_val(*pte
) &
1358 (ARM_SMMU_PTE_CONT
| ARM_SMMU_PTE_PAGE
)) {
1361 unsigned long idx
= pte_index(addr
);
1363 idx
&= ~(ARM_SMMU_PTE_CONT_ENTRIES
- 1);
1364 cont_start
= pmd_page_vaddr(*pmd
) + idx
;
1365 for (j
= 0; j
< ARM_SMMU_PTE_CONT_ENTRIES
; ++j
)
1366 pte_val(*(cont_start
+ j
)) &=
1369 arm_smmu_flush_pgtable(smmu
, cont_start
,
1371 ARM_SMMU_PTE_CONT_ENTRIES
);
1375 *pte
= pfn_pte(pfn
, __pgprot(pteval
));
1376 } while (pte
++, pfn
++, addr
+= PAGE_SIZE
, --i
);
1377 } while (addr
!= end
);
1379 arm_smmu_flush_pgtable(smmu
, start
, sizeof(*pte
) * (pte
- start
));
1383 static int arm_smmu_alloc_init_pmd(struct arm_smmu_device
*smmu
, pud_t
*pud
,
1384 unsigned long addr
, unsigned long end
,
1385 phys_addr_t phys
, int prot
, int stage
)
1389 unsigned long next
, pfn
= __phys_to_pfn(phys
);
1391 #ifndef __PAGETABLE_PMD_FOLDED
1392 if (pud_none(*pud
)) {
1393 pmd
= (pmd_t
*)get_zeroed_page(GFP_ATOMIC
);
1397 arm_smmu_flush_pgtable(smmu
, pmd
, PAGE_SIZE
);
1398 pud_populate(NULL
, pud
, pmd
);
1399 arm_smmu_flush_pgtable(smmu
, pud
, sizeof(*pud
));
1401 pmd
+= pmd_index(addr
);
1404 pmd
= pmd_offset(pud
, addr
);
1407 next
= pmd_addr_end(addr
, end
);
1408 ret
= arm_smmu_alloc_init_pte(smmu
, pmd
, addr
, next
, pfn
,
1410 phys
+= next
- addr
;
1411 pfn
= __phys_to_pfn(phys
);
1412 } while (pmd
++, addr
= next
, addr
< end
);
1417 static int arm_smmu_alloc_init_pud(struct arm_smmu_device
*smmu
, pgd_t
*pgd
,
1418 unsigned long addr
, unsigned long end
,
1419 phys_addr_t phys
, int prot
, int stage
)
1425 #ifndef __PAGETABLE_PUD_FOLDED
1426 if (pgd_none(*pgd
)) {
1427 pud
= (pud_t
*)get_zeroed_page(GFP_ATOMIC
);
1431 arm_smmu_flush_pgtable(smmu
, pud
, PAGE_SIZE
);
1432 pgd_populate(NULL
, pgd
, pud
);
1433 arm_smmu_flush_pgtable(smmu
, pgd
, sizeof(*pgd
));
1435 pud
+= pud_index(addr
);
1438 pud
= pud_offset(pgd
, addr
);
1441 next
= pud_addr_end(addr
, end
);
1442 ret
= arm_smmu_alloc_init_pmd(smmu
, pud
, addr
, next
, phys
,
1444 phys
+= next
- addr
;
1445 } while (pud
++, addr
= next
, addr
< end
);
1450 static int arm_smmu_handle_mapping(struct arm_smmu_domain
*smmu_domain
,
1451 unsigned long iova
, phys_addr_t paddr
,
1452 size_t size
, int prot
)
1456 phys_addr_t input_mask
, output_mask
;
1457 struct arm_smmu_device
*smmu
= smmu_domain
->smmu
;
1458 struct arm_smmu_cfg
*cfg
= &smmu_domain
->cfg
;
1459 pgd_t
*pgd
= cfg
->pgd
;
1460 unsigned long flags
;
1462 if (cfg
->cbar
== CBAR_TYPE_S2_TRANS
) {
1464 input_mask
= (1ULL << smmu
->s2_input_size
) - 1;
1465 output_mask
= (1ULL << smmu
->s2_output_size
) - 1;
1468 input_mask
= (1ULL << smmu
->s1_input_size
) - 1;
1469 output_mask
= (1ULL << smmu
->s1_output_size
) - 1;
1475 if (size
& ~PAGE_MASK
)
1478 if ((phys_addr_t
)iova
& ~input_mask
)
1481 if (paddr
& ~output_mask
)
1484 spin_lock_irqsave(&smmu_domain
->lock
, flags
);
1485 pgd
+= pgd_index(iova
);
1488 unsigned long next
= pgd_addr_end(iova
, end
);
1490 ret
= arm_smmu_alloc_init_pud(smmu
, pgd
, iova
, next
, paddr
,
1495 paddr
+= next
- iova
;
1497 } while (pgd
++, iova
!= end
);
1500 spin_unlock_irqrestore(&smmu_domain
->lock
, flags
);
1505 static int arm_smmu_map(struct iommu_domain
*domain
, unsigned long iova
,
1506 phys_addr_t paddr
, size_t size
, int prot
)
1508 struct arm_smmu_domain
*smmu_domain
= domain
->priv
;
1513 return arm_smmu_handle_mapping(smmu_domain
, iova
, paddr
, size
, prot
);
1516 static size_t arm_smmu_unmap(struct iommu_domain
*domain
, unsigned long iova
,
1520 struct arm_smmu_domain
*smmu_domain
= domain
->priv
;
1522 ret
= arm_smmu_handle_mapping(smmu_domain
, iova
, 0, size
, 0);
1523 arm_smmu_tlb_inv_context(smmu_domain
);
1524 return ret
? 0 : size
;
1527 static phys_addr_t
arm_smmu_iova_to_phys(struct iommu_domain
*domain
,
1534 struct arm_smmu_domain
*smmu_domain
= domain
->priv
;
1535 struct arm_smmu_cfg
*cfg
= &smmu_domain
->cfg
;
1541 pgd
= *(pgdp
+ pgd_index(iova
));
1545 pud
= *pud_offset(&pgd
, iova
);
1549 pmd
= *pmd_offset(&pud
, iova
);
1553 pte
= *(pmd_page_vaddr(pmd
) + pte_index(iova
));
1557 return __pfn_to_phys(pte_pfn(pte
)) | (iova
& ~PAGE_MASK
);
1560 static bool arm_smmu_capable(enum iommu_cap cap
)
1563 case IOMMU_CAP_CACHE_COHERENCY
:
1565 * Return true here as the SMMU can always send out coherent
1569 case IOMMU_CAP_INTR_REMAP
:
1570 return true; /* MSIs are just memory writes */
1576 static int __arm_smmu_get_pci_sid(struct pci_dev
*pdev
, u16 alias
, void *data
)
1578 *((u16
*)data
) = alias
;
1579 return 0; /* Continue walking */
1582 static void __arm_smmu_release_pci_iommudata(void *data
)
1587 static int arm_smmu_add_device(struct device
*dev
)
1589 struct arm_smmu_device
*smmu
;
1590 struct arm_smmu_master_cfg
*cfg
;
1591 struct iommu_group
*group
;
1592 void (*releasefn
)(void *) = NULL
;
1595 smmu
= find_smmu_for_device(dev
);
1599 group
= iommu_group_alloc();
1600 if (IS_ERR(group
)) {
1601 dev_err(dev
, "Failed to allocate IOMMU group\n");
1602 return PTR_ERR(group
);
1605 if (dev_is_pci(dev
)) {
1606 struct pci_dev
*pdev
= to_pci_dev(dev
);
1608 cfg
= kzalloc(sizeof(*cfg
), GFP_KERNEL
);
1614 cfg
->num_streamids
= 1;
1616 * Assume Stream ID == Requester ID for now.
1617 * We need a way to describe the ID mappings in FDT.
1619 pci_for_each_dma_alias(pdev
, __arm_smmu_get_pci_sid
,
1620 &cfg
->streamids
[0]);
1621 releasefn
= __arm_smmu_release_pci_iommudata
;
1623 struct arm_smmu_master
*master
;
1625 master
= find_smmu_master(smmu
, dev
->of_node
);
1634 iommu_group_set_iommudata(group
, cfg
, releasefn
);
1635 ret
= iommu_group_add_device(group
, dev
);
1638 iommu_group_put(group
);
1642 static void arm_smmu_remove_device(struct device
*dev
)
1644 iommu_group_remove_device(dev
);
1647 static const struct iommu_ops arm_smmu_ops
= {
1648 .capable
= arm_smmu_capable
,
1649 .domain_init
= arm_smmu_domain_init
,
1650 .domain_destroy
= arm_smmu_domain_destroy
,
1651 .attach_dev
= arm_smmu_attach_dev
,
1652 .detach_dev
= arm_smmu_detach_dev
,
1653 .map
= arm_smmu_map
,
1654 .unmap
= arm_smmu_unmap
,
1655 .map_sg
= default_iommu_map_sg
,
1656 .iova_to_phys
= arm_smmu_iova_to_phys
,
1657 .add_device
= arm_smmu_add_device
,
1658 .remove_device
= arm_smmu_remove_device
,
1659 .pgsize_bitmap
= (SECTION_SIZE
|
1660 ARM_SMMU_PTE_CONT_SIZE
|
1664 static void arm_smmu_device_reset(struct arm_smmu_device
*smmu
)
1666 void __iomem
*gr0_base
= ARM_SMMU_GR0(smmu
);
1667 void __iomem
*cb_base
;
1671 /* clear global FSR */
1672 reg
= readl_relaxed(ARM_SMMU_GR0_NS(smmu
) + ARM_SMMU_GR0_sGFSR
);
1673 writel(reg
, ARM_SMMU_GR0_NS(smmu
) + ARM_SMMU_GR0_sGFSR
);
1675 /* Mark all SMRn as invalid and all S2CRn as bypass */
1676 for (i
= 0; i
< smmu
->num_mapping_groups
; ++i
) {
1677 writel_relaxed(0, gr0_base
+ ARM_SMMU_GR0_SMR(i
));
1678 writel_relaxed(S2CR_TYPE_BYPASS
,
1679 gr0_base
+ ARM_SMMU_GR0_S2CR(i
));
1682 /* Make sure all context banks are disabled and clear CB_FSR */
1683 for (i
= 0; i
< smmu
->num_context_banks
; ++i
) {
1684 cb_base
= ARM_SMMU_CB_BASE(smmu
) + ARM_SMMU_CB(smmu
, i
);
1685 writel_relaxed(0, cb_base
+ ARM_SMMU_CB_SCTLR
);
1686 writel_relaxed(FSR_FAULT
, cb_base
+ ARM_SMMU_CB_FSR
);
1689 /* Invalidate the TLB, just in case */
1690 writel_relaxed(0, gr0_base
+ ARM_SMMU_GR0_STLBIALL
);
1691 writel_relaxed(0, gr0_base
+ ARM_SMMU_GR0_TLBIALLH
);
1692 writel_relaxed(0, gr0_base
+ ARM_SMMU_GR0_TLBIALLNSNH
);
1694 reg
= readl_relaxed(ARM_SMMU_GR0_NS(smmu
) + ARM_SMMU_GR0_sCR0
);
1696 /* Enable fault reporting */
1697 reg
|= (sCR0_GFRE
| sCR0_GFIE
| sCR0_GCFGFRE
| sCR0_GCFGFIE
);
1699 /* Disable TLB broadcasting. */
1700 reg
|= (sCR0_VMIDPNE
| sCR0_PTM
);
1702 /* Enable client access, but bypass when no mapping is found */
1703 reg
&= ~(sCR0_CLIENTPD
| sCR0_USFCFG
);
1705 /* Disable forced broadcasting */
1708 /* Don't upgrade barriers */
1709 reg
&= ~(sCR0_BSU_MASK
<< sCR0_BSU_SHIFT
);
1711 /* Push the button */
1712 arm_smmu_tlb_sync(smmu
);
1713 writel(reg
, ARM_SMMU_GR0_NS(smmu
) + ARM_SMMU_GR0_sCR0
);
1716 static int arm_smmu_id_size_to_bits(int size
)
1735 static int arm_smmu_device_cfg_probe(struct arm_smmu_device
*smmu
)
1738 void __iomem
*gr0_base
= ARM_SMMU_GR0(smmu
);
1741 dev_notice(smmu
->dev
, "probing hardware configuration...\n");
1742 dev_notice(smmu
->dev
, "SMMUv%d with:\n", smmu
->version
);
1745 id
= readl_relaxed(gr0_base
+ ARM_SMMU_GR0_ID0
);
1746 #ifndef CONFIG_64BIT
1747 if (((id
>> ID0_PTFS_SHIFT
) & ID0_PTFS_MASK
) == ID0_PTFS_V8_ONLY
) {
1748 dev_err(smmu
->dev
, "\tno v7 descriptor support!\n");
1753 /* Restrict available stages based on module parameter */
1754 if (force_stage
== 1)
1755 id
&= ~(ID0_S2TS
| ID0_NTS
);
1756 else if (force_stage
== 2)
1757 id
&= ~(ID0_S1TS
| ID0_NTS
);
1759 if (id
& ID0_S1TS
) {
1760 smmu
->features
|= ARM_SMMU_FEAT_TRANS_S1
;
1761 dev_notice(smmu
->dev
, "\tstage 1 translation\n");
1764 if (id
& ID0_S2TS
) {
1765 smmu
->features
|= ARM_SMMU_FEAT_TRANS_S2
;
1766 dev_notice(smmu
->dev
, "\tstage 2 translation\n");
1770 smmu
->features
|= ARM_SMMU_FEAT_TRANS_NESTED
;
1771 dev_notice(smmu
->dev
, "\tnested translation\n");
1774 if (!(smmu
->features
&
1775 (ARM_SMMU_FEAT_TRANS_S1
| ARM_SMMU_FEAT_TRANS_S2
))) {
1776 dev_err(smmu
->dev
, "\tno translation support!\n");
1780 if (id
& ID0_CTTW
) {
1781 smmu
->features
|= ARM_SMMU_FEAT_COHERENT_WALK
;
1782 dev_notice(smmu
->dev
, "\tcoherent table walk\n");
1788 smmu
->features
|= ARM_SMMU_FEAT_STREAM_MATCH
;
1789 smmu
->num_mapping_groups
= (id
>> ID0_NUMSMRG_SHIFT
) &
1791 if (smmu
->num_mapping_groups
== 0) {
1793 "stream-matching supported, but no SMRs present!\n");
1797 smr
= SMR_MASK_MASK
<< SMR_MASK_SHIFT
;
1798 smr
|= (SMR_ID_MASK
<< SMR_ID_SHIFT
);
1799 writel_relaxed(smr
, gr0_base
+ ARM_SMMU_GR0_SMR(0));
1800 smr
= readl_relaxed(gr0_base
+ ARM_SMMU_GR0_SMR(0));
1802 mask
= (smr
>> SMR_MASK_SHIFT
) & SMR_MASK_MASK
;
1803 sid
= (smr
>> SMR_ID_SHIFT
) & SMR_ID_MASK
;
1804 if ((mask
& sid
) != sid
) {
1806 "SMR mask bits (0x%x) insufficient for ID field (0x%x)\n",
1811 dev_notice(smmu
->dev
,
1812 "\tstream matching with %u register groups, mask 0x%x",
1813 smmu
->num_mapping_groups
, mask
);
1815 smmu
->num_mapping_groups
= (id
>> ID0_NUMSIDB_SHIFT
) &
1820 id
= readl_relaxed(gr0_base
+ ARM_SMMU_GR0_ID1
);
1821 smmu
->pgshift
= (id
& ID1_PAGESIZE
) ? 16 : 12;
1823 /* Check for size mismatch of SMMU address space from mapped region */
1825 (((id
>> ID1_NUMPAGENDXB_SHIFT
) & ID1_NUMPAGENDXB_MASK
) + 1);
1826 size
*= 2 << smmu
->pgshift
;
1827 if (smmu
->size
!= size
)
1829 "SMMU address space size (0x%lx) differs from mapped region size (0x%lx)!\n",
1832 smmu
->num_s2_context_banks
= (id
>> ID1_NUMS2CB_SHIFT
) &
1834 smmu
->num_context_banks
= (id
>> ID1_NUMCB_SHIFT
) & ID1_NUMCB_MASK
;
1835 if (smmu
->num_s2_context_banks
> smmu
->num_context_banks
) {
1836 dev_err(smmu
->dev
, "impossible number of S2 context banks!\n");
1839 dev_notice(smmu
->dev
, "\t%u context banks (%u stage-2 only)\n",
1840 smmu
->num_context_banks
, smmu
->num_s2_context_banks
);
1843 id
= readl_relaxed(gr0_base
+ ARM_SMMU_GR0_ID2
);
1844 size
= arm_smmu_id_size_to_bits((id
>> ID2_IAS_SHIFT
) & ID2_IAS_MASK
);
1845 smmu
->s1_output_size
= min_t(unsigned long, PHYS_MASK_SHIFT
, size
);
1847 /* Stage-2 input size limited due to pgd allocation (PTRS_PER_PGD) */
1849 smmu
->s2_input_size
= min_t(unsigned long, VA_BITS
, size
);
1851 smmu
->s2_input_size
= min(32UL, size
);
1854 /* The stage-2 output mask is also applied for bypass */
1855 size
= arm_smmu_id_size_to_bits((id
>> ID2_OAS_SHIFT
) & ID2_OAS_MASK
);
1856 smmu
->s2_output_size
= min_t(unsigned long, PHYS_MASK_SHIFT
, size
);
1858 if (smmu
->version
== ARM_SMMU_V1
) {
1859 smmu
->s1_input_size
= 32;
1862 size
= (id
>> ID2_UBS_SHIFT
) & ID2_UBS_MASK
;
1863 size
= min(VA_BITS
, arm_smmu_id_size_to_bits(size
));
1867 smmu
->s1_input_size
= size
;
1869 if ((PAGE_SIZE
== SZ_4K
&& !(id
& ID2_PTFS_4K
)) ||
1870 (PAGE_SIZE
== SZ_64K
&& !(id
& ID2_PTFS_64K
)) ||
1871 (PAGE_SIZE
!= SZ_4K
&& PAGE_SIZE
!= SZ_64K
)) {
1872 dev_err(smmu
->dev
, "CPU page size 0x%lx unsupported\n",
1878 if (smmu
->features
& ARM_SMMU_FEAT_TRANS_S1
)
1879 dev_notice(smmu
->dev
, "\tStage-1: %lu-bit VA -> %lu-bit IPA\n",
1880 smmu
->s1_input_size
, smmu
->s1_output_size
);
1882 if (smmu
->features
& ARM_SMMU_FEAT_TRANS_S2
)
1883 dev_notice(smmu
->dev
, "\tStage-2: %lu-bit IPA -> %lu-bit PA\n",
1884 smmu
->s2_input_size
, smmu
->s2_output_size
);
1889 static const struct of_device_id arm_smmu_of_match
[] = {
1890 { .compatible
= "arm,smmu-v1", .data
= (void *)ARM_SMMU_V1
},
1891 { .compatible
= "arm,smmu-v2", .data
= (void *)ARM_SMMU_V2
},
1892 { .compatible
= "arm,mmu-400", .data
= (void *)ARM_SMMU_V1
},
1893 { .compatible
= "arm,mmu-401", .data
= (void *)ARM_SMMU_V1
},
1894 { .compatible
= "arm,mmu-500", .data
= (void *)ARM_SMMU_V2
},
1897 MODULE_DEVICE_TABLE(of
, arm_smmu_of_match
);
1899 static int arm_smmu_device_dt_probe(struct platform_device
*pdev
)
1901 const struct of_device_id
*of_id
;
1902 struct resource
*res
;
1903 struct arm_smmu_device
*smmu
;
1904 struct device
*dev
= &pdev
->dev
;
1905 struct rb_node
*node
;
1906 struct of_phandle_args masterspec
;
1907 int num_irqs
, i
, err
;
1909 smmu
= devm_kzalloc(dev
, sizeof(*smmu
), GFP_KERNEL
);
1911 dev_err(dev
, "failed to allocate arm_smmu_device\n");
1916 of_id
= of_match_node(arm_smmu_of_match
, dev
->of_node
);
1917 smmu
->version
= (enum arm_smmu_arch_version
)of_id
->data
;
1919 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
1920 smmu
->base
= devm_ioremap_resource(dev
, res
);
1921 if (IS_ERR(smmu
->base
))
1922 return PTR_ERR(smmu
->base
);
1923 smmu
->size
= resource_size(res
);
1925 if (of_property_read_u32(dev
->of_node
, "#global-interrupts",
1926 &smmu
->num_global_irqs
)) {
1927 dev_err(dev
, "missing #global-interrupts property\n");
1932 while ((res
= platform_get_resource(pdev
, IORESOURCE_IRQ
, num_irqs
))) {
1934 if (num_irqs
> smmu
->num_global_irqs
)
1935 smmu
->num_context_irqs
++;
1938 if (!smmu
->num_context_irqs
) {
1939 dev_err(dev
, "found %d interrupts but expected at least %d\n",
1940 num_irqs
, smmu
->num_global_irqs
+ 1);
1944 smmu
->irqs
= devm_kzalloc(dev
, sizeof(*smmu
->irqs
) * num_irqs
,
1947 dev_err(dev
, "failed to allocate %d irqs\n", num_irqs
);
1951 for (i
= 0; i
< num_irqs
; ++i
) {
1952 int irq
= platform_get_irq(pdev
, i
);
1955 dev_err(dev
, "failed to get irq index %d\n", i
);
1958 smmu
->irqs
[i
] = irq
;
1961 err
= arm_smmu_device_cfg_probe(smmu
);
1966 smmu
->masters
= RB_ROOT
;
1967 while (!of_parse_phandle_with_args(dev
->of_node
, "mmu-masters",
1968 "#stream-id-cells", i
,
1970 err
= register_smmu_master(smmu
, dev
, &masterspec
);
1972 dev_err(dev
, "failed to add master %s\n",
1973 masterspec
.np
->name
);
1974 goto out_put_masters
;
1979 dev_notice(dev
, "registered %d master devices\n", i
);
1981 parse_driver_options(smmu
);
1983 if (smmu
->version
> ARM_SMMU_V1
&&
1984 smmu
->num_context_banks
!= smmu
->num_context_irqs
) {
1986 "found only %d context interrupt(s) but %d required\n",
1987 smmu
->num_context_irqs
, smmu
->num_context_banks
);
1989 goto out_put_masters
;
1992 for (i
= 0; i
< smmu
->num_global_irqs
; ++i
) {
1993 err
= request_irq(smmu
->irqs
[i
],
1994 arm_smmu_global_fault
,
1996 "arm-smmu global fault",
1999 dev_err(dev
, "failed to request global IRQ %d (%u)\n",
2005 INIT_LIST_HEAD(&smmu
->list
);
2006 spin_lock(&arm_smmu_devices_lock
);
2007 list_add(&smmu
->list
, &arm_smmu_devices
);
2008 spin_unlock(&arm_smmu_devices_lock
);
2010 arm_smmu_device_reset(smmu
);
2015 free_irq(smmu
->irqs
[i
], smmu
);
2018 for (node
= rb_first(&smmu
->masters
); node
; node
= rb_next(node
)) {
2019 struct arm_smmu_master
*master
2020 = container_of(node
, struct arm_smmu_master
, node
);
2021 of_node_put(master
->of_node
);
2027 static int arm_smmu_device_remove(struct platform_device
*pdev
)
2030 struct device
*dev
= &pdev
->dev
;
2031 struct arm_smmu_device
*curr
, *smmu
= NULL
;
2032 struct rb_node
*node
;
2034 spin_lock(&arm_smmu_devices_lock
);
2035 list_for_each_entry(curr
, &arm_smmu_devices
, list
) {
2036 if (curr
->dev
== dev
) {
2038 list_del(&smmu
->list
);
2042 spin_unlock(&arm_smmu_devices_lock
);
2047 for (node
= rb_first(&smmu
->masters
); node
; node
= rb_next(node
)) {
2048 struct arm_smmu_master
*master
2049 = container_of(node
, struct arm_smmu_master
, node
);
2050 of_node_put(master
->of_node
);
2053 if (!bitmap_empty(smmu
->context_map
, ARM_SMMU_MAX_CBS
))
2054 dev_err(dev
, "removing device with active domains!\n");
2056 for (i
= 0; i
< smmu
->num_global_irqs
; ++i
)
2057 free_irq(smmu
->irqs
[i
], smmu
);
2059 /* Turn the thing off */
2060 writel(sCR0_CLIENTPD
, ARM_SMMU_GR0_NS(smmu
) + ARM_SMMU_GR0_sCR0
);
2064 static struct platform_driver arm_smmu_driver
= {
2066 .owner
= THIS_MODULE
,
2068 .of_match_table
= of_match_ptr(arm_smmu_of_match
),
2070 .probe
= arm_smmu_device_dt_probe
,
2071 .remove
= arm_smmu_device_remove
,
2074 static int __init
arm_smmu_init(void)
2078 ret
= platform_driver_register(&arm_smmu_driver
);
2082 /* Oh, for a proper bus abstraction */
2083 if (!iommu_present(&platform_bus_type
))
2084 bus_set_iommu(&platform_bus_type
, &arm_smmu_ops
);
2086 #ifdef CONFIG_ARM_AMBA
2087 if (!iommu_present(&amba_bustype
))
2088 bus_set_iommu(&amba_bustype
, &arm_smmu_ops
);
2092 if (!iommu_present(&pci_bus_type
))
2093 bus_set_iommu(&pci_bus_type
, &arm_smmu_ops
);
2099 static void __exit
arm_smmu_exit(void)
2101 return platform_driver_unregister(&arm_smmu_driver
);
2104 subsys_initcall(arm_smmu_init
);
2105 module_exit(arm_smmu_exit
);
2107 MODULE_DESCRIPTION("IOMMU API for ARM architected SMMU implementations");
2108 MODULE_AUTHOR("Will Deacon <will.deacon@arm.com>");
2109 MODULE_LICENSE("GPL v2");