blob: 1f10ac0d413583a38745ed0a95da0ecb5bab91d6 [file] [log] [blame]
Will Deacon45ae7cf2013-06-24 18:31:25 +01001/*
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.
Will Deacon06f983d2013-11-05 15:55:04 +000027 * - Up to 42-bit addressing (dependent on VA_BITS)
Will Deacon45ae7cf2013-06-24 18:31:25 +010028 * - 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>
Will Deacona9a1b0b2014-05-01 18:05:08 +010042#include <linux/pci.h>
Will Deacon45ae7cf2013-06-24 18:31:25 +010043#include <linux/platform_device.h>
44#include <linux/slab.h>
45#include <linux/spinlock.h>
46
47#include <linux/amba/bus.h>
48
49#include <asm/pgalloc.h>
50
51/* Maximum number of stream IDs assigned to a single device */
Andreas Herrmann636e97b2014-01-30 18:18:08 +000052#define MAX_MASTER_STREAMIDS MAX_PHANDLE_ARGS
Will Deacon45ae7cf2013-06-24 18:31:25 +010053
54/* Maximum number of context banks per SMMU */
55#define ARM_SMMU_MAX_CBS 128
56
57/* Maximum number of mapping groups per SMMU */
58#define ARM_SMMU_MAX_SMRS 128
59
Will Deacon45ae7cf2013-06-24 18:31:25 +010060/* SMMU global address space */
61#define ARM_SMMU_GR0(smmu) ((smmu)->base)
62#define ARM_SMMU_GR1(smmu) ((smmu)->base + (smmu)->pagesize)
63
Andreas Herrmann3a5df8f2014-01-30 18:18:04 +000064/*
65 * SMMU global address space with conditional offset to access secure
66 * aliases of non-secure registers (e.g. nsCR0: 0x400, nsGFSR: 0x448,
67 * nsGFSYNR0: 0x450)
68 */
69#define ARM_SMMU_GR0_NS(smmu) \
70 ((smmu)->base + \
71 ((smmu->options & ARM_SMMU_OPT_SECURE_CFG_ACCESS) \
72 ? 0x400 : 0))
73
Will Deacon45ae7cf2013-06-24 18:31:25 +010074/* Page table bits */
Will Deaconcf2d45b2013-11-05 16:32:00 +000075#define ARM_SMMU_PTE_XN (((pteval_t)3) << 53)
Will Deacon45ae7cf2013-06-24 18:31:25 +010076#define ARM_SMMU_PTE_CONT (((pteval_t)1) << 52)
77#define ARM_SMMU_PTE_AF (((pteval_t)1) << 10)
78#define ARM_SMMU_PTE_SH_NS (((pteval_t)0) << 8)
79#define ARM_SMMU_PTE_SH_OS (((pteval_t)2) << 8)
80#define ARM_SMMU_PTE_SH_IS (((pteval_t)3) << 8)
Will Deaconcf2d45b2013-11-05 16:32:00 +000081#define ARM_SMMU_PTE_PAGE (((pteval_t)3) << 0)
Will Deacon45ae7cf2013-06-24 18:31:25 +010082
83#if PAGE_SIZE == SZ_4K
84#define ARM_SMMU_PTE_CONT_ENTRIES 16
85#elif PAGE_SIZE == SZ_64K
86#define ARM_SMMU_PTE_CONT_ENTRIES 32
87#else
88#define ARM_SMMU_PTE_CONT_ENTRIES 1
89#endif
90
91#define ARM_SMMU_PTE_CONT_SIZE (PAGE_SIZE * ARM_SMMU_PTE_CONT_ENTRIES)
92#define ARM_SMMU_PTE_CONT_MASK (~(ARM_SMMU_PTE_CONT_SIZE - 1))
Will Deacon45ae7cf2013-06-24 18:31:25 +010093
94/* Stage-1 PTE */
95#define ARM_SMMU_PTE_AP_UNPRIV (((pteval_t)1) << 6)
96#define ARM_SMMU_PTE_AP_RDONLY (((pteval_t)2) << 6)
97#define ARM_SMMU_PTE_ATTRINDX_SHIFT 2
Will Deacon1463fe42013-07-31 19:21:27 +010098#define ARM_SMMU_PTE_nG (((pteval_t)1) << 11)
Will Deacon45ae7cf2013-06-24 18:31:25 +010099
100/* Stage-2 PTE */
101#define ARM_SMMU_PTE_HAP_FAULT (((pteval_t)0) << 6)
102#define ARM_SMMU_PTE_HAP_READ (((pteval_t)1) << 6)
103#define ARM_SMMU_PTE_HAP_WRITE (((pteval_t)2) << 6)
104#define ARM_SMMU_PTE_MEMATTR_OIWB (((pteval_t)0xf) << 2)
105#define ARM_SMMU_PTE_MEMATTR_NC (((pteval_t)0x5) << 2)
106#define ARM_SMMU_PTE_MEMATTR_DEV (((pteval_t)0x1) << 2)
107
108/* Configuration registers */
109#define ARM_SMMU_GR0_sCR0 0x0
110#define sCR0_CLIENTPD (1 << 0)
111#define sCR0_GFRE (1 << 1)
112#define sCR0_GFIE (1 << 2)
113#define sCR0_GCFGFRE (1 << 4)
114#define sCR0_GCFGFIE (1 << 5)
115#define sCR0_USFCFG (1 << 10)
116#define sCR0_VMIDPNE (1 << 11)
117#define sCR0_PTM (1 << 12)
118#define sCR0_FB (1 << 13)
119#define sCR0_BSU_SHIFT 14
120#define sCR0_BSU_MASK 0x3
121
122/* Identification registers */
123#define ARM_SMMU_GR0_ID0 0x20
124#define ARM_SMMU_GR0_ID1 0x24
125#define ARM_SMMU_GR0_ID2 0x28
126#define ARM_SMMU_GR0_ID3 0x2c
127#define ARM_SMMU_GR0_ID4 0x30
128#define ARM_SMMU_GR0_ID5 0x34
129#define ARM_SMMU_GR0_ID6 0x38
130#define ARM_SMMU_GR0_ID7 0x3c
131#define ARM_SMMU_GR0_sGFSR 0x48
132#define ARM_SMMU_GR0_sGFSYNR0 0x50
133#define ARM_SMMU_GR0_sGFSYNR1 0x54
134#define ARM_SMMU_GR0_sGFSYNR2 0x58
135#define ARM_SMMU_GR0_PIDR0 0xfe0
136#define ARM_SMMU_GR0_PIDR1 0xfe4
137#define ARM_SMMU_GR0_PIDR2 0xfe8
138
139#define ID0_S1TS (1 << 30)
140#define ID0_S2TS (1 << 29)
141#define ID0_NTS (1 << 28)
142#define ID0_SMS (1 << 27)
143#define ID0_PTFS_SHIFT 24
144#define ID0_PTFS_MASK 0x2
145#define ID0_PTFS_V8_ONLY 0x2
146#define ID0_CTTW (1 << 14)
147#define ID0_NUMIRPT_SHIFT 16
148#define ID0_NUMIRPT_MASK 0xff
149#define ID0_NUMSMRG_SHIFT 0
150#define ID0_NUMSMRG_MASK 0xff
151
152#define ID1_PAGESIZE (1 << 31)
153#define ID1_NUMPAGENDXB_SHIFT 28
154#define ID1_NUMPAGENDXB_MASK 7
155#define ID1_NUMS2CB_SHIFT 16
156#define ID1_NUMS2CB_MASK 0xff
157#define ID1_NUMCB_SHIFT 0
158#define ID1_NUMCB_MASK 0xff
159
160#define ID2_OAS_SHIFT 4
161#define ID2_OAS_MASK 0xf
162#define ID2_IAS_SHIFT 0
163#define ID2_IAS_MASK 0xf
164#define ID2_UBS_SHIFT 8
165#define ID2_UBS_MASK 0xf
166#define ID2_PTFS_4K (1 << 12)
167#define ID2_PTFS_16K (1 << 13)
168#define ID2_PTFS_64K (1 << 14)
169
170#define PIDR2_ARCH_SHIFT 4
171#define PIDR2_ARCH_MASK 0xf
172
173/* Global TLB invalidation */
174#define ARM_SMMU_GR0_STLBIALL 0x60
175#define ARM_SMMU_GR0_TLBIVMID 0x64
176#define ARM_SMMU_GR0_TLBIALLNSNH 0x68
177#define ARM_SMMU_GR0_TLBIALLH 0x6c
178#define ARM_SMMU_GR0_sTLBGSYNC 0x70
179#define ARM_SMMU_GR0_sTLBGSTATUS 0x74
180#define sTLBGSTATUS_GSACTIVE (1 << 0)
181#define TLB_LOOP_TIMEOUT 1000000 /* 1s! */
182
183/* Stream mapping registers */
184#define ARM_SMMU_GR0_SMR(n) (0x800 + ((n) << 2))
185#define SMR_VALID (1 << 31)
186#define SMR_MASK_SHIFT 16
187#define SMR_MASK_MASK 0x7fff
188#define SMR_ID_SHIFT 0
189#define SMR_ID_MASK 0x7fff
190
191#define ARM_SMMU_GR0_S2CR(n) (0xc00 + ((n) << 2))
192#define S2CR_CBNDX_SHIFT 0
193#define S2CR_CBNDX_MASK 0xff
194#define S2CR_TYPE_SHIFT 16
195#define S2CR_TYPE_MASK 0x3
196#define S2CR_TYPE_TRANS (0 << S2CR_TYPE_SHIFT)
197#define S2CR_TYPE_BYPASS (1 << S2CR_TYPE_SHIFT)
198#define S2CR_TYPE_FAULT (2 << S2CR_TYPE_SHIFT)
199
200/* Context bank attribute registers */
201#define ARM_SMMU_GR1_CBAR(n) (0x0 + ((n) << 2))
202#define CBAR_VMID_SHIFT 0
203#define CBAR_VMID_MASK 0xff
Will Deacon57ca90f2014-02-06 14:59:05 +0000204#define CBAR_S1_BPSHCFG_SHIFT 8
205#define CBAR_S1_BPSHCFG_MASK 3
206#define CBAR_S1_BPSHCFG_NSH 3
Will Deacon45ae7cf2013-06-24 18:31:25 +0100207#define CBAR_S1_MEMATTR_SHIFT 12
208#define CBAR_S1_MEMATTR_MASK 0xf
209#define CBAR_S1_MEMATTR_WB 0xf
210#define CBAR_TYPE_SHIFT 16
211#define CBAR_TYPE_MASK 0x3
212#define CBAR_TYPE_S2_TRANS (0 << CBAR_TYPE_SHIFT)
213#define CBAR_TYPE_S1_TRANS_S2_BYPASS (1 << CBAR_TYPE_SHIFT)
214#define CBAR_TYPE_S1_TRANS_S2_FAULT (2 << CBAR_TYPE_SHIFT)
215#define CBAR_TYPE_S1_TRANS_S2_TRANS (3 << CBAR_TYPE_SHIFT)
216#define CBAR_IRPTNDX_SHIFT 24
217#define CBAR_IRPTNDX_MASK 0xff
218
219#define ARM_SMMU_GR1_CBA2R(n) (0x800 + ((n) << 2))
220#define CBA2R_RW64_32BIT (0 << 0)
221#define CBA2R_RW64_64BIT (1 << 0)
222
223/* Translation context bank */
224#define ARM_SMMU_CB_BASE(smmu) ((smmu)->base + ((smmu)->size >> 1))
225#define ARM_SMMU_CB(smmu, n) ((n) * (smmu)->pagesize)
226
227#define ARM_SMMU_CB_SCTLR 0x0
228#define ARM_SMMU_CB_RESUME 0x8
229#define ARM_SMMU_CB_TTBCR2 0x10
230#define ARM_SMMU_CB_TTBR0_LO 0x20
231#define ARM_SMMU_CB_TTBR0_HI 0x24
232#define ARM_SMMU_CB_TTBCR 0x30
233#define ARM_SMMU_CB_S1_MAIR0 0x38
234#define ARM_SMMU_CB_FSR 0x58
235#define ARM_SMMU_CB_FAR_LO 0x60
236#define ARM_SMMU_CB_FAR_HI 0x64
237#define ARM_SMMU_CB_FSYNR0 0x68
Will Deacon1463fe42013-07-31 19:21:27 +0100238#define ARM_SMMU_CB_S1_TLBIASID 0x610
Will Deacon45ae7cf2013-06-24 18:31:25 +0100239
240#define SCTLR_S1_ASIDPNE (1 << 12)
241#define SCTLR_CFCFG (1 << 7)
242#define SCTLR_CFIE (1 << 6)
243#define SCTLR_CFRE (1 << 5)
244#define SCTLR_E (1 << 4)
245#define SCTLR_AFE (1 << 2)
246#define SCTLR_TRE (1 << 1)
247#define SCTLR_M (1 << 0)
248#define SCTLR_EAE_SBOP (SCTLR_AFE | SCTLR_TRE)
249
250#define RESUME_RETRY (0 << 0)
251#define RESUME_TERMINATE (1 << 0)
252
253#define TTBCR_EAE (1 << 31)
254
255#define TTBCR_PASIZE_SHIFT 16
256#define TTBCR_PASIZE_MASK 0x7
257
258#define TTBCR_TG0_4K (0 << 14)
259#define TTBCR_TG0_64K (1 << 14)
260
261#define TTBCR_SH0_SHIFT 12
262#define TTBCR_SH0_MASK 0x3
263#define TTBCR_SH_NS 0
264#define TTBCR_SH_OS 2
265#define TTBCR_SH_IS 3
266
267#define TTBCR_ORGN0_SHIFT 10
268#define TTBCR_IRGN0_SHIFT 8
269#define TTBCR_RGN_MASK 0x3
270#define TTBCR_RGN_NC 0
271#define TTBCR_RGN_WBWA 1
272#define TTBCR_RGN_WT 2
273#define TTBCR_RGN_WB 3
274
275#define TTBCR_SL0_SHIFT 6
276#define TTBCR_SL0_MASK 0x3
277#define TTBCR_SL0_LVL_2 0
278#define TTBCR_SL0_LVL_1 1
279
280#define TTBCR_T1SZ_SHIFT 16
281#define TTBCR_T0SZ_SHIFT 0
282#define TTBCR_SZ_MASK 0xf
283
284#define TTBCR2_SEP_SHIFT 15
285#define TTBCR2_SEP_MASK 0x7
286
287#define TTBCR2_PASIZE_SHIFT 0
288#define TTBCR2_PASIZE_MASK 0x7
289
290/* Common definitions for PASize and SEP fields */
291#define TTBCR2_ADDR_32 0
292#define TTBCR2_ADDR_36 1
293#define TTBCR2_ADDR_40 2
294#define TTBCR2_ADDR_42 3
295#define TTBCR2_ADDR_44 4
296#define TTBCR2_ADDR_48 5
297
Will Deacon1463fe42013-07-31 19:21:27 +0100298#define TTBRn_HI_ASID_SHIFT 16
299
Will Deacon45ae7cf2013-06-24 18:31:25 +0100300#define MAIR_ATTR_SHIFT(n) ((n) << 3)
301#define MAIR_ATTR_MASK 0xff
302#define MAIR_ATTR_DEVICE 0x04
303#define MAIR_ATTR_NC 0x44
304#define MAIR_ATTR_WBRWA 0xff
305#define MAIR_ATTR_IDX_NC 0
306#define MAIR_ATTR_IDX_CACHE 1
307#define MAIR_ATTR_IDX_DEV 2
308
309#define FSR_MULTI (1 << 31)
310#define FSR_SS (1 << 30)
311#define FSR_UUT (1 << 8)
312#define FSR_ASF (1 << 7)
313#define FSR_TLBLKF (1 << 6)
314#define FSR_TLBMCF (1 << 5)
315#define FSR_EF (1 << 4)
316#define FSR_PF (1 << 3)
317#define FSR_AFF (1 << 2)
318#define FSR_TF (1 << 1)
319
Mitchel Humpherys29073202014-07-08 09:52:18 -0700320#define FSR_IGN (FSR_AFF | FSR_ASF | \
321 FSR_TLBMCF | FSR_TLBLKF)
322#define FSR_FAULT (FSR_MULTI | FSR_SS | FSR_UUT | \
Will Deaconadaba322013-07-31 19:21:26 +0100323 FSR_EF | FSR_PF | FSR_TF | FSR_IGN)
Will Deacon45ae7cf2013-06-24 18:31:25 +0100324
325#define FSYNR0_WNR (1 << 4)
326
327struct arm_smmu_smr {
328 u8 idx;
329 u16 mask;
330 u16 id;
331};
332
Will Deacona9a1b0b2014-05-01 18:05:08 +0100333struct arm_smmu_master_cfg {
Will Deacon45ae7cf2013-06-24 18:31:25 +0100334 int num_streamids;
335 u16 streamids[MAX_MASTER_STREAMIDS];
Will Deacon45ae7cf2013-06-24 18:31:25 +0100336 struct arm_smmu_smr *smrs;
337};
338
Will Deacona9a1b0b2014-05-01 18:05:08 +0100339struct arm_smmu_master {
340 struct device_node *of_node;
Will Deacona9a1b0b2014-05-01 18:05:08 +0100341 struct rb_node node;
342 struct arm_smmu_master_cfg cfg;
343};
344
Will Deacon45ae7cf2013-06-24 18:31:25 +0100345struct arm_smmu_device {
346 struct device *dev;
Will Deacon45ae7cf2013-06-24 18:31:25 +0100347
348 void __iomem *base;
349 unsigned long size;
350 unsigned long pagesize;
351
352#define ARM_SMMU_FEAT_COHERENT_WALK (1 << 0)
353#define ARM_SMMU_FEAT_STREAM_MATCH (1 << 1)
354#define ARM_SMMU_FEAT_TRANS_S1 (1 << 2)
355#define ARM_SMMU_FEAT_TRANS_S2 (1 << 3)
356#define ARM_SMMU_FEAT_TRANS_NESTED (1 << 4)
357 u32 features;
Andreas Herrmann3a5df8f2014-01-30 18:18:04 +0000358
359#define ARM_SMMU_OPT_SECURE_CFG_ACCESS (1 << 0)
360 u32 options;
Will Deacon45ae7cf2013-06-24 18:31:25 +0100361 int version;
362
363 u32 num_context_banks;
364 u32 num_s2_context_banks;
365 DECLARE_BITMAP(context_map, ARM_SMMU_MAX_CBS);
366 atomic_t irptndx;
367
368 u32 num_mapping_groups;
369 DECLARE_BITMAP(smr_map, ARM_SMMU_MAX_SMRS);
370
371 unsigned long input_size;
372 unsigned long s1_output_size;
373 unsigned long s2_output_size;
374
375 u32 num_global_irqs;
376 u32 num_context_irqs;
377 unsigned int *irqs;
378
Will Deacon45ae7cf2013-06-24 18:31:25 +0100379 struct list_head list;
380 struct rb_root masters;
381};
382
383struct arm_smmu_cfg {
Will Deacon45ae7cf2013-06-24 18:31:25 +0100384 u8 cbndx;
385 u8 irptndx;
386 u32 cbar;
387 pgd_t *pgd;
388};
Dan Carpenterfaea13b72013-08-21 09:33:30 +0100389#define INVALID_IRPTNDX 0xff
Will Deacon45ae7cf2013-06-24 18:31:25 +0100390
Will Deaconecfadb62013-07-31 19:21:28 +0100391#define ARM_SMMU_CB_ASID(cfg) ((cfg)->cbndx)
392#define ARM_SMMU_CB_VMID(cfg) ((cfg)->cbndx + 1)
393
Will Deacon45ae7cf2013-06-24 18:31:25 +0100394struct arm_smmu_domain {
Will Deacon44680ee2014-06-25 11:29:12 +0100395 struct arm_smmu_device *smmu;
396 struct arm_smmu_cfg cfg;
Will Deaconc9d09e22014-02-04 22:12:42 +0000397 spinlock_t lock;
Will Deacon45ae7cf2013-06-24 18:31:25 +0100398};
399
400static DEFINE_SPINLOCK(arm_smmu_devices_lock);
401static LIST_HEAD(arm_smmu_devices);
402
Andreas Herrmann3a5df8f2014-01-30 18:18:04 +0000403struct arm_smmu_option_prop {
404 u32 opt;
405 const char *prop;
406};
407
Mitchel Humpherys29073202014-07-08 09:52:18 -0700408static struct arm_smmu_option_prop arm_smmu_options[] = {
Andreas Herrmann3a5df8f2014-01-30 18:18:04 +0000409 { ARM_SMMU_OPT_SECURE_CFG_ACCESS, "calxeda,smmu-secure-config-access" },
410 { 0, NULL},
411};
412
413static void parse_driver_options(struct arm_smmu_device *smmu)
414{
415 int i = 0;
Mitchel Humpherys29073202014-07-08 09:52:18 -0700416
Andreas Herrmann3a5df8f2014-01-30 18:18:04 +0000417 do {
418 if (of_property_read_bool(smmu->dev->of_node,
419 arm_smmu_options[i].prop)) {
420 smmu->options |= arm_smmu_options[i].opt;
421 dev_notice(smmu->dev, "option %s\n",
422 arm_smmu_options[i].prop);
423 }
424 } while (arm_smmu_options[++i].opt);
425}
426
Will Deacona9a1b0b2014-05-01 18:05:08 +0100427static struct device *dev_get_master_dev(struct device *dev)
428{
429 if (dev_is_pci(dev)) {
430 struct pci_bus *bus = to_pci_dev(dev)->bus;
Mitchel Humpherys29073202014-07-08 09:52:18 -0700431
Will Deacona9a1b0b2014-05-01 18:05:08 +0100432 while (!pci_is_root_bus(bus))
433 bus = bus->parent;
434 return bus->bridge->parent;
435 }
436
437 return dev;
438}
439
Will Deacon45ae7cf2013-06-24 18:31:25 +0100440static struct arm_smmu_master *find_smmu_master(struct arm_smmu_device *smmu,
441 struct device_node *dev_node)
442{
443 struct rb_node *node = smmu->masters.rb_node;
444
445 while (node) {
446 struct arm_smmu_master *master;
Mitchel Humpherys29073202014-07-08 09:52:18 -0700447
Will Deacon45ae7cf2013-06-24 18:31:25 +0100448 master = container_of(node, struct arm_smmu_master, node);
449
450 if (dev_node < master->of_node)
451 node = node->rb_left;
452 else if (dev_node > master->of_node)
453 node = node->rb_right;
454 else
455 return master;
456 }
457
458 return NULL;
459}
460
Will Deacona9a1b0b2014-05-01 18:05:08 +0100461static struct arm_smmu_master_cfg *
462find_smmu_master_cfg(struct arm_smmu_device *smmu, struct device *dev)
463{
464 struct arm_smmu_master *master;
465
466 if (dev_is_pci(dev))
467 return dev->archdata.iommu;
468
469 master = find_smmu_master(smmu, dev->of_node);
470 return master ? &master->cfg : NULL;
471}
472
Will Deacon45ae7cf2013-06-24 18:31:25 +0100473static int insert_smmu_master(struct arm_smmu_device *smmu,
474 struct arm_smmu_master *master)
475{
476 struct rb_node **new, *parent;
477
478 new = &smmu->masters.rb_node;
479 parent = NULL;
480 while (*new) {
Mitchel Humpherys29073202014-07-08 09:52:18 -0700481 struct arm_smmu_master *this
482 = container_of(*new, struct arm_smmu_master, node);
Will Deacon45ae7cf2013-06-24 18:31:25 +0100483
484 parent = *new;
485 if (master->of_node < this->of_node)
486 new = &((*new)->rb_left);
487 else if (master->of_node > this->of_node)
488 new = &((*new)->rb_right);
489 else
490 return -EEXIST;
491 }
492
493 rb_link_node(&master->node, parent, new);
494 rb_insert_color(&master->node, &smmu->masters);
495 return 0;
496}
497
498static int register_smmu_master(struct arm_smmu_device *smmu,
499 struct device *dev,
500 struct of_phandle_args *masterspec)
501{
502 int i;
503 struct arm_smmu_master *master;
504
505 master = find_smmu_master(smmu, masterspec->np);
506 if (master) {
507 dev_err(dev,
508 "rejecting multiple registrations for master device %s\n",
509 masterspec->np->name);
510 return -EBUSY;
511 }
512
513 if (masterspec->args_count > MAX_MASTER_STREAMIDS) {
514 dev_err(dev,
515 "reached maximum number (%d) of stream IDs for master device %s\n",
516 MAX_MASTER_STREAMIDS, masterspec->np->name);
517 return -ENOSPC;
518 }
519
520 master = devm_kzalloc(dev, sizeof(*master), GFP_KERNEL);
521 if (!master)
522 return -ENOMEM;
523
Will Deacona9a1b0b2014-05-01 18:05:08 +0100524 master->of_node = masterspec->np;
525 master->cfg.num_streamids = masterspec->args_count;
Will Deacon45ae7cf2013-06-24 18:31:25 +0100526
Will Deacona9a1b0b2014-05-01 18:05:08 +0100527 for (i = 0; i < master->cfg.num_streamids; ++i)
528 master->cfg.streamids[i] = masterspec->args[i];
Will Deacon45ae7cf2013-06-24 18:31:25 +0100529
530 return insert_smmu_master(smmu, master);
531}
532
Will Deacon44680ee2014-06-25 11:29:12 +0100533static struct arm_smmu_device *find_smmu_for_device(struct device *dev)
Will Deacon45ae7cf2013-06-24 18:31:25 +0100534{
Will Deacon44680ee2014-06-25 11:29:12 +0100535 struct arm_smmu_device *smmu;
Will Deacona9a1b0b2014-05-01 18:05:08 +0100536 struct arm_smmu_master *master = NULL;
537 struct device_node *dev_node = dev_get_master_dev(dev)->of_node;
Will Deacon45ae7cf2013-06-24 18:31:25 +0100538
539 spin_lock(&arm_smmu_devices_lock);
Will Deacon44680ee2014-06-25 11:29:12 +0100540 list_for_each_entry(smmu, &arm_smmu_devices, list) {
Will Deacona9a1b0b2014-05-01 18:05:08 +0100541 master = find_smmu_master(smmu, dev_node);
542 if (master)
543 break;
544 }
Will Deacon45ae7cf2013-06-24 18:31:25 +0100545 spin_unlock(&arm_smmu_devices_lock);
Will Deacon44680ee2014-06-25 11:29:12 +0100546
Will Deacona9a1b0b2014-05-01 18:05:08 +0100547 return master ? smmu : NULL;
Will Deacon45ae7cf2013-06-24 18:31:25 +0100548}
549
550static int __arm_smmu_alloc_bitmap(unsigned long *map, int start, int end)
551{
552 int idx;
553
554 do {
555 idx = find_next_zero_bit(map, end, start);
556 if (idx == end)
557 return -ENOSPC;
558 } while (test_and_set_bit(idx, map));
559
560 return idx;
561}
562
563static void __arm_smmu_free_bitmap(unsigned long *map, int idx)
564{
565 clear_bit(idx, map);
566}
567
568/* Wait for any pending TLB invalidations to complete */
569static void arm_smmu_tlb_sync(struct arm_smmu_device *smmu)
570{
571 int count = 0;
572 void __iomem *gr0_base = ARM_SMMU_GR0(smmu);
573
574 writel_relaxed(0, gr0_base + ARM_SMMU_GR0_sTLBGSYNC);
575 while (readl_relaxed(gr0_base + ARM_SMMU_GR0_sTLBGSTATUS)
576 & sTLBGSTATUS_GSACTIVE) {
577 cpu_relax();
578 if (++count == TLB_LOOP_TIMEOUT) {
579 dev_err_ratelimited(smmu->dev,
580 "TLB sync timed out -- SMMU may be deadlocked\n");
581 return;
582 }
583 udelay(1);
584 }
585}
586
Will Deacon44680ee2014-06-25 11:29:12 +0100587static void arm_smmu_tlb_inv_context(struct arm_smmu_domain *smmu_domain)
Will Deacon1463fe42013-07-31 19:21:27 +0100588{
Will Deacon44680ee2014-06-25 11:29:12 +0100589 struct arm_smmu_cfg *cfg = &smmu_domain->cfg;
590 struct arm_smmu_device *smmu = smmu_domain->smmu;
Will Deacon1463fe42013-07-31 19:21:27 +0100591 void __iomem *base = ARM_SMMU_GR0(smmu);
592 bool stage1 = cfg->cbar != CBAR_TYPE_S2_TRANS;
593
594 if (stage1) {
595 base = ARM_SMMU_CB_BASE(smmu) + ARM_SMMU_CB(smmu, cfg->cbndx);
Will Deaconecfadb62013-07-31 19:21:28 +0100596 writel_relaxed(ARM_SMMU_CB_ASID(cfg),
597 base + ARM_SMMU_CB_S1_TLBIASID);
Will Deacon1463fe42013-07-31 19:21:27 +0100598 } else {
599 base = ARM_SMMU_GR0(smmu);
Will Deaconecfadb62013-07-31 19:21:28 +0100600 writel_relaxed(ARM_SMMU_CB_VMID(cfg),
601 base + ARM_SMMU_GR0_TLBIVMID);
Will Deacon1463fe42013-07-31 19:21:27 +0100602 }
603
604 arm_smmu_tlb_sync(smmu);
605}
606
Will Deacon45ae7cf2013-06-24 18:31:25 +0100607static irqreturn_t arm_smmu_context_fault(int irq, void *dev)
608{
609 int flags, ret;
610 u32 fsr, far, fsynr, resume;
611 unsigned long iova;
612 struct iommu_domain *domain = dev;
613 struct arm_smmu_domain *smmu_domain = domain->priv;
Will Deacon44680ee2014-06-25 11:29:12 +0100614 struct arm_smmu_cfg *cfg = &smmu_domain->cfg;
615 struct arm_smmu_device *smmu = smmu_domain->smmu;
Will Deacon45ae7cf2013-06-24 18:31:25 +0100616 void __iomem *cb_base;
617
Will Deacon44680ee2014-06-25 11:29:12 +0100618 cb_base = ARM_SMMU_CB_BASE(smmu) + ARM_SMMU_CB(smmu, cfg->cbndx);
Will Deacon45ae7cf2013-06-24 18:31:25 +0100619 fsr = readl_relaxed(cb_base + ARM_SMMU_CB_FSR);
620
621 if (!(fsr & FSR_FAULT))
622 return IRQ_NONE;
623
624 if (fsr & FSR_IGN)
625 dev_err_ratelimited(smmu->dev,
626 "Unexpected context fault (fsr 0x%u)\n",
627 fsr);
628
629 fsynr = readl_relaxed(cb_base + ARM_SMMU_CB_FSYNR0);
630 flags = fsynr & FSYNR0_WNR ? IOMMU_FAULT_WRITE : IOMMU_FAULT_READ;
631
632 far = readl_relaxed(cb_base + ARM_SMMU_CB_FAR_LO);
633 iova = far;
634#ifdef CONFIG_64BIT
635 far = readl_relaxed(cb_base + ARM_SMMU_CB_FAR_HI);
636 iova |= ((unsigned long)far << 32);
637#endif
638
639 if (!report_iommu_fault(domain, smmu->dev, iova, flags)) {
640 ret = IRQ_HANDLED;
641 resume = RESUME_RETRY;
642 } else {
Andreas Herrmann2ef0f032013-10-01 13:39:08 +0100643 dev_err_ratelimited(smmu->dev,
644 "Unhandled context fault: iova=0x%08lx, fsynr=0x%x, cb=%d\n",
Will Deacon44680ee2014-06-25 11:29:12 +0100645 iova, fsynr, cfg->cbndx);
Will Deacon45ae7cf2013-06-24 18:31:25 +0100646 ret = IRQ_NONE;
647 resume = RESUME_TERMINATE;
648 }
649
650 /* Clear the faulting FSR */
651 writel(fsr, cb_base + ARM_SMMU_CB_FSR);
652
653 /* Retry or terminate any stalled transactions */
654 if (fsr & FSR_SS)
655 writel_relaxed(resume, cb_base + ARM_SMMU_CB_RESUME);
656
657 return ret;
658}
659
660static irqreturn_t arm_smmu_global_fault(int irq, void *dev)
661{
662 u32 gfsr, gfsynr0, gfsynr1, gfsynr2;
663 struct arm_smmu_device *smmu = dev;
Andreas Herrmann3a5df8f2014-01-30 18:18:04 +0000664 void __iomem *gr0_base = ARM_SMMU_GR0_NS(smmu);
Will Deacon45ae7cf2013-06-24 18:31:25 +0100665
666 gfsr = readl_relaxed(gr0_base + ARM_SMMU_GR0_sGFSR);
667 gfsynr0 = readl_relaxed(gr0_base + ARM_SMMU_GR0_sGFSYNR0);
668 gfsynr1 = readl_relaxed(gr0_base + ARM_SMMU_GR0_sGFSYNR1);
669 gfsynr2 = readl_relaxed(gr0_base + ARM_SMMU_GR0_sGFSYNR2);
670
Andreas Herrmann3a5df8f2014-01-30 18:18:04 +0000671 if (!gfsr)
672 return IRQ_NONE;
673
Will Deacon45ae7cf2013-06-24 18:31:25 +0100674 dev_err_ratelimited(smmu->dev,
675 "Unexpected global fault, this could be serious\n");
676 dev_err_ratelimited(smmu->dev,
677 "\tGFSR 0x%08x, GFSYNR0 0x%08x, GFSYNR1 0x%08x, GFSYNR2 0x%08x\n",
678 gfsr, gfsynr0, gfsynr1, gfsynr2);
679
680 writel(gfsr, gr0_base + ARM_SMMU_GR0_sGFSR);
Will Deaconadaba322013-07-31 19:21:26 +0100681 return IRQ_HANDLED;
Will Deacon45ae7cf2013-06-24 18:31:25 +0100682}
683
Will Deacon6dd35f42014-02-05 17:49:34 +0000684static void arm_smmu_flush_pgtable(struct arm_smmu_device *smmu, void *addr,
685 size_t size)
686{
687 unsigned long offset = (unsigned long)addr & ~PAGE_MASK;
688
689
690 /* Ensure new page tables are visible to the hardware walker */
691 if (smmu->features & ARM_SMMU_FEAT_COHERENT_WALK) {
Will Deacon3aa80ea2014-02-05 23:35:47 +0000692 dsb(ishst);
Will Deacon6dd35f42014-02-05 17:49:34 +0000693 } else {
694 /*
695 * If the SMMU can't walk tables in the CPU caches, treat them
696 * like non-coherent DMA since we need to flush the new entries
697 * all the way out to memory. There's no possibility of
698 * recursion here as the SMMU table walker will not be wired
699 * through another SMMU.
700 */
701 dma_map_page(smmu->dev, virt_to_page(addr), offset, size,
702 DMA_TO_DEVICE);
703 }
704}
705
Will Deacon45ae7cf2013-06-24 18:31:25 +0100706static void arm_smmu_init_context_bank(struct arm_smmu_domain *smmu_domain)
707{
708 u32 reg;
709 bool stage1;
Will Deacon44680ee2014-06-25 11:29:12 +0100710 struct arm_smmu_cfg *cfg = &smmu_domain->cfg;
711 struct arm_smmu_device *smmu = smmu_domain->smmu;
Will Deacon45ae7cf2013-06-24 18:31:25 +0100712 void __iomem *cb_base, *gr0_base, *gr1_base;
713
714 gr0_base = ARM_SMMU_GR0(smmu);
715 gr1_base = ARM_SMMU_GR1(smmu);
Will Deacon44680ee2014-06-25 11:29:12 +0100716 stage1 = cfg->cbar != CBAR_TYPE_S2_TRANS;
717 cb_base = ARM_SMMU_CB_BASE(smmu) + ARM_SMMU_CB(smmu, cfg->cbndx);
Will Deacon45ae7cf2013-06-24 18:31:25 +0100718
719 /* CBAR */
Will Deacon44680ee2014-06-25 11:29:12 +0100720 reg = cfg->cbar;
Will Deacon45ae7cf2013-06-24 18:31:25 +0100721 if (smmu->version == 1)
Mitchel Humpherys29073202014-07-08 09:52:18 -0700722 reg |= cfg->irptndx << CBAR_IRPTNDX_SHIFT;
Will Deacon45ae7cf2013-06-24 18:31:25 +0100723
Will Deacon57ca90f2014-02-06 14:59:05 +0000724 /*
725 * Use the weakest shareability/memory types, so they are
726 * overridden by the ttbcr/pte.
727 */
728 if (stage1) {
729 reg |= (CBAR_S1_BPSHCFG_NSH << CBAR_S1_BPSHCFG_SHIFT) |
730 (CBAR_S1_MEMATTR_WB << CBAR_S1_MEMATTR_SHIFT);
731 } else {
Will Deacon44680ee2014-06-25 11:29:12 +0100732 reg |= ARM_SMMU_CB_VMID(cfg) << CBAR_VMID_SHIFT;
Will Deacon57ca90f2014-02-06 14:59:05 +0000733 }
Will Deacon44680ee2014-06-25 11:29:12 +0100734 writel_relaxed(reg, gr1_base + ARM_SMMU_GR1_CBAR(cfg->cbndx));
Will Deacon45ae7cf2013-06-24 18:31:25 +0100735
736 if (smmu->version > 1) {
737 /* CBA2R */
738#ifdef CONFIG_64BIT
739 reg = CBA2R_RW64_64BIT;
740#else
741 reg = CBA2R_RW64_32BIT;
742#endif
743 writel_relaxed(reg,
Will Deacon44680ee2014-06-25 11:29:12 +0100744 gr1_base + ARM_SMMU_GR1_CBA2R(cfg->cbndx));
Will Deacon45ae7cf2013-06-24 18:31:25 +0100745
746 /* TTBCR2 */
747 switch (smmu->input_size) {
748 case 32:
749 reg = (TTBCR2_ADDR_32 << TTBCR2_SEP_SHIFT);
750 break;
751 case 36:
752 reg = (TTBCR2_ADDR_36 << TTBCR2_SEP_SHIFT);
753 break;
754 case 39:
755 reg = (TTBCR2_ADDR_40 << TTBCR2_SEP_SHIFT);
756 break;
757 case 42:
758 reg = (TTBCR2_ADDR_42 << TTBCR2_SEP_SHIFT);
759 break;
760 case 44:
761 reg = (TTBCR2_ADDR_44 << TTBCR2_SEP_SHIFT);
762 break;
763 case 48:
764 reg = (TTBCR2_ADDR_48 << TTBCR2_SEP_SHIFT);
765 break;
766 }
767
768 switch (smmu->s1_output_size) {
769 case 32:
770 reg |= (TTBCR2_ADDR_32 << TTBCR2_PASIZE_SHIFT);
771 break;
772 case 36:
773 reg |= (TTBCR2_ADDR_36 << TTBCR2_PASIZE_SHIFT);
774 break;
775 case 39:
776 reg |= (TTBCR2_ADDR_40 << TTBCR2_PASIZE_SHIFT);
777 break;
778 case 42:
779 reg |= (TTBCR2_ADDR_42 << TTBCR2_PASIZE_SHIFT);
780 break;
781 case 44:
782 reg |= (TTBCR2_ADDR_44 << TTBCR2_PASIZE_SHIFT);
783 break;
784 case 48:
785 reg |= (TTBCR2_ADDR_48 << TTBCR2_PASIZE_SHIFT);
786 break;
787 }
788
789 if (stage1)
790 writel_relaxed(reg, cb_base + ARM_SMMU_CB_TTBCR2);
791 }
792
793 /* TTBR0 */
Will Deacon44680ee2014-06-25 11:29:12 +0100794 arm_smmu_flush_pgtable(smmu, cfg->pgd,
Will Deacon6dd35f42014-02-05 17:49:34 +0000795 PTRS_PER_PGD * sizeof(pgd_t));
Will Deacon44680ee2014-06-25 11:29:12 +0100796 reg = __pa(cfg->pgd);
Will Deacon45ae7cf2013-06-24 18:31:25 +0100797 writel_relaxed(reg, cb_base + ARM_SMMU_CB_TTBR0_LO);
Will Deacon44680ee2014-06-25 11:29:12 +0100798 reg = (phys_addr_t)__pa(cfg->pgd) >> 32;
Will Deacon1463fe42013-07-31 19:21:27 +0100799 if (stage1)
Will Deacon44680ee2014-06-25 11:29:12 +0100800 reg |= ARM_SMMU_CB_ASID(cfg) << TTBRn_HI_ASID_SHIFT;
Will Deacon45ae7cf2013-06-24 18:31:25 +0100801 writel_relaxed(reg, cb_base + ARM_SMMU_CB_TTBR0_HI);
Will Deacon45ae7cf2013-06-24 18:31:25 +0100802
803 /*
804 * TTBCR
805 * We use long descriptor, with inner-shareable WBWA tables in TTBR0.
806 */
807 if (smmu->version > 1) {
808 if (PAGE_SIZE == SZ_4K)
809 reg = TTBCR_TG0_4K;
810 else
811 reg = TTBCR_TG0_64K;
812
813 if (!stage1) {
Will Deacona65217a2014-06-24 18:26:26 +0100814 reg |= (64 - smmu->s1_output_size) << TTBCR_T0SZ_SHIFT;
815
Will Deacon45ae7cf2013-06-24 18:31:25 +0100816 switch (smmu->s2_output_size) {
817 case 32:
818 reg |= (TTBCR2_ADDR_32 << TTBCR_PASIZE_SHIFT);
819 break;
820 case 36:
821 reg |= (TTBCR2_ADDR_36 << TTBCR_PASIZE_SHIFT);
822 break;
823 case 40:
824 reg |= (TTBCR2_ADDR_40 << TTBCR_PASIZE_SHIFT);
825 break;
826 case 42:
827 reg |= (TTBCR2_ADDR_42 << TTBCR_PASIZE_SHIFT);
828 break;
829 case 44:
830 reg |= (TTBCR2_ADDR_44 << TTBCR_PASIZE_SHIFT);
831 break;
832 case 48:
833 reg |= (TTBCR2_ADDR_48 << TTBCR_PASIZE_SHIFT);
834 break;
835 }
836 } else {
Will Deacona65217a2014-06-24 18:26:26 +0100837 reg |= (64 - smmu->input_size) << TTBCR_T0SZ_SHIFT;
Will Deacon45ae7cf2013-06-24 18:31:25 +0100838 }
839 } else {
840 reg = 0;
841 }
842
843 reg |= TTBCR_EAE |
844 (TTBCR_SH_IS << TTBCR_SH0_SHIFT) |
845 (TTBCR_RGN_WBWA << TTBCR_ORGN0_SHIFT) |
Olav Haugan1fc870c2014-08-04 19:01:02 +0100846 (TTBCR_RGN_WBWA << TTBCR_IRGN0_SHIFT);
847
848 if (!stage1)
849 reg |= (TTBCR_SL0_LVL_1 << TTBCR_SL0_SHIFT);
850
Will Deacon45ae7cf2013-06-24 18:31:25 +0100851 writel_relaxed(reg, cb_base + ARM_SMMU_CB_TTBCR);
852
853 /* MAIR0 (stage-1 only) */
854 if (stage1) {
855 reg = (MAIR_ATTR_NC << MAIR_ATTR_SHIFT(MAIR_ATTR_IDX_NC)) |
856 (MAIR_ATTR_WBRWA << MAIR_ATTR_SHIFT(MAIR_ATTR_IDX_CACHE)) |
857 (MAIR_ATTR_DEVICE << MAIR_ATTR_SHIFT(MAIR_ATTR_IDX_DEV));
858 writel_relaxed(reg, cb_base + ARM_SMMU_CB_S1_MAIR0);
859 }
860
Will Deacon45ae7cf2013-06-24 18:31:25 +0100861 /* SCTLR */
862 reg = SCTLR_CFCFG | SCTLR_CFIE | SCTLR_CFRE | SCTLR_M | SCTLR_EAE_SBOP;
863 if (stage1)
864 reg |= SCTLR_S1_ASIDPNE;
865#ifdef __BIG_ENDIAN
866 reg |= SCTLR_E;
867#endif
Will Deacon25724842013-08-21 13:49:53 +0100868 writel_relaxed(reg, cb_base + ARM_SMMU_CB_SCTLR);
Will Deacon45ae7cf2013-06-24 18:31:25 +0100869}
870
871static int arm_smmu_init_domain_context(struct iommu_domain *domain,
Will Deacon44680ee2014-06-25 11:29:12 +0100872 struct arm_smmu_device *smmu)
Will Deacon45ae7cf2013-06-24 18:31:25 +0100873{
Mitchel Humpherysa18037b2014-07-30 18:58:13 +0100874 int irq, start, ret = 0;
875 unsigned long flags;
Will Deacon45ae7cf2013-06-24 18:31:25 +0100876 struct arm_smmu_domain *smmu_domain = domain->priv;
Will Deacon44680ee2014-06-25 11:29:12 +0100877 struct arm_smmu_cfg *cfg = &smmu_domain->cfg;
Will Deacon45ae7cf2013-06-24 18:31:25 +0100878
Mitchel Humpherysa18037b2014-07-30 18:58:13 +0100879 spin_lock_irqsave(&smmu_domain->lock, flags);
880 if (smmu_domain->smmu)
881 goto out_unlock;
882
Will Deacon45ae7cf2013-06-24 18:31:25 +0100883 if (smmu->features & ARM_SMMU_FEAT_TRANS_NESTED) {
884 /*
885 * We will likely want to change this if/when KVM gets
886 * involved.
887 */
Will Deacon44680ee2014-06-25 11:29:12 +0100888 cfg->cbar = CBAR_TYPE_S1_TRANS_S2_BYPASS;
Will Deacon45ae7cf2013-06-24 18:31:25 +0100889 start = smmu->num_s2_context_banks;
Will Deacon9c5c92e2014-06-25 12:12:41 +0100890 } else if (smmu->features & ARM_SMMU_FEAT_TRANS_S1) {
Will Deacon44680ee2014-06-25 11:29:12 +0100891 cfg->cbar = CBAR_TYPE_S1_TRANS_S2_BYPASS;
Will Deacon45ae7cf2013-06-24 18:31:25 +0100892 start = smmu->num_s2_context_banks;
Will Deacon45ae7cf2013-06-24 18:31:25 +0100893 } else {
Will Deacon9c5c92e2014-06-25 12:12:41 +0100894 cfg->cbar = CBAR_TYPE_S2_TRANS;
895 start = 0;
Will Deacon45ae7cf2013-06-24 18:31:25 +0100896 }
897
898 ret = __arm_smmu_alloc_bitmap(smmu->context_map, start,
899 smmu->num_context_banks);
900 if (IS_ERR_VALUE(ret))
Mitchel Humpherysa18037b2014-07-30 18:58:13 +0100901 goto out_unlock;
Will Deacon45ae7cf2013-06-24 18:31:25 +0100902
Will Deacon44680ee2014-06-25 11:29:12 +0100903 cfg->cbndx = ret;
Will Deacon45ae7cf2013-06-24 18:31:25 +0100904 if (smmu->version == 1) {
Will Deacon44680ee2014-06-25 11:29:12 +0100905 cfg->irptndx = atomic_inc_return(&smmu->irptndx);
906 cfg->irptndx %= smmu->num_context_irqs;
Will Deacon45ae7cf2013-06-24 18:31:25 +0100907 } else {
Will Deacon44680ee2014-06-25 11:29:12 +0100908 cfg->irptndx = cfg->cbndx;
Will Deacon45ae7cf2013-06-24 18:31:25 +0100909 }
910
Mitchel Humpherysa18037b2014-07-30 18:58:13 +0100911 ACCESS_ONCE(smmu_domain->smmu) = smmu;
912 arm_smmu_init_context_bank(smmu_domain);
913 spin_unlock_irqrestore(&smmu_domain->lock, flags);
914
Will Deacon44680ee2014-06-25 11:29:12 +0100915 irq = smmu->irqs[smmu->num_global_irqs + cfg->irptndx];
Will Deacon45ae7cf2013-06-24 18:31:25 +0100916 ret = request_irq(irq, arm_smmu_context_fault, IRQF_SHARED,
917 "arm-smmu-context-fault", domain);
918 if (IS_ERR_VALUE(ret)) {
919 dev_err(smmu->dev, "failed to request context IRQ %d (%u)\n",
Will Deacon44680ee2014-06-25 11:29:12 +0100920 cfg->irptndx, irq);
921 cfg->irptndx = INVALID_IRPTNDX;
Will Deacon45ae7cf2013-06-24 18:31:25 +0100922 }
923
Will Deacona9a1b0b2014-05-01 18:05:08 +0100924 return 0;
Will Deacon45ae7cf2013-06-24 18:31:25 +0100925
Mitchel Humpherysa18037b2014-07-30 18:58:13 +0100926out_unlock:
927 spin_unlock_irqrestore(&smmu_domain->lock, flags);
Will Deacon45ae7cf2013-06-24 18:31:25 +0100928 return ret;
929}
930
931static void arm_smmu_destroy_domain_context(struct iommu_domain *domain)
932{
933 struct arm_smmu_domain *smmu_domain = domain->priv;
Will Deacon44680ee2014-06-25 11:29:12 +0100934 struct arm_smmu_device *smmu = smmu_domain->smmu;
935 struct arm_smmu_cfg *cfg = &smmu_domain->cfg;
Will Deacon1463fe42013-07-31 19:21:27 +0100936 void __iomem *cb_base;
Will Deacon45ae7cf2013-06-24 18:31:25 +0100937 int irq;
938
939 if (!smmu)
940 return;
941
Will Deacon1463fe42013-07-31 19:21:27 +0100942 /* Disable the context bank and nuke the TLB before freeing it. */
Will Deacon44680ee2014-06-25 11:29:12 +0100943 cb_base = ARM_SMMU_CB_BASE(smmu) + ARM_SMMU_CB(smmu, cfg->cbndx);
Will Deacon1463fe42013-07-31 19:21:27 +0100944 writel_relaxed(0, cb_base + ARM_SMMU_CB_SCTLR);
Will Deacon44680ee2014-06-25 11:29:12 +0100945 arm_smmu_tlb_inv_context(smmu_domain);
Will Deacon1463fe42013-07-31 19:21:27 +0100946
Will Deacon44680ee2014-06-25 11:29:12 +0100947 if (cfg->irptndx != INVALID_IRPTNDX) {
948 irq = smmu->irqs[smmu->num_global_irqs + cfg->irptndx];
Will Deacon45ae7cf2013-06-24 18:31:25 +0100949 free_irq(irq, domain);
950 }
951
Will Deacon44680ee2014-06-25 11:29:12 +0100952 __arm_smmu_free_bitmap(smmu->context_map, cfg->cbndx);
Will Deacon45ae7cf2013-06-24 18:31:25 +0100953}
954
955static int arm_smmu_domain_init(struct iommu_domain *domain)
956{
957 struct arm_smmu_domain *smmu_domain;
958 pgd_t *pgd;
959
960 /*
961 * Allocate the domain and initialise some of its data structures.
962 * We can't really do anything meaningful until we've added a
963 * master.
964 */
965 smmu_domain = kzalloc(sizeof(*smmu_domain), GFP_KERNEL);
966 if (!smmu_domain)
967 return -ENOMEM;
968
Mitchel Humpherys29073202014-07-08 09:52:18 -0700969 pgd = kcalloc(PTRS_PER_PGD, sizeof(pgd_t), GFP_KERNEL);
Will Deacon45ae7cf2013-06-24 18:31:25 +0100970 if (!pgd)
971 goto out_free_domain;
Will Deacon44680ee2014-06-25 11:29:12 +0100972 smmu_domain->cfg.pgd = pgd;
Will Deacon45ae7cf2013-06-24 18:31:25 +0100973
Will Deaconc9d09e22014-02-04 22:12:42 +0000974 spin_lock_init(&smmu_domain->lock);
Will Deacon45ae7cf2013-06-24 18:31:25 +0100975 domain->priv = smmu_domain;
976 return 0;
977
978out_free_domain:
979 kfree(smmu_domain);
980 return -ENOMEM;
981}
982
983static void arm_smmu_free_ptes(pmd_t *pmd)
984{
985 pgtable_t table = pmd_pgtable(*pmd);
Mitchel Humpherys29073202014-07-08 09:52:18 -0700986
Will Deacon45ae7cf2013-06-24 18:31:25 +0100987 pgtable_page_dtor(table);
988 __free_page(table);
989}
990
991static void arm_smmu_free_pmds(pud_t *pud)
992{
993 int i;
994 pmd_t *pmd, *pmd_base = pmd_offset(pud, 0);
995
996 pmd = pmd_base;
997 for (i = 0; i < PTRS_PER_PMD; ++i) {
998 if (pmd_none(*pmd))
999 continue;
1000
1001 arm_smmu_free_ptes(pmd);
1002 pmd++;
1003 }
1004
1005 pmd_free(NULL, pmd_base);
1006}
1007
1008static void arm_smmu_free_puds(pgd_t *pgd)
1009{
1010 int i;
1011 pud_t *pud, *pud_base = pud_offset(pgd, 0);
1012
1013 pud = pud_base;
1014 for (i = 0; i < PTRS_PER_PUD; ++i) {
1015 if (pud_none(*pud))
1016 continue;
1017
1018 arm_smmu_free_pmds(pud);
1019 pud++;
1020 }
1021
1022 pud_free(NULL, pud_base);
1023}
1024
1025static void arm_smmu_free_pgtables(struct arm_smmu_domain *smmu_domain)
1026{
1027 int i;
Will Deacon44680ee2014-06-25 11:29:12 +01001028 struct arm_smmu_cfg *cfg = &smmu_domain->cfg;
1029 pgd_t *pgd, *pgd_base = cfg->pgd;
Will Deacon45ae7cf2013-06-24 18:31:25 +01001030
1031 /*
1032 * Recursively free the page tables for this domain. We don't
Will Deacon34fb4b32014-02-26 11:14:37 +00001033 * care about speculative TLB filling because the tables should
1034 * not be active in any context bank at this point (SCTLR.M is 0).
Will Deacon45ae7cf2013-06-24 18:31:25 +01001035 */
1036 pgd = pgd_base;
1037 for (i = 0; i < PTRS_PER_PGD; ++i) {
1038 if (pgd_none(*pgd))
1039 continue;
1040 arm_smmu_free_puds(pgd);
1041 pgd++;
1042 }
1043
1044 kfree(pgd_base);
1045}
1046
1047static void arm_smmu_domain_destroy(struct iommu_domain *domain)
1048{
1049 struct arm_smmu_domain *smmu_domain = domain->priv;
Will Deacon1463fe42013-07-31 19:21:27 +01001050
1051 /*
1052 * Free the domain resources. We assume that all devices have
1053 * already been detached.
1054 */
Will Deacon45ae7cf2013-06-24 18:31:25 +01001055 arm_smmu_destroy_domain_context(domain);
1056 arm_smmu_free_pgtables(smmu_domain);
1057 kfree(smmu_domain);
1058}
1059
1060static int arm_smmu_master_configure_smrs(struct arm_smmu_device *smmu,
Will Deacona9a1b0b2014-05-01 18:05:08 +01001061 struct arm_smmu_master_cfg *cfg)
Will Deacon45ae7cf2013-06-24 18:31:25 +01001062{
1063 int i;
1064 struct arm_smmu_smr *smrs;
1065 void __iomem *gr0_base = ARM_SMMU_GR0(smmu);
1066
1067 if (!(smmu->features & ARM_SMMU_FEAT_STREAM_MATCH))
1068 return 0;
1069
Will Deacona9a1b0b2014-05-01 18:05:08 +01001070 if (cfg->smrs)
Will Deacon45ae7cf2013-06-24 18:31:25 +01001071 return -EEXIST;
1072
Mitchel Humpherys29073202014-07-08 09:52:18 -07001073 smrs = kmalloc_array(cfg->num_streamids, sizeof(*smrs), GFP_KERNEL);
Will Deacon45ae7cf2013-06-24 18:31:25 +01001074 if (!smrs) {
Will Deacona9a1b0b2014-05-01 18:05:08 +01001075 dev_err(smmu->dev, "failed to allocate %d SMRs\n",
1076 cfg->num_streamids);
Will Deacon45ae7cf2013-06-24 18:31:25 +01001077 return -ENOMEM;
1078 }
1079
Will Deacon44680ee2014-06-25 11:29:12 +01001080 /* Allocate the SMRs on the SMMU */
Will Deacona9a1b0b2014-05-01 18:05:08 +01001081 for (i = 0; i < cfg->num_streamids; ++i) {
Will Deacon45ae7cf2013-06-24 18:31:25 +01001082 int idx = __arm_smmu_alloc_bitmap(smmu->smr_map, 0,
1083 smmu->num_mapping_groups);
1084 if (IS_ERR_VALUE(idx)) {
1085 dev_err(smmu->dev, "failed to allocate free SMR\n");
1086 goto err_free_smrs;
1087 }
1088
1089 smrs[i] = (struct arm_smmu_smr) {
1090 .idx = idx,
1091 .mask = 0, /* We don't currently share SMRs */
Will Deacona9a1b0b2014-05-01 18:05:08 +01001092 .id = cfg->streamids[i],
Will Deacon45ae7cf2013-06-24 18:31:25 +01001093 };
1094 }
1095
1096 /* It worked! Now, poke the actual hardware */
Will Deacona9a1b0b2014-05-01 18:05:08 +01001097 for (i = 0; i < cfg->num_streamids; ++i) {
Will Deacon45ae7cf2013-06-24 18:31:25 +01001098 u32 reg = SMR_VALID | smrs[i].id << SMR_ID_SHIFT |
1099 smrs[i].mask << SMR_MASK_SHIFT;
1100 writel_relaxed(reg, gr0_base + ARM_SMMU_GR0_SMR(smrs[i].idx));
1101 }
1102
Will Deacona9a1b0b2014-05-01 18:05:08 +01001103 cfg->smrs = smrs;
Will Deacon45ae7cf2013-06-24 18:31:25 +01001104 return 0;
1105
1106err_free_smrs:
1107 while (--i >= 0)
1108 __arm_smmu_free_bitmap(smmu->smr_map, smrs[i].idx);
1109 kfree(smrs);
1110 return -ENOSPC;
1111}
1112
1113static void arm_smmu_master_free_smrs(struct arm_smmu_device *smmu,
Will Deacona9a1b0b2014-05-01 18:05:08 +01001114 struct arm_smmu_master_cfg *cfg)
Will Deacon45ae7cf2013-06-24 18:31:25 +01001115{
1116 int i;
1117 void __iomem *gr0_base = ARM_SMMU_GR0(smmu);
Will Deacona9a1b0b2014-05-01 18:05:08 +01001118 struct arm_smmu_smr *smrs = cfg->smrs;
Will Deacon45ae7cf2013-06-24 18:31:25 +01001119
1120 /* Invalidate the SMRs before freeing back to the allocator */
Will Deacona9a1b0b2014-05-01 18:05:08 +01001121 for (i = 0; i < cfg->num_streamids; ++i) {
Will Deacon45ae7cf2013-06-24 18:31:25 +01001122 u8 idx = smrs[i].idx;
Mitchel Humpherys29073202014-07-08 09:52:18 -07001123
Will Deacon45ae7cf2013-06-24 18:31:25 +01001124 writel_relaxed(~SMR_VALID, gr0_base + ARM_SMMU_GR0_SMR(idx));
1125 __arm_smmu_free_bitmap(smmu->smr_map, idx);
1126 }
1127
Will Deacona9a1b0b2014-05-01 18:05:08 +01001128 cfg->smrs = NULL;
Will Deacon45ae7cf2013-06-24 18:31:25 +01001129 kfree(smrs);
1130}
1131
1132static void arm_smmu_bypass_stream_mapping(struct arm_smmu_device *smmu,
Will Deacona9a1b0b2014-05-01 18:05:08 +01001133 struct arm_smmu_master_cfg *cfg)
Will Deacon45ae7cf2013-06-24 18:31:25 +01001134{
1135 int i;
1136 void __iomem *gr0_base = ARM_SMMU_GR0(smmu);
1137
Will Deacona9a1b0b2014-05-01 18:05:08 +01001138 for (i = 0; i < cfg->num_streamids; ++i) {
1139 u16 sid = cfg->streamids[i];
Mitchel Humpherys29073202014-07-08 09:52:18 -07001140
Will Deacon45ae7cf2013-06-24 18:31:25 +01001141 writel_relaxed(S2CR_TYPE_BYPASS,
1142 gr0_base + ARM_SMMU_GR0_S2CR(sid));
1143 }
1144}
1145
1146static int arm_smmu_domain_add_master(struct arm_smmu_domain *smmu_domain,
Will Deacona9a1b0b2014-05-01 18:05:08 +01001147 struct arm_smmu_master_cfg *cfg)
Will Deacon45ae7cf2013-06-24 18:31:25 +01001148{
1149 int i, ret;
Will Deacon44680ee2014-06-25 11:29:12 +01001150 struct arm_smmu_device *smmu = smmu_domain->smmu;
Will Deacon45ae7cf2013-06-24 18:31:25 +01001151 void __iomem *gr0_base = ARM_SMMU_GR0(smmu);
1152
Will Deacona9a1b0b2014-05-01 18:05:08 +01001153 ret = arm_smmu_master_configure_smrs(smmu, cfg);
Will Deacon45ae7cf2013-06-24 18:31:25 +01001154 if (ret)
1155 return ret;
1156
Will Deacona9a1b0b2014-05-01 18:05:08 +01001157 for (i = 0; i < cfg->num_streamids; ++i) {
Will Deacon45ae7cf2013-06-24 18:31:25 +01001158 u32 idx, s2cr;
Mitchel Humpherys29073202014-07-08 09:52:18 -07001159
Will Deacona9a1b0b2014-05-01 18:05:08 +01001160 idx = cfg->smrs ? cfg->smrs[i].idx : cfg->streamids[i];
Kefeng Wang6069d232014-04-18 10:20:48 +08001161 s2cr = S2CR_TYPE_TRANS |
Will Deacon44680ee2014-06-25 11:29:12 +01001162 (smmu_domain->cfg.cbndx << S2CR_CBNDX_SHIFT);
Will Deacon45ae7cf2013-06-24 18:31:25 +01001163 writel_relaxed(s2cr, gr0_base + ARM_SMMU_GR0_S2CR(idx));
1164 }
1165
1166 return 0;
1167}
1168
1169static void arm_smmu_domain_remove_master(struct arm_smmu_domain *smmu_domain,
Will Deacona9a1b0b2014-05-01 18:05:08 +01001170 struct arm_smmu_master_cfg *cfg)
Will Deacon45ae7cf2013-06-24 18:31:25 +01001171{
Will Deacon44680ee2014-06-25 11:29:12 +01001172 struct arm_smmu_device *smmu = smmu_domain->smmu;
Will Deacon45ae7cf2013-06-24 18:31:25 +01001173
1174 /*
1175 * We *must* clear the S2CR first, because freeing the SMR means
1176 * that it can be re-allocated immediately.
1177 */
Will Deacona9a1b0b2014-05-01 18:05:08 +01001178 arm_smmu_bypass_stream_mapping(smmu, cfg);
1179 arm_smmu_master_free_smrs(smmu, cfg);
Will Deacon45ae7cf2013-06-24 18:31:25 +01001180}
1181
1182static int arm_smmu_attach_dev(struct iommu_domain *domain, struct device *dev)
1183{
Mitchel Humpherysa18037b2014-07-30 18:58:13 +01001184 int ret;
Will Deacon45ae7cf2013-06-24 18:31:25 +01001185 struct arm_smmu_domain *smmu_domain = domain->priv;
Mitchel Humpherysa18037b2014-07-30 18:58:13 +01001186 struct arm_smmu_device *smmu, *dom_smmu;
Will Deacona9a1b0b2014-05-01 18:05:08 +01001187 struct arm_smmu_master_cfg *cfg;
Will Deacon45ae7cf2013-06-24 18:31:25 +01001188
Will Deacon44680ee2014-06-25 11:29:12 +01001189 smmu = dev_get_master_dev(dev)->archdata.iommu;
1190 if (!smmu) {
Will Deacon45ae7cf2013-06-24 18:31:25 +01001191 dev_err(dev, "cannot attach to SMMU, is it on the same bus?\n");
1192 return -ENXIO;
1193 }
1194
1195 /*
Will Deacon44680ee2014-06-25 11:29:12 +01001196 * Sanity check the domain. We don't support domains across
1197 * different SMMUs.
Will Deacon45ae7cf2013-06-24 18:31:25 +01001198 */
Mitchel Humpherysa18037b2014-07-30 18:58:13 +01001199 dom_smmu = ACCESS_ONCE(smmu_domain->smmu);
1200 if (!dom_smmu) {
Will Deacon45ae7cf2013-06-24 18:31:25 +01001201 /* Now that we have a master, we can finalise the domain */
Will Deacon44680ee2014-06-25 11:29:12 +01001202 ret = arm_smmu_init_domain_context(domain, smmu);
Will Deacon45ae7cf2013-06-24 18:31:25 +01001203 if (IS_ERR_VALUE(ret))
Mitchel Humpherysa18037b2014-07-30 18:58:13 +01001204 return ret;
1205
1206 dom_smmu = smmu_domain->smmu;
1207 }
1208
1209 if (dom_smmu != smmu) {
Will Deacon45ae7cf2013-06-24 18:31:25 +01001210 dev_err(dev,
1211 "cannot attach to SMMU %s whilst already attached to domain on SMMU %s\n",
Mitchel Humpherysa18037b2014-07-30 18:58:13 +01001212 dev_name(smmu_domain->smmu->dev), dev_name(smmu->dev));
1213 return -EINVAL;
Will Deacon45ae7cf2013-06-24 18:31:25 +01001214 }
Will Deacon45ae7cf2013-06-24 18:31:25 +01001215
1216 /* Looks ok, so add the device to the domain */
Will Deacon44680ee2014-06-25 11:29:12 +01001217 cfg = find_smmu_master_cfg(smmu_domain->smmu, dev);
Will Deacona9a1b0b2014-05-01 18:05:08 +01001218 if (!cfg)
Will Deacon45ae7cf2013-06-24 18:31:25 +01001219 return -ENODEV;
1220
Will Deacona9a1b0b2014-05-01 18:05:08 +01001221 return arm_smmu_domain_add_master(smmu_domain, cfg);
Will Deacon45ae7cf2013-06-24 18:31:25 +01001222}
1223
1224static void arm_smmu_detach_dev(struct iommu_domain *domain, struct device *dev)
1225{
1226 struct arm_smmu_domain *smmu_domain = domain->priv;
Will Deacona9a1b0b2014-05-01 18:05:08 +01001227 struct arm_smmu_master_cfg *cfg;
Will Deacon45ae7cf2013-06-24 18:31:25 +01001228
Will Deacon44680ee2014-06-25 11:29:12 +01001229 cfg = find_smmu_master_cfg(smmu_domain->smmu, dev);
Will Deacona9a1b0b2014-05-01 18:05:08 +01001230 if (cfg)
1231 arm_smmu_domain_remove_master(smmu_domain, cfg);
Will Deacon45ae7cf2013-06-24 18:31:25 +01001232}
1233
Will Deacon45ae7cf2013-06-24 18:31:25 +01001234static bool arm_smmu_pte_is_contiguous_range(unsigned long addr,
1235 unsigned long end)
1236{
1237 return !(addr & ~ARM_SMMU_PTE_CONT_MASK) &&
1238 (addr + ARM_SMMU_PTE_CONT_SIZE <= end);
1239}
1240
1241static int arm_smmu_alloc_init_pte(struct arm_smmu_device *smmu, pmd_t *pmd,
1242 unsigned long addr, unsigned long end,
Will Deaconb410aed2014-02-20 16:31:06 +00001243 unsigned long pfn, int prot, int stage)
Will Deacon45ae7cf2013-06-24 18:31:25 +01001244{
1245 pte_t *pte, *start;
Will Deaconcf2d45b2013-11-05 16:32:00 +00001246 pteval_t pteval = ARM_SMMU_PTE_PAGE | ARM_SMMU_PTE_AF | ARM_SMMU_PTE_XN;
Will Deacon45ae7cf2013-06-24 18:31:25 +01001247
1248 if (pmd_none(*pmd)) {
1249 /* Allocate a new set of tables */
Will Deaconc9d09e22014-02-04 22:12:42 +00001250 pgtable_t table = alloc_page(GFP_ATOMIC|__GFP_ZERO);
Mitchel Humpherys29073202014-07-08 09:52:18 -07001251
Will Deacon45ae7cf2013-06-24 18:31:25 +01001252 if (!table)
1253 return -ENOMEM;
1254
Will Deacon6dd35f42014-02-05 17:49:34 +00001255 arm_smmu_flush_pgtable(smmu, page_address(table), PAGE_SIZE);
Kirill A. Shutemov01058e72013-11-14 14:31:49 -08001256 if (!pgtable_page_ctor(table)) {
1257 __free_page(table);
1258 return -ENOMEM;
1259 }
Will Deacon45ae7cf2013-06-24 18:31:25 +01001260 pmd_populate(NULL, pmd, table);
1261 arm_smmu_flush_pgtable(smmu, pmd, sizeof(*pmd));
1262 }
1263
1264 if (stage == 1) {
Will Deacon1463fe42013-07-31 19:21:27 +01001265 pteval |= ARM_SMMU_PTE_AP_UNPRIV | ARM_SMMU_PTE_nG;
Will Deaconb410aed2014-02-20 16:31:06 +00001266 if (!(prot & IOMMU_WRITE) && (prot & IOMMU_READ))
Will Deacon45ae7cf2013-06-24 18:31:25 +01001267 pteval |= ARM_SMMU_PTE_AP_RDONLY;
1268
Will Deaconb410aed2014-02-20 16:31:06 +00001269 if (prot & IOMMU_CACHE)
Will Deacon45ae7cf2013-06-24 18:31:25 +01001270 pteval |= (MAIR_ATTR_IDX_CACHE <<
1271 ARM_SMMU_PTE_ATTRINDX_SHIFT);
1272 } else {
1273 pteval |= ARM_SMMU_PTE_HAP_FAULT;
Will Deaconb410aed2014-02-20 16:31:06 +00001274 if (prot & IOMMU_READ)
Will Deacon45ae7cf2013-06-24 18:31:25 +01001275 pteval |= ARM_SMMU_PTE_HAP_READ;
Will Deaconb410aed2014-02-20 16:31:06 +00001276 if (prot & IOMMU_WRITE)
Will Deacon45ae7cf2013-06-24 18:31:25 +01001277 pteval |= ARM_SMMU_PTE_HAP_WRITE;
Will Deaconb410aed2014-02-20 16:31:06 +00001278 if (prot & IOMMU_CACHE)
Will Deacon45ae7cf2013-06-24 18:31:25 +01001279 pteval |= ARM_SMMU_PTE_MEMATTR_OIWB;
1280 else
1281 pteval |= ARM_SMMU_PTE_MEMATTR_NC;
1282 }
1283
1284 /* If no access, create a faulting entry to avoid TLB fills */
Will Deaconb410aed2014-02-20 16:31:06 +00001285 if (prot & IOMMU_EXEC)
Will Deaconcf2d45b2013-11-05 16:32:00 +00001286 pteval &= ~ARM_SMMU_PTE_XN;
Will Deaconb410aed2014-02-20 16:31:06 +00001287 else if (!(prot & (IOMMU_READ | IOMMU_WRITE)))
Will Deacon45ae7cf2013-06-24 18:31:25 +01001288 pteval &= ~ARM_SMMU_PTE_PAGE;
1289
1290 pteval |= ARM_SMMU_PTE_SH_IS;
1291 start = pmd_page_vaddr(*pmd) + pte_index(addr);
1292 pte = start;
1293
1294 /*
1295 * Install the page table entries. This is fairly complicated
1296 * since we attempt to make use of the contiguous hint in the
1297 * ptes where possible. The contiguous hint indicates a series
1298 * of ARM_SMMU_PTE_CONT_ENTRIES ptes mapping a physically
1299 * contiguous region with the following constraints:
1300 *
1301 * - The region start is aligned to ARM_SMMU_PTE_CONT_SIZE
1302 * - Each pte in the region has the contiguous hint bit set
1303 *
1304 * This complicates unmapping (also handled by this code, when
1305 * neither IOMMU_READ or IOMMU_WRITE are set) because it is
1306 * possible, yet highly unlikely, that a client may unmap only
1307 * part of a contiguous range. This requires clearing of the
1308 * contiguous hint bits in the range before installing the new
1309 * faulting entries.
1310 *
1311 * Note that re-mapping an address range without first unmapping
1312 * it is not supported, so TLB invalidation is not required here
1313 * and is instead performed at unmap and domain-init time.
1314 */
1315 do {
1316 int i = 1;
Mitchel Humpherys29073202014-07-08 09:52:18 -07001317
Will Deacon45ae7cf2013-06-24 18:31:25 +01001318 pteval &= ~ARM_SMMU_PTE_CONT;
1319
1320 if (arm_smmu_pte_is_contiguous_range(addr, end)) {
1321 i = ARM_SMMU_PTE_CONT_ENTRIES;
1322 pteval |= ARM_SMMU_PTE_CONT;
1323 } else if (pte_val(*pte) &
1324 (ARM_SMMU_PTE_CONT | ARM_SMMU_PTE_PAGE)) {
1325 int j;
1326 pte_t *cont_start;
1327 unsigned long idx = pte_index(addr);
1328
1329 idx &= ~(ARM_SMMU_PTE_CONT_ENTRIES - 1);
1330 cont_start = pmd_page_vaddr(*pmd) + idx;
1331 for (j = 0; j < ARM_SMMU_PTE_CONT_ENTRIES; ++j)
Mitchel Humpherys29073202014-07-08 09:52:18 -07001332 pte_val(*(cont_start + j)) &=
1333 ~ARM_SMMU_PTE_CONT;
Will Deacon45ae7cf2013-06-24 18:31:25 +01001334
1335 arm_smmu_flush_pgtable(smmu, cont_start,
1336 sizeof(*pte) *
1337 ARM_SMMU_PTE_CONT_ENTRIES);
1338 }
1339
1340 do {
1341 *pte = pfn_pte(pfn, __pgprot(pteval));
1342 } while (pte++, pfn++, addr += PAGE_SIZE, --i);
1343 } while (addr != end);
1344
1345 arm_smmu_flush_pgtable(smmu, start, sizeof(*pte) * (pte - start));
1346 return 0;
1347}
1348
1349static int arm_smmu_alloc_init_pmd(struct arm_smmu_device *smmu, pud_t *pud,
1350 unsigned long addr, unsigned long end,
Will Deaconb410aed2014-02-20 16:31:06 +00001351 phys_addr_t phys, int prot, int stage)
Will Deacon45ae7cf2013-06-24 18:31:25 +01001352{
1353 int ret;
1354 pmd_t *pmd;
1355 unsigned long next, pfn = __phys_to_pfn(phys);
1356
1357#ifndef __PAGETABLE_PMD_FOLDED
1358 if (pud_none(*pud)) {
Will Deaconc9d09e22014-02-04 22:12:42 +00001359 pmd = (pmd_t *)get_zeroed_page(GFP_ATOMIC);
Will Deacon45ae7cf2013-06-24 18:31:25 +01001360 if (!pmd)
1361 return -ENOMEM;
Yifan Zhang97a64422014-01-03 12:01:26 +00001362
Will Deacon6dd35f42014-02-05 17:49:34 +00001363 arm_smmu_flush_pgtable(smmu, pmd, PAGE_SIZE);
Yifan Zhang97a64422014-01-03 12:01:26 +00001364 pud_populate(NULL, pud, pmd);
1365 arm_smmu_flush_pgtable(smmu, pud, sizeof(*pud));
1366
1367 pmd += pmd_index(addr);
Will Deacon45ae7cf2013-06-24 18:31:25 +01001368 } else
1369#endif
1370 pmd = pmd_offset(pud, addr);
1371
1372 do {
1373 next = pmd_addr_end(addr, end);
Bin Wangaca1bc42014-03-21 10:06:07 +00001374 ret = arm_smmu_alloc_init_pte(smmu, pmd, addr, next, pfn,
Will Deaconb410aed2014-02-20 16:31:06 +00001375 prot, stage);
Will Deacon45ae7cf2013-06-24 18:31:25 +01001376 phys += next - addr;
1377 } while (pmd++, addr = next, addr < end);
1378
1379 return ret;
1380}
1381
1382static int arm_smmu_alloc_init_pud(struct arm_smmu_device *smmu, pgd_t *pgd,
1383 unsigned long addr, unsigned long end,
Will Deaconb410aed2014-02-20 16:31:06 +00001384 phys_addr_t phys, int prot, int stage)
Will Deacon45ae7cf2013-06-24 18:31:25 +01001385{
1386 int ret = 0;
1387 pud_t *pud;
1388 unsigned long next;
1389
1390#ifndef __PAGETABLE_PUD_FOLDED
1391 if (pgd_none(*pgd)) {
Will Deaconc9d09e22014-02-04 22:12:42 +00001392 pud = (pud_t *)get_zeroed_page(GFP_ATOMIC);
Will Deacon45ae7cf2013-06-24 18:31:25 +01001393 if (!pud)
1394 return -ENOMEM;
Yifan Zhang97a64422014-01-03 12:01:26 +00001395
Will Deacon6dd35f42014-02-05 17:49:34 +00001396 arm_smmu_flush_pgtable(smmu, pud, PAGE_SIZE);
Yifan Zhang97a64422014-01-03 12:01:26 +00001397 pgd_populate(NULL, pgd, pud);
1398 arm_smmu_flush_pgtable(smmu, pgd, sizeof(*pgd));
1399
1400 pud += pud_index(addr);
Will Deacon45ae7cf2013-06-24 18:31:25 +01001401 } else
1402#endif
1403 pud = pud_offset(pgd, addr);
1404
1405 do {
1406 next = pud_addr_end(addr, end);
1407 ret = arm_smmu_alloc_init_pmd(smmu, pud, addr, next, phys,
Will Deaconb410aed2014-02-20 16:31:06 +00001408 prot, stage);
Will Deacon45ae7cf2013-06-24 18:31:25 +01001409 phys += next - addr;
1410 } while (pud++, addr = next, addr < end);
1411
1412 return ret;
1413}
1414
1415static int arm_smmu_handle_mapping(struct arm_smmu_domain *smmu_domain,
1416 unsigned long iova, phys_addr_t paddr,
Will Deaconb410aed2014-02-20 16:31:06 +00001417 size_t size, int prot)
Will Deacon45ae7cf2013-06-24 18:31:25 +01001418{
1419 int ret, stage;
1420 unsigned long end;
1421 phys_addr_t input_mask, output_mask;
Will Deacon44680ee2014-06-25 11:29:12 +01001422 struct arm_smmu_device *smmu = smmu_domain->smmu;
1423 struct arm_smmu_cfg *cfg = &smmu_domain->cfg;
1424 pgd_t *pgd = cfg->pgd;
Will Deaconb410aed2014-02-20 16:31:06 +00001425 unsigned long flags;
Will Deacon45ae7cf2013-06-24 18:31:25 +01001426
Will Deacon44680ee2014-06-25 11:29:12 +01001427 if (cfg->cbar == CBAR_TYPE_S2_TRANS) {
Will Deacon45ae7cf2013-06-24 18:31:25 +01001428 stage = 2;
1429 output_mask = (1ULL << smmu->s2_output_size) - 1;
1430 } else {
1431 stage = 1;
1432 output_mask = (1ULL << smmu->s1_output_size) - 1;
1433 }
1434
1435 if (!pgd)
1436 return -EINVAL;
1437
1438 if (size & ~PAGE_MASK)
1439 return -EINVAL;
1440
1441 input_mask = (1ULL << smmu->input_size) - 1;
1442 if ((phys_addr_t)iova & ~input_mask)
1443 return -ERANGE;
1444
1445 if (paddr & ~output_mask)
1446 return -ERANGE;
1447
Will Deaconb410aed2014-02-20 16:31:06 +00001448 spin_lock_irqsave(&smmu_domain->lock, flags);
Will Deacon45ae7cf2013-06-24 18:31:25 +01001449 pgd += pgd_index(iova);
1450 end = iova + size;
1451 do {
1452 unsigned long next = pgd_addr_end(iova, end);
1453
1454 ret = arm_smmu_alloc_init_pud(smmu, pgd, iova, next, paddr,
Will Deaconb410aed2014-02-20 16:31:06 +00001455 prot, stage);
Will Deacon45ae7cf2013-06-24 18:31:25 +01001456 if (ret)
1457 goto out_unlock;
1458
1459 paddr += next - iova;
1460 iova = next;
1461 } while (pgd++, iova != end);
1462
1463out_unlock:
Will Deaconb410aed2014-02-20 16:31:06 +00001464 spin_unlock_irqrestore(&smmu_domain->lock, flags);
Will Deacon45ae7cf2013-06-24 18:31:25 +01001465
Will Deacon45ae7cf2013-06-24 18:31:25 +01001466 return ret;
1467}
1468
1469static int arm_smmu_map(struct iommu_domain *domain, unsigned long iova,
Will Deaconb410aed2014-02-20 16:31:06 +00001470 phys_addr_t paddr, size_t size, int prot)
Will Deacon45ae7cf2013-06-24 18:31:25 +01001471{
1472 struct arm_smmu_domain *smmu_domain = domain->priv;
Will Deacon45ae7cf2013-06-24 18:31:25 +01001473
Will Deacon5552ecd2013-11-08 15:08:06 +00001474 if (!smmu_domain)
Will Deacon45ae7cf2013-06-24 18:31:25 +01001475 return -ENODEV;
1476
Will Deaconb410aed2014-02-20 16:31:06 +00001477 return arm_smmu_handle_mapping(smmu_domain, iova, paddr, size, prot);
Will Deacon45ae7cf2013-06-24 18:31:25 +01001478}
1479
1480static size_t arm_smmu_unmap(struct iommu_domain *domain, unsigned long iova,
1481 size_t size)
1482{
1483 int ret;
1484 struct arm_smmu_domain *smmu_domain = domain->priv;
Will Deacon45ae7cf2013-06-24 18:31:25 +01001485
1486 ret = arm_smmu_handle_mapping(smmu_domain, iova, 0, size, 0);
Will Deacon44680ee2014-06-25 11:29:12 +01001487 arm_smmu_tlb_inv_context(smmu_domain);
Laurent Pinchart16c50dcf2014-02-28 15:37:10 +00001488 return ret ? 0 : size;
Will Deacon45ae7cf2013-06-24 18:31:25 +01001489}
1490
1491static phys_addr_t arm_smmu_iova_to_phys(struct iommu_domain *domain,
1492 dma_addr_t iova)
1493{
Will Deacona44a9792013-11-07 18:47:50 +00001494 pgd_t *pgdp, pgd;
1495 pud_t pud;
1496 pmd_t pmd;
1497 pte_t pte;
Will Deacon45ae7cf2013-06-24 18:31:25 +01001498 struct arm_smmu_domain *smmu_domain = domain->priv;
Will Deacon44680ee2014-06-25 11:29:12 +01001499 struct arm_smmu_cfg *cfg = &smmu_domain->cfg;
Will Deacon45ae7cf2013-06-24 18:31:25 +01001500
Will Deacon44680ee2014-06-25 11:29:12 +01001501 pgdp = cfg->pgd;
Will Deacona44a9792013-11-07 18:47:50 +00001502 if (!pgdp)
1503 return 0;
Will Deacon45ae7cf2013-06-24 18:31:25 +01001504
Will Deacona44a9792013-11-07 18:47:50 +00001505 pgd = *(pgdp + pgd_index(iova));
1506 if (pgd_none(pgd))
1507 return 0;
Will Deacon45ae7cf2013-06-24 18:31:25 +01001508
Will Deacona44a9792013-11-07 18:47:50 +00001509 pud = *pud_offset(&pgd, iova);
1510 if (pud_none(pud))
1511 return 0;
Will Deacon45ae7cf2013-06-24 18:31:25 +01001512
Will Deacona44a9792013-11-07 18:47:50 +00001513 pmd = *pmd_offset(&pud, iova);
1514 if (pmd_none(pmd))
1515 return 0;
Will Deacon45ae7cf2013-06-24 18:31:25 +01001516
Will Deacona44a9792013-11-07 18:47:50 +00001517 pte = *(pmd_page_vaddr(pmd) + pte_index(iova));
Will Deacon45ae7cf2013-06-24 18:31:25 +01001518 if (pte_none(pte))
Will Deacona44a9792013-11-07 18:47:50 +00001519 return 0;
Will Deacon45ae7cf2013-06-24 18:31:25 +01001520
Will Deacona44a9792013-11-07 18:47:50 +00001521 return __pfn_to_phys(pte_pfn(pte)) | (iova & ~PAGE_MASK);
Will Deacon45ae7cf2013-06-24 18:31:25 +01001522}
1523
1524static int arm_smmu_domain_has_cap(struct iommu_domain *domain,
1525 unsigned long cap)
1526{
Will Deacon45ae7cf2013-06-24 18:31:25 +01001527 struct arm_smmu_domain *smmu_domain = domain->priv;
Will Deacond3bca162014-07-04 11:06:01 +01001528 struct arm_smmu_device *smmu = smmu_domain->smmu;
1529 u32 features = smmu ? smmu->features : 0;
Will Deacon45ae7cf2013-06-24 18:31:25 +01001530
Will Deacond0948942014-06-24 17:30:10 +01001531 switch (cap) {
1532 case IOMMU_CAP_CACHE_COHERENCY:
1533 return features & ARM_SMMU_FEAT_COHERENT_WALK;
1534 case IOMMU_CAP_INTR_REMAP:
1535 return 1; /* MSIs are just memory writes */
1536 default:
1537 return 0;
1538 }
Will Deacon45ae7cf2013-06-24 18:31:25 +01001539}
Will Deacon45ae7cf2013-06-24 18:31:25 +01001540
Will Deacona9a1b0b2014-05-01 18:05:08 +01001541static int __arm_smmu_get_pci_sid(struct pci_dev *pdev, u16 alias, void *data)
1542{
1543 *((u16 *)data) = alias;
1544 return 0; /* Continue walking */
Will Deacon45ae7cf2013-06-24 18:31:25 +01001545}
1546
1547static int arm_smmu_add_device(struct device *dev)
1548{
Will Deacona9a1b0b2014-05-01 18:05:08 +01001549 struct arm_smmu_device *smmu;
Antonios Motakis5fc63a72013-10-18 16:08:29 +01001550 struct iommu_group *group;
1551 int ret;
1552
1553 if (dev->archdata.iommu) {
1554 dev_warn(dev, "IOMMU driver already assigned to device\n");
1555 return -EINVAL;
1556 }
Will Deacon45ae7cf2013-06-24 18:31:25 +01001557
Will Deacon44680ee2014-06-25 11:29:12 +01001558 smmu = find_smmu_for_device(dev);
Will Deacona9a1b0b2014-05-01 18:05:08 +01001559 if (!smmu)
Will Deacon45ae7cf2013-06-24 18:31:25 +01001560 return -ENODEV;
1561
Antonios Motakis5fc63a72013-10-18 16:08:29 +01001562 group = iommu_group_alloc();
1563 if (IS_ERR(group)) {
1564 dev_err(dev, "Failed to allocate IOMMU group\n");
1565 return PTR_ERR(group);
1566 }
1567
Will Deacona9a1b0b2014-05-01 18:05:08 +01001568 if (dev_is_pci(dev)) {
1569 struct arm_smmu_master_cfg *cfg;
1570 struct pci_dev *pdev = to_pci_dev(dev);
Antonios Motakis5fc63a72013-10-18 16:08:29 +01001571
Will Deacona9a1b0b2014-05-01 18:05:08 +01001572 cfg = kzalloc(sizeof(*cfg), GFP_KERNEL);
1573 if (!cfg) {
1574 ret = -ENOMEM;
1575 goto out_put_group;
1576 }
1577
1578 cfg->num_streamids = 1;
1579 /*
1580 * Assume Stream ID == Requester ID for now.
1581 * We need a way to describe the ID mappings in FDT.
1582 */
1583 pci_for_each_dma_alias(pdev, __arm_smmu_get_pci_sid,
1584 &cfg->streamids[0]);
1585 dev->archdata.iommu = cfg;
1586 } else {
1587 dev->archdata.iommu = smmu;
1588 }
1589
1590 ret = iommu_group_add_device(group, dev);
1591
1592out_put_group:
1593 iommu_group_put(group);
Antonios Motakis5fc63a72013-10-18 16:08:29 +01001594 return ret;
Will Deacon45ae7cf2013-06-24 18:31:25 +01001595}
1596
1597static void arm_smmu_remove_device(struct device *dev)
1598{
Will Deacona9a1b0b2014-05-01 18:05:08 +01001599 if (dev_is_pci(dev))
1600 kfree(dev->archdata.iommu);
1601
Will Deacon45ae7cf2013-06-24 18:31:25 +01001602 dev->archdata.iommu = NULL;
Antonios Motakis5fc63a72013-10-18 16:08:29 +01001603 iommu_group_remove_device(dev);
Will Deacon45ae7cf2013-06-24 18:31:25 +01001604}
1605
Thierry Redingb22f6432014-06-27 09:03:12 +02001606static const struct iommu_ops arm_smmu_ops = {
Will Deacon45ae7cf2013-06-24 18:31:25 +01001607 .domain_init = arm_smmu_domain_init,
1608 .domain_destroy = arm_smmu_domain_destroy,
1609 .attach_dev = arm_smmu_attach_dev,
1610 .detach_dev = arm_smmu_detach_dev,
1611 .map = arm_smmu_map,
1612 .unmap = arm_smmu_unmap,
1613 .iova_to_phys = arm_smmu_iova_to_phys,
1614 .domain_has_cap = arm_smmu_domain_has_cap,
1615 .add_device = arm_smmu_add_device,
1616 .remove_device = arm_smmu_remove_device,
1617 .pgsize_bitmap = (SECTION_SIZE |
1618 ARM_SMMU_PTE_CONT_SIZE |
1619 PAGE_SIZE),
1620};
1621
1622static void arm_smmu_device_reset(struct arm_smmu_device *smmu)
1623{
1624 void __iomem *gr0_base = ARM_SMMU_GR0(smmu);
Andreas Herrmann659db6f2013-10-01 13:39:09 +01001625 void __iomem *cb_base;
Will Deacon45ae7cf2013-06-24 18:31:25 +01001626 int i = 0;
Andreas Herrmann659db6f2013-10-01 13:39:09 +01001627 u32 reg;
1628
Andreas Herrmann3a5df8f2014-01-30 18:18:04 +00001629 /* clear global FSR */
1630 reg = readl_relaxed(ARM_SMMU_GR0_NS(smmu) + ARM_SMMU_GR0_sGFSR);
1631 writel(reg, ARM_SMMU_GR0_NS(smmu) + ARM_SMMU_GR0_sGFSR);
Will Deacon45ae7cf2013-06-24 18:31:25 +01001632
1633 /* Mark all SMRn as invalid and all S2CRn as bypass */
1634 for (i = 0; i < smmu->num_mapping_groups; ++i) {
1635 writel_relaxed(~SMR_VALID, gr0_base + ARM_SMMU_GR0_SMR(i));
Mitchel Humpherys29073202014-07-08 09:52:18 -07001636 writel_relaxed(S2CR_TYPE_BYPASS,
1637 gr0_base + ARM_SMMU_GR0_S2CR(i));
Will Deacon45ae7cf2013-06-24 18:31:25 +01001638 }
1639
Andreas Herrmann659db6f2013-10-01 13:39:09 +01001640 /* Make sure all context banks are disabled and clear CB_FSR */
1641 for (i = 0; i < smmu->num_context_banks; ++i) {
1642 cb_base = ARM_SMMU_CB_BASE(smmu) + ARM_SMMU_CB(smmu, i);
1643 writel_relaxed(0, cb_base + ARM_SMMU_CB_SCTLR);
1644 writel_relaxed(FSR_FAULT, cb_base + ARM_SMMU_CB_FSR);
1645 }
Will Deacon1463fe42013-07-31 19:21:27 +01001646
Will Deacon45ae7cf2013-06-24 18:31:25 +01001647 /* Invalidate the TLB, just in case */
1648 writel_relaxed(0, gr0_base + ARM_SMMU_GR0_STLBIALL);
1649 writel_relaxed(0, gr0_base + ARM_SMMU_GR0_TLBIALLH);
1650 writel_relaxed(0, gr0_base + ARM_SMMU_GR0_TLBIALLNSNH);
1651
Andreas Herrmann3a5df8f2014-01-30 18:18:04 +00001652 reg = readl_relaxed(ARM_SMMU_GR0_NS(smmu) + ARM_SMMU_GR0_sCR0);
Andreas Herrmann659db6f2013-10-01 13:39:09 +01001653
Will Deacon45ae7cf2013-06-24 18:31:25 +01001654 /* Enable fault reporting */
Andreas Herrmann659db6f2013-10-01 13:39:09 +01001655 reg |= (sCR0_GFRE | sCR0_GFIE | sCR0_GCFGFRE | sCR0_GCFGFIE);
Will Deacon45ae7cf2013-06-24 18:31:25 +01001656
1657 /* Disable TLB broadcasting. */
Andreas Herrmann659db6f2013-10-01 13:39:09 +01001658 reg |= (sCR0_VMIDPNE | sCR0_PTM);
Will Deacon45ae7cf2013-06-24 18:31:25 +01001659
1660 /* Enable client access, but bypass when no mapping is found */
Andreas Herrmann659db6f2013-10-01 13:39:09 +01001661 reg &= ~(sCR0_CLIENTPD | sCR0_USFCFG);
Will Deacon45ae7cf2013-06-24 18:31:25 +01001662
1663 /* Disable forced broadcasting */
Andreas Herrmann659db6f2013-10-01 13:39:09 +01001664 reg &= ~sCR0_FB;
Will Deacon45ae7cf2013-06-24 18:31:25 +01001665
1666 /* Don't upgrade barriers */
Andreas Herrmann659db6f2013-10-01 13:39:09 +01001667 reg &= ~(sCR0_BSU_MASK << sCR0_BSU_SHIFT);
Will Deacon45ae7cf2013-06-24 18:31:25 +01001668
1669 /* Push the button */
1670 arm_smmu_tlb_sync(smmu);
Andreas Herrmann3a5df8f2014-01-30 18:18:04 +00001671 writel(reg, ARM_SMMU_GR0_NS(smmu) + ARM_SMMU_GR0_sCR0);
Will Deacon45ae7cf2013-06-24 18:31:25 +01001672}
1673
1674static int arm_smmu_id_size_to_bits(int size)
1675{
1676 switch (size) {
1677 case 0:
1678 return 32;
1679 case 1:
1680 return 36;
1681 case 2:
1682 return 40;
1683 case 3:
1684 return 42;
1685 case 4:
1686 return 44;
1687 case 5:
1688 default:
1689 return 48;
1690 }
1691}
1692
1693static int arm_smmu_device_cfg_probe(struct arm_smmu_device *smmu)
1694{
1695 unsigned long size;
1696 void __iomem *gr0_base = ARM_SMMU_GR0(smmu);
1697 u32 id;
1698
1699 dev_notice(smmu->dev, "probing hardware configuration...\n");
1700
1701 /* Primecell ID */
1702 id = readl_relaxed(gr0_base + ARM_SMMU_GR0_PIDR2);
1703 smmu->version = ((id >> PIDR2_ARCH_SHIFT) & PIDR2_ARCH_MASK) + 1;
1704 dev_notice(smmu->dev, "SMMUv%d with:\n", smmu->version);
1705
1706 /* ID0 */
1707 id = readl_relaxed(gr0_base + ARM_SMMU_GR0_ID0);
1708#ifndef CONFIG_64BIT
1709 if (((id >> ID0_PTFS_SHIFT) & ID0_PTFS_MASK) == ID0_PTFS_V8_ONLY) {
1710 dev_err(smmu->dev, "\tno v7 descriptor support!\n");
1711 return -ENODEV;
1712 }
1713#endif
1714 if (id & ID0_S1TS) {
1715 smmu->features |= ARM_SMMU_FEAT_TRANS_S1;
1716 dev_notice(smmu->dev, "\tstage 1 translation\n");
1717 }
1718
1719 if (id & ID0_S2TS) {
1720 smmu->features |= ARM_SMMU_FEAT_TRANS_S2;
1721 dev_notice(smmu->dev, "\tstage 2 translation\n");
1722 }
1723
1724 if (id & ID0_NTS) {
1725 smmu->features |= ARM_SMMU_FEAT_TRANS_NESTED;
1726 dev_notice(smmu->dev, "\tnested translation\n");
1727 }
1728
1729 if (!(smmu->features &
1730 (ARM_SMMU_FEAT_TRANS_S1 | ARM_SMMU_FEAT_TRANS_S2 |
1731 ARM_SMMU_FEAT_TRANS_NESTED))) {
1732 dev_err(smmu->dev, "\tno translation support!\n");
1733 return -ENODEV;
1734 }
1735
1736 if (id & ID0_CTTW) {
1737 smmu->features |= ARM_SMMU_FEAT_COHERENT_WALK;
1738 dev_notice(smmu->dev, "\tcoherent table walk\n");
1739 }
1740
1741 if (id & ID0_SMS) {
1742 u32 smr, sid, mask;
1743
1744 smmu->features |= ARM_SMMU_FEAT_STREAM_MATCH;
1745 smmu->num_mapping_groups = (id >> ID0_NUMSMRG_SHIFT) &
1746 ID0_NUMSMRG_MASK;
1747 if (smmu->num_mapping_groups == 0) {
1748 dev_err(smmu->dev,
1749 "stream-matching supported, but no SMRs present!\n");
1750 return -ENODEV;
1751 }
1752
1753 smr = SMR_MASK_MASK << SMR_MASK_SHIFT;
1754 smr |= (SMR_ID_MASK << SMR_ID_SHIFT);
1755 writel_relaxed(smr, gr0_base + ARM_SMMU_GR0_SMR(0));
1756 smr = readl_relaxed(gr0_base + ARM_SMMU_GR0_SMR(0));
1757
1758 mask = (smr >> SMR_MASK_SHIFT) & SMR_MASK_MASK;
1759 sid = (smr >> SMR_ID_SHIFT) & SMR_ID_MASK;
1760 if ((mask & sid) != sid) {
1761 dev_err(smmu->dev,
1762 "SMR mask bits (0x%x) insufficient for ID field (0x%x)\n",
1763 mask, sid);
1764 return -ENODEV;
1765 }
1766
1767 dev_notice(smmu->dev,
1768 "\tstream matching with %u register groups, mask 0x%x",
1769 smmu->num_mapping_groups, mask);
1770 }
1771
1772 /* ID1 */
1773 id = readl_relaxed(gr0_base + ARM_SMMU_GR0_ID1);
1774 smmu->pagesize = (id & ID1_PAGESIZE) ? SZ_64K : SZ_4K;
1775
Andreas Herrmannc55af7f2013-10-01 13:39:06 +01001776 /* Check for size mismatch of SMMU address space from mapped region */
Mitchel Humpherys29073202014-07-08 09:52:18 -07001777 size = 1 <<
1778 (((id >> ID1_NUMPAGENDXB_SHIFT) & ID1_NUMPAGENDXB_MASK) + 1);
Will Deacon45ae7cf2013-06-24 18:31:25 +01001779 size *= (smmu->pagesize << 1);
Andreas Herrmannc55af7f2013-10-01 13:39:06 +01001780 if (smmu->size != size)
Mitchel Humpherys29073202014-07-08 09:52:18 -07001781 dev_warn(smmu->dev,
1782 "SMMU address space size (0x%lx) differs from mapped region size (0x%lx)!\n",
1783 size, smmu->size);
Will Deacon45ae7cf2013-06-24 18:31:25 +01001784
1785 smmu->num_s2_context_banks = (id >> ID1_NUMS2CB_SHIFT) &
1786 ID1_NUMS2CB_MASK;
1787 smmu->num_context_banks = (id >> ID1_NUMCB_SHIFT) & ID1_NUMCB_MASK;
1788 if (smmu->num_s2_context_banks > smmu->num_context_banks) {
1789 dev_err(smmu->dev, "impossible number of S2 context banks!\n");
1790 return -ENODEV;
1791 }
1792 dev_notice(smmu->dev, "\t%u context banks (%u stage-2 only)\n",
1793 smmu->num_context_banks, smmu->num_s2_context_banks);
1794
1795 /* ID2 */
1796 id = readl_relaxed(gr0_base + ARM_SMMU_GR0_ID2);
1797 size = arm_smmu_id_size_to_bits((id >> ID2_IAS_SHIFT) & ID2_IAS_MASK);
1798
1799 /*
1800 * Stage-1 output limited by stage-2 input size due to pgd
1801 * allocation (PTRS_PER_PGD).
1802 */
1803#ifdef CONFIG_64BIT
Mitchel Humpherys29073202014-07-08 09:52:18 -07001804 smmu->s1_output_size = min_t(unsigned long, VA_BITS, size);
Will Deacon45ae7cf2013-06-24 18:31:25 +01001805#else
1806 smmu->s1_output_size = min(32UL, size);
1807#endif
1808
1809 /* The stage-2 output mask is also applied for bypass */
1810 size = arm_smmu_id_size_to_bits((id >> ID2_OAS_SHIFT) & ID2_OAS_MASK);
Mitchel Humpherys29073202014-07-08 09:52:18 -07001811 smmu->s2_output_size = min_t(unsigned long, PHYS_MASK_SHIFT, size);
Will Deacon45ae7cf2013-06-24 18:31:25 +01001812
1813 if (smmu->version == 1) {
1814 smmu->input_size = 32;
1815 } else {
1816#ifdef CONFIG_64BIT
1817 size = (id >> ID2_UBS_SHIFT) & ID2_UBS_MASK;
Will Deacon06f983d2013-11-05 15:55:04 +00001818 size = min(VA_BITS, arm_smmu_id_size_to_bits(size));
Will Deacon45ae7cf2013-06-24 18:31:25 +01001819#else
1820 size = 32;
1821#endif
1822 smmu->input_size = size;
1823
1824 if ((PAGE_SIZE == SZ_4K && !(id & ID2_PTFS_4K)) ||
1825 (PAGE_SIZE == SZ_64K && !(id & ID2_PTFS_64K)) ||
1826 (PAGE_SIZE != SZ_4K && PAGE_SIZE != SZ_64K)) {
1827 dev_err(smmu->dev, "CPU page size 0x%lx unsupported\n",
1828 PAGE_SIZE);
1829 return -ENODEV;
1830 }
1831 }
1832
1833 dev_notice(smmu->dev,
1834 "\t%lu-bit VA, %lu-bit IPA, %lu-bit PA\n",
Mitchel Humpherys29073202014-07-08 09:52:18 -07001835 smmu->input_size, smmu->s1_output_size,
1836 smmu->s2_output_size);
Will Deacon45ae7cf2013-06-24 18:31:25 +01001837 return 0;
1838}
1839
1840static int arm_smmu_device_dt_probe(struct platform_device *pdev)
1841{
1842 struct resource *res;
1843 struct arm_smmu_device *smmu;
Will Deacon45ae7cf2013-06-24 18:31:25 +01001844 struct device *dev = &pdev->dev;
1845 struct rb_node *node;
1846 struct of_phandle_args masterspec;
1847 int num_irqs, i, err;
1848
1849 smmu = devm_kzalloc(dev, sizeof(*smmu), GFP_KERNEL);
1850 if (!smmu) {
1851 dev_err(dev, "failed to allocate arm_smmu_device\n");
1852 return -ENOMEM;
1853 }
1854 smmu->dev = dev;
1855
1856 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Julia Lawall8a7f4312013-08-19 12:20:37 +01001857 smmu->base = devm_ioremap_resource(dev, res);
1858 if (IS_ERR(smmu->base))
1859 return PTR_ERR(smmu->base);
Will Deacon45ae7cf2013-06-24 18:31:25 +01001860 smmu->size = resource_size(res);
Will Deacon45ae7cf2013-06-24 18:31:25 +01001861
1862 if (of_property_read_u32(dev->of_node, "#global-interrupts",
1863 &smmu->num_global_irqs)) {
1864 dev_err(dev, "missing #global-interrupts property\n");
1865 return -ENODEV;
1866 }
1867
1868 num_irqs = 0;
1869 while ((res = platform_get_resource(pdev, IORESOURCE_IRQ, num_irqs))) {
1870 num_irqs++;
1871 if (num_irqs > smmu->num_global_irqs)
1872 smmu->num_context_irqs++;
1873 }
1874
Andreas Herrmann44a08de2013-10-01 13:39:07 +01001875 if (!smmu->num_context_irqs) {
1876 dev_err(dev, "found %d interrupts but expected at least %d\n",
1877 num_irqs, smmu->num_global_irqs + 1);
1878 return -ENODEV;
Will Deacon45ae7cf2013-06-24 18:31:25 +01001879 }
Will Deacon45ae7cf2013-06-24 18:31:25 +01001880
1881 smmu->irqs = devm_kzalloc(dev, sizeof(*smmu->irqs) * num_irqs,
1882 GFP_KERNEL);
1883 if (!smmu->irqs) {
1884 dev_err(dev, "failed to allocate %d irqs\n", num_irqs);
1885 return -ENOMEM;
1886 }
1887
1888 for (i = 0; i < num_irqs; ++i) {
1889 int irq = platform_get_irq(pdev, i);
Mitchel Humpherys29073202014-07-08 09:52:18 -07001890
Will Deacon45ae7cf2013-06-24 18:31:25 +01001891 if (irq < 0) {
1892 dev_err(dev, "failed to get irq index %d\n", i);
1893 return -ENODEV;
1894 }
1895 smmu->irqs[i] = irq;
1896 }
1897
1898 i = 0;
1899 smmu->masters = RB_ROOT;
1900 while (!of_parse_phandle_with_args(dev->of_node, "mmu-masters",
1901 "#stream-id-cells", i,
1902 &masterspec)) {
1903 err = register_smmu_master(smmu, dev, &masterspec);
1904 if (err) {
1905 dev_err(dev, "failed to add master %s\n",
1906 masterspec.np->name);
1907 goto out_put_masters;
1908 }
1909
1910 i++;
1911 }
1912 dev_notice(dev, "registered %d master devices\n", i);
1913
Will Deacon45ae7cf2013-06-24 18:31:25 +01001914 err = arm_smmu_device_cfg_probe(smmu);
1915 if (err)
Will Deacon44680ee2014-06-25 11:29:12 +01001916 goto out_put_masters;
Will Deacon45ae7cf2013-06-24 18:31:25 +01001917
Andreas Herrmann3a5df8f2014-01-30 18:18:04 +00001918 parse_driver_options(smmu);
1919
Will Deacon45ae7cf2013-06-24 18:31:25 +01001920 if (smmu->version > 1 &&
1921 smmu->num_context_banks != smmu->num_context_irqs) {
1922 dev_err(dev,
1923 "found only %d context interrupt(s) but %d required\n",
1924 smmu->num_context_irqs, smmu->num_context_banks);
Wei Yongjun89a23cd2013-11-15 09:42:30 +00001925 err = -ENODEV;
Will Deacon44680ee2014-06-25 11:29:12 +01001926 goto out_put_masters;
Will Deacon45ae7cf2013-06-24 18:31:25 +01001927 }
1928
Will Deacon45ae7cf2013-06-24 18:31:25 +01001929 for (i = 0; i < smmu->num_global_irqs; ++i) {
1930 err = request_irq(smmu->irqs[i],
1931 arm_smmu_global_fault,
1932 IRQF_SHARED,
1933 "arm-smmu global fault",
1934 smmu);
1935 if (err) {
1936 dev_err(dev, "failed to request global IRQ %d (%u)\n",
1937 i, smmu->irqs[i]);
1938 goto out_free_irqs;
1939 }
1940 }
1941
1942 INIT_LIST_HEAD(&smmu->list);
1943 spin_lock(&arm_smmu_devices_lock);
1944 list_add(&smmu->list, &arm_smmu_devices);
1945 spin_unlock(&arm_smmu_devices_lock);
Will Deaconfd90cec2013-08-21 13:56:34 +01001946
1947 arm_smmu_device_reset(smmu);
Will Deacon45ae7cf2013-06-24 18:31:25 +01001948 return 0;
1949
1950out_free_irqs:
1951 while (i--)
1952 free_irq(smmu->irqs[i], smmu);
1953
Will Deacon45ae7cf2013-06-24 18:31:25 +01001954out_put_masters:
1955 for (node = rb_first(&smmu->masters); node; node = rb_next(node)) {
Mitchel Humpherys29073202014-07-08 09:52:18 -07001956 struct arm_smmu_master *master
1957 = container_of(node, struct arm_smmu_master, node);
Will Deacon45ae7cf2013-06-24 18:31:25 +01001958 of_node_put(master->of_node);
1959 }
1960
1961 return err;
1962}
1963
1964static int arm_smmu_device_remove(struct platform_device *pdev)
1965{
1966 int i;
1967 struct device *dev = &pdev->dev;
1968 struct arm_smmu_device *curr, *smmu = NULL;
1969 struct rb_node *node;
1970
1971 spin_lock(&arm_smmu_devices_lock);
1972 list_for_each_entry(curr, &arm_smmu_devices, list) {
1973 if (curr->dev == dev) {
1974 smmu = curr;
1975 list_del(&smmu->list);
1976 break;
1977 }
1978 }
1979 spin_unlock(&arm_smmu_devices_lock);
1980
1981 if (!smmu)
1982 return -ENODEV;
1983
Will Deacon45ae7cf2013-06-24 18:31:25 +01001984 for (node = rb_first(&smmu->masters); node; node = rb_next(node)) {
Mitchel Humpherys29073202014-07-08 09:52:18 -07001985 struct arm_smmu_master *master
1986 = container_of(node, struct arm_smmu_master, node);
Will Deacon45ae7cf2013-06-24 18:31:25 +01001987 of_node_put(master->of_node);
1988 }
1989
Will Deaconecfadb62013-07-31 19:21:28 +01001990 if (!bitmap_empty(smmu->context_map, ARM_SMMU_MAX_CBS))
Will Deacon45ae7cf2013-06-24 18:31:25 +01001991 dev_err(dev, "removing device with active domains!\n");
1992
1993 for (i = 0; i < smmu->num_global_irqs; ++i)
1994 free_irq(smmu->irqs[i], smmu);
1995
1996 /* Turn the thing off */
Mitchel Humpherys29073202014-07-08 09:52:18 -07001997 writel(sCR0_CLIENTPD, ARM_SMMU_GR0_NS(smmu) + ARM_SMMU_GR0_sCR0);
Will Deacon45ae7cf2013-06-24 18:31:25 +01001998 return 0;
1999}
2000
2001#ifdef CONFIG_OF
2002static struct of_device_id arm_smmu_of_match[] = {
2003 { .compatible = "arm,smmu-v1", },
2004 { .compatible = "arm,smmu-v2", },
2005 { .compatible = "arm,mmu-400", },
2006 { .compatible = "arm,mmu-500", },
2007 { },
2008};
2009MODULE_DEVICE_TABLE(of, arm_smmu_of_match);
2010#endif
2011
2012static struct platform_driver arm_smmu_driver = {
2013 .driver = {
2014 .owner = THIS_MODULE,
2015 .name = "arm-smmu",
2016 .of_match_table = of_match_ptr(arm_smmu_of_match),
2017 },
2018 .probe = arm_smmu_device_dt_probe,
2019 .remove = arm_smmu_device_remove,
2020};
2021
2022static int __init arm_smmu_init(void)
2023{
2024 int ret;
2025
2026 ret = platform_driver_register(&arm_smmu_driver);
2027 if (ret)
2028 return ret;
2029
2030 /* Oh, for a proper bus abstraction */
Dan Carpenter6614ee72013-08-21 09:34:20 +01002031 if (!iommu_present(&platform_bus_type))
Will Deacon45ae7cf2013-06-24 18:31:25 +01002032 bus_set_iommu(&platform_bus_type, &arm_smmu_ops);
2033
Will Deacond123cf82014-02-04 22:17:53 +00002034#ifdef CONFIG_ARM_AMBA
Dan Carpenter6614ee72013-08-21 09:34:20 +01002035 if (!iommu_present(&amba_bustype))
Will Deacon45ae7cf2013-06-24 18:31:25 +01002036 bus_set_iommu(&amba_bustype, &arm_smmu_ops);
Will Deacond123cf82014-02-04 22:17:53 +00002037#endif
Will Deacon45ae7cf2013-06-24 18:31:25 +01002038
Will Deacona9a1b0b2014-05-01 18:05:08 +01002039#ifdef CONFIG_PCI
2040 if (!iommu_present(&pci_bus_type))
2041 bus_set_iommu(&pci_bus_type, &arm_smmu_ops);
2042#endif
2043
Will Deacon45ae7cf2013-06-24 18:31:25 +01002044 return 0;
2045}
2046
2047static void __exit arm_smmu_exit(void)
2048{
2049 return platform_driver_unregister(&arm_smmu_driver);
2050}
2051
Andreas Herrmannb1950b22013-10-01 13:39:05 +01002052subsys_initcall(arm_smmu_init);
Will Deacon45ae7cf2013-06-24 18:31:25 +01002053module_exit(arm_smmu_exit);
2054
2055MODULE_DESCRIPTION("IOMMU API for ARM architected SMMU implementations");
2056MODULE_AUTHOR("Will Deacon <will.deacon@arm.com>");
2057MODULE_LICENSE("GPL v2");