]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/iommu/arm-smmu.c
iommu/omap: Make use of domain_alloc and domain_free
[mirror_ubuntu-artful-kernel.git] / drivers / iommu / arm-smmu.c
CommitLineData
45ae7cff
WD
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
45ae7cff
WD
26 * - Context fault reporting
27 */
28
29#define pr_fmt(fmt) "arm-smmu: " fmt
30
31#include <linux/delay.h>
32#include <linux/dma-mapping.h>
33#include <linux/err.h>
34#include <linux/interrupt.h>
35#include <linux/io.h>
36#include <linux/iommu.h>
859a732e 37#include <linux/iopoll.h>
45ae7cff
WD
38#include <linux/module.h>
39#include <linux/of.h>
a9a1b0b5 40#include <linux/pci.h>
45ae7cff
WD
41#include <linux/platform_device.h>
42#include <linux/slab.h>
43#include <linux/spinlock.h>
44
45#include <linux/amba/bus.h>
46
518f7136 47#include "io-pgtable.h"
45ae7cff
WD
48
49/* Maximum number of stream IDs assigned to a single device */
636e97b0 50#define MAX_MASTER_STREAMIDS MAX_PHANDLE_ARGS
45ae7cff
WD
51
52/* Maximum number of context banks per SMMU */
53#define ARM_SMMU_MAX_CBS 128
54
55/* Maximum number of mapping groups per SMMU */
56#define ARM_SMMU_MAX_SMRS 128
57
45ae7cff
WD
58/* SMMU global address space */
59#define ARM_SMMU_GR0(smmu) ((smmu)->base)
c757e852 60#define ARM_SMMU_GR1(smmu) ((smmu)->base + (1 << (smmu)->pgshift))
45ae7cff 61
3a5df8ff
AH
62/*
63 * SMMU global address space with conditional offset to access secure
64 * aliases of non-secure registers (e.g. nsCR0: 0x400, nsGFSR: 0x448,
65 * nsGFSYNR0: 0x450)
66 */
67#define ARM_SMMU_GR0_NS(smmu) \
68 ((smmu)->base + \
69 ((smmu->options & ARM_SMMU_OPT_SECURE_CFG_ACCESS) \
70 ? 0x400 : 0))
71
45ae7cff
WD
72/* Configuration registers */
73#define ARM_SMMU_GR0_sCR0 0x0
74#define sCR0_CLIENTPD (1 << 0)
75#define sCR0_GFRE (1 << 1)
76#define sCR0_GFIE (1 << 2)
77#define sCR0_GCFGFRE (1 << 4)
78#define sCR0_GCFGFIE (1 << 5)
79#define sCR0_USFCFG (1 << 10)
80#define sCR0_VMIDPNE (1 << 11)
81#define sCR0_PTM (1 << 12)
82#define sCR0_FB (1 << 13)
83#define sCR0_BSU_SHIFT 14
84#define sCR0_BSU_MASK 0x3
85
86/* Identification registers */
87#define ARM_SMMU_GR0_ID0 0x20
88#define ARM_SMMU_GR0_ID1 0x24
89#define ARM_SMMU_GR0_ID2 0x28
90#define ARM_SMMU_GR0_ID3 0x2c
91#define ARM_SMMU_GR0_ID4 0x30
92#define ARM_SMMU_GR0_ID5 0x34
93#define ARM_SMMU_GR0_ID6 0x38
94#define ARM_SMMU_GR0_ID7 0x3c
95#define ARM_SMMU_GR0_sGFSR 0x48
96#define ARM_SMMU_GR0_sGFSYNR0 0x50
97#define ARM_SMMU_GR0_sGFSYNR1 0x54
98#define ARM_SMMU_GR0_sGFSYNR2 0x58
45ae7cff
WD
99
100#define ID0_S1TS (1 << 30)
101#define ID0_S2TS (1 << 29)
102#define ID0_NTS (1 << 28)
103#define ID0_SMS (1 << 27)
859a732e 104#define ID0_ATOSNS (1 << 26)
45ae7cff
WD
105#define ID0_CTTW (1 << 14)
106#define ID0_NUMIRPT_SHIFT 16
107#define ID0_NUMIRPT_MASK 0xff
3c8766d0
OH
108#define ID0_NUMSIDB_SHIFT 9
109#define ID0_NUMSIDB_MASK 0xf
45ae7cff
WD
110#define ID0_NUMSMRG_SHIFT 0
111#define ID0_NUMSMRG_MASK 0xff
112
113#define ID1_PAGESIZE (1 << 31)
114#define ID1_NUMPAGENDXB_SHIFT 28
115#define ID1_NUMPAGENDXB_MASK 7
116#define ID1_NUMS2CB_SHIFT 16
117#define ID1_NUMS2CB_MASK 0xff
118#define ID1_NUMCB_SHIFT 0
119#define ID1_NUMCB_MASK 0xff
120
121#define ID2_OAS_SHIFT 4
122#define ID2_OAS_MASK 0xf
123#define ID2_IAS_SHIFT 0
124#define ID2_IAS_MASK 0xf
125#define ID2_UBS_SHIFT 8
126#define ID2_UBS_MASK 0xf
127#define ID2_PTFS_4K (1 << 12)
128#define ID2_PTFS_16K (1 << 13)
129#define ID2_PTFS_64K (1 << 14)
130
45ae7cff 131/* Global TLB invalidation */
45ae7cff
WD
132#define ARM_SMMU_GR0_TLBIVMID 0x64
133#define ARM_SMMU_GR0_TLBIALLNSNH 0x68
134#define ARM_SMMU_GR0_TLBIALLH 0x6c
135#define ARM_SMMU_GR0_sTLBGSYNC 0x70
136#define ARM_SMMU_GR0_sTLBGSTATUS 0x74
137#define sTLBGSTATUS_GSACTIVE (1 << 0)
138#define TLB_LOOP_TIMEOUT 1000000 /* 1s! */
139
140/* Stream mapping registers */
141#define ARM_SMMU_GR0_SMR(n) (0x800 + ((n) << 2))
142#define SMR_VALID (1 << 31)
143#define SMR_MASK_SHIFT 16
144#define SMR_MASK_MASK 0x7fff
145#define SMR_ID_SHIFT 0
146#define SMR_ID_MASK 0x7fff
147
148#define ARM_SMMU_GR0_S2CR(n) (0xc00 + ((n) << 2))
149#define S2CR_CBNDX_SHIFT 0
150#define S2CR_CBNDX_MASK 0xff
151#define S2CR_TYPE_SHIFT 16
152#define S2CR_TYPE_MASK 0x3
153#define S2CR_TYPE_TRANS (0 << S2CR_TYPE_SHIFT)
154#define S2CR_TYPE_BYPASS (1 << S2CR_TYPE_SHIFT)
155#define S2CR_TYPE_FAULT (2 << S2CR_TYPE_SHIFT)
156
157/* Context bank attribute registers */
158#define ARM_SMMU_GR1_CBAR(n) (0x0 + ((n) << 2))
159#define CBAR_VMID_SHIFT 0
160#define CBAR_VMID_MASK 0xff
57ca90f6
WD
161#define CBAR_S1_BPSHCFG_SHIFT 8
162#define CBAR_S1_BPSHCFG_MASK 3
163#define CBAR_S1_BPSHCFG_NSH 3
45ae7cff
WD
164#define CBAR_S1_MEMATTR_SHIFT 12
165#define CBAR_S1_MEMATTR_MASK 0xf
166#define CBAR_S1_MEMATTR_WB 0xf
167#define CBAR_TYPE_SHIFT 16
168#define CBAR_TYPE_MASK 0x3
169#define CBAR_TYPE_S2_TRANS (0 << CBAR_TYPE_SHIFT)
170#define CBAR_TYPE_S1_TRANS_S2_BYPASS (1 << CBAR_TYPE_SHIFT)
171#define CBAR_TYPE_S1_TRANS_S2_FAULT (2 << CBAR_TYPE_SHIFT)
172#define CBAR_TYPE_S1_TRANS_S2_TRANS (3 << CBAR_TYPE_SHIFT)
173#define CBAR_IRPTNDX_SHIFT 24
174#define CBAR_IRPTNDX_MASK 0xff
175
176#define ARM_SMMU_GR1_CBA2R(n) (0x800 + ((n) << 2))
177#define CBA2R_RW64_32BIT (0 << 0)
178#define CBA2R_RW64_64BIT (1 << 0)
179
180/* Translation context bank */
181#define ARM_SMMU_CB_BASE(smmu) ((smmu)->base + ((smmu)->size >> 1))
c757e852 182#define ARM_SMMU_CB(smmu, n) ((n) * (1 << (smmu)->pgshift))
45ae7cff
WD
183
184#define ARM_SMMU_CB_SCTLR 0x0
185#define ARM_SMMU_CB_RESUME 0x8
186#define ARM_SMMU_CB_TTBCR2 0x10
187#define ARM_SMMU_CB_TTBR0_LO 0x20
188#define ARM_SMMU_CB_TTBR0_HI 0x24
518f7136
WD
189#define ARM_SMMU_CB_TTBR1_LO 0x28
190#define ARM_SMMU_CB_TTBR1_HI 0x2c
45ae7cff
WD
191#define ARM_SMMU_CB_TTBCR 0x30
192#define ARM_SMMU_CB_S1_MAIR0 0x38
518f7136 193#define ARM_SMMU_CB_S1_MAIR1 0x3c
859a732e
MH
194#define ARM_SMMU_CB_PAR_LO 0x50
195#define ARM_SMMU_CB_PAR_HI 0x54
45ae7cff
WD
196#define ARM_SMMU_CB_FSR 0x58
197#define ARM_SMMU_CB_FAR_LO 0x60
198#define ARM_SMMU_CB_FAR_HI 0x64
199#define ARM_SMMU_CB_FSYNR0 0x68
518f7136 200#define ARM_SMMU_CB_S1_TLBIVA 0x600
1463fe44 201#define ARM_SMMU_CB_S1_TLBIASID 0x610
518f7136
WD
202#define ARM_SMMU_CB_S1_TLBIVAL 0x620
203#define ARM_SMMU_CB_S2_TLBIIPAS2 0x630
204#define ARM_SMMU_CB_S2_TLBIIPAS2L 0x638
859a732e
MH
205#define ARM_SMMU_CB_ATS1PR_LO 0x800
206#define ARM_SMMU_CB_ATS1PR_HI 0x804
207#define ARM_SMMU_CB_ATSR 0x8f0
45ae7cff
WD
208
209#define SCTLR_S1_ASIDPNE (1 << 12)
210#define SCTLR_CFCFG (1 << 7)
211#define SCTLR_CFIE (1 << 6)
212#define SCTLR_CFRE (1 << 5)
213#define SCTLR_E (1 << 4)
214#define SCTLR_AFE (1 << 2)
215#define SCTLR_TRE (1 << 1)
216#define SCTLR_M (1 << 0)
217#define SCTLR_EAE_SBOP (SCTLR_AFE | SCTLR_TRE)
218
859a732e
MH
219#define CB_PAR_F (1 << 0)
220
221#define ATSR_ACTIVE (1 << 0)
222
45ae7cff
WD
223#define RESUME_RETRY (0 << 0)
224#define RESUME_TERMINATE (1 << 0)
225
45ae7cff
WD
226#define TTBCR2_SEP_SHIFT 15
227#define TTBCR2_SEP_MASK 0x7
228
45ae7cff
WD
229#define TTBCR2_ADDR_32 0
230#define TTBCR2_ADDR_36 1
231#define TTBCR2_ADDR_40 2
232#define TTBCR2_ADDR_42 3
233#define TTBCR2_ADDR_44 4
234#define TTBCR2_ADDR_48 5
235
518f7136 236#define TTBRn_HI_ASID_SHIFT 16
45ae7cff
WD
237
238#define FSR_MULTI (1 << 31)
239#define FSR_SS (1 << 30)
240#define FSR_UUT (1 << 8)
241#define FSR_ASF (1 << 7)
242#define FSR_TLBLKF (1 << 6)
243#define FSR_TLBMCF (1 << 5)
244#define FSR_EF (1 << 4)
245#define FSR_PF (1 << 3)
246#define FSR_AFF (1 << 2)
247#define FSR_TF (1 << 1)
248
2907320d
MH
249#define FSR_IGN (FSR_AFF | FSR_ASF | \
250 FSR_TLBMCF | FSR_TLBLKF)
251#define FSR_FAULT (FSR_MULTI | FSR_SS | FSR_UUT | \
adaba320 252 FSR_EF | FSR_PF | FSR_TF | FSR_IGN)
45ae7cff
WD
253
254#define FSYNR0_WNR (1 << 4)
255
4cf740b0
WD
256static int force_stage;
257module_param_named(force_stage, force_stage, int, S_IRUGO | S_IWUSR);
258MODULE_PARM_DESC(force_stage,
259 "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.");
260
09360403
RM
261enum arm_smmu_arch_version {
262 ARM_SMMU_V1 = 1,
263 ARM_SMMU_V2,
264};
265
45ae7cff
WD
266struct arm_smmu_smr {
267 u8 idx;
268 u16 mask;
269 u16 id;
270};
271
a9a1b0b5 272struct arm_smmu_master_cfg {
45ae7cff
WD
273 int num_streamids;
274 u16 streamids[MAX_MASTER_STREAMIDS];
45ae7cff
WD
275 struct arm_smmu_smr *smrs;
276};
277
a9a1b0b5
WD
278struct arm_smmu_master {
279 struct device_node *of_node;
a9a1b0b5
WD
280 struct rb_node node;
281 struct arm_smmu_master_cfg cfg;
282};
283
45ae7cff
WD
284struct arm_smmu_device {
285 struct device *dev;
45ae7cff
WD
286
287 void __iomem *base;
288 unsigned long size;
c757e852 289 unsigned long pgshift;
45ae7cff
WD
290
291#define ARM_SMMU_FEAT_COHERENT_WALK (1 << 0)
292#define ARM_SMMU_FEAT_STREAM_MATCH (1 << 1)
293#define ARM_SMMU_FEAT_TRANS_S1 (1 << 2)
294#define ARM_SMMU_FEAT_TRANS_S2 (1 << 3)
295#define ARM_SMMU_FEAT_TRANS_NESTED (1 << 4)
859a732e 296#define ARM_SMMU_FEAT_TRANS_OPS (1 << 5)
45ae7cff 297 u32 features;
3a5df8ff
AH
298
299#define ARM_SMMU_OPT_SECURE_CFG_ACCESS (1 << 0)
300 u32 options;
09360403 301 enum arm_smmu_arch_version version;
45ae7cff
WD
302
303 u32 num_context_banks;
304 u32 num_s2_context_banks;
305 DECLARE_BITMAP(context_map, ARM_SMMU_MAX_CBS);
306 atomic_t irptndx;
307
308 u32 num_mapping_groups;
309 DECLARE_BITMAP(smr_map, ARM_SMMU_MAX_SMRS);
310
518f7136
WD
311 unsigned long va_size;
312 unsigned long ipa_size;
313 unsigned long pa_size;
45ae7cff
WD
314
315 u32 num_global_irqs;
316 u32 num_context_irqs;
317 unsigned int *irqs;
318
45ae7cff
WD
319 struct list_head list;
320 struct rb_root masters;
321};
322
323struct arm_smmu_cfg {
45ae7cff
WD
324 u8 cbndx;
325 u8 irptndx;
326 u32 cbar;
45ae7cff 327};
faea13b7 328#define INVALID_IRPTNDX 0xff
45ae7cff 329
ecfadb6e
WD
330#define ARM_SMMU_CB_ASID(cfg) ((cfg)->cbndx)
331#define ARM_SMMU_CB_VMID(cfg) ((cfg)->cbndx + 1)
332
c752ce45
WD
333enum arm_smmu_domain_stage {
334 ARM_SMMU_DOMAIN_S1 = 0,
335 ARM_SMMU_DOMAIN_S2,
336 ARM_SMMU_DOMAIN_NESTED,
337};
338
45ae7cff 339struct arm_smmu_domain {
44680eed 340 struct arm_smmu_device *smmu;
518f7136
WD
341 struct io_pgtable_ops *pgtbl_ops;
342 spinlock_t pgtbl_lock;
44680eed 343 struct arm_smmu_cfg cfg;
c752ce45 344 enum arm_smmu_domain_stage stage;
518f7136 345 struct mutex init_mutex; /* Protects smmu pointer */
45ae7cff
WD
346};
347
518f7136
WD
348static struct iommu_ops arm_smmu_ops;
349
45ae7cff
WD
350static DEFINE_SPINLOCK(arm_smmu_devices_lock);
351static LIST_HEAD(arm_smmu_devices);
352
3a5df8ff
AH
353struct arm_smmu_option_prop {
354 u32 opt;
355 const char *prop;
356};
357
2907320d 358static struct arm_smmu_option_prop arm_smmu_options[] = {
3a5df8ff
AH
359 { ARM_SMMU_OPT_SECURE_CFG_ACCESS, "calxeda,smmu-secure-config-access" },
360 { 0, NULL},
361};
362
363static void parse_driver_options(struct arm_smmu_device *smmu)
364{
365 int i = 0;
2907320d 366
3a5df8ff
AH
367 do {
368 if (of_property_read_bool(smmu->dev->of_node,
369 arm_smmu_options[i].prop)) {
370 smmu->options |= arm_smmu_options[i].opt;
371 dev_notice(smmu->dev, "option %s\n",
372 arm_smmu_options[i].prop);
373 }
374 } while (arm_smmu_options[++i].opt);
375}
376
8f68f8e2 377static struct device_node *dev_get_dev_node(struct device *dev)
a9a1b0b5
WD
378{
379 if (dev_is_pci(dev)) {
380 struct pci_bus *bus = to_pci_dev(dev)->bus;
2907320d 381
a9a1b0b5
WD
382 while (!pci_is_root_bus(bus))
383 bus = bus->parent;
8f68f8e2 384 return bus->bridge->parent->of_node;
a9a1b0b5
WD
385 }
386
8f68f8e2 387 return dev->of_node;
a9a1b0b5
WD
388}
389
45ae7cff
WD
390static struct arm_smmu_master *find_smmu_master(struct arm_smmu_device *smmu,
391 struct device_node *dev_node)
392{
393 struct rb_node *node = smmu->masters.rb_node;
394
395 while (node) {
396 struct arm_smmu_master *master;
2907320d 397
45ae7cff
WD
398 master = container_of(node, struct arm_smmu_master, node);
399
400 if (dev_node < master->of_node)
401 node = node->rb_left;
402 else if (dev_node > master->of_node)
403 node = node->rb_right;
404 else
405 return master;
406 }
407
408 return NULL;
409}
410
a9a1b0b5 411static struct arm_smmu_master_cfg *
8f68f8e2 412find_smmu_master_cfg(struct device *dev)
a9a1b0b5 413{
8f68f8e2
WD
414 struct arm_smmu_master_cfg *cfg = NULL;
415 struct iommu_group *group = iommu_group_get(dev);
a9a1b0b5 416
8f68f8e2
WD
417 if (group) {
418 cfg = iommu_group_get_iommudata(group);
419 iommu_group_put(group);
420 }
a9a1b0b5 421
8f68f8e2 422 return cfg;
a9a1b0b5
WD
423}
424
45ae7cff
WD
425static int insert_smmu_master(struct arm_smmu_device *smmu,
426 struct arm_smmu_master *master)
427{
428 struct rb_node **new, *parent;
429
430 new = &smmu->masters.rb_node;
431 parent = NULL;
432 while (*new) {
2907320d
MH
433 struct arm_smmu_master *this
434 = container_of(*new, struct arm_smmu_master, node);
45ae7cff
WD
435
436 parent = *new;
437 if (master->of_node < this->of_node)
438 new = &((*new)->rb_left);
439 else if (master->of_node > this->of_node)
440 new = &((*new)->rb_right);
441 else
442 return -EEXIST;
443 }
444
445 rb_link_node(&master->node, parent, new);
446 rb_insert_color(&master->node, &smmu->masters);
447 return 0;
448}
449
450static int register_smmu_master(struct arm_smmu_device *smmu,
451 struct device *dev,
452 struct of_phandle_args *masterspec)
453{
454 int i;
455 struct arm_smmu_master *master;
456
457 master = find_smmu_master(smmu, masterspec->np);
458 if (master) {
459 dev_err(dev,
460 "rejecting multiple registrations for master device %s\n",
461 masterspec->np->name);
462 return -EBUSY;
463 }
464
465 if (masterspec->args_count > MAX_MASTER_STREAMIDS) {
466 dev_err(dev,
467 "reached maximum number (%d) of stream IDs for master device %s\n",
468 MAX_MASTER_STREAMIDS, masterspec->np->name);
469 return -ENOSPC;
470 }
471
472 master = devm_kzalloc(dev, sizeof(*master), GFP_KERNEL);
473 if (!master)
474 return -ENOMEM;
475
a9a1b0b5
WD
476 master->of_node = masterspec->np;
477 master->cfg.num_streamids = masterspec->args_count;
45ae7cff 478
3c8766d0
OH
479 for (i = 0; i < master->cfg.num_streamids; ++i) {
480 u16 streamid = masterspec->args[i];
45ae7cff 481
3c8766d0
OH
482 if (!(smmu->features & ARM_SMMU_FEAT_STREAM_MATCH) &&
483 (streamid >= smmu->num_mapping_groups)) {
484 dev_err(dev,
485 "stream ID for master device %s greater than maximum allowed (%d)\n",
486 masterspec->np->name, smmu->num_mapping_groups);
487 return -ERANGE;
488 }
489 master->cfg.streamids[i] = streamid;
490 }
45ae7cff
WD
491 return insert_smmu_master(smmu, master);
492}
493
44680eed 494static struct arm_smmu_device *find_smmu_for_device(struct device *dev)
45ae7cff 495{
44680eed 496 struct arm_smmu_device *smmu;
a9a1b0b5 497 struct arm_smmu_master *master = NULL;
8f68f8e2 498 struct device_node *dev_node = dev_get_dev_node(dev);
45ae7cff
WD
499
500 spin_lock(&arm_smmu_devices_lock);
44680eed 501 list_for_each_entry(smmu, &arm_smmu_devices, list) {
a9a1b0b5
WD
502 master = find_smmu_master(smmu, dev_node);
503 if (master)
504 break;
505 }
45ae7cff 506 spin_unlock(&arm_smmu_devices_lock);
44680eed 507
a9a1b0b5 508 return master ? smmu : NULL;
45ae7cff
WD
509}
510
511static int __arm_smmu_alloc_bitmap(unsigned long *map, int start, int end)
512{
513 int idx;
514
515 do {
516 idx = find_next_zero_bit(map, end, start);
517 if (idx == end)
518 return -ENOSPC;
519 } while (test_and_set_bit(idx, map));
520
521 return idx;
522}
523
524static void __arm_smmu_free_bitmap(unsigned long *map, int idx)
525{
526 clear_bit(idx, map);
527}
528
529/* Wait for any pending TLB invalidations to complete */
518f7136 530static void __arm_smmu_tlb_sync(struct arm_smmu_device *smmu)
45ae7cff
WD
531{
532 int count = 0;
533 void __iomem *gr0_base = ARM_SMMU_GR0(smmu);
534
535 writel_relaxed(0, gr0_base + ARM_SMMU_GR0_sTLBGSYNC);
536 while (readl_relaxed(gr0_base + ARM_SMMU_GR0_sTLBGSTATUS)
537 & sTLBGSTATUS_GSACTIVE) {
538 cpu_relax();
539 if (++count == TLB_LOOP_TIMEOUT) {
540 dev_err_ratelimited(smmu->dev,
541 "TLB sync timed out -- SMMU may be deadlocked\n");
542 return;
543 }
544 udelay(1);
545 }
546}
547
518f7136
WD
548static void arm_smmu_tlb_sync(void *cookie)
549{
550 struct arm_smmu_domain *smmu_domain = cookie;
551 __arm_smmu_tlb_sync(smmu_domain->smmu);
552}
553
554static void arm_smmu_tlb_inv_context(void *cookie)
1463fe44 555{
518f7136 556 struct arm_smmu_domain *smmu_domain = cookie;
44680eed
WD
557 struct arm_smmu_cfg *cfg = &smmu_domain->cfg;
558 struct arm_smmu_device *smmu = smmu_domain->smmu;
1463fe44 559 bool stage1 = cfg->cbar != CBAR_TYPE_S2_TRANS;
518f7136 560 void __iomem *base;
1463fe44
WD
561
562 if (stage1) {
563 base = ARM_SMMU_CB_BASE(smmu) + ARM_SMMU_CB(smmu, cfg->cbndx);
ecfadb6e
WD
564 writel_relaxed(ARM_SMMU_CB_ASID(cfg),
565 base + ARM_SMMU_CB_S1_TLBIASID);
1463fe44
WD
566 } else {
567 base = ARM_SMMU_GR0(smmu);
ecfadb6e
WD
568 writel_relaxed(ARM_SMMU_CB_VMID(cfg),
569 base + ARM_SMMU_GR0_TLBIVMID);
1463fe44
WD
570 }
571
518f7136
WD
572 __arm_smmu_tlb_sync(smmu);
573}
574
575static void arm_smmu_tlb_inv_range_nosync(unsigned long iova, size_t size,
576 bool leaf, void *cookie)
577{
578 struct arm_smmu_domain *smmu_domain = cookie;
579 struct arm_smmu_cfg *cfg = &smmu_domain->cfg;
580 struct arm_smmu_device *smmu = smmu_domain->smmu;
581 bool stage1 = cfg->cbar != CBAR_TYPE_S2_TRANS;
582 void __iomem *reg;
583
584 if (stage1) {
585 reg = ARM_SMMU_CB_BASE(smmu) + ARM_SMMU_CB(smmu, cfg->cbndx);
586 reg += leaf ? ARM_SMMU_CB_S1_TLBIVAL : ARM_SMMU_CB_S1_TLBIVA;
587
588 if (!IS_ENABLED(CONFIG_64BIT) || smmu->version == ARM_SMMU_V1) {
589 iova &= ~12UL;
590 iova |= ARM_SMMU_CB_ASID(cfg);
591 writel_relaxed(iova, reg);
592#ifdef CONFIG_64BIT
593 } else {
594 iova >>= 12;
595 iova |= (u64)ARM_SMMU_CB_ASID(cfg) << 48;
596 writeq_relaxed(iova, reg);
597#endif
598 }
599#ifdef CONFIG_64BIT
600 } else if (smmu->version == ARM_SMMU_V2) {
601 reg = ARM_SMMU_CB_BASE(smmu) + ARM_SMMU_CB(smmu, cfg->cbndx);
602 reg += leaf ? ARM_SMMU_CB_S2_TLBIIPAS2L :
603 ARM_SMMU_CB_S2_TLBIIPAS2;
604 writeq_relaxed(iova >> 12, reg);
605#endif
606 } else {
607 reg = ARM_SMMU_GR0(smmu) + ARM_SMMU_GR0_TLBIVMID;
608 writel_relaxed(ARM_SMMU_CB_VMID(cfg), reg);
609 }
610}
611
612static void arm_smmu_flush_pgtable(void *addr, size_t size, void *cookie)
613{
614 struct arm_smmu_domain *smmu_domain = cookie;
615 struct arm_smmu_device *smmu = smmu_domain->smmu;
616 unsigned long offset = (unsigned long)addr & ~PAGE_MASK;
617
618
619 /* Ensure new page tables are visible to the hardware walker */
620 if (smmu->features & ARM_SMMU_FEAT_COHERENT_WALK) {
621 dsb(ishst);
622 } else {
623 /*
624 * If the SMMU can't walk tables in the CPU caches, treat them
625 * like non-coherent DMA since we need to flush the new entries
626 * all the way out to memory. There's no possibility of
627 * recursion here as the SMMU table walker will not be wired
628 * through another SMMU.
629 */
630 dma_map_page(smmu->dev, virt_to_page(addr), offset, size,
631 DMA_TO_DEVICE);
632 }
1463fe44
WD
633}
634
518f7136
WD
635static struct iommu_gather_ops arm_smmu_gather_ops = {
636 .tlb_flush_all = arm_smmu_tlb_inv_context,
637 .tlb_add_flush = arm_smmu_tlb_inv_range_nosync,
638 .tlb_sync = arm_smmu_tlb_sync,
639 .flush_pgtable = arm_smmu_flush_pgtable,
640};
641
45ae7cff
WD
642static irqreturn_t arm_smmu_context_fault(int irq, void *dev)
643{
644 int flags, ret;
645 u32 fsr, far, fsynr, resume;
646 unsigned long iova;
647 struct iommu_domain *domain = dev;
648 struct arm_smmu_domain *smmu_domain = domain->priv;
44680eed
WD
649 struct arm_smmu_cfg *cfg = &smmu_domain->cfg;
650 struct arm_smmu_device *smmu = smmu_domain->smmu;
45ae7cff
WD
651 void __iomem *cb_base;
652
44680eed 653 cb_base = ARM_SMMU_CB_BASE(smmu) + ARM_SMMU_CB(smmu, cfg->cbndx);
45ae7cff
WD
654 fsr = readl_relaxed(cb_base + ARM_SMMU_CB_FSR);
655
656 if (!(fsr & FSR_FAULT))
657 return IRQ_NONE;
658
659 if (fsr & FSR_IGN)
660 dev_err_ratelimited(smmu->dev,
70c9a7db 661 "Unexpected context fault (fsr 0x%x)\n",
45ae7cff
WD
662 fsr);
663
664 fsynr = readl_relaxed(cb_base + ARM_SMMU_CB_FSYNR0);
665 flags = fsynr & FSYNR0_WNR ? IOMMU_FAULT_WRITE : IOMMU_FAULT_READ;
666
667 far = readl_relaxed(cb_base + ARM_SMMU_CB_FAR_LO);
668 iova = far;
669#ifdef CONFIG_64BIT
670 far = readl_relaxed(cb_base + ARM_SMMU_CB_FAR_HI);
671 iova |= ((unsigned long)far << 32);
672#endif
673
674 if (!report_iommu_fault(domain, smmu->dev, iova, flags)) {
675 ret = IRQ_HANDLED;
676 resume = RESUME_RETRY;
677 } else {
2ef0f031
AH
678 dev_err_ratelimited(smmu->dev,
679 "Unhandled context fault: iova=0x%08lx, fsynr=0x%x, cb=%d\n",
44680eed 680 iova, fsynr, cfg->cbndx);
45ae7cff
WD
681 ret = IRQ_NONE;
682 resume = RESUME_TERMINATE;
683 }
684
685 /* Clear the faulting FSR */
686 writel(fsr, cb_base + ARM_SMMU_CB_FSR);
687
688 /* Retry or terminate any stalled transactions */
689 if (fsr & FSR_SS)
690 writel_relaxed(resume, cb_base + ARM_SMMU_CB_RESUME);
691
692 return ret;
693}
694
695static irqreturn_t arm_smmu_global_fault(int irq, void *dev)
696{
697 u32 gfsr, gfsynr0, gfsynr1, gfsynr2;
698 struct arm_smmu_device *smmu = dev;
3a5df8ff 699 void __iomem *gr0_base = ARM_SMMU_GR0_NS(smmu);
45ae7cff
WD
700
701 gfsr = readl_relaxed(gr0_base + ARM_SMMU_GR0_sGFSR);
702 gfsynr0 = readl_relaxed(gr0_base + ARM_SMMU_GR0_sGFSYNR0);
703 gfsynr1 = readl_relaxed(gr0_base + ARM_SMMU_GR0_sGFSYNR1);
704 gfsynr2 = readl_relaxed(gr0_base + ARM_SMMU_GR0_sGFSYNR2);
705
3a5df8ff
AH
706 if (!gfsr)
707 return IRQ_NONE;
708
45ae7cff
WD
709 dev_err_ratelimited(smmu->dev,
710 "Unexpected global fault, this could be serious\n");
711 dev_err_ratelimited(smmu->dev,
712 "\tGFSR 0x%08x, GFSYNR0 0x%08x, GFSYNR1 0x%08x, GFSYNR2 0x%08x\n",
713 gfsr, gfsynr0, gfsynr1, gfsynr2);
714
715 writel(gfsr, gr0_base + ARM_SMMU_GR0_sGFSR);
adaba320 716 return IRQ_HANDLED;
45ae7cff
WD
717}
718
518f7136
WD
719static void arm_smmu_init_context_bank(struct arm_smmu_domain *smmu_domain,
720 struct io_pgtable_cfg *pgtbl_cfg)
45ae7cff
WD
721{
722 u32 reg;
723 bool stage1;
44680eed
WD
724 struct arm_smmu_cfg *cfg = &smmu_domain->cfg;
725 struct arm_smmu_device *smmu = smmu_domain->smmu;
45ae7cff
WD
726 void __iomem *cb_base, *gr0_base, *gr1_base;
727
728 gr0_base = ARM_SMMU_GR0(smmu);
729 gr1_base = ARM_SMMU_GR1(smmu);
44680eed
WD
730 stage1 = cfg->cbar != CBAR_TYPE_S2_TRANS;
731 cb_base = ARM_SMMU_CB_BASE(smmu) + ARM_SMMU_CB(smmu, cfg->cbndx);
45ae7cff
WD
732
733 /* CBAR */
44680eed 734 reg = cfg->cbar;
09360403 735 if (smmu->version == ARM_SMMU_V1)
2907320d 736 reg |= cfg->irptndx << CBAR_IRPTNDX_SHIFT;
45ae7cff 737
57ca90f6
WD
738 /*
739 * Use the weakest shareability/memory types, so they are
740 * overridden by the ttbcr/pte.
741 */
742 if (stage1) {
743 reg |= (CBAR_S1_BPSHCFG_NSH << CBAR_S1_BPSHCFG_SHIFT) |
744 (CBAR_S1_MEMATTR_WB << CBAR_S1_MEMATTR_SHIFT);
745 } else {
44680eed 746 reg |= ARM_SMMU_CB_VMID(cfg) << CBAR_VMID_SHIFT;
57ca90f6 747 }
44680eed 748 writel_relaxed(reg, gr1_base + ARM_SMMU_GR1_CBAR(cfg->cbndx));
45ae7cff 749
09360403 750 if (smmu->version > ARM_SMMU_V1) {
45ae7cff
WD
751 /* CBA2R */
752#ifdef CONFIG_64BIT
753 reg = CBA2R_RW64_64BIT;
754#else
755 reg = CBA2R_RW64_32BIT;
756#endif
518f7136 757 writel_relaxed(reg, gr1_base + ARM_SMMU_GR1_CBA2R(cfg->cbndx));
45ae7cff
WD
758 }
759
518f7136
WD
760 /* TTBRs */
761 if (stage1) {
762 reg = pgtbl_cfg->arm_lpae_s1_cfg.ttbr[0];
763 writel_relaxed(reg, cb_base + ARM_SMMU_CB_TTBR0_LO);
764 reg = pgtbl_cfg->arm_lpae_s1_cfg.ttbr[0] >> 32;
44680eed 765 reg |= ARM_SMMU_CB_ASID(cfg) << TTBRn_HI_ASID_SHIFT;
518f7136 766 writel_relaxed(reg, cb_base + ARM_SMMU_CB_TTBR0_HI);
45ae7cff 767
518f7136
WD
768 reg = pgtbl_cfg->arm_lpae_s1_cfg.ttbr[1];
769 writel_relaxed(reg, cb_base + ARM_SMMU_CB_TTBR1_LO);
770 reg = pgtbl_cfg->arm_lpae_s1_cfg.ttbr[1] >> 32;
771 reg |= ARM_SMMU_CB_ASID(cfg) << TTBRn_HI_ASID_SHIFT;
772 writel_relaxed(reg, cb_base + ARM_SMMU_CB_TTBR1_HI);
773 } else {
774 reg = pgtbl_cfg->arm_lpae_s2_cfg.vttbr;
775 writel_relaxed(reg, cb_base + ARM_SMMU_CB_TTBR0_LO);
776 reg = pgtbl_cfg->arm_lpae_s2_cfg.vttbr >> 32;
777 writel_relaxed(reg, cb_base + ARM_SMMU_CB_TTBR0_HI);
778 }
a65217a4 779
518f7136
WD
780 /* TTBCR */
781 if (stage1) {
782 reg = pgtbl_cfg->arm_lpae_s1_cfg.tcr;
783 writel_relaxed(reg, cb_base + ARM_SMMU_CB_TTBCR);
784 if (smmu->version > ARM_SMMU_V1) {
785 reg = pgtbl_cfg->arm_lpae_s1_cfg.tcr >> 32;
786 switch (smmu->va_size) {
45ae7cff 787 case 32:
518f7136 788 reg |= (TTBCR2_ADDR_32 << TTBCR2_SEP_SHIFT);
45ae7cff
WD
789 break;
790 case 36:
518f7136 791 reg |= (TTBCR2_ADDR_36 << TTBCR2_SEP_SHIFT);
45ae7cff
WD
792 break;
793 case 40:
518f7136 794 reg |= (TTBCR2_ADDR_40 << TTBCR2_SEP_SHIFT);
45ae7cff
WD
795 break;
796 case 42:
518f7136 797 reg |= (TTBCR2_ADDR_42 << TTBCR2_SEP_SHIFT);
45ae7cff
WD
798 break;
799 case 44:
518f7136 800 reg |= (TTBCR2_ADDR_44 << TTBCR2_SEP_SHIFT);
45ae7cff
WD
801 break;
802 case 48:
518f7136 803 reg |= (TTBCR2_ADDR_48 << TTBCR2_SEP_SHIFT);
45ae7cff
WD
804 break;
805 }
518f7136 806 writel_relaxed(reg, cb_base + ARM_SMMU_CB_TTBCR2);
45ae7cff
WD
807 }
808 } else {
518f7136
WD
809 reg = pgtbl_cfg->arm_lpae_s2_cfg.vtcr;
810 writel_relaxed(reg, cb_base + ARM_SMMU_CB_TTBCR);
45ae7cff
WD
811 }
812
518f7136 813 /* MAIRs (stage-1 only) */
45ae7cff 814 if (stage1) {
518f7136 815 reg = pgtbl_cfg->arm_lpae_s1_cfg.mair[0];
45ae7cff 816 writel_relaxed(reg, cb_base + ARM_SMMU_CB_S1_MAIR0);
518f7136
WD
817 reg = pgtbl_cfg->arm_lpae_s1_cfg.mair[1];
818 writel_relaxed(reg, cb_base + ARM_SMMU_CB_S1_MAIR1);
45ae7cff
WD
819 }
820
45ae7cff
WD
821 /* SCTLR */
822 reg = SCTLR_CFCFG | SCTLR_CFIE | SCTLR_CFRE | SCTLR_M | SCTLR_EAE_SBOP;
823 if (stage1)
824 reg |= SCTLR_S1_ASIDPNE;
825#ifdef __BIG_ENDIAN
826 reg |= SCTLR_E;
827#endif
25724841 828 writel_relaxed(reg, cb_base + ARM_SMMU_CB_SCTLR);
45ae7cff
WD
829}
830
831static int arm_smmu_init_domain_context(struct iommu_domain *domain,
44680eed 832 struct arm_smmu_device *smmu)
45ae7cff 833{
a18037b2 834 int irq, start, ret = 0;
518f7136
WD
835 unsigned long ias, oas;
836 struct io_pgtable_ops *pgtbl_ops;
837 struct io_pgtable_cfg pgtbl_cfg;
838 enum io_pgtable_fmt fmt;
45ae7cff 839 struct arm_smmu_domain *smmu_domain = domain->priv;
44680eed 840 struct arm_smmu_cfg *cfg = &smmu_domain->cfg;
45ae7cff 841
518f7136 842 mutex_lock(&smmu_domain->init_mutex);
a18037b2
MH
843 if (smmu_domain->smmu)
844 goto out_unlock;
845
c752ce45
WD
846 /*
847 * Mapping the requested stage onto what we support is surprisingly
848 * complicated, mainly because the spec allows S1+S2 SMMUs without
849 * support for nested translation. That means we end up with the
850 * following table:
851 *
852 * Requested Supported Actual
853 * S1 N S1
854 * S1 S1+S2 S1
855 * S1 S2 S2
856 * S1 S1 S1
857 * N N N
858 * N S1+S2 S2
859 * N S2 S2
860 * N S1 S1
861 *
862 * Note that you can't actually request stage-2 mappings.
863 */
864 if (!(smmu->features & ARM_SMMU_FEAT_TRANS_S1))
865 smmu_domain->stage = ARM_SMMU_DOMAIN_S2;
866 if (!(smmu->features & ARM_SMMU_FEAT_TRANS_S2))
867 smmu_domain->stage = ARM_SMMU_DOMAIN_S1;
868
869 switch (smmu_domain->stage) {
870 case ARM_SMMU_DOMAIN_S1:
871 cfg->cbar = CBAR_TYPE_S1_TRANS_S2_BYPASS;
872 start = smmu->num_s2_context_banks;
518f7136
WD
873 ias = smmu->va_size;
874 oas = smmu->ipa_size;
875 if (IS_ENABLED(CONFIG_64BIT))
876 fmt = ARM_64_LPAE_S1;
877 else
878 fmt = ARM_32_LPAE_S1;
c752ce45
WD
879 break;
880 case ARM_SMMU_DOMAIN_NESTED:
45ae7cff
WD
881 /*
882 * We will likely want to change this if/when KVM gets
883 * involved.
884 */
c752ce45 885 case ARM_SMMU_DOMAIN_S2:
9c5c92e3
WD
886 cfg->cbar = CBAR_TYPE_S2_TRANS;
887 start = 0;
518f7136
WD
888 ias = smmu->ipa_size;
889 oas = smmu->pa_size;
890 if (IS_ENABLED(CONFIG_64BIT))
891 fmt = ARM_64_LPAE_S2;
892 else
893 fmt = ARM_32_LPAE_S2;
c752ce45
WD
894 break;
895 default:
896 ret = -EINVAL;
897 goto out_unlock;
45ae7cff
WD
898 }
899
900 ret = __arm_smmu_alloc_bitmap(smmu->context_map, start,
901 smmu->num_context_banks);
902 if (IS_ERR_VALUE(ret))
a18037b2 903 goto out_unlock;
45ae7cff 904
44680eed 905 cfg->cbndx = ret;
09360403 906 if (smmu->version == ARM_SMMU_V1) {
44680eed
WD
907 cfg->irptndx = atomic_inc_return(&smmu->irptndx);
908 cfg->irptndx %= smmu->num_context_irqs;
45ae7cff 909 } else {
44680eed 910 cfg->irptndx = cfg->cbndx;
45ae7cff
WD
911 }
912
518f7136
WD
913 pgtbl_cfg = (struct io_pgtable_cfg) {
914 .pgsize_bitmap = arm_smmu_ops.pgsize_bitmap,
915 .ias = ias,
916 .oas = oas,
917 .tlb = &arm_smmu_gather_ops,
918 };
919
920 smmu_domain->smmu = smmu;
921 pgtbl_ops = alloc_io_pgtable_ops(fmt, &pgtbl_cfg, smmu_domain);
922 if (!pgtbl_ops) {
923 ret = -ENOMEM;
924 goto out_clear_smmu;
925 }
926
927 /* Update our support page sizes to reflect the page table format */
928 arm_smmu_ops.pgsize_bitmap = pgtbl_cfg.pgsize_bitmap;
a18037b2 929
518f7136
WD
930 /* Initialise the context bank with our page table cfg */
931 arm_smmu_init_context_bank(smmu_domain, &pgtbl_cfg);
932
933 /*
934 * Request context fault interrupt. Do this last to avoid the
935 * handler seeing a half-initialised domain state.
936 */
44680eed 937 irq = smmu->irqs[smmu->num_global_irqs + cfg->irptndx];
45ae7cff
WD
938 ret = request_irq(irq, arm_smmu_context_fault, IRQF_SHARED,
939 "arm-smmu-context-fault", domain);
940 if (IS_ERR_VALUE(ret)) {
941 dev_err(smmu->dev, "failed to request context IRQ %d (%u)\n",
44680eed
WD
942 cfg->irptndx, irq);
943 cfg->irptndx = INVALID_IRPTNDX;
45ae7cff
WD
944 }
945
518f7136
WD
946 mutex_unlock(&smmu_domain->init_mutex);
947
948 /* Publish page table ops for map/unmap */
949 smmu_domain->pgtbl_ops = pgtbl_ops;
a9a1b0b5 950 return 0;
45ae7cff 951
518f7136
WD
952out_clear_smmu:
953 smmu_domain->smmu = NULL;
a18037b2 954out_unlock:
518f7136 955 mutex_unlock(&smmu_domain->init_mutex);
45ae7cff
WD
956 return ret;
957}
958
959static void arm_smmu_destroy_domain_context(struct iommu_domain *domain)
960{
961 struct arm_smmu_domain *smmu_domain = domain->priv;
44680eed
WD
962 struct arm_smmu_device *smmu = smmu_domain->smmu;
963 struct arm_smmu_cfg *cfg = &smmu_domain->cfg;
1463fe44 964 void __iomem *cb_base;
45ae7cff
WD
965 int irq;
966
967 if (!smmu)
968 return;
969
518f7136
WD
970 /*
971 * Disable the context bank and free the page tables before freeing
972 * it.
973 */
44680eed 974 cb_base = ARM_SMMU_CB_BASE(smmu) + ARM_SMMU_CB(smmu, cfg->cbndx);
1463fe44 975 writel_relaxed(0, cb_base + ARM_SMMU_CB_SCTLR);
1463fe44 976
44680eed
WD
977 if (cfg->irptndx != INVALID_IRPTNDX) {
978 irq = smmu->irqs[smmu->num_global_irqs + cfg->irptndx];
45ae7cff
WD
979 free_irq(irq, domain);
980 }
981
518f7136
WD
982 if (smmu_domain->pgtbl_ops)
983 free_io_pgtable_ops(smmu_domain->pgtbl_ops);
984
44680eed 985 __arm_smmu_free_bitmap(smmu->context_map, cfg->cbndx);
45ae7cff
WD
986}
987
988static int arm_smmu_domain_init(struct iommu_domain *domain)
989{
990 struct arm_smmu_domain *smmu_domain;
45ae7cff
WD
991
992 /*
993 * Allocate the domain and initialise some of its data structures.
994 * We can't really do anything meaningful until we've added a
995 * master.
996 */
997 smmu_domain = kzalloc(sizeof(*smmu_domain), GFP_KERNEL);
998 if (!smmu_domain)
999 return -ENOMEM;
1000
518f7136
WD
1001 mutex_init(&smmu_domain->init_mutex);
1002 spin_lock_init(&smmu_domain->pgtbl_lock);
45ae7cff
WD
1003 domain->priv = smmu_domain;
1004 return 0;
45ae7cff
WD
1005}
1006
1007static void arm_smmu_domain_destroy(struct iommu_domain *domain)
1008{
1009 struct arm_smmu_domain *smmu_domain = domain->priv;
1463fe44
WD
1010
1011 /*
1012 * Free the domain resources. We assume that all devices have
1013 * already been detached.
1014 */
45ae7cff 1015 arm_smmu_destroy_domain_context(domain);
45ae7cff
WD
1016 kfree(smmu_domain);
1017}
1018
1019static int arm_smmu_master_configure_smrs(struct arm_smmu_device *smmu,
a9a1b0b5 1020 struct arm_smmu_master_cfg *cfg)
45ae7cff
WD
1021{
1022 int i;
1023 struct arm_smmu_smr *smrs;
1024 void __iomem *gr0_base = ARM_SMMU_GR0(smmu);
1025
1026 if (!(smmu->features & ARM_SMMU_FEAT_STREAM_MATCH))
1027 return 0;
1028
a9a1b0b5 1029 if (cfg->smrs)
45ae7cff
WD
1030 return -EEXIST;
1031
2907320d 1032 smrs = kmalloc_array(cfg->num_streamids, sizeof(*smrs), GFP_KERNEL);
45ae7cff 1033 if (!smrs) {
a9a1b0b5
WD
1034 dev_err(smmu->dev, "failed to allocate %d SMRs\n",
1035 cfg->num_streamids);
45ae7cff
WD
1036 return -ENOMEM;
1037 }
1038
44680eed 1039 /* Allocate the SMRs on the SMMU */
a9a1b0b5 1040 for (i = 0; i < cfg->num_streamids; ++i) {
45ae7cff
WD
1041 int idx = __arm_smmu_alloc_bitmap(smmu->smr_map, 0,
1042 smmu->num_mapping_groups);
1043 if (IS_ERR_VALUE(idx)) {
1044 dev_err(smmu->dev, "failed to allocate free SMR\n");
1045 goto err_free_smrs;
1046 }
1047
1048 smrs[i] = (struct arm_smmu_smr) {
1049 .idx = idx,
1050 .mask = 0, /* We don't currently share SMRs */
a9a1b0b5 1051 .id = cfg->streamids[i],
45ae7cff
WD
1052 };
1053 }
1054
1055 /* It worked! Now, poke the actual hardware */
a9a1b0b5 1056 for (i = 0; i < cfg->num_streamids; ++i) {
45ae7cff
WD
1057 u32 reg = SMR_VALID | smrs[i].id << SMR_ID_SHIFT |
1058 smrs[i].mask << SMR_MASK_SHIFT;
1059 writel_relaxed(reg, gr0_base + ARM_SMMU_GR0_SMR(smrs[i].idx));
1060 }
1061
a9a1b0b5 1062 cfg->smrs = smrs;
45ae7cff
WD
1063 return 0;
1064
1065err_free_smrs:
1066 while (--i >= 0)
1067 __arm_smmu_free_bitmap(smmu->smr_map, smrs[i].idx);
1068 kfree(smrs);
1069 return -ENOSPC;
1070}
1071
1072static void arm_smmu_master_free_smrs(struct arm_smmu_device *smmu,
a9a1b0b5 1073 struct arm_smmu_master_cfg *cfg)
45ae7cff
WD
1074{
1075 int i;
1076 void __iomem *gr0_base = ARM_SMMU_GR0(smmu);
a9a1b0b5 1077 struct arm_smmu_smr *smrs = cfg->smrs;
45ae7cff 1078
43b412be
WD
1079 if (!smrs)
1080 return;
1081
45ae7cff 1082 /* Invalidate the SMRs before freeing back to the allocator */
a9a1b0b5 1083 for (i = 0; i < cfg->num_streamids; ++i) {
45ae7cff 1084 u8 idx = smrs[i].idx;
2907320d 1085
45ae7cff
WD
1086 writel_relaxed(~SMR_VALID, gr0_base + ARM_SMMU_GR0_SMR(idx));
1087 __arm_smmu_free_bitmap(smmu->smr_map, idx);
1088 }
1089
a9a1b0b5 1090 cfg->smrs = NULL;
45ae7cff
WD
1091 kfree(smrs);
1092}
1093
45ae7cff 1094static int arm_smmu_domain_add_master(struct arm_smmu_domain *smmu_domain,
a9a1b0b5 1095 struct arm_smmu_master_cfg *cfg)
45ae7cff
WD
1096{
1097 int i, ret;
44680eed 1098 struct arm_smmu_device *smmu = smmu_domain->smmu;
45ae7cff
WD
1099 void __iomem *gr0_base = ARM_SMMU_GR0(smmu);
1100
8f68f8e2 1101 /* Devices in an IOMMU group may already be configured */
a9a1b0b5 1102 ret = arm_smmu_master_configure_smrs(smmu, cfg);
45ae7cff 1103 if (ret)
8f68f8e2 1104 return ret == -EEXIST ? 0 : ret;
45ae7cff 1105
a9a1b0b5 1106 for (i = 0; i < cfg->num_streamids; ++i) {
45ae7cff 1107 u32 idx, s2cr;
2907320d 1108
a9a1b0b5 1109 idx = cfg->smrs ? cfg->smrs[i].idx : cfg->streamids[i];
6069d23c 1110 s2cr = S2CR_TYPE_TRANS |
44680eed 1111 (smmu_domain->cfg.cbndx << S2CR_CBNDX_SHIFT);
45ae7cff
WD
1112 writel_relaxed(s2cr, gr0_base + ARM_SMMU_GR0_S2CR(idx));
1113 }
1114
1115 return 0;
1116}
1117
1118static void arm_smmu_domain_remove_master(struct arm_smmu_domain *smmu_domain,
a9a1b0b5 1119 struct arm_smmu_master_cfg *cfg)
45ae7cff 1120{
43b412be 1121 int i;
44680eed 1122 struct arm_smmu_device *smmu = smmu_domain->smmu;
43b412be 1123 void __iomem *gr0_base = ARM_SMMU_GR0(smmu);
45ae7cff 1124
8f68f8e2
WD
1125 /* An IOMMU group is torn down by the first device to be removed */
1126 if ((smmu->features & ARM_SMMU_FEAT_STREAM_MATCH) && !cfg->smrs)
1127 return;
45ae7cff
WD
1128
1129 /*
1130 * We *must* clear the S2CR first, because freeing the SMR means
1131 * that it can be re-allocated immediately.
1132 */
43b412be
WD
1133 for (i = 0; i < cfg->num_streamids; ++i) {
1134 u32 idx = cfg->smrs ? cfg->smrs[i].idx : cfg->streamids[i];
1135
1136 writel_relaxed(S2CR_TYPE_BYPASS,
1137 gr0_base + ARM_SMMU_GR0_S2CR(idx));
1138 }
1139
a9a1b0b5 1140 arm_smmu_master_free_smrs(smmu, cfg);
45ae7cff
WD
1141}
1142
1143static int arm_smmu_attach_dev(struct iommu_domain *domain, struct device *dev)
1144{
a18037b2 1145 int ret;
45ae7cff 1146 struct arm_smmu_domain *smmu_domain = domain->priv;
518f7136 1147 struct arm_smmu_device *smmu;
a9a1b0b5 1148 struct arm_smmu_master_cfg *cfg;
45ae7cff 1149
8f68f8e2 1150 smmu = find_smmu_for_device(dev);
44680eed 1151 if (!smmu) {
45ae7cff
WD
1152 dev_err(dev, "cannot attach to SMMU, is it on the same bus?\n");
1153 return -ENXIO;
1154 }
1155
844e35bd
WD
1156 if (dev->archdata.iommu) {
1157 dev_err(dev, "already attached to IOMMU domain\n");
1158 return -EEXIST;
1159 }
1160
518f7136
WD
1161 /* Ensure that the domain is finalised */
1162 ret = arm_smmu_init_domain_context(domain, smmu);
1163 if (IS_ERR_VALUE(ret))
1164 return ret;
1165
45ae7cff 1166 /*
44680eed
WD
1167 * Sanity check the domain. We don't support domains across
1168 * different SMMUs.
45ae7cff 1169 */
518f7136 1170 if (smmu_domain->smmu != smmu) {
45ae7cff
WD
1171 dev_err(dev,
1172 "cannot attach to SMMU %s whilst already attached to domain on SMMU %s\n",
a18037b2
MH
1173 dev_name(smmu_domain->smmu->dev), dev_name(smmu->dev));
1174 return -EINVAL;
45ae7cff 1175 }
45ae7cff
WD
1176
1177 /* Looks ok, so add the device to the domain */
8f68f8e2 1178 cfg = find_smmu_master_cfg(dev);
a9a1b0b5 1179 if (!cfg)
45ae7cff
WD
1180 return -ENODEV;
1181
844e35bd
WD
1182 ret = arm_smmu_domain_add_master(smmu_domain, cfg);
1183 if (!ret)
1184 dev->archdata.iommu = domain;
45ae7cff
WD
1185 return ret;
1186}
1187
1188static void arm_smmu_detach_dev(struct iommu_domain *domain, struct device *dev)
1189{
1190 struct arm_smmu_domain *smmu_domain = domain->priv;
a9a1b0b5 1191 struct arm_smmu_master_cfg *cfg;
45ae7cff 1192
8f68f8e2 1193 cfg = find_smmu_master_cfg(dev);
844e35bd
WD
1194 if (!cfg)
1195 return;
1196
1197 dev->archdata.iommu = NULL;
1198 arm_smmu_domain_remove_master(smmu_domain, cfg);
45ae7cff
WD
1199}
1200
45ae7cff 1201static int arm_smmu_map(struct iommu_domain *domain, unsigned long iova,
b410aed9 1202 phys_addr_t paddr, size_t size, int prot)
45ae7cff 1203{
518f7136
WD
1204 int ret;
1205 unsigned long flags;
45ae7cff 1206 struct arm_smmu_domain *smmu_domain = domain->priv;
518f7136 1207 struct io_pgtable_ops *ops= smmu_domain->pgtbl_ops;
45ae7cff 1208
518f7136 1209 if (!ops)
45ae7cff
WD
1210 return -ENODEV;
1211
518f7136
WD
1212 spin_lock_irqsave(&smmu_domain->pgtbl_lock, flags);
1213 ret = ops->map(ops, iova, paddr, size, prot);
1214 spin_unlock_irqrestore(&smmu_domain->pgtbl_lock, flags);
1215 return ret;
45ae7cff
WD
1216}
1217
1218static size_t arm_smmu_unmap(struct iommu_domain *domain, unsigned long iova,
1219 size_t size)
1220{
518f7136
WD
1221 size_t ret;
1222 unsigned long flags;
45ae7cff 1223 struct arm_smmu_domain *smmu_domain = domain->priv;
518f7136 1224 struct io_pgtable_ops *ops= smmu_domain->pgtbl_ops;
45ae7cff 1225
518f7136
WD
1226 if (!ops)
1227 return 0;
1228
1229 spin_lock_irqsave(&smmu_domain->pgtbl_lock, flags);
1230 ret = ops->unmap(ops, iova, size);
1231 spin_unlock_irqrestore(&smmu_domain->pgtbl_lock, flags);
1232 return ret;
45ae7cff
WD
1233}
1234
859a732e
MH
1235static phys_addr_t arm_smmu_iova_to_phys_hard(struct iommu_domain *domain,
1236 dma_addr_t iova)
1237{
1238 struct arm_smmu_domain *smmu_domain = domain->priv;
1239 struct arm_smmu_device *smmu = smmu_domain->smmu;
1240 struct arm_smmu_cfg *cfg = &smmu_domain->cfg;
1241 struct io_pgtable_ops *ops= smmu_domain->pgtbl_ops;
1242 struct device *dev = smmu->dev;
1243 void __iomem *cb_base;
1244 u32 tmp;
1245 u64 phys;
1246
1247 cb_base = ARM_SMMU_CB_BASE(smmu) + ARM_SMMU_CB(smmu, cfg->cbndx);
1248
1249 if (smmu->version == 1) {
1250 u32 reg = iova & ~0xfff;
1251 writel_relaxed(reg, cb_base + ARM_SMMU_CB_ATS1PR_LO);
1252 } else {
1253 u32 reg = iova & ~0xfff;
1254 writel_relaxed(reg, cb_base + ARM_SMMU_CB_ATS1PR_LO);
a4188bee 1255 reg = ((u64)iova & ~0xfff) >> 32;
859a732e
MH
1256 writel_relaxed(reg, cb_base + ARM_SMMU_CB_ATS1PR_HI);
1257 }
1258
1259 if (readl_poll_timeout_atomic(cb_base + ARM_SMMU_CB_ATSR, tmp,
1260 !(tmp & ATSR_ACTIVE), 5, 50)) {
1261 dev_err(dev,
1262 "iova to phys timed out on 0x%pad. Falling back to software table walk.\n",
1263 &iova);
1264 return ops->iova_to_phys(ops, iova);
1265 }
1266
1267 phys = readl_relaxed(cb_base + ARM_SMMU_CB_PAR_LO);
1268 phys |= ((u64)readl_relaxed(cb_base + ARM_SMMU_CB_PAR_HI)) << 32;
1269
1270 if (phys & CB_PAR_F) {
1271 dev_err(dev, "translation fault!\n");
1272 dev_err(dev, "PAR = 0x%llx\n", phys);
1273 return 0;
1274 }
1275
1276 return (phys & GENMASK_ULL(39, 12)) | (iova & 0xfff);
1277}
1278
45ae7cff 1279static phys_addr_t arm_smmu_iova_to_phys(struct iommu_domain *domain,
859a732e 1280 dma_addr_t iova)
45ae7cff 1281{
518f7136
WD
1282 phys_addr_t ret;
1283 unsigned long flags;
45ae7cff 1284 struct arm_smmu_domain *smmu_domain = domain->priv;
518f7136 1285 struct io_pgtable_ops *ops= smmu_domain->pgtbl_ops;
45ae7cff 1286
518f7136 1287 if (!ops)
a44a9791 1288 return 0;
45ae7cff 1289
518f7136 1290 spin_lock_irqsave(&smmu_domain->pgtbl_lock, flags);
859a732e
MH
1291 if (smmu_domain->smmu->features & ARM_SMMU_FEAT_TRANS_OPS)
1292 ret = arm_smmu_iova_to_phys_hard(domain, iova);
1293 else
1294 ret = ops->iova_to_phys(ops, iova);
518f7136 1295 spin_unlock_irqrestore(&smmu_domain->pgtbl_lock, flags);
859a732e 1296
518f7136 1297 return ret;
45ae7cff
WD
1298}
1299
1fd0c775 1300static bool arm_smmu_capable(enum iommu_cap cap)
45ae7cff 1301{
d0948945
WD
1302 switch (cap) {
1303 case IOMMU_CAP_CACHE_COHERENCY:
1fd0c775
JR
1304 /*
1305 * Return true here as the SMMU can always send out coherent
1306 * requests.
1307 */
1308 return true;
d0948945 1309 case IOMMU_CAP_INTR_REMAP:
1fd0c775 1310 return true; /* MSIs are just memory writes */
0029a8dd
AM
1311 case IOMMU_CAP_NOEXEC:
1312 return true;
d0948945 1313 default:
1fd0c775 1314 return false;
d0948945 1315 }
45ae7cff 1316}
45ae7cff 1317
a9a1b0b5
WD
1318static int __arm_smmu_get_pci_sid(struct pci_dev *pdev, u16 alias, void *data)
1319{
1320 *((u16 *)data) = alias;
1321 return 0; /* Continue walking */
45ae7cff
WD
1322}
1323
8f68f8e2
WD
1324static void __arm_smmu_release_pci_iommudata(void *data)
1325{
1326 kfree(data);
1327}
1328
45ae7cff
WD
1329static int arm_smmu_add_device(struct device *dev)
1330{
a9a1b0b5 1331 struct arm_smmu_device *smmu;
8f68f8e2 1332 struct arm_smmu_master_cfg *cfg;
5fc63a7c 1333 struct iommu_group *group;
8f68f8e2 1334 void (*releasefn)(void *) = NULL;
5fc63a7c
AM
1335 int ret;
1336
44680eed 1337 smmu = find_smmu_for_device(dev);
a9a1b0b5 1338 if (!smmu)
45ae7cff
WD
1339 return -ENODEV;
1340
5fc63a7c
AM
1341 group = iommu_group_alloc();
1342 if (IS_ERR(group)) {
1343 dev_err(dev, "Failed to allocate IOMMU group\n");
1344 return PTR_ERR(group);
1345 }
1346
a9a1b0b5 1347 if (dev_is_pci(dev)) {
a9a1b0b5
WD
1348 struct pci_dev *pdev = to_pci_dev(dev);
1349
1350 cfg = kzalloc(sizeof(*cfg), GFP_KERNEL);
1351 if (!cfg) {
1352 ret = -ENOMEM;
1353 goto out_put_group;
1354 }
1355
1356 cfg->num_streamids = 1;
1357 /*
1358 * Assume Stream ID == Requester ID for now.
1359 * We need a way to describe the ID mappings in FDT.
1360 */
1361 pci_for_each_dma_alias(pdev, __arm_smmu_get_pci_sid,
1362 &cfg->streamids[0]);
8f68f8e2 1363 releasefn = __arm_smmu_release_pci_iommudata;
a9a1b0b5 1364 } else {
8f68f8e2
WD
1365 struct arm_smmu_master *master;
1366
1367 master = find_smmu_master(smmu, dev->of_node);
1368 if (!master) {
1369 ret = -ENODEV;
1370 goto out_put_group;
1371 }
1372
1373 cfg = &master->cfg;
a9a1b0b5
WD
1374 }
1375
8f68f8e2 1376 iommu_group_set_iommudata(group, cfg, releasefn);
5fc63a7c 1377 ret = iommu_group_add_device(group, dev);
5fc63a7c 1378
a9a1b0b5
WD
1379out_put_group:
1380 iommu_group_put(group);
5fc63a7c 1381 return ret;
45ae7cff
WD
1382}
1383
1384static void arm_smmu_remove_device(struct device *dev)
1385{
5fc63a7c 1386 iommu_group_remove_device(dev);
45ae7cff
WD
1387}
1388
c752ce45
WD
1389static int arm_smmu_domain_get_attr(struct iommu_domain *domain,
1390 enum iommu_attr attr, void *data)
1391{
1392 struct arm_smmu_domain *smmu_domain = domain->priv;
1393
1394 switch (attr) {
1395 case DOMAIN_ATTR_NESTING:
1396 *(int *)data = (smmu_domain->stage == ARM_SMMU_DOMAIN_NESTED);
1397 return 0;
1398 default:
1399 return -ENODEV;
1400 }
1401}
1402
1403static int arm_smmu_domain_set_attr(struct iommu_domain *domain,
1404 enum iommu_attr attr, void *data)
1405{
518f7136 1406 int ret = 0;
c752ce45
WD
1407 struct arm_smmu_domain *smmu_domain = domain->priv;
1408
518f7136
WD
1409 mutex_lock(&smmu_domain->init_mutex);
1410
c752ce45
WD
1411 switch (attr) {
1412 case DOMAIN_ATTR_NESTING:
518f7136
WD
1413 if (smmu_domain->smmu) {
1414 ret = -EPERM;
1415 goto out_unlock;
1416 }
1417
c752ce45
WD
1418 if (*(int *)data)
1419 smmu_domain->stage = ARM_SMMU_DOMAIN_NESTED;
1420 else
1421 smmu_domain->stage = ARM_SMMU_DOMAIN_S1;
1422
518f7136 1423 break;
c752ce45 1424 default:
518f7136 1425 ret = -ENODEV;
c752ce45 1426 }
518f7136
WD
1427
1428out_unlock:
1429 mutex_unlock(&smmu_domain->init_mutex);
1430 return ret;
c752ce45
WD
1431}
1432
518f7136 1433static struct iommu_ops arm_smmu_ops = {
c752ce45
WD
1434 .capable = arm_smmu_capable,
1435 .domain_init = arm_smmu_domain_init,
1436 .domain_destroy = arm_smmu_domain_destroy,
1437 .attach_dev = arm_smmu_attach_dev,
1438 .detach_dev = arm_smmu_detach_dev,
1439 .map = arm_smmu_map,
1440 .unmap = arm_smmu_unmap,
76771c93 1441 .map_sg = default_iommu_map_sg,
c752ce45
WD
1442 .iova_to_phys = arm_smmu_iova_to_phys,
1443 .add_device = arm_smmu_add_device,
1444 .remove_device = arm_smmu_remove_device,
1445 .domain_get_attr = arm_smmu_domain_get_attr,
1446 .domain_set_attr = arm_smmu_domain_set_attr,
518f7136 1447 .pgsize_bitmap = -1UL, /* Restricted during device attach */
45ae7cff
WD
1448};
1449
1450static void arm_smmu_device_reset(struct arm_smmu_device *smmu)
1451{
1452 void __iomem *gr0_base = ARM_SMMU_GR0(smmu);
659db6f6 1453 void __iomem *cb_base;
45ae7cff 1454 int i = 0;
659db6f6
AH
1455 u32 reg;
1456
3a5df8ff
AH
1457 /* clear global FSR */
1458 reg = readl_relaxed(ARM_SMMU_GR0_NS(smmu) + ARM_SMMU_GR0_sGFSR);
1459 writel(reg, ARM_SMMU_GR0_NS(smmu) + ARM_SMMU_GR0_sGFSR);
45ae7cff
WD
1460
1461 /* Mark all SMRn as invalid and all S2CRn as bypass */
1462 for (i = 0; i < smmu->num_mapping_groups; ++i) {
3c8766d0 1463 writel_relaxed(0, gr0_base + ARM_SMMU_GR0_SMR(i));
2907320d
MH
1464 writel_relaxed(S2CR_TYPE_BYPASS,
1465 gr0_base + ARM_SMMU_GR0_S2CR(i));
45ae7cff
WD
1466 }
1467
659db6f6
AH
1468 /* Make sure all context banks are disabled and clear CB_FSR */
1469 for (i = 0; i < smmu->num_context_banks; ++i) {
1470 cb_base = ARM_SMMU_CB_BASE(smmu) + ARM_SMMU_CB(smmu, i);
1471 writel_relaxed(0, cb_base + ARM_SMMU_CB_SCTLR);
1472 writel_relaxed(FSR_FAULT, cb_base + ARM_SMMU_CB_FSR);
1473 }
1463fe44 1474
45ae7cff 1475 /* Invalidate the TLB, just in case */
45ae7cff
WD
1476 writel_relaxed(0, gr0_base + ARM_SMMU_GR0_TLBIALLH);
1477 writel_relaxed(0, gr0_base + ARM_SMMU_GR0_TLBIALLNSNH);
1478
3a5df8ff 1479 reg = readl_relaxed(ARM_SMMU_GR0_NS(smmu) + ARM_SMMU_GR0_sCR0);
659db6f6 1480
45ae7cff 1481 /* Enable fault reporting */
659db6f6 1482 reg |= (sCR0_GFRE | sCR0_GFIE | sCR0_GCFGFRE | sCR0_GCFGFIE);
45ae7cff
WD
1483
1484 /* Disable TLB broadcasting. */
659db6f6 1485 reg |= (sCR0_VMIDPNE | sCR0_PTM);
45ae7cff
WD
1486
1487 /* Enable client access, but bypass when no mapping is found */
659db6f6 1488 reg &= ~(sCR0_CLIENTPD | sCR0_USFCFG);
45ae7cff
WD
1489
1490 /* Disable forced broadcasting */
659db6f6 1491 reg &= ~sCR0_FB;
45ae7cff
WD
1492
1493 /* Don't upgrade barriers */
659db6f6 1494 reg &= ~(sCR0_BSU_MASK << sCR0_BSU_SHIFT);
45ae7cff
WD
1495
1496 /* Push the button */
518f7136 1497 __arm_smmu_tlb_sync(smmu);
3a5df8ff 1498 writel(reg, ARM_SMMU_GR0_NS(smmu) + ARM_SMMU_GR0_sCR0);
45ae7cff
WD
1499}
1500
1501static int arm_smmu_id_size_to_bits(int size)
1502{
1503 switch (size) {
1504 case 0:
1505 return 32;
1506 case 1:
1507 return 36;
1508 case 2:
1509 return 40;
1510 case 3:
1511 return 42;
1512 case 4:
1513 return 44;
1514 case 5:
1515 default:
1516 return 48;
1517 }
1518}
1519
1520static int arm_smmu_device_cfg_probe(struct arm_smmu_device *smmu)
1521{
1522 unsigned long size;
1523 void __iomem *gr0_base = ARM_SMMU_GR0(smmu);
1524 u32 id;
1525
1526 dev_notice(smmu->dev, "probing hardware configuration...\n");
45ae7cff
WD
1527 dev_notice(smmu->dev, "SMMUv%d with:\n", smmu->version);
1528
1529 /* ID0 */
1530 id = readl_relaxed(gr0_base + ARM_SMMU_GR0_ID0);
4cf740b0
WD
1531
1532 /* Restrict available stages based on module parameter */
1533 if (force_stage == 1)
1534 id &= ~(ID0_S2TS | ID0_NTS);
1535 else if (force_stage == 2)
1536 id &= ~(ID0_S1TS | ID0_NTS);
1537
45ae7cff
WD
1538 if (id & ID0_S1TS) {
1539 smmu->features |= ARM_SMMU_FEAT_TRANS_S1;
1540 dev_notice(smmu->dev, "\tstage 1 translation\n");
1541 }
1542
1543 if (id & ID0_S2TS) {
1544 smmu->features |= ARM_SMMU_FEAT_TRANS_S2;
1545 dev_notice(smmu->dev, "\tstage 2 translation\n");
1546 }
1547
1548 if (id & ID0_NTS) {
1549 smmu->features |= ARM_SMMU_FEAT_TRANS_NESTED;
1550 dev_notice(smmu->dev, "\tnested translation\n");
1551 }
1552
1553 if (!(smmu->features &
4cf740b0 1554 (ARM_SMMU_FEAT_TRANS_S1 | ARM_SMMU_FEAT_TRANS_S2))) {
45ae7cff
WD
1555 dev_err(smmu->dev, "\tno translation support!\n");
1556 return -ENODEV;
1557 }
1558
859a732e
MH
1559 if (smmu->version == 1 || (!(id & ID0_ATOSNS) && (id & ID0_S1TS))) {
1560 smmu->features |= ARM_SMMU_FEAT_TRANS_OPS;
1561 dev_notice(smmu->dev, "\taddress translation ops\n");
1562 }
1563
45ae7cff
WD
1564 if (id & ID0_CTTW) {
1565 smmu->features |= ARM_SMMU_FEAT_COHERENT_WALK;
1566 dev_notice(smmu->dev, "\tcoherent table walk\n");
1567 }
1568
1569 if (id & ID0_SMS) {
1570 u32 smr, sid, mask;
1571
1572 smmu->features |= ARM_SMMU_FEAT_STREAM_MATCH;
1573 smmu->num_mapping_groups = (id >> ID0_NUMSMRG_SHIFT) &
1574 ID0_NUMSMRG_MASK;
1575 if (smmu->num_mapping_groups == 0) {
1576 dev_err(smmu->dev,
1577 "stream-matching supported, but no SMRs present!\n");
1578 return -ENODEV;
1579 }
1580
1581 smr = SMR_MASK_MASK << SMR_MASK_SHIFT;
1582 smr |= (SMR_ID_MASK << SMR_ID_SHIFT);
1583 writel_relaxed(smr, gr0_base + ARM_SMMU_GR0_SMR(0));
1584 smr = readl_relaxed(gr0_base + ARM_SMMU_GR0_SMR(0));
1585
1586 mask = (smr >> SMR_MASK_SHIFT) & SMR_MASK_MASK;
1587 sid = (smr >> SMR_ID_SHIFT) & SMR_ID_MASK;
1588 if ((mask & sid) != sid) {
1589 dev_err(smmu->dev,
1590 "SMR mask bits (0x%x) insufficient for ID field (0x%x)\n",
1591 mask, sid);
1592 return -ENODEV;
1593 }
1594
1595 dev_notice(smmu->dev,
1596 "\tstream matching with %u register groups, mask 0x%x",
1597 smmu->num_mapping_groups, mask);
3c8766d0
OH
1598 } else {
1599 smmu->num_mapping_groups = (id >> ID0_NUMSIDB_SHIFT) &
1600 ID0_NUMSIDB_MASK;
45ae7cff
WD
1601 }
1602
1603 /* ID1 */
1604 id = readl_relaxed(gr0_base + ARM_SMMU_GR0_ID1);
c757e852 1605 smmu->pgshift = (id & ID1_PAGESIZE) ? 16 : 12;
45ae7cff 1606
c55af7f7 1607 /* Check for size mismatch of SMMU address space from mapped region */
518f7136 1608 size = 1 << (((id >> ID1_NUMPAGENDXB_SHIFT) & ID1_NUMPAGENDXB_MASK) + 1);
c757e852 1609 size *= 2 << smmu->pgshift;
c55af7f7 1610 if (smmu->size != size)
2907320d
MH
1611 dev_warn(smmu->dev,
1612 "SMMU address space size (0x%lx) differs from mapped region size (0x%lx)!\n",
1613 size, smmu->size);
45ae7cff 1614
518f7136 1615 smmu->num_s2_context_banks = (id >> ID1_NUMS2CB_SHIFT) & ID1_NUMS2CB_MASK;
45ae7cff
WD
1616 smmu->num_context_banks = (id >> ID1_NUMCB_SHIFT) & ID1_NUMCB_MASK;
1617 if (smmu->num_s2_context_banks > smmu->num_context_banks) {
1618 dev_err(smmu->dev, "impossible number of S2 context banks!\n");
1619 return -ENODEV;
1620 }
1621 dev_notice(smmu->dev, "\t%u context banks (%u stage-2 only)\n",
1622 smmu->num_context_banks, smmu->num_s2_context_banks);
1623
1624 /* ID2 */
1625 id = readl_relaxed(gr0_base + ARM_SMMU_GR0_ID2);
1626 size = arm_smmu_id_size_to_bits((id >> ID2_IAS_SHIFT) & ID2_IAS_MASK);
518f7136 1627 smmu->ipa_size = size;
45ae7cff 1628
518f7136 1629 /* The output mask is also applied for bypass */
45ae7cff 1630 size = arm_smmu_id_size_to_bits((id >> ID2_OAS_SHIFT) & ID2_OAS_MASK);
518f7136 1631 smmu->pa_size = size;
45ae7cff 1632
09360403 1633 if (smmu->version == ARM_SMMU_V1) {
518f7136
WD
1634 smmu->va_size = smmu->ipa_size;
1635 size = SZ_4K | SZ_2M | SZ_1G;
45ae7cff 1636 } else {
45ae7cff 1637 size = (id >> ID2_UBS_SHIFT) & ID2_UBS_MASK;
518f7136
WD
1638 smmu->va_size = arm_smmu_id_size_to_bits(size);
1639#ifndef CONFIG_64BIT
1640 smmu->va_size = min(32UL, smmu->va_size);
45ae7cff 1641#endif
518f7136
WD
1642 size = 0;
1643 if (id & ID2_PTFS_4K)
1644 size |= SZ_4K | SZ_2M | SZ_1G;
1645 if (id & ID2_PTFS_16K)
1646 size |= SZ_16K | SZ_32M;
1647 if (id & ID2_PTFS_64K)
1648 size |= SZ_64K | SZ_512M;
45ae7cff
WD
1649 }
1650
518f7136
WD
1651 arm_smmu_ops.pgsize_bitmap &= size;
1652 dev_notice(smmu->dev, "\tSupported page sizes: 0x%08lx\n", size);
1653
28d6007b
WD
1654 if (smmu->features & ARM_SMMU_FEAT_TRANS_S1)
1655 dev_notice(smmu->dev, "\tStage-1: %lu-bit VA -> %lu-bit IPA\n",
518f7136 1656 smmu->va_size, smmu->ipa_size);
28d6007b
WD
1657
1658 if (smmu->features & ARM_SMMU_FEAT_TRANS_S2)
1659 dev_notice(smmu->dev, "\tStage-2: %lu-bit IPA -> %lu-bit PA\n",
518f7136 1660 smmu->ipa_size, smmu->pa_size);
28d6007b 1661
45ae7cff
WD
1662 return 0;
1663}
1664
09b5269a 1665static const struct of_device_id arm_smmu_of_match[] = {
09360403
RM
1666 { .compatible = "arm,smmu-v1", .data = (void *)ARM_SMMU_V1 },
1667 { .compatible = "arm,smmu-v2", .data = (void *)ARM_SMMU_V2 },
1668 { .compatible = "arm,mmu-400", .data = (void *)ARM_SMMU_V1 },
d3aba046 1669 { .compatible = "arm,mmu-401", .data = (void *)ARM_SMMU_V1 },
09360403
RM
1670 { .compatible = "arm,mmu-500", .data = (void *)ARM_SMMU_V2 },
1671 { },
1672};
1673MODULE_DEVICE_TABLE(of, arm_smmu_of_match);
1674
45ae7cff
WD
1675static int arm_smmu_device_dt_probe(struct platform_device *pdev)
1676{
09360403 1677 const struct of_device_id *of_id;
45ae7cff
WD
1678 struct resource *res;
1679 struct arm_smmu_device *smmu;
45ae7cff
WD
1680 struct device *dev = &pdev->dev;
1681 struct rb_node *node;
1682 struct of_phandle_args masterspec;
1683 int num_irqs, i, err;
1684
1685 smmu = devm_kzalloc(dev, sizeof(*smmu), GFP_KERNEL);
1686 if (!smmu) {
1687 dev_err(dev, "failed to allocate arm_smmu_device\n");
1688 return -ENOMEM;
1689 }
1690 smmu->dev = dev;
1691
09360403
RM
1692 of_id = of_match_node(arm_smmu_of_match, dev->of_node);
1693 smmu->version = (enum arm_smmu_arch_version)of_id->data;
1694
45ae7cff 1695 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
8a7f4312
JL
1696 smmu->base = devm_ioremap_resource(dev, res);
1697 if (IS_ERR(smmu->base))
1698 return PTR_ERR(smmu->base);
45ae7cff 1699 smmu->size = resource_size(res);
45ae7cff
WD
1700
1701 if (of_property_read_u32(dev->of_node, "#global-interrupts",
1702 &smmu->num_global_irqs)) {
1703 dev_err(dev, "missing #global-interrupts property\n");
1704 return -ENODEV;
1705 }
1706
1707 num_irqs = 0;
1708 while ((res = platform_get_resource(pdev, IORESOURCE_IRQ, num_irqs))) {
1709 num_irqs++;
1710 if (num_irqs > smmu->num_global_irqs)
1711 smmu->num_context_irqs++;
1712 }
1713
44a08de2
AH
1714 if (!smmu->num_context_irqs) {
1715 dev_err(dev, "found %d interrupts but expected at least %d\n",
1716 num_irqs, smmu->num_global_irqs + 1);
1717 return -ENODEV;
45ae7cff 1718 }
45ae7cff
WD
1719
1720 smmu->irqs = devm_kzalloc(dev, sizeof(*smmu->irqs) * num_irqs,
1721 GFP_KERNEL);
1722 if (!smmu->irqs) {
1723 dev_err(dev, "failed to allocate %d irqs\n", num_irqs);
1724 return -ENOMEM;
1725 }
1726
1727 for (i = 0; i < num_irqs; ++i) {
1728 int irq = platform_get_irq(pdev, i);
2907320d 1729
45ae7cff
WD
1730 if (irq < 0) {
1731 dev_err(dev, "failed to get irq index %d\n", i);
1732 return -ENODEV;
1733 }
1734 smmu->irqs[i] = irq;
1735 }
1736
3c8766d0
OH
1737 err = arm_smmu_device_cfg_probe(smmu);
1738 if (err)
1739 return err;
1740
45ae7cff
WD
1741 i = 0;
1742 smmu->masters = RB_ROOT;
1743 while (!of_parse_phandle_with_args(dev->of_node, "mmu-masters",
1744 "#stream-id-cells", i,
1745 &masterspec)) {
1746 err = register_smmu_master(smmu, dev, &masterspec);
1747 if (err) {
1748 dev_err(dev, "failed to add master %s\n",
1749 masterspec.np->name);
1750 goto out_put_masters;
1751 }
1752
1753 i++;
1754 }
1755 dev_notice(dev, "registered %d master devices\n", i);
1756
3a5df8ff
AH
1757 parse_driver_options(smmu);
1758
09360403 1759 if (smmu->version > ARM_SMMU_V1 &&
45ae7cff
WD
1760 smmu->num_context_banks != smmu->num_context_irqs) {
1761 dev_err(dev,
1762 "found only %d context interrupt(s) but %d required\n",
1763 smmu->num_context_irqs, smmu->num_context_banks);
89a23cde 1764 err = -ENODEV;
44680eed 1765 goto out_put_masters;
45ae7cff
WD
1766 }
1767
45ae7cff
WD
1768 for (i = 0; i < smmu->num_global_irqs; ++i) {
1769 err = request_irq(smmu->irqs[i],
1770 arm_smmu_global_fault,
1771 IRQF_SHARED,
1772 "arm-smmu global fault",
1773 smmu);
1774 if (err) {
1775 dev_err(dev, "failed to request global IRQ %d (%u)\n",
1776 i, smmu->irqs[i]);
1777 goto out_free_irqs;
1778 }
1779 }
1780
1781 INIT_LIST_HEAD(&smmu->list);
1782 spin_lock(&arm_smmu_devices_lock);
1783 list_add(&smmu->list, &arm_smmu_devices);
1784 spin_unlock(&arm_smmu_devices_lock);
fd90cecb
WD
1785
1786 arm_smmu_device_reset(smmu);
45ae7cff
WD
1787 return 0;
1788
1789out_free_irqs:
1790 while (i--)
1791 free_irq(smmu->irqs[i], smmu);
1792
45ae7cff
WD
1793out_put_masters:
1794 for (node = rb_first(&smmu->masters); node; node = rb_next(node)) {
2907320d
MH
1795 struct arm_smmu_master *master
1796 = container_of(node, struct arm_smmu_master, node);
45ae7cff
WD
1797 of_node_put(master->of_node);
1798 }
1799
1800 return err;
1801}
1802
1803static int arm_smmu_device_remove(struct platform_device *pdev)
1804{
1805 int i;
1806 struct device *dev = &pdev->dev;
1807 struct arm_smmu_device *curr, *smmu = NULL;
1808 struct rb_node *node;
1809
1810 spin_lock(&arm_smmu_devices_lock);
1811 list_for_each_entry(curr, &arm_smmu_devices, list) {
1812 if (curr->dev == dev) {
1813 smmu = curr;
1814 list_del(&smmu->list);
1815 break;
1816 }
1817 }
1818 spin_unlock(&arm_smmu_devices_lock);
1819
1820 if (!smmu)
1821 return -ENODEV;
1822
45ae7cff 1823 for (node = rb_first(&smmu->masters); node; node = rb_next(node)) {
2907320d
MH
1824 struct arm_smmu_master *master
1825 = container_of(node, struct arm_smmu_master, node);
45ae7cff
WD
1826 of_node_put(master->of_node);
1827 }
1828
ecfadb6e 1829 if (!bitmap_empty(smmu->context_map, ARM_SMMU_MAX_CBS))
45ae7cff
WD
1830 dev_err(dev, "removing device with active domains!\n");
1831
1832 for (i = 0; i < smmu->num_global_irqs; ++i)
1833 free_irq(smmu->irqs[i], smmu);
1834
1835 /* Turn the thing off */
2907320d 1836 writel(sCR0_CLIENTPD, ARM_SMMU_GR0_NS(smmu) + ARM_SMMU_GR0_sCR0);
45ae7cff
WD
1837 return 0;
1838}
1839
45ae7cff
WD
1840static struct platform_driver arm_smmu_driver = {
1841 .driver = {
45ae7cff
WD
1842 .name = "arm-smmu",
1843 .of_match_table = of_match_ptr(arm_smmu_of_match),
1844 },
1845 .probe = arm_smmu_device_dt_probe,
1846 .remove = arm_smmu_device_remove,
1847};
1848
1849static int __init arm_smmu_init(void)
1850{
0e7d37ad 1851 struct device_node *np;
45ae7cff
WD
1852 int ret;
1853
0e7d37ad
TR
1854 /*
1855 * Play nice with systems that don't have an ARM SMMU by checking that
1856 * an ARM SMMU exists in the system before proceeding with the driver
1857 * and IOMMU bus operation registration.
1858 */
1859 np = of_find_matching_node(NULL, arm_smmu_of_match);
1860 if (!np)
1861 return 0;
1862
1863 of_node_put(np);
1864
45ae7cff
WD
1865 ret = platform_driver_register(&arm_smmu_driver);
1866 if (ret)
1867 return ret;
1868
1869 /* Oh, for a proper bus abstraction */
6614ee77 1870 if (!iommu_present(&platform_bus_type))
45ae7cff
WD
1871 bus_set_iommu(&platform_bus_type, &arm_smmu_ops);
1872
d123cf82 1873#ifdef CONFIG_ARM_AMBA
6614ee77 1874 if (!iommu_present(&amba_bustype))
45ae7cff 1875 bus_set_iommu(&amba_bustype, &arm_smmu_ops);
d123cf82 1876#endif
45ae7cff 1877
a9a1b0b5
WD
1878#ifdef CONFIG_PCI
1879 if (!iommu_present(&pci_bus_type))
1880 bus_set_iommu(&pci_bus_type, &arm_smmu_ops);
1881#endif
1882
45ae7cff
WD
1883 return 0;
1884}
1885
1886static void __exit arm_smmu_exit(void)
1887{
1888 return platform_driver_unregister(&arm_smmu_driver);
1889}
1890
b1950b27 1891subsys_initcall(arm_smmu_init);
45ae7cff
WD
1892module_exit(arm_smmu_exit);
1893
1894MODULE_DESCRIPTION("IOMMU API for ARM architected SMMU implementations");
1895MODULE_AUTHOR("Will Deacon <will.deacon@arm.com>");
1896MODULE_LICENSE("GPL v2");