blob: f4ce1e77344eda5fb7939add9b43ef1f61223f7f [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
Will Deacon45ae7cf2013-06-24 18:31:25 +010026 * - Context fault reporting
27 */
28
29#define pr_fmt(fmt) "arm-smmu: " fmt
30
Lorenzo Pieralisid6fcd3b2016-11-21 10:01:45 +000031#include <linux/acpi.h>
32#include <linux/acpi_iort.h>
Robin Murphy1f3d5ca2016-09-12 17:13:49 +010033#include <linux/atomic.h>
Will Deacon45ae7cf2013-06-24 18:31:25 +010034#include <linux/delay.h>
Robin Murphy9adb9592016-01-26 18:06:36 +000035#include <linux/dma-iommu.h>
Will Deacon45ae7cf2013-06-24 18:31:25 +010036#include <linux/dma-mapping.h>
37#include <linux/err.h>
38#include <linux/interrupt.h>
39#include <linux/io.h>
Robin Murphyf9a05f02016-04-13 18:13:01 +010040#include <linux/io-64-nonatomic-hi-lo.h>
Will Deacon45ae7cf2013-06-24 18:31:25 +010041#include <linux/iommu.h>
Mitchel Humpherys859a7322014-10-29 21:13:40 +000042#include <linux/iopoll.h>
Will Deacon45ae7cf2013-06-24 18:31:25 +010043#include <linux/module.h>
44#include <linux/of.h>
Robin Murphybae2c2d2015-07-29 19:46:05 +010045#include <linux/of_address.h>
Robin Murphyd6fc5d92016-09-12 17:13:52 +010046#include <linux/of_device.h>
Robin Murphyadfec2e2016-09-12 17:13:55 +010047#include <linux/of_iommu.h>
Will Deacona9a1b0b2014-05-01 18:05:08 +010048#include <linux/pci.h>
Will Deacon45ae7cf2013-06-24 18:31:25 +010049#include <linux/platform_device.h>
50#include <linux/slab.h>
51#include <linux/spinlock.h>
52
53#include <linux/amba/bus.h>
54
Will Deacon518f7132014-11-14 17:17:54 +000055#include "io-pgtable.h"
Will Deacon45ae7cf2013-06-24 18:31:25 +010056
Will Deacon45ae7cf2013-06-24 18:31:25 +010057/* Maximum number of context banks per SMMU */
58#define ARM_SMMU_MAX_CBS 128
59
Will Deacon45ae7cf2013-06-24 18:31:25 +010060/* SMMU global address space */
61#define ARM_SMMU_GR0(smmu) ((smmu)->base)
Will Deaconc757e852014-07-30 11:33:25 +010062#define ARM_SMMU_GR1(smmu) ((smmu)->base + (1 << (smmu)->pgshift))
Will Deacon45ae7cf2013-06-24 18:31:25 +010063
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
Robin Murphyf9a05f02016-04-13 18:13:01 +010074/*
75 * Some 64-bit registers only make sense to write atomically, but in such
76 * cases all the data relevant to AArch32 formats lies within the lower word,
77 * therefore this actually makes more sense than it might first appear.
78 */
Tirumalesh Chalamarla668b4ad2015-08-19 00:40:30 +010079#ifdef CONFIG_64BIT
Robin Murphyf9a05f02016-04-13 18:13:01 +010080#define smmu_write_atomic_lq writeq_relaxed
Tirumalesh Chalamarla668b4ad2015-08-19 00:40:30 +010081#else
Robin Murphyf9a05f02016-04-13 18:13:01 +010082#define smmu_write_atomic_lq writel_relaxed
Tirumalesh Chalamarla668b4ad2015-08-19 00:40:30 +010083#endif
84
Will Deacon45ae7cf2013-06-24 18:31:25 +010085/* Configuration registers */
86#define ARM_SMMU_GR0_sCR0 0x0
87#define sCR0_CLIENTPD (1 << 0)
88#define sCR0_GFRE (1 << 1)
89#define sCR0_GFIE (1 << 2)
90#define sCR0_GCFGFRE (1 << 4)
91#define sCR0_GCFGFIE (1 << 5)
92#define sCR0_USFCFG (1 << 10)
93#define sCR0_VMIDPNE (1 << 11)
94#define sCR0_PTM (1 << 12)
95#define sCR0_FB (1 << 13)
Tirumalesh Chalamarla4e3e9b62016-02-23 10:19:00 -080096#define sCR0_VMID16EN (1 << 31)
Will Deacon45ae7cf2013-06-24 18:31:25 +010097#define sCR0_BSU_SHIFT 14
98#define sCR0_BSU_MASK 0x3
99
Peng Fan3ca37122016-05-03 21:50:30 +0800100/* Auxiliary Configuration register */
101#define ARM_SMMU_GR0_sACR 0x10
102
Will Deacon45ae7cf2013-06-24 18:31:25 +0100103/* Identification registers */
104#define ARM_SMMU_GR0_ID0 0x20
105#define ARM_SMMU_GR0_ID1 0x24
106#define ARM_SMMU_GR0_ID2 0x28
107#define ARM_SMMU_GR0_ID3 0x2c
108#define ARM_SMMU_GR0_ID4 0x30
109#define ARM_SMMU_GR0_ID5 0x34
110#define ARM_SMMU_GR0_ID6 0x38
111#define ARM_SMMU_GR0_ID7 0x3c
112#define ARM_SMMU_GR0_sGFSR 0x48
113#define ARM_SMMU_GR0_sGFSYNR0 0x50
114#define ARM_SMMU_GR0_sGFSYNR1 0x54
115#define ARM_SMMU_GR0_sGFSYNR2 0x58
Will Deacon45ae7cf2013-06-24 18:31:25 +0100116
117#define ID0_S1TS (1 << 30)
118#define ID0_S2TS (1 << 29)
119#define ID0_NTS (1 << 28)
120#define ID0_SMS (1 << 27)
Mitchel Humpherys859a7322014-10-29 21:13:40 +0000121#define ID0_ATOSNS (1 << 26)
Robin Murphy7602b872016-04-28 17:12:09 +0100122#define ID0_PTFS_NO_AARCH32 (1 << 25)
123#define ID0_PTFS_NO_AARCH32S (1 << 24)
Will Deacon45ae7cf2013-06-24 18:31:25 +0100124#define ID0_CTTW (1 << 14)
125#define ID0_NUMIRPT_SHIFT 16
126#define ID0_NUMIRPT_MASK 0xff
Olav Haugan3c8766d2014-08-22 17:12:32 -0700127#define ID0_NUMSIDB_SHIFT 9
128#define ID0_NUMSIDB_MASK 0xf
Will Deacon45ae7cf2013-06-24 18:31:25 +0100129#define ID0_NUMSMRG_SHIFT 0
130#define ID0_NUMSMRG_MASK 0xff
131
132#define ID1_PAGESIZE (1 << 31)
133#define ID1_NUMPAGENDXB_SHIFT 28
134#define ID1_NUMPAGENDXB_MASK 7
135#define ID1_NUMS2CB_SHIFT 16
136#define ID1_NUMS2CB_MASK 0xff
137#define ID1_NUMCB_SHIFT 0
138#define ID1_NUMCB_MASK 0xff
139
140#define ID2_OAS_SHIFT 4
141#define ID2_OAS_MASK 0xf
142#define ID2_IAS_SHIFT 0
143#define ID2_IAS_MASK 0xf
144#define ID2_UBS_SHIFT 8
145#define ID2_UBS_MASK 0xf
146#define ID2_PTFS_4K (1 << 12)
147#define ID2_PTFS_16K (1 << 13)
148#define ID2_PTFS_64K (1 << 14)
Tirumalesh Chalamarla4e3e9b62016-02-23 10:19:00 -0800149#define ID2_VMID16 (1 << 15)
Will Deacon45ae7cf2013-06-24 18:31:25 +0100150
Peng Fan3ca37122016-05-03 21:50:30 +0800151#define ID7_MAJOR_SHIFT 4
152#define ID7_MAJOR_MASK 0xf
Will Deacon45ae7cf2013-06-24 18:31:25 +0100153
Will Deacon45ae7cf2013-06-24 18:31:25 +0100154/* Global TLB invalidation */
Will Deacon45ae7cf2013-06-24 18:31:25 +0100155#define ARM_SMMU_GR0_TLBIVMID 0x64
156#define ARM_SMMU_GR0_TLBIALLNSNH 0x68
157#define ARM_SMMU_GR0_TLBIALLH 0x6c
158#define ARM_SMMU_GR0_sTLBGSYNC 0x70
159#define ARM_SMMU_GR0_sTLBGSTATUS 0x74
160#define sTLBGSTATUS_GSACTIVE (1 << 0)
161#define TLB_LOOP_TIMEOUT 1000000 /* 1s! */
162
163/* Stream mapping registers */
164#define ARM_SMMU_GR0_SMR(n) (0x800 + ((n) << 2))
165#define SMR_VALID (1 << 31)
166#define SMR_MASK_SHIFT 16
Will Deacon45ae7cf2013-06-24 18:31:25 +0100167#define SMR_ID_SHIFT 0
Will Deacon45ae7cf2013-06-24 18:31:25 +0100168
169#define ARM_SMMU_GR0_S2CR(n) (0xc00 + ((n) << 2))
170#define S2CR_CBNDX_SHIFT 0
171#define S2CR_CBNDX_MASK 0xff
172#define S2CR_TYPE_SHIFT 16
173#define S2CR_TYPE_MASK 0x3
Robin Murphy8e8b2032016-09-12 17:13:50 +0100174enum arm_smmu_s2cr_type {
175 S2CR_TYPE_TRANS,
176 S2CR_TYPE_BYPASS,
177 S2CR_TYPE_FAULT,
178};
Will Deacon45ae7cf2013-06-24 18:31:25 +0100179
Robin Murphyd3461802016-01-26 18:06:34 +0000180#define S2CR_PRIVCFG_SHIFT 24
Robin Murphy8e8b2032016-09-12 17:13:50 +0100181#define S2CR_PRIVCFG_MASK 0x3
182enum arm_smmu_s2cr_privcfg {
183 S2CR_PRIVCFG_DEFAULT,
184 S2CR_PRIVCFG_DIPAN,
185 S2CR_PRIVCFG_UNPRIV,
186 S2CR_PRIVCFG_PRIV,
187};
Robin Murphyd3461802016-01-26 18:06:34 +0000188
Will Deacon45ae7cf2013-06-24 18:31:25 +0100189/* Context bank attribute registers */
190#define ARM_SMMU_GR1_CBAR(n) (0x0 + ((n) << 2))
191#define CBAR_VMID_SHIFT 0
192#define CBAR_VMID_MASK 0xff
Will Deacon57ca90f2014-02-06 14:59:05 +0000193#define CBAR_S1_BPSHCFG_SHIFT 8
194#define CBAR_S1_BPSHCFG_MASK 3
195#define CBAR_S1_BPSHCFG_NSH 3
Will Deacon45ae7cf2013-06-24 18:31:25 +0100196#define CBAR_S1_MEMATTR_SHIFT 12
197#define CBAR_S1_MEMATTR_MASK 0xf
198#define CBAR_S1_MEMATTR_WB 0xf
199#define CBAR_TYPE_SHIFT 16
200#define CBAR_TYPE_MASK 0x3
201#define CBAR_TYPE_S2_TRANS (0 << CBAR_TYPE_SHIFT)
202#define CBAR_TYPE_S1_TRANS_S2_BYPASS (1 << CBAR_TYPE_SHIFT)
203#define CBAR_TYPE_S1_TRANS_S2_FAULT (2 << CBAR_TYPE_SHIFT)
204#define CBAR_TYPE_S1_TRANS_S2_TRANS (3 << CBAR_TYPE_SHIFT)
205#define CBAR_IRPTNDX_SHIFT 24
206#define CBAR_IRPTNDX_MASK 0xff
207
208#define ARM_SMMU_GR1_CBA2R(n) (0x800 + ((n) << 2))
209#define CBA2R_RW64_32BIT (0 << 0)
210#define CBA2R_RW64_64BIT (1 << 0)
Tirumalesh Chalamarla4e3e9b62016-02-23 10:19:00 -0800211#define CBA2R_VMID_SHIFT 16
212#define CBA2R_VMID_MASK 0xffff
Will Deacon45ae7cf2013-06-24 18:31:25 +0100213
214/* Translation context bank */
215#define ARM_SMMU_CB_BASE(smmu) ((smmu)->base + ((smmu)->size >> 1))
Will Deaconc757e852014-07-30 11:33:25 +0100216#define ARM_SMMU_CB(smmu, n) ((n) * (1 << (smmu)->pgshift))
Will Deacon45ae7cf2013-06-24 18:31:25 +0100217
218#define ARM_SMMU_CB_SCTLR 0x0
Robin Murphyf0cfffc2016-04-13 18:12:59 +0100219#define ARM_SMMU_CB_ACTLR 0x4
Will Deacon45ae7cf2013-06-24 18:31:25 +0100220#define ARM_SMMU_CB_RESUME 0x8
221#define ARM_SMMU_CB_TTBCR2 0x10
Tirumalesh Chalamarla668b4ad2015-08-19 00:40:30 +0100222#define ARM_SMMU_CB_TTBR0 0x20
223#define ARM_SMMU_CB_TTBR1 0x28
Will Deacon45ae7cf2013-06-24 18:31:25 +0100224#define ARM_SMMU_CB_TTBCR 0x30
Robin Murphy60705292016-08-11 17:44:06 +0100225#define ARM_SMMU_CB_CONTEXTIDR 0x34
Will Deacon45ae7cf2013-06-24 18:31:25 +0100226#define ARM_SMMU_CB_S1_MAIR0 0x38
Will Deacon518f7132014-11-14 17:17:54 +0000227#define ARM_SMMU_CB_S1_MAIR1 0x3c
Robin Murphyf9a05f02016-04-13 18:13:01 +0100228#define ARM_SMMU_CB_PAR 0x50
Will Deacon45ae7cf2013-06-24 18:31:25 +0100229#define ARM_SMMU_CB_FSR 0x58
Robin Murphyf9a05f02016-04-13 18:13:01 +0100230#define ARM_SMMU_CB_FAR 0x60
Will Deacon45ae7cf2013-06-24 18:31:25 +0100231#define ARM_SMMU_CB_FSYNR0 0x68
Will Deacon518f7132014-11-14 17:17:54 +0000232#define ARM_SMMU_CB_S1_TLBIVA 0x600
Will Deacon1463fe42013-07-31 19:21:27 +0100233#define ARM_SMMU_CB_S1_TLBIASID 0x610
Will Deacon518f7132014-11-14 17:17:54 +0000234#define ARM_SMMU_CB_S1_TLBIVAL 0x620
235#define ARM_SMMU_CB_S2_TLBIIPAS2 0x630
236#define ARM_SMMU_CB_S2_TLBIIPAS2L 0x638
Robin Murphy661d9622015-05-27 17:09:34 +0100237#define ARM_SMMU_CB_ATS1PR 0x800
Mitchel Humpherys859a7322014-10-29 21:13:40 +0000238#define ARM_SMMU_CB_ATSR 0x8f0
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)
Will Deacon45ae7cf2013-06-24 18:31:25 +0100248
Robin Murphyf0cfffc2016-04-13 18:12:59 +0100249#define ARM_MMU500_ACTLR_CPRE (1 << 1)
250
Peng Fan3ca37122016-05-03 21:50:30 +0800251#define ARM_MMU500_ACR_CACHE_LOCK (1 << 26)
Nipun Gupta6eb18d42016-11-04 15:25:23 +0530252#define ARM_MMU500_ACR_SMTNMB_TLBEN (1 << 8)
Peng Fan3ca37122016-05-03 21:50:30 +0800253
Mitchel Humpherys859a7322014-10-29 21:13:40 +0000254#define CB_PAR_F (1 << 0)
255
256#define ATSR_ACTIVE (1 << 0)
257
Will Deacon45ae7cf2013-06-24 18:31:25 +0100258#define RESUME_RETRY (0 << 0)
259#define RESUME_TERMINATE (1 << 0)
260
Will Deacon45ae7cf2013-06-24 18:31:25 +0100261#define TTBCR2_SEP_SHIFT 15
Will Deacon5dc56162015-05-08 17:44:22 +0100262#define TTBCR2_SEP_UPSTREAM (0x7 << TTBCR2_SEP_SHIFT)
Will Deacon45ae7cf2013-06-24 18:31:25 +0100263
Tirumalesh Chalamarla668b4ad2015-08-19 00:40:30 +0100264#define TTBRn_ASID_SHIFT 48
Will Deacon45ae7cf2013-06-24 18:31:25 +0100265
266#define FSR_MULTI (1 << 31)
267#define FSR_SS (1 << 30)
268#define FSR_UUT (1 << 8)
269#define FSR_ASF (1 << 7)
270#define FSR_TLBLKF (1 << 6)
271#define FSR_TLBMCF (1 << 5)
272#define FSR_EF (1 << 4)
273#define FSR_PF (1 << 3)
274#define FSR_AFF (1 << 2)
275#define FSR_TF (1 << 1)
276
Mitchel Humpherys29073202014-07-08 09:52:18 -0700277#define FSR_IGN (FSR_AFF | FSR_ASF | \
278 FSR_TLBMCF | FSR_TLBLKF)
279#define FSR_FAULT (FSR_MULTI | FSR_SS | FSR_UUT | \
Will Deaconadaba322013-07-31 19:21:26 +0100280 FSR_EF | FSR_PF | FSR_TF | FSR_IGN)
Will Deacon45ae7cf2013-06-24 18:31:25 +0100281
282#define FSYNR0_WNR (1 << 4)
283
Will Deacon4cf740b2014-07-14 19:47:39 +0100284static int force_stage;
Robin Murphy25a1c962016-02-10 14:25:33 +0000285module_param(force_stage, int, S_IRUGO);
Will Deacon4cf740b2014-07-14 19:47:39 +0100286MODULE_PARM_DESC(force_stage,
287 "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.");
Robin Murphy25a1c962016-02-10 14:25:33 +0000288static bool disable_bypass;
289module_param(disable_bypass, bool, S_IRUGO);
290MODULE_PARM_DESC(disable_bypass,
291 "Disable bypass streams such that incoming transactions from devices that are not attached to an iommu domain will report an abort back to the device and will not be allowed to pass through the SMMU.");
Will Deacon4cf740b2014-07-14 19:47:39 +0100292
Robin Murphy09360402014-08-28 17:51:59 +0100293enum arm_smmu_arch_version {
Robin Murphyb7862e32016-04-13 18:13:03 +0100294 ARM_SMMU_V1,
295 ARM_SMMU_V1_64K,
Robin Murphy09360402014-08-28 17:51:59 +0100296 ARM_SMMU_V2,
297};
298
Robin Murphy67b65a32016-04-13 18:12:57 +0100299enum arm_smmu_implementation {
300 GENERIC_SMMU,
Robin Murphyf0cfffc2016-04-13 18:12:59 +0100301 ARM_MMU500,
Robin Murphye086d912016-04-13 18:12:58 +0100302 CAVIUM_SMMUV2,
Robin Murphy67b65a32016-04-13 18:12:57 +0100303};
304
Robin Murphy8e8b2032016-09-12 17:13:50 +0100305struct arm_smmu_s2cr {
Robin Murphy588888a2016-09-12 17:13:54 +0100306 struct iommu_group *group;
307 int count;
Robin Murphy8e8b2032016-09-12 17:13:50 +0100308 enum arm_smmu_s2cr_type type;
309 enum arm_smmu_s2cr_privcfg privcfg;
310 u8 cbndx;
311};
312
313#define s2cr_init_val (struct arm_smmu_s2cr){ \
314 .type = disable_bypass ? S2CR_TYPE_FAULT : S2CR_TYPE_BYPASS, \
315}
316
Will Deacon45ae7cf2013-06-24 18:31:25 +0100317struct arm_smmu_smr {
Will Deacon45ae7cf2013-06-24 18:31:25 +0100318 u16 mask;
319 u16 id;
Robin Murphy1f3d5ca2016-09-12 17:13:49 +0100320 bool valid;
Will Deacon45ae7cf2013-06-24 18:31:25 +0100321};
322
Will Deacona9a1b0b2014-05-01 18:05:08 +0100323struct arm_smmu_master_cfg {
Robin Murphyf80cd882016-09-14 15:21:39 +0100324 struct arm_smmu_device *smmu;
Robin Murphyadfec2e2016-09-12 17:13:55 +0100325 s16 smendx[];
Will Deacon45ae7cf2013-06-24 18:31:25 +0100326};
Robin Murphy1f3d5ca2016-09-12 17:13:49 +0100327#define INVALID_SMENDX -1
Robin Murphyadfec2e2016-09-12 17:13:55 +0100328#define __fwspec_cfg(fw) ((struct arm_smmu_master_cfg *)fw->iommu_priv)
329#define fwspec_smmu(fw) (__fwspec_cfg(fw)->smmu)
Robin Murphy8c82d6e2016-11-07 18:25:09 +0000330#define fwspec_smendx(fw, i) \
331 (i >= fw->num_ids ? INVALID_SMENDX : __fwspec_cfg(fw)->smendx[i])
Robin Murphyadfec2e2016-09-12 17:13:55 +0100332#define for_each_cfg_sme(fw, i, idx) \
Robin Murphy8c82d6e2016-11-07 18:25:09 +0000333 for (i = 0; idx = fwspec_smendx(fw, i), i < fw->num_ids; ++i)
Will Deacon45ae7cf2013-06-24 18:31:25 +0100334
335struct arm_smmu_device {
336 struct device *dev;
Will Deacon45ae7cf2013-06-24 18:31:25 +0100337
338 void __iomem *base;
339 unsigned long size;
Will Deaconc757e852014-07-30 11:33:25 +0100340 unsigned long pgshift;
Will Deacon45ae7cf2013-06-24 18:31:25 +0100341
342#define ARM_SMMU_FEAT_COHERENT_WALK (1 << 0)
343#define ARM_SMMU_FEAT_STREAM_MATCH (1 << 1)
344#define ARM_SMMU_FEAT_TRANS_S1 (1 << 2)
345#define ARM_SMMU_FEAT_TRANS_S2 (1 << 3)
346#define ARM_SMMU_FEAT_TRANS_NESTED (1 << 4)
Mitchel Humpherys859a7322014-10-29 21:13:40 +0000347#define ARM_SMMU_FEAT_TRANS_OPS (1 << 5)
Tirumalesh Chalamarla4e3e9b62016-02-23 10:19:00 -0800348#define ARM_SMMU_FEAT_VMID16 (1 << 6)
Robin Murphy7602b872016-04-28 17:12:09 +0100349#define ARM_SMMU_FEAT_FMT_AARCH64_4K (1 << 7)
350#define ARM_SMMU_FEAT_FMT_AARCH64_16K (1 << 8)
351#define ARM_SMMU_FEAT_FMT_AARCH64_64K (1 << 9)
352#define ARM_SMMU_FEAT_FMT_AARCH32_L (1 << 10)
353#define ARM_SMMU_FEAT_FMT_AARCH32_S (1 << 11)
Will Deacon45ae7cf2013-06-24 18:31:25 +0100354 u32 features;
Andreas Herrmann3a5df8f2014-01-30 18:18:04 +0000355
356#define ARM_SMMU_OPT_SECURE_CFG_ACCESS (1 << 0)
357 u32 options;
Robin Murphy09360402014-08-28 17:51:59 +0100358 enum arm_smmu_arch_version version;
Robin Murphy67b65a32016-04-13 18:12:57 +0100359 enum arm_smmu_implementation model;
Will Deacon45ae7cf2013-06-24 18:31:25 +0100360
361 u32 num_context_banks;
362 u32 num_s2_context_banks;
363 DECLARE_BITMAP(context_map, ARM_SMMU_MAX_CBS);
364 atomic_t irptndx;
365
366 u32 num_mapping_groups;
Robin Murphy21174242016-09-12 17:13:48 +0100367 u16 streamid_mask;
368 u16 smr_mask_mask;
Robin Murphy1f3d5ca2016-09-12 17:13:49 +0100369 struct arm_smmu_smr *smrs;
Robin Murphy8e8b2032016-09-12 17:13:50 +0100370 struct arm_smmu_s2cr *s2crs;
Robin Murphy588888a2016-09-12 17:13:54 +0100371 struct mutex stream_map_mutex;
Will Deacon45ae7cf2013-06-24 18:31:25 +0100372
Will Deacon518f7132014-11-14 17:17:54 +0000373 unsigned long va_size;
374 unsigned long ipa_size;
375 unsigned long pa_size;
Robin Murphyd5466352016-05-09 17:20:09 +0100376 unsigned long pgsize_bitmap;
Will Deacon45ae7cf2013-06-24 18:31:25 +0100377
378 u32 num_global_irqs;
379 u32 num_context_irqs;
380 unsigned int *irqs;
381
Tirumalesh Chalamarla1bd37a62016-03-04 13:56:09 -0800382 u32 cavium_id_base; /* Specific to Cavium */
Joerg Roedel9648cbc2017-02-01 18:11:36 +0100383
384 /* IOMMU core code handle */
385 struct iommu_device iommu;
Will Deacon45ae7cf2013-06-24 18:31:25 +0100386};
387
Robin Murphy7602b872016-04-28 17:12:09 +0100388enum arm_smmu_context_fmt {
389 ARM_SMMU_CTX_FMT_NONE,
390 ARM_SMMU_CTX_FMT_AARCH64,
391 ARM_SMMU_CTX_FMT_AARCH32_L,
392 ARM_SMMU_CTX_FMT_AARCH32_S,
Will Deacon45ae7cf2013-06-24 18:31:25 +0100393};
394
395struct arm_smmu_cfg {
Will Deacon45ae7cf2013-06-24 18:31:25 +0100396 u8 cbndx;
397 u8 irptndx;
398 u32 cbar;
Robin Murphy7602b872016-04-28 17:12:09 +0100399 enum arm_smmu_context_fmt fmt;
Will Deacon45ae7cf2013-06-24 18:31:25 +0100400};
Dan Carpenterfaea13b72013-08-21 09:33:30 +0100401#define INVALID_IRPTNDX 0xff
Will Deacon45ae7cf2013-06-24 18:31:25 +0100402
Tirumalesh Chalamarla1bd37a62016-03-04 13:56:09 -0800403#define ARM_SMMU_CB_ASID(smmu, cfg) ((u16)(smmu)->cavium_id_base + (cfg)->cbndx)
404#define ARM_SMMU_CB_VMID(smmu, cfg) ((u16)(smmu)->cavium_id_base + (cfg)->cbndx + 1)
Will Deaconecfadb62013-07-31 19:21:28 +0100405
Will Deaconc752ce42014-06-25 22:46:31 +0100406enum arm_smmu_domain_stage {
407 ARM_SMMU_DOMAIN_S1 = 0,
408 ARM_SMMU_DOMAIN_S2,
409 ARM_SMMU_DOMAIN_NESTED,
410};
411
Will Deacon45ae7cf2013-06-24 18:31:25 +0100412struct arm_smmu_domain {
Will Deacon44680ee2014-06-25 11:29:12 +0100413 struct arm_smmu_device *smmu;
Will Deacon518f7132014-11-14 17:17:54 +0000414 struct io_pgtable_ops *pgtbl_ops;
415 spinlock_t pgtbl_lock;
Will Deacon44680ee2014-06-25 11:29:12 +0100416 struct arm_smmu_cfg cfg;
Will Deaconc752ce42014-06-25 22:46:31 +0100417 enum arm_smmu_domain_stage stage;
Will Deacon518f7132014-11-14 17:17:54 +0000418 struct mutex init_mutex; /* Protects smmu pointer */
Joerg Roedel1d672632015-03-26 13:43:10 +0100419 struct iommu_domain domain;
Will Deacon45ae7cf2013-06-24 18:31:25 +0100420};
421
Andreas Herrmann3a5df8f2014-01-30 18:18:04 +0000422struct arm_smmu_option_prop {
423 u32 opt;
424 const char *prop;
425};
426
Tirumalesh Chalamarla1bd37a62016-03-04 13:56:09 -0800427static atomic_t cavium_smmu_context_count = ATOMIC_INIT(0);
428
Robin Murphy021bb842016-09-14 15:26:46 +0100429static bool using_legacy_binding, using_generic_binding;
430
Mitchel Humpherys29073202014-07-08 09:52:18 -0700431static struct arm_smmu_option_prop arm_smmu_options[] = {
Andreas Herrmann3a5df8f2014-01-30 18:18:04 +0000432 { ARM_SMMU_OPT_SECURE_CFG_ACCESS, "calxeda,smmu-secure-config-access" },
433 { 0, NULL},
434};
435
Joerg Roedel1d672632015-03-26 13:43:10 +0100436static struct arm_smmu_domain *to_smmu_domain(struct iommu_domain *dom)
437{
438 return container_of(dom, struct arm_smmu_domain, domain);
439}
440
Andreas Herrmann3a5df8f2014-01-30 18:18:04 +0000441static void parse_driver_options(struct arm_smmu_device *smmu)
442{
443 int i = 0;
Mitchel Humpherys29073202014-07-08 09:52:18 -0700444
Andreas Herrmann3a5df8f2014-01-30 18:18:04 +0000445 do {
446 if (of_property_read_bool(smmu->dev->of_node,
447 arm_smmu_options[i].prop)) {
448 smmu->options |= arm_smmu_options[i].opt;
449 dev_notice(smmu->dev, "option %s\n",
450 arm_smmu_options[i].prop);
451 }
452 } while (arm_smmu_options[++i].opt);
453}
454
Will Deacon8f68f8e2014-07-15 11:27:08 +0100455static struct device_node *dev_get_dev_node(struct device *dev)
Will Deacona9a1b0b2014-05-01 18:05:08 +0100456{
457 if (dev_is_pci(dev)) {
458 struct pci_bus *bus = to_pci_dev(dev)->bus;
Mitchel Humpherys29073202014-07-08 09:52:18 -0700459
Will Deacona9a1b0b2014-05-01 18:05:08 +0100460 while (!pci_is_root_bus(bus))
461 bus = bus->parent;
Robin Murphyf80cd882016-09-14 15:21:39 +0100462 return of_node_get(bus->bridge->parent->of_node);
Will Deacona9a1b0b2014-05-01 18:05:08 +0100463 }
464
Robin Murphyf80cd882016-09-14 15:21:39 +0100465 return of_node_get(dev->of_node);
Will Deacona9a1b0b2014-05-01 18:05:08 +0100466}
467
Robin Murphyf80cd882016-09-14 15:21:39 +0100468static int __arm_smmu_get_pci_sid(struct pci_dev *pdev, u16 alias, void *data)
Will Deacon45ae7cf2013-06-24 18:31:25 +0100469{
Robin Murphyf80cd882016-09-14 15:21:39 +0100470 *((__be32 *)data) = cpu_to_be32(alias);
471 return 0; /* Continue walking */
Will Deacon45ae7cf2013-06-24 18:31:25 +0100472}
473
Robin Murphyf80cd882016-09-14 15:21:39 +0100474static int __find_legacy_master_phandle(struct device *dev, void *data)
Will Deacona9a1b0b2014-05-01 18:05:08 +0100475{
Robin Murphyf80cd882016-09-14 15:21:39 +0100476 struct of_phandle_iterator *it = *(void **)data;
477 struct device_node *np = it->node;
478 int err;
Will Deacona9a1b0b2014-05-01 18:05:08 +0100479
Robin Murphyf80cd882016-09-14 15:21:39 +0100480 of_for_each_phandle(it, err, dev->of_node, "mmu-masters",
481 "#stream-id-cells", 0)
482 if (it->node == np) {
483 *(void **)data = dev;
484 return 1;
Olav Haugan3c8766d2014-08-22 17:12:32 -0700485 }
Robin Murphyf80cd882016-09-14 15:21:39 +0100486 it->node = np;
487 return err == -ENOENT ? 0 : err;
Will Deacon45ae7cf2013-06-24 18:31:25 +0100488}
489
Robin Murphyd6fc5d92016-09-12 17:13:52 +0100490static struct platform_driver arm_smmu_driver;
Robin Murphyadfec2e2016-09-12 17:13:55 +0100491static struct iommu_ops arm_smmu_ops;
Robin Murphyd6fc5d92016-09-12 17:13:52 +0100492
Robin Murphyadfec2e2016-09-12 17:13:55 +0100493static int arm_smmu_register_legacy_master(struct device *dev,
494 struct arm_smmu_device **smmu)
Will Deacon45ae7cf2013-06-24 18:31:25 +0100495{
Robin Murphyadfec2e2016-09-12 17:13:55 +0100496 struct device *smmu_dev;
Robin Murphyf80cd882016-09-14 15:21:39 +0100497 struct device_node *np;
498 struct of_phandle_iterator it;
499 void *data = &it;
Robin Murphyadfec2e2016-09-12 17:13:55 +0100500 u32 *sids;
Robin Murphyf80cd882016-09-14 15:21:39 +0100501 __be32 pci_sid;
502 int err;
Will Deacon45ae7cf2013-06-24 18:31:25 +0100503
Robin Murphyf80cd882016-09-14 15:21:39 +0100504 np = dev_get_dev_node(dev);
505 if (!np || !of_find_property(np, "#stream-id-cells", NULL)) {
506 of_node_put(np);
507 return -ENODEV;
508 }
509
510 it.node = np;
Robin Murphyd6fc5d92016-09-12 17:13:52 +0100511 err = driver_for_each_device(&arm_smmu_driver.driver, NULL, &data,
512 __find_legacy_master_phandle);
Robin Murphyadfec2e2016-09-12 17:13:55 +0100513 smmu_dev = data;
Robin Murphyf80cd882016-09-14 15:21:39 +0100514 of_node_put(np);
515 if (err == 0)
516 return -ENODEV;
517 if (err < 0)
518 return err;
Will Deacon44680ee2014-06-25 11:29:12 +0100519
Robin Murphyf80cd882016-09-14 15:21:39 +0100520 if (dev_is_pci(dev)) {
521 /* "mmu-masters" assumes Stream ID == Requester ID */
522 pci_for_each_dma_alias(to_pci_dev(dev), __arm_smmu_get_pci_sid,
523 &pci_sid);
524 it.cur = &pci_sid;
525 it.cur_count = 1;
526 }
527
Robin Murphyadfec2e2016-09-12 17:13:55 +0100528 err = iommu_fwspec_init(dev, &smmu_dev->of_node->fwnode,
529 &arm_smmu_ops);
530 if (err)
531 return err;
532
533 sids = kcalloc(it.cur_count, sizeof(*sids), GFP_KERNEL);
534 if (!sids)
Robin Murphyf80cd882016-09-14 15:21:39 +0100535 return -ENOMEM;
536
Robin Murphyadfec2e2016-09-12 17:13:55 +0100537 *smmu = dev_get_drvdata(smmu_dev);
538 of_phandle_iterator_args(&it, sids, it.cur_count);
539 err = iommu_fwspec_add_ids(dev, sids, it.cur_count);
540 kfree(sids);
541 return err;
Will Deacon45ae7cf2013-06-24 18:31:25 +0100542}
543
544static int __arm_smmu_alloc_bitmap(unsigned long *map, int start, int end)
545{
546 int idx;
547
548 do {
549 idx = find_next_zero_bit(map, end, start);
550 if (idx == end)
551 return -ENOSPC;
552 } while (test_and_set_bit(idx, map));
553
554 return idx;
555}
556
557static void __arm_smmu_free_bitmap(unsigned long *map, int idx)
558{
559 clear_bit(idx, map);
560}
561
562/* Wait for any pending TLB invalidations to complete */
Will Deacon518f7132014-11-14 17:17:54 +0000563static void __arm_smmu_tlb_sync(struct arm_smmu_device *smmu)
Will Deacon45ae7cf2013-06-24 18:31:25 +0100564{
565 int count = 0;
566 void __iomem *gr0_base = ARM_SMMU_GR0(smmu);
567
568 writel_relaxed(0, gr0_base + ARM_SMMU_GR0_sTLBGSYNC);
569 while (readl_relaxed(gr0_base + ARM_SMMU_GR0_sTLBGSTATUS)
570 & sTLBGSTATUS_GSACTIVE) {
571 cpu_relax();
572 if (++count == TLB_LOOP_TIMEOUT) {
573 dev_err_ratelimited(smmu->dev,
574 "TLB sync timed out -- SMMU may be deadlocked\n");
575 return;
576 }
577 udelay(1);
578 }
579}
580
Will Deacon518f7132014-11-14 17:17:54 +0000581static void arm_smmu_tlb_sync(void *cookie)
Will Deacon1463fe42013-07-31 19:21:27 +0100582{
Will Deacon518f7132014-11-14 17:17:54 +0000583 struct arm_smmu_domain *smmu_domain = cookie;
584 __arm_smmu_tlb_sync(smmu_domain->smmu);
585}
586
587static void arm_smmu_tlb_inv_context(void *cookie)
588{
589 struct arm_smmu_domain *smmu_domain = cookie;
Will Deacon44680ee2014-06-25 11:29:12 +0100590 struct arm_smmu_cfg *cfg = &smmu_domain->cfg;
591 struct arm_smmu_device *smmu = smmu_domain->smmu;
Will Deacon1463fe42013-07-31 19:21:27 +0100592 bool stage1 = cfg->cbar != CBAR_TYPE_S2_TRANS;
Will Deacon518f7132014-11-14 17:17:54 +0000593 void __iomem *base;
Will Deacon1463fe42013-07-31 19:21:27 +0100594
595 if (stage1) {
596 base = ARM_SMMU_CB_BASE(smmu) + ARM_SMMU_CB(smmu, cfg->cbndx);
Tirumalesh Chalamarla1bd37a62016-03-04 13:56:09 -0800597 writel_relaxed(ARM_SMMU_CB_ASID(smmu, cfg),
Will Deaconecfadb62013-07-31 19:21:28 +0100598 base + ARM_SMMU_CB_S1_TLBIASID);
Will Deacon1463fe42013-07-31 19:21:27 +0100599 } else {
600 base = ARM_SMMU_GR0(smmu);
Tirumalesh Chalamarla1bd37a62016-03-04 13:56:09 -0800601 writel_relaxed(ARM_SMMU_CB_VMID(smmu, cfg),
Will Deaconecfadb62013-07-31 19:21:28 +0100602 base + ARM_SMMU_GR0_TLBIVMID);
Will Deacon1463fe42013-07-31 19:21:27 +0100603 }
604
Will Deacon518f7132014-11-14 17:17:54 +0000605 __arm_smmu_tlb_sync(smmu);
Will Deacon1463fe42013-07-31 19:21:27 +0100606}
607
Will Deacon518f7132014-11-14 17:17:54 +0000608static void arm_smmu_tlb_inv_range_nosync(unsigned long iova, size_t size,
Robin Murphy06c610e2015-12-07 18:18:53 +0000609 size_t granule, bool leaf, void *cookie)
Will Deacon518f7132014-11-14 17:17:54 +0000610{
611 struct arm_smmu_domain *smmu_domain = cookie;
612 struct arm_smmu_cfg *cfg = &smmu_domain->cfg;
613 struct arm_smmu_device *smmu = smmu_domain->smmu;
614 bool stage1 = cfg->cbar != CBAR_TYPE_S2_TRANS;
615 void __iomem *reg;
616
617 if (stage1) {
618 reg = ARM_SMMU_CB_BASE(smmu) + ARM_SMMU_CB(smmu, cfg->cbndx);
619 reg += leaf ? ARM_SMMU_CB_S1_TLBIVAL : ARM_SMMU_CB_S1_TLBIVA;
620
Robin Murphy7602b872016-04-28 17:12:09 +0100621 if (cfg->fmt != ARM_SMMU_CTX_FMT_AARCH64) {
Will Deacon518f7132014-11-14 17:17:54 +0000622 iova &= ~12UL;
Tirumalesh Chalamarla1bd37a62016-03-04 13:56:09 -0800623 iova |= ARM_SMMU_CB_ASID(smmu, cfg);
Robin Murphy75df1382015-12-07 18:18:52 +0000624 do {
625 writel_relaxed(iova, reg);
626 iova += granule;
627 } while (size -= granule);
Will Deacon518f7132014-11-14 17:17:54 +0000628 } else {
629 iova >>= 12;
Tirumalesh Chalamarla1bd37a62016-03-04 13:56:09 -0800630 iova |= (u64)ARM_SMMU_CB_ASID(smmu, cfg) << 48;
Robin Murphy75df1382015-12-07 18:18:52 +0000631 do {
632 writeq_relaxed(iova, reg);
633 iova += granule >> 12;
634 } while (size -= granule);
Will Deacon518f7132014-11-14 17:17:54 +0000635 }
Will Deacon518f7132014-11-14 17:17:54 +0000636 } else if (smmu->version == ARM_SMMU_V2) {
637 reg = ARM_SMMU_CB_BASE(smmu) + ARM_SMMU_CB(smmu, cfg->cbndx);
638 reg += leaf ? ARM_SMMU_CB_S2_TLBIIPAS2L :
639 ARM_SMMU_CB_S2_TLBIIPAS2;
Robin Murphy75df1382015-12-07 18:18:52 +0000640 iova >>= 12;
641 do {
Robin Murphyf9a05f02016-04-13 18:13:01 +0100642 smmu_write_atomic_lq(iova, reg);
Robin Murphy75df1382015-12-07 18:18:52 +0000643 iova += granule >> 12;
644 } while (size -= granule);
Will Deacon518f7132014-11-14 17:17:54 +0000645 } else {
646 reg = ARM_SMMU_GR0(smmu) + ARM_SMMU_GR0_TLBIVMID;
Tirumalesh Chalamarla1bd37a62016-03-04 13:56:09 -0800647 writel_relaxed(ARM_SMMU_CB_VMID(smmu, cfg), reg);
Will Deacon518f7132014-11-14 17:17:54 +0000648 }
649}
650
Bhumika Goyal5896f3a2016-10-25 23:36:10 +0530651static const struct iommu_gather_ops arm_smmu_gather_ops = {
Will Deacon518f7132014-11-14 17:17:54 +0000652 .tlb_flush_all = arm_smmu_tlb_inv_context,
653 .tlb_add_flush = arm_smmu_tlb_inv_range_nosync,
654 .tlb_sync = arm_smmu_tlb_sync,
Will Deacon518f7132014-11-14 17:17:54 +0000655};
656
Will Deacon45ae7cf2013-06-24 18:31:25 +0100657static irqreturn_t arm_smmu_context_fault(int irq, void *dev)
658{
Will Deacon3714ce1d2016-08-05 19:49:45 +0100659 u32 fsr, fsynr;
Will Deacon45ae7cf2013-06-24 18:31:25 +0100660 unsigned long iova;
661 struct iommu_domain *domain = dev;
Joerg Roedel1d672632015-03-26 13:43:10 +0100662 struct arm_smmu_domain *smmu_domain = to_smmu_domain(domain);
Will Deacon44680ee2014-06-25 11:29:12 +0100663 struct arm_smmu_cfg *cfg = &smmu_domain->cfg;
664 struct arm_smmu_device *smmu = smmu_domain->smmu;
Will Deacon45ae7cf2013-06-24 18:31:25 +0100665 void __iomem *cb_base;
666
Will Deacon44680ee2014-06-25 11:29:12 +0100667 cb_base = ARM_SMMU_CB_BASE(smmu) + ARM_SMMU_CB(smmu, cfg->cbndx);
Will Deacon45ae7cf2013-06-24 18:31:25 +0100668 fsr = readl_relaxed(cb_base + ARM_SMMU_CB_FSR);
669
670 if (!(fsr & FSR_FAULT))
671 return IRQ_NONE;
672
Will Deacon45ae7cf2013-06-24 18:31:25 +0100673 fsynr = readl_relaxed(cb_base + ARM_SMMU_CB_FSYNR0);
Robin Murphyf9a05f02016-04-13 18:13:01 +0100674 iova = readq_relaxed(cb_base + ARM_SMMU_CB_FAR);
Will Deacon45ae7cf2013-06-24 18:31:25 +0100675
Will Deacon3714ce1d2016-08-05 19:49:45 +0100676 dev_err_ratelimited(smmu->dev,
677 "Unhandled context fault: fsr=0x%x, iova=0x%08lx, fsynr=0x%x, cb=%d\n",
678 fsr, iova, fsynr, cfg->cbndx);
679
Will Deacon45ae7cf2013-06-24 18:31:25 +0100680 writel(fsr, cb_base + ARM_SMMU_CB_FSR);
Will Deacon3714ce1d2016-08-05 19:49:45 +0100681 return IRQ_HANDLED;
Will Deacon45ae7cf2013-06-24 18:31:25 +0100682}
683
684static irqreturn_t arm_smmu_global_fault(int irq, void *dev)
685{
686 u32 gfsr, gfsynr0, gfsynr1, gfsynr2;
687 struct arm_smmu_device *smmu = dev;
Andreas Herrmann3a5df8f2014-01-30 18:18:04 +0000688 void __iomem *gr0_base = ARM_SMMU_GR0_NS(smmu);
Will Deacon45ae7cf2013-06-24 18:31:25 +0100689
690 gfsr = readl_relaxed(gr0_base + ARM_SMMU_GR0_sGFSR);
691 gfsynr0 = readl_relaxed(gr0_base + ARM_SMMU_GR0_sGFSYNR0);
692 gfsynr1 = readl_relaxed(gr0_base + ARM_SMMU_GR0_sGFSYNR1);
693 gfsynr2 = readl_relaxed(gr0_base + ARM_SMMU_GR0_sGFSYNR2);
694
Andreas Herrmann3a5df8f2014-01-30 18:18:04 +0000695 if (!gfsr)
696 return IRQ_NONE;
697
Will Deacon45ae7cf2013-06-24 18:31:25 +0100698 dev_err_ratelimited(smmu->dev,
699 "Unexpected global fault, this could be serious\n");
700 dev_err_ratelimited(smmu->dev,
701 "\tGFSR 0x%08x, GFSYNR0 0x%08x, GFSYNR1 0x%08x, GFSYNR2 0x%08x\n",
702 gfsr, gfsynr0, gfsynr1, gfsynr2);
703
704 writel(gfsr, gr0_base + ARM_SMMU_GR0_sGFSR);
Will Deaconadaba322013-07-31 19:21:26 +0100705 return IRQ_HANDLED;
Will Deacon45ae7cf2013-06-24 18:31:25 +0100706}
707
Will Deacon518f7132014-11-14 17:17:54 +0000708static void arm_smmu_init_context_bank(struct arm_smmu_domain *smmu_domain,
709 struct io_pgtable_cfg *pgtbl_cfg)
Will Deacon45ae7cf2013-06-24 18:31:25 +0100710{
Robin Murphy60705292016-08-11 17:44:06 +0100711 u32 reg, reg2;
Tirumalesh Chalamarla668b4ad2015-08-19 00:40:30 +0100712 u64 reg64;
Will Deacon45ae7cf2013-06-24 18:31:25 +0100713 bool stage1;
Will Deacon44680ee2014-06-25 11:29:12 +0100714 struct arm_smmu_cfg *cfg = &smmu_domain->cfg;
715 struct arm_smmu_device *smmu = smmu_domain->smmu;
Will Deaconc88ae5d2015-10-13 17:53:24 +0100716 void __iomem *cb_base, *gr1_base;
Will Deacon45ae7cf2013-06-24 18:31:25 +0100717
Will Deacon45ae7cf2013-06-24 18:31:25 +0100718 gr1_base = ARM_SMMU_GR1(smmu);
Will Deacon44680ee2014-06-25 11:29:12 +0100719 stage1 = cfg->cbar != CBAR_TYPE_S2_TRANS;
720 cb_base = ARM_SMMU_CB_BASE(smmu) + ARM_SMMU_CB(smmu, cfg->cbndx);
Will Deacon45ae7cf2013-06-24 18:31:25 +0100721
Will Deacon4a1c93c2015-03-04 12:21:03 +0000722 if (smmu->version > ARM_SMMU_V1) {
Robin Murphy7602b872016-04-28 17:12:09 +0100723 if (cfg->fmt == ARM_SMMU_CTX_FMT_AARCH64)
724 reg = CBA2R_RW64_64BIT;
725 else
726 reg = CBA2R_RW64_32BIT;
Tirumalesh Chalamarla4e3e9b62016-02-23 10:19:00 -0800727 /* 16-bit VMIDs live in CBA2R */
728 if (smmu->features & ARM_SMMU_FEAT_VMID16)
Tirumalesh Chalamarla1bd37a62016-03-04 13:56:09 -0800729 reg |= ARM_SMMU_CB_VMID(smmu, cfg) << CBA2R_VMID_SHIFT;
Tirumalesh Chalamarla4e3e9b62016-02-23 10:19:00 -0800730
Will Deacon4a1c93c2015-03-04 12:21:03 +0000731 writel_relaxed(reg, gr1_base + ARM_SMMU_GR1_CBA2R(cfg->cbndx));
732 }
733
Will Deacon45ae7cf2013-06-24 18:31:25 +0100734 /* CBAR */
Will Deacon44680ee2014-06-25 11:29:12 +0100735 reg = cfg->cbar;
Robin Murphyb7862e32016-04-13 18:13:03 +0100736 if (smmu->version < ARM_SMMU_V2)
Mitchel Humpherys29073202014-07-08 09:52:18 -0700737 reg |= cfg->irptndx << CBAR_IRPTNDX_SHIFT;
Will Deacon45ae7cf2013-06-24 18:31:25 +0100738
Will Deacon57ca90f2014-02-06 14:59:05 +0000739 /*
740 * Use the weakest shareability/memory types, so they are
741 * overridden by the ttbcr/pte.
742 */
743 if (stage1) {
744 reg |= (CBAR_S1_BPSHCFG_NSH << CBAR_S1_BPSHCFG_SHIFT) |
745 (CBAR_S1_MEMATTR_WB << CBAR_S1_MEMATTR_SHIFT);
Tirumalesh Chalamarla4e3e9b62016-02-23 10:19:00 -0800746 } else if (!(smmu->features & ARM_SMMU_FEAT_VMID16)) {
747 /* 8-bit VMIDs live in CBAR */
Tirumalesh Chalamarla1bd37a62016-03-04 13:56:09 -0800748 reg |= ARM_SMMU_CB_VMID(smmu, cfg) << CBAR_VMID_SHIFT;
Will Deacon57ca90f2014-02-06 14:59:05 +0000749 }
Will Deacon44680ee2014-06-25 11:29:12 +0100750 writel_relaxed(reg, gr1_base + ARM_SMMU_GR1_CBAR(cfg->cbndx));
Will Deacon45ae7cf2013-06-24 18:31:25 +0100751
Will Deacon518f7132014-11-14 17:17:54 +0000752 /* TTBRs */
753 if (stage1) {
Robin Murphy60705292016-08-11 17:44:06 +0100754 u16 asid = ARM_SMMU_CB_ASID(smmu, cfg);
Will Deacon45ae7cf2013-06-24 18:31:25 +0100755
Robin Murphy60705292016-08-11 17:44:06 +0100756 if (cfg->fmt == ARM_SMMU_CTX_FMT_AARCH32_S) {
757 reg = pgtbl_cfg->arm_v7s_cfg.ttbr[0];
758 writel_relaxed(reg, cb_base + ARM_SMMU_CB_TTBR0);
759 reg = pgtbl_cfg->arm_v7s_cfg.ttbr[1];
760 writel_relaxed(reg, cb_base + ARM_SMMU_CB_TTBR1);
761 writel_relaxed(asid, cb_base + ARM_SMMU_CB_CONTEXTIDR);
762 } else {
763 reg64 = pgtbl_cfg->arm_lpae_s1_cfg.ttbr[0];
764 reg64 |= (u64)asid << TTBRn_ASID_SHIFT;
765 writeq_relaxed(reg64, cb_base + ARM_SMMU_CB_TTBR0);
766 reg64 = pgtbl_cfg->arm_lpae_s1_cfg.ttbr[1];
767 reg64 |= (u64)asid << TTBRn_ASID_SHIFT;
768 writeq_relaxed(reg64, cb_base + ARM_SMMU_CB_TTBR1);
769 }
Will Deacon518f7132014-11-14 17:17:54 +0000770 } else {
Tirumalesh Chalamarla668b4ad2015-08-19 00:40:30 +0100771 reg64 = pgtbl_cfg->arm_lpae_s2_cfg.vttbr;
Robin Murphyf9a05f02016-04-13 18:13:01 +0100772 writeq_relaxed(reg64, cb_base + ARM_SMMU_CB_TTBR0);
Will Deacon518f7132014-11-14 17:17:54 +0000773 }
Will Deacon45ae7cf2013-06-24 18:31:25 +0100774
Will Deacon518f7132014-11-14 17:17:54 +0000775 /* TTBCR */
776 if (stage1) {
Robin Murphy60705292016-08-11 17:44:06 +0100777 if (cfg->fmt == ARM_SMMU_CTX_FMT_AARCH32_S) {
778 reg = pgtbl_cfg->arm_v7s_cfg.tcr;
779 reg2 = 0;
780 } else {
781 reg = pgtbl_cfg->arm_lpae_s1_cfg.tcr;
782 reg2 = pgtbl_cfg->arm_lpae_s1_cfg.tcr >> 32;
783 reg2 |= TTBCR2_SEP_UPSTREAM;
Will Deacon45ae7cf2013-06-24 18:31:25 +0100784 }
Robin Murphy60705292016-08-11 17:44:06 +0100785 if (smmu->version > ARM_SMMU_V1)
786 writel_relaxed(reg2, cb_base + ARM_SMMU_CB_TTBCR2);
Will Deacon45ae7cf2013-06-24 18:31:25 +0100787 } else {
Will Deacon518f7132014-11-14 17:17:54 +0000788 reg = pgtbl_cfg->arm_lpae_s2_cfg.vtcr;
Will Deacon45ae7cf2013-06-24 18:31:25 +0100789 }
Robin Murphy60705292016-08-11 17:44:06 +0100790 writel_relaxed(reg, cb_base + ARM_SMMU_CB_TTBCR);
Will Deacon45ae7cf2013-06-24 18:31:25 +0100791
Will Deacon518f7132014-11-14 17:17:54 +0000792 /* MAIRs (stage-1 only) */
Will Deacon45ae7cf2013-06-24 18:31:25 +0100793 if (stage1) {
Robin Murphy60705292016-08-11 17:44:06 +0100794 if (cfg->fmt == ARM_SMMU_CTX_FMT_AARCH32_S) {
795 reg = pgtbl_cfg->arm_v7s_cfg.prrr;
796 reg2 = pgtbl_cfg->arm_v7s_cfg.nmrr;
797 } else {
798 reg = pgtbl_cfg->arm_lpae_s1_cfg.mair[0];
799 reg2 = pgtbl_cfg->arm_lpae_s1_cfg.mair[1];
800 }
Will Deacon45ae7cf2013-06-24 18:31:25 +0100801 writel_relaxed(reg, cb_base + ARM_SMMU_CB_S1_MAIR0);
Robin Murphy60705292016-08-11 17:44:06 +0100802 writel_relaxed(reg2, cb_base + ARM_SMMU_CB_S1_MAIR1);
Will Deacon45ae7cf2013-06-24 18:31:25 +0100803 }
804
Will Deacon45ae7cf2013-06-24 18:31:25 +0100805 /* SCTLR */
Robin Murphy60705292016-08-11 17:44:06 +0100806 reg = SCTLR_CFIE | SCTLR_CFRE | SCTLR_AFE | SCTLR_TRE | SCTLR_M;
Will Deacon45ae7cf2013-06-24 18:31:25 +0100807 if (stage1)
808 reg |= SCTLR_S1_ASIDPNE;
809#ifdef __BIG_ENDIAN
810 reg |= SCTLR_E;
811#endif
Will Deacon25724842013-08-21 13:49:53 +0100812 writel_relaxed(reg, cb_base + ARM_SMMU_CB_SCTLR);
Will Deacon45ae7cf2013-06-24 18:31:25 +0100813}
814
815static int arm_smmu_init_domain_context(struct iommu_domain *domain,
Will Deacon44680ee2014-06-25 11:29:12 +0100816 struct arm_smmu_device *smmu)
Will Deacon45ae7cf2013-06-24 18:31:25 +0100817{
Mitchel Humpherysa18037b2014-07-30 18:58:13 +0100818 int irq, start, ret = 0;
Will Deacon518f7132014-11-14 17:17:54 +0000819 unsigned long ias, oas;
820 struct io_pgtable_ops *pgtbl_ops;
821 struct io_pgtable_cfg pgtbl_cfg;
822 enum io_pgtable_fmt fmt;
Joerg Roedel1d672632015-03-26 13:43:10 +0100823 struct arm_smmu_domain *smmu_domain = to_smmu_domain(domain);
Will Deacon44680ee2014-06-25 11:29:12 +0100824 struct arm_smmu_cfg *cfg = &smmu_domain->cfg;
Will Deacon45ae7cf2013-06-24 18:31:25 +0100825
Will Deacon518f7132014-11-14 17:17:54 +0000826 mutex_lock(&smmu_domain->init_mutex);
Mitchel Humpherysa18037b2014-07-30 18:58:13 +0100827 if (smmu_domain->smmu)
828 goto out_unlock;
829
Will Deaconc752ce42014-06-25 22:46:31 +0100830 /*
831 * Mapping the requested stage onto what we support is surprisingly
832 * complicated, mainly because the spec allows S1+S2 SMMUs without
833 * support for nested translation. That means we end up with the
834 * following table:
835 *
836 * Requested Supported Actual
837 * S1 N S1
838 * S1 S1+S2 S1
839 * S1 S2 S2
840 * S1 S1 S1
841 * N N N
842 * N S1+S2 S2
843 * N S2 S2
844 * N S1 S1
845 *
846 * Note that you can't actually request stage-2 mappings.
847 */
848 if (!(smmu->features & ARM_SMMU_FEAT_TRANS_S1))
849 smmu_domain->stage = ARM_SMMU_DOMAIN_S2;
850 if (!(smmu->features & ARM_SMMU_FEAT_TRANS_S2))
851 smmu_domain->stage = ARM_SMMU_DOMAIN_S1;
852
Robin Murphy7602b872016-04-28 17:12:09 +0100853 /*
854 * Choosing a suitable context format is even more fiddly. Until we
855 * grow some way for the caller to express a preference, and/or move
856 * the decision into the io-pgtable code where it arguably belongs,
857 * just aim for the closest thing to the rest of the system, and hope
858 * that the hardware isn't esoteric enough that we can't assume AArch64
859 * support to be a superset of AArch32 support...
860 */
861 if (smmu->features & ARM_SMMU_FEAT_FMT_AARCH32_L)
862 cfg->fmt = ARM_SMMU_CTX_FMT_AARCH32_L;
Robin Murphy60705292016-08-11 17:44:06 +0100863 if (IS_ENABLED(CONFIG_IOMMU_IO_PGTABLE_ARMV7S) &&
864 !IS_ENABLED(CONFIG_64BIT) && !IS_ENABLED(CONFIG_ARM_LPAE) &&
865 (smmu->features & ARM_SMMU_FEAT_FMT_AARCH32_S) &&
866 (smmu_domain->stage == ARM_SMMU_DOMAIN_S1))
867 cfg->fmt = ARM_SMMU_CTX_FMT_AARCH32_S;
Robin Murphy7602b872016-04-28 17:12:09 +0100868 if ((IS_ENABLED(CONFIG_64BIT) || cfg->fmt == ARM_SMMU_CTX_FMT_NONE) &&
869 (smmu->features & (ARM_SMMU_FEAT_FMT_AARCH64_64K |
870 ARM_SMMU_FEAT_FMT_AARCH64_16K |
871 ARM_SMMU_FEAT_FMT_AARCH64_4K)))
872 cfg->fmt = ARM_SMMU_CTX_FMT_AARCH64;
873
874 if (cfg->fmt == ARM_SMMU_CTX_FMT_NONE) {
875 ret = -EINVAL;
876 goto out_unlock;
877 }
878
Will Deaconc752ce42014-06-25 22:46:31 +0100879 switch (smmu_domain->stage) {
880 case ARM_SMMU_DOMAIN_S1:
881 cfg->cbar = CBAR_TYPE_S1_TRANS_S2_BYPASS;
882 start = smmu->num_s2_context_banks;
Will Deacon518f7132014-11-14 17:17:54 +0000883 ias = smmu->va_size;
884 oas = smmu->ipa_size;
Robin Murphy7602b872016-04-28 17:12:09 +0100885 if (cfg->fmt == ARM_SMMU_CTX_FMT_AARCH64) {
Will Deacon518f7132014-11-14 17:17:54 +0000886 fmt = ARM_64_LPAE_S1;
Robin Murphy60705292016-08-11 17:44:06 +0100887 } else if (cfg->fmt == ARM_SMMU_CTX_FMT_AARCH32_L) {
Will Deacon518f7132014-11-14 17:17:54 +0000888 fmt = ARM_32_LPAE_S1;
Robin Murphy7602b872016-04-28 17:12:09 +0100889 ias = min(ias, 32UL);
890 oas = min(oas, 40UL);
Robin Murphy60705292016-08-11 17:44:06 +0100891 } else {
892 fmt = ARM_V7S;
893 ias = min(ias, 32UL);
894 oas = min(oas, 32UL);
Robin Murphy7602b872016-04-28 17:12:09 +0100895 }
Will Deaconc752ce42014-06-25 22:46:31 +0100896 break;
897 case ARM_SMMU_DOMAIN_NESTED:
Will Deacon45ae7cf2013-06-24 18:31:25 +0100898 /*
899 * We will likely want to change this if/when KVM gets
900 * involved.
901 */
Will Deaconc752ce42014-06-25 22:46:31 +0100902 case ARM_SMMU_DOMAIN_S2:
Will Deacon9c5c92e2014-06-25 12:12:41 +0100903 cfg->cbar = CBAR_TYPE_S2_TRANS;
904 start = 0;
Will Deacon518f7132014-11-14 17:17:54 +0000905 ias = smmu->ipa_size;
906 oas = smmu->pa_size;
Robin Murphy7602b872016-04-28 17:12:09 +0100907 if (cfg->fmt == ARM_SMMU_CTX_FMT_AARCH64) {
Will Deacon518f7132014-11-14 17:17:54 +0000908 fmt = ARM_64_LPAE_S2;
Robin Murphy7602b872016-04-28 17:12:09 +0100909 } else {
Will Deacon518f7132014-11-14 17:17:54 +0000910 fmt = ARM_32_LPAE_S2;
Robin Murphy7602b872016-04-28 17:12:09 +0100911 ias = min(ias, 40UL);
912 oas = min(oas, 40UL);
913 }
Will Deaconc752ce42014-06-25 22:46:31 +0100914 break;
915 default:
916 ret = -EINVAL;
917 goto out_unlock;
Will Deacon45ae7cf2013-06-24 18:31:25 +0100918 }
919
920 ret = __arm_smmu_alloc_bitmap(smmu->context_map, start,
921 smmu->num_context_banks);
Arnd Bergmann287980e2016-05-27 23:23:25 +0200922 if (ret < 0)
Mitchel Humpherysa18037b2014-07-30 18:58:13 +0100923 goto out_unlock;
Will Deacon45ae7cf2013-06-24 18:31:25 +0100924
Will Deacon44680ee2014-06-25 11:29:12 +0100925 cfg->cbndx = ret;
Robin Murphyb7862e32016-04-13 18:13:03 +0100926 if (smmu->version < ARM_SMMU_V2) {
Will Deacon44680ee2014-06-25 11:29:12 +0100927 cfg->irptndx = atomic_inc_return(&smmu->irptndx);
928 cfg->irptndx %= smmu->num_context_irqs;
Will Deacon45ae7cf2013-06-24 18:31:25 +0100929 } else {
Will Deacon44680ee2014-06-25 11:29:12 +0100930 cfg->irptndx = cfg->cbndx;
Will Deacon45ae7cf2013-06-24 18:31:25 +0100931 }
932
Will Deacon518f7132014-11-14 17:17:54 +0000933 pgtbl_cfg = (struct io_pgtable_cfg) {
Robin Murphyd5466352016-05-09 17:20:09 +0100934 .pgsize_bitmap = smmu->pgsize_bitmap,
Will Deacon518f7132014-11-14 17:17:54 +0000935 .ias = ias,
936 .oas = oas,
937 .tlb = &arm_smmu_gather_ops,
Robin Murphy2df7a252015-07-29 19:46:06 +0100938 .iommu_dev = smmu->dev,
Will Deacon518f7132014-11-14 17:17:54 +0000939 };
Mitchel Humpherysa18037b2014-07-30 18:58:13 +0100940
Will Deacon518f7132014-11-14 17:17:54 +0000941 smmu_domain->smmu = smmu;
942 pgtbl_ops = alloc_io_pgtable_ops(fmt, &pgtbl_cfg, smmu_domain);
943 if (!pgtbl_ops) {
944 ret = -ENOMEM;
945 goto out_clear_smmu;
946 }
947
Robin Murphyd5466352016-05-09 17:20:09 +0100948 /* Update the domain's page sizes to reflect the page table format */
949 domain->pgsize_bitmap = pgtbl_cfg.pgsize_bitmap;
Robin Murphy455eb7d2016-09-12 17:13:58 +0100950 domain->geometry.aperture_end = (1UL << ias) - 1;
951 domain->geometry.force_aperture = true;
Will Deacon518f7132014-11-14 17:17:54 +0000952
953 /* Initialise the context bank with our page table cfg */
954 arm_smmu_init_context_bank(smmu_domain, &pgtbl_cfg);
955
956 /*
957 * Request context fault interrupt. Do this last to avoid the
958 * handler seeing a half-initialised domain state.
959 */
Will Deacon44680ee2014-06-25 11:29:12 +0100960 irq = smmu->irqs[smmu->num_global_irqs + cfg->irptndx];
Peng Fanbee14002016-07-04 17:38:22 +0800961 ret = devm_request_irq(smmu->dev, irq, arm_smmu_context_fault,
962 IRQF_SHARED, "arm-smmu-context-fault", domain);
Arnd Bergmann287980e2016-05-27 23:23:25 +0200963 if (ret < 0) {
Will Deacon45ae7cf2013-06-24 18:31:25 +0100964 dev_err(smmu->dev, "failed to request context IRQ %d (%u)\n",
Will Deacon44680ee2014-06-25 11:29:12 +0100965 cfg->irptndx, irq);
966 cfg->irptndx = INVALID_IRPTNDX;
Will Deacon45ae7cf2013-06-24 18:31:25 +0100967 }
968
Will Deacon518f7132014-11-14 17:17:54 +0000969 mutex_unlock(&smmu_domain->init_mutex);
970
971 /* Publish page table ops for map/unmap */
972 smmu_domain->pgtbl_ops = pgtbl_ops;
Will Deacona9a1b0b2014-05-01 18:05:08 +0100973 return 0;
Will Deacon45ae7cf2013-06-24 18:31:25 +0100974
Will Deacon518f7132014-11-14 17:17:54 +0000975out_clear_smmu:
976 smmu_domain->smmu = NULL;
Mitchel Humpherysa18037b2014-07-30 18:58:13 +0100977out_unlock:
Will Deacon518f7132014-11-14 17:17:54 +0000978 mutex_unlock(&smmu_domain->init_mutex);
Will Deacon45ae7cf2013-06-24 18:31:25 +0100979 return ret;
980}
981
982static void arm_smmu_destroy_domain_context(struct iommu_domain *domain)
983{
Joerg Roedel1d672632015-03-26 13:43:10 +0100984 struct arm_smmu_domain *smmu_domain = to_smmu_domain(domain);
Will Deacon44680ee2014-06-25 11:29:12 +0100985 struct arm_smmu_device *smmu = smmu_domain->smmu;
986 struct arm_smmu_cfg *cfg = &smmu_domain->cfg;
Will Deacon1463fe42013-07-31 19:21:27 +0100987 void __iomem *cb_base;
Will Deacon45ae7cf2013-06-24 18:31:25 +0100988 int irq;
989
Robin Murphy021bb842016-09-14 15:26:46 +0100990 if (!smmu)
Will Deacon45ae7cf2013-06-24 18:31:25 +0100991 return;
992
Will Deacon518f7132014-11-14 17:17:54 +0000993 /*
994 * Disable the context bank and free the page tables before freeing
995 * it.
996 */
Will Deacon44680ee2014-06-25 11:29:12 +0100997 cb_base = ARM_SMMU_CB_BASE(smmu) + ARM_SMMU_CB(smmu, cfg->cbndx);
Will Deacon1463fe42013-07-31 19:21:27 +0100998 writel_relaxed(0, cb_base + ARM_SMMU_CB_SCTLR);
Will Deacon1463fe42013-07-31 19:21:27 +0100999
Will Deacon44680ee2014-06-25 11:29:12 +01001000 if (cfg->irptndx != INVALID_IRPTNDX) {
1001 irq = smmu->irqs[smmu->num_global_irqs + cfg->irptndx];
Peng Fanbee14002016-07-04 17:38:22 +08001002 devm_free_irq(smmu->dev, irq, domain);
Will Deacon45ae7cf2013-06-24 18:31:25 +01001003 }
1004
Markus Elfring44830b02015-11-06 18:32:41 +01001005 free_io_pgtable_ops(smmu_domain->pgtbl_ops);
Will Deacon44680ee2014-06-25 11:29:12 +01001006 __arm_smmu_free_bitmap(smmu->context_map, cfg->cbndx);
Will Deacon45ae7cf2013-06-24 18:31:25 +01001007}
1008
Joerg Roedel1d672632015-03-26 13:43:10 +01001009static struct iommu_domain *arm_smmu_domain_alloc(unsigned type)
Will Deacon45ae7cf2013-06-24 18:31:25 +01001010{
1011 struct arm_smmu_domain *smmu_domain;
Will Deacon45ae7cf2013-06-24 18:31:25 +01001012
Robin Murphy9adb9592016-01-26 18:06:36 +00001013 if (type != IOMMU_DOMAIN_UNMANAGED && type != IOMMU_DOMAIN_DMA)
Joerg Roedel1d672632015-03-26 13:43:10 +01001014 return NULL;
Will Deacon45ae7cf2013-06-24 18:31:25 +01001015 /*
1016 * Allocate the domain and initialise some of its data structures.
1017 * We can't really do anything meaningful until we've added a
1018 * master.
1019 */
1020 smmu_domain = kzalloc(sizeof(*smmu_domain), GFP_KERNEL);
1021 if (!smmu_domain)
Joerg Roedel1d672632015-03-26 13:43:10 +01001022 return NULL;
Will Deacon45ae7cf2013-06-24 18:31:25 +01001023
Robin Murphy021bb842016-09-14 15:26:46 +01001024 if (type == IOMMU_DOMAIN_DMA && (using_legacy_binding ||
1025 iommu_get_dma_cookie(&smmu_domain->domain))) {
Robin Murphy9adb9592016-01-26 18:06:36 +00001026 kfree(smmu_domain);
1027 return NULL;
1028 }
1029
Will Deacon518f7132014-11-14 17:17:54 +00001030 mutex_init(&smmu_domain->init_mutex);
1031 spin_lock_init(&smmu_domain->pgtbl_lock);
Joerg Roedel1d672632015-03-26 13:43:10 +01001032
1033 return &smmu_domain->domain;
Will Deacon45ae7cf2013-06-24 18:31:25 +01001034}
1035
Joerg Roedel1d672632015-03-26 13:43:10 +01001036static void arm_smmu_domain_free(struct iommu_domain *domain)
Will Deacon45ae7cf2013-06-24 18:31:25 +01001037{
Joerg Roedel1d672632015-03-26 13:43:10 +01001038 struct arm_smmu_domain *smmu_domain = to_smmu_domain(domain);
Will Deacon1463fe42013-07-31 19:21:27 +01001039
1040 /*
1041 * Free the domain resources. We assume that all devices have
1042 * already been detached.
1043 */
Robin Murphy9adb9592016-01-26 18:06:36 +00001044 iommu_put_dma_cookie(domain);
Will Deacon45ae7cf2013-06-24 18:31:25 +01001045 arm_smmu_destroy_domain_context(domain);
Will Deacon45ae7cf2013-06-24 18:31:25 +01001046 kfree(smmu_domain);
1047}
1048
Robin Murphy1f3d5ca2016-09-12 17:13:49 +01001049static void arm_smmu_write_smr(struct arm_smmu_device *smmu, int idx)
1050{
1051 struct arm_smmu_smr *smr = smmu->smrs + idx;
Robin Murphyf80cd882016-09-14 15:21:39 +01001052 u32 reg = smr->id << SMR_ID_SHIFT | smr->mask << SMR_MASK_SHIFT;
Robin Murphy1f3d5ca2016-09-12 17:13:49 +01001053
1054 if (smr->valid)
1055 reg |= SMR_VALID;
1056 writel_relaxed(reg, ARM_SMMU_GR0(smmu) + ARM_SMMU_GR0_SMR(idx));
1057}
1058
Robin Murphy8e8b2032016-09-12 17:13:50 +01001059static void arm_smmu_write_s2cr(struct arm_smmu_device *smmu, int idx)
1060{
1061 struct arm_smmu_s2cr *s2cr = smmu->s2crs + idx;
1062 u32 reg = (s2cr->type & S2CR_TYPE_MASK) << S2CR_TYPE_SHIFT |
1063 (s2cr->cbndx & S2CR_CBNDX_MASK) << S2CR_CBNDX_SHIFT |
1064 (s2cr->privcfg & S2CR_PRIVCFG_MASK) << S2CR_PRIVCFG_SHIFT;
1065
1066 writel_relaxed(reg, ARM_SMMU_GR0(smmu) + ARM_SMMU_GR0_S2CR(idx));
1067}
1068
1069static void arm_smmu_write_sme(struct arm_smmu_device *smmu, int idx)
1070{
1071 arm_smmu_write_s2cr(smmu, idx);
1072 if (smmu->smrs)
1073 arm_smmu_write_smr(smmu, idx);
1074}
1075
Robin Murphy588888a2016-09-12 17:13:54 +01001076static int arm_smmu_find_sme(struct arm_smmu_device *smmu, u16 id, u16 mask)
Robin Murphy1f3d5ca2016-09-12 17:13:49 +01001077{
1078 struct arm_smmu_smr *smrs = smmu->smrs;
Robin Murphy588888a2016-09-12 17:13:54 +01001079 int i, free_idx = -ENOSPC;
Will Deacon45ae7cf2013-06-24 18:31:25 +01001080
Robin Murphy588888a2016-09-12 17:13:54 +01001081 /* Stream indexing is blissfully easy */
1082 if (!smrs)
1083 return id;
Robin Murphy1f3d5ca2016-09-12 17:13:49 +01001084
Robin Murphy588888a2016-09-12 17:13:54 +01001085 /* Validating SMRs is... less so */
1086 for (i = 0; i < smmu->num_mapping_groups; ++i) {
1087 if (!smrs[i].valid) {
1088 /*
1089 * Note the first free entry we come across, which
1090 * we'll claim in the end if nothing else matches.
1091 */
1092 if (free_idx < 0)
1093 free_idx = i;
Robin Murphy1f3d5ca2016-09-12 17:13:49 +01001094 continue;
1095 }
Robin Murphy588888a2016-09-12 17:13:54 +01001096 /*
1097 * If the new entry is _entirely_ matched by an existing entry,
1098 * then reuse that, with the guarantee that there also cannot
1099 * be any subsequent conflicting entries. In normal use we'd
1100 * expect simply identical entries for this case, but there's
1101 * no harm in accommodating the generalisation.
1102 */
1103 if ((mask & smrs[i].mask) == mask &&
1104 !((id ^ smrs[i].id) & ~smrs[i].mask))
1105 return i;
1106 /*
1107 * If the new entry has any other overlap with an existing one,
1108 * though, then there always exists at least one stream ID
1109 * which would cause a conflict, and we can't allow that risk.
1110 */
1111 if (!((id ^ smrs[i].id) & ~(smrs[i].mask | mask)))
1112 return -EINVAL;
Will Deacon45ae7cf2013-06-24 18:31:25 +01001113 }
1114
Robin Murphy588888a2016-09-12 17:13:54 +01001115 return free_idx;
1116}
1117
1118static bool arm_smmu_free_sme(struct arm_smmu_device *smmu, int idx)
1119{
1120 if (--smmu->s2crs[idx].count)
1121 return false;
1122
1123 smmu->s2crs[idx] = s2cr_init_val;
1124 if (smmu->smrs)
1125 smmu->smrs[idx].valid = false;
1126
1127 return true;
1128}
1129
1130static int arm_smmu_master_alloc_smes(struct device *dev)
1131{
Robin Murphyadfec2e2016-09-12 17:13:55 +01001132 struct iommu_fwspec *fwspec = dev->iommu_fwspec;
1133 struct arm_smmu_master_cfg *cfg = fwspec->iommu_priv;
Robin Murphy588888a2016-09-12 17:13:54 +01001134 struct arm_smmu_device *smmu = cfg->smmu;
1135 struct arm_smmu_smr *smrs = smmu->smrs;
1136 struct iommu_group *group;
1137 int i, idx, ret;
1138
1139 mutex_lock(&smmu->stream_map_mutex);
1140 /* Figure out a viable stream map entry allocation */
Robin Murphyadfec2e2016-09-12 17:13:55 +01001141 for_each_cfg_sme(fwspec, i, idx) {
Robin Murphy021bb842016-09-14 15:26:46 +01001142 u16 sid = fwspec->ids[i];
1143 u16 mask = fwspec->ids[i] >> SMR_MASK_SHIFT;
1144
Robin Murphy588888a2016-09-12 17:13:54 +01001145 if (idx != INVALID_SMENDX) {
1146 ret = -EEXIST;
1147 goto out_err;
1148 }
1149
Robin Murphy021bb842016-09-14 15:26:46 +01001150 ret = arm_smmu_find_sme(smmu, sid, mask);
Robin Murphy588888a2016-09-12 17:13:54 +01001151 if (ret < 0)
1152 goto out_err;
1153
1154 idx = ret;
1155 if (smrs && smmu->s2crs[idx].count == 0) {
Robin Murphy021bb842016-09-14 15:26:46 +01001156 smrs[idx].id = sid;
1157 smrs[idx].mask = mask;
Robin Murphy588888a2016-09-12 17:13:54 +01001158 smrs[idx].valid = true;
1159 }
1160 smmu->s2crs[idx].count++;
1161 cfg->smendx[i] = (s16)idx;
1162 }
1163
1164 group = iommu_group_get_for_dev(dev);
1165 if (!group)
1166 group = ERR_PTR(-ENOMEM);
1167 if (IS_ERR(group)) {
1168 ret = PTR_ERR(group);
1169 goto out_err;
1170 }
1171 iommu_group_put(group);
Robin Murphy1f3d5ca2016-09-12 17:13:49 +01001172
Will Deacon45ae7cf2013-06-24 18:31:25 +01001173 /* It worked! Now, poke the actual hardware */
Robin Murphyadfec2e2016-09-12 17:13:55 +01001174 for_each_cfg_sme(fwspec, i, idx) {
Robin Murphy588888a2016-09-12 17:13:54 +01001175 arm_smmu_write_sme(smmu, idx);
1176 smmu->s2crs[idx].group = group;
1177 }
Will Deacon45ae7cf2013-06-24 18:31:25 +01001178
Robin Murphy588888a2016-09-12 17:13:54 +01001179 mutex_unlock(&smmu->stream_map_mutex);
Will Deacon45ae7cf2013-06-24 18:31:25 +01001180 return 0;
1181
Robin Murphy588888a2016-09-12 17:13:54 +01001182out_err:
Robin Murphy1f3d5ca2016-09-12 17:13:49 +01001183 while (i--) {
Robin Murphy588888a2016-09-12 17:13:54 +01001184 arm_smmu_free_sme(smmu, cfg->smendx[i]);
Robin Murphy1f3d5ca2016-09-12 17:13:49 +01001185 cfg->smendx[i] = INVALID_SMENDX;
1186 }
Robin Murphy588888a2016-09-12 17:13:54 +01001187 mutex_unlock(&smmu->stream_map_mutex);
1188 return ret;
Will Deacon45ae7cf2013-06-24 18:31:25 +01001189}
1190
Robin Murphyadfec2e2016-09-12 17:13:55 +01001191static void arm_smmu_master_free_smes(struct iommu_fwspec *fwspec)
Will Deacon45ae7cf2013-06-24 18:31:25 +01001192{
Robin Murphyadfec2e2016-09-12 17:13:55 +01001193 struct arm_smmu_device *smmu = fwspec_smmu(fwspec);
1194 struct arm_smmu_master_cfg *cfg = fwspec->iommu_priv;
Robin Murphyd3097e32016-09-12 17:13:53 +01001195 int i, idx;
Will Deacon43b412b2014-07-15 11:22:24 +01001196
Robin Murphy588888a2016-09-12 17:13:54 +01001197 mutex_lock(&smmu->stream_map_mutex);
Robin Murphyadfec2e2016-09-12 17:13:55 +01001198 for_each_cfg_sme(fwspec, i, idx) {
Robin Murphy588888a2016-09-12 17:13:54 +01001199 if (arm_smmu_free_sme(smmu, idx))
1200 arm_smmu_write_sme(smmu, idx);
Robin Murphy1f3d5ca2016-09-12 17:13:49 +01001201 cfg->smendx[i] = INVALID_SMENDX;
Will Deacon45ae7cf2013-06-24 18:31:25 +01001202 }
Robin Murphy588888a2016-09-12 17:13:54 +01001203 mutex_unlock(&smmu->stream_map_mutex);
Will Deacon45ae7cf2013-06-24 18:31:25 +01001204}
1205
Will Deacon45ae7cf2013-06-24 18:31:25 +01001206static int arm_smmu_domain_add_master(struct arm_smmu_domain *smmu_domain,
Robin Murphyadfec2e2016-09-12 17:13:55 +01001207 struct iommu_fwspec *fwspec)
Will Deacon45ae7cf2013-06-24 18:31:25 +01001208{
Will Deacon44680ee2014-06-25 11:29:12 +01001209 struct arm_smmu_device *smmu = smmu_domain->smmu;
Robin Murphy8e8b2032016-09-12 17:13:50 +01001210 struct arm_smmu_s2cr *s2cr = smmu->s2crs;
1211 enum arm_smmu_s2cr_type type = S2CR_TYPE_TRANS;
1212 u8 cbndx = smmu_domain->cfg.cbndx;
Robin Murphy588888a2016-09-12 17:13:54 +01001213 int i, idx;
Will Deacon45ae7cf2013-06-24 18:31:25 +01001214
Robin Murphyadfec2e2016-09-12 17:13:55 +01001215 for_each_cfg_sme(fwspec, i, idx) {
Robin Murphy8e8b2032016-09-12 17:13:50 +01001216 if (type == s2cr[idx].type && cbndx == s2cr[idx].cbndx)
Robin Murphy588888a2016-09-12 17:13:54 +01001217 continue;
Robin Murphy1f3d5ca2016-09-12 17:13:49 +01001218
Robin Murphy8e8b2032016-09-12 17:13:50 +01001219 s2cr[idx].type = type;
1220 s2cr[idx].privcfg = S2CR_PRIVCFG_UNPRIV;
1221 s2cr[idx].cbndx = cbndx;
1222 arm_smmu_write_s2cr(smmu, idx);
Will Deacon43b412b2014-07-15 11:22:24 +01001223 }
Robin Murphy8e8b2032016-09-12 17:13:50 +01001224 return 0;
Will Deaconbc7f2ce2016-02-17 17:41:57 +00001225}
1226
Will Deacon45ae7cf2013-06-24 18:31:25 +01001227static int arm_smmu_attach_dev(struct iommu_domain *domain, struct device *dev)
1228{
Mitchel Humpherysa18037b2014-07-30 18:58:13 +01001229 int ret;
Robin Murphyadfec2e2016-09-12 17:13:55 +01001230 struct iommu_fwspec *fwspec = dev->iommu_fwspec;
1231 struct arm_smmu_device *smmu;
Joerg Roedel1d672632015-03-26 13:43:10 +01001232 struct arm_smmu_domain *smmu_domain = to_smmu_domain(domain);
Will Deacon45ae7cf2013-06-24 18:31:25 +01001233
Robin Murphyadfec2e2016-09-12 17:13:55 +01001234 if (!fwspec || fwspec->ops != &arm_smmu_ops) {
Will Deacon45ae7cf2013-06-24 18:31:25 +01001235 dev_err(dev, "cannot attach to SMMU, is it on the same bus?\n");
1236 return -ENXIO;
1237 }
1238
Robin Murphyfba4f8e2016-10-17 12:06:21 +01001239 /*
1240 * FIXME: The arch/arm DMA API code tries to attach devices to its own
1241 * domains between of_xlate() and add_device() - we have no way to cope
1242 * with that, so until ARM gets converted to rely on groups and default
1243 * domains, just say no (but more politely than by dereferencing NULL).
1244 * This should be at least a WARN_ON once that's sorted.
1245 */
1246 if (!fwspec->iommu_priv)
1247 return -ENODEV;
1248
Robin Murphyadfec2e2016-09-12 17:13:55 +01001249 smmu = fwspec_smmu(fwspec);
Will Deacon518f7132014-11-14 17:17:54 +00001250 /* Ensure that the domain is finalised */
Robin Murphyadfec2e2016-09-12 17:13:55 +01001251 ret = arm_smmu_init_domain_context(domain, smmu);
Arnd Bergmann287980e2016-05-27 23:23:25 +02001252 if (ret < 0)
Will Deacon518f7132014-11-14 17:17:54 +00001253 return ret;
1254
Will Deacon45ae7cf2013-06-24 18:31:25 +01001255 /*
Will Deacon44680ee2014-06-25 11:29:12 +01001256 * Sanity check the domain. We don't support domains across
1257 * different SMMUs.
Will Deacon45ae7cf2013-06-24 18:31:25 +01001258 */
Robin Murphyadfec2e2016-09-12 17:13:55 +01001259 if (smmu_domain->smmu != smmu) {
Will Deacon45ae7cf2013-06-24 18:31:25 +01001260 dev_err(dev,
1261 "cannot attach to SMMU %s whilst already attached to domain on SMMU %s\n",
Robin Murphyadfec2e2016-09-12 17:13:55 +01001262 dev_name(smmu_domain->smmu->dev), dev_name(smmu->dev));
Mitchel Humpherysa18037b2014-07-30 18:58:13 +01001263 return -EINVAL;
Will Deacon45ae7cf2013-06-24 18:31:25 +01001264 }
Will Deacon45ae7cf2013-06-24 18:31:25 +01001265
1266 /* Looks ok, so add the device to the domain */
Robin Murphyadfec2e2016-09-12 17:13:55 +01001267 return arm_smmu_domain_add_master(smmu_domain, fwspec);
Will Deacon45ae7cf2013-06-24 18:31:25 +01001268}
1269
Will Deacon45ae7cf2013-06-24 18:31:25 +01001270static int arm_smmu_map(struct iommu_domain *domain, unsigned long iova,
Will Deaconb410aed2014-02-20 16:31:06 +00001271 phys_addr_t paddr, size_t size, int prot)
Will Deacon45ae7cf2013-06-24 18:31:25 +01001272{
Will Deacon518f7132014-11-14 17:17:54 +00001273 int ret;
1274 unsigned long flags;
Joerg Roedel1d672632015-03-26 13:43:10 +01001275 struct arm_smmu_domain *smmu_domain = to_smmu_domain(domain);
Will Deacon518f7132014-11-14 17:17:54 +00001276 struct io_pgtable_ops *ops= smmu_domain->pgtbl_ops;
Will Deacon45ae7cf2013-06-24 18:31:25 +01001277
Will Deacon518f7132014-11-14 17:17:54 +00001278 if (!ops)
Will Deacon45ae7cf2013-06-24 18:31:25 +01001279 return -ENODEV;
1280
Will Deacon518f7132014-11-14 17:17:54 +00001281 spin_lock_irqsave(&smmu_domain->pgtbl_lock, flags);
1282 ret = ops->map(ops, iova, paddr, size, prot);
1283 spin_unlock_irqrestore(&smmu_domain->pgtbl_lock, flags);
1284 return ret;
Will Deacon45ae7cf2013-06-24 18:31:25 +01001285}
1286
1287static size_t arm_smmu_unmap(struct iommu_domain *domain, unsigned long iova,
1288 size_t size)
1289{
Will Deacon518f7132014-11-14 17:17:54 +00001290 size_t ret;
1291 unsigned long flags;
Joerg Roedel1d672632015-03-26 13:43:10 +01001292 struct arm_smmu_domain *smmu_domain = to_smmu_domain(domain);
Will Deacon518f7132014-11-14 17:17:54 +00001293 struct io_pgtable_ops *ops= smmu_domain->pgtbl_ops;
Will Deacon45ae7cf2013-06-24 18:31:25 +01001294
Will Deacon518f7132014-11-14 17:17:54 +00001295 if (!ops)
1296 return 0;
1297
1298 spin_lock_irqsave(&smmu_domain->pgtbl_lock, flags);
1299 ret = ops->unmap(ops, iova, size);
1300 spin_unlock_irqrestore(&smmu_domain->pgtbl_lock, flags);
1301 return ret;
Will Deacon45ae7cf2013-06-24 18:31:25 +01001302}
1303
Mitchel Humpherys859a7322014-10-29 21:13:40 +00001304static phys_addr_t arm_smmu_iova_to_phys_hard(struct iommu_domain *domain,
1305 dma_addr_t iova)
1306{
Joerg Roedel1d672632015-03-26 13:43:10 +01001307 struct arm_smmu_domain *smmu_domain = to_smmu_domain(domain);
Mitchel Humpherys859a7322014-10-29 21:13:40 +00001308 struct arm_smmu_device *smmu = smmu_domain->smmu;
1309 struct arm_smmu_cfg *cfg = &smmu_domain->cfg;
1310 struct io_pgtable_ops *ops= smmu_domain->pgtbl_ops;
1311 struct device *dev = smmu->dev;
1312 void __iomem *cb_base;
1313 u32 tmp;
1314 u64 phys;
Robin Murphy661d9622015-05-27 17:09:34 +01001315 unsigned long va;
Mitchel Humpherys859a7322014-10-29 21:13:40 +00001316
1317 cb_base = ARM_SMMU_CB_BASE(smmu) + ARM_SMMU_CB(smmu, cfg->cbndx);
1318
Robin Murphy661d9622015-05-27 17:09:34 +01001319 /* ATS1 registers can only be written atomically */
1320 va = iova & ~0xfffUL;
Robin Murphy661d9622015-05-27 17:09:34 +01001321 if (smmu->version == ARM_SMMU_V2)
Robin Murphyf9a05f02016-04-13 18:13:01 +01001322 smmu_write_atomic_lq(va, cb_base + ARM_SMMU_CB_ATS1PR);
1323 else /* Register is only 32-bit in v1 */
Robin Murphy661d9622015-05-27 17:09:34 +01001324 writel_relaxed(va, cb_base + ARM_SMMU_CB_ATS1PR);
Mitchel Humpherys859a7322014-10-29 21:13:40 +00001325
1326 if (readl_poll_timeout_atomic(cb_base + ARM_SMMU_CB_ATSR, tmp,
1327 !(tmp & ATSR_ACTIVE), 5, 50)) {
1328 dev_err(dev,
Fabio Estevam077124c2015-08-18 17:12:24 +01001329 "iova to phys timed out on %pad. Falling back to software table walk.\n",
Mitchel Humpherys859a7322014-10-29 21:13:40 +00001330 &iova);
1331 return ops->iova_to_phys(ops, iova);
1332 }
1333
Robin Murphyf9a05f02016-04-13 18:13:01 +01001334 phys = readq_relaxed(cb_base + ARM_SMMU_CB_PAR);
Mitchel Humpherys859a7322014-10-29 21:13:40 +00001335 if (phys & CB_PAR_F) {
1336 dev_err(dev, "translation fault!\n");
1337 dev_err(dev, "PAR = 0x%llx\n", phys);
1338 return 0;
1339 }
1340
1341 return (phys & GENMASK_ULL(39, 12)) | (iova & 0xfff);
1342}
1343
Will Deacon45ae7cf2013-06-24 18:31:25 +01001344static phys_addr_t arm_smmu_iova_to_phys(struct iommu_domain *domain,
Mitchel Humpherys859a7322014-10-29 21:13:40 +00001345 dma_addr_t iova)
Will Deacon45ae7cf2013-06-24 18:31:25 +01001346{
Will Deacon518f7132014-11-14 17:17:54 +00001347 phys_addr_t ret;
1348 unsigned long flags;
Joerg Roedel1d672632015-03-26 13:43:10 +01001349 struct arm_smmu_domain *smmu_domain = to_smmu_domain(domain);
Will Deacon518f7132014-11-14 17:17:54 +00001350 struct io_pgtable_ops *ops= smmu_domain->pgtbl_ops;
Will Deacon45ae7cf2013-06-24 18:31:25 +01001351
Will Deacon518f7132014-11-14 17:17:54 +00001352 if (!ops)
Will Deacona44a97912013-11-07 18:47:50 +00001353 return 0;
Will Deacon45ae7cf2013-06-24 18:31:25 +01001354
Will Deacon518f7132014-11-14 17:17:54 +00001355 spin_lock_irqsave(&smmu_domain->pgtbl_lock, flags);
Baptiste Reynal83a60ed2015-03-04 16:51:06 +01001356 if (smmu_domain->smmu->features & ARM_SMMU_FEAT_TRANS_OPS &&
1357 smmu_domain->stage == ARM_SMMU_DOMAIN_S1) {
Mitchel Humpherys859a7322014-10-29 21:13:40 +00001358 ret = arm_smmu_iova_to_phys_hard(domain, iova);
Baptiste Reynal83a60ed2015-03-04 16:51:06 +01001359 } else {
Mitchel Humpherys859a7322014-10-29 21:13:40 +00001360 ret = ops->iova_to_phys(ops, iova);
Baptiste Reynal83a60ed2015-03-04 16:51:06 +01001361 }
1362
Will Deacon518f7132014-11-14 17:17:54 +00001363 spin_unlock_irqrestore(&smmu_domain->pgtbl_lock, flags);
Mitchel Humpherys859a7322014-10-29 21:13:40 +00001364
Will Deacon518f7132014-11-14 17:17:54 +00001365 return ret;
Will Deacon45ae7cf2013-06-24 18:31:25 +01001366}
1367
Joerg Roedel1fd0c772014-09-05 10:49:34 +02001368static bool arm_smmu_capable(enum iommu_cap cap)
Will Deacon45ae7cf2013-06-24 18:31:25 +01001369{
Will Deacond0948942014-06-24 17:30:10 +01001370 switch (cap) {
1371 case IOMMU_CAP_CACHE_COHERENCY:
Joerg Roedel1fd0c772014-09-05 10:49:34 +02001372 /*
1373 * Return true here as the SMMU can always send out coherent
1374 * requests.
1375 */
1376 return true;
Will Deacond0948942014-06-24 17:30:10 +01001377 case IOMMU_CAP_INTR_REMAP:
Joerg Roedel1fd0c772014-09-05 10:49:34 +02001378 return true; /* MSIs are just memory writes */
Antonios Motakis0029a8d2014-10-13 14:06:18 +01001379 case IOMMU_CAP_NOEXEC:
1380 return true;
Will Deacond0948942014-06-24 17:30:10 +01001381 default:
Joerg Roedel1fd0c772014-09-05 10:49:34 +02001382 return false;
Will Deacond0948942014-06-24 17:30:10 +01001383 }
Will Deacon45ae7cf2013-06-24 18:31:25 +01001384}
Will Deacon45ae7cf2013-06-24 18:31:25 +01001385
Robin Murphy021bb842016-09-14 15:26:46 +01001386static int arm_smmu_match_node(struct device *dev, void *data)
1387{
Lorenzo Pieralisice9babe2016-11-21 10:01:37 +00001388 return dev->fwnode == data;
Robin Murphy021bb842016-09-14 15:26:46 +01001389}
1390
Lorenzo Pieralisice9babe2016-11-21 10:01:37 +00001391static
1392struct arm_smmu_device *arm_smmu_get_by_fwnode(struct fwnode_handle *fwnode)
Robin Murphy021bb842016-09-14 15:26:46 +01001393{
1394 struct device *dev = driver_find_device(&arm_smmu_driver.driver, NULL,
Lorenzo Pieralisice9babe2016-11-21 10:01:37 +00001395 fwnode, arm_smmu_match_node);
Robin Murphy021bb842016-09-14 15:26:46 +01001396 put_device(dev);
1397 return dev ? dev_get_drvdata(dev) : NULL;
1398}
1399
Will Deacon03edb222015-01-19 14:27:33 +00001400static int arm_smmu_add_device(struct device *dev)
1401{
Robin Murphyadfec2e2016-09-12 17:13:55 +01001402 struct arm_smmu_device *smmu;
Robin Murphyf80cd882016-09-14 15:21:39 +01001403 struct arm_smmu_master_cfg *cfg;
Robin Murphy021bb842016-09-14 15:26:46 +01001404 struct iommu_fwspec *fwspec = dev->iommu_fwspec;
Robin Murphyf80cd882016-09-14 15:21:39 +01001405 int i, ret;
1406
Robin Murphy021bb842016-09-14 15:26:46 +01001407 if (using_legacy_binding) {
1408 ret = arm_smmu_register_legacy_master(dev, &smmu);
1409 fwspec = dev->iommu_fwspec;
1410 if (ret)
1411 goto out_free;
Robin Murphy3c117b52016-11-02 17:31:32 +00001412 } else if (fwspec && fwspec->ops == &arm_smmu_ops) {
Lorenzo Pieralisice9babe2016-11-21 10:01:37 +00001413 smmu = arm_smmu_get_by_fwnode(fwspec->iommu_fwnode);
Robin Murphy021bb842016-09-14 15:26:46 +01001414 } else {
1415 return -ENODEV;
1416 }
Robin Murphyf80cd882016-09-14 15:21:39 +01001417
1418 ret = -EINVAL;
Robin Murphyadfec2e2016-09-12 17:13:55 +01001419 for (i = 0; i < fwspec->num_ids; i++) {
1420 u16 sid = fwspec->ids[i];
Robin Murphy021bb842016-09-14 15:26:46 +01001421 u16 mask = fwspec->ids[i] >> SMR_MASK_SHIFT;
Robin Murphyf80cd882016-09-14 15:21:39 +01001422
Robin Murphyadfec2e2016-09-12 17:13:55 +01001423 if (sid & ~smmu->streamid_mask) {
Robin Murphyf80cd882016-09-14 15:21:39 +01001424 dev_err(dev, "stream ID 0x%x out of range for SMMU (0x%x)\n",
Robin Murphy021bb842016-09-14 15:26:46 +01001425 sid, smmu->streamid_mask);
1426 goto out_free;
1427 }
1428 if (mask & ~smmu->smr_mask_mask) {
1429 dev_err(dev, "SMR mask 0x%x out of range for SMMU (0x%x)\n",
1430 sid, smmu->smr_mask_mask);
Robin Murphyf80cd882016-09-14 15:21:39 +01001431 goto out_free;
1432 }
Robin Murphyf80cd882016-09-14 15:21:39 +01001433 }
Will Deacon03edb222015-01-19 14:27:33 +00001434
Robin Murphyadfec2e2016-09-12 17:13:55 +01001435 ret = -ENOMEM;
1436 cfg = kzalloc(offsetof(struct arm_smmu_master_cfg, smendx[i]),
1437 GFP_KERNEL);
1438 if (!cfg)
1439 goto out_free;
1440
1441 cfg->smmu = smmu;
1442 fwspec->iommu_priv = cfg;
1443 while (i--)
1444 cfg->smendx[i] = INVALID_SMENDX;
1445
Robin Murphy588888a2016-09-12 17:13:54 +01001446 ret = arm_smmu_master_alloc_smes(dev);
Robin Murphyadfec2e2016-09-12 17:13:55 +01001447 if (ret)
1448 goto out_free;
1449
Joerg Roedel9648cbc2017-02-01 18:11:36 +01001450 iommu_device_link(&smmu->iommu, dev);
1451
Robin Murphyadfec2e2016-09-12 17:13:55 +01001452 return 0;
Robin Murphyf80cd882016-09-14 15:21:39 +01001453
1454out_free:
Robin Murphyadfec2e2016-09-12 17:13:55 +01001455 if (fwspec)
1456 kfree(fwspec->iommu_priv);
1457 iommu_fwspec_free(dev);
Robin Murphyf80cd882016-09-14 15:21:39 +01001458 return ret;
Will Deacon03edb222015-01-19 14:27:33 +00001459}
1460
Will Deacon45ae7cf2013-06-24 18:31:25 +01001461static void arm_smmu_remove_device(struct device *dev)
1462{
Robin Murphyadfec2e2016-09-12 17:13:55 +01001463 struct iommu_fwspec *fwspec = dev->iommu_fwspec;
Joerg Roedel9648cbc2017-02-01 18:11:36 +01001464 struct arm_smmu_master_cfg *cfg;
1465 struct arm_smmu_device *smmu;
1466
Robin Murphy8e8b2032016-09-12 17:13:50 +01001467
Robin Murphyadfec2e2016-09-12 17:13:55 +01001468 if (!fwspec || fwspec->ops != &arm_smmu_ops)
Robin Murphyf80cd882016-09-14 15:21:39 +01001469 return;
Robin Murphy8e8b2032016-09-12 17:13:50 +01001470
Joerg Roedel9648cbc2017-02-01 18:11:36 +01001471 cfg = fwspec->iommu_priv;
1472 smmu = cfg->smmu;
1473
1474 iommu_device_unlink(&smmu->iommu, dev);
Robin Murphyadfec2e2016-09-12 17:13:55 +01001475 arm_smmu_master_free_smes(fwspec);
Antonios Motakis5fc63a72013-10-18 16:08:29 +01001476 iommu_group_remove_device(dev);
Robin Murphyadfec2e2016-09-12 17:13:55 +01001477 kfree(fwspec->iommu_priv);
1478 iommu_fwspec_free(dev);
Will Deacon45ae7cf2013-06-24 18:31:25 +01001479}
1480
Joerg Roedelaf659932015-10-21 23:51:41 +02001481static struct iommu_group *arm_smmu_device_group(struct device *dev)
1482{
Robin Murphyadfec2e2016-09-12 17:13:55 +01001483 struct iommu_fwspec *fwspec = dev->iommu_fwspec;
1484 struct arm_smmu_device *smmu = fwspec_smmu(fwspec);
Robin Murphy588888a2016-09-12 17:13:54 +01001485 struct iommu_group *group = NULL;
1486 int i, idx;
1487
Robin Murphyadfec2e2016-09-12 17:13:55 +01001488 for_each_cfg_sme(fwspec, i, idx) {
Robin Murphy588888a2016-09-12 17:13:54 +01001489 if (group && smmu->s2crs[idx].group &&
1490 group != smmu->s2crs[idx].group)
1491 return ERR_PTR(-EINVAL);
1492
1493 group = smmu->s2crs[idx].group;
1494 }
1495
1496 if (group)
Robin Murphye1b44cb2016-11-11 17:59:22 +00001497 return iommu_group_ref_get(group);
Joerg Roedelaf659932015-10-21 23:51:41 +02001498
1499 if (dev_is_pci(dev))
1500 group = pci_device_group(dev);
1501 else
1502 group = generic_device_group(dev);
1503
Joerg Roedelaf659932015-10-21 23:51:41 +02001504 return group;
1505}
1506
Will Deaconc752ce42014-06-25 22:46:31 +01001507static int arm_smmu_domain_get_attr(struct iommu_domain *domain,
1508 enum iommu_attr attr, void *data)
1509{
Joerg Roedel1d672632015-03-26 13:43:10 +01001510 struct arm_smmu_domain *smmu_domain = to_smmu_domain(domain);
Will Deaconc752ce42014-06-25 22:46:31 +01001511
1512 switch (attr) {
1513 case DOMAIN_ATTR_NESTING:
1514 *(int *)data = (smmu_domain->stage == ARM_SMMU_DOMAIN_NESTED);
1515 return 0;
1516 default:
1517 return -ENODEV;
1518 }
1519}
1520
1521static int arm_smmu_domain_set_attr(struct iommu_domain *domain,
1522 enum iommu_attr attr, void *data)
1523{
Will Deacon518f7132014-11-14 17:17:54 +00001524 int ret = 0;
Joerg Roedel1d672632015-03-26 13:43:10 +01001525 struct arm_smmu_domain *smmu_domain = to_smmu_domain(domain);
Will Deaconc752ce42014-06-25 22:46:31 +01001526
Will Deacon518f7132014-11-14 17:17:54 +00001527 mutex_lock(&smmu_domain->init_mutex);
1528
Will Deaconc752ce42014-06-25 22:46:31 +01001529 switch (attr) {
1530 case DOMAIN_ATTR_NESTING:
Will Deacon518f7132014-11-14 17:17:54 +00001531 if (smmu_domain->smmu) {
1532 ret = -EPERM;
1533 goto out_unlock;
1534 }
1535
Will Deaconc752ce42014-06-25 22:46:31 +01001536 if (*(int *)data)
1537 smmu_domain->stage = ARM_SMMU_DOMAIN_NESTED;
1538 else
1539 smmu_domain->stage = ARM_SMMU_DOMAIN_S1;
1540
Will Deacon518f7132014-11-14 17:17:54 +00001541 break;
Will Deaconc752ce42014-06-25 22:46:31 +01001542 default:
Will Deacon518f7132014-11-14 17:17:54 +00001543 ret = -ENODEV;
Will Deaconc752ce42014-06-25 22:46:31 +01001544 }
Will Deacon518f7132014-11-14 17:17:54 +00001545
1546out_unlock:
1547 mutex_unlock(&smmu_domain->init_mutex);
1548 return ret;
Will Deaconc752ce42014-06-25 22:46:31 +01001549}
1550
Robin Murphy021bb842016-09-14 15:26:46 +01001551static int arm_smmu_of_xlate(struct device *dev, struct of_phandle_args *args)
1552{
1553 u32 fwid = 0;
1554
1555 if (args->args_count > 0)
1556 fwid |= (u16)args->args[0];
1557
1558 if (args->args_count > 1)
1559 fwid |= (u16)args->args[1] << SMR_MASK_SHIFT;
1560
1561 return iommu_fwspec_add_ids(dev, &fwid, 1);
1562}
1563
Will Deacon518f7132014-11-14 17:17:54 +00001564static struct iommu_ops arm_smmu_ops = {
Will Deaconc752ce42014-06-25 22:46:31 +01001565 .capable = arm_smmu_capable,
Joerg Roedel1d672632015-03-26 13:43:10 +01001566 .domain_alloc = arm_smmu_domain_alloc,
1567 .domain_free = arm_smmu_domain_free,
Will Deaconc752ce42014-06-25 22:46:31 +01001568 .attach_dev = arm_smmu_attach_dev,
Will Deaconc752ce42014-06-25 22:46:31 +01001569 .map = arm_smmu_map,
1570 .unmap = arm_smmu_unmap,
Joerg Roedel76771c92014-12-02 13:07:13 +01001571 .map_sg = default_iommu_map_sg,
Will Deaconc752ce42014-06-25 22:46:31 +01001572 .iova_to_phys = arm_smmu_iova_to_phys,
1573 .add_device = arm_smmu_add_device,
1574 .remove_device = arm_smmu_remove_device,
Joerg Roedelaf659932015-10-21 23:51:41 +02001575 .device_group = arm_smmu_device_group,
Will Deaconc752ce42014-06-25 22:46:31 +01001576 .domain_get_attr = arm_smmu_domain_get_attr,
1577 .domain_set_attr = arm_smmu_domain_set_attr,
Robin Murphy021bb842016-09-14 15:26:46 +01001578 .of_xlate = arm_smmu_of_xlate,
Will Deacon518f7132014-11-14 17:17:54 +00001579 .pgsize_bitmap = -1UL, /* Restricted during device attach */
Will Deacon45ae7cf2013-06-24 18:31:25 +01001580};
1581
1582static void arm_smmu_device_reset(struct arm_smmu_device *smmu)
1583{
1584 void __iomem *gr0_base = ARM_SMMU_GR0(smmu);
Andreas Herrmann659db6f2013-10-01 13:39:09 +01001585 void __iomem *cb_base;
Robin Murphy1f3d5ca2016-09-12 17:13:49 +01001586 int i;
Peng Fan3ca37122016-05-03 21:50:30 +08001587 u32 reg, major;
Andreas Herrmann659db6f2013-10-01 13:39:09 +01001588
Andreas Herrmann3a5df8f2014-01-30 18:18:04 +00001589 /* clear global FSR */
1590 reg = readl_relaxed(ARM_SMMU_GR0_NS(smmu) + ARM_SMMU_GR0_sGFSR);
1591 writel(reg, ARM_SMMU_GR0_NS(smmu) + ARM_SMMU_GR0_sGFSR);
Will Deacon45ae7cf2013-06-24 18:31:25 +01001592
Robin Murphy1f3d5ca2016-09-12 17:13:49 +01001593 /*
1594 * Reset stream mapping groups: Initial values mark all SMRn as
1595 * invalid and all S2CRn as bypass unless overridden.
1596 */
Robin Murphy8e8b2032016-09-12 17:13:50 +01001597 for (i = 0; i < smmu->num_mapping_groups; ++i)
1598 arm_smmu_write_sme(smmu, i);
Will Deacon45ae7cf2013-06-24 18:31:25 +01001599
Nipun Gupta6eb18d42016-11-04 15:25:23 +05301600 if (smmu->model == ARM_MMU500) {
1601 /*
1602 * Before clearing ARM_MMU500_ACTLR_CPRE, need to
1603 * clear CACHE_LOCK bit of ACR first. And, CACHE_LOCK
1604 * bit is only present in MMU-500r2 onwards.
1605 */
1606 reg = readl_relaxed(gr0_base + ARM_SMMU_GR0_ID7);
1607 major = (reg >> ID7_MAJOR_SHIFT) & ID7_MAJOR_MASK;
Peng Fan3ca37122016-05-03 21:50:30 +08001608 reg = readl_relaxed(gr0_base + ARM_SMMU_GR0_sACR);
Nipun Gupta6eb18d42016-11-04 15:25:23 +05301609 if (major >= 2)
1610 reg &= ~ARM_MMU500_ACR_CACHE_LOCK;
1611 /*
1612 * Allow unmatched Stream IDs to allocate bypass
1613 * TLB entries for reduced latency.
1614 */
1615 reg |= ARM_MMU500_ACR_SMTNMB_TLBEN;
Peng Fan3ca37122016-05-03 21:50:30 +08001616 writel_relaxed(reg, gr0_base + ARM_SMMU_GR0_sACR);
1617 }
1618
Andreas Herrmann659db6f2013-10-01 13:39:09 +01001619 /* Make sure all context banks are disabled and clear CB_FSR */
1620 for (i = 0; i < smmu->num_context_banks; ++i) {
1621 cb_base = ARM_SMMU_CB_BASE(smmu) + ARM_SMMU_CB(smmu, i);
1622 writel_relaxed(0, cb_base + ARM_SMMU_CB_SCTLR);
1623 writel_relaxed(FSR_FAULT, cb_base + ARM_SMMU_CB_FSR);
Robin Murphyf0cfffc2016-04-13 18:12:59 +01001624 /*
1625 * Disable MMU-500's not-particularly-beneficial next-page
1626 * prefetcher for the sake of errata #841119 and #826419.
1627 */
1628 if (smmu->model == ARM_MMU500) {
1629 reg = readl_relaxed(cb_base + ARM_SMMU_CB_ACTLR);
1630 reg &= ~ARM_MMU500_ACTLR_CPRE;
1631 writel_relaxed(reg, cb_base + ARM_SMMU_CB_ACTLR);
1632 }
Andreas Herrmann659db6f2013-10-01 13:39:09 +01001633 }
Will Deacon1463fe42013-07-31 19:21:27 +01001634
Will Deacon45ae7cf2013-06-24 18:31:25 +01001635 /* Invalidate the TLB, just in case */
Will Deacon45ae7cf2013-06-24 18:31:25 +01001636 writel_relaxed(0, gr0_base + ARM_SMMU_GR0_TLBIALLH);
1637 writel_relaxed(0, gr0_base + ARM_SMMU_GR0_TLBIALLNSNH);
1638
Andreas Herrmann3a5df8f2014-01-30 18:18:04 +00001639 reg = readl_relaxed(ARM_SMMU_GR0_NS(smmu) + ARM_SMMU_GR0_sCR0);
Andreas Herrmann659db6f2013-10-01 13:39:09 +01001640
Will Deacon45ae7cf2013-06-24 18:31:25 +01001641 /* Enable fault reporting */
Andreas Herrmann659db6f2013-10-01 13:39:09 +01001642 reg |= (sCR0_GFRE | sCR0_GFIE | sCR0_GCFGFRE | sCR0_GCFGFIE);
Will Deacon45ae7cf2013-06-24 18:31:25 +01001643
1644 /* Disable TLB broadcasting. */
Andreas Herrmann659db6f2013-10-01 13:39:09 +01001645 reg |= (sCR0_VMIDPNE | sCR0_PTM);
Will Deacon45ae7cf2013-06-24 18:31:25 +01001646
Robin Murphy25a1c962016-02-10 14:25:33 +00001647 /* Enable client access, handling unmatched streams as appropriate */
1648 reg &= ~sCR0_CLIENTPD;
1649 if (disable_bypass)
1650 reg |= sCR0_USFCFG;
1651 else
1652 reg &= ~sCR0_USFCFG;
Will Deacon45ae7cf2013-06-24 18:31:25 +01001653
1654 /* Disable forced broadcasting */
Andreas Herrmann659db6f2013-10-01 13:39:09 +01001655 reg &= ~sCR0_FB;
Will Deacon45ae7cf2013-06-24 18:31:25 +01001656
1657 /* Don't upgrade barriers */
Andreas Herrmann659db6f2013-10-01 13:39:09 +01001658 reg &= ~(sCR0_BSU_MASK << sCR0_BSU_SHIFT);
Will Deacon45ae7cf2013-06-24 18:31:25 +01001659
Tirumalesh Chalamarla4e3e9b62016-02-23 10:19:00 -08001660 if (smmu->features & ARM_SMMU_FEAT_VMID16)
1661 reg |= sCR0_VMID16EN;
1662
Will Deacon45ae7cf2013-06-24 18:31:25 +01001663 /* Push the button */
Will Deacon518f7132014-11-14 17:17:54 +00001664 __arm_smmu_tlb_sync(smmu);
Andreas Herrmann3a5df8f2014-01-30 18:18:04 +00001665 writel(reg, ARM_SMMU_GR0_NS(smmu) + ARM_SMMU_GR0_sCR0);
Will Deacon45ae7cf2013-06-24 18:31:25 +01001666}
1667
1668static int arm_smmu_id_size_to_bits(int size)
1669{
1670 switch (size) {
1671 case 0:
1672 return 32;
1673 case 1:
1674 return 36;
1675 case 2:
1676 return 40;
1677 case 3:
1678 return 42;
1679 case 4:
1680 return 44;
1681 case 5:
1682 default:
1683 return 48;
1684 }
1685}
1686
1687static int arm_smmu_device_cfg_probe(struct arm_smmu_device *smmu)
1688{
1689 unsigned long size;
1690 void __iomem *gr0_base = ARM_SMMU_GR0(smmu);
1691 u32 id;
Lorenzo Pieralisibbb8a182016-11-21 10:01:44 +00001692 bool cttw_reg, cttw_fw = smmu->features & ARM_SMMU_FEAT_COHERENT_WALK;
Robin Murphy8e8b2032016-09-12 17:13:50 +01001693 int i;
Will Deacon45ae7cf2013-06-24 18:31:25 +01001694
1695 dev_notice(smmu->dev, "probing hardware configuration...\n");
Robin Murphyb7862e32016-04-13 18:13:03 +01001696 dev_notice(smmu->dev, "SMMUv%d with:\n",
1697 smmu->version == ARM_SMMU_V2 ? 2 : 1);
Will Deacon45ae7cf2013-06-24 18:31:25 +01001698
1699 /* ID0 */
1700 id = readl_relaxed(gr0_base + ARM_SMMU_GR0_ID0);
Will Deacon4cf740b2014-07-14 19:47:39 +01001701
1702 /* Restrict available stages based on module parameter */
1703 if (force_stage == 1)
1704 id &= ~(ID0_S2TS | ID0_NTS);
1705 else if (force_stage == 2)
1706 id &= ~(ID0_S1TS | ID0_NTS);
1707
Will Deacon45ae7cf2013-06-24 18:31:25 +01001708 if (id & ID0_S1TS) {
1709 smmu->features |= ARM_SMMU_FEAT_TRANS_S1;
1710 dev_notice(smmu->dev, "\tstage 1 translation\n");
1711 }
1712
1713 if (id & ID0_S2TS) {
1714 smmu->features |= ARM_SMMU_FEAT_TRANS_S2;
1715 dev_notice(smmu->dev, "\tstage 2 translation\n");
1716 }
1717
1718 if (id & ID0_NTS) {
1719 smmu->features |= ARM_SMMU_FEAT_TRANS_NESTED;
1720 dev_notice(smmu->dev, "\tnested translation\n");
1721 }
1722
1723 if (!(smmu->features &
Will Deacon4cf740b2014-07-14 19:47:39 +01001724 (ARM_SMMU_FEAT_TRANS_S1 | ARM_SMMU_FEAT_TRANS_S2))) {
Will Deacon45ae7cf2013-06-24 18:31:25 +01001725 dev_err(smmu->dev, "\tno translation support!\n");
1726 return -ENODEV;
1727 }
1728
Robin Murphyb7862e32016-04-13 18:13:03 +01001729 if ((id & ID0_S1TS) &&
1730 ((smmu->version < ARM_SMMU_V2) || !(id & ID0_ATOSNS))) {
Mitchel Humpherys859a7322014-10-29 21:13:40 +00001731 smmu->features |= ARM_SMMU_FEAT_TRANS_OPS;
1732 dev_notice(smmu->dev, "\taddress translation ops\n");
1733 }
1734
Robin Murphybae2c2d2015-07-29 19:46:05 +01001735 /*
1736 * In order for DMA API calls to work properly, we must defer to what
Lorenzo Pieralisibbb8a182016-11-21 10:01:44 +00001737 * the FW says about coherency, regardless of what the hardware claims.
Robin Murphybae2c2d2015-07-29 19:46:05 +01001738 * Fortunately, this also opens up a workaround for systems where the
1739 * ID register value has ended up configured incorrectly.
1740 */
Robin Murphybae2c2d2015-07-29 19:46:05 +01001741 cttw_reg = !!(id & ID0_CTTW);
Lorenzo Pieralisibbb8a182016-11-21 10:01:44 +00001742 if (cttw_fw || cttw_reg)
Robin Murphybae2c2d2015-07-29 19:46:05 +01001743 dev_notice(smmu->dev, "\t%scoherent table walk\n",
Lorenzo Pieralisibbb8a182016-11-21 10:01:44 +00001744 cttw_fw ? "" : "non-");
1745 if (cttw_fw != cttw_reg)
Robin Murphybae2c2d2015-07-29 19:46:05 +01001746 dev_notice(smmu->dev,
Lorenzo Pieralisibbb8a182016-11-21 10:01:44 +00001747 "\t(IDR0.CTTW overridden by FW configuration)\n");
Will Deacon45ae7cf2013-06-24 18:31:25 +01001748
Robin Murphy21174242016-09-12 17:13:48 +01001749 /* Max. number of entries we have for stream matching/indexing */
1750 size = 1 << ((id >> ID0_NUMSIDB_SHIFT) & ID0_NUMSIDB_MASK);
1751 smmu->streamid_mask = size - 1;
Will Deacon45ae7cf2013-06-24 18:31:25 +01001752 if (id & ID0_SMS) {
Robin Murphy21174242016-09-12 17:13:48 +01001753 u32 smr;
Will Deacon45ae7cf2013-06-24 18:31:25 +01001754
1755 smmu->features |= ARM_SMMU_FEAT_STREAM_MATCH;
Robin Murphy21174242016-09-12 17:13:48 +01001756 size = (id >> ID0_NUMSMRG_SHIFT) & ID0_NUMSMRG_MASK;
1757 if (size == 0) {
Will Deacon45ae7cf2013-06-24 18:31:25 +01001758 dev_err(smmu->dev,
1759 "stream-matching supported, but no SMRs present!\n");
1760 return -ENODEV;
1761 }
1762
Robin Murphy21174242016-09-12 17:13:48 +01001763 /*
1764 * SMR.ID bits may not be preserved if the corresponding MASK
1765 * bits are set, so check each one separately. We can reject
1766 * masters later if they try to claim IDs outside these masks.
1767 */
1768 smr = smmu->streamid_mask << SMR_ID_SHIFT;
Will Deacon45ae7cf2013-06-24 18:31:25 +01001769 writel_relaxed(smr, gr0_base + ARM_SMMU_GR0_SMR(0));
1770 smr = readl_relaxed(gr0_base + ARM_SMMU_GR0_SMR(0));
Robin Murphy21174242016-09-12 17:13:48 +01001771 smmu->streamid_mask = smr >> SMR_ID_SHIFT;
Will Deacon45ae7cf2013-06-24 18:31:25 +01001772
Robin Murphy21174242016-09-12 17:13:48 +01001773 smr = smmu->streamid_mask << SMR_MASK_SHIFT;
1774 writel_relaxed(smr, gr0_base + ARM_SMMU_GR0_SMR(0));
1775 smr = readl_relaxed(gr0_base + ARM_SMMU_GR0_SMR(0));
1776 smmu->smr_mask_mask = smr >> SMR_MASK_SHIFT;
Will Deacon45ae7cf2013-06-24 18:31:25 +01001777
Robin Murphy1f3d5ca2016-09-12 17:13:49 +01001778 /* Zero-initialised to mark as invalid */
1779 smmu->smrs = devm_kcalloc(smmu->dev, size, sizeof(*smmu->smrs),
1780 GFP_KERNEL);
1781 if (!smmu->smrs)
1782 return -ENOMEM;
1783
Will Deacon45ae7cf2013-06-24 18:31:25 +01001784 dev_notice(smmu->dev,
Robin Murphy21174242016-09-12 17:13:48 +01001785 "\tstream matching with %lu register groups, mask 0x%x",
1786 size, smmu->smr_mask_mask);
Will Deacon45ae7cf2013-06-24 18:31:25 +01001787 }
Robin Murphy8e8b2032016-09-12 17:13:50 +01001788 /* s2cr->type == 0 means translation, so initialise explicitly */
1789 smmu->s2crs = devm_kmalloc_array(smmu->dev, size, sizeof(*smmu->s2crs),
1790 GFP_KERNEL);
1791 if (!smmu->s2crs)
1792 return -ENOMEM;
1793 for (i = 0; i < size; i++)
1794 smmu->s2crs[i] = s2cr_init_val;
1795
Robin Murphy21174242016-09-12 17:13:48 +01001796 smmu->num_mapping_groups = size;
Robin Murphy588888a2016-09-12 17:13:54 +01001797 mutex_init(&smmu->stream_map_mutex);
Will Deacon45ae7cf2013-06-24 18:31:25 +01001798
Robin Murphy7602b872016-04-28 17:12:09 +01001799 if (smmu->version < ARM_SMMU_V2 || !(id & ID0_PTFS_NO_AARCH32)) {
1800 smmu->features |= ARM_SMMU_FEAT_FMT_AARCH32_L;
1801 if (!(id & ID0_PTFS_NO_AARCH32S))
1802 smmu->features |= ARM_SMMU_FEAT_FMT_AARCH32_S;
1803 }
1804
Will Deacon45ae7cf2013-06-24 18:31:25 +01001805 /* ID1 */
1806 id = readl_relaxed(gr0_base + ARM_SMMU_GR0_ID1);
Will Deaconc757e852014-07-30 11:33:25 +01001807 smmu->pgshift = (id & ID1_PAGESIZE) ? 16 : 12;
Will Deacon45ae7cf2013-06-24 18:31:25 +01001808
Andreas Herrmannc55af7f2013-10-01 13:39:06 +01001809 /* Check for size mismatch of SMMU address space from mapped region */
Will Deacon518f7132014-11-14 17:17:54 +00001810 size = 1 << (((id >> ID1_NUMPAGENDXB_SHIFT) & ID1_NUMPAGENDXB_MASK) + 1);
Will Deaconc757e852014-07-30 11:33:25 +01001811 size *= 2 << smmu->pgshift;
Andreas Herrmannc55af7f2013-10-01 13:39:06 +01001812 if (smmu->size != size)
Mitchel Humpherys29073202014-07-08 09:52:18 -07001813 dev_warn(smmu->dev,
1814 "SMMU address space size (0x%lx) differs from mapped region size (0x%lx)!\n",
1815 size, smmu->size);
Will Deacon45ae7cf2013-06-24 18:31:25 +01001816
Will Deacon518f7132014-11-14 17:17:54 +00001817 smmu->num_s2_context_banks = (id >> ID1_NUMS2CB_SHIFT) & ID1_NUMS2CB_MASK;
Will Deacon45ae7cf2013-06-24 18:31:25 +01001818 smmu->num_context_banks = (id >> ID1_NUMCB_SHIFT) & ID1_NUMCB_MASK;
1819 if (smmu->num_s2_context_banks > smmu->num_context_banks) {
1820 dev_err(smmu->dev, "impossible number of S2 context banks!\n");
1821 return -ENODEV;
1822 }
1823 dev_notice(smmu->dev, "\t%u context banks (%u stage-2 only)\n",
1824 smmu->num_context_banks, smmu->num_s2_context_banks);
Robin Murphye086d912016-04-13 18:12:58 +01001825 /*
1826 * Cavium CN88xx erratum #27704.
1827 * Ensure ASID and VMID allocation is unique across all SMMUs in
1828 * the system.
1829 */
1830 if (smmu->model == CAVIUM_SMMUV2) {
1831 smmu->cavium_id_base =
1832 atomic_add_return(smmu->num_context_banks,
1833 &cavium_smmu_context_count);
1834 smmu->cavium_id_base -= smmu->num_context_banks;
1835 }
Will Deacon45ae7cf2013-06-24 18:31:25 +01001836
1837 /* ID2 */
1838 id = readl_relaxed(gr0_base + ARM_SMMU_GR0_ID2);
1839 size = arm_smmu_id_size_to_bits((id >> ID2_IAS_SHIFT) & ID2_IAS_MASK);
Will Deacon518f7132014-11-14 17:17:54 +00001840 smmu->ipa_size = size;
Will Deacon45ae7cf2013-06-24 18:31:25 +01001841
Will Deacon518f7132014-11-14 17:17:54 +00001842 /* The output mask is also applied for bypass */
Will Deacon45ae7cf2013-06-24 18:31:25 +01001843 size = arm_smmu_id_size_to_bits((id >> ID2_OAS_SHIFT) & ID2_OAS_MASK);
Will Deacon518f7132014-11-14 17:17:54 +00001844 smmu->pa_size = size;
Will Deacon45ae7cf2013-06-24 18:31:25 +01001845
Tirumalesh Chalamarla4e3e9b62016-02-23 10:19:00 -08001846 if (id & ID2_VMID16)
1847 smmu->features |= ARM_SMMU_FEAT_VMID16;
1848
Robin Murphyf1d84542015-03-04 16:41:05 +00001849 /*
1850 * What the page table walker can address actually depends on which
1851 * descriptor format is in use, but since a) we don't know that yet,
1852 * and b) it can vary per context bank, this will have to do...
1853 */
1854 if (dma_set_mask_and_coherent(smmu->dev, DMA_BIT_MASK(size)))
1855 dev_warn(smmu->dev,
1856 "failed to set DMA mask for table walker\n");
1857
Robin Murphyb7862e32016-04-13 18:13:03 +01001858 if (smmu->version < ARM_SMMU_V2) {
Will Deacon518f7132014-11-14 17:17:54 +00001859 smmu->va_size = smmu->ipa_size;
Robin Murphyb7862e32016-04-13 18:13:03 +01001860 if (smmu->version == ARM_SMMU_V1_64K)
1861 smmu->features |= ARM_SMMU_FEAT_FMT_AARCH64_64K;
Will Deacon45ae7cf2013-06-24 18:31:25 +01001862 } else {
Will Deacon45ae7cf2013-06-24 18:31:25 +01001863 size = (id >> ID2_UBS_SHIFT) & ID2_UBS_MASK;
Will Deacon518f7132014-11-14 17:17:54 +00001864 smmu->va_size = arm_smmu_id_size_to_bits(size);
Will Deacon518f7132014-11-14 17:17:54 +00001865 if (id & ID2_PTFS_4K)
Robin Murphy7602b872016-04-28 17:12:09 +01001866 smmu->features |= ARM_SMMU_FEAT_FMT_AARCH64_4K;
Will Deacon518f7132014-11-14 17:17:54 +00001867 if (id & ID2_PTFS_16K)
Robin Murphy7602b872016-04-28 17:12:09 +01001868 smmu->features |= ARM_SMMU_FEAT_FMT_AARCH64_16K;
Will Deacon518f7132014-11-14 17:17:54 +00001869 if (id & ID2_PTFS_64K)
Robin Murphy7602b872016-04-28 17:12:09 +01001870 smmu->features |= ARM_SMMU_FEAT_FMT_AARCH64_64K;
Will Deacon45ae7cf2013-06-24 18:31:25 +01001871 }
1872
Robin Murphy7602b872016-04-28 17:12:09 +01001873 /* Now we've corralled the various formats, what'll it do? */
Robin Murphy7602b872016-04-28 17:12:09 +01001874 if (smmu->features & ARM_SMMU_FEAT_FMT_AARCH32_S)
Robin Murphyd5466352016-05-09 17:20:09 +01001875 smmu->pgsize_bitmap |= SZ_4K | SZ_64K | SZ_1M | SZ_16M;
Robin Murphy7602b872016-04-28 17:12:09 +01001876 if (smmu->features &
1877 (ARM_SMMU_FEAT_FMT_AARCH32_L | ARM_SMMU_FEAT_FMT_AARCH64_4K))
Robin Murphyd5466352016-05-09 17:20:09 +01001878 smmu->pgsize_bitmap |= SZ_4K | SZ_2M | SZ_1G;
Robin Murphy7602b872016-04-28 17:12:09 +01001879 if (smmu->features & ARM_SMMU_FEAT_FMT_AARCH64_16K)
Robin Murphyd5466352016-05-09 17:20:09 +01001880 smmu->pgsize_bitmap |= SZ_16K | SZ_32M;
Robin Murphy7602b872016-04-28 17:12:09 +01001881 if (smmu->features & ARM_SMMU_FEAT_FMT_AARCH64_64K)
Robin Murphyd5466352016-05-09 17:20:09 +01001882 smmu->pgsize_bitmap |= SZ_64K | SZ_512M;
Robin Murphy7602b872016-04-28 17:12:09 +01001883
Robin Murphyd5466352016-05-09 17:20:09 +01001884 if (arm_smmu_ops.pgsize_bitmap == -1UL)
1885 arm_smmu_ops.pgsize_bitmap = smmu->pgsize_bitmap;
1886 else
1887 arm_smmu_ops.pgsize_bitmap |= smmu->pgsize_bitmap;
1888 dev_notice(smmu->dev, "\tSupported page sizes: 0x%08lx\n",
1889 smmu->pgsize_bitmap);
1890
Will Deacon518f7132014-11-14 17:17:54 +00001891
Will Deacon28d60072014-09-01 16:24:48 +01001892 if (smmu->features & ARM_SMMU_FEAT_TRANS_S1)
1893 dev_notice(smmu->dev, "\tStage-1: %lu-bit VA -> %lu-bit IPA\n",
Will Deacon518f7132014-11-14 17:17:54 +00001894 smmu->va_size, smmu->ipa_size);
Will Deacon28d60072014-09-01 16:24:48 +01001895
1896 if (smmu->features & ARM_SMMU_FEAT_TRANS_S2)
1897 dev_notice(smmu->dev, "\tStage-2: %lu-bit IPA -> %lu-bit PA\n",
Will Deacon518f7132014-11-14 17:17:54 +00001898 smmu->ipa_size, smmu->pa_size);
Will Deacon28d60072014-09-01 16:24:48 +01001899
Will Deacon45ae7cf2013-06-24 18:31:25 +01001900 return 0;
1901}
1902
Robin Murphy67b65a32016-04-13 18:12:57 +01001903struct arm_smmu_match_data {
1904 enum arm_smmu_arch_version version;
1905 enum arm_smmu_implementation model;
1906};
1907
1908#define ARM_SMMU_MATCH_DATA(name, ver, imp) \
1909static struct arm_smmu_match_data name = { .version = ver, .model = imp }
1910
1911ARM_SMMU_MATCH_DATA(smmu_generic_v1, ARM_SMMU_V1, GENERIC_SMMU);
1912ARM_SMMU_MATCH_DATA(smmu_generic_v2, ARM_SMMU_V2, GENERIC_SMMU);
Robin Murphyb7862e32016-04-13 18:13:03 +01001913ARM_SMMU_MATCH_DATA(arm_mmu401, ARM_SMMU_V1_64K, GENERIC_SMMU);
Robin Murphyf0cfffc2016-04-13 18:12:59 +01001914ARM_SMMU_MATCH_DATA(arm_mmu500, ARM_SMMU_V2, ARM_MMU500);
Robin Murphye086d912016-04-13 18:12:58 +01001915ARM_SMMU_MATCH_DATA(cavium_smmuv2, ARM_SMMU_V2, CAVIUM_SMMUV2);
Robin Murphy67b65a32016-04-13 18:12:57 +01001916
Joerg Roedel09b52692014-10-02 12:24:45 +02001917static const struct of_device_id arm_smmu_of_match[] = {
Robin Murphy67b65a32016-04-13 18:12:57 +01001918 { .compatible = "arm,smmu-v1", .data = &smmu_generic_v1 },
1919 { .compatible = "arm,smmu-v2", .data = &smmu_generic_v2 },
1920 { .compatible = "arm,mmu-400", .data = &smmu_generic_v1 },
Robin Murphyb7862e32016-04-13 18:13:03 +01001921 { .compatible = "arm,mmu-401", .data = &arm_mmu401 },
Robin Murphyf0cfffc2016-04-13 18:12:59 +01001922 { .compatible = "arm,mmu-500", .data = &arm_mmu500 },
Robin Murphye086d912016-04-13 18:12:58 +01001923 { .compatible = "cavium,smmu-v2", .data = &cavium_smmuv2 },
Robin Murphy09360402014-08-28 17:51:59 +01001924 { },
1925};
1926MODULE_DEVICE_TABLE(of, arm_smmu_of_match);
1927
Lorenzo Pieralisid6fcd3b2016-11-21 10:01:45 +00001928#ifdef CONFIG_ACPI
1929static int acpi_smmu_get_data(u32 model, struct arm_smmu_device *smmu)
1930{
1931 int ret = 0;
1932
1933 switch (model) {
1934 case ACPI_IORT_SMMU_V1:
1935 case ACPI_IORT_SMMU_CORELINK_MMU400:
1936 smmu->version = ARM_SMMU_V1;
1937 smmu->model = GENERIC_SMMU;
1938 break;
1939 case ACPI_IORT_SMMU_V2:
1940 smmu->version = ARM_SMMU_V2;
1941 smmu->model = GENERIC_SMMU;
1942 break;
1943 case ACPI_IORT_SMMU_CORELINK_MMU500:
1944 smmu->version = ARM_SMMU_V2;
1945 smmu->model = ARM_MMU500;
1946 break;
1947 default:
1948 ret = -ENODEV;
1949 }
1950
1951 return ret;
1952}
1953
1954static int arm_smmu_device_acpi_probe(struct platform_device *pdev,
1955 struct arm_smmu_device *smmu)
1956{
1957 struct device *dev = smmu->dev;
1958 struct acpi_iort_node *node =
1959 *(struct acpi_iort_node **)dev_get_platdata(dev);
1960 struct acpi_iort_smmu *iort_smmu;
1961 int ret;
1962
1963 /* Retrieve SMMU1/2 specific data */
1964 iort_smmu = (struct acpi_iort_smmu *)node->node_data;
1965
1966 ret = acpi_smmu_get_data(iort_smmu->model, smmu);
1967 if (ret < 0)
1968 return ret;
1969
1970 /* Ignore the configuration access interrupt */
1971 smmu->num_global_irqs = 1;
1972
1973 if (iort_smmu->flags & ACPI_IORT_SMMU_COHERENT_WALK)
1974 smmu->features |= ARM_SMMU_FEAT_COHERENT_WALK;
1975
1976 return 0;
1977}
1978#else
1979static inline int arm_smmu_device_acpi_probe(struct platform_device *pdev,
1980 struct arm_smmu_device *smmu)
1981{
1982 return -ENODEV;
1983}
1984#endif
1985
Lorenzo Pieralisibbb8a182016-11-21 10:01:44 +00001986static int arm_smmu_device_dt_probe(struct platform_device *pdev,
1987 struct arm_smmu_device *smmu)
Will Deacon45ae7cf2013-06-24 18:31:25 +01001988{
Robin Murphy67b65a32016-04-13 18:12:57 +01001989 const struct arm_smmu_match_data *data;
Will Deacon45ae7cf2013-06-24 18:31:25 +01001990 struct device *dev = &pdev->dev;
Robin Murphy021bb842016-09-14 15:26:46 +01001991 bool legacy_binding;
1992
Lorenzo Pieralisibbb8a182016-11-21 10:01:44 +00001993 if (of_property_read_u32(dev->of_node, "#global-interrupts",
1994 &smmu->num_global_irqs)) {
1995 dev_err(dev, "missing #global-interrupts property\n");
1996 return -ENODEV;
1997 }
1998
1999 data = of_device_get_match_data(dev);
2000 smmu->version = data->version;
2001 smmu->model = data->model;
2002
2003 parse_driver_options(smmu);
2004
Robin Murphy021bb842016-09-14 15:26:46 +01002005 legacy_binding = of_find_property(dev->of_node, "mmu-masters", NULL);
2006 if (legacy_binding && !using_generic_binding) {
2007 if (!using_legacy_binding)
2008 pr_notice("deprecated \"mmu-masters\" DT property in use; DMA API support unavailable\n");
2009 using_legacy_binding = true;
2010 } else if (!legacy_binding && !using_legacy_binding) {
2011 using_generic_binding = true;
2012 } else {
2013 dev_err(dev, "not probing due to mismatched DT properties\n");
2014 return -ENODEV;
2015 }
Will Deacon45ae7cf2013-06-24 18:31:25 +01002016
Lorenzo Pieralisibbb8a182016-11-21 10:01:44 +00002017 if (of_dma_is_coherent(dev->of_node))
2018 smmu->features |= ARM_SMMU_FEAT_COHERENT_WALK;
2019
2020 return 0;
2021}
2022
2023static int arm_smmu_device_probe(struct platform_device *pdev)
2024{
2025 struct resource *res;
Joerg Roedel9648cbc2017-02-01 18:11:36 +01002026 resource_size_t ioaddr;
Lorenzo Pieralisibbb8a182016-11-21 10:01:44 +00002027 struct arm_smmu_device *smmu;
2028 struct device *dev = &pdev->dev;
2029 int num_irqs, i, err;
2030
Will Deacon45ae7cf2013-06-24 18:31:25 +01002031 smmu = devm_kzalloc(dev, sizeof(*smmu), GFP_KERNEL);
2032 if (!smmu) {
2033 dev_err(dev, "failed to allocate arm_smmu_device\n");
2034 return -ENOMEM;
2035 }
2036 smmu->dev = dev;
2037
Lorenzo Pieralisid6fcd3b2016-11-21 10:01:45 +00002038 if (dev->of_node)
2039 err = arm_smmu_device_dt_probe(pdev, smmu);
2040 else
2041 err = arm_smmu_device_acpi_probe(pdev, smmu);
2042
Lorenzo Pieralisibbb8a182016-11-21 10:01:44 +00002043 if (err)
2044 return err;
Robin Murphy09360402014-08-28 17:51:59 +01002045
Will Deacon45ae7cf2013-06-24 18:31:25 +01002046 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Joerg Roedel9648cbc2017-02-01 18:11:36 +01002047 ioaddr = res->start;
Julia Lawall8a7f4312013-08-19 12:20:37 +01002048 smmu->base = devm_ioremap_resource(dev, res);
2049 if (IS_ERR(smmu->base))
2050 return PTR_ERR(smmu->base);
Will Deacon45ae7cf2013-06-24 18:31:25 +01002051 smmu->size = resource_size(res);
Will Deacon45ae7cf2013-06-24 18:31:25 +01002052
Will Deacon45ae7cf2013-06-24 18:31:25 +01002053 num_irqs = 0;
2054 while ((res = platform_get_resource(pdev, IORESOURCE_IRQ, num_irqs))) {
2055 num_irqs++;
2056 if (num_irqs > smmu->num_global_irqs)
2057 smmu->num_context_irqs++;
2058 }
2059
Andreas Herrmann44a08de2013-10-01 13:39:07 +01002060 if (!smmu->num_context_irqs) {
2061 dev_err(dev, "found %d interrupts but expected at least %d\n",
2062 num_irqs, smmu->num_global_irqs + 1);
2063 return -ENODEV;
Will Deacon45ae7cf2013-06-24 18:31:25 +01002064 }
Will Deacon45ae7cf2013-06-24 18:31:25 +01002065
2066 smmu->irqs = devm_kzalloc(dev, sizeof(*smmu->irqs) * num_irqs,
2067 GFP_KERNEL);
2068 if (!smmu->irqs) {
2069 dev_err(dev, "failed to allocate %d irqs\n", num_irqs);
2070 return -ENOMEM;
2071 }
2072
2073 for (i = 0; i < num_irqs; ++i) {
2074 int irq = platform_get_irq(pdev, i);
Mitchel Humpherys29073202014-07-08 09:52:18 -07002075
Will Deacon45ae7cf2013-06-24 18:31:25 +01002076 if (irq < 0) {
2077 dev_err(dev, "failed to get irq index %d\n", i);
2078 return -ENODEV;
2079 }
2080 smmu->irqs[i] = irq;
2081 }
2082
Olav Haugan3c8766d2014-08-22 17:12:32 -07002083 err = arm_smmu_device_cfg_probe(smmu);
2084 if (err)
2085 return err;
2086
Robin Murphyb7862e32016-04-13 18:13:03 +01002087 if (smmu->version == ARM_SMMU_V2 &&
Will Deacon45ae7cf2013-06-24 18:31:25 +01002088 smmu->num_context_banks != smmu->num_context_irqs) {
2089 dev_err(dev,
2090 "found only %d context interrupt(s) but %d required\n",
2091 smmu->num_context_irqs, smmu->num_context_banks);
Robin Murphyf80cd882016-09-14 15:21:39 +01002092 return -ENODEV;
Will Deacon45ae7cf2013-06-24 18:31:25 +01002093 }
2094
Will Deacon45ae7cf2013-06-24 18:31:25 +01002095 for (i = 0; i < smmu->num_global_irqs; ++i) {
Peng Fanbee14002016-07-04 17:38:22 +08002096 err = devm_request_irq(smmu->dev, smmu->irqs[i],
2097 arm_smmu_global_fault,
2098 IRQF_SHARED,
2099 "arm-smmu global fault",
2100 smmu);
Will Deacon45ae7cf2013-06-24 18:31:25 +01002101 if (err) {
2102 dev_err(dev, "failed to request global IRQ %d (%u)\n",
2103 i, smmu->irqs[i]);
Robin Murphyf80cd882016-09-14 15:21:39 +01002104 return err;
Will Deacon45ae7cf2013-06-24 18:31:25 +01002105 }
2106 }
2107
Joerg Roedel9648cbc2017-02-01 18:11:36 +01002108 err = iommu_device_sysfs_add(&smmu->iommu, smmu->dev, NULL,
2109 "smmu.%pa", &ioaddr);
2110 if (err) {
2111 dev_err(dev, "Failed to register iommu in sysfs\n");
2112 return err;
2113 }
2114
2115 iommu_device_set_ops(&smmu->iommu, &arm_smmu_ops);
2116 iommu_device_set_fwnode(&smmu->iommu, dev->fwnode);
2117
2118 err = iommu_device_register(&smmu->iommu);
2119 if (err) {
2120 dev_err(dev, "Failed to register iommu\n");
2121 return err;
2122 }
2123
Lorenzo Pieralisice9babe2016-11-21 10:01:37 +00002124 iommu_register_instance(dev->fwnode, &arm_smmu_ops);
Robin Murphyd6fc5d92016-09-12 17:13:52 +01002125 platform_set_drvdata(pdev, smmu);
Will Deaconfd90cec2013-08-21 13:56:34 +01002126 arm_smmu_device_reset(smmu);
Robin Murphy021bb842016-09-14 15:26:46 +01002127
2128 /* Oh, for a proper bus abstraction */
2129 if (!iommu_present(&platform_bus_type))
2130 bus_set_iommu(&platform_bus_type, &arm_smmu_ops);
2131#ifdef CONFIG_ARM_AMBA
2132 if (!iommu_present(&amba_bustype))
2133 bus_set_iommu(&amba_bustype, &arm_smmu_ops);
2134#endif
2135#ifdef CONFIG_PCI
2136 if (!iommu_present(&pci_bus_type)) {
2137 pci_request_acs();
2138 bus_set_iommu(&pci_bus_type, &arm_smmu_ops);
2139 }
2140#endif
Will Deacon45ae7cf2013-06-24 18:31:25 +01002141 return 0;
Will Deacon45ae7cf2013-06-24 18:31:25 +01002142}
2143
2144static int arm_smmu_device_remove(struct platform_device *pdev)
2145{
Robin Murphyd6fc5d92016-09-12 17:13:52 +01002146 struct arm_smmu_device *smmu = platform_get_drvdata(pdev);
Will Deacon45ae7cf2013-06-24 18:31:25 +01002147
2148 if (!smmu)
2149 return -ENODEV;
2150
Will Deaconecfadb62013-07-31 19:21:28 +01002151 if (!bitmap_empty(smmu->context_map, ARM_SMMU_MAX_CBS))
Robin Murphyd6fc5d92016-09-12 17:13:52 +01002152 dev_err(&pdev->dev, "removing device with active domains!\n");
Will Deacon45ae7cf2013-06-24 18:31:25 +01002153
Will Deacon45ae7cf2013-06-24 18:31:25 +01002154 /* Turn the thing off */
Mitchel Humpherys29073202014-07-08 09:52:18 -07002155 writel(sCR0_CLIENTPD, ARM_SMMU_GR0_NS(smmu) + ARM_SMMU_GR0_sCR0);
Will Deacon45ae7cf2013-06-24 18:31:25 +01002156 return 0;
2157}
2158
Will Deacon45ae7cf2013-06-24 18:31:25 +01002159static struct platform_driver arm_smmu_driver = {
2160 .driver = {
Will Deacon45ae7cf2013-06-24 18:31:25 +01002161 .name = "arm-smmu",
2162 .of_match_table = of_match_ptr(arm_smmu_of_match),
2163 },
Lorenzo Pieralisibbb8a182016-11-21 10:01:44 +00002164 .probe = arm_smmu_device_probe,
Will Deacon45ae7cf2013-06-24 18:31:25 +01002165 .remove = arm_smmu_device_remove,
2166};
2167
2168static int __init arm_smmu_init(void)
2169{
Robin Murphy021bb842016-09-14 15:26:46 +01002170 static bool registered;
2171 int ret = 0;
Will Deacon45ae7cf2013-06-24 18:31:25 +01002172
Robin Murphy021bb842016-09-14 15:26:46 +01002173 if (!registered) {
2174 ret = platform_driver_register(&arm_smmu_driver);
2175 registered = !ret;
Wei Chen112c8982016-06-13 17:20:17 +08002176 }
Robin Murphy021bb842016-09-14 15:26:46 +01002177 return ret;
Will Deacon45ae7cf2013-06-24 18:31:25 +01002178}
2179
2180static void __exit arm_smmu_exit(void)
2181{
2182 return platform_driver_unregister(&arm_smmu_driver);
2183}
2184
Andreas Herrmannb1950b22013-10-01 13:39:05 +01002185subsys_initcall(arm_smmu_init);
Will Deacon45ae7cf2013-06-24 18:31:25 +01002186module_exit(arm_smmu_exit);
2187
Robin Murphy021bb842016-09-14 15:26:46 +01002188static int __init arm_smmu_of_init(struct device_node *np)
2189{
2190 int ret = arm_smmu_init();
2191
2192 if (ret)
2193 return ret;
2194
2195 if (!of_platform_device_create(np, NULL, platform_bus_type.dev_root))
2196 return -ENODEV;
2197
2198 return 0;
2199}
2200IOMMU_OF_DECLARE(arm_smmuv1, "arm,smmu-v1", arm_smmu_of_init);
2201IOMMU_OF_DECLARE(arm_smmuv2, "arm,smmu-v2", arm_smmu_of_init);
2202IOMMU_OF_DECLARE(arm_mmu400, "arm,mmu-400", arm_smmu_of_init);
2203IOMMU_OF_DECLARE(arm_mmu401, "arm,mmu-401", arm_smmu_of_init);
2204IOMMU_OF_DECLARE(arm_mmu500, "arm,mmu-500", arm_smmu_of_init);
2205IOMMU_OF_DECLARE(cavium_smmuv2, "cavium,smmu-v2", arm_smmu_of_init);
2206
Lorenzo Pieralisid6fcd3b2016-11-21 10:01:45 +00002207#ifdef CONFIG_ACPI
2208static int __init arm_smmu_acpi_init(struct acpi_table_header *table)
2209{
2210 if (iort_node_match(ACPI_IORT_NODE_SMMU))
2211 return arm_smmu_init();
2212
2213 return 0;
2214}
2215IORT_ACPI_DECLARE(arm_smmu, ACPI_SIG_IORT, arm_smmu_acpi_init);
2216#endif
2217
Will Deacon45ae7cf2013-06-24 18:31:25 +01002218MODULE_DESCRIPTION("IOMMU API for ARM architected SMMU implementations");
2219MODULE_AUTHOR("Will Deacon <will.deacon@arm.com>");
2220MODULE_LICENSE("GPL v2");