mm, slab: initialize object alignment on cache creation
[platform/adaptation/renesas_rcar/renesas_kernel.git] / drivers / iommu / arm-smmu.c
1 /*
2  * IOMMU API for ARM architected SMMU implementations.
3  *
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.
7  *
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.
12  *
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.
16  *
17  * Copyright (C) 2013 ARM Limited
18  *
19  * Author: Will Deacon <will.deacon@arm.com>
20  *
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 42-bit addressing (dependent on VA_BITS)
28  *      - Context fault reporting
29  */
30
31 #define pr_fmt(fmt) "arm-smmu: " fmt
32
33 #include <linux/delay.h>
34 #include <linux/dma-mapping.h>
35 #include <linux/err.h>
36 #include <linux/interrupt.h>
37 #include <linux/io.h>
38 #include <linux/iommu.h>
39 #include <linux/mm.h>
40 #include <linux/module.h>
41 #include <linux/of.h>
42 #include <linux/platform_device.h>
43 #include <linux/slab.h>
44 #include <linux/spinlock.h>
45
46 #include <linux/amba/bus.h>
47
48 #include <asm/pgalloc.h>
49
50 /* Maximum number of stream IDs assigned to a single device */
51 #define MAX_MASTER_STREAMIDS            8
52
53 /* Maximum number of context banks per SMMU */
54 #define ARM_SMMU_MAX_CBS                128
55
56 /* Maximum number of mapping groups per SMMU */
57 #define ARM_SMMU_MAX_SMRS               128
58
59 /* SMMU global address space */
60 #define ARM_SMMU_GR0(smmu)              ((smmu)->base)
61 #define ARM_SMMU_GR1(smmu)              ((smmu)->base + (smmu)->pagesize)
62
63 /* Page table bits */
64 #define ARM_SMMU_PTE_XN                 (((pteval_t)3) << 53)
65 #define ARM_SMMU_PTE_CONT               (((pteval_t)1) << 52)
66 #define ARM_SMMU_PTE_AF                 (((pteval_t)1) << 10)
67 #define ARM_SMMU_PTE_SH_NS              (((pteval_t)0) << 8)
68 #define ARM_SMMU_PTE_SH_OS              (((pteval_t)2) << 8)
69 #define ARM_SMMU_PTE_SH_IS              (((pteval_t)3) << 8)
70 #define ARM_SMMU_PTE_PAGE               (((pteval_t)3) << 0)
71
72 #if PAGE_SIZE == SZ_4K
73 #define ARM_SMMU_PTE_CONT_ENTRIES       16
74 #elif PAGE_SIZE == SZ_64K
75 #define ARM_SMMU_PTE_CONT_ENTRIES       32
76 #else
77 #define ARM_SMMU_PTE_CONT_ENTRIES       1
78 #endif
79
80 #define ARM_SMMU_PTE_CONT_SIZE          (PAGE_SIZE * ARM_SMMU_PTE_CONT_ENTRIES)
81 #define ARM_SMMU_PTE_CONT_MASK          (~(ARM_SMMU_PTE_CONT_SIZE - 1))
82
83 /* Stage-1 PTE */
84 #define ARM_SMMU_PTE_AP_UNPRIV          (((pteval_t)1) << 6)
85 #define ARM_SMMU_PTE_AP_RDONLY          (((pteval_t)2) << 6)
86 #define ARM_SMMU_PTE_ATTRINDX_SHIFT     2
87 #define ARM_SMMU_PTE_nG                 (((pteval_t)1) << 11)
88
89 /* Stage-2 PTE */
90 #define ARM_SMMU_PTE_HAP_FAULT          (((pteval_t)0) << 6)
91 #define ARM_SMMU_PTE_HAP_READ           (((pteval_t)1) << 6)
92 #define ARM_SMMU_PTE_HAP_WRITE          (((pteval_t)2) << 6)
93 #define ARM_SMMU_PTE_MEMATTR_OIWB       (((pteval_t)0xf) << 2)
94 #define ARM_SMMU_PTE_MEMATTR_NC         (((pteval_t)0x5) << 2)
95 #define ARM_SMMU_PTE_MEMATTR_DEV        (((pteval_t)0x1) << 2)
96
97 /* Configuration registers */
98 #define ARM_SMMU_GR0_sCR0               0x0
99 #define sCR0_CLIENTPD                   (1 << 0)
100 #define sCR0_GFRE                       (1 << 1)
101 #define sCR0_GFIE                       (1 << 2)
102 #define sCR0_GCFGFRE                    (1 << 4)
103 #define sCR0_GCFGFIE                    (1 << 5)
104 #define sCR0_USFCFG                     (1 << 10)
105 #define sCR0_VMIDPNE                    (1 << 11)
106 #define sCR0_PTM                        (1 << 12)
107 #define sCR0_FB                         (1 << 13)
108 #define sCR0_BSU_SHIFT                  14
109 #define sCR0_BSU_MASK                   0x3
110
111 /* Identification registers */
112 #define ARM_SMMU_GR0_ID0                0x20
113 #define ARM_SMMU_GR0_ID1                0x24
114 #define ARM_SMMU_GR0_ID2                0x28
115 #define ARM_SMMU_GR0_ID3                0x2c
116 #define ARM_SMMU_GR0_ID4                0x30
117 #define ARM_SMMU_GR0_ID5                0x34
118 #define ARM_SMMU_GR0_ID6                0x38
119 #define ARM_SMMU_GR0_ID7                0x3c
120 #define ARM_SMMU_GR0_sGFSR              0x48
121 #define ARM_SMMU_GR0_sGFSYNR0           0x50
122 #define ARM_SMMU_GR0_sGFSYNR1           0x54
123 #define ARM_SMMU_GR0_sGFSYNR2           0x58
124 #define ARM_SMMU_GR0_PIDR0              0xfe0
125 #define ARM_SMMU_GR0_PIDR1              0xfe4
126 #define ARM_SMMU_GR0_PIDR2              0xfe8
127
128 #define ID0_S1TS                        (1 << 30)
129 #define ID0_S2TS                        (1 << 29)
130 #define ID0_NTS                         (1 << 28)
131 #define ID0_SMS                         (1 << 27)
132 #define ID0_PTFS_SHIFT                  24
133 #define ID0_PTFS_MASK                   0x2
134 #define ID0_PTFS_V8_ONLY                0x2
135 #define ID0_CTTW                        (1 << 14)
136 #define ID0_NUMIRPT_SHIFT               16
137 #define ID0_NUMIRPT_MASK                0xff
138 #define ID0_NUMSMRG_SHIFT               0
139 #define ID0_NUMSMRG_MASK                0xff
140
141 #define ID1_PAGESIZE                    (1 << 31)
142 #define ID1_NUMPAGENDXB_SHIFT           28
143 #define ID1_NUMPAGENDXB_MASK            7
144 #define ID1_NUMS2CB_SHIFT               16
145 #define ID1_NUMS2CB_MASK                0xff
146 #define ID1_NUMCB_SHIFT                 0
147 #define ID1_NUMCB_MASK                  0xff
148
149 #define ID2_OAS_SHIFT                   4
150 #define ID2_OAS_MASK                    0xf
151 #define ID2_IAS_SHIFT                   0
152 #define ID2_IAS_MASK                    0xf
153 #define ID2_UBS_SHIFT                   8
154 #define ID2_UBS_MASK                    0xf
155 #define ID2_PTFS_4K                     (1 << 12)
156 #define ID2_PTFS_16K                    (1 << 13)
157 #define ID2_PTFS_64K                    (1 << 14)
158
159 #define PIDR2_ARCH_SHIFT                4
160 #define PIDR2_ARCH_MASK                 0xf
161
162 /* Global TLB invalidation */
163 #define ARM_SMMU_GR0_STLBIALL           0x60
164 #define ARM_SMMU_GR0_TLBIVMID           0x64
165 #define ARM_SMMU_GR0_TLBIALLNSNH        0x68
166 #define ARM_SMMU_GR0_TLBIALLH           0x6c
167 #define ARM_SMMU_GR0_sTLBGSYNC          0x70
168 #define ARM_SMMU_GR0_sTLBGSTATUS        0x74
169 #define sTLBGSTATUS_GSACTIVE            (1 << 0)
170 #define TLB_LOOP_TIMEOUT                1000000 /* 1s! */
171
172 /* Stream mapping registers */
173 #define ARM_SMMU_GR0_SMR(n)             (0x800 + ((n) << 2))
174 #define SMR_VALID                       (1 << 31)
175 #define SMR_MASK_SHIFT                  16
176 #define SMR_MASK_MASK                   0x7fff
177 #define SMR_ID_SHIFT                    0
178 #define SMR_ID_MASK                     0x7fff
179
180 #define ARM_SMMU_GR0_S2CR(n)            (0xc00 + ((n) << 2))
181 #define S2CR_CBNDX_SHIFT                0
182 #define S2CR_CBNDX_MASK                 0xff
183 #define S2CR_TYPE_SHIFT                 16
184 #define S2CR_TYPE_MASK                  0x3
185 #define S2CR_TYPE_TRANS                 (0 << S2CR_TYPE_SHIFT)
186 #define S2CR_TYPE_BYPASS                (1 << S2CR_TYPE_SHIFT)
187 #define S2CR_TYPE_FAULT                 (2 << S2CR_TYPE_SHIFT)
188
189 /* Context bank attribute registers */
190 #define ARM_SMMU_GR1_CBAR(n)            (0x0 + ((n) << 2))
191 #define CBAR_VMID_SHIFT                 0
192 #define CBAR_VMID_MASK                  0xff
193 #define CBAR_S1_BPSHCFG_SHIFT           8
194 #define CBAR_S1_BPSHCFG_MASK            3
195 #define CBAR_S1_BPSHCFG_NSH             3
196 #define CBAR_S1_MEMATTR_SHIFT           12
197 #define CBAR_S1_MEMATTR_MASK            0xf
198 #define CBAR_S1_MEMATTR_WB              0xf
199 #define CBAR_TYPE_SHIFT                 16
200 #define CBAR_TYPE_MASK                  0x3
201 #define CBAR_TYPE_S2_TRANS              (0 << CBAR_TYPE_SHIFT)
202 #define CBAR_TYPE_S1_TRANS_S2_BYPASS    (1 << CBAR_TYPE_SHIFT)
203 #define CBAR_TYPE_S1_TRANS_S2_FAULT     (2 << CBAR_TYPE_SHIFT)
204 #define CBAR_TYPE_S1_TRANS_S2_TRANS     (3 << CBAR_TYPE_SHIFT)
205 #define CBAR_IRPTNDX_SHIFT              24
206 #define CBAR_IRPTNDX_MASK               0xff
207
208 #define ARM_SMMU_GR1_CBA2R(n)           (0x800 + ((n) << 2))
209 #define CBA2R_RW64_32BIT                (0 << 0)
210 #define CBA2R_RW64_64BIT                (1 << 0)
211
212 /* Translation context bank */
213 #define ARM_SMMU_CB_BASE(smmu)          ((smmu)->base + ((smmu)->size >> 1))
214 #define ARM_SMMU_CB(smmu, n)            ((n) * (smmu)->pagesize)
215
216 #define ARM_SMMU_CB_SCTLR               0x0
217 #define ARM_SMMU_CB_RESUME              0x8
218 #define ARM_SMMU_CB_TTBCR2              0x10
219 #define ARM_SMMU_CB_TTBR0_LO            0x20
220 #define ARM_SMMU_CB_TTBR0_HI            0x24
221 #define ARM_SMMU_CB_TTBCR               0x30
222 #define ARM_SMMU_CB_S1_MAIR0            0x38
223 #define ARM_SMMU_CB_FSR                 0x58
224 #define ARM_SMMU_CB_FAR_LO              0x60
225 #define ARM_SMMU_CB_FAR_HI              0x64
226 #define ARM_SMMU_CB_FSYNR0              0x68
227 #define ARM_SMMU_CB_S1_TLBIASID         0x610
228
229 #define SCTLR_S1_ASIDPNE                (1 << 12)
230 #define SCTLR_CFCFG                     (1 << 7)
231 #define SCTLR_CFIE                      (1 << 6)
232 #define SCTLR_CFRE                      (1 << 5)
233 #define SCTLR_E                         (1 << 4)
234 #define SCTLR_AFE                       (1 << 2)
235 #define SCTLR_TRE                       (1 << 1)
236 #define SCTLR_M                         (1 << 0)
237 #define SCTLR_EAE_SBOP                  (SCTLR_AFE | SCTLR_TRE)
238
239 #define RESUME_RETRY                    (0 << 0)
240 #define RESUME_TERMINATE                (1 << 0)
241
242 #define TTBCR_EAE                       (1 << 31)
243
244 #define TTBCR_PASIZE_SHIFT              16
245 #define TTBCR_PASIZE_MASK               0x7
246
247 #define TTBCR_TG0_4K                    (0 << 14)
248 #define TTBCR_TG0_64K                   (1 << 14)
249
250 #define TTBCR_SH0_SHIFT                 12
251 #define TTBCR_SH0_MASK                  0x3
252 #define TTBCR_SH_NS                     0
253 #define TTBCR_SH_OS                     2
254 #define TTBCR_SH_IS                     3
255
256 #define TTBCR_ORGN0_SHIFT               10
257 #define TTBCR_IRGN0_SHIFT               8
258 #define TTBCR_RGN_MASK                  0x3
259 #define TTBCR_RGN_NC                    0
260 #define TTBCR_RGN_WBWA                  1
261 #define TTBCR_RGN_WT                    2
262 #define TTBCR_RGN_WB                    3
263
264 #define TTBCR_SL0_SHIFT                 6
265 #define TTBCR_SL0_MASK                  0x3
266 #define TTBCR_SL0_LVL_2                 0
267 #define TTBCR_SL0_LVL_1                 1
268
269 #define TTBCR_T1SZ_SHIFT                16
270 #define TTBCR_T0SZ_SHIFT                0
271 #define TTBCR_SZ_MASK                   0xf
272
273 #define TTBCR2_SEP_SHIFT                15
274 #define TTBCR2_SEP_MASK                 0x7
275
276 #define TTBCR2_PASIZE_SHIFT             0
277 #define TTBCR2_PASIZE_MASK              0x7
278
279 /* Common definitions for PASize and SEP fields */
280 #define TTBCR2_ADDR_32                  0
281 #define TTBCR2_ADDR_36                  1
282 #define TTBCR2_ADDR_40                  2
283 #define TTBCR2_ADDR_42                  3
284 #define TTBCR2_ADDR_44                  4
285 #define TTBCR2_ADDR_48                  5
286
287 #define TTBRn_HI_ASID_SHIFT             16
288
289 #define MAIR_ATTR_SHIFT(n)              ((n) << 3)
290 #define MAIR_ATTR_MASK                  0xff
291 #define MAIR_ATTR_DEVICE                0x04
292 #define MAIR_ATTR_NC                    0x44
293 #define MAIR_ATTR_WBRWA                 0xff
294 #define MAIR_ATTR_IDX_NC                0
295 #define MAIR_ATTR_IDX_CACHE             1
296 #define MAIR_ATTR_IDX_DEV               2
297
298 #define FSR_MULTI                       (1 << 31)
299 #define FSR_SS                          (1 << 30)
300 #define FSR_UUT                         (1 << 8)
301 #define FSR_ASF                         (1 << 7)
302 #define FSR_TLBLKF                      (1 << 6)
303 #define FSR_TLBMCF                      (1 << 5)
304 #define FSR_EF                          (1 << 4)
305 #define FSR_PF                          (1 << 3)
306 #define FSR_AFF                         (1 << 2)
307 #define FSR_TF                          (1 << 1)
308
309 #define FSR_IGN                         (FSR_AFF | FSR_ASF | FSR_TLBMCF |       \
310                                          FSR_TLBLKF)
311 #define FSR_FAULT                       (FSR_MULTI | FSR_SS | FSR_UUT |         \
312                                          FSR_EF | FSR_PF | FSR_TF | FSR_IGN)
313
314 #define FSYNR0_WNR                      (1 << 4)
315
316 struct arm_smmu_smr {
317         u8                              idx;
318         u16                             mask;
319         u16                             id;
320 };
321
322 struct arm_smmu_master {
323         struct device_node              *of_node;
324
325         /*
326          * The following is specific to the master's position in the
327          * SMMU chain.
328          */
329         struct rb_node                  node;
330         int                             num_streamids;
331         u16                             streamids[MAX_MASTER_STREAMIDS];
332
333         /*
334          * We only need to allocate these on the root SMMU, as we
335          * configure unmatched streams to bypass translation.
336          */
337         struct arm_smmu_smr             *smrs;
338 };
339
340 struct arm_smmu_device {
341         struct device                   *dev;
342         struct device_node              *parent_of_node;
343
344         void __iomem                    *base;
345         unsigned long                   size;
346         unsigned long                   pagesize;
347
348 #define ARM_SMMU_FEAT_COHERENT_WALK     (1 << 0)
349 #define ARM_SMMU_FEAT_STREAM_MATCH      (1 << 1)
350 #define ARM_SMMU_FEAT_TRANS_S1          (1 << 2)
351 #define ARM_SMMU_FEAT_TRANS_S2          (1 << 3)
352 #define ARM_SMMU_FEAT_TRANS_NESTED      (1 << 4)
353         u32                             features;
354         int                             version;
355
356         u32                             num_context_banks;
357         u32                             num_s2_context_banks;
358         DECLARE_BITMAP(context_map, ARM_SMMU_MAX_CBS);
359         atomic_t                        irptndx;
360
361         u32                             num_mapping_groups;
362         DECLARE_BITMAP(smr_map, ARM_SMMU_MAX_SMRS);
363
364         unsigned long                   input_size;
365         unsigned long                   s1_output_size;
366         unsigned long                   s2_output_size;
367
368         u32                             num_global_irqs;
369         u32                             num_context_irqs;
370         unsigned int                    *irqs;
371
372         struct list_head                list;
373         struct rb_root                  masters;
374 };
375
376 struct arm_smmu_cfg {
377         struct arm_smmu_device          *smmu;
378         u8                              cbndx;
379         u8                              irptndx;
380         u32                             cbar;
381         pgd_t                           *pgd;
382 };
383 #define INVALID_IRPTNDX                 0xff
384
385 #define ARM_SMMU_CB_ASID(cfg)           ((cfg)->cbndx)
386 #define ARM_SMMU_CB_VMID(cfg)           ((cfg)->cbndx + 1)
387
388 struct arm_smmu_domain {
389         /*
390          * A domain can span across multiple, chained SMMUs and requires
391          * all devices within the domain to follow the same translation
392          * path.
393          */
394         struct arm_smmu_device          *leaf_smmu;
395         struct arm_smmu_cfg             root_cfg;
396         phys_addr_t                     output_mask;
397
398         spinlock_t                      lock;
399 };
400
401 static DEFINE_SPINLOCK(arm_smmu_devices_lock);
402 static LIST_HEAD(arm_smmu_devices);
403
404 static struct arm_smmu_master *find_smmu_master(struct arm_smmu_device *smmu,
405                                                 struct device_node *dev_node)
406 {
407         struct rb_node *node = smmu->masters.rb_node;
408
409         while (node) {
410                 struct arm_smmu_master *master;
411                 master = container_of(node, struct arm_smmu_master, node);
412
413                 if (dev_node < master->of_node)
414                         node = node->rb_left;
415                 else if (dev_node > master->of_node)
416                         node = node->rb_right;
417                 else
418                         return master;
419         }
420
421         return NULL;
422 }
423
424 static int insert_smmu_master(struct arm_smmu_device *smmu,
425                               struct arm_smmu_master *master)
426 {
427         struct rb_node **new, *parent;
428
429         new = &smmu->masters.rb_node;
430         parent = NULL;
431         while (*new) {
432                 struct arm_smmu_master *this;
433                 this = container_of(*new, struct arm_smmu_master, node);
434
435                 parent = *new;
436                 if (master->of_node < this->of_node)
437                         new = &((*new)->rb_left);
438                 else if (master->of_node > this->of_node)
439                         new = &((*new)->rb_right);
440                 else
441                         return -EEXIST;
442         }
443
444         rb_link_node(&master->node, parent, new);
445         rb_insert_color(&master->node, &smmu->masters);
446         return 0;
447 }
448
449 static int register_smmu_master(struct arm_smmu_device *smmu,
450                                 struct device *dev,
451                                 struct of_phandle_args *masterspec)
452 {
453         int i;
454         struct arm_smmu_master *master;
455
456         master = find_smmu_master(smmu, masterspec->np);
457         if (master) {
458                 dev_err(dev,
459                         "rejecting multiple registrations for master device %s\n",
460                         masterspec->np->name);
461                 return -EBUSY;
462         }
463
464         if (masterspec->args_count > MAX_MASTER_STREAMIDS) {
465                 dev_err(dev,
466                         "reached maximum number (%d) of stream IDs for master device %s\n",
467                         MAX_MASTER_STREAMIDS, masterspec->np->name);
468                 return -ENOSPC;
469         }
470
471         master = devm_kzalloc(dev, sizeof(*master), GFP_KERNEL);
472         if (!master)
473                 return -ENOMEM;
474
475         master->of_node         = masterspec->np;
476         master->num_streamids   = masterspec->args_count;
477
478         for (i = 0; i < master->num_streamids; ++i)
479                 master->streamids[i] = masterspec->args[i];
480
481         return insert_smmu_master(smmu, master);
482 }
483
484 static struct arm_smmu_device *find_parent_smmu(struct arm_smmu_device *smmu)
485 {
486         struct arm_smmu_device *parent;
487
488         if (!smmu->parent_of_node)
489                 return NULL;
490
491         spin_lock(&arm_smmu_devices_lock);
492         list_for_each_entry(parent, &arm_smmu_devices, list)
493                 if (parent->dev->of_node == smmu->parent_of_node)
494                         goto out_unlock;
495
496         parent = NULL;
497         dev_warn(smmu->dev,
498                  "Failed to find SMMU parent despite parent in DT\n");
499 out_unlock:
500         spin_unlock(&arm_smmu_devices_lock);
501         return parent;
502 }
503
504 static int __arm_smmu_alloc_bitmap(unsigned long *map, int start, int end)
505 {
506         int idx;
507
508         do {
509                 idx = find_next_zero_bit(map, end, start);
510                 if (idx == end)
511                         return -ENOSPC;
512         } while (test_and_set_bit(idx, map));
513
514         return idx;
515 }
516
517 static void __arm_smmu_free_bitmap(unsigned long *map, int idx)
518 {
519         clear_bit(idx, map);
520 }
521
522 /* Wait for any pending TLB invalidations to complete */
523 static void arm_smmu_tlb_sync(struct arm_smmu_device *smmu)
524 {
525         int count = 0;
526         void __iomem *gr0_base = ARM_SMMU_GR0(smmu);
527
528         writel_relaxed(0, gr0_base + ARM_SMMU_GR0_sTLBGSYNC);
529         while (readl_relaxed(gr0_base + ARM_SMMU_GR0_sTLBGSTATUS)
530                & sTLBGSTATUS_GSACTIVE) {
531                 cpu_relax();
532                 if (++count == TLB_LOOP_TIMEOUT) {
533                         dev_err_ratelimited(smmu->dev,
534                         "TLB sync timed out -- SMMU may be deadlocked\n");
535                         return;
536                 }
537                 udelay(1);
538         }
539 }
540
541 static void arm_smmu_tlb_inv_context(struct arm_smmu_cfg *cfg)
542 {
543         struct arm_smmu_device *smmu = cfg->smmu;
544         void __iomem *base = ARM_SMMU_GR0(smmu);
545         bool stage1 = cfg->cbar != CBAR_TYPE_S2_TRANS;
546
547         if (stage1) {
548                 base = ARM_SMMU_CB_BASE(smmu) + ARM_SMMU_CB(smmu, cfg->cbndx);
549                 writel_relaxed(ARM_SMMU_CB_ASID(cfg),
550                                base + ARM_SMMU_CB_S1_TLBIASID);
551         } else {
552                 base = ARM_SMMU_GR0(smmu);
553                 writel_relaxed(ARM_SMMU_CB_VMID(cfg),
554                                base + ARM_SMMU_GR0_TLBIVMID);
555         }
556
557         arm_smmu_tlb_sync(smmu);
558 }
559
560 static irqreturn_t arm_smmu_context_fault(int irq, void *dev)
561 {
562         int flags, ret;
563         u32 fsr, far, fsynr, resume;
564         unsigned long iova;
565         struct iommu_domain *domain = dev;
566         struct arm_smmu_domain *smmu_domain = domain->priv;
567         struct arm_smmu_cfg *root_cfg = &smmu_domain->root_cfg;
568         struct arm_smmu_device *smmu = root_cfg->smmu;
569         void __iomem *cb_base;
570
571         cb_base = ARM_SMMU_CB_BASE(smmu) + ARM_SMMU_CB(smmu, root_cfg->cbndx);
572         fsr = readl_relaxed(cb_base + ARM_SMMU_CB_FSR);
573
574         if (!(fsr & FSR_FAULT))
575                 return IRQ_NONE;
576
577         if (fsr & FSR_IGN)
578                 dev_err_ratelimited(smmu->dev,
579                                     "Unexpected context fault (fsr 0x%u)\n",
580                                     fsr);
581
582         fsynr = readl_relaxed(cb_base + ARM_SMMU_CB_FSYNR0);
583         flags = fsynr & FSYNR0_WNR ? IOMMU_FAULT_WRITE : IOMMU_FAULT_READ;
584
585         far = readl_relaxed(cb_base + ARM_SMMU_CB_FAR_LO);
586         iova = far;
587 #ifdef CONFIG_64BIT
588         far = readl_relaxed(cb_base + ARM_SMMU_CB_FAR_HI);
589         iova |= ((unsigned long)far << 32);
590 #endif
591
592         if (!report_iommu_fault(domain, smmu->dev, iova, flags)) {
593                 ret = IRQ_HANDLED;
594                 resume = RESUME_RETRY;
595         } else {
596                 dev_err_ratelimited(smmu->dev,
597                     "Unhandled context fault: iova=0x%08lx, fsynr=0x%x, cb=%d\n",
598                     iova, fsynr, root_cfg->cbndx);
599                 ret = IRQ_NONE;
600                 resume = RESUME_TERMINATE;
601         }
602
603         /* Clear the faulting FSR */
604         writel(fsr, cb_base + ARM_SMMU_CB_FSR);
605
606         /* Retry or terminate any stalled transactions */
607         if (fsr & FSR_SS)
608                 writel_relaxed(resume, cb_base + ARM_SMMU_CB_RESUME);
609
610         return ret;
611 }
612
613 static irqreturn_t arm_smmu_global_fault(int irq, void *dev)
614 {
615         u32 gfsr, gfsynr0, gfsynr1, gfsynr2;
616         struct arm_smmu_device *smmu = dev;
617         void __iomem *gr0_base = ARM_SMMU_GR0(smmu);
618
619         gfsr = readl_relaxed(gr0_base + ARM_SMMU_GR0_sGFSR);
620         if (!gfsr)
621                 return IRQ_NONE;
622
623         gfsynr0 = readl_relaxed(gr0_base + ARM_SMMU_GR0_sGFSYNR0);
624         gfsynr1 = readl_relaxed(gr0_base + ARM_SMMU_GR0_sGFSYNR1);
625         gfsynr2 = readl_relaxed(gr0_base + ARM_SMMU_GR0_sGFSYNR2);
626
627         dev_err_ratelimited(smmu->dev,
628                 "Unexpected global fault, this could be serious\n");
629         dev_err_ratelimited(smmu->dev,
630                 "\tGFSR 0x%08x, GFSYNR0 0x%08x, GFSYNR1 0x%08x, GFSYNR2 0x%08x\n",
631                 gfsr, gfsynr0, gfsynr1, gfsynr2);
632
633         writel(gfsr, gr0_base + ARM_SMMU_GR0_sGFSR);
634         return IRQ_HANDLED;
635 }
636
637 static void arm_smmu_flush_pgtable(struct arm_smmu_device *smmu, void *addr,
638                                    size_t size)
639 {
640         unsigned long offset = (unsigned long)addr & ~PAGE_MASK;
641
642
643         /* Ensure new page tables are visible to the hardware walker */
644         if (smmu->features & ARM_SMMU_FEAT_COHERENT_WALK) {
645                 dsb();
646         } else {
647                 /*
648                  * If the SMMU can't walk tables in the CPU caches, treat them
649                  * like non-coherent DMA since we need to flush the new entries
650                  * all the way out to memory. There's no possibility of
651                  * recursion here as the SMMU table walker will not be wired
652                  * through another SMMU.
653                  */
654                 dma_map_page(smmu->dev, virt_to_page(addr), offset, size,
655                                 DMA_TO_DEVICE);
656         }
657 }
658
659 static void arm_smmu_init_context_bank(struct arm_smmu_domain *smmu_domain)
660 {
661         u32 reg;
662         bool stage1;
663         struct arm_smmu_cfg *root_cfg = &smmu_domain->root_cfg;
664         struct arm_smmu_device *smmu = root_cfg->smmu;
665         void __iomem *cb_base, *gr0_base, *gr1_base;
666
667         gr0_base = ARM_SMMU_GR0(smmu);
668         gr1_base = ARM_SMMU_GR1(smmu);
669         stage1 = root_cfg->cbar != CBAR_TYPE_S2_TRANS;
670         cb_base = ARM_SMMU_CB_BASE(smmu) + ARM_SMMU_CB(smmu, root_cfg->cbndx);
671
672         /* CBAR */
673         reg = root_cfg->cbar;
674         if (smmu->version == 1)
675               reg |= root_cfg->irptndx << CBAR_IRPTNDX_SHIFT;
676
677         /*
678          * Use the weakest shareability/memory types, so they are
679          * overridden by the ttbcr/pte.
680          */
681         if (stage1) {
682                 reg |= (CBAR_S1_BPSHCFG_NSH << CBAR_S1_BPSHCFG_SHIFT) |
683                         (CBAR_S1_MEMATTR_WB << CBAR_S1_MEMATTR_SHIFT);
684         } else {
685                 reg |= ARM_SMMU_CB_VMID(root_cfg) << CBAR_VMID_SHIFT;
686         }
687         writel_relaxed(reg, gr1_base + ARM_SMMU_GR1_CBAR(root_cfg->cbndx));
688
689         if (smmu->version > 1) {
690                 /* CBA2R */
691 #ifdef CONFIG_64BIT
692                 reg = CBA2R_RW64_64BIT;
693 #else
694                 reg = CBA2R_RW64_32BIT;
695 #endif
696                 writel_relaxed(reg,
697                                gr1_base + ARM_SMMU_GR1_CBA2R(root_cfg->cbndx));
698
699                 /* TTBCR2 */
700                 switch (smmu->input_size) {
701                 case 32:
702                         reg = (TTBCR2_ADDR_32 << TTBCR2_SEP_SHIFT);
703                         break;
704                 case 36:
705                         reg = (TTBCR2_ADDR_36 << TTBCR2_SEP_SHIFT);
706                         break;
707                 case 39:
708                         reg = (TTBCR2_ADDR_40 << TTBCR2_SEP_SHIFT);
709                         break;
710                 case 42:
711                         reg = (TTBCR2_ADDR_42 << TTBCR2_SEP_SHIFT);
712                         break;
713                 case 44:
714                         reg = (TTBCR2_ADDR_44 << TTBCR2_SEP_SHIFT);
715                         break;
716                 case 48:
717                         reg = (TTBCR2_ADDR_48 << TTBCR2_SEP_SHIFT);
718                         break;
719                 }
720
721                 switch (smmu->s1_output_size) {
722                 case 32:
723                         reg |= (TTBCR2_ADDR_32 << TTBCR2_PASIZE_SHIFT);
724                         break;
725                 case 36:
726                         reg |= (TTBCR2_ADDR_36 << TTBCR2_PASIZE_SHIFT);
727                         break;
728                 case 39:
729                         reg |= (TTBCR2_ADDR_40 << TTBCR2_PASIZE_SHIFT);
730                         break;
731                 case 42:
732                         reg |= (TTBCR2_ADDR_42 << TTBCR2_PASIZE_SHIFT);
733                         break;
734                 case 44:
735                         reg |= (TTBCR2_ADDR_44 << TTBCR2_PASIZE_SHIFT);
736                         break;
737                 case 48:
738                         reg |= (TTBCR2_ADDR_48 << TTBCR2_PASIZE_SHIFT);
739                         break;
740                 }
741
742                 if (stage1)
743                         writel_relaxed(reg, cb_base + ARM_SMMU_CB_TTBCR2);
744         }
745
746         /* TTBR0 */
747         arm_smmu_flush_pgtable(smmu, root_cfg->pgd,
748                                PTRS_PER_PGD * sizeof(pgd_t));
749         reg = __pa(root_cfg->pgd);
750         writel_relaxed(reg, cb_base + ARM_SMMU_CB_TTBR0_LO);
751         reg = (phys_addr_t)__pa(root_cfg->pgd) >> 32;
752         if (stage1)
753                 reg |= ARM_SMMU_CB_ASID(root_cfg) << TTBRn_HI_ASID_SHIFT;
754         writel_relaxed(reg, cb_base + ARM_SMMU_CB_TTBR0_HI);
755
756         /*
757          * TTBCR
758          * We use long descriptor, with inner-shareable WBWA tables in TTBR0.
759          */
760         if (smmu->version > 1) {
761                 if (PAGE_SIZE == SZ_4K)
762                         reg = TTBCR_TG0_4K;
763                 else
764                         reg = TTBCR_TG0_64K;
765
766                 if (!stage1) {
767                         switch (smmu->s2_output_size) {
768                         case 32:
769                                 reg |= (TTBCR2_ADDR_32 << TTBCR_PASIZE_SHIFT);
770                                 break;
771                         case 36:
772                                 reg |= (TTBCR2_ADDR_36 << TTBCR_PASIZE_SHIFT);
773                                 break;
774                         case 40:
775                                 reg |= (TTBCR2_ADDR_40 << TTBCR_PASIZE_SHIFT);
776                                 break;
777                         case 42:
778                                 reg |= (TTBCR2_ADDR_42 << TTBCR_PASIZE_SHIFT);
779                                 break;
780                         case 44:
781                                 reg |= (TTBCR2_ADDR_44 << TTBCR_PASIZE_SHIFT);
782                                 break;
783                         case 48:
784                                 reg |= (TTBCR2_ADDR_48 << TTBCR_PASIZE_SHIFT);
785                                 break;
786                         }
787                 } else {
788                         reg |= (64 - smmu->s1_output_size) << TTBCR_T0SZ_SHIFT;
789                 }
790         } else {
791                 reg = 0;
792         }
793
794         reg |= TTBCR_EAE |
795               (TTBCR_SH_IS << TTBCR_SH0_SHIFT) |
796               (TTBCR_RGN_WBWA << TTBCR_ORGN0_SHIFT) |
797               (TTBCR_RGN_WBWA << TTBCR_IRGN0_SHIFT);
798
799         if (!stage1)
800                 reg |= (TTBCR_SL0_LVL_1 << TTBCR_SL0_SHIFT);
801
802         writel_relaxed(reg, cb_base + ARM_SMMU_CB_TTBCR);
803
804         /* MAIR0 (stage-1 only) */
805         if (stage1) {
806                 reg = (MAIR_ATTR_NC << MAIR_ATTR_SHIFT(MAIR_ATTR_IDX_NC)) |
807                       (MAIR_ATTR_WBRWA << MAIR_ATTR_SHIFT(MAIR_ATTR_IDX_CACHE)) |
808                       (MAIR_ATTR_DEVICE << MAIR_ATTR_SHIFT(MAIR_ATTR_IDX_DEV));
809                 writel_relaxed(reg, cb_base + ARM_SMMU_CB_S1_MAIR0);
810         }
811
812         /* SCTLR */
813         reg = SCTLR_CFCFG | SCTLR_CFIE | SCTLR_CFRE | SCTLR_M | SCTLR_EAE_SBOP;
814         if (stage1)
815                 reg |= SCTLR_S1_ASIDPNE;
816 #ifdef __BIG_ENDIAN
817         reg |= SCTLR_E;
818 #endif
819         writel_relaxed(reg, cb_base + ARM_SMMU_CB_SCTLR);
820 }
821
822 static int arm_smmu_init_domain_context(struct iommu_domain *domain,
823                                         struct device *dev)
824 {
825         int irq, ret, start;
826         struct arm_smmu_domain *smmu_domain = domain->priv;
827         struct arm_smmu_cfg *root_cfg = &smmu_domain->root_cfg;
828         struct arm_smmu_device *smmu, *parent;
829
830         /*
831          * Walk the SMMU chain to find the root device for this chain.
832          * We assume that no masters have translations which terminate
833          * early, and therefore check that the root SMMU does indeed have
834          * a StreamID for the master in question.
835          */
836         parent = dev->archdata.iommu;
837         smmu_domain->output_mask = -1;
838         do {
839                 smmu = parent;
840                 smmu_domain->output_mask &= (1ULL << smmu->s2_output_size) - 1;
841         } while ((parent = find_parent_smmu(smmu)));
842
843         if (!find_smmu_master(smmu, dev->of_node)) {
844                 dev_err(dev, "unable to find root SMMU for device\n");
845                 return -ENODEV;
846         }
847
848         if (smmu->features & ARM_SMMU_FEAT_TRANS_NESTED) {
849                 /*
850                  * We will likely want to change this if/when KVM gets
851                  * involved.
852                  */
853                 root_cfg->cbar = CBAR_TYPE_S1_TRANS_S2_BYPASS;
854                 start = smmu->num_s2_context_banks;
855         } else if (smmu->features & ARM_SMMU_FEAT_TRANS_S2) {
856                 root_cfg->cbar = CBAR_TYPE_S2_TRANS;
857                 start = 0;
858         } else {
859                 root_cfg->cbar = CBAR_TYPE_S1_TRANS_S2_BYPASS;
860                 start = smmu->num_s2_context_banks;
861         }
862
863         ret = __arm_smmu_alloc_bitmap(smmu->context_map, start,
864                                       smmu->num_context_banks);
865         if (IS_ERR_VALUE(ret))
866                 return ret;
867
868         root_cfg->cbndx = ret;
869         if (smmu->version == 1) {
870                 root_cfg->irptndx = atomic_inc_return(&smmu->irptndx);
871                 root_cfg->irptndx %= smmu->num_context_irqs;
872         } else {
873                 root_cfg->irptndx = root_cfg->cbndx;
874         }
875
876         irq = smmu->irqs[smmu->num_global_irqs + root_cfg->irptndx];
877         ret = request_irq(irq, arm_smmu_context_fault, IRQF_SHARED,
878                           "arm-smmu-context-fault", domain);
879         if (IS_ERR_VALUE(ret)) {
880                 dev_err(smmu->dev, "failed to request context IRQ %d (%u)\n",
881                         root_cfg->irptndx, irq);
882                 root_cfg->irptndx = INVALID_IRPTNDX;
883                 goto out_free_context;
884         }
885
886         root_cfg->smmu = smmu;
887         arm_smmu_init_context_bank(smmu_domain);
888         return ret;
889
890 out_free_context:
891         __arm_smmu_free_bitmap(smmu->context_map, root_cfg->cbndx);
892         return ret;
893 }
894
895 static void arm_smmu_destroy_domain_context(struct iommu_domain *domain)
896 {
897         struct arm_smmu_domain *smmu_domain = domain->priv;
898         struct arm_smmu_cfg *root_cfg = &smmu_domain->root_cfg;
899         struct arm_smmu_device *smmu = root_cfg->smmu;
900         void __iomem *cb_base;
901         int irq;
902
903         if (!smmu)
904                 return;
905
906         /* Disable the context bank and nuke the TLB before freeing it. */
907         cb_base = ARM_SMMU_CB_BASE(smmu) + ARM_SMMU_CB(smmu, root_cfg->cbndx);
908         writel_relaxed(0, cb_base + ARM_SMMU_CB_SCTLR);
909         arm_smmu_tlb_inv_context(root_cfg);
910
911         if (root_cfg->irptndx != INVALID_IRPTNDX) {
912                 irq = smmu->irqs[smmu->num_global_irqs + root_cfg->irptndx];
913                 free_irq(irq, domain);
914         }
915
916         __arm_smmu_free_bitmap(smmu->context_map, root_cfg->cbndx);
917 }
918
919 static int arm_smmu_domain_init(struct iommu_domain *domain)
920 {
921         struct arm_smmu_domain *smmu_domain;
922         pgd_t *pgd;
923
924         /*
925          * Allocate the domain and initialise some of its data structures.
926          * We can't really do anything meaningful until we've added a
927          * master.
928          */
929         smmu_domain = kzalloc(sizeof(*smmu_domain), GFP_KERNEL);
930         if (!smmu_domain)
931                 return -ENOMEM;
932
933         pgd = kzalloc(PTRS_PER_PGD * sizeof(pgd_t), GFP_KERNEL);
934         if (!pgd)
935                 goto out_free_domain;
936         smmu_domain->root_cfg.pgd = pgd;
937
938         spin_lock_init(&smmu_domain->lock);
939         domain->priv = smmu_domain;
940         return 0;
941
942 out_free_domain:
943         kfree(smmu_domain);
944         return -ENOMEM;
945 }
946
947 static void arm_smmu_free_ptes(pmd_t *pmd)
948 {
949         pgtable_t table = pmd_pgtable(*pmd);
950         pgtable_page_dtor(table);
951         __free_page(table);
952 }
953
954 static void arm_smmu_free_pmds(pud_t *pud)
955 {
956         int i;
957         pmd_t *pmd, *pmd_base = pmd_offset(pud, 0);
958
959         pmd = pmd_base;
960         for (i = 0; i < PTRS_PER_PMD; ++i) {
961                 if (pmd_none(*pmd))
962                         continue;
963
964                 arm_smmu_free_ptes(pmd);
965                 pmd++;
966         }
967
968         pmd_free(NULL, pmd_base);
969 }
970
971 static void arm_smmu_free_puds(pgd_t *pgd)
972 {
973         int i;
974         pud_t *pud, *pud_base = pud_offset(pgd, 0);
975
976         pud = pud_base;
977         for (i = 0; i < PTRS_PER_PUD; ++i) {
978                 if (pud_none(*pud))
979                         continue;
980
981                 arm_smmu_free_pmds(pud);
982                 pud++;
983         }
984
985         pud_free(NULL, pud_base);
986 }
987
988 static void arm_smmu_free_pgtables(struct arm_smmu_domain *smmu_domain)
989 {
990         int i;
991         struct arm_smmu_cfg *root_cfg = &smmu_domain->root_cfg;
992         pgd_t *pgd, *pgd_base = root_cfg->pgd;
993
994         /*
995          * Recursively free the page tables for this domain. We don't
996          * care about speculative TLB filling, because the TLB will be
997          * nuked next time this context bank is re-allocated and no devices
998          * currently map to these tables.
999          */
1000         pgd = pgd_base;
1001         for (i = 0; i < PTRS_PER_PGD; ++i) {
1002                 if (pgd_none(*pgd))
1003                         continue;
1004                 arm_smmu_free_puds(pgd);
1005                 pgd++;
1006         }
1007
1008         kfree(pgd_base);
1009 }
1010
1011 static void arm_smmu_domain_destroy(struct iommu_domain *domain)
1012 {
1013         struct arm_smmu_domain *smmu_domain = domain->priv;
1014
1015         /*
1016          * Free the domain resources. We assume that all devices have
1017          * already been detached.
1018          */
1019         arm_smmu_destroy_domain_context(domain);
1020         arm_smmu_free_pgtables(smmu_domain);
1021         kfree(smmu_domain);
1022 }
1023
1024 static int arm_smmu_master_configure_smrs(struct arm_smmu_device *smmu,
1025                                           struct arm_smmu_master *master)
1026 {
1027         int i;
1028         struct arm_smmu_smr *smrs;
1029         void __iomem *gr0_base = ARM_SMMU_GR0(smmu);
1030
1031         if (!(smmu->features & ARM_SMMU_FEAT_STREAM_MATCH))
1032                 return 0;
1033
1034         if (master->smrs)
1035                 return -EEXIST;
1036
1037         smrs = kmalloc(sizeof(*smrs) * master->num_streamids, GFP_KERNEL);
1038         if (!smrs) {
1039                 dev_err(smmu->dev, "failed to allocate %d SMRs for master %s\n",
1040                         master->num_streamids, master->of_node->name);
1041                 return -ENOMEM;
1042         }
1043
1044         /* Allocate the SMRs on the root SMMU */
1045         for (i = 0; i < master->num_streamids; ++i) {
1046                 int idx = __arm_smmu_alloc_bitmap(smmu->smr_map, 0,
1047                                                   smmu->num_mapping_groups);
1048                 if (IS_ERR_VALUE(idx)) {
1049                         dev_err(smmu->dev, "failed to allocate free SMR\n");
1050                         goto err_free_smrs;
1051                 }
1052
1053                 smrs[i] = (struct arm_smmu_smr) {
1054                         .idx    = idx,
1055                         .mask   = 0, /* We don't currently share SMRs */
1056                         .id     = master->streamids[i],
1057                 };
1058         }
1059
1060         /* It worked! Now, poke the actual hardware */
1061         for (i = 0; i < master->num_streamids; ++i) {
1062                 u32 reg = SMR_VALID | smrs[i].id << SMR_ID_SHIFT |
1063                           smrs[i].mask << SMR_MASK_SHIFT;
1064                 writel_relaxed(reg, gr0_base + ARM_SMMU_GR0_SMR(smrs[i].idx));
1065         }
1066
1067         master->smrs = smrs;
1068         return 0;
1069
1070 err_free_smrs:
1071         while (--i >= 0)
1072                 __arm_smmu_free_bitmap(smmu->smr_map, smrs[i].idx);
1073         kfree(smrs);
1074         return -ENOSPC;
1075 }
1076
1077 static void arm_smmu_master_free_smrs(struct arm_smmu_device *smmu,
1078                                       struct arm_smmu_master *master)
1079 {
1080         int i;
1081         void __iomem *gr0_base = ARM_SMMU_GR0(smmu);
1082         struct arm_smmu_smr *smrs = master->smrs;
1083
1084         /* Invalidate the SMRs before freeing back to the allocator */
1085         for (i = 0; i < master->num_streamids; ++i) {
1086                 u8 idx = smrs[i].idx;
1087                 writel_relaxed(~SMR_VALID, gr0_base + ARM_SMMU_GR0_SMR(idx));
1088                 __arm_smmu_free_bitmap(smmu->smr_map, idx);
1089         }
1090
1091         master->smrs = NULL;
1092         kfree(smrs);
1093 }
1094
1095 static void arm_smmu_bypass_stream_mapping(struct arm_smmu_device *smmu,
1096                                            struct arm_smmu_master *master)
1097 {
1098         int i;
1099         void __iomem *gr0_base = ARM_SMMU_GR0(smmu);
1100
1101         for (i = 0; i < master->num_streamids; ++i) {
1102                 u16 sid = master->streamids[i];
1103                 writel_relaxed(S2CR_TYPE_BYPASS,
1104                                gr0_base + ARM_SMMU_GR0_S2CR(sid));
1105         }
1106 }
1107
1108 static int arm_smmu_domain_add_master(struct arm_smmu_domain *smmu_domain,
1109                                       struct arm_smmu_master *master)
1110 {
1111         int i, ret;
1112         struct arm_smmu_device *parent, *smmu = smmu_domain->root_cfg.smmu;
1113         void __iomem *gr0_base = ARM_SMMU_GR0(smmu);
1114
1115         ret = arm_smmu_master_configure_smrs(smmu, master);
1116         if (ret)
1117                 return ret;
1118
1119         /* Bypass the leaves */
1120         smmu = smmu_domain->leaf_smmu;
1121         while ((parent = find_parent_smmu(smmu))) {
1122                 /*
1123                  * We won't have a StreamID match for anything but the root
1124                  * smmu, so we only need to worry about StreamID indexing,
1125                  * where we must install bypass entries in the S2CRs.
1126                  */
1127                 if (smmu->features & ARM_SMMU_FEAT_STREAM_MATCH)
1128                         continue;
1129
1130                 arm_smmu_bypass_stream_mapping(smmu, master);
1131                 smmu = parent;
1132         }
1133
1134         /* Now we're at the root, time to point at our context bank */
1135         for (i = 0; i < master->num_streamids; ++i) {
1136                 u32 idx, s2cr;
1137                 idx = master->smrs ? master->smrs[i].idx : master->streamids[i];
1138                 s2cr = (S2CR_TYPE_TRANS << S2CR_TYPE_SHIFT) |
1139                        (smmu_domain->root_cfg.cbndx << S2CR_CBNDX_SHIFT);
1140                 writel_relaxed(s2cr, gr0_base + ARM_SMMU_GR0_S2CR(idx));
1141         }
1142
1143         return 0;
1144 }
1145
1146 static void arm_smmu_domain_remove_master(struct arm_smmu_domain *smmu_domain,
1147                                           struct arm_smmu_master *master)
1148 {
1149         struct arm_smmu_device *smmu = smmu_domain->root_cfg.smmu;
1150
1151         /*
1152          * We *must* clear the S2CR first, because freeing the SMR means
1153          * that it can be re-allocated immediately.
1154          */
1155         arm_smmu_bypass_stream_mapping(smmu, master);
1156         arm_smmu_master_free_smrs(smmu, master);
1157 }
1158
1159 static int arm_smmu_attach_dev(struct iommu_domain *domain, struct device *dev)
1160 {
1161         int ret = -EINVAL;
1162         struct arm_smmu_domain *smmu_domain = domain->priv;
1163         struct arm_smmu_device *device_smmu = dev->archdata.iommu;
1164         struct arm_smmu_master *master;
1165         unsigned long flags;
1166
1167         if (!device_smmu) {
1168                 dev_err(dev, "cannot attach to SMMU, is it on the same bus?\n");
1169                 return -ENXIO;
1170         }
1171
1172         /*
1173          * Sanity check the domain. We don't currently support domains
1174          * that cross between different SMMU chains.
1175          */
1176         spin_lock_irqsave(&smmu_domain->lock, flags);
1177         if (!smmu_domain->leaf_smmu) {
1178                 /* Now that we have a master, we can finalise the domain */
1179                 ret = arm_smmu_init_domain_context(domain, dev);
1180                 if (IS_ERR_VALUE(ret))
1181                         goto err_unlock;
1182
1183                 smmu_domain->leaf_smmu = device_smmu;
1184         } else if (smmu_domain->leaf_smmu != device_smmu) {
1185                 dev_err(dev,
1186                         "cannot attach to SMMU %s whilst already attached to domain on SMMU %s\n",
1187                         dev_name(smmu_domain->leaf_smmu->dev),
1188                         dev_name(device_smmu->dev));
1189                 goto err_unlock;
1190         }
1191         spin_unlock_irqrestore(&smmu_domain->lock, flags);
1192
1193         /* Looks ok, so add the device to the domain */
1194         master = find_smmu_master(smmu_domain->leaf_smmu, dev->of_node);
1195         if (!master)
1196                 return -ENODEV;
1197
1198         return arm_smmu_domain_add_master(smmu_domain, master);
1199
1200 err_unlock:
1201         spin_unlock_irqrestore(&smmu_domain->lock, flags);
1202         return ret;
1203 }
1204
1205 static void arm_smmu_detach_dev(struct iommu_domain *domain, struct device *dev)
1206 {
1207         struct arm_smmu_domain *smmu_domain = domain->priv;
1208         struct arm_smmu_master *master;
1209
1210         master = find_smmu_master(smmu_domain->leaf_smmu, dev->of_node);
1211         if (master)
1212                 arm_smmu_domain_remove_master(smmu_domain, master);
1213 }
1214
1215 static bool arm_smmu_pte_is_contiguous_range(unsigned long addr,
1216                                              unsigned long end)
1217 {
1218         return !(addr & ~ARM_SMMU_PTE_CONT_MASK) &&
1219                 (addr + ARM_SMMU_PTE_CONT_SIZE <= end);
1220 }
1221
1222 static int arm_smmu_alloc_init_pte(struct arm_smmu_device *smmu, pmd_t *pmd,
1223                                    unsigned long addr, unsigned long end,
1224                                    unsigned long pfn, int flags, int stage)
1225 {
1226         pte_t *pte, *start;
1227         pteval_t pteval = ARM_SMMU_PTE_PAGE | ARM_SMMU_PTE_AF | ARM_SMMU_PTE_XN;
1228
1229         if (pmd_none(*pmd)) {
1230                 /* Allocate a new set of tables */
1231                 pgtable_t table = alloc_page(GFP_ATOMIC|__GFP_ZERO);
1232                 if (!table)
1233                         return -ENOMEM;
1234
1235                 arm_smmu_flush_pgtable(smmu, page_address(table), PAGE_SIZE);
1236                 if (!pgtable_page_ctor(table)) {
1237                         __free_page(table);
1238                         return -ENOMEM;
1239                 }
1240                 pmd_populate(NULL, pmd, table);
1241                 arm_smmu_flush_pgtable(smmu, pmd, sizeof(*pmd));
1242         }
1243
1244         if (stage == 1) {
1245                 pteval |= ARM_SMMU_PTE_AP_UNPRIV | ARM_SMMU_PTE_nG;
1246                 if (!(flags & IOMMU_WRITE) && (flags & IOMMU_READ))
1247                         pteval |= ARM_SMMU_PTE_AP_RDONLY;
1248
1249                 if (flags & IOMMU_CACHE)
1250                         pteval |= (MAIR_ATTR_IDX_CACHE <<
1251                                    ARM_SMMU_PTE_ATTRINDX_SHIFT);
1252         } else {
1253                 pteval |= ARM_SMMU_PTE_HAP_FAULT;
1254                 if (flags & IOMMU_READ)
1255                         pteval |= ARM_SMMU_PTE_HAP_READ;
1256                 if (flags & IOMMU_WRITE)
1257                         pteval |= ARM_SMMU_PTE_HAP_WRITE;
1258                 if (flags & IOMMU_CACHE)
1259                         pteval |= ARM_SMMU_PTE_MEMATTR_OIWB;
1260                 else
1261                         pteval |= ARM_SMMU_PTE_MEMATTR_NC;
1262         }
1263
1264         /* If no access, create a faulting entry to avoid TLB fills */
1265         if (flags & IOMMU_EXEC)
1266                 pteval &= ~ARM_SMMU_PTE_XN;
1267         else if (!(flags & (IOMMU_READ | IOMMU_WRITE)))
1268                 pteval &= ~ARM_SMMU_PTE_PAGE;
1269
1270         pteval |= ARM_SMMU_PTE_SH_IS;
1271         start = pmd_page_vaddr(*pmd) + pte_index(addr);
1272         pte = start;
1273
1274         /*
1275          * Install the page table entries. This is fairly complicated
1276          * since we attempt to make use of the contiguous hint in the
1277          * ptes where possible. The contiguous hint indicates a series
1278          * of ARM_SMMU_PTE_CONT_ENTRIES ptes mapping a physically
1279          * contiguous region with the following constraints:
1280          *
1281          *   - The region start is aligned to ARM_SMMU_PTE_CONT_SIZE
1282          *   - Each pte in the region has the contiguous hint bit set
1283          *
1284          * This complicates unmapping (also handled by this code, when
1285          * neither IOMMU_READ or IOMMU_WRITE are set) because it is
1286          * possible, yet highly unlikely, that a client may unmap only
1287          * part of a contiguous range. This requires clearing of the
1288          * contiguous hint bits in the range before installing the new
1289          * faulting entries.
1290          *
1291          * Note that re-mapping an address range without first unmapping
1292          * it is not supported, so TLB invalidation is not required here
1293          * and is instead performed at unmap and domain-init time.
1294          */
1295         do {
1296                 int i = 1;
1297                 pteval &= ~ARM_SMMU_PTE_CONT;
1298
1299                 if (arm_smmu_pte_is_contiguous_range(addr, end)) {
1300                         i = ARM_SMMU_PTE_CONT_ENTRIES;
1301                         pteval |= ARM_SMMU_PTE_CONT;
1302                 } else if (pte_val(*pte) &
1303                            (ARM_SMMU_PTE_CONT | ARM_SMMU_PTE_PAGE)) {
1304                         int j;
1305                         pte_t *cont_start;
1306                         unsigned long idx = pte_index(addr);
1307
1308                         idx &= ~(ARM_SMMU_PTE_CONT_ENTRIES - 1);
1309                         cont_start = pmd_page_vaddr(*pmd) + idx;
1310                         for (j = 0; j < ARM_SMMU_PTE_CONT_ENTRIES; ++j)
1311                                 pte_val(*(cont_start + j)) &= ~ARM_SMMU_PTE_CONT;
1312
1313                         arm_smmu_flush_pgtable(smmu, cont_start,
1314                                                sizeof(*pte) *
1315                                                ARM_SMMU_PTE_CONT_ENTRIES);
1316                 }
1317
1318                 do {
1319                         *pte = pfn_pte(pfn, __pgprot(pteval));
1320                 } while (pte++, pfn++, addr += PAGE_SIZE, --i);
1321         } while (addr != end);
1322
1323         arm_smmu_flush_pgtable(smmu, start, sizeof(*pte) * (pte - start));
1324         return 0;
1325 }
1326
1327 static int arm_smmu_alloc_init_pmd(struct arm_smmu_device *smmu, pud_t *pud,
1328                                    unsigned long addr, unsigned long end,
1329                                    phys_addr_t phys, int flags, int stage)
1330 {
1331         int ret;
1332         pmd_t *pmd;
1333         unsigned long next, pfn = __phys_to_pfn(phys);
1334
1335 #ifndef __PAGETABLE_PMD_FOLDED
1336         if (pud_none(*pud)) {
1337                 pmd = (pmd_t *)get_zeroed_page(GFP_ATOMIC);
1338                 if (!pmd)
1339                         return -ENOMEM;
1340
1341                 arm_smmu_flush_pgtable(smmu, pmd, PAGE_SIZE);
1342                 pud_populate(NULL, pud, pmd);
1343                 arm_smmu_flush_pgtable(smmu, pud, sizeof(*pud));
1344
1345                 pmd += pmd_index(addr);
1346         } else
1347 #endif
1348                 pmd = pmd_offset(pud, addr);
1349
1350         do {
1351                 next = pmd_addr_end(addr, end);
1352                 ret = arm_smmu_alloc_init_pte(smmu, pmd, addr, end, pfn,
1353                                               flags, stage);
1354                 phys += next - addr;
1355         } while (pmd++, addr = next, addr < end);
1356
1357         return ret;
1358 }
1359
1360 static int arm_smmu_alloc_init_pud(struct arm_smmu_device *smmu, pgd_t *pgd,
1361                                    unsigned long addr, unsigned long end,
1362                                    phys_addr_t phys, int flags, int stage)
1363 {
1364         int ret = 0;
1365         pud_t *pud;
1366         unsigned long next;
1367
1368 #ifndef __PAGETABLE_PUD_FOLDED
1369         if (pgd_none(*pgd)) {
1370                 pud = (pud_t *)get_zeroed_page(GFP_ATOMIC);
1371                 if (!pud)
1372                         return -ENOMEM;
1373
1374                 arm_smmu_flush_pgtable(smmu, pud, PAGE_SIZE);
1375                 pgd_populate(NULL, pgd, pud);
1376                 arm_smmu_flush_pgtable(smmu, pgd, sizeof(*pgd));
1377
1378                 pud += pud_index(addr);
1379         } else
1380 #endif
1381                 pud = pud_offset(pgd, addr);
1382
1383         do {
1384                 next = pud_addr_end(addr, end);
1385                 ret = arm_smmu_alloc_init_pmd(smmu, pud, addr, next, phys,
1386                                               flags, stage);
1387                 phys += next - addr;
1388         } while (pud++, addr = next, addr < end);
1389
1390         return ret;
1391 }
1392
1393 static int arm_smmu_handle_mapping(struct arm_smmu_domain *smmu_domain,
1394                                    unsigned long iova, phys_addr_t paddr,
1395                                    size_t size, int flags)
1396 {
1397         int ret, stage;
1398         unsigned long end;
1399         phys_addr_t input_mask, output_mask;
1400         struct arm_smmu_cfg *root_cfg = &smmu_domain->root_cfg;
1401         pgd_t *pgd = root_cfg->pgd;
1402         struct arm_smmu_device *smmu = root_cfg->smmu;
1403         unsigned long irqflags;
1404
1405         if (root_cfg->cbar == CBAR_TYPE_S2_TRANS) {
1406                 stage = 2;
1407                 output_mask = (1ULL << smmu->s2_output_size) - 1;
1408         } else {
1409                 stage = 1;
1410                 output_mask = (1ULL << smmu->s1_output_size) - 1;
1411         }
1412
1413         if (!pgd)
1414                 return -EINVAL;
1415
1416         if (size & ~PAGE_MASK)
1417                 return -EINVAL;
1418
1419         input_mask = (1ULL << smmu->input_size) - 1;
1420         if ((phys_addr_t)iova & ~input_mask)
1421                 return -ERANGE;
1422
1423         if (paddr & ~output_mask)
1424                 return -ERANGE;
1425
1426         spin_lock_irqsave(&smmu_domain->lock, irqflags);
1427         pgd += pgd_index(iova);
1428         end = iova + size;
1429         do {
1430                 unsigned long next = pgd_addr_end(iova, end);
1431
1432                 ret = arm_smmu_alloc_init_pud(smmu, pgd, iova, next, paddr,
1433                                               flags, stage);
1434                 if (ret)
1435                         goto out_unlock;
1436
1437                 paddr += next - iova;
1438                 iova = next;
1439         } while (pgd++, iova != end);
1440
1441 out_unlock:
1442         spin_unlock_irqrestore(&smmu_domain->lock, irqflags);
1443
1444         return ret;
1445 }
1446
1447 static int arm_smmu_map(struct iommu_domain *domain, unsigned long iova,
1448                         phys_addr_t paddr, size_t size, int flags)
1449 {
1450         struct arm_smmu_domain *smmu_domain = domain->priv;
1451
1452         if (!smmu_domain)
1453                 return -ENODEV;
1454
1455         /* Check for silent address truncation up the SMMU chain. */
1456         if ((phys_addr_t)iova & ~smmu_domain->output_mask)
1457                 return -ERANGE;
1458
1459         return arm_smmu_handle_mapping(smmu_domain, iova, paddr, size, flags);
1460 }
1461
1462 static size_t arm_smmu_unmap(struct iommu_domain *domain, unsigned long iova,
1463                              size_t size)
1464 {
1465         int ret;
1466         struct arm_smmu_domain *smmu_domain = domain->priv;
1467
1468         ret = arm_smmu_handle_mapping(smmu_domain, iova, 0, size, 0);
1469         arm_smmu_tlb_inv_context(&smmu_domain->root_cfg);
1470         return ret ? ret : size;
1471 }
1472
1473 static phys_addr_t arm_smmu_iova_to_phys(struct iommu_domain *domain,
1474                                          dma_addr_t iova)
1475 {
1476         pgd_t *pgdp, pgd;
1477         pud_t pud;
1478         pmd_t pmd;
1479         pte_t pte;
1480         struct arm_smmu_domain *smmu_domain = domain->priv;
1481         struct arm_smmu_cfg *root_cfg = &smmu_domain->root_cfg;
1482
1483         pgdp = root_cfg->pgd;
1484         if (!pgdp)
1485                 return 0;
1486
1487         pgd = *(pgdp + pgd_index(iova));
1488         if (pgd_none(pgd))
1489                 return 0;
1490
1491         pud = *pud_offset(&pgd, iova);
1492         if (pud_none(pud))
1493                 return 0;
1494
1495         pmd = *pmd_offset(&pud, iova);
1496         if (pmd_none(pmd))
1497                 return 0;
1498
1499         pte = *(pmd_page_vaddr(pmd) + pte_index(iova));
1500         if (pte_none(pte))
1501                 return 0;
1502
1503         return __pfn_to_phys(pte_pfn(pte)) | (iova & ~PAGE_MASK);
1504 }
1505
1506 static int arm_smmu_domain_has_cap(struct iommu_domain *domain,
1507                                    unsigned long cap)
1508 {
1509         unsigned long caps = 0;
1510         struct arm_smmu_domain *smmu_domain = domain->priv;
1511
1512         if (smmu_domain->root_cfg.smmu->features & ARM_SMMU_FEAT_COHERENT_WALK)
1513                 caps |= IOMMU_CAP_CACHE_COHERENCY;
1514
1515         return !!(cap & caps);
1516 }
1517
1518 static int arm_smmu_add_device(struct device *dev)
1519 {
1520         struct arm_smmu_device *child, *parent, *smmu;
1521         struct arm_smmu_master *master = NULL;
1522         struct iommu_group *group;
1523         int ret;
1524
1525         if (dev->archdata.iommu) {
1526                 dev_warn(dev, "IOMMU driver already assigned to device\n");
1527                 return -EINVAL;
1528         }
1529
1530         spin_lock(&arm_smmu_devices_lock);
1531         list_for_each_entry(parent, &arm_smmu_devices, list) {
1532                 smmu = parent;
1533
1534                 /* Try to find a child of the current SMMU. */
1535                 list_for_each_entry(child, &arm_smmu_devices, list) {
1536                         if (child->parent_of_node == parent->dev->of_node) {
1537                                 /* Does the child sit above our master? */
1538                                 master = find_smmu_master(child, dev->of_node);
1539                                 if (master) {
1540                                         smmu = NULL;
1541                                         break;
1542                                 }
1543                         }
1544                 }
1545
1546                 /* We found some children, so keep searching. */
1547                 if (!smmu) {
1548                         master = NULL;
1549                         continue;
1550                 }
1551
1552                 master = find_smmu_master(smmu, dev->of_node);
1553                 if (master)
1554                         break;
1555         }
1556         spin_unlock(&arm_smmu_devices_lock);
1557
1558         if (!master)
1559                 return -ENODEV;
1560
1561         group = iommu_group_alloc();
1562         if (IS_ERR(group)) {
1563                 dev_err(dev, "Failed to allocate IOMMU group\n");
1564                 return PTR_ERR(group);
1565         }
1566
1567         ret = iommu_group_add_device(group, dev);
1568         iommu_group_put(group);
1569         dev->archdata.iommu = smmu;
1570
1571         return ret;
1572 }
1573
1574 static void arm_smmu_remove_device(struct device *dev)
1575 {
1576         dev->archdata.iommu = NULL;
1577         iommu_group_remove_device(dev);
1578 }
1579
1580 static struct iommu_ops arm_smmu_ops = {
1581         .domain_init    = arm_smmu_domain_init,
1582         .domain_destroy = arm_smmu_domain_destroy,
1583         .attach_dev     = arm_smmu_attach_dev,
1584         .detach_dev     = arm_smmu_detach_dev,
1585         .map            = arm_smmu_map,
1586         .unmap          = arm_smmu_unmap,
1587         .iova_to_phys   = arm_smmu_iova_to_phys,
1588         .domain_has_cap = arm_smmu_domain_has_cap,
1589         .add_device     = arm_smmu_add_device,
1590         .remove_device  = arm_smmu_remove_device,
1591         .pgsize_bitmap  = (SECTION_SIZE |
1592                            ARM_SMMU_PTE_CONT_SIZE |
1593                            PAGE_SIZE),
1594 };
1595
1596 static void arm_smmu_device_reset(struct arm_smmu_device *smmu)
1597 {
1598         void __iomem *gr0_base = ARM_SMMU_GR0(smmu);
1599         void __iomem *cb_base;
1600         int i = 0;
1601         u32 reg;
1602
1603         /* Clear Global FSR */
1604         reg = readl_relaxed(gr0_base + ARM_SMMU_GR0_sGFSR);
1605         writel(reg, gr0_base + ARM_SMMU_GR0_sGFSR);
1606
1607         /* Mark all SMRn as invalid and all S2CRn as bypass */
1608         for (i = 0; i < smmu->num_mapping_groups; ++i) {
1609                 writel_relaxed(~SMR_VALID, gr0_base + ARM_SMMU_GR0_SMR(i));
1610                 writel_relaxed(S2CR_TYPE_BYPASS, gr0_base + ARM_SMMU_GR0_S2CR(i));
1611         }
1612
1613         /* Make sure all context banks are disabled and clear CB_FSR  */
1614         for (i = 0; i < smmu->num_context_banks; ++i) {
1615                 cb_base = ARM_SMMU_CB_BASE(smmu) + ARM_SMMU_CB(smmu, i);
1616                 writel_relaxed(0, cb_base + ARM_SMMU_CB_SCTLR);
1617                 writel_relaxed(FSR_FAULT, cb_base + ARM_SMMU_CB_FSR);
1618         }
1619
1620         /* Invalidate the TLB, just in case */
1621         writel_relaxed(0, gr0_base + ARM_SMMU_GR0_STLBIALL);
1622         writel_relaxed(0, gr0_base + ARM_SMMU_GR0_TLBIALLH);
1623         writel_relaxed(0, gr0_base + ARM_SMMU_GR0_TLBIALLNSNH);
1624
1625         reg = readl_relaxed(gr0_base + ARM_SMMU_GR0_sCR0);
1626
1627         /* Enable fault reporting */
1628         reg |= (sCR0_GFRE | sCR0_GFIE | sCR0_GCFGFRE | sCR0_GCFGFIE);
1629
1630         /* Disable TLB broadcasting. */
1631         reg |= (sCR0_VMIDPNE | sCR0_PTM);
1632
1633         /* Enable client access, but bypass when no mapping is found */
1634         reg &= ~(sCR0_CLIENTPD | sCR0_USFCFG);
1635
1636         /* Disable forced broadcasting */
1637         reg &= ~sCR0_FB;
1638
1639         /* Don't upgrade barriers */
1640         reg &= ~(sCR0_BSU_MASK << sCR0_BSU_SHIFT);
1641
1642         /* Push the button */
1643         arm_smmu_tlb_sync(smmu);
1644         writel_relaxed(reg, gr0_base + ARM_SMMU_GR0_sCR0);
1645 }
1646
1647 static int arm_smmu_id_size_to_bits(int size)
1648 {
1649         switch (size) {
1650         case 0:
1651                 return 32;
1652         case 1:
1653                 return 36;
1654         case 2:
1655                 return 40;
1656         case 3:
1657                 return 42;
1658         case 4:
1659                 return 44;
1660         case 5:
1661         default:
1662                 return 48;
1663         }
1664 }
1665
1666 static int arm_smmu_device_cfg_probe(struct arm_smmu_device *smmu)
1667 {
1668         unsigned long size;
1669         void __iomem *gr0_base = ARM_SMMU_GR0(smmu);
1670         u32 id;
1671
1672         dev_notice(smmu->dev, "probing hardware configuration...\n");
1673
1674         /* Primecell ID */
1675         id = readl_relaxed(gr0_base + ARM_SMMU_GR0_PIDR2);
1676         smmu->version = ((id >> PIDR2_ARCH_SHIFT) & PIDR2_ARCH_MASK) + 1;
1677         dev_notice(smmu->dev, "SMMUv%d with:\n", smmu->version);
1678
1679         /* ID0 */
1680         id = readl_relaxed(gr0_base + ARM_SMMU_GR0_ID0);
1681 #ifndef CONFIG_64BIT
1682         if (((id >> ID0_PTFS_SHIFT) & ID0_PTFS_MASK) == ID0_PTFS_V8_ONLY) {
1683                 dev_err(smmu->dev, "\tno v7 descriptor support!\n");
1684                 return -ENODEV;
1685         }
1686 #endif
1687         if (id & ID0_S1TS) {
1688                 smmu->features |= ARM_SMMU_FEAT_TRANS_S1;
1689                 dev_notice(smmu->dev, "\tstage 1 translation\n");
1690         }
1691
1692         if (id & ID0_S2TS) {
1693                 smmu->features |= ARM_SMMU_FEAT_TRANS_S2;
1694                 dev_notice(smmu->dev, "\tstage 2 translation\n");
1695         }
1696
1697         if (id & ID0_NTS) {
1698                 smmu->features |= ARM_SMMU_FEAT_TRANS_NESTED;
1699                 dev_notice(smmu->dev, "\tnested translation\n");
1700         }
1701
1702         if (!(smmu->features &
1703                 (ARM_SMMU_FEAT_TRANS_S1 | ARM_SMMU_FEAT_TRANS_S2 |
1704                  ARM_SMMU_FEAT_TRANS_NESTED))) {
1705                 dev_err(smmu->dev, "\tno translation support!\n");
1706                 return -ENODEV;
1707         }
1708
1709         if (id & ID0_CTTW) {
1710                 smmu->features |= ARM_SMMU_FEAT_COHERENT_WALK;
1711                 dev_notice(smmu->dev, "\tcoherent table walk\n");
1712         }
1713
1714         if (id & ID0_SMS) {
1715                 u32 smr, sid, mask;
1716
1717                 smmu->features |= ARM_SMMU_FEAT_STREAM_MATCH;
1718                 smmu->num_mapping_groups = (id >> ID0_NUMSMRG_SHIFT) &
1719                                            ID0_NUMSMRG_MASK;
1720                 if (smmu->num_mapping_groups == 0) {
1721                         dev_err(smmu->dev,
1722                                 "stream-matching supported, but no SMRs present!\n");
1723                         return -ENODEV;
1724                 }
1725
1726                 smr = SMR_MASK_MASK << SMR_MASK_SHIFT;
1727                 smr |= (SMR_ID_MASK << SMR_ID_SHIFT);
1728                 writel_relaxed(smr, gr0_base + ARM_SMMU_GR0_SMR(0));
1729                 smr = readl_relaxed(gr0_base + ARM_SMMU_GR0_SMR(0));
1730
1731                 mask = (smr >> SMR_MASK_SHIFT) & SMR_MASK_MASK;
1732                 sid = (smr >> SMR_ID_SHIFT) & SMR_ID_MASK;
1733                 if ((mask & sid) != sid) {
1734                         dev_err(smmu->dev,
1735                                 "SMR mask bits (0x%x) insufficient for ID field (0x%x)\n",
1736                                 mask, sid);
1737                         return -ENODEV;
1738                 }
1739
1740                 dev_notice(smmu->dev,
1741                            "\tstream matching with %u register groups, mask 0x%x",
1742                            smmu->num_mapping_groups, mask);
1743         }
1744
1745         /* ID1 */
1746         id = readl_relaxed(gr0_base + ARM_SMMU_GR0_ID1);
1747         smmu->pagesize = (id & ID1_PAGESIZE) ? SZ_64K : SZ_4K;
1748
1749         /* Check for size mismatch of SMMU address space from mapped region */
1750         size = 1 << (((id >> ID1_NUMPAGENDXB_SHIFT) & ID1_NUMPAGENDXB_MASK) + 1);
1751         size *= (smmu->pagesize << 1);
1752         if (smmu->size != size)
1753                 dev_warn(smmu->dev, "SMMU address space size (0x%lx) differs "
1754                         "from mapped region size (0x%lx)!\n", size, smmu->size);
1755
1756         smmu->num_s2_context_banks = (id >> ID1_NUMS2CB_SHIFT) &
1757                                       ID1_NUMS2CB_MASK;
1758         smmu->num_context_banks = (id >> ID1_NUMCB_SHIFT) & ID1_NUMCB_MASK;
1759         if (smmu->num_s2_context_banks > smmu->num_context_banks) {
1760                 dev_err(smmu->dev, "impossible number of S2 context banks!\n");
1761                 return -ENODEV;
1762         }
1763         dev_notice(smmu->dev, "\t%u context banks (%u stage-2 only)\n",
1764                    smmu->num_context_banks, smmu->num_s2_context_banks);
1765
1766         /* ID2 */
1767         id = readl_relaxed(gr0_base + ARM_SMMU_GR0_ID2);
1768         size = arm_smmu_id_size_to_bits((id >> ID2_IAS_SHIFT) & ID2_IAS_MASK);
1769
1770         /*
1771          * Stage-1 output limited by stage-2 input size due to pgd
1772          * allocation (PTRS_PER_PGD).
1773          */
1774 #ifdef CONFIG_64BIT
1775         smmu->s1_output_size = min(39UL, size);
1776 #else
1777         smmu->s1_output_size = min(32UL, size);
1778 #endif
1779
1780         /* The stage-2 output mask is also applied for bypass */
1781         size = arm_smmu_id_size_to_bits((id >> ID2_OAS_SHIFT) & ID2_OAS_MASK);
1782         smmu->s2_output_size = min((unsigned long)PHYS_MASK_SHIFT, size);
1783
1784         if (smmu->version == 1) {
1785                 smmu->input_size = 32;
1786         } else {
1787 #ifdef CONFIG_64BIT
1788                 size = (id >> ID2_UBS_SHIFT) & ID2_UBS_MASK;
1789                 size = min(VA_BITS, arm_smmu_id_size_to_bits(size));
1790 #else
1791                 size = 32;
1792 #endif
1793                 smmu->input_size = size;
1794
1795                 if ((PAGE_SIZE == SZ_4K && !(id & ID2_PTFS_4K)) ||
1796                     (PAGE_SIZE == SZ_64K && !(id & ID2_PTFS_64K)) ||
1797                     (PAGE_SIZE != SZ_4K && PAGE_SIZE != SZ_64K)) {
1798                         dev_err(smmu->dev, "CPU page size 0x%lx unsupported\n",
1799                                 PAGE_SIZE);
1800                         return -ENODEV;
1801                 }
1802         }
1803
1804         dev_notice(smmu->dev,
1805                    "\t%lu-bit VA, %lu-bit IPA, %lu-bit PA\n",
1806                    smmu->input_size, smmu->s1_output_size, smmu->s2_output_size);
1807         return 0;
1808 }
1809
1810 static int arm_smmu_device_dt_probe(struct platform_device *pdev)
1811 {
1812         struct resource *res;
1813         struct arm_smmu_device *smmu;
1814         struct device_node *dev_node;
1815         struct device *dev = &pdev->dev;
1816         struct rb_node *node;
1817         struct of_phandle_args masterspec;
1818         int num_irqs, i, err;
1819
1820         smmu = devm_kzalloc(dev, sizeof(*smmu), GFP_KERNEL);
1821         if (!smmu) {
1822                 dev_err(dev, "failed to allocate arm_smmu_device\n");
1823                 return -ENOMEM;
1824         }
1825         smmu->dev = dev;
1826
1827         res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1828         smmu->base = devm_ioremap_resource(dev, res);
1829         if (IS_ERR(smmu->base))
1830                 return PTR_ERR(smmu->base);
1831         smmu->size = resource_size(res);
1832
1833         if (of_property_read_u32(dev->of_node, "#global-interrupts",
1834                                  &smmu->num_global_irqs)) {
1835                 dev_err(dev, "missing #global-interrupts property\n");
1836                 return -ENODEV;
1837         }
1838
1839         num_irqs = 0;
1840         while ((res = platform_get_resource(pdev, IORESOURCE_IRQ, num_irqs))) {
1841                 num_irqs++;
1842                 if (num_irqs > smmu->num_global_irqs)
1843                         smmu->num_context_irqs++;
1844         }
1845
1846         if (!smmu->num_context_irqs) {
1847                 dev_err(dev, "found %d interrupts but expected at least %d\n",
1848                         num_irqs, smmu->num_global_irqs + 1);
1849                 return -ENODEV;
1850         }
1851
1852         smmu->irqs = devm_kzalloc(dev, sizeof(*smmu->irqs) * num_irqs,
1853                                   GFP_KERNEL);
1854         if (!smmu->irqs) {
1855                 dev_err(dev, "failed to allocate %d irqs\n", num_irqs);
1856                 return -ENOMEM;
1857         }
1858
1859         for (i = 0; i < num_irqs; ++i) {
1860                 int irq = platform_get_irq(pdev, i);
1861                 if (irq < 0) {
1862                         dev_err(dev, "failed to get irq index %d\n", i);
1863                         return -ENODEV;
1864                 }
1865                 smmu->irqs[i] = irq;
1866         }
1867
1868         i = 0;
1869         smmu->masters = RB_ROOT;
1870         while (!of_parse_phandle_with_args(dev->of_node, "mmu-masters",
1871                                            "#stream-id-cells", i,
1872                                            &masterspec)) {
1873                 err = register_smmu_master(smmu, dev, &masterspec);
1874                 if (err) {
1875                         dev_err(dev, "failed to add master %s\n",
1876                                 masterspec.np->name);
1877                         goto out_put_masters;
1878                 }
1879
1880                 i++;
1881         }
1882         dev_notice(dev, "registered %d master devices\n", i);
1883
1884         if ((dev_node = of_parse_phandle(dev->of_node, "smmu-parent", 0)))
1885                 smmu->parent_of_node = dev_node;
1886
1887         err = arm_smmu_device_cfg_probe(smmu);
1888         if (err)
1889                 goto out_put_parent;
1890
1891         if (smmu->version > 1 &&
1892             smmu->num_context_banks != smmu->num_context_irqs) {
1893                 dev_err(dev,
1894                         "found only %d context interrupt(s) but %d required\n",
1895                         smmu->num_context_irqs, smmu->num_context_banks);
1896                 err = -ENODEV;
1897                 goto out_put_parent;
1898         }
1899
1900         for (i = 0; i < smmu->num_global_irqs; ++i) {
1901                 err = request_irq(smmu->irqs[i],
1902                                   arm_smmu_global_fault,
1903                                   IRQF_SHARED,
1904                                   "arm-smmu global fault",
1905                                   smmu);
1906                 if (err) {
1907                         dev_err(dev, "failed to request global IRQ %d (%u)\n",
1908                                 i, smmu->irqs[i]);
1909                         goto out_free_irqs;
1910                 }
1911         }
1912
1913         INIT_LIST_HEAD(&smmu->list);
1914         spin_lock(&arm_smmu_devices_lock);
1915         list_add(&smmu->list, &arm_smmu_devices);
1916         spin_unlock(&arm_smmu_devices_lock);
1917
1918         arm_smmu_device_reset(smmu);
1919         return 0;
1920
1921 out_free_irqs:
1922         while (i--)
1923                 free_irq(smmu->irqs[i], smmu);
1924
1925 out_put_parent:
1926         if (smmu->parent_of_node)
1927                 of_node_put(smmu->parent_of_node);
1928
1929 out_put_masters:
1930         for (node = rb_first(&smmu->masters); node; node = rb_next(node)) {
1931                 struct arm_smmu_master *master;
1932                 master = container_of(node, struct arm_smmu_master, node);
1933                 of_node_put(master->of_node);
1934         }
1935
1936         return err;
1937 }
1938
1939 static int arm_smmu_device_remove(struct platform_device *pdev)
1940 {
1941         int i;
1942         struct device *dev = &pdev->dev;
1943         struct arm_smmu_device *curr, *smmu = NULL;
1944         struct rb_node *node;
1945
1946         spin_lock(&arm_smmu_devices_lock);
1947         list_for_each_entry(curr, &arm_smmu_devices, list) {
1948                 if (curr->dev == dev) {
1949                         smmu = curr;
1950                         list_del(&smmu->list);
1951                         break;
1952                 }
1953         }
1954         spin_unlock(&arm_smmu_devices_lock);
1955
1956         if (!smmu)
1957                 return -ENODEV;
1958
1959         if (smmu->parent_of_node)
1960                 of_node_put(smmu->parent_of_node);
1961
1962         for (node = rb_first(&smmu->masters); node; node = rb_next(node)) {
1963                 struct arm_smmu_master *master;
1964                 master = container_of(node, struct arm_smmu_master, node);
1965                 of_node_put(master->of_node);
1966         }
1967
1968         if (!bitmap_empty(smmu->context_map, ARM_SMMU_MAX_CBS))
1969                 dev_err(dev, "removing device with active domains!\n");
1970
1971         for (i = 0; i < smmu->num_global_irqs; ++i)
1972                 free_irq(smmu->irqs[i], smmu);
1973
1974         /* Turn the thing off */
1975         writel_relaxed(sCR0_CLIENTPD, ARM_SMMU_GR0(smmu) + ARM_SMMU_GR0_sCR0);
1976         return 0;
1977 }
1978
1979 #ifdef CONFIG_OF
1980 static struct of_device_id arm_smmu_of_match[] = {
1981         { .compatible = "arm,smmu-v1", },
1982         { .compatible = "arm,smmu-v2", },
1983         { .compatible = "arm,mmu-400", },
1984         { .compatible = "arm,mmu-500", },
1985         { },
1986 };
1987 MODULE_DEVICE_TABLE(of, arm_smmu_of_match);
1988 #endif
1989
1990 static struct platform_driver arm_smmu_driver = {
1991         .driver = {
1992                 .owner          = THIS_MODULE,
1993                 .name           = "arm-smmu",
1994                 .of_match_table = of_match_ptr(arm_smmu_of_match),
1995         },
1996         .probe  = arm_smmu_device_dt_probe,
1997         .remove = arm_smmu_device_remove,
1998 };
1999
2000 static int __init arm_smmu_init(void)
2001 {
2002         int ret;
2003
2004         ret = platform_driver_register(&arm_smmu_driver);
2005         if (ret)
2006                 return ret;
2007
2008         /* Oh, for a proper bus abstraction */
2009         if (!iommu_present(&platform_bus_type))
2010                 bus_set_iommu(&platform_bus_type, &arm_smmu_ops);
2011
2012 #ifdef CONFIG_ARM_AMBA
2013         if (!iommu_present(&amba_bustype))
2014                 bus_set_iommu(&amba_bustype, &arm_smmu_ops);
2015 #endif
2016
2017         return 0;
2018 }
2019
2020 static void __exit arm_smmu_exit(void)
2021 {
2022         return platform_driver_unregister(&arm_smmu_driver);
2023 }
2024
2025 subsys_initcall(arm_smmu_init);
2026 module_exit(arm_smmu_exit);
2027
2028 MODULE_DESCRIPTION("IOMMU API for ARM architected SMMU implementations");
2029 MODULE_AUTHOR("Will Deacon <will.deacon@arm.com>");
2030 MODULE_LICENSE("GPL v2");