blob: 03f35065acff81dfb7c8095e52be194b17ed7188 [file] [log] [blame]
Thomas Gleixnercaab2772019-06-03 07:44:50 +02001// SPDX-License-Identifier: GPL-2.0-only
Robin Murphye5fc9752016-01-26 17:13:13 +00002/*
3 * CPU-agnostic ARM page table allocator.
4 *
5 * ARMv7 Short-descriptor format, supporting
6 * - Basic memory attributes
7 * - Simplified access permissions (AP[2:1] model)
8 * - Backwards-compatible TEX remap
9 * - Large pages/supersections (if indicated by the caller)
10 *
11 * Not supporting:
12 * - Legacy access permissions (AP[2:0] model)
13 *
14 * Almost certainly never supporting:
15 * - PXN
16 * - Domains
17 *
Robin Murphye5fc9752016-01-26 17:13:13 +000018 * Copyright (C) 2014-2015 ARM Limited
19 * Copyright (c) 2014-2015 MediaTek Inc.
20 */
21
22#define pr_fmt(fmt) "arm-v7s io-pgtable: " fmt
23
Robin Murphy119ff302017-06-22 16:53:55 +010024#include <linux/atomic.h>
Robin Murphye5fc9752016-01-26 17:13:13 +000025#include <linux/dma-mapping.h>
26#include <linux/gfp.h>
Rob Herringb77cf112019-02-05 10:37:31 -060027#include <linux/io-pgtable.h>
Robin Murphye5fc9752016-01-26 17:13:13 +000028#include <linux/iommu.h>
29#include <linux/kernel.h>
30#include <linux/kmemleak.h>
31#include <linux/sizes.h>
32#include <linux/slab.h>
Robin Murphy119ff302017-06-22 16:53:55 +010033#include <linux/spinlock.h>
Robin Murphye5fc9752016-01-26 17:13:13 +000034#include <linux/types.h>
35
36#include <asm/barrier.h>
37
Robin Murphye5fc9752016-01-26 17:13:13 +000038/* Struct accessors */
39#define io_pgtable_to_data(x) \
40 container_of((x), struct arm_v7s_io_pgtable, iop)
41
42#define io_pgtable_ops_to_data(x) \
43 io_pgtable_to_data(io_pgtable_ops_to_pgtable(x))
44
45/*
46 * We have 32 bits total; 12 bits resolved at level 1, 8 bits at level 2,
47 * and 12 bits in a page. With some carefully-chosen coefficients we can
48 * hide the ugly inconsistencies behind these macros and at least let the
49 * rest of the code pretend to be somewhat sane.
50 */
51#define ARM_V7S_ADDR_BITS 32
52#define _ARM_V7S_LVL_BITS(lvl) (16 - (lvl) * 4)
53#define ARM_V7S_LVL_SHIFT(lvl) (ARM_V7S_ADDR_BITS - (4 + 8 * (lvl)))
54#define ARM_V7S_TABLE_SHIFT 10
55
56#define ARM_V7S_PTES_PER_LVL(lvl) (1 << _ARM_V7S_LVL_BITS(lvl))
57#define ARM_V7S_TABLE_SIZE(lvl) \
58 (ARM_V7S_PTES_PER_LVL(lvl) * sizeof(arm_v7s_iopte))
59
60#define ARM_V7S_BLOCK_SIZE(lvl) (1UL << ARM_V7S_LVL_SHIFT(lvl))
61#define ARM_V7S_LVL_MASK(lvl) ((u32)(~0U << ARM_V7S_LVL_SHIFT(lvl)))
62#define ARM_V7S_TABLE_MASK ((u32)(~0U << ARM_V7S_TABLE_SHIFT))
63#define _ARM_V7S_IDX_MASK(lvl) (ARM_V7S_PTES_PER_LVL(lvl) - 1)
64#define ARM_V7S_LVL_IDX(addr, lvl) ({ \
65 int _l = lvl; \
66 ((u32)(addr) >> ARM_V7S_LVL_SHIFT(_l)) & _ARM_V7S_IDX_MASK(_l); \
67})
68
69/*
70 * Large page/supersection entries are effectively a block of 16 page/section
71 * entries, along the lines of the LPAE contiguous hint, but all with the
72 * same output address. For want of a better common name we'll call them
73 * "contiguous" versions of their respective page/section entries here, but
74 * noting the distinction (WRT to TLB maintenance) that they represent *one*
75 * entry repeated 16 times, not 16 separate entries (as in the LPAE case).
76 */
77#define ARM_V7S_CONT_PAGES 16
78
79/* PTE type bits: these are all mixed up with XN/PXN bits in most cases */
80#define ARM_V7S_PTE_TYPE_TABLE 0x1
81#define ARM_V7S_PTE_TYPE_PAGE 0x2
82#define ARM_V7S_PTE_TYPE_CONT_PAGE 0x1
83
84#define ARM_V7S_PTE_IS_VALID(pte) (((pte) & 0x3) != 0)
Robin Murphy9db829d2017-06-22 16:53:50 +010085#define ARM_V7S_PTE_IS_TABLE(pte, lvl) \
86 ((lvl) == 1 && (((pte) & 0x3) == ARM_V7S_PTE_TYPE_TABLE))
Robin Murphye5fc9752016-01-26 17:13:13 +000087
88/* Page table bits */
89#define ARM_V7S_ATTR_XN(lvl) BIT(4 * (2 - (lvl)))
90#define ARM_V7S_ATTR_B BIT(2)
91#define ARM_V7S_ATTR_C BIT(3)
92#define ARM_V7S_ATTR_NS_TABLE BIT(3)
93#define ARM_V7S_ATTR_NS_SECTION BIT(19)
94
95#define ARM_V7S_CONT_SECTION BIT(18)
96#define ARM_V7S_CONT_PAGE_XN_SHIFT 15
97
98/*
99 * The attribute bits are consistently ordered*, but occupy bits [17:10] of
100 * a level 1 PTE vs. bits [11:4] at level 2. Thus we define the individual
101 * fields relative to that 8-bit block, plus a total shift relative to the PTE.
102 */
103#define ARM_V7S_ATTR_SHIFT(lvl) (16 - (lvl) * 6)
104
105#define ARM_V7S_ATTR_MASK 0xff
106#define ARM_V7S_ATTR_AP0 BIT(0)
107#define ARM_V7S_ATTR_AP1 BIT(1)
108#define ARM_V7S_ATTR_AP2 BIT(5)
109#define ARM_V7S_ATTR_S BIT(6)
110#define ARM_V7S_ATTR_NG BIT(7)
111#define ARM_V7S_TEX_SHIFT 2
112#define ARM_V7S_TEX_MASK 0x7
113#define ARM_V7S_ATTR_TEX(val) (((val) & ARM_V7S_TEX_MASK) << ARM_V7S_TEX_SHIFT)
114
Yong Wu4c019de2019-08-24 11:01:54 +0800115/* MediaTek extend the two bits for PA 32bit/33bit */
116#define ARM_V7S_ATTR_MTK_PA_BIT32 BIT(9)
117#define ARM_V7S_ATTR_MTK_PA_BIT33 BIT(4)
Yong Wu1afe2312016-03-14 06:01:10 +0800118
Robin Murphye5fc9752016-01-26 17:13:13 +0000119/* *well, except for TEX on level 2 large pages, of course :( */
120#define ARM_V7S_CONT_PAGE_TEX_SHIFT 6
121#define ARM_V7S_CONT_PAGE_TEX_MASK (ARM_V7S_TEX_MASK << ARM_V7S_CONT_PAGE_TEX_SHIFT)
122
123/* Simplified access permissions */
124#define ARM_V7S_PTE_AF ARM_V7S_ATTR_AP0
125#define ARM_V7S_PTE_AP_UNPRIV ARM_V7S_ATTR_AP1
126#define ARM_V7S_PTE_AP_RDONLY ARM_V7S_ATTR_AP2
127
128/* Register bits */
129#define ARM_V7S_RGN_NC 0
130#define ARM_V7S_RGN_WBWA 1
131#define ARM_V7S_RGN_WT 2
132#define ARM_V7S_RGN_WB 3
133
134#define ARM_V7S_PRRR_TYPE_DEVICE 1
135#define ARM_V7S_PRRR_TYPE_NORMAL 2
136#define ARM_V7S_PRRR_TR(n, type) (((type) & 0x3) << ((n) * 2))
137#define ARM_V7S_PRRR_DS0 BIT(16)
138#define ARM_V7S_PRRR_DS1 BIT(17)
139#define ARM_V7S_PRRR_NS0 BIT(18)
140#define ARM_V7S_PRRR_NS1 BIT(19)
141#define ARM_V7S_PRRR_NOS(n) BIT((n) + 24)
142
143#define ARM_V7S_NMRR_IR(n, attr) (((attr) & 0x3) << ((n) * 2))
144#define ARM_V7S_NMRR_OR(n, attr) (((attr) & 0x3) << ((n) * 2 + 16))
145
146#define ARM_V7S_TTBR_S BIT(1)
147#define ARM_V7S_TTBR_NOS BIT(5)
148#define ARM_V7S_TTBR_ORGN_ATTR(attr) (((attr) & 0x3) << 3)
149#define ARM_V7S_TTBR_IRGN_ATTR(attr) \
150 ((((attr) & 0x1) << 6) | (((attr) & 0x2) >> 1))
151
Nicolas Boichat0a352552019-03-28 20:43:46 -0700152#ifdef CONFIG_ZONE_DMA32
153#define ARM_V7S_TABLE_GFP_DMA GFP_DMA32
154#define ARM_V7S_TABLE_SLAB_FLAGS SLAB_CACHE_DMA32
155#else
156#define ARM_V7S_TABLE_GFP_DMA GFP_DMA
157#define ARM_V7S_TABLE_SLAB_FLAGS SLAB_CACHE_DMA
158#endif
159
Robin Murphye5fc9752016-01-26 17:13:13 +0000160typedef u32 arm_v7s_iopte;
161
162static bool selftest_running;
163
164struct arm_v7s_io_pgtable {
165 struct io_pgtable iop;
166
167 arm_v7s_iopte *pgd;
168 struct kmem_cache *l2_tables;
Robin Murphy119ff302017-06-22 16:53:55 +0100169 spinlock_t split_lock;
Robin Murphye5fc9752016-01-26 17:13:13 +0000170};
171
Yong Wu5950b952019-08-24 11:01:51 +0800172static bool arm_v7s_pte_is_cont(arm_v7s_iopte pte, int lvl);
173
Robin Murphye5fc9752016-01-26 17:13:13 +0000174static dma_addr_t __arm_v7s_dma_addr(void *pages)
175{
176 return (dma_addr_t)virt_to_phys(pages);
177}
178
Yong Wu4c019de2019-08-24 11:01:54 +0800179static bool arm_v7s_is_mtk_enabled(struct io_pgtable_cfg *cfg)
180{
181 return IS_ENABLED(CONFIG_PHYS_ADDR_T_64BIT) &&
182 (cfg->quirks & IO_PGTABLE_QUIRK_ARM_MTK_EXT);
183}
184
Yong Wu5950b952019-08-24 11:01:51 +0800185static arm_v7s_iopte paddr_to_iopte(phys_addr_t paddr, int lvl,
186 struct io_pgtable_cfg *cfg)
Robin Murphye5fc9752016-01-26 17:13:13 +0000187{
Yong Wu4c019de2019-08-24 11:01:54 +0800188 arm_v7s_iopte pte = paddr & ARM_V7S_LVL_MASK(lvl);
189
190 if (!arm_v7s_is_mtk_enabled(cfg))
191 return pte;
192
193 if (paddr & BIT_ULL(32))
194 pte |= ARM_V7S_ATTR_MTK_PA_BIT32;
195 if (paddr & BIT_ULL(33))
196 pte |= ARM_V7S_ATTR_MTK_PA_BIT33;
197 return pte;
Yong Wu5950b952019-08-24 11:01:51 +0800198}
199
200static phys_addr_t iopte_to_paddr(arm_v7s_iopte pte, int lvl,
201 struct io_pgtable_cfg *cfg)
202{
203 arm_v7s_iopte mask;
Yong Wu4c019de2019-08-24 11:01:54 +0800204 phys_addr_t paddr;
Yong Wu5950b952019-08-24 11:01:51 +0800205
Robin Murphye5fc9752016-01-26 17:13:13 +0000206 if (ARM_V7S_PTE_IS_TABLE(pte, lvl))
Yong Wu5950b952019-08-24 11:01:51 +0800207 mask = ARM_V7S_TABLE_MASK;
208 else if (arm_v7s_pte_is_cont(pte, lvl))
209 mask = ARM_V7S_LVL_MASK(lvl) * ARM_V7S_CONT_PAGES;
Robin Murphye5fc9752016-01-26 17:13:13 +0000210 else
Yong Wu5950b952019-08-24 11:01:51 +0800211 mask = ARM_V7S_LVL_MASK(lvl);
212
Yong Wu4c019de2019-08-24 11:01:54 +0800213 paddr = pte & mask;
214 if (!arm_v7s_is_mtk_enabled(cfg))
215 return paddr;
216
217 if (pte & ARM_V7S_ATTR_MTK_PA_BIT32)
218 paddr |= BIT_ULL(32);
219 if (pte & ARM_V7S_ATTR_MTK_PA_BIT33)
220 paddr |= BIT_ULL(33);
221 return paddr;
Yong Wu5950b952019-08-24 11:01:51 +0800222}
223
224static arm_v7s_iopte *iopte_deref(arm_v7s_iopte pte, int lvl,
225 struct arm_v7s_io_pgtable *data)
226{
227 return phys_to_virt(iopte_to_paddr(pte, lvl, &data->iop.cfg));
Robin Murphye5fc9752016-01-26 17:13:13 +0000228}
229
230static void *__arm_v7s_alloc_table(int lvl, gfp_t gfp,
231 struct arm_v7s_io_pgtable *data)
232{
Robin Murphy81b3c252017-06-22 16:53:53 +0100233 struct io_pgtable_cfg *cfg = &data->iop.cfg;
234 struct device *dev = cfg->iommu_dev;
Jean-Philippe Brucker29859ae2018-06-19 13:52:24 +0100235 phys_addr_t phys;
Robin Murphye5fc9752016-01-26 17:13:13 +0000236 dma_addr_t dma;
237 size_t size = ARM_V7S_TABLE_SIZE(lvl);
238 void *table = NULL;
239
240 if (lvl == 1)
Nicolas Boichat0a352552019-03-28 20:43:46 -0700241 table = (void *)__get_free_pages(
242 __GFP_ZERO | ARM_V7S_TABLE_GFP_DMA, get_order(size));
Robin Murphye5fc9752016-01-26 17:13:13 +0000243 else if (lvl == 2)
Nicolas Boichat0a352552019-03-28 20:43:46 -0700244 table = kmem_cache_zalloc(data->l2_tables, gfp);
Jean-Philippe Brucker29859ae2018-06-19 13:52:24 +0100245 phys = virt_to_phys(table);
Nicolas Boichat0a352552019-03-28 20:43:46 -0700246 if (phys != (arm_v7s_iopte)phys) {
Jean-Philippe Brucker29859ae2018-06-19 13:52:24 +0100247 /* Doesn't fit in PTE */
Nicolas Boichat0a352552019-03-28 20:43:46 -0700248 dev_err(dev, "Page table does not fit in PTE: %pa", &phys);
Jean-Philippe Brucker29859ae2018-06-19 13:52:24 +0100249 goto out_free;
Nicolas Boichat0a352552019-03-28 20:43:46 -0700250 }
Will Deacon4f418452019-06-25 12:51:25 +0100251 if (table && !cfg->coherent_walk) {
Robin Murphye5fc9752016-01-26 17:13:13 +0000252 dma = dma_map_single(dev, table, size, DMA_TO_DEVICE);
253 if (dma_mapping_error(dev, dma))
254 goto out_free;
255 /*
256 * We depend on the IOMMU being able to work with any physical
257 * address directly, so if the DMA layer suggests otherwise by
258 * translating or truncating them, that bodes very badly...
259 */
Jean-Philippe Brucker29859ae2018-06-19 13:52:24 +0100260 if (dma != phys)
Robin Murphye5fc9752016-01-26 17:13:13 +0000261 goto out_unmap;
262 }
Nicolas Boichat032ebd82019-01-28 17:43:01 +0800263 if (lvl == 2)
264 kmemleak_ignore(table);
Robin Murphye5fc9752016-01-26 17:13:13 +0000265 return table;
266
267out_unmap:
268 dev_err(dev, "Cannot accommodate DMA translation for IOMMU page tables\n");
269 dma_unmap_single(dev, dma, size, DMA_TO_DEVICE);
270out_free:
271 if (lvl == 1)
272 free_pages((unsigned long)table, get_order(size));
273 else
274 kmem_cache_free(data->l2_tables, table);
275 return NULL;
276}
277
278static void __arm_v7s_free_table(void *table, int lvl,
279 struct arm_v7s_io_pgtable *data)
280{
Robin Murphy81b3c252017-06-22 16:53:53 +0100281 struct io_pgtable_cfg *cfg = &data->iop.cfg;
282 struct device *dev = cfg->iommu_dev;
Robin Murphye5fc9752016-01-26 17:13:13 +0000283 size_t size = ARM_V7S_TABLE_SIZE(lvl);
284
Will Deacon4f418452019-06-25 12:51:25 +0100285 if (!cfg->coherent_walk)
Robin Murphye5fc9752016-01-26 17:13:13 +0000286 dma_unmap_single(dev, __arm_v7s_dma_addr(table), size,
287 DMA_TO_DEVICE);
288 if (lvl == 1)
289 free_pages((unsigned long)table, get_order(size));
290 else
291 kmem_cache_free(data->l2_tables, table);
292}
293
294static void __arm_v7s_pte_sync(arm_v7s_iopte *ptep, int num_entries,
295 struct io_pgtable_cfg *cfg)
296{
Will Deacon4f418452019-06-25 12:51:25 +0100297 if (cfg->coherent_walk)
Robin Murphye5fc9752016-01-26 17:13:13 +0000298 return;
299
300 dma_sync_single_for_device(cfg->iommu_dev, __arm_v7s_dma_addr(ptep),
301 num_entries * sizeof(*ptep), DMA_TO_DEVICE);
302}
303static void __arm_v7s_set_pte(arm_v7s_iopte *ptep, arm_v7s_iopte pte,
304 int num_entries, struct io_pgtable_cfg *cfg)
305{
306 int i;
307
308 for (i = 0; i < num_entries; i++)
309 ptep[i] = pte;
310
311 __arm_v7s_pte_sync(ptep, num_entries, cfg);
312}
313
314static arm_v7s_iopte arm_v7s_prot_to_pte(int prot, int lvl,
315 struct io_pgtable_cfg *cfg)
316{
317 bool ap = !(cfg->quirks & IO_PGTABLE_QUIRK_NO_PERMS);
Robin Murphye88ccab2016-04-05 12:39:32 +0100318 arm_v7s_iopte pte = ARM_V7S_ATTR_NG | ARM_V7S_ATTR_S;
Robin Murphye5fc9752016-01-26 17:13:13 +0000319
Robin Murphye88ccab2016-04-05 12:39:32 +0100320 if (!(prot & IOMMU_MMIO))
321 pte |= ARM_V7S_ATTR_TEX(1);
Robin Murphye5fc9752016-01-26 17:13:13 +0000322 if (ap) {
Robin Murphy5baf1e92017-01-06 18:58:10 +0530323 pte |= ARM_V7S_PTE_AF;
324 if (!(prot & IOMMU_PRIV))
325 pte |= ARM_V7S_PTE_AP_UNPRIV;
Robin Murphye5fc9752016-01-26 17:13:13 +0000326 if (!(prot & IOMMU_WRITE))
327 pte |= ARM_V7S_PTE_AP_RDONLY;
328 }
329 pte <<= ARM_V7S_ATTR_SHIFT(lvl);
330
331 if ((prot & IOMMU_NOEXEC) && ap)
332 pte |= ARM_V7S_ATTR_XN(lvl);
Robin Murphye88ccab2016-04-05 12:39:32 +0100333 if (prot & IOMMU_MMIO)
334 pte |= ARM_V7S_ATTR_B;
335 else if (prot & IOMMU_CACHE)
Robin Murphye5fc9752016-01-26 17:13:13 +0000336 pte |= ARM_V7S_ATTR_B | ARM_V7S_ATTR_C;
337
Robin Murphyb9f1ef32017-06-22 16:53:52 +0100338 pte |= ARM_V7S_PTE_TYPE_PAGE;
339 if (lvl == 1 && (cfg->quirks & IO_PGTABLE_QUIRK_ARM_NS))
340 pte |= ARM_V7S_ATTR_NS_SECTION;
341
Robin Murphye5fc9752016-01-26 17:13:13 +0000342 return pte;
343}
344
345static int arm_v7s_pte_to_prot(arm_v7s_iopte pte, int lvl)
346{
347 int prot = IOMMU_READ;
Robin Murphye88ccab2016-04-05 12:39:32 +0100348 arm_v7s_iopte attr = pte >> ARM_V7S_ATTR_SHIFT(lvl);
Robin Murphye5fc9752016-01-26 17:13:13 +0000349
Robin Murphye633fc72016-08-11 17:44:05 +0100350 if (!(attr & ARM_V7S_PTE_AP_RDONLY))
Robin Murphye5fc9752016-01-26 17:13:13 +0000351 prot |= IOMMU_WRITE;
Robin Murphy5baf1e92017-01-06 18:58:10 +0530352 if (!(attr & ARM_V7S_PTE_AP_UNPRIV))
353 prot |= IOMMU_PRIV;
Robin Murphye88ccab2016-04-05 12:39:32 +0100354 if ((attr & (ARM_V7S_TEX_MASK << ARM_V7S_TEX_SHIFT)) == 0)
355 prot |= IOMMU_MMIO;
356 else if (pte & ARM_V7S_ATTR_C)
Robin Murphye5fc9752016-01-26 17:13:13 +0000357 prot |= IOMMU_CACHE;
Robin Murphye633fc72016-08-11 17:44:05 +0100358 if (pte & ARM_V7S_ATTR_XN(lvl))
359 prot |= IOMMU_NOEXEC;
Robin Murphye5fc9752016-01-26 17:13:13 +0000360
361 return prot;
362}
363
364static arm_v7s_iopte arm_v7s_pte_to_cont(arm_v7s_iopte pte, int lvl)
365{
366 if (lvl == 1) {
367 pte |= ARM_V7S_CONT_SECTION;
368 } else if (lvl == 2) {
369 arm_v7s_iopte xn = pte & ARM_V7S_ATTR_XN(lvl);
370 arm_v7s_iopte tex = pte & ARM_V7S_CONT_PAGE_TEX_MASK;
371
372 pte ^= xn | tex | ARM_V7S_PTE_TYPE_PAGE;
373 pte |= (xn << ARM_V7S_CONT_PAGE_XN_SHIFT) |
374 (tex << ARM_V7S_CONT_PAGE_TEX_SHIFT) |
375 ARM_V7S_PTE_TYPE_CONT_PAGE;
376 }
377 return pte;
378}
379
380static arm_v7s_iopte arm_v7s_cont_to_pte(arm_v7s_iopte pte, int lvl)
381{
382 if (lvl == 1) {
383 pte &= ~ARM_V7S_CONT_SECTION;
384 } else if (lvl == 2) {
385 arm_v7s_iopte xn = pte & BIT(ARM_V7S_CONT_PAGE_XN_SHIFT);
386 arm_v7s_iopte tex = pte & (ARM_V7S_CONT_PAGE_TEX_MASK <<
387 ARM_V7S_CONT_PAGE_TEX_SHIFT);
388
389 pte ^= xn | tex | ARM_V7S_PTE_TYPE_CONT_PAGE;
390 pte |= (xn >> ARM_V7S_CONT_PAGE_XN_SHIFT) |
391 (tex >> ARM_V7S_CONT_PAGE_TEX_SHIFT) |
392 ARM_V7S_PTE_TYPE_PAGE;
393 }
394 return pte;
395}
396
397static bool arm_v7s_pte_is_cont(arm_v7s_iopte pte, int lvl)
398{
399 if (lvl == 1 && !ARM_V7S_PTE_IS_TABLE(pte, lvl))
400 return pte & ARM_V7S_CONT_SECTION;
401 else if (lvl == 2)
402 return !(pte & ARM_V7S_PTE_TYPE_PAGE);
403 return false;
404}
405
Will Deacon3951c412019-07-02 16:45:15 +0100406static size_t __arm_v7s_unmap(struct arm_v7s_io_pgtable *,
407 struct iommu_iotlb_gather *, unsigned long,
Vivek Gautam193e67c2018-02-05 23:29:19 +0530408 size_t, int, arm_v7s_iopte *);
Robin Murphye5fc9752016-01-26 17:13:13 +0000409
410static int arm_v7s_init_pte(struct arm_v7s_io_pgtable *data,
411 unsigned long iova, phys_addr_t paddr, int prot,
412 int lvl, int num_entries, arm_v7s_iopte *ptep)
413{
414 struct io_pgtable_cfg *cfg = &data->iop.cfg;
Robin Murphyb9f1ef32017-06-22 16:53:52 +0100415 arm_v7s_iopte pte;
Robin Murphye5fc9752016-01-26 17:13:13 +0000416 int i;
417
418 for (i = 0; i < num_entries; i++)
419 if (ARM_V7S_PTE_IS_TABLE(ptep[i], lvl)) {
420 /*
421 * We need to unmap and free the old table before
422 * overwriting it with a block entry.
423 */
424 arm_v7s_iopte *tblp;
425 size_t sz = ARM_V7S_BLOCK_SIZE(lvl);
426
427 tblp = ptep - ARM_V7S_LVL_IDX(iova, lvl);
Will Deacon3951c412019-07-02 16:45:15 +0100428 if (WARN_ON(__arm_v7s_unmap(data, NULL, iova + i * sz,
Robin Murphye5fc9752016-01-26 17:13:13 +0000429 sz, lvl, tblp) != sz))
430 return -EINVAL;
431 } else if (ptep[i]) {
432 /* We require an unmap first */
433 WARN_ON(!selftest_running);
434 return -EEXIST;
435 }
436
Robin Murphyb9f1ef32017-06-22 16:53:52 +0100437 pte = arm_v7s_prot_to_pte(prot, lvl, cfg);
Robin Murphye5fc9752016-01-26 17:13:13 +0000438 if (num_entries > 1)
439 pte = arm_v7s_pte_to_cont(pte, lvl);
440
Yong Wu5950b952019-08-24 11:01:51 +0800441 pte |= paddr_to_iopte(paddr, lvl, cfg);
Robin Murphye5fc9752016-01-26 17:13:13 +0000442
443 __arm_v7s_set_pte(ptep, pte, num_entries, cfg);
444 return 0;
445}
446
Robin Murphyb9f1ef32017-06-22 16:53:52 +0100447static arm_v7s_iopte arm_v7s_install_table(arm_v7s_iopte *table,
448 arm_v7s_iopte *ptep,
Robin Murphy119ff302017-06-22 16:53:55 +0100449 arm_v7s_iopte curr,
Robin Murphyb9f1ef32017-06-22 16:53:52 +0100450 struct io_pgtable_cfg *cfg)
451{
Robin Murphy119ff302017-06-22 16:53:55 +0100452 arm_v7s_iopte old, new;
Robin Murphyb9f1ef32017-06-22 16:53:52 +0100453
454 new = virt_to_phys(table) | ARM_V7S_PTE_TYPE_TABLE;
455 if (cfg->quirks & IO_PGTABLE_QUIRK_ARM_NS)
456 new |= ARM_V7S_ATTR_NS_TABLE;
457
Will Deacon77f34452017-06-23 12:02:38 +0100458 /*
459 * Ensure the table itself is visible before its PTE can be.
460 * Whilst we could get away with cmpxchg64_release below, this
461 * doesn't have any ordering semantics when !CONFIG_SMP.
462 */
463 dma_wmb();
Robin Murphy119ff302017-06-22 16:53:55 +0100464
465 old = cmpxchg_relaxed(ptep, curr, new);
466 __arm_v7s_pte_sync(ptep, 1, cfg);
467
468 return old;
Robin Murphyb9f1ef32017-06-22 16:53:52 +0100469}
470
Robin Murphye5fc9752016-01-26 17:13:13 +0000471static int __arm_v7s_map(struct arm_v7s_io_pgtable *data, unsigned long iova,
472 phys_addr_t paddr, size_t size, int prot,
Baolin Wangf34ce7a2020-06-12 11:39:55 +0800473 int lvl, arm_v7s_iopte *ptep, gfp_t gfp)
Robin Murphye5fc9752016-01-26 17:13:13 +0000474{
475 struct io_pgtable_cfg *cfg = &data->iop.cfg;
476 arm_v7s_iopte pte, *cptep;
477 int num_entries = size >> ARM_V7S_LVL_SHIFT(lvl);
478
479 /* Find our entry at the current level */
480 ptep += ARM_V7S_LVL_IDX(iova, lvl);
481
482 /* If we can install a leaf entry at this level, then do so */
483 if (num_entries)
484 return arm_v7s_init_pte(data, iova, paddr, prot,
485 lvl, num_entries, ptep);
486
487 /* We can't allocate tables at the final level */
488 if (WARN_ON(lvl == 2))
489 return -EINVAL;
490
491 /* Grab a pointer to the next level */
Robin Murphy119ff302017-06-22 16:53:55 +0100492 pte = READ_ONCE(*ptep);
Robin Murphye5fc9752016-01-26 17:13:13 +0000493 if (!pte) {
Baolin Wangf34ce7a2020-06-12 11:39:55 +0800494 cptep = __arm_v7s_alloc_table(lvl + 1, gfp, data);
Robin Murphye5fc9752016-01-26 17:13:13 +0000495 if (!cptep)
496 return -ENOMEM;
497
Robin Murphy119ff302017-06-22 16:53:55 +0100498 pte = arm_v7s_install_table(cptep, ptep, 0, cfg);
499 if (pte)
500 __arm_v7s_free_table(cptep, lvl + 1, data);
Oleksandr Tyshchenkoa03849e2017-02-27 14:30:26 +0200501 } else {
Robin Murphy119ff302017-06-22 16:53:55 +0100502 /* We've no easy way of knowing if it's synced yet, so... */
503 __arm_v7s_pte_sync(ptep, 1, cfg);
504 }
505
506 if (ARM_V7S_PTE_IS_TABLE(pte, lvl)) {
Yong Wu5950b952019-08-24 11:01:51 +0800507 cptep = iopte_deref(pte, lvl, data);
Robin Murphy119ff302017-06-22 16:53:55 +0100508 } else if (pte) {
Oleksandr Tyshchenkoa03849e2017-02-27 14:30:26 +0200509 /* We require an unmap first */
510 WARN_ON(!selftest_running);
511 return -EEXIST;
Robin Murphye5fc9752016-01-26 17:13:13 +0000512 }
513
514 /* Rinse, repeat */
Baolin Wangf34ce7a2020-06-12 11:39:55 +0800515 return __arm_v7s_map(data, iova, paddr, size, prot, lvl + 1, cptep, gfp);
Robin Murphye5fc9752016-01-26 17:13:13 +0000516}
517
518static int arm_v7s_map(struct io_pgtable_ops *ops, unsigned long iova,
Baolin Wangf34ce7a2020-06-12 11:39:55 +0800519 phys_addr_t paddr, size_t size, int prot, gfp_t gfp)
Robin Murphye5fc9752016-01-26 17:13:13 +0000520{
521 struct arm_v7s_io_pgtable *data = io_pgtable_ops_to_data(ops);
Robin Murphye5fc9752016-01-26 17:13:13 +0000522 int ret;
523
Yong Wu7f315c92019-08-24 11:01:52 +0800524 if (WARN_ON(iova >= (1ULL << data->iop.cfg.ias) ||
525 paddr >= (1ULL << data->iop.cfg.oas)))
Robin Murphy76557392017-07-03 14:52:24 +0100526 return -ERANGE;
527
Keqian Zhuf12e0d22020-12-07 19:57:58 +0800528 /* If no access, then nothing to do */
529 if (!(prot & (IOMMU_READ | IOMMU_WRITE)))
530 return 0;
531
Baolin Wangf34ce7a2020-06-12 11:39:55 +0800532 ret = __arm_v7s_map(data, iova, paddr, size, prot, 1, data->pgd, gfp);
Robin Murphye5fc9752016-01-26 17:13:13 +0000533 /*
534 * Synchronise all PTE updates for the new mapping before there's
535 * a chance for anything to kick off a table walk for the new iova.
536 */
Robin Murphy3d5eab42021-01-27 16:29:29 +0000537 wmb();
Robin Murphye5fc9752016-01-26 17:13:13 +0000538
539 return ret;
540}
541
542static void arm_v7s_free_pgtable(struct io_pgtable *iop)
543{
544 struct arm_v7s_io_pgtable *data = io_pgtable_to_data(iop);
545 int i;
546
547 for (i = 0; i < ARM_V7S_PTES_PER_LVL(1); i++) {
548 arm_v7s_iopte pte = data->pgd[i];
549
550 if (ARM_V7S_PTE_IS_TABLE(pte, 1))
Yong Wu5950b952019-08-24 11:01:51 +0800551 __arm_v7s_free_table(iopte_deref(pte, 1, data),
552 2, data);
Robin Murphye5fc9752016-01-26 17:13:13 +0000553 }
554 __arm_v7s_free_table(data->pgd, 1, data);
555 kmem_cache_destroy(data->l2_tables);
556 kfree(data);
557}
558
Robin Murphy119ff302017-06-22 16:53:55 +0100559static arm_v7s_iopte arm_v7s_split_cont(struct arm_v7s_io_pgtable *data,
560 unsigned long iova, int idx, int lvl,
561 arm_v7s_iopte *ptep)
Robin Murphye5fc9752016-01-26 17:13:13 +0000562{
Robin Murphy507e4c92016-01-26 17:13:14 +0000563 struct io_pgtable *iop = &data->iop;
Robin Murphye5fc9752016-01-26 17:13:13 +0000564 arm_v7s_iopte pte;
565 size_t size = ARM_V7S_BLOCK_SIZE(lvl);
566 int i;
567
Robin Murphy119ff302017-06-22 16:53:55 +0100568 /* Check that we didn't lose a race to get the lock */
569 pte = *ptep;
570 if (!arm_v7s_pte_is_cont(pte, lvl))
571 return pte;
572
Robin Murphye5fc9752016-01-26 17:13:13 +0000573 ptep -= idx & (ARM_V7S_CONT_PAGES - 1);
Robin Murphy119ff302017-06-22 16:53:55 +0100574 pte = arm_v7s_cont_to_pte(pte, lvl);
575 for (i = 0; i < ARM_V7S_CONT_PAGES; i++)
576 ptep[i] = pte + i * size;
Robin Murphye5fc9752016-01-26 17:13:13 +0000577
Robin Murphy507e4c92016-01-26 17:13:14 +0000578 __arm_v7s_pte_sync(ptep, ARM_V7S_CONT_PAGES, &iop->cfg);
Robin Murphye5fc9752016-01-26 17:13:13 +0000579
580 size *= ARM_V7S_CONT_PAGES;
Robin Murphyfefe8522020-11-25 17:29:39 +0000581 io_pgtable_tlb_flush_walk(iop, iova, size, size);
Robin Murphy119ff302017-06-22 16:53:55 +0100582 return pte;
Robin Murphye5fc9752016-01-26 17:13:13 +0000583}
584
Vivek Gautam193e67c2018-02-05 23:29:19 +0530585static size_t arm_v7s_split_blk_unmap(struct arm_v7s_io_pgtable *data,
Will Deacon3951c412019-07-02 16:45:15 +0100586 struct iommu_iotlb_gather *gather,
Vivek Gautam193e67c2018-02-05 23:29:19 +0530587 unsigned long iova, size_t size,
588 arm_v7s_iopte blk_pte,
589 arm_v7s_iopte *ptep)
Robin Murphye5fc9752016-01-26 17:13:13 +0000590{
Robin Murphyb9f1ef32017-06-22 16:53:52 +0100591 struct io_pgtable_cfg *cfg = &data->iop.cfg;
592 arm_v7s_iopte pte, *tablep;
593 int i, unmap_idx, num_entries, num_ptes;
Robin Murphye5fc9752016-01-26 17:13:13 +0000594
Robin Murphyb9f1ef32017-06-22 16:53:52 +0100595 tablep = __arm_v7s_alloc_table(2, GFP_ATOMIC, data);
596 if (!tablep)
597 return 0; /* Bytes unmapped */
Robin Murphye5fc9752016-01-26 17:13:13 +0000598
Robin Murphyb9f1ef32017-06-22 16:53:52 +0100599 num_ptes = ARM_V7S_PTES_PER_LVL(2);
600 num_entries = size >> ARM_V7S_LVL_SHIFT(2);
601 unmap_idx = ARM_V7S_LVL_IDX(iova, 2);
Robin Murphye5fc9752016-01-26 17:13:13 +0000602
Robin Murphyb9f1ef32017-06-22 16:53:52 +0100603 pte = arm_v7s_prot_to_pte(arm_v7s_pte_to_prot(blk_pte, 1), 2, cfg);
604 if (num_entries > 1)
605 pte = arm_v7s_pte_to_cont(pte, 2);
606
607 for (i = 0; i < num_ptes; i += num_entries, pte += size) {
Robin Murphye5fc9752016-01-26 17:13:13 +0000608 /* Unmap! */
Robin Murphyb9f1ef32017-06-22 16:53:52 +0100609 if (i == unmap_idx)
Robin Murphye5fc9752016-01-26 17:13:13 +0000610 continue;
611
Robin Murphyb9f1ef32017-06-22 16:53:52 +0100612 __arm_v7s_set_pte(&tablep[i], pte, num_entries, cfg);
Robin Murphye5fc9752016-01-26 17:13:13 +0000613 }
614
Robin Murphy119ff302017-06-22 16:53:55 +0100615 pte = arm_v7s_install_table(tablep, ptep, blk_pte, cfg);
616 if (pte != blk_pte) {
617 __arm_v7s_free_table(tablep, 2, data);
618
619 if (!ARM_V7S_PTE_IS_TABLE(pte, 1))
620 return 0;
621
Yong Wu5950b952019-08-24 11:01:51 +0800622 tablep = iopte_deref(pte, 1, data);
Will Deacon3951c412019-07-02 16:45:15 +0100623 return __arm_v7s_unmap(data, gather, iova, size, 2, tablep);
Robin Murphy119ff302017-06-22 16:53:55 +0100624 }
Robin Murphyb9f1ef32017-06-22 16:53:52 +0100625
Will Deacon3951c412019-07-02 16:45:15 +0100626 io_pgtable_tlb_add_page(&data->iop, gather, iova, size);
Robin Murphye5fc9752016-01-26 17:13:13 +0000627 return size;
628}
629
Vivek Gautam193e67c2018-02-05 23:29:19 +0530630static size_t __arm_v7s_unmap(struct arm_v7s_io_pgtable *data,
Will Deacon3951c412019-07-02 16:45:15 +0100631 struct iommu_iotlb_gather *gather,
Vivek Gautam193e67c2018-02-05 23:29:19 +0530632 unsigned long iova, size_t size, int lvl,
633 arm_v7s_iopte *ptep)
Robin Murphye5fc9752016-01-26 17:13:13 +0000634{
635 arm_v7s_iopte pte[ARM_V7S_CONT_PAGES];
Robin Murphy507e4c92016-01-26 17:13:14 +0000636 struct io_pgtable *iop = &data->iop;
Robin Murphye5fc9752016-01-26 17:13:13 +0000637 int idx, i = 0, num_entries = size >> ARM_V7S_LVL_SHIFT(lvl);
638
639 /* Something went horribly wrong and we ran out of page table */
640 if (WARN_ON(lvl > 2))
641 return 0;
642
643 idx = ARM_V7S_LVL_IDX(iova, lvl);
644 ptep += idx;
645 do {
Robin Murphy119ff302017-06-22 16:53:55 +0100646 pte[i] = READ_ONCE(ptep[i]);
647 if (WARN_ON(!ARM_V7S_PTE_IS_VALID(pte[i])))
Robin Murphye5fc9752016-01-26 17:13:13 +0000648 return 0;
Robin Murphye5fc9752016-01-26 17:13:13 +0000649 } while (++i < num_entries);
650
651 /*
652 * If we've hit a contiguous 'large page' entry at this level, it
653 * needs splitting first, unless we're unmapping the whole lot.
Robin Murphy119ff302017-06-22 16:53:55 +0100654 *
655 * For splitting, we can't rewrite 16 PTEs atomically, and since we
656 * can't necessarily assume TEX remap we don't have a software bit to
657 * mark live entries being split. In practice (i.e. DMA API code), we
658 * will never be splitting large pages anyway, so just wrap this edge
659 * case in a lock for the sake of correctness and be done with it.
Robin Murphye5fc9752016-01-26 17:13:13 +0000660 */
Robin Murphy119ff302017-06-22 16:53:55 +0100661 if (num_entries <= 1 && arm_v7s_pte_is_cont(pte[0], lvl)) {
662 unsigned long flags;
663
664 spin_lock_irqsave(&data->split_lock, flags);
665 pte[0] = arm_v7s_split_cont(data, iova, idx, lvl, ptep);
666 spin_unlock_irqrestore(&data->split_lock, flags);
667 }
Robin Murphye5fc9752016-01-26 17:13:13 +0000668
669 /* If the size matches this level, we're in the right place */
670 if (num_entries) {
671 size_t blk_size = ARM_V7S_BLOCK_SIZE(lvl);
672
Robin Murphy507e4c92016-01-26 17:13:14 +0000673 __arm_v7s_set_pte(ptep, 0, num_entries, &iop->cfg);
Robin Murphye5fc9752016-01-26 17:13:13 +0000674
675 for (i = 0; i < num_entries; i++) {
676 if (ARM_V7S_PTE_IS_TABLE(pte[i], lvl)) {
677 /* Also flush any partial walks */
Will Deacon10b7a7d2019-07-02 16:44:32 +0100678 io_pgtable_tlb_flush_walk(iop, iova, blk_size,
679 ARM_V7S_BLOCK_SIZE(lvl + 1));
Yong Wu5950b952019-08-24 11:01:51 +0800680 ptep = iopte_deref(pte[i], lvl, data);
Robin Murphye5fc9752016-01-26 17:13:13 +0000681 __arm_v7s_free_table(ptep, lvl + 1, data);
Robin Murphyb2dfeba2018-09-20 17:10:26 +0100682 } else if (iop->cfg.quirks & IO_PGTABLE_QUIRK_NON_STRICT) {
683 /*
684 * Order the PTE update against queueing the IOVA, to
685 * guarantee that a flush callback from a different CPU
686 * has observed it before the TLBIALL can be issued.
687 */
688 smp_wmb();
Robin Murphye5fc9752016-01-26 17:13:13 +0000689 } else {
Will Deacon3951c412019-07-02 16:45:15 +0100690 io_pgtable_tlb_add_page(iop, gather, iova, blk_size);
Robin Murphye5fc9752016-01-26 17:13:13 +0000691 }
692 iova += blk_size;
693 }
694 return size;
695 } else if (lvl == 1 && !ARM_V7S_PTE_IS_TABLE(pte[0], lvl)) {
696 /*
697 * Insert a table at the next level to map the old region,
698 * minus the part we want to unmap
699 */
Will Deacon3951c412019-07-02 16:45:15 +0100700 return arm_v7s_split_blk_unmap(data, gather, iova, size, pte[0],
701 ptep);
Robin Murphye5fc9752016-01-26 17:13:13 +0000702 }
703
704 /* Keep on walkin' */
Yong Wu5950b952019-08-24 11:01:51 +0800705 ptep = iopte_deref(pte[0], lvl, data);
Will Deacon3951c412019-07-02 16:45:15 +0100706 return __arm_v7s_unmap(data, gather, iova, size, lvl + 1, ptep);
Robin Murphye5fc9752016-01-26 17:13:13 +0000707}
708
Vivek Gautam193e67c2018-02-05 23:29:19 +0530709static size_t arm_v7s_unmap(struct io_pgtable_ops *ops, unsigned long iova,
Will Deacona2d3a382019-07-02 16:44:58 +0100710 size_t size, struct iommu_iotlb_gather *gather)
Robin Murphye5fc9752016-01-26 17:13:13 +0000711{
Robin Murphye5fc9752016-01-26 17:13:13 +0000712 struct arm_v7s_io_pgtable *data = io_pgtable_ops_to_data(ops);
Robin Murphye5fc9752016-01-26 17:13:13 +0000713
Yong Wu859da212021-01-11 19:18:50 +0800714 if (WARN_ON(iova >= (1ULL << data->iop.cfg.ias)))
Robin Murphy76557392017-07-03 14:52:24 +0100715 return 0;
716
Will Deacon3951c412019-07-02 16:45:15 +0100717 return __arm_v7s_unmap(data, gather, iova, size, 1, data->pgd);
Robin Murphye5fc9752016-01-26 17:13:13 +0000718}
719
720static phys_addr_t arm_v7s_iova_to_phys(struct io_pgtable_ops *ops,
721 unsigned long iova)
722{
723 struct arm_v7s_io_pgtable *data = io_pgtable_ops_to_data(ops);
724 arm_v7s_iopte *ptep = data->pgd, pte;
725 int lvl = 0;
726 u32 mask;
727
728 do {
Robin Murphy119ff302017-06-22 16:53:55 +0100729 ptep += ARM_V7S_LVL_IDX(iova, ++lvl);
730 pte = READ_ONCE(*ptep);
Yong Wu5950b952019-08-24 11:01:51 +0800731 ptep = iopte_deref(pte, lvl, data);
Robin Murphye5fc9752016-01-26 17:13:13 +0000732 } while (ARM_V7S_PTE_IS_TABLE(pte, lvl));
733
734 if (!ARM_V7S_PTE_IS_VALID(pte))
735 return 0;
736
737 mask = ARM_V7S_LVL_MASK(lvl);
738 if (arm_v7s_pte_is_cont(pte, lvl))
739 mask *= ARM_V7S_CONT_PAGES;
Yong Wu5950b952019-08-24 11:01:51 +0800740 return iopte_to_paddr(pte, lvl, &data->iop.cfg) | (iova & ~mask);
Robin Murphye5fc9752016-01-26 17:13:13 +0000741}
742
743static struct io_pgtable *arm_v7s_alloc_pgtable(struct io_pgtable_cfg *cfg,
744 void *cookie)
745{
746 struct arm_v7s_io_pgtable *data;
747
Yong Wu4c019de2019-08-24 11:01:54 +0800748 if (cfg->ias > ARM_V7S_ADDR_BITS)
749 return NULL;
750
751 if (cfg->oas > (arm_v7s_is_mtk_enabled(cfg) ? 34 : ARM_V7S_ADDR_BITS))
Robin Murphye5fc9752016-01-26 17:13:13 +0000752 return NULL;
753
Robin Murphy3850db42016-02-12 17:09:46 +0000754 if (cfg->quirks & ~(IO_PGTABLE_QUIRK_ARM_NS |
755 IO_PGTABLE_QUIRK_NO_PERMS |
Yong Wu73d50812019-08-24 11:01:53 +0800756 IO_PGTABLE_QUIRK_ARM_MTK_EXT |
Robin Murphyb2dfeba2018-09-20 17:10:26 +0100757 IO_PGTABLE_QUIRK_NON_STRICT))
Robin Murphy3850db42016-02-12 17:09:46 +0000758 return NULL;
759
Yong Wu1afe2312016-03-14 06:01:10 +0800760 /* If ARM_MTK_4GB is enabled, the NO_PERMS is also expected. */
Yong Wu73d50812019-08-24 11:01:53 +0800761 if (cfg->quirks & IO_PGTABLE_QUIRK_ARM_MTK_EXT &&
Yong Wu1afe2312016-03-14 06:01:10 +0800762 !(cfg->quirks & IO_PGTABLE_QUIRK_NO_PERMS))
763 return NULL;
764
Robin Murphye5fc9752016-01-26 17:13:13 +0000765 data = kmalloc(sizeof(*data), GFP_KERNEL);
766 if (!data)
767 return NULL;
768
Robin Murphy119ff302017-06-22 16:53:55 +0100769 spin_lock_init(&data->split_lock);
Robin Murphye5fc9752016-01-26 17:13:13 +0000770 data->l2_tables = kmem_cache_create("io-pgtable_armv7s_l2",
771 ARM_V7S_TABLE_SIZE(2),
772 ARM_V7S_TABLE_SIZE(2),
Nicolas Boichat0a352552019-03-28 20:43:46 -0700773 ARM_V7S_TABLE_SLAB_FLAGS, NULL);
Robin Murphye5fc9752016-01-26 17:13:13 +0000774 if (!data->l2_tables)
775 goto out_free_data;
776
777 data->iop.ops = (struct io_pgtable_ops) {
778 .map = arm_v7s_map,
779 .unmap = arm_v7s_unmap,
780 .iova_to_phys = arm_v7s_iova_to_phys,
781 };
782
783 /* We have to do this early for __arm_v7s_alloc_table to work... */
784 data->iop.cfg = *cfg;
785
786 /*
787 * Unless the IOMMU driver indicates supersection support by
788 * having SZ_16M set in the initial bitmap, they won't be used.
789 */
790 cfg->pgsize_bitmap &= SZ_4K | SZ_64K | SZ_1M | SZ_16M;
791
Robin Murphyfb485eb2019-10-25 19:08:38 +0100792 /* TCR: T0SZ=0, EAE=0 (if applicable) */
793 cfg->arm_v7s_cfg.tcr = 0;
Robin Murphye5fc9752016-01-26 17:13:13 +0000794
795 /*
796 * TEX remap: the indices used map to the closest equivalent types
797 * under the non-TEX-remap interpretation of those attribute bits,
798 * excepting various implementation-defined aspects of shareability.
799 */
800 cfg->arm_v7s_cfg.prrr = ARM_V7S_PRRR_TR(1, ARM_V7S_PRRR_TYPE_DEVICE) |
801 ARM_V7S_PRRR_TR(4, ARM_V7S_PRRR_TYPE_NORMAL) |
802 ARM_V7S_PRRR_TR(7, ARM_V7S_PRRR_TYPE_NORMAL) |
803 ARM_V7S_PRRR_DS0 | ARM_V7S_PRRR_DS1 |
804 ARM_V7S_PRRR_NS1 | ARM_V7S_PRRR_NOS(7);
805 cfg->arm_v7s_cfg.nmrr = ARM_V7S_NMRR_IR(7, ARM_V7S_RGN_WBWA) |
806 ARM_V7S_NMRR_OR(7, ARM_V7S_RGN_WBWA);
807
808 /* Looking good; allocate a pgd */
809 data->pgd = __arm_v7s_alloc_table(1, GFP_KERNEL, data);
810 if (!data->pgd)
811 goto out_free_data;
812
813 /* Ensure the empty pgd is visible before any actual TTBR write */
814 wmb();
815
Robin Murphyd1e5f262019-10-25 19:08:37 +0100816 /* TTBR */
Robin Murphy7618e472020-01-10 15:21:51 +0000817 cfg->arm_v7s_cfg.ttbr = virt_to_phys(data->pgd) | ARM_V7S_TTBR_S |
818 (cfg->coherent_walk ? (ARM_V7S_TTBR_NOS |
819 ARM_V7S_TTBR_IRGN_ATTR(ARM_V7S_RGN_WBWA) |
Robin Murphyd1e5f262019-10-25 19:08:37 +0100820 ARM_V7S_TTBR_ORGN_ATTR(ARM_V7S_RGN_WBWA)) :
821 (ARM_V7S_TTBR_IRGN_ATTR(ARM_V7S_RGN_NC) |
822 ARM_V7S_TTBR_ORGN_ATTR(ARM_V7S_RGN_NC)));
Robin Murphye5fc9752016-01-26 17:13:13 +0000823 return &data->iop;
824
825out_free_data:
826 kmem_cache_destroy(data->l2_tables);
827 kfree(data);
828 return NULL;
829}
830
831struct io_pgtable_init_fns io_pgtable_arm_v7s_init_fns = {
832 .alloc = arm_v7s_alloc_pgtable,
833 .free = arm_v7s_free_pgtable,
834};
835
836#ifdef CONFIG_IOMMU_IO_PGTABLE_ARMV7S_SELFTEST
837
Robin Murphyb5813c12019-10-25 19:08:30 +0100838static struct io_pgtable_cfg *cfg_cookie __initdata;
Robin Murphye5fc9752016-01-26 17:13:13 +0000839
Robin Murphyb5813c12019-10-25 19:08:30 +0100840static void __init dummy_tlb_flush_all(void *cookie)
Robin Murphye5fc9752016-01-26 17:13:13 +0000841{
842 WARN_ON(cookie != cfg_cookie);
843}
844
Robin Murphyb5813c12019-10-25 19:08:30 +0100845static void __init dummy_tlb_flush(unsigned long iova, size_t size,
846 size_t granule, void *cookie)
Robin Murphye5fc9752016-01-26 17:13:13 +0000847{
848 WARN_ON(cookie != cfg_cookie);
849 WARN_ON(!(size & cfg_cookie->pgsize_bitmap));
850}
851
Robin Murphyb5813c12019-10-25 19:08:30 +0100852static void __init dummy_tlb_add_page(struct iommu_iotlb_gather *gather,
853 unsigned long iova, size_t granule,
854 void *cookie)
Robin Murphye5fc9752016-01-26 17:13:13 +0000855{
Will Deaconabfd6fe2019-07-02 16:44:41 +0100856 dummy_tlb_flush(iova, granule, granule, cookie);
Robin Murphye5fc9752016-01-26 17:13:13 +0000857}
858
Robin Murphyb5813c12019-10-25 19:08:30 +0100859static const struct iommu_flush_ops dummy_tlb_ops __initconst = {
Robin Murphye5fc9752016-01-26 17:13:13 +0000860 .tlb_flush_all = dummy_tlb_flush_all,
Will Deacon10b7a7d2019-07-02 16:44:32 +0100861 .tlb_flush_walk = dummy_tlb_flush,
Will Deaconabfd6fe2019-07-02 16:44:41 +0100862 .tlb_add_page = dummy_tlb_add_page,
Robin Murphye5fc9752016-01-26 17:13:13 +0000863};
864
865#define __FAIL(ops) ({ \
866 WARN(1, "selftest: test failed\n"); \
867 selftest_running = false; \
868 -EFAULT; \
869})
870
871static int __init arm_v7s_do_selftests(void)
872{
873 struct io_pgtable_ops *ops;
874 struct io_pgtable_cfg cfg = {
875 .tlb = &dummy_tlb_ops,
876 .oas = 32,
877 .ias = 32,
Will Deacon4f418452019-06-25 12:51:25 +0100878 .coherent_walk = true,
879 .quirks = IO_PGTABLE_QUIRK_ARM_NS,
Robin Murphye5fc9752016-01-26 17:13:13 +0000880 .pgsize_bitmap = SZ_4K | SZ_64K | SZ_1M | SZ_16M,
881 };
882 unsigned int iova, size, iova_start;
883 unsigned int i, loopnr = 0;
884
885 selftest_running = true;
886
887 cfg_cookie = &cfg;
888
889 ops = alloc_io_pgtable_ops(ARM_V7S, &cfg, &cfg);
890 if (!ops) {
891 pr_err("selftest: failed to allocate io pgtable ops\n");
892 return -EINVAL;
893 }
894
895 /*
896 * Initial sanity checks.
897 * Empty page tables shouldn't provide any translations.
898 */
899 if (ops->iova_to_phys(ops, 42))
900 return __FAIL(ops);
901
902 if (ops->iova_to_phys(ops, SZ_1G + 42))
903 return __FAIL(ops);
904
905 if (ops->iova_to_phys(ops, SZ_2G + 42))
906 return __FAIL(ops);
907
908 /*
909 * Distinct mappings of different granule sizes.
910 */
911 iova = 0;
Kefeng Wang4ae8a5c2016-09-21 13:41:31 +0800912 for_each_set_bit(i, &cfg.pgsize_bitmap, BITS_PER_LONG) {
Robin Murphye5fc9752016-01-26 17:13:13 +0000913 size = 1UL << i;
914 if (ops->map(ops, iova, iova, size, IOMMU_READ |
915 IOMMU_WRITE |
916 IOMMU_NOEXEC |
Baolin Wangf34ce7a2020-06-12 11:39:55 +0800917 IOMMU_CACHE, GFP_KERNEL))
Robin Murphye5fc9752016-01-26 17:13:13 +0000918 return __FAIL(ops);
919
920 /* Overlapping mappings */
921 if (!ops->map(ops, iova, iova + size, size,
Baolin Wangf34ce7a2020-06-12 11:39:55 +0800922 IOMMU_READ | IOMMU_NOEXEC, GFP_KERNEL))
Robin Murphye5fc9752016-01-26 17:13:13 +0000923 return __FAIL(ops);
924
925 if (ops->iova_to_phys(ops, iova + 42) != (iova + 42))
926 return __FAIL(ops);
927
928 iova += SZ_16M;
Robin Murphye5fc9752016-01-26 17:13:13 +0000929 loopnr++;
930 }
931
932 /* Partial unmap */
933 i = 1;
934 size = 1UL << __ffs(cfg.pgsize_bitmap);
935 while (i < loopnr) {
936 iova_start = i * SZ_16M;
Will Deacona2d3a382019-07-02 16:44:58 +0100937 if (ops->unmap(ops, iova_start + size, size, NULL) != size)
Robin Murphye5fc9752016-01-26 17:13:13 +0000938 return __FAIL(ops);
939
940 /* Remap of partial unmap */
Baolin Wangf34ce7a2020-06-12 11:39:55 +0800941 if (ops->map(ops, iova_start + size, size, size, IOMMU_READ, GFP_KERNEL))
Robin Murphye5fc9752016-01-26 17:13:13 +0000942 return __FAIL(ops);
943
944 if (ops->iova_to_phys(ops, iova_start + size + 42)
945 != (size + 42))
946 return __FAIL(ops);
947 i++;
948 }
949
950 /* Full unmap */
951 iova = 0;
YueHaibingf793b132018-04-26 12:49:29 +0800952 for_each_set_bit(i, &cfg.pgsize_bitmap, BITS_PER_LONG) {
Robin Murphye5fc9752016-01-26 17:13:13 +0000953 size = 1UL << i;
954
Will Deacona2d3a382019-07-02 16:44:58 +0100955 if (ops->unmap(ops, iova, size, NULL) != size)
Robin Murphye5fc9752016-01-26 17:13:13 +0000956 return __FAIL(ops);
957
958 if (ops->iova_to_phys(ops, iova + 42))
959 return __FAIL(ops);
960
961 /* Remap full block */
Baolin Wangf34ce7a2020-06-12 11:39:55 +0800962 if (ops->map(ops, iova, iova, size, IOMMU_WRITE, GFP_KERNEL))
Robin Murphye5fc9752016-01-26 17:13:13 +0000963 return __FAIL(ops);
964
965 if (ops->iova_to_phys(ops, iova + 42) != (iova + 42))
966 return __FAIL(ops);
967
968 iova += SZ_16M;
Robin Murphye5fc9752016-01-26 17:13:13 +0000969 }
970
971 free_io_pgtable_ops(ops);
972
973 selftest_running = false;
974
975 pr_info("self test ok\n");
976 return 0;
977}
978subsys_initcall(arm_v7s_do_selftests);
979#endif