blob: a354572491c8a3cb1ca0d393ad6ce72eb3b9cc0b [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
Eric Augerf3ebee82017-01-19 20:57:55 +0000284#define MSI_IOVA_BASE 0x8000000
285#define MSI_IOVA_LENGTH 0x100000
286
Will Deacon4cf740b2014-07-14 19:47:39 +0100287static int force_stage;
Robin Murphy25a1c962016-02-10 14:25:33 +0000288module_param(force_stage, int, S_IRUGO);
Will Deacon4cf740b2014-07-14 19:47:39 +0100289MODULE_PARM_DESC(force_stage,
290 "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 +0000291static bool disable_bypass;
292module_param(disable_bypass, bool, S_IRUGO);
293MODULE_PARM_DESC(disable_bypass,
294 "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 +0100295
Robin Murphy09360402014-08-28 17:51:59 +0100296enum arm_smmu_arch_version {
Robin Murphyb7862e32016-04-13 18:13:03 +0100297 ARM_SMMU_V1,
298 ARM_SMMU_V1_64K,
Robin Murphy09360402014-08-28 17:51:59 +0100299 ARM_SMMU_V2,
300};
301
Robin Murphy67b65a32016-04-13 18:12:57 +0100302enum arm_smmu_implementation {
303 GENERIC_SMMU,
Robin Murphyf0cfffc2016-04-13 18:12:59 +0100304 ARM_MMU500,
Robin Murphye086d912016-04-13 18:12:58 +0100305 CAVIUM_SMMUV2,
Robin Murphy67b65a32016-04-13 18:12:57 +0100306};
307
Robin Murphy8e8b2032016-09-12 17:13:50 +0100308struct arm_smmu_s2cr {
Robin Murphy588888a2016-09-12 17:13:54 +0100309 struct iommu_group *group;
310 int count;
Robin Murphy8e8b2032016-09-12 17:13:50 +0100311 enum arm_smmu_s2cr_type type;
312 enum arm_smmu_s2cr_privcfg privcfg;
313 u8 cbndx;
314};
315
316#define s2cr_init_val (struct arm_smmu_s2cr){ \
317 .type = disable_bypass ? S2CR_TYPE_FAULT : S2CR_TYPE_BYPASS, \
318}
319
Will Deacon45ae7cf2013-06-24 18:31:25 +0100320struct arm_smmu_smr {
Will Deacon45ae7cf2013-06-24 18:31:25 +0100321 u16 mask;
322 u16 id;
Robin Murphy1f3d5ca2016-09-12 17:13:49 +0100323 bool valid;
Will Deacon45ae7cf2013-06-24 18:31:25 +0100324};
325
Will Deacona9a1b0b2014-05-01 18:05:08 +0100326struct arm_smmu_master_cfg {
Robin Murphyf80cd882016-09-14 15:21:39 +0100327 struct arm_smmu_device *smmu;
Robin Murphyadfec2e2016-09-12 17:13:55 +0100328 s16 smendx[];
Will Deacon45ae7cf2013-06-24 18:31:25 +0100329};
Robin Murphy1f3d5ca2016-09-12 17:13:49 +0100330#define INVALID_SMENDX -1
Robin Murphyadfec2e2016-09-12 17:13:55 +0100331#define __fwspec_cfg(fw) ((struct arm_smmu_master_cfg *)fw->iommu_priv)
332#define fwspec_smmu(fw) (__fwspec_cfg(fw)->smmu)
Robin Murphy8c82d6e2016-11-07 18:25:09 +0000333#define fwspec_smendx(fw, i) \
334 (i >= fw->num_ids ? INVALID_SMENDX : __fwspec_cfg(fw)->smendx[i])
Robin Murphyadfec2e2016-09-12 17:13:55 +0100335#define for_each_cfg_sme(fw, i, idx) \
Robin Murphy8c82d6e2016-11-07 18:25:09 +0000336 for (i = 0; idx = fwspec_smendx(fw, i), i < fw->num_ids; ++i)
Will Deacon45ae7cf2013-06-24 18:31:25 +0100337
338struct arm_smmu_device {
339 struct device *dev;
Will Deacon45ae7cf2013-06-24 18:31:25 +0100340
341 void __iomem *base;
342 unsigned long size;
Will Deaconc757e852014-07-30 11:33:25 +0100343 unsigned long pgshift;
Will Deacon45ae7cf2013-06-24 18:31:25 +0100344
345#define ARM_SMMU_FEAT_COHERENT_WALK (1 << 0)
346#define ARM_SMMU_FEAT_STREAM_MATCH (1 << 1)
347#define ARM_SMMU_FEAT_TRANS_S1 (1 << 2)
348#define ARM_SMMU_FEAT_TRANS_S2 (1 << 3)
349#define ARM_SMMU_FEAT_TRANS_NESTED (1 << 4)
Mitchel Humpherys859a7322014-10-29 21:13:40 +0000350#define ARM_SMMU_FEAT_TRANS_OPS (1 << 5)
Tirumalesh Chalamarla4e3e9b62016-02-23 10:19:00 -0800351#define ARM_SMMU_FEAT_VMID16 (1 << 6)
Robin Murphy7602b872016-04-28 17:12:09 +0100352#define ARM_SMMU_FEAT_FMT_AARCH64_4K (1 << 7)
353#define ARM_SMMU_FEAT_FMT_AARCH64_16K (1 << 8)
354#define ARM_SMMU_FEAT_FMT_AARCH64_64K (1 << 9)
355#define ARM_SMMU_FEAT_FMT_AARCH32_L (1 << 10)
356#define ARM_SMMU_FEAT_FMT_AARCH32_S (1 << 11)
Will Deacon45ae7cf2013-06-24 18:31:25 +0100357 u32 features;
Andreas Herrmann3a5df8f2014-01-30 18:18:04 +0000358
359#define ARM_SMMU_OPT_SECURE_CFG_ACCESS (1 << 0)
360 u32 options;
Robin Murphy09360402014-08-28 17:51:59 +0100361 enum arm_smmu_arch_version version;
Robin Murphy67b65a32016-04-13 18:12:57 +0100362 enum arm_smmu_implementation model;
Will Deacon45ae7cf2013-06-24 18:31:25 +0100363
364 u32 num_context_banks;
365 u32 num_s2_context_banks;
366 DECLARE_BITMAP(context_map, ARM_SMMU_MAX_CBS);
367 atomic_t irptndx;
368
369 u32 num_mapping_groups;
Robin Murphy21174242016-09-12 17:13:48 +0100370 u16 streamid_mask;
371 u16 smr_mask_mask;
Robin Murphy1f3d5ca2016-09-12 17:13:49 +0100372 struct arm_smmu_smr *smrs;
Robin Murphy8e8b2032016-09-12 17:13:50 +0100373 struct arm_smmu_s2cr *s2crs;
Robin Murphy588888a2016-09-12 17:13:54 +0100374 struct mutex stream_map_mutex;
Will Deacon45ae7cf2013-06-24 18:31:25 +0100375
Will Deacon518f7132014-11-14 17:17:54 +0000376 unsigned long va_size;
377 unsigned long ipa_size;
378 unsigned long pa_size;
Robin Murphyd5466352016-05-09 17:20:09 +0100379 unsigned long pgsize_bitmap;
Will Deacon45ae7cf2013-06-24 18:31:25 +0100380
381 u32 num_global_irqs;
382 u32 num_context_irqs;
383 unsigned int *irqs;
384
Tirumalesh Chalamarla1bd37a62016-03-04 13:56:09 -0800385 u32 cavium_id_base; /* Specific to Cavium */
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 Deacona44a9792013-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
1450 return 0;
Robin Murphyf80cd882016-09-14 15:21:39 +01001451
1452out_free:
Robin Murphyadfec2e2016-09-12 17:13:55 +01001453 if (fwspec)
1454 kfree(fwspec->iommu_priv);
1455 iommu_fwspec_free(dev);
Robin Murphyf80cd882016-09-14 15:21:39 +01001456 return ret;
Will Deacon03edb222015-01-19 14:27:33 +00001457}
1458
Will Deacon45ae7cf2013-06-24 18:31:25 +01001459static void arm_smmu_remove_device(struct device *dev)
1460{
Robin Murphyadfec2e2016-09-12 17:13:55 +01001461 struct iommu_fwspec *fwspec = dev->iommu_fwspec;
Robin Murphy8e8b2032016-09-12 17:13:50 +01001462
Robin Murphyadfec2e2016-09-12 17:13:55 +01001463 if (!fwspec || fwspec->ops != &arm_smmu_ops)
Robin Murphyf80cd882016-09-14 15:21:39 +01001464 return;
Robin Murphy8e8b2032016-09-12 17:13:50 +01001465
Robin Murphyadfec2e2016-09-12 17:13:55 +01001466 arm_smmu_master_free_smes(fwspec);
Antonios Motakis5fc63a72013-10-18 16:08:29 +01001467 iommu_group_remove_device(dev);
Robin Murphyadfec2e2016-09-12 17:13:55 +01001468 kfree(fwspec->iommu_priv);
1469 iommu_fwspec_free(dev);
Will Deacon45ae7cf2013-06-24 18:31:25 +01001470}
1471
Joerg Roedelaf659932015-10-21 23:51:41 +02001472static struct iommu_group *arm_smmu_device_group(struct device *dev)
1473{
Robin Murphyadfec2e2016-09-12 17:13:55 +01001474 struct iommu_fwspec *fwspec = dev->iommu_fwspec;
1475 struct arm_smmu_device *smmu = fwspec_smmu(fwspec);
Robin Murphy588888a2016-09-12 17:13:54 +01001476 struct iommu_group *group = NULL;
1477 int i, idx;
1478
Robin Murphyadfec2e2016-09-12 17:13:55 +01001479 for_each_cfg_sme(fwspec, i, idx) {
Robin Murphy588888a2016-09-12 17:13:54 +01001480 if (group && smmu->s2crs[idx].group &&
1481 group != smmu->s2crs[idx].group)
1482 return ERR_PTR(-EINVAL);
1483
1484 group = smmu->s2crs[idx].group;
1485 }
1486
1487 if (group)
Robin Murphye1b44cb2016-11-11 17:59:22 +00001488 return iommu_group_ref_get(group);
Joerg Roedelaf659932015-10-21 23:51:41 +02001489
1490 if (dev_is_pci(dev))
1491 group = pci_device_group(dev);
1492 else
1493 group = generic_device_group(dev);
1494
Joerg Roedelaf659932015-10-21 23:51:41 +02001495 return group;
1496}
1497
Will Deaconc752ce42014-06-25 22:46:31 +01001498static int arm_smmu_domain_get_attr(struct iommu_domain *domain,
1499 enum iommu_attr attr, void *data)
1500{
Joerg Roedel1d672632015-03-26 13:43:10 +01001501 struct arm_smmu_domain *smmu_domain = to_smmu_domain(domain);
Will Deaconc752ce42014-06-25 22:46:31 +01001502
1503 switch (attr) {
1504 case DOMAIN_ATTR_NESTING:
1505 *(int *)data = (smmu_domain->stage == ARM_SMMU_DOMAIN_NESTED);
1506 return 0;
1507 default:
1508 return -ENODEV;
1509 }
1510}
1511
1512static int arm_smmu_domain_set_attr(struct iommu_domain *domain,
1513 enum iommu_attr attr, void *data)
1514{
Will Deacon518f7132014-11-14 17:17:54 +00001515 int ret = 0;
Joerg Roedel1d672632015-03-26 13:43:10 +01001516 struct arm_smmu_domain *smmu_domain = to_smmu_domain(domain);
Will Deaconc752ce42014-06-25 22:46:31 +01001517
Will Deacon518f7132014-11-14 17:17:54 +00001518 mutex_lock(&smmu_domain->init_mutex);
1519
Will Deaconc752ce42014-06-25 22:46:31 +01001520 switch (attr) {
1521 case DOMAIN_ATTR_NESTING:
Will Deacon518f7132014-11-14 17:17:54 +00001522 if (smmu_domain->smmu) {
1523 ret = -EPERM;
1524 goto out_unlock;
1525 }
1526
Will Deaconc752ce42014-06-25 22:46:31 +01001527 if (*(int *)data)
1528 smmu_domain->stage = ARM_SMMU_DOMAIN_NESTED;
1529 else
1530 smmu_domain->stage = ARM_SMMU_DOMAIN_S1;
1531
Will Deacon518f7132014-11-14 17:17:54 +00001532 break;
Will Deaconc752ce42014-06-25 22:46:31 +01001533 default:
Will Deacon518f7132014-11-14 17:17:54 +00001534 ret = -ENODEV;
Will Deaconc752ce42014-06-25 22:46:31 +01001535 }
Will Deacon518f7132014-11-14 17:17:54 +00001536
1537out_unlock:
1538 mutex_unlock(&smmu_domain->init_mutex);
1539 return ret;
Will Deaconc752ce42014-06-25 22:46:31 +01001540}
1541
Robin Murphy021bb842016-09-14 15:26:46 +01001542static int arm_smmu_of_xlate(struct device *dev, struct of_phandle_args *args)
1543{
1544 u32 fwid = 0;
1545
1546 if (args->args_count > 0)
1547 fwid |= (u16)args->args[0];
1548
1549 if (args->args_count > 1)
1550 fwid |= (u16)args->args[1] << SMR_MASK_SHIFT;
1551
1552 return iommu_fwspec_add_ids(dev, &fwid, 1);
1553}
1554
Eric Augerf3ebee82017-01-19 20:57:55 +00001555static void arm_smmu_get_resv_regions(struct device *dev,
1556 struct list_head *head)
1557{
1558 struct iommu_resv_region *region;
1559 int prot = IOMMU_WRITE | IOMMU_NOEXEC | IOMMU_MMIO;
1560
1561 region = iommu_alloc_resv_region(MSI_IOVA_BASE, MSI_IOVA_LENGTH,
1562 prot, IOMMU_RESV_MSI);
1563 if (!region)
1564 return;
1565
1566 list_add_tail(&region->list, head);
1567}
1568
1569static void arm_smmu_put_resv_regions(struct device *dev,
1570 struct list_head *head)
1571{
1572 struct iommu_resv_region *entry, *next;
1573
1574 list_for_each_entry_safe(entry, next, head, list)
1575 kfree(entry);
1576}
1577
Will Deacon518f7132014-11-14 17:17:54 +00001578static struct iommu_ops arm_smmu_ops = {
Will Deaconc752ce42014-06-25 22:46:31 +01001579 .capable = arm_smmu_capable,
Joerg Roedel1d672632015-03-26 13:43:10 +01001580 .domain_alloc = arm_smmu_domain_alloc,
1581 .domain_free = arm_smmu_domain_free,
Will Deaconc752ce42014-06-25 22:46:31 +01001582 .attach_dev = arm_smmu_attach_dev,
Will Deaconc752ce42014-06-25 22:46:31 +01001583 .map = arm_smmu_map,
1584 .unmap = arm_smmu_unmap,
Joerg Roedel76771c92014-12-02 13:07:13 +01001585 .map_sg = default_iommu_map_sg,
Will Deaconc752ce42014-06-25 22:46:31 +01001586 .iova_to_phys = arm_smmu_iova_to_phys,
1587 .add_device = arm_smmu_add_device,
1588 .remove_device = arm_smmu_remove_device,
Joerg Roedelaf659932015-10-21 23:51:41 +02001589 .device_group = arm_smmu_device_group,
Will Deaconc752ce42014-06-25 22:46:31 +01001590 .domain_get_attr = arm_smmu_domain_get_attr,
1591 .domain_set_attr = arm_smmu_domain_set_attr,
Robin Murphy021bb842016-09-14 15:26:46 +01001592 .of_xlate = arm_smmu_of_xlate,
Eric Augerf3ebee82017-01-19 20:57:55 +00001593 .get_resv_regions = arm_smmu_get_resv_regions,
1594 .put_resv_regions = arm_smmu_put_resv_regions,
Will Deacon518f7132014-11-14 17:17:54 +00001595 .pgsize_bitmap = -1UL, /* Restricted during device attach */
Will Deacon45ae7cf2013-06-24 18:31:25 +01001596};
1597
1598static void arm_smmu_device_reset(struct arm_smmu_device *smmu)
1599{
1600 void __iomem *gr0_base = ARM_SMMU_GR0(smmu);
Andreas Herrmann659db6f2013-10-01 13:39:09 +01001601 void __iomem *cb_base;
Robin Murphy1f3d5ca2016-09-12 17:13:49 +01001602 int i;
Peng Fan3ca37122016-05-03 21:50:30 +08001603 u32 reg, major;
Andreas Herrmann659db6f2013-10-01 13:39:09 +01001604
Andreas Herrmann3a5df8f2014-01-30 18:18:04 +00001605 /* clear global FSR */
1606 reg = readl_relaxed(ARM_SMMU_GR0_NS(smmu) + ARM_SMMU_GR0_sGFSR);
1607 writel(reg, ARM_SMMU_GR0_NS(smmu) + ARM_SMMU_GR0_sGFSR);
Will Deacon45ae7cf2013-06-24 18:31:25 +01001608
Robin Murphy1f3d5ca2016-09-12 17:13:49 +01001609 /*
1610 * Reset stream mapping groups: Initial values mark all SMRn as
1611 * invalid and all S2CRn as bypass unless overridden.
1612 */
Robin Murphy8e8b2032016-09-12 17:13:50 +01001613 for (i = 0; i < smmu->num_mapping_groups; ++i)
1614 arm_smmu_write_sme(smmu, i);
Will Deacon45ae7cf2013-06-24 18:31:25 +01001615
Nipun Gupta6eb18d42016-11-04 15:25:23 +05301616 if (smmu->model == ARM_MMU500) {
1617 /*
1618 * Before clearing ARM_MMU500_ACTLR_CPRE, need to
1619 * clear CACHE_LOCK bit of ACR first. And, CACHE_LOCK
1620 * bit is only present in MMU-500r2 onwards.
1621 */
1622 reg = readl_relaxed(gr0_base + ARM_SMMU_GR0_ID7);
1623 major = (reg >> ID7_MAJOR_SHIFT) & ID7_MAJOR_MASK;
Peng Fan3ca37122016-05-03 21:50:30 +08001624 reg = readl_relaxed(gr0_base + ARM_SMMU_GR0_sACR);
Nipun Gupta6eb18d42016-11-04 15:25:23 +05301625 if (major >= 2)
1626 reg &= ~ARM_MMU500_ACR_CACHE_LOCK;
1627 /*
1628 * Allow unmatched Stream IDs to allocate bypass
1629 * TLB entries for reduced latency.
1630 */
1631 reg |= ARM_MMU500_ACR_SMTNMB_TLBEN;
Peng Fan3ca37122016-05-03 21:50:30 +08001632 writel_relaxed(reg, gr0_base + ARM_SMMU_GR0_sACR);
1633 }
1634
Andreas Herrmann659db6f2013-10-01 13:39:09 +01001635 /* Make sure all context banks are disabled and clear CB_FSR */
1636 for (i = 0; i < smmu->num_context_banks; ++i) {
1637 cb_base = ARM_SMMU_CB_BASE(smmu) + ARM_SMMU_CB(smmu, i);
1638 writel_relaxed(0, cb_base + ARM_SMMU_CB_SCTLR);
1639 writel_relaxed(FSR_FAULT, cb_base + ARM_SMMU_CB_FSR);
Robin Murphyf0cfffc2016-04-13 18:12:59 +01001640 /*
1641 * Disable MMU-500's not-particularly-beneficial next-page
1642 * prefetcher for the sake of errata #841119 and #826419.
1643 */
1644 if (smmu->model == ARM_MMU500) {
1645 reg = readl_relaxed(cb_base + ARM_SMMU_CB_ACTLR);
1646 reg &= ~ARM_MMU500_ACTLR_CPRE;
1647 writel_relaxed(reg, cb_base + ARM_SMMU_CB_ACTLR);
1648 }
Andreas Herrmann659db6f2013-10-01 13:39:09 +01001649 }
Will Deacon1463fe42013-07-31 19:21:27 +01001650
Will Deacon45ae7cf2013-06-24 18:31:25 +01001651 /* Invalidate the TLB, just in case */
Will Deacon45ae7cf2013-06-24 18:31:25 +01001652 writel_relaxed(0, gr0_base + ARM_SMMU_GR0_TLBIALLH);
1653 writel_relaxed(0, gr0_base + ARM_SMMU_GR0_TLBIALLNSNH);
1654
Andreas Herrmann3a5df8f2014-01-30 18:18:04 +00001655 reg = readl_relaxed(ARM_SMMU_GR0_NS(smmu) + ARM_SMMU_GR0_sCR0);
Andreas Herrmann659db6f2013-10-01 13:39:09 +01001656
Will Deacon45ae7cf2013-06-24 18:31:25 +01001657 /* Enable fault reporting */
Andreas Herrmann659db6f2013-10-01 13:39:09 +01001658 reg |= (sCR0_GFRE | sCR0_GFIE | sCR0_GCFGFRE | sCR0_GCFGFIE);
Will Deacon45ae7cf2013-06-24 18:31:25 +01001659
1660 /* Disable TLB broadcasting. */
Andreas Herrmann659db6f2013-10-01 13:39:09 +01001661 reg |= (sCR0_VMIDPNE | sCR0_PTM);
Will Deacon45ae7cf2013-06-24 18:31:25 +01001662
Robin Murphy25a1c962016-02-10 14:25:33 +00001663 /* Enable client access, handling unmatched streams as appropriate */
1664 reg &= ~sCR0_CLIENTPD;
1665 if (disable_bypass)
1666 reg |= sCR0_USFCFG;
1667 else
1668 reg &= ~sCR0_USFCFG;
Will Deacon45ae7cf2013-06-24 18:31:25 +01001669
1670 /* Disable forced broadcasting */
Andreas Herrmann659db6f2013-10-01 13:39:09 +01001671 reg &= ~sCR0_FB;
Will Deacon45ae7cf2013-06-24 18:31:25 +01001672
1673 /* Don't upgrade barriers */
Andreas Herrmann659db6f2013-10-01 13:39:09 +01001674 reg &= ~(sCR0_BSU_MASK << sCR0_BSU_SHIFT);
Will Deacon45ae7cf2013-06-24 18:31:25 +01001675
Tirumalesh Chalamarla4e3e9b62016-02-23 10:19:00 -08001676 if (smmu->features & ARM_SMMU_FEAT_VMID16)
1677 reg |= sCR0_VMID16EN;
1678
Will Deacon45ae7cf2013-06-24 18:31:25 +01001679 /* Push the button */
Will Deacon518f7132014-11-14 17:17:54 +00001680 __arm_smmu_tlb_sync(smmu);
Andreas Herrmann3a5df8f2014-01-30 18:18:04 +00001681 writel(reg, ARM_SMMU_GR0_NS(smmu) + ARM_SMMU_GR0_sCR0);
Will Deacon45ae7cf2013-06-24 18:31:25 +01001682}
1683
1684static int arm_smmu_id_size_to_bits(int size)
1685{
1686 switch (size) {
1687 case 0:
1688 return 32;
1689 case 1:
1690 return 36;
1691 case 2:
1692 return 40;
1693 case 3:
1694 return 42;
1695 case 4:
1696 return 44;
1697 case 5:
1698 default:
1699 return 48;
1700 }
1701}
1702
1703static int arm_smmu_device_cfg_probe(struct arm_smmu_device *smmu)
1704{
1705 unsigned long size;
1706 void __iomem *gr0_base = ARM_SMMU_GR0(smmu);
1707 u32 id;
Lorenzo Pieralisibbb8a182016-11-21 10:01:44 +00001708 bool cttw_reg, cttw_fw = smmu->features & ARM_SMMU_FEAT_COHERENT_WALK;
Robin Murphy8e8b2032016-09-12 17:13:50 +01001709 int i;
Will Deacon45ae7cf2013-06-24 18:31:25 +01001710
1711 dev_notice(smmu->dev, "probing hardware configuration...\n");
Robin Murphyb7862e32016-04-13 18:13:03 +01001712 dev_notice(smmu->dev, "SMMUv%d with:\n",
1713 smmu->version == ARM_SMMU_V2 ? 2 : 1);
Will Deacon45ae7cf2013-06-24 18:31:25 +01001714
1715 /* ID0 */
1716 id = readl_relaxed(gr0_base + ARM_SMMU_GR0_ID0);
Will Deacon4cf740b2014-07-14 19:47:39 +01001717
1718 /* Restrict available stages based on module parameter */
1719 if (force_stage == 1)
1720 id &= ~(ID0_S2TS | ID0_NTS);
1721 else if (force_stage == 2)
1722 id &= ~(ID0_S1TS | ID0_NTS);
1723
Will Deacon45ae7cf2013-06-24 18:31:25 +01001724 if (id & ID0_S1TS) {
1725 smmu->features |= ARM_SMMU_FEAT_TRANS_S1;
1726 dev_notice(smmu->dev, "\tstage 1 translation\n");
1727 }
1728
1729 if (id & ID0_S2TS) {
1730 smmu->features |= ARM_SMMU_FEAT_TRANS_S2;
1731 dev_notice(smmu->dev, "\tstage 2 translation\n");
1732 }
1733
1734 if (id & ID0_NTS) {
1735 smmu->features |= ARM_SMMU_FEAT_TRANS_NESTED;
1736 dev_notice(smmu->dev, "\tnested translation\n");
1737 }
1738
1739 if (!(smmu->features &
Will Deacon4cf740b2014-07-14 19:47:39 +01001740 (ARM_SMMU_FEAT_TRANS_S1 | ARM_SMMU_FEAT_TRANS_S2))) {
Will Deacon45ae7cf2013-06-24 18:31:25 +01001741 dev_err(smmu->dev, "\tno translation support!\n");
1742 return -ENODEV;
1743 }
1744
Robin Murphyb7862e32016-04-13 18:13:03 +01001745 if ((id & ID0_S1TS) &&
1746 ((smmu->version < ARM_SMMU_V2) || !(id & ID0_ATOSNS))) {
Mitchel Humpherys859a7322014-10-29 21:13:40 +00001747 smmu->features |= ARM_SMMU_FEAT_TRANS_OPS;
1748 dev_notice(smmu->dev, "\taddress translation ops\n");
1749 }
1750
Robin Murphybae2c2d2015-07-29 19:46:05 +01001751 /*
1752 * In order for DMA API calls to work properly, we must defer to what
Lorenzo Pieralisibbb8a182016-11-21 10:01:44 +00001753 * the FW says about coherency, regardless of what the hardware claims.
Robin Murphybae2c2d2015-07-29 19:46:05 +01001754 * Fortunately, this also opens up a workaround for systems where the
1755 * ID register value has ended up configured incorrectly.
1756 */
Robin Murphybae2c2d2015-07-29 19:46:05 +01001757 cttw_reg = !!(id & ID0_CTTW);
Lorenzo Pieralisibbb8a182016-11-21 10:01:44 +00001758 if (cttw_fw || cttw_reg)
Robin Murphybae2c2d2015-07-29 19:46:05 +01001759 dev_notice(smmu->dev, "\t%scoherent table walk\n",
Lorenzo Pieralisibbb8a182016-11-21 10:01:44 +00001760 cttw_fw ? "" : "non-");
1761 if (cttw_fw != cttw_reg)
Robin Murphybae2c2d2015-07-29 19:46:05 +01001762 dev_notice(smmu->dev,
Lorenzo Pieralisibbb8a182016-11-21 10:01:44 +00001763 "\t(IDR0.CTTW overridden by FW configuration)\n");
Will Deacon45ae7cf2013-06-24 18:31:25 +01001764
Robin Murphy21174242016-09-12 17:13:48 +01001765 /* Max. number of entries we have for stream matching/indexing */
1766 size = 1 << ((id >> ID0_NUMSIDB_SHIFT) & ID0_NUMSIDB_MASK);
1767 smmu->streamid_mask = size - 1;
Will Deacon45ae7cf2013-06-24 18:31:25 +01001768 if (id & ID0_SMS) {
Robin Murphy21174242016-09-12 17:13:48 +01001769 u32 smr;
Will Deacon45ae7cf2013-06-24 18:31:25 +01001770
1771 smmu->features |= ARM_SMMU_FEAT_STREAM_MATCH;
Robin Murphy21174242016-09-12 17:13:48 +01001772 size = (id >> ID0_NUMSMRG_SHIFT) & ID0_NUMSMRG_MASK;
1773 if (size == 0) {
Will Deacon45ae7cf2013-06-24 18:31:25 +01001774 dev_err(smmu->dev,
1775 "stream-matching supported, but no SMRs present!\n");
1776 return -ENODEV;
1777 }
1778
Robin Murphy21174242016-09-12 17:13:48 +01001779 /*
1780 * SMR.ID bits may not be preserved if the corresponding MASK
1781 * bits are set, so check each one separately. We can reject
1782 * masters later if they try to claim IDs outside these masks.
1783 */
1784 smr = smmu->streamid_mask << SMR_ID_SHIFT;
Will Deacon45ae7cf2013-06-24 18:31:25 +01001785 writel_relaxed(smr, gr0_base + ARM_SMMU_GR0_SMR(0));
1786 smr = readl_relaxed(gr0_base + ARM_SMMU_GR0_SMR(0));
Robin Murphy21174242016-09-12 17:13:48 +01001787 smmu->streamid_mask = smr >> SMR_ID_SHIFT;
Will Deacon45ae7cf2013-06-24 18:31:25 +01001788
Robin Murphy21174242016-09-12 17:13:48 +01001789 smr = smmu->streamid_mask << SMR_MASK_SHIFT;
1790 writel_relaxed(smr, gr0_base + ARM_SMMU_GR0_SMR(0));
1791 smr = readl_relaxed(gr0_base + ARM_SMMU_GR0_SMR(0));
1792 smmu->smr_mask_mask = smr >> SMR_MASK_SHIFT;
Will Deacon45ae7cf2013-06-24 18:31:25 +01001793
Robin Murphy1f3d5ca2016-09-12 17:13:49 +01001794 /* Zero-initialised to mark as invalid */
1795 smmu->smrs = devm_kcalloc(smmu->dev, size, sizeof(*smmu->smrs),
1796 GFP_KERNEL);
1797 if (!smmu->smrs)
1798 return -ENOMEM;
1799
Will Deacon45ae7cf2013-06-24 18:31:25 +01001800 dev_notice(smmu->dev,
Robin Murphy21174242016-09-12 17:13:48 +01001801 "\tstream matching with %lu register groups, mask 0x%x",
1802 size, smmu->smr_mask_mask);
Will Deacon45ae7cf2013-06-24 18:31:25 +01001803 }
Robin Murphy8e8b2032016-09-12 17:13:50 +01001804 /* s2cr->type == 0 means translation, so initialise explicitly */
1805 smmu->s2crs = devm_kmalloc_array(smmu->dev, size, sizeof(*smmu->s2crs),
1806 GFP_KERNEL);
1807 if (!smmu->s2crs)
1808 return -ENOMEM;
1809 for (i = 0; i < size; i++)
1810 smmu->s2crs[i] = s2cr_init_val;
1811
Robin Murphy21174242016-09-12 17:13:48 +01001812 smmu->num_mapping_groups = size;
Robin Murphy588888a2016-09-12 17:13:54 +01001813 mutex_init(&smmu->stream_map_mutex);
Will Deacon45ae7cf2013-06-24 18:31:25 +01001814
Robin Murphy7602b872016-04-28 17:12:09 +01001815 if (smmu->version < ARM_SMMU_V2 || !(id & ID0_PTFS_NO_AARCH32)) {
1816 smmu->features |= ARM_SMMU_FEAT_FMT_AARCH32_L;
1817 if (!(id & ID0_PTFS_NO_AARCH32S))
1818 smmu->features |= ARM_SMMU_FEAT_FMT_AARCH32_S;
1819 }
1820
Will Deacon45ae7cf2013-06-24 18:31:25 +01001821 /* ID1 */
1822 id = readl_relaxed(gr0_base + ARM_SMMU_GR0_ID1);
Will Deaconc757e852014-07-30 11:33:25 +01001823 smmu->pgshift = (id & ID1_PAGESIZE) ? 16 : 12;
Will Deacon45ae7cf2013-06-24 18:31:25 +01001824
Andreas Herrmannc55af7f2013-10-01 13:39:06 +01001825 /* Check for size mismatch of SMMU address space from mapped region */
Will Deacon518f7132014-11-14 17:17:54 +00001826 size = 1 << (((id >> ID1_NUMPAGENDXB_SHIFT) & ID1_NUMPAGENDXB_MASK) + 1);
Will Deaconc757e852014-07-30 11:33:25 +01001827 size *= 2 << smmu->pgshift;
Andreas Herrmannc55af7f2013-10-01 13:39:06 +01001828 if (smmu->size != size)
Mitchel Humpherys29073202014-07-08 09:52:18 -07001829 dev_warn(smmu->dev,
1830 "SMMU address space size (0x%lx) differs from mapped region size (0x%lx)!\n",
1831 size, smmu->size);
Will Deacon45ae7cf2013-06-24 18:31:25 +01001832
Will Deacon518f7132014-11-14 17:17:54 +00001833 smmu->num_s2_context_banks = (id >> ID1_NUMS2CB_SHIFT) & ID1_NUMS2CB_MASK;
Will Deacon45ae7cf2013-06-24 18:31:25 +01001834 smmu->num_context_banks = (id >> ID1_NUMCB_SHIFT) & ID1_NUMCB_MASK;
1835 if (smmu->num_s2_context_banks > smmu->num_context_banks) {
1836 dev_err(smmu->dev, "impossible number of S2 context banks!\n");
1837 return -ENODEV;
1838 }
1839 dev_notice(smmu->dev, "\t%u context banks (%u stage-2 only)\n",
1840 smmu->num_context_banks, smmu->num_s2_context_banks);
Robin Murphye086d912016-04-13 18:12:58 +01001841 /*
1842 * Cavium CN88xx erratum #27704.
1843 * Ensure ASID and VMID allocation is unique across all SMMUs in
1844 * the system.
1845 */
1846 if (smmu->model == CAVIUM_SMMUV2) {
1847 smmu->cavium_id_base =
1848 atomic_add_return(smmu->num_context_banks,
1849 &cavium_smmu_context_count);
1850 smmu->cavium_id_base -= smmu->num_context_banks;
1851 }
Will Deacon45ae7cf2013-06-24 18:31:25 +01001852
1853 /* ID2 */
1854 id = readl_relaxed(gr0_base + ARM_SMMU_GR0_ID2);
1855 size = arm_smmu_id_size_to_bits((id >> ID2_IAS_SHIFT) & ID2_IAS_MASK);
Will Deacon518f7132014-11-14 17:17:54 +00001856 smmu->ipa_size = size;
Will Deacon45ae7cf2013-06-24 18:31:25 +01001857
Will Deacon518f7132014-11-14 17:17:54 +00001858 /* The output mask is also applied for bypass */
Will Deacon45ae7cf2013-06-24 18:31:25 +01001859 size = arm_smmu_id_size_to_bits((id >> ID2_OAS_SHIFT) & ID2_OAS_MASK);
Will Deacon518f7132014-11-14 17:17:54 +00001860 smmu->pa_size = size;
Will Deacon45ae7cf2013-06-24 18:31:25 +01001861
Tirumalesh Chalamarla4e3e9b62016-02-23 10:19:00 -08001862 if (id & ID2_VMID16)
1863 smmu->features |= ARM_SMMU_FEAT_VMID16;
1864
Robin Murphyf1d84542015-03-04 16:41:05 +00001865 /*
1866 * What the page table walker can address actually depends on which
1867 * descriptor format is in use, but since a) we don't know that yet,
1868 * and b) it can vary per context bank, this will have to do...
1869 */
1870 if (dma_set_mask_and_coherent(smmu->dev, DMA_BIT_MASK(size)))
1871 dev_warn(smmu->dev,
1872 "failed to set DMA mask for table walker\n");
1873
Robin Murphyb7862e32016-04-13 18:13:03 +01001874 if (smmu->version < ARM_SMMU_V2) {
Will Deacon518f7132014-11-14 17:17:54 +00001875 smmu->va_size = smmu->ipa_size;
Robin Murphyb7862e32016-04-13 18:13:03 +01001876 if (smmu->version == ARM_SMMU_V1_64K)
1877 smmu->features |= ARM_SMMU_FEAT_FMT_AARCH64_64K;
Will Deacon45ae7cf2013-06-24 18:31:25 +01001878 } else {
Will Deacon45ae7cf2013-06-24 18:31:25 +01001879 size = (id >> ID2_UBS_SHIFT) & ID2_UBS_MASK;
Will Deacon518f7132014-11-14 17:17:54 +00001880 smmu->va_size = arm_smmu_id_size_to_bits(size);
Will Deacon518f7132014-11-14 17:17:54 +00001881 if (id & ID2_PTFS_4K)
Robin Murphy7602b872016-04-28 17:12:09 +01001882 smmu->features |= ARM_SMMU_FEAT_FMT_AARCH64_4K;
Will Deacon518f7132014-11-14 17:17:54 +00001883 if (id & ID2_PTFS_16K)
Robin Murphy7602b872016-04-28 17:12:09 +01001884 smmu->features |= ARM_SMMU_FEAT_FMT_AARCH64_16K;
Will Deacon518f7132014-11-14 17:17:54 +00001885 if (id & ID2_PTFS_64K)
Robin Murphy7602b872016-04-28 17:12:09 +01001886 smmu->features |= ARM_SMMU_FEAT_FMT_AARCH64_64K;
Will Deacon45ae7cf2013-06-24 18:31:25 +01001887 }
1888
Robin Murphy7602b872016-04-28 17:12:09 +01001889 /* Now we've corralled the various formats, what'll it do? */
Robin Murphy7602b872016-04-28 17:12:09 +01001890 if (smmu->features & ARM_SMMU_FEAT_FMT_AARCH32_S)
Robin Murphyd5466352016-05-09 17:20:09 +01001891 smmu->pgsize_bitmap |= SZ_4K | SZ_64K | SZ_1M | SZ_16M;
Robin Murphy7602b872016-04-28 17:12:09 +01001892 if (smmu->features &
1893 (ARM_SMMU_FEAT_FMT_AARCH32_L | ARM_SMMU_FEAT_FMT_AARCH64_4K))
Robin Murphyd5466352016-05-09 17:20:09 +01001894 smmu->pgsize_bitmap |= SZ_4K | SZ_2M | SZ_1G;
Robin Murphy7602b872016-04-28 17:12:09 +01001895 if (smmu->features & ARM_SMMU_FEAT_FMT_AARCH64_16K)
Robin Murphyd5466352016-05-09 17:20:09 +01001896 smmu->pgsize_bitmap |= SZ_16K | SZ_32M;
Robin Murphy7602b872016-04-28 17:12:09 +01001897 if (smmu->features & ARM_SMMU_FEAT_FMT_AARCH64_64K)
Robin Murphyd5466352016-05-09 17:20:09 +01001898 smmu->pgsize_bitmap |= SZ_64K | SZ_512M;
Robin Murphy7602b872016-04-28 17:12:09 +01001899
Robin Murphyd5466352016-05-09 17:20:09 +01001900 if (arm_smmu_ops.pgsize_bitmap == -1UL)
1901 arm_smmu_ops.pgsize_bitmap = smmu->pgsize_bitmap;
1902 else
1903 arm_smmu_ops.pgsize_bitmap |= smmu->pgsize_bitmap;
1904 dev_notice(smmu->dev, "\tSupported page sizes: 0x%08lx\n",
1905 smmu->pgsize_bitmap);
1906
Will Deacon518f7132014-11-14 17:17:54 +00001907
Will Deacon28d60072014-09-01 16:24:48 +01001908 if (smmu->features & ARM_SMMU_FEAT_TRANS_S1)
1909 dev_notice(smmu->dev, "\tStage-1: %lu-bit VA -> %lu-bit IPA\n",
Will Deacon518f7132014-11-14 17:17:54 +00001910 smmu->va_size, smmu->ipa_size);
Will Deacon28d60072014-09-01 16:24:48 +01001911
1912 if (smmu->features & ARM_SMMU_FEAT_TRANS_S2)
1913 dev_notice(smmu->dev, "\tStage-2: %lu-bit IPA -> %lu-bit PA\n",
Will Deacon518f7132014-11-14 17:17:54 +00001914 smmu->ipa_size, smmu->pa_size);
Will Deacon28d60072014-09-01 16:24:48 +01001915
Will Deacon45ae7cf2013-06-24 18:31:25 +01001916 return 0;
1917}
1918
Robin Murphy67b65a32016-04-13 18:12:57 +01001919struct arm_smmu_match_data {
1920 enum arm_smmu_arch_version version;
1921 enum arm_smmu_implementation model;
1922};
1923
1924#define ARM_SMMU_MATCH_DATA(name, ver, imp) \
1925static struct arm_smmu_match_data name = { .version = ver, .model = imp }
1926
1927ARM_SMMU_MATCH_DATA(smmu_generic_v1, ARM_SMMU_V1, GENERIC_SMMU);
1928ARM_SMMU_MATCH_DATA(smmu_generic_v2, ARM_SMMU_V2, GENERIC_SMMU);
Robin Murphyb7862e32016-04-13 18:13:03 +01001929ARM_SMMU_MATCH_DATA(arm_mmu401, ARM_SMMU_V1_64K, GENERIC_SMMU);
Robin Murphyf0cfffc2016-04-13 18:12:59 +01001930ARM_SMMU_MATCH_DATA(arm_mmu500, ARM_SMMU_V2, ARM_MMU500);
Robin Murphye086d912016-04-13 18:12:58 +01001931ARM_SMMU_MATCH_DATA(cavium_smmuv2, ARM_SMMU_V2, CAVIUM_SMMUV2);
Robin Murphy67b65a32016-04-13 18:12:57 +01001932
Joerg Roedel09b52692014-10-02 12:24:45 +02001933static const struct of_device_id arm_smmu_of_match[] = {
Robin Murphy67b65a32016-04-13 18:12:57 +01001934 { .compatible = "arm,smmu-v1", .data = &smmu_generic_v1 },
1935 { .compatible = "arm,smmu-v2", .data = &smmu_generic_v2 },
1936 { .compatible = "arm,mmu-400", .data = &smmu_generic_v1 },
Robin Murphyb7862e32016-04-13 18:13:03 +01001937 { .compatible = "arm,mmu-401", .data = &arm_mmu401 },
Robin Murphyf0cfffc2016-04-13 18:12:59 +01001938 { .compatible = "arm,mmu-500", .data = &arm_mmu500 },
Robin Murphye086d912016-04-13 18:12:58 +01001939 { .compatible = "cavium,smmu-v2", .data = &cavium_smmuv2 },
Robin Murphy09360402014-08-28 17:51:59 +01001940 { },
1941};
1942MODULE_DEVICE_TABLE(of, arm_smmu_of_match);
1943
Lorenzo Pieralisid6fcd3b2016-11-21 10:01:45 +00001944#ifdef CONFIG_ACPI
1945static int acpi_smmu_get_data(u32 model, struct arm_smmu_device *smmu)
1946{
1947 int ret = 0;
1948
1949 switch (model) {
1950 case ACPI_IORT_SMMU_V1:
1951 case ACPI_IORT_SMMU_CORELINK_MMU400:
1952 smmu->version = ARM_SMMU_V1;
1953 smmu->model = GENERIC_SMMU;
1954 break;
1955 case ACPI_IORT_SMMU_V2:
1956 smmu->version = ARM_SMMU_V2;
1957 smmu->model = GENERIC_SMMU;
1958 break;
1959 case ACPI_IORT_SMMU_CORELINK_MMU500:
1960 smmu->version = ARM_SMMU_V2;
1961 smmu->model = ARM_MMU500;
1962 break;
1963 default:
1964 ret = -ENODEV;
1965 }
1966
1967 return ret;
1968}
1969
1970static int arm_smmu_device_acpi_probe(struct platform_device *pdev,
1971 struct arm_smmu_device *smmu)
1972{
1973 struct device *dev = smmu->dev;
1974 struct acpi_iort_node *node =
1975 *(struct acpi_iort_node **)dev_get_platdata(dev);
1976 struct acpi_iort_smmu *iort_smmu;
1977 int ret;
1978
1979 /* Retrieve SMMU1/2 specific data */
1980 iort_smmu = (struct acpi_iort_smmu *)node->node_data;
1981
1982 ret = acpi_smmu_get_data(iort_smmu->model, smmu);
1983 if (ret < 0)
1984 return ret;
1985
1986 /* Ignore the configuration access interrupt */
1987 smmu->num_global_irqs = 1;
1988
1989 if (iort_smmu->flags & ACPI_IORT_SMMU_COHERENT_WALK)
1990 smmu->features |= ARM_SMMU_FEAT_COHERENT_WALK;
1991
1992 return 0;
1993}
1994#else
1995static inline int arm_smmu_device_acpi_probe(struct platform_device *pdev,
1996 struct arm_smmu_device *smmu)
1997{
1998 return -ENODEV;
1999}
2000#endif
2001
Lorenzo Pieralisibbb8a182016-11-21 10:01:44 +00002002static int arm_smmu_device_dt_probe(struct platform_device *pdev,
2003 struct arm_smmu_device *smmu)
Will Deacon45ae7cf2013-06-24 18:31:25 +01002004{
Robin Murphy67b65a32016-04-13 18:12:57 +01002005 const struct arm_smmu_match_data *data;
Will Deacon45ae7cf2013-06-24 18:31:25 +01002006 struct device *dev = &pdev->dev;
Robin Murphy021bb842016-09-14 15:26:46 +01002007 bool legacy_binding;
2008
Lorenzo Pieralisibbb8a182016-11-21 10:01:44 +00002009 if (of_property_read_u32(dev->of_node, "#global-interrupts",
2010 &smmu->num_global_irqs)) {
2011 dev_err(dev, "missing #global-interrupts property\n");
2012 return -ENODEV;
2013 }
2014
2015 data = of_device_get_match_data(dev);
2016 smmu->version = data->version;
2017 smmu->model = data->model;
2018
2019 parse_driver_options(smmu);
2020
Robin Murphy021bb842016-09-14 15:26:46 +01002021 legacy_binding = of_find_property(dev->of_node, "mmu-masters", NULL);
2022 if (legacy_binding && !using_generic_binding) {
2023 if (!using_legacy_binding)
2024 pr_notice("deprecated \"mmu-masters\" DT property in use; DMA API support unavailable\n");
2025 using_legacy_binding = true;
2026 } else if (!legacy_binding && !using_legacy_binding) {
2027 using_generic_binding = true;
2028 } else {
2029 dev_err(dev, "not probing due to mismatched DT properties\n");
2030 return -ENODEV;
2031 }
Will Deacon45ae7cf2013-06-24 18:31:25 +01002032
Lorenzo Pieralisibbb8a182016-11-21 10:01:44 +00002033 if (of_dma_is_coherent(dev->of_node))
2034 smmu->features |= ARM_SMMU_FEAT_COHERENT_WALK;
2035
2036 return 0;
2037}
2038
2039static int arm_smmu_device_probe(struct platform_device *pdev)
2040{
2041 struct resource *res;
2042 struct arm_smmu_device *smmu;
2043 struct device *dev = &pdev->dev;
2044 int num_irqs, i, err;
2045
Will Deacon45ae7cf2013-06-24 18:31:25 +01002046 smmu = devm_kzalloc(dev, sizeof(*smmu), GFP_KERNEL);
2047 if (!smmu) {
2048 dev_err(dev, "failed to allocate arm_smmu_device\n");
2049 return -ENOMEM;
2050 }
2051 smmu->dev = dev;
2052
Lorenzo Pieralisid6fcd3b2016-11-21 10:01:45 +00002053 if (dev->of_node)
2054 err = arm_smmu_device_dt_probe(pdev, smmu);
2055 else
2056 err = arm_smmu_device_acpi_probe(pdev, smmu);
2057
Lorenzo Pieralisibbb8a182016-11-21 10:01:44 +00002058 if (err)
2059 return err;
Robin Murphy09360402014-08-28 17:51:59 +01002060
Will Deacon45ae7cf2013-06-24 18:31:25 +01002061 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Julia Lawall8a7f4312013-08-19 12:20:37 +01002062 smmu->base = devm_ioremap_resource(dev, res);
2063 if (IS_ERR(smmu->base))
2064 return PTR_ERR(smmu->base);
Will Deacon45ae7cf2013-06-24 18:31:25 +01002065 smmu->size = resource_size(res);
Will Deacon45ae7cf2013-06-24 18:31:25 +01002066
Will Deacon45ae7cf2013-06-24 18:31:25 +01002067 num_irqs = 0;
2068 while ((res = platform_get_resource(pdev, IORESOURCE_IRQ, num_irqs))) {
2069 num_irqs++;
2070 if (num_irqs > smmu->num_global_irqs)
2071 smmu->num_context_irqs++;
2072 }
2073
Andreas Herrmann44a08de2013-10-01 13:39:07 +01002074 if (!smmu->num_context_irqs) {
2075 dev_err(dev, "found %d interrupts but expected at least %d\n",
2076 num_irqs, smmu->num_global_irqs + 1);
2077 return -ENODEV;
Will Deacon45ae7cf2013-06-24 18:31:25 +01002078 }
Will Deacon45ae7cf2013-06-24 18:31:25 +01002079
2080 smmu->irqs = devm_kzalloc(dev, sizeof(*smmu->irqs) * num_irqs,
2081 GFP_KERNEL);
2082 if (!smmu->irqs) {
2083 dev_err(dev, "failed to allocate %d irqs\n", num_irqs);
2084 return -ENOMEM;
2085 }
2086
2087 for (i = 0; i < num_irqs; ++i) {
2088 int irq = platform_get_irq(pdev, i);
Mitchel Humpherys29073202014-07-08 09:52:18 -07002089
Will Deacon45ae7cf2013-06-24 18:31:25 +01002090 if (irq < 0) {
2091 dev_err(dev, "failed to get irq index %d\n", i);
2092 return -ENODEV;
2093 }
2094 smmu->irqs[i] = irq;
2095 }
2096
Olav Haugan3c8766d2014-08-22 17:12:32 -07002097 err = arm_smmu_device_cfg_probe(smmu);
2098 if (err)
2099 return err;
2100
Robin Murphyb7862e32016-04-13 18:13:03 +01002101 if (smmu->version == ARM_SMMU_V2 &&
Will Deacon45ae7cf2013-06-24 18:31:25 +01002102 smmu->num_context_banks != smmu->num_context_irqs) {
2103 dev_err(dev,
2104 "found only %d context interrupt(s) but %d required\n",
2105 smmu->num_context_irqs, smmu->num_context_banks);
Robin Murphyf80cd882016-09-14 15:21:39 +01002106 return -ENODEV;
Will Deacon45ae7cf2013-06-24 18:31:25 +01002107 }
2108
Will Deacon45ae7cf2013-06-24 18:31:25 +01002109 for (i = 0; i < smmu->num_global_irqs; ++i) {
Peng Fanbee14002016-07-04 17:38:22 +08002110 err = devm_request_irq(smmu->dev, smmu->irqs[i],
2111 arm_smmu_global_fault,
2112 IRQF_SHARED,
2113 "arm-smmu global fault",
2114 smmu);
Will Deacon45ae7cf2013-06-24 18:31:25 +01002115 if (err) {
2116 dev_err(dev, "failed to request global IRQ %d (%u)\n",
2117 i, smmu->irqs[i]);
Robin Murphyf80cd882016-09-14 15:21:39 +01002118 return err;
Will Deacon45ae7cf2013-06-24 18:31:25 +01002119 }
2120 }
2121
Lorenzo Pieralisice9babe2016-11-21 10:01:37 +00002122 iommu_register_instance(dev->fwnode, &arm_smmu_ops);
Robin Murphyd6fc5d92016-09-12 17:13:52 +01002123 platform_set_drvdata(pdev, smmu);
Will Deaconfd90cec2013-08-21 13:56:34 +01002124 arm_smmu_device_reset(smmu);
Robin Murphy021bb842016-09-14 15:26:46 +01002125
2126 /* Oh, for a proper bus abstraction */
2127 if (!iommu_present(&platform_bus_type))
2128 bus_set_iommu(&platform_bus_type, &arm_smmu_ops);
2129#ifdef CONFIG_ARM_AMBA
2130 if (!iommu_present(&amba_bustype))
2131 bus_set_iommu(&amba_bustype, &arm_smmu_ops);
2132#endif
2133#ifdef CONFIG_PCI
2134 if (!iommu_present(&pci_bus_type)) {
2135 pci_request_acs();
2136 bus_set_iommu(&pci_bus_type, &arm_smmu_ops);
2137 }
2138#endif
Will Deacon45ae7cf2013-06-24 18:31:25 +01002139 return 0;
Will Deacon45ae7cf2013-06-24 18:31:25 +01002140}
2141
2142static int arm_smmu_device_remove(struct platform_device *pdev)
2143{
Robin Murphyd6fc5d92016-09-12 17:13:52 +01002144 struct arm_smmu_device *smmu = platform_get_drvdata(pdev);
Will Deacon45ae7cf2013-06-24 18:31:25 +01002145
2146 if (!smmu)
2147 return -ENODEV;
2148
Will Deaconecfadb62013-07-31 19:21:28 +01002149 if (!bitmap_empty(smmu->context_map, ARM_SMMU_MAX_CBS))
Robin Murphyd6fc5d92016-09-12 17:13:52 +01002150 dev_err(&pdev->dev, "removing device with active domains!\n");
Will Deacon45ae7cf2013-06-24 18:31:25 +01002151
Will Deacon45ae7cf2013-06-24 18:31:25 +01002152 /* Turn the thing off */
Mitchel Humpherys29073202014-07-08 09:52:18 -07002153 writel(sCR0_CLIENTPD, ARM_SMMU_GR0_NS(smmu) + ARM_SMMU_GR0_sCR0);
Will Deacon45ae7cf2013-06-24 18:31:25 +01002154 return 0;
2155}
2156
Will Deacon45ae7cf2013-06-24 18:31:25 +01002157static struct platform_driver arm_smmu_driver = {
2158 .driver = {
Will Deacon45ae7cf2013-06-24 18:31:25 +01002159 .name = "arm-smmu",
2160 .of_match_table = of_match_ptr(arm_smmu_of_match),
2161 },
Lorenzo Pieralisibbb8a182016-11-21 10:01:44 +00002162 .probe = arm_smmu_device_probe,
Will Deacon45ae7cf2013-06-24 18:31:25 +01002163 .remove = arm_smmu_device_remove,
2164};
2165
2166static int __init arm_smmu_init(void)
2167{
Robin Murphy021bb842016-09-14 15:26:46 +01002168 static bool registered;
2169 int ret = 0;
Will Deacon45ae7cf2013-06-24 18:31:25 +01002170
Robin Murphy021bb842016-09-14 15:26:46 +01002171 if (!registered) {
2172 ret = platform_driver_register(&arm_smmu_driver);
2173 registered = !ret;
Wei Chen112c8982016-06-13 17:20:17 +08002174 }
Robin Murphy021bb842016-09-14 15:26:46 +01002175 return ret;
Will Deacon45ae7cf2013-06-24 18:31:25 +01002176}
2177
2178static void __exit arm_smmu_exit(void)
2179{
2180 return platform_driver_unregister(&arm_smmu_driver);
2181}
2182
Andreas Herrmannb1950b22013-10-01 13:39:05 +01002183subsys_initcall(arm_smmu_init);
Will Deacon45ae7cf2013-06-24 18:31:25 +01002184module_exit(arm_smmu_exit);
2185
Robin Murphy021bb842016-09-14 15:26:46 +01002186static int __init arm_smmu_of_init(struct device_node *np)
2187{
2188 int ret = arm_smmu_init();
2189
2190 if (ret)
2191 return ret;
2192
2193 if (!of_platform_device_create(np, NULL, platform_bus_type.dev_root))
2194 return -ENODEV;
2195
2196 return 0;
2197}
2198IOMMU_OF_DECLARE(arm_smmuv1, "arm,smmu-v1", arm_smmu_of_init);
2199IOMMU_OF_DECLARE(arm_smmuv2, "arm,smmu-v2", arm_smmu_of_init);
2200IOMMU_OF_DECLARE(arm_mmu400, "arm,mmu-400", arm_smmu_of_init);
2201IOMMU_OF_DECLARE(arm_mmu401, "arm,mmu-401", arm_smmu_of_init);
2202IOMMU_OF_DECLARE(arm_mmu500, "arm,mmu-500", arm_smmu_of_init);
2203IOMMU_OF_DECLARE(cavium_smmuv2, "cavium,smmu-v2", arm_smmu_of_init);
2204
Lorenzo Pieralisid6fcd3b2016-11-21 10:01:45 +00002205#ifdef CONFIG_ACPI
2206static int __init arm_smmu_acpi_init(struct acpi_table_header *table)
2207{
2208 if (iort_node_match(ACPI_IORT_NODE_SMMU))
2209 return arm_smmu_init();
2210
2211 return 0;
2212}
2213IORT_ACPI_DECLARE(arm_smmu, ACPI_SIG_IORT, arm_smmu_acpi_init);
2214#endif
2215
Will Deacon45ae7cf2013-06-24 18:31:25 +01002216MODULE_DESCRIPTION("IOMMU API for ARM architected SMMU implementations");
2217MODULE_AUTHOR("Will Deacon <will.deacon@arm.com>");
2218MODULE_LICENSE("GPL v2");