blob: 43b69c8cbe460a48da8431b11c8345c2e0ca5956 [file] [log] [blame]
Hiroshi DOYU7a31f6f2011-11-17 07:31:31 +02001/*
Thierry Reding89184652014-04-16 09:24:44 +02002 * Copyright (C) 2011-2014 NVIDIA CORPORATION. All rights reserved.
Hiroshi DOYU7a31f6f2011-11-17 07:31:31 +02003 *
Thierry Reding89184652014-04-16 09:24:44 +02004 * 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.
Hiroshi DOYU7a31f6f2011-11-17 07:31:31 +02007 */
8
Thierry Reding804cb542015-03-27 11:07:27 +01009#include <linux/bitops.h>
Thierry Redingd1313e72015-01-23 09:49:25 +010010#include <linux/debugfs.h>
Thierry Redingbc5e6de2013-01-21 11:09:06 +010011#include <linux/err.h>
Hiroshi DOYU7a31f6f2011-11-17 07:31:31 +020012#include <linux/iommu.h>
Thierry Reding89184652014-04-16 09:24:44 +020013#include <linux/kernel.h>
Hiroshi Doyu0760e8f2012-06-25 14:23:55 +030014#include <linux/of.h>
Thierry Reding89184652014-04-16 09:24:44 +020015#include <linux/of_device.h>
16#include <linux/platform_device.h>
17#include <linux/slab.h>
Thierry Reding306a7f92014-07-17 13:17:24 +020018
19#include <soc/tegra/ahb.h>
Thierry Reding89184652014-04-16 09:24:44 +020020#include <soc/tegra/mc.h>
Hiroshi DOYU7a31f6f2011-11-17 07:31:31 +020021
Thierry Reding89184652014-04-16 09:24:44 +020022struct tegra_smmu {
23 void __iomem *regs;
24 struct device *dev;
Hiroshi DOYU7a31f6f2011-11-17 07:31:31 +020025
Thierry Reding89184652014-04-16 09:24:44 +020026 struct tegra_mc *mc;
27 const struct tegra_smmu_soc *soc;
Stephen Warrene6bc5932012-09-04 16:36:15 -060028
Thierry Reding804cb542015-03-27 11:07:27 +010029 unsigned long pfn_mask;
30
Thierry Reding89184652014-04-16 09:24:44 +020031 unsigned long *asids;
32 struct mutex lock;
Stephen Warrene6bc5932012-09-04 16:36:15 -060033
Thierry Reding89184652014-04-16 09:24:44 +020034 struct list_head list;
Thierry Redingd1313e72015-01-23 09:49:25 +010035
36 struct dentry *debugfs;
Stephen Warrene6bc5932012-09-04 16:36:15 -060037};
38
Thierry Reding89184652014-04-16 09:24:44 +020039struct tegra_smmu_as {
Joerg Roedeld5f1a812015-03-26 13:43:12 +010040 struct iommu_domain domain;
Thierry Reding89184652014-04-16 09:24:44 +020041 struct tegra_smmu *smmu;
42 unsigned int use_count;
Russell King32924c72015-07-27 13:29:31 +010043 u32 *count;
Russell King853520f2015-07-27 13:29:26 +010044 struct page **pts;
Thierry Reding89184652014-04-16 09:24:44 +020045 struct page *pd;
Russell Kinge3c97192015-07-27 13:29:52 +010046 dma_addr_t pd_dma;
Thierry Reding89184652014-04-16 09:24:44 +020047 unsigned id;
48 u32 attr;
Hiroshi Doyu39abf8a2012-08-02 11:46:40 +030049};
50
Joerg Roedeld5f1a812015-03-26 13:43:12 +010051static struct tegra_smmu_as *to_smmu_as(struct iommu_domain *dom)
52{
53 return container_of(dom, struct tegra_smmu_as, domain);
54}
55
Thierry Reding89184652014-04-16 09:24:44 +020056static inline void smmu_writel(struct tegra_smmu *smmu, u32 value,
57 unsigned long offset)
Hiroshi DOYU7a31f6f2011-11-17 07:31:31 +020058{
Thierry Reding89184652014-04-16 09:24:44 +020059 writel(value, smmu->regs + offset);
Joerg Roedelfe1229b2013-02-04 20:40:58 +010060}
61
Thierry Reding89184652014-04-16 09:24:44 +020062static inline u32 smmu_readl(struct tegra_smmu *smmu, unsigned long offset)
Hiroshi DOYU7a31f6f2011-11-17 07:31:31 +020063{
Thierry Reding89184652014-04-16 09:24:44 +020064 return readl(smmu->regs + offset);
Hiroshi DOYU7a31f6f2011-11-17 07:31:31 +020065}
66
Thierry Reding89184652014-04-16 09:24:44 +020067#define SMMU_CONFIG 0x010
68#define SMMU_CONFIG_ENABLE (1 << 0)
69
70#define SMMU_TLB_CONFIG 0x14
71#define SMMU_TLB_CONFIG_HIT_UNDER_MISS (1 << 29)
72#define SMMU_TLB_CONFIG_ROUND_ROBIN_ARBITRATION (1 << 28)
73#define SMMU_TLB_CONFIG_ACTIVE_LINES(x) ((x) & 0x3f)
74
75#define SMMU_PTC_CONFIG 0x18
76#define SMMU_PTC_CONFIG_ENABLE (1 << 29)
77#define SMMU_PTC_CONFIG_REQ_LIMIT(x) (((x) & 0x0f) << 24)
78#define SMMU_PTC_CONFIG_INDEX_MAP(x) ((x) & 0x3f)
79
80#define SMMU_PTB_ASID 0x01c
81#define SMMU_PTB_ASID_VALUE(x) ((x) & 0x7f)
82
83#define SMMU_PTB_DATA 0x020
Russell Kinge3c97192015-07-27 13:29:52 +010084#define SMMU_PTB_DATA_VALUE(dma, attr) ((dma) >> 12 | (attr))
Thierry Reding89184652014-04-16 09:24:44 +020085
Russell Kinge3c97192015-07-27 13:29:52 +010086#define SMMU_MK_PDE(dma, attr) ((dma) >> SMMU_PTE_SHIFT | (attr))
Thierry Reding89184652014-04-16 09:24:44 +020087
88#define SMMU_TLB_FLUSH 0x030
89#define SMMU_TLB_FLUSH_VA_MATCH_ALL (0 << 0)
90#define SMMU_TLB_FLUSH_VA_MATCH_SECTION (2 << 0)
91#define SMMU_TLB_FLUSH_VA_MATCH_GROUP (3 << 0)
92#define SMMU_TLB_FLUSH_ASID(x) (((x) & 0x7f) << 24)
93#define SMMU_TLB_FLUSH_VA_SECTION(addr) ((((addr) & 0xffc00000) >> 12) | \
94 SMMU_TLB_FLUSH_VA_MATCH_SECTION)
95#define SMMU_TLB_FLUSH_VA_GROUP(addr) ((((addr) & 0xffffc000) >> 12) | \
96 SMMU_TLB_FLUSH_VA_MATCH_GROUP)
97#define SMMU_TLB_FLUSH_ASID_MATCH (1 << 31)
98
99#define SMMU_PTC_FLUSH 0x034
100#define SMMU_PTC_FLUSH_TYPE_ALL (0 << 0)
101#define SMMU_PTC_FLUSH_TYPE_ADR (1 << 0)
102
103#define SMMU_PTC_FLUSH_HI 0x9b8
104#define SMMU_PTC_FLUSH_HI_MASK 0x3
105
106/* per-SWGROUP SMMU_*_ASID register */
107#define SMMU_ASID_ENABLE (1 << 31)
108#define SMMU_ASID_MASK 0x7f
109#define SMMU_ASID_VALUE(x) ((x) & SMMU_ASID_MASK)
110
111/* page table definitions */
112#define SMMU_NUM_PDE 1024
113#define SMMU_NUM_PTE 1024
114
115#define SMMU_SIZE_PD (SMMU_NUM_PDE * 4)
116#define SMMU_SIZE_PT (SMMU_NUM_PTE * 4)
117
118#define SMMU_PDE_SHIFT 22
119#define SMMU_PTE_SHIFT 12
120
Thierry Reding89184652014-04-16 09:24:44 +0200121#define SMMU_PD_READABLE (1 << 31)
122#define SMMU_PD_WRITABLE (1 << 30)
123#define SMMU_PD_NONSECURE (1 << 29)
124
125#define SMMU_PDE_READABLE (1 << 31)
126#define SMMU_PDE_WRITABLE (1 << 30)
127#define SMMU_PDE_NONSECURE (1 << 29)
128#define SMMU_PDE_NEXT (1 << 28)
129
130#define SMMU_PTE_READABLE (1 << 31)
131#define SMMU_PTE_WRITABLE (1 << 30)
132#define SMMU_PTE_NONSECURE (1 << 29)
133
134#define SMMU_PDE_ATTR (SMMU_PDE_READABLE | SMMU_PDE_WRITABLE | \
135 SMMU_PDE_NONSECURE)
136#define SMMU_PTE_ATTR (SMMU_PTE_READABLE | SMMU_PTE_WRITABLE | \
137 SMMU_PTE_NONSECURE)
138
Russell King34d35f82015-07-27 13:29:16 +0100139static unsigned int iova_pd_index(unsigned long iova)
140{
141 return (iova >> SMMU_PDE_SHIFT) & (SMMU_NUM_PDE - 1);
142}
143
144static unsigned int iova_pt_index(unsigned long iova)
145{
146 return (iova >> SMMU_PTE_SHIFT) & (SMMU_NUM_PTE - 1);
147}
148
Russell Kinge3c97192015-07-27 13:29:52 +0100149static bool smmu_dma_addr_valid(struct tegra_smmu *smmu, dma_addr_t addr)
Russell King4b3c7d12015-07-27 13:29:36 +0100150{
Russell Kinge3c97192015-07-27 13:29:52 +0100151 addr >>= 12;
152 return (addr & smmu->pfn_mask) == addr;
153}
Russell King4b3c7d12015-07-27 13:29:36 +0100154
Russell Kinge3c97192015-07-27 13:29:52 +0100155static dma_addr_t smmu_pde_to_dma(u32 pde)
156{
157 return pde << 12;
Russell King4b3c7d12015-07-27 13:29:36 +0100158}
159
Russell Kingb8fe0382015-07-27 13:29:41 +0100160static void smmu_flush_ptc_all(struct tegra_smmu *smmu)
161{
162 smmu_writel(smmu, SMMU_PTC_FLUSH_TYPE_ALL, SMMU_PTC_FLUSH);
163}
164
Russell Kinge3c97192015-07-27 13:29:52 +0100165static inline void smmu_flush_ptc(struct tegra_smmu *smmu, dma_addr_t dma,
Thierry Reding89184652014-04-16 09:24:44 +0200166 unsigned long offset)
Hiroshi DOYU7a31f6f2011-11-17 07:31:31 +0200167{
Thierry Reding89184652014-04-16 09:24:44 +0200168 u32 value;
Hiroshi Doyua6870e92013-01-31 10:14:10 +0200169
Russell Kingb8fe0382015-07-27 13:29:41 +0100170 offset &= ~(smmu->mc->soc->atom_size - 1);
Hiroshi Doyua6870e92013-01-31 10:14:10 +0200171
Russell Kingb8fe0382015-07-27 13:29:41 +0100172 if (smmu->mc->soc->num_address_bits > 32) {
Russell Kinge3c97192015-07-27 13:29:52 +0100173#ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
174 value = (dma >> 32) & SMMU_PTC_FLUSH_HI_MASK;
Hiroshi DOYU7a31f6f2011-11-17 07:31:31 +0200175#else
Russell Kingb8fe0382015-07-27 13:29:41 +0100176 value = 0;
Hiroshi DOYU7a31f6f2011-11-17 07:31:31 +0200177#endif
Russell Kingb8fe0382015-07-27 13:29:41 +0100178 smmu_writel(smmu, value, SMMU_PTC_FLUSH_HI);
Hiroshi DOYU7a31f6f2011-11-17 07:31:31 +0200179 }
Hiroshi DOYU9e971a02012-07-02 14:26:38 +0300180
Russell Kinge3c97192015-07-27 13:29:52 +0100181 value = (dma + offset) | SMMU_PTC_FLUSH_TYPE_ADR;
Thierry Reding89184652014-04-16 09:24:44 +0200182 smmu_writel(smmu, value, SMMU_PTC_FLUSH);
183}
184
185static inline void smmu_flush_tlb(struct tegra_smmu *smmu)
186{
187 smmu_writel(smmu, SMMU_TLB_FLUSH_VA_MATCH_ALL, SMMU_TLB_FLUSH);
188}
189
190static inline void smmu_flush_tlb_asid(struct tegra_smmu *smmu,
191 unsigned long asid)
192{
193 u32 value;
194
195 value = SMMU_TLB_FLUSH_ASID_MATCH | SMMU_TLB_FLUSH_ASID(asid) |
196 SMMU_TLB_FLUSH_VA_MATCH_ALL;
197 smmu_writel(smmu, value, SMMU_TLB_FLUSH);
198}
199
200static inline void smmu_flush_tlb_section(struct tegra_smmu *smmu,
201 unsigned long asid,
202 unsigned long iova)
203{
204 u32 value;
205
206 value = SMMU_TLB_FLUSH_ASID_MATCH | SMMU_TLB_FLUSH_ASID(asid) |
207 SMMU_TLB_FLUSH_VA_SECTION(iova);
208 smmu_writel(smmu, value, SMMU_TLB_FLUSH);
209}
210
211static inline void smmu_flush_tlb_group(struct tegra_smmu *smmu,
212 unsigned long asid,
213 unsigned long iova)
214{
215 u32 value;
216
217 value = SMMU_TLB_FLUSH_ASID_MATCH | SMMU_TLB_FLUSH_ASID(asid) |
218 SMMU_TLB_FLUSH_VA_GROUP(iova);
219 smmu_writel(smmu, value, SMMU_TLB_FLUSH);
220}
221
222static inline void smmu_flush(struct tegra_smmu *smmu)
223{
224 smmu_readl(smmu, SMMU_CONFIG);
225}
226
227static int tegra_smmu_alloc_asid(struct tegra_smmu *smmu, unsigned int *idp)
228{
229 unsigned long id;
230
231 mutex_lock(&smmu->lock);
232
233 id = find_first_zero_bit(smmu->asids, smmu->soc->num_asids);
234 if (id >= smmu->soc->num_asids) {
235 mutex_unlock(&smmu->lock);
236 return -ENOSPC;
Hiroshi DOYU7a31f6f2011-11-17 07:31:31 +0200237 }
Hiroshi DOYU9e971a02012-07-02 14:26:38 +0300238
Thierry Reding89184652014-04-16 09:24:44 +0200239 set_bit(id, smmu->asids);
240 *idp = id;
Hiroshi DOYU9e971a02012-07-02 14:26:38 +0300241
Thierry Reding89184652014-04-16 09:24:44 +0200242 mutex_unlock(&smmu->lock);
Hiroshi DOYU7a31f6f2011-11-17 07:31:31 +0200243 return 0;
244}
245
Thierry Reding89184652014-04-16 09:24:44 +0200246static void tegra_smmu_free_asid(struct tegra_smmu *smmu, unsigned int id)
Hiroshi DOYU7a31f6f2011-11-17 07:31:31 +0200247{
Thierry Reding89184652014-04-16 09:24:44 +0200248 mutex_lock(&smmu->lock);
249 clear_bit(id, smmu->asids);
250 mutex_unlock(&smmu->lock);
Hiroshi DOYU7a31f6f2011-11-17 07:31:31 +0200251}
252
Thierry Reding89184652014-04-16 09:24:44 +0200253static bool tegra_smmu_capable(enum iommu_cap cap)
Hiroshi DOYU7a31f6f2011-11-17 07:31:31 +0200254{
Joerg Roedel7c2aa642014-09-05 10:51:37 +0200255 return false;
Hiroshi DOYU7a31f6f2011-11-17 07:31:31 +0200256}
257
Joerg Roedeld5f1a812015-03-26 13:43:12 +0100258static struct iommu_domain *tegra_smmu_domain_alloc(unsigned type)
Hiroshi DOYU7a31f6f2011-11-17 07:31:31 +0200259{
Thierry Reding89184652014-04-16 09:24:44 +0200260 struct tegra_smmu_as *as;
261 unsigned int i;
262 uint32_t *pd;
Hiroshi DOYU7a31f6f2011-11-17 07:31:31 +0200263
Joerg Roedeld5f1a812015-03-26 13:43:12 +0100264 if (type != IOMMU_DOMAIN_UNMANAGED)
265 return NULL;
266
Thierry Reding89184652014-04-16 09:24:44 +0200267 as = kzalloc(sizeof(*as), GFP_KERNEL);
268 if (!as)
Joerg Roedeld5f1a812015-03-26 13:43:12 +0100269 return NULL;
Hiroshi DOYU7a31f6f2011-11-17 07:31:31 +0200270
Thierry Reding89184652014-04-16 09:24:44 +0200271 as->attr = SMMU_PD_READABLE | SMMU_PD_WRITABLE | SMMU_PD_NONSECURE;
Hiroshi DOYU7a31f6f2011-11-17 07:31:31 +0200272
Thierry Reding89184652014-04-16 09:24:44 +0200273 as->pd = alloc_page(GFP_KERNEL | __GFP_DMA);
274 if (!as->pd) {
275 kfree(as);
Joerg Roedeld5f1a812015-03-26 13:43:12 +0100276 return NULL;
Hiroshi DOYU7a31f6f2011-11-17 07:31:31 +0200277 }
278
Russell King32924c72015-07-27 13:29:31 +0100279 as->count = kcalloc(SMMU_NUM_PDE, sizeof(u32), GFP_KERNEL);
Thierry Reding89184652014-04-16 09:24:44 +0200280 if (!as->count) {
281 __free_page(as->pd);
282 kfree(as);
Joerg Roedeld5f1a812015-03-26 13:43:12 +0100283 return NULL;
Hiroshi DOYU7a31f6f2011-11-17 07:31:31 +0200284 }
Hiroshi DOYU7a31f6f2011-11-17 07:31:31 +0200285
Russell King853520f2015-07-27 13:29:26 +0100286 as->pts = kcalloc(SMMU_NUM_PDE, sizeof(*as->pts), GFP_KERNEL);
287 if (!as->pts) {
Russell King32924c72015-07-27 13:29:31 +0100288 kfree(as->count);
Russell King853520f2015-07-27 13:29:26 +0100289 __free_page(as->pd);
290 kfree(as);
291 return NULL;
292 }
293
Thierry Reding89184652014-04-16 09:24:44 +0200294 /* clear PDEs */
295 pd = page_address(as->pd);
296 SetPageReserved(as->pd);
Hiroshi DOYU7a31f6f2011-11-17 07:31:31 +0200297
Thierry Reding89184652014-04-16 09:24:44 +0200298 for (i = 0; i < SMMU_NUM_PDE; i++)
299 pd[i] = 0;
Hiroshi Doyud2453b22012-07-30 08:39:18 +0300300
Thierry Reding471d9142015-03-27 11:07:25 +0100301 /* setup aperture */
Joerg Roedel7f65ef02015-04-02 13:33:19 +0200302 as->domain.geometry.aperture_start = 0;
303 as->domain.geometry.aperture_end = 0xffffffff;
304 as->domain.geometry.force_aperture = true;
Hiroshi DOYU7a31f6f2011-11-17 07:31:31 +0200305
Joerg Roedeld5f1a812015-03-26 13:43:12 +0100306 return &as->domain;
Hiroshi DOYU7a31f6f2011-11-17 07:31:31 +0200307}
308
Joerg Roedeld5f1a812015-03-26 13:43:12 +0100309static void tegra_smmu_domain_free(struct iommu_domain *domain)
Hiroshi DOYU7a31f6f2011-11-17 07:31:31 +0200310{
Joerg Roedeld5f1a812015-03-26 13:43:12 +0100311 struct tegra_smmu_as *as = to_smmu_as(domain);
Hiroshi DOYU7a31f6f2011-11-17 07:31:31 +0200312
Thierry Reding89184652014-04-16 09:24:44 +0200313 /* TODO: free page directory and page tables */
314 ClearPageReserved(as->pd);
Hiroshi DOYU7a31f6f2011-11-17 07:31:31 +0200315
Thierry Reding89184652014-04-16 09:24:44 +0200316 kfree(as);
Hiroshi DOYU7a31f6f2011-11-17 07:31:31 +0200317}
318
Thierry Reding89184652014-04-16 09:24:44 +0200319static const struct tegra_smmu_swgroup *
320tegra_smmu_find_swgroup(struct tegra_smmu *smmu, unsigned int swgroup)
Hiroshi Doyu39abf8a2012-08-02 11:46:40 +0300321{
Thierry Reding89184652014-04-16 09:24:44 +0200322 const struct tegra_smmu_swgroup *group = NULL;
323 unsigned int i;
Hiroshi Doyu39abf8a2012-08-02 11:46:40 +0300324
Thierry Reding89184652014-04-16 09:24:44 +0200325 for (i = 0; i < smmu->soc->num_swgroups; i++) {
326 if (smmu->soc->swgroups[i].swgroup == swgroup) {
327 group = &smmu->soc->swgroups[i];
Hiroshi Doyu39abf8a2012-08-02 11:46:40 +0300328 break;
Hiroshi Doyu39abf8a2012-08-02 11:46:40 +0300329 }
330 }
331
Thierry Reding89184652014-04-16 09:24:44 +0200332 return group;
Hiroshi Doyu39abf8a2012-08-02 11:46:40 +0300333}
334
Thierry Reding89184652014-04-16 09:24:44 +0200335static void tegra_smmu_enable(struct tegra_smmu *smmu, unsigned int swgroup,
336 unsigned int asid)
Hiroshi DOYU7a31f6f2011-11-17 07:31:31 +0200337{
Thierry Reding89184652014-04-16 09:24:44 +0200338 const struct tegra_smmu_swgroup *group;
339 unsigned int i;
340 u32 value;
Hiroshi DOYU7a31f6f2011-11-17 07:31:31 +0200341
Thierry Reding89184652014-04-16 09:24:44 +0200342 for (i = 0; i < smmu->soc->num_clients; i++) {
343 const struct tegra_mc_client *client = &smmu->soc->clients[i];
344
345 if (client->swgroup != swgroup)
346 continue;
347
348 value = smmu_readl(smmu, client->smmu.reg);
349 value |= BIT(client->smmu.bit);
350 smmu_writel(smmu, value, client->smmu.reg);
351 }
352
353 group = tegra_smmu_find_swgroup(smmu, swgroup);
354 if (group) {
355 value = smmu_readl(smmu, group->reg);
356 value &= ~SMMU_ASID_MASK;
357 value |= SMMU_ASID_VALUE(asid);
358 value |= SMMU_ASID_ENABLE;
359 smmu_writel(smmu, value, group->reg);
360 }
Hiroshi DOYU7a31f6f2011-11-17 07:31:31 +0200361}
362
Thierry Reding89184652014-04-16 09:24:44 +0200363static void tegra_smmu_disable(struct tegra_smmu *smmu, unsigned int swgroup,
364 unsigned int asid)
Hiroshi DOYU7a31f6f2011-11-17 07:31:31 +0200365{
Thierry Reding89184652014-04-16 09:24:44 +0200366 const struct tegra_smmu_swgroup *group;
367 unsigned int i;
368 u32 value;
369
370 group = tegra_smmu_find_swgroup(smmu, swgroup);
371 if (group) {
372 value = smmu_readl(smmu, group->reg);
373 value &= ~SMMU_ASID_MASK;
374 value |= SMMU_ASID_VALUE(asid);
375 value &= ~SMMU_ASID_ENABLE;
376 smmu_writel(smmu, value, group->reg);
377 }
378
379 for (i = 0; i < smmu->soc->num_clients; i++) {
380 const struct tegra_mc_client *client = &smmu->soc->clients[i];
381
382 if (client->swgroup != swgroup)
383 continue;
384
385 value = smmu_readl(smmu, client->smmu.reg);
386 value &= ~BIT(client->smmu.bit);
387 smmu_writel(smmu, value, client->smmu.reg);
388 }
389}
390
391static int tegra_smmu_as_prepare(struct tegra_smmu *smmu,
392 struct tegra_smmu_as *as)
393{
394 u32 value;
Hiroshi Doyu0760e8f2012-06-25 14:23:55 +0300395 int err;
Hiroshi DOYU7a31f6f2011-11-17 07:31:31 +0200396
Thierry Reding89184652014-04-16 09:24:44 +0200397 if (as->use_count > 0) {
398 as->use_count++;
399 return 0;
Hiroshi DOYU7a31f6f2011-11-17 07:31:31 +0200400 }
401
Russell Kinge3c97192015-07-27 13:29:52 +0100402 as->pd_dma = dma_map_page(smmu->dev, as->pd, 0, SMMU_SIZE_PD,
403 DMA_TO_DEVICE);
404 if (dma_mapping_error(smmu->dev, as->pd_dma))
405 return -ENOMEM;
406
407 /* We can't handle 64-bit DMA addresses */
408 if (!smmu_dma_addr_valid(smmu, as->pd_dma)) {
409 err = -ENOMEM;
410 goto err_unmap;
411 }
412
Thierry Reding89184652014-04-16 09:24:44 +0200413 err = tegra_smmu_alloc_asid(smmu, &as->id);
414 if (err < 0)
Russell Kinge3c97192015-07-27 13:29:52 +0100415 goto err_unmap;
Hiroshi DOYU7a31f6f2011-11-17 07:31:31 +0200416
Russell Kinge3c97192015-07-27 13:29:52 +0100417 smmu_flush_ptc(smmu, as->pd_dma, 0);
Thierry Reding89184652014-04-16 09:24:44 +0200418 smmu_flush_tlb_asid(smmu, as->id);
419
420 smmu_writel(smmu, as->id & 0x7f, SMMU_PTB_ASID);
Russell Kinge3c97192015-07-27 13:29:52 +0100421 value = SMMU_PTB_DATA_VALUE(as->pd_dma, as->attr);
Thierry Reding89184652014-04-16 09:24:44 +0200422 smmu_writel(smmu, value, SMMU_PTB_DATA);
423 smmu_flush(smmu);
424
425 as->smmu = smmu;
426 as->use_count++;
427
428 return 0;
Russell Kinge3c97192015-07-27 13:29:52 +0100429
430err_unmap:
431 dma_unmap_page(smmu->dev, as->pd_dma, SMMU_SIZE_PD, DMA_TO_DEVICE);
432 return err;
Thierry Reding89184652014-04-16 09:24:44 +0200433}
434
435static void tegra_smmu_as_unprepare(struct tegra_smmu *smmu,
436 struct tegra_smmu_as *as)
437{
438 if (--as->use_count > 0)
439 return;
440
441 tegra_smmu_free_asid(smmu, as->id);
Russell Kinge3c97192015-07-27 13:29:52 +0100442
443 dma_unmap_page(smmu->dev, as->pd_dma, SMMU_SIZE_PD, DMA_TO_DEVICE);
444
Thierry Reding89184652014-04-16 09:24:44 +0200445 as->smmu = NULL;
446}
447
448static int tegra_smmu_attach_dev(struct iommu_domain *domain,
449 struct device *dev)
450{
451 struct tegra_smmu *smmu = dev->archdata.iommu;
Joerg Roedeld5f1a812015-03-26 13:43:12 +0100452 struct tegra_smmu_as *as = to_smmu_as(domain);
Thierry Reding89184652014-04-16 09:24:44 +0200453 struct device_node *np = dev->of_node;
454 struct of_phandle_args args;
455 unsigned int index = 0;
456 int err = 0;
457
458 while (!of_parse_phandle_with_args(np, "iommus", "#iommu-cells", index,
459 &args)) {
460 unsigned int swgroup = args.args[0];
461
462 if (args.np != smmu->dev->of_node) {
463 of_node_put(args.np);
464 continue;
465 }
466
467 of_node_put(args.np);
468
469 err = tegra_smmu_as_prepare(smmu, as);
470 if (err < 0)
471 return err;
472
473 tegra_smmu_enable(smmu, swgroup, as->id);
474 index++;
475 }
476
477 if (index == 0)
478 return -ENODEV;
479
480 return 0;
481}
482
483static void tegra_smmu_detach_dev(struct iommu_domain *domain, struct device *dev)
484{
Joerg Roedeld5f1a812015-03-26 13:43:12 +0100485 struct tegra_smmu_as *as = to_smmu_as(domain);
Thierry Reding89184652014-04-16 09:24:44 +0200486 struct device_node *np = dev->of_node;
487 struct tegra_smmu *smmu = as->smmu;
488 struct of_phandle_args args;
489 unsigned int index = 0;
490
491 while (!of_parse_phandle_with_args(np, "iommus", "#iommu-cells", index,
492 &args)) {
493 unsigned int swgroup = args.args[0];
494
495 if (args.np != smmu->dev->of_node) {
496 of_node_put(args.np);
497 continue;
498 }
499
500 of_node_put(args.np);
501
502 tegra_smmu_disable(smmu, swgroup, as->id);
503 tegra_smmu_as_unprepare(smmu, as);
504 index++;
505 }
506}
507
Russell King0b42c7c2015-07-27 13:29:21 +0100508static u32 *tegra_smmu_pte_offset(struct page *pt_page, unsigned long iova)
509{
510 u32 *pt = page_address(pt_page);
511
512 return pt + iova_pt_index(iova);
513}
514
515static u32 *tegra_smmu_pte_lookup(struct tegra_smmu_as *as, unsigned long iova,
Russell Kinge3c97192015-07-27 13:29:52 +0100516 dma_addr_t *dmap)
Russell King0b42c7c2015-07-27 13:29:21 +0100517{
518 unsigned int pd_index = iova_pd_index(iova);
519 struct page *pt_page;
Russell Kinge3c97192015-07-27 13:29:52 +0100520 u32 *pd;
Russell King0b42c7c2015-07-27 13:29:21 +0100521
Russell King853520f2015-07-27 13:29:26 +0100522 pt_page = as->pts[pd_index];
523 if (!pt_page)
Russell King0b42c7c2015-07-27 13:29:21 +0100524 return NULL;
525
Russell Kinge3c97192015-07-27 13:29:52 +0100526 pd = page_address(as->pd);
527 *dmap = smmu_pde_to_dma(pd[pd_index]);
Russell King0b42c7c2015-07-27 13:29:21 +0100528
529 return tegra_smmu_pte_offset(pt_page, iova);
530}
531
Thierry Reding89184652014-04-16 09:24:44 +0200532static u32 *as_get_pte(struct tegra_smmu_as *as, dma_addr_t iova,
Russell Kinge3c97192015-07-27 13:29:52 +0100533 dma_addr_t *dmap)
Thierry Reding89184652014-04-16 09:24:44 +0200534{
Russell King32924c72015-07-27 13:29:31 +0100535 u32 *pd = page_address(as->pd), *pt;
Russell King34d35f82015-07-27 13:29:16 +0100536 unsigned int pde = iova_pd_index(iova);
Thierry Reding89184652014-04-16 09:24:44 +0200537 struct tegra_smmu *smmu = as->smmu;
Thierry Reding89184652014-04-16 09:24:44 +0200538 unsigned int i;
539
Russell King853520f2015-07-27 13:29:26 +0100540 if (!as->pts[pde]) {
Russell Kinge3c97192015-07-27 13:29:52 +0100541 struct page *page;
542 dma_addr_t dma;
543
Thierry Reding89184652014-04-16 09:24:44 +0200544 page = alloc_page(GFP_KERNEL | __GFP_DMA);
545 if (!page)
546 return NULL;
547
548 pt = page_address(page);
Thierry Reding89184652014-04-16 09:24:44 +0200549
550 for (i = 0; i < SMMU_NUM_PTE; i++)
551 pt[i] = 0;
552
Russell Kinge3c97192015-07-27 13:29:52 +0100553 dma = dma_map_page(smmu->dev, page, 0, SMMU_SIZE_PT,
554 DMA_TO_DEVICE);
555 if (dma_mapping_error(smmu->dev, dma)) {
556 __free_page(page);
557 return NULL;
558 }
559
560 if (!smmu_dma_addr_valid(smmu, dma)) {
561 dma_unmap_page(smmu->dev, dma, SMMU_SIZE_PT,
562 DMA_TO_DEVICE);
563 __free_page(page);
564 return NULL;
565 }
566
Russell King853520f2015-07-27 13:29:26 +0100567 as->pts[pde] = page;
568
Russell Kinge3c97192015-07-27 13:29:52 +0100569 SetPageReserved(page);
Thierry Reding89184652014-04-16 09:24:44 +0200570
Russell Kinge3c97192015-07-27 13:29:52 +0100571 pd[pde] = SMMU_MK_PDE(dma, SMMU_PDE_ATTR | SMMU_PDE_NEXT);
Thierry Reding89184652014-04-16 09:24:44 +0200572
Russell Kinge3c97192015-07-27 13:29:52 +0100573 dma_sync_single_range_for_device(smmu->dev, as->pd_dma,
574 pde << 2, 4, DMA_TO_DEVICE);
575 smmu_flush_ptc(smmu, as->pd_dma, pde << 2);
Thierry Reding89184652014-04-16 09:24:44 +0200576 smmu_flush_tlb_section(smmu, as->id, iova);
577 smmu_flush(smmu);
Russell Kinge3c97192015-07-27 13:29:52 +0100578
579 *dmap = dma;
Thierry Reding89184652014-04-16 09:24:44 +0200580 } else {
Russell Kinge3c97192015-07-27 13:29:52 +0100581 *dmap = smmu_pde_to_dma(pd[pde]);
Thierry Reding89184652014-04-16 09:24:44 +0200582 }
583
Russell Kinge3c97192015-07-27 13:29:52 +0100584 pt = tegra_smmu_pte_offset(as->pts[pde], iova);
Russell King0b42c7c2015-07-27 13:29:21 +0100585
Thierry Reding89184652014-04-16 09:24:44 +0200586 /* Keep track of entries in this page table. */
Russell Kinge3c97192015-07-27 13:29:52 +0100587 if (*pt == 0)
Russell King32924c72015-07-27 13:29:31 +0100588 as->count[pde]++;
Thierry Reding89184652014-04-16 09:24:44 +0200589
Russell Kinge3c97192015-07-27 13:29:52 +0100590 return pt;
Thierry Reding89184652014-04-16 09:24:44 +0200591}
592
Russell Kingb98e34f2015-07-27 13:29:05 +0100593static void tegra_smmu_pte_put_use(struct tegra_smmu_as *as, unsigned long iova)
Thierry Reding89184652014-04-16 09:24:44 +0200594{
Russell Kingb98e34f2015-07-27 13:29:05 +0100595 struct tegra_smmu *smmu = as->smmu;
Russell King34d35f82015-07-27 13:29:16 +0100596 unsigned int pde = iova_pd_index(iova);
Russell Kingb98e34f2015-07-27 13:29:05 +0100597 u32 *pd = page_address(as->pd);
Russell King853520f2015-07-27 13:29:26 +0100598 struct page *page = as->pts[pde];
Thierry Reding89184652014-04-16 09:24:44 +0200599
600 /*
601 * When no entries in this page table are used anymore, return the
602 * memory page to the system.
603 */
Russell King32924c72015-07-27 13:29:31 +0100604 if (--as->count[pde] == 0) {
Russell Kingb98e34f2015-07-27 13:29:05 +0100605 unsigned int offset = pde * sizeof(*pd);
Russell Kinge3c97192015-07-27 13:29:52 +0100606 dma_addr_t pte_dma = smmu_pde_to_dma(pd[pde]);
Thierry Reding89184652014-04-16 09:24:44 +0200607
Russell Kingb98e34f2015-07-27 13:29:05 +0100608 /* Clear the page directory entry first */
609 pd[pde] = 0;
610
611 /* Flush the page directory entry */
Russell Kinge3c97192015-07-27 13:29:52 +0100612 dma_sync_single_range_for_device(smmu->dev, as->pd_dma, offset,
613 sizeof(*pd), DMA_TO_DEVICE);
614 smmu_flush_ptc(smmu, as->pd_dma, offset);
Russell Kingb98e34f2015-07-27 13:29:05 +0100615 smmu_flush_tlb_section(smmu, as->id, iova);
616 smmu_flush(smmu);
617
618 /* Finally, free the page */
Russell Kinge3c97192015-07-27 13:29:52 +0100619 dma_unmap_page(smmu->dev, pte_dma, SMMU_SIZE_PT, DMA_TO_DEVICE);
Russell Kingb98e34f2015-07-27 13:29:05 +0100620 ClearPageReserved(page);
621 __free_page(page);
Russell King853520f2015-07-27 13:29:26 +0100622 as->pts[pde] = NULL;
Thierry Reding89184652014-04-16 09:24:44 +0200623 }
624}
625
Russell King8482ee52015-07-27 13:29:10 +0100626static void tegra_smmu_set_pte(struct tegra_smmu_as *as, unsigned long iova,
Russell Kinge3c97192015-07-27 13:29:52 +0100627 u32 *pte, dma_addr_t pte_dma, u32 val)
Russell King8482ee52015-07-27 13:29:10 +0100628{
629 struct tegra_smmu *smmu = as->smmu;
630 unsigned long offset = offset_in_page(pte);
631
632 *pte = val;
633
Russell Kinge3c97192015-07-27 13:29:52 +0100634 dma_sync_single_range_for_device(smmu->dev, pte_dma, offset,
635 4, DMA_TO_DEVICE);
636 smmu_flush_ptc(smmu, pte_dma, offset);
Russell King8482ee52015-07-27 13:29:10 +0100637 smmu_flush_tlb_group(smmu, as->id, iova);
638 smmu_flush(smmu);
639}
640
Thierry Reding89184652014-04-16 09:24:44 +0200641static int tegra_smmu_map(struct iommu_domain *domain, unsigned long iova,
642 phys_addr_t paddr, size_t size, int prot)
643{
Joerg Roedeld5f1a812015-03-26 13:43:12 +0100644 struct tegra_smmu_as *as = to_smmu_as(domain);
Russell Kinge3c97192015-07-27 13:29:52 +0100645 dma_addr_t pte_dma;
Thierry Reding89184652014-04-16 09:24:44 +0200646 u32 *pte;
647
Russell Kinge3c97192015-07-27 13:29:52 +0100648 pte = as_get_pte(as, iova, &pte_dma);
Thierry Reding89184652014-04-16 09:24:44 +0200649 if (!pte)
Hiroshi Doyu0547c2f2012-06-25 14:23:57 +0300650 return -ENOMEM;
Hiroshi DOYU7a31f6f2011-11-17 07:31:31 +0200651
Russell Kinge3c97192015-07-27 13:29:52 +0100652 tegra_smmu_set_pte(as, iova, pte, pte_dma,
Russell King8482ee52015-07-27 13:29:10 +0100653 __phys_to_pfn(paddr) | SMMU_PTE_ATTR);
Thierry Reding89184652014-04-16 09:24:44 +0200654
Hiroshi DOYU7a31f6f2011-11-17 07:31:31 +0200655 return 0;
Hiroshi DOYU7a31f6f2011-11-17 07:31:31 +0200656}
657
Thierry Reding89184652014-04-16 09:24:44 +0200658static size_t tegra_smmu_unmap(struct iommu_domain *domain, unsigned long iova,
659 size_t size)
Hiroshi DOYU7a31f6f2011-11-17 07:31:31 +0200660{
Joerg Roedeld5f1a812015-03-26 13:43:12 +0100661 struct tegra_smmu_as *as = to_smmu_as(domain);
Russell Kinge3c97192015-07-27 13:29:52 +0100662 dma_addr_t pte_dma;
Thierry Reding89184652014-04-16 09:24:44 +0200663 u32 *pte;
Hiroshi DOYU7a31f6f2011-11-17 07:31:31 +0200664
Russell Kinge3c97192015-07-27 13:29:52 +0100665 pte = tegra_smmu_pte_lookup(as, iova, &pte_dma);
Russell Kingb98e34f2015-07-27 13:29:05 +0100666 if (!pte || !*pte)
Thierry Reding89184652014-04-16 09:24:44 +0200667 return 0;
Hiroshi Doyu39abf8a2012-08-02 11:46:40 +0300668
Russell Kinge3c97192015-07-27 13:29:52 +0100669 tegra_smmu_set_pte(as, iova, pte, pte_dma, 0);
Russell Kingb98e34f2015-07-27 13:29:05 +0100670 tegra_smmu_pte_put_use(as, iova);
671
Thierry Reding89184652014-04-16 09:24:44 +0200672 return size;
673}
674
675static phys_addr_t tegra_smmu_iova_to_phys(struct iommu_domain *domain,
676 dma_addr_t iova)
677{
Joerg Roedeld5f1a812015-03-26 13:43:12 +0100678 struct tegra_smmu_as *as = to_smmu_as(domain);
Thierry Reding89184652014-04-16 09:24:44 +0200679 unsigned long pfn;
Russell Kinge3c97192015-07-27 13:29:52 +0100680 dma_addr_t pte_dma;
Thierry Reding89184652014-04-16 09:24:44 +0200681 u32 *pte;
682
Russell Kinge3c97192015-07-27 13:29:52 +0100683 pte = tegra_smmu_pte_lookup(as, iova, &pte_dma);
Russell King91137852015-07-27 13:29:00 +0100684 if (!pte || !*pte)
685 return 0;
686
Thierry Reding804cb542015-03-27 11:07:27 +0100687 pfn = *pte & as->smmu->pfn_mask;
Thierry Reding89184652014-04-16 09:24:44 +0200688
689 return PFN_PHYS(pfn);
690}
691
692static struct tegra_smmu *tegra_smmu_find(struct device_node *np)
693{
694 struct platform_device *pdev;
695 struct tegra_mc *mc;
696
697 pdev = of_find_device_by_node(np);
698 if (!pdev)
699 return NULL;
700
701 mc = platform_get_drvdata(pdev);
702 if (!mc)
703 return NULL;
704
705 return mc->smmu;
706}
707
708static int tegra_smmu_add_device(struct device *dev)
709{
710 struct device_node *np = dev->of_node;
711 struct of_phandle_args args;
712 unsigned int index = 0;
713
714 while (of_parse_phandle_with_args(np, "iommus", "#iommu-cells", index,
715 &args) == 0) {
716 struct tegra_smmu *smmu;
717
718 smmu = tegra_smmu_find(args.np);
719 if (smmu) {
720 /*
721 * Only a single IOMMU master interface is currently
722 * supported by the Linux kernel, so abort after the
723 * first match.
724 */
725 dev->archdata.iommu = smmu;
726 break;
727 }
728
729 index++;
730 }
731
Hiroshi DOYU7a31f6f2011-11-17 07:31:31 +0200732 return 0;
733}
734
Thierry Reding89184652014-04-16 09:24:44 +0200735static void tegra_smmu_remove_device(struct device *dev)
Hiroshi DOYU7a31f6f2011-11-17 07:31:31 +0200736{
Thierry Reding89184652014-04-16 09:24:44 +0200737 dev->archdata.iommu = NULL;
Hiroshi DOYU7a31f6f2011-11-17 07:31:31 +0200738}
739
Thierry Reding89184652014-04-16 09:24:44 +0200740static const struct iommu_ops tegra_smmu_ops = {
741 .capable = tegra_smmu_capable,
Joerg Roedeld5f1a812015-03-26 13:43:12 +0100742 .domain_alloc = tegra_smmu_domain_alloc,
743 .domain_free = tegra_smmu_domain_free,
Thierry Reding89184652014-04-16 09:24:44 +0200744 .attach_dev = tegra_smmu_attach_dev,
745 .detach_dev = tegra_smmu_detach_dev,
746 .add_device = tegra_smmu_add_device,
747 .remove_device = tegra_smmu_remove_device,
748 .map = tegra_smmu_map,
749 .unmap = tegra_smmu_unmap,
750 .map_sg = default_iommu_map_sg,
751 .iova_to_phys = tegra_smmu_iova_to_phys,
752
753 .pgsize_bitmap = SZ_4K,
754};
755
756static void tegra_smmu_ahb_enable(void)
Hiroshi DOYU7a31f6f2011-11-17 07:31:31 +0200757{
Thierry Reding89184652014-04-16 09:24:44 +0200758 static const struct of_device_id ahb_match[] = {
759 { .compatible = "nvidia,tegra30-ahb", },
760 { }
761 };
762 struct device_node *ahb;
763
764 ahb = of_find_matching_node(NULL, ahb_match);
765 if (ahb) {
766 tegra_ahb_enable_smmu(ahb);
767 of_node_put(ahb);
768 }
Hiroshi DOYU7a31f6f2011-11-17 07:31:31 +0200769}
770
Thierry Redingd1313e72015-01-23 09:49:25 +0100771static int tegra_smmu_swgroups_show(struct seq_file *s, void *data)
772{
773 struct tegra_smmu *smmu = s->private;
774 unsigned int i;
775 u32 value;
776
777 seq_printf(s, "swgroup enabled ASID\n");
778 seq_printf(s, "------------------------\n");
779
780 for (i = 0; i < smmu->soc->num_swgroups; i++) {
781 const struct tegra_smmu_swgroup *group = &smmu->soc->swgroups[i];
782 const char *status;
783 unsigned int asid;
784
785 value = smmu_readl(smmu, group->reg);
786
787 if (value & SMMU_ASID_ENABLE)
788 status = "yes";
789 else
790 status = "no";
791
792 asid = value & SMMU_ASID_MASK;
793
794 seq_printf(s, "%-9s %-7s %#04x\n", group->name, status,
795 asid);
796 }
797
798 return 0;
799}
800
801static int tegra_smmu_swgroups_open(struct inode *inode, struct file *file)
802{
803 return single_open(file, tegra_smmu_swgroups_show, inode->i_private);
804}
805
806static const struct file_operations tegra_smmu_swgroups_fops = {
807 .open = tegra_smmu_swgroups_open,
808 .read = seq_read,
809 .llseek = seq_lseek,
810 .release = single_release,
811};
812
813static int tegra_smmu_clients_show(struct seq_file *s, void *data)
814{
815 struct tegra_smmu *smmu = s->private;
816 unsigned int i;
817 u32 value;
818
819 seq_printf(s, "client enabled\n");
820 seq_printf(s, "--------------------\n");
821
822 for (i = 0; i < smmu->soc->num_clients; i++) {
823 const struct tegra_mc_client *client = &smmu->soc->clients[i];
824 const char *status;
825
826 value = smmu_readl(smmu, client->smmu.reg);
827
828 if (value & BIT(client->smmu.bit))
829 status = "yes";
830 else
831 status = "no";
832
833 seq_printf(s, "%-12s %s\n", client->name, status);
834 }
835
836 return 0;
837}
838
839static int tegra_smmu_clients_open(struct inode *inode, struct file *file)
840{
841 return single_open(file, tegra_smmu_clients_show, inode->i_private);
842}
843
844static const struct file_operations tegra_smmu_clients_fops = {
845 .open = tegra_smmu_clients_open,
846 .read = seq_read,
847 .llseek = seq_lseek,
848 .release = single_release,
849};
850
851static void tegra_smmu_debugfs_init(struct tegra_smmu *smmu)
852{
853 smmu->debugfs = debugfs_create_dir("smmu", NULL);
854 if (!smmu->debugfs)
855 return;
856
857 debugfs_create_file("swgroups", S_IRUGO, smmu->debugfs, smmu,
858 &tegra_smmu_swgroups_fops);
859 debugfs_create_file("clients", S_IRUGO, smmu->debugfs, smmu,
860 &tegra_smmu_clients_fops);
861}
862
863static void tegra_smmu_debugfs_exit(struct tegra_smmu *smmu)
864{
865 debugfs_remove_recursive(smmu->debugfs);
866}
867
Thierry Reding89184652014-04-16 09:24:44 +0200868struct tegra_smmu *tegra_smmu_probe(struct device *dev,
869 const struct tegra_smmu_soc *soc,
870 struct tegra_mc *mc)
871{
872 struct tegra_smmu *smmu;
873 size_t size;
874 u32 value;
875 int err;
Hiroshi DOYU7a31f6f2011-11-17 07:31:31 +0200876
Thierry Reding89184652014-04-16 09:24:44 +0200877 /* This can happen on Tegra20 which doesn't have an SMMU */
878 if (!soc)
879 return NULL;
880
881 smmu = devm_kzalloc(dev, sizeof(*smmu), GFP_KERNEL);
882 if (!smmu)
883 return ERR_PTR(-ENOMEM);
884
885 /*
886 * This is a bit of a hack. Ideally we'd want to simply return this
887 * value. However the IOMMU registration process will attempt to add
888 * all devices to the IOMMU when bus_set_iommu() is called. In order
889 * not to rely on global variables to track the IOMMU instance, we
890 * set it here so that it can be looked up from the .add_device()
891 * callback via the IOMMU device's .drvdata field.
892 */
893 mc->smmu = smmu;
894
895 size = BITS_TO_LONGS(soc->num_asids) * sizeof(long);
896
897 smmu->asids = devm_kzalloc(dev, size, GFP_KERNEL);
898 if (!smmu->asids)
899 return ERR_PTR(-ENOMEM);
900
901 mutex_init(&smmu->lock);
902
903 smmu->regs = mc->regs;
904 smmu->soc = soc;
905 smmu->dev = dev;
906 smmu->mc = mc;
907
Thierry Reding804cb542015-03-27 11:07:27 +0100908 smmu->pfn_mask = BIT_MASK(mc->soc->num_address_bits - PAGE_SHIFT) - 1;
909 dev_dbg(dev, "address bits: %u, PFN mask: %#lx\n",
910 mc->soc->num_address_bits, smmu->pfn_mask);
911
Thierry Reding89184652014-04-16 09:24:44 +0200912 value = SMMU_PTC_CONFIG_ENABLE | SMMU_PTC_CONFIG_INDEX_MAP(0x3f);
913
914 if (soc->supports_request_limit)
915 value |= SMMU_PTC_CONFIG_REQ_LIMIT(8);
916
917 smmu_writel(smmu, value, SMMU_PTC_CONFIG);
918
919 value = SMMU_TLB_CONFIG_HIT_UNDER_MISS |
920 SMMU_TLB_CONFIG_ACTIVE_LINES(0x20);
921
922 if (soc->supports_round_robin_arbitration)
923 value |= SMMU_TLB_CONFIG_ROUND_ROBIN_ARBITRATION;
924
925 smmu_writel(smmu, value, SMMU_TLB_CONFIG);
926
Russell Kingb8fe0382015-07-27 13:29:41 +0100927 smmu_flush_ptc_all(smmu);
Thierry Reding89184652014-04-16 09:24:44 +0200928 smmu_flush_tlb(smmu);
929 smmu_writel(smmu, SMMU_CONFIG_ENABLE, SMMU_CONFIG);
930 smmu_flush(smmu);
931
932 tegra_smmu_ahb_enable();
933
934 err = bus_set_iommu(&platform_bus_type, &tegra_smmu_ops);
935 if (err < 0)
936 return ERR_PTR(err);
937
Thierry Redingd1313e72015-01-23 09:49:25 +0100938 if (IS_ENABLED(CONFIG_DEBUG_FS))
939 tegra_smmu_debugfs_init(smmu);
940
Thierry Reding89184652014-04-16 09:24:44 +0200941 return smmu;
942}
Thierry Redingd1313e72015-01-23 09:49:25 +0100943
944void tegra_smmu_remove(struct tegra_smmu *smmu)
945{
946 if (IS_ENABLED(CONFIG_DEBUG_FS))
947 tegra_smmu_debugfs_exit(smmu);
948}