blob: 04fbd4bf0ff9fd2140ff01a0063352eef047fb7f [file] [log] [blame]
Thomas Gleixnercaab2772019-06-03 07:44:50 +02001// SPDX-License-Identifier: GPL-2.0-only
Will Deacone1d3c0f2014-11-14 17:18:23 +00002/*
3 * CPU-agnostic ARM page table allocator.
4 *
Will Deacone1d3c0f2014-11-14 17:18:23 +00005 * Copyright (C) 2014 ARM Limited
6 *
7 * Author: Will Deacon <will.deacon@arm.com>
8 */
9
10#define pr_fmt(fmt) "arm-lpae io-pgtable: " fmt
11
Robin Murphy2c3d2732017-06-22 16:53:54 +010012#include <linux/atomic.h>
Robin Murphy6c899282018-03-26 13:35:13 +010013#include <linux/bitops.h>
Rob Herringb77cf112019-02-05 10:37:31 -060014#include <linux/io-pgtable.h>
Will Deacone1d3c0f2014-11-14 17:18:23 +000015#include <linux/kernel.h>
16#include <linux/sizes.h>
17#include <linux/slab.h>
18#include <linux/types.h>
Lada Trimasova8f6aff92016-01-27 11:10:32 +000019#include <linux/dma-mapping.h>
Will Deacone1d3c0f2014-11-14 17:18:23 +000020
Robin Murphy87a91b12015-07-29 19:46:09 +010021#include <asm/barrier.h>
22
Robin Murphy6c899282018-03-26 13:35:13 +010023#define ARM_LPAE_MAX_ADDR_BITS 52
Will Deacone1d3c0f2014-11-14 17:18:23 +000024#define ARM_LPAE_S2_MAX_CONCAT_PAGES 16
25#define ARM_LPAE_MAX_LEVELS 4
26
27/* Struct accessors */
28#define io_pgtable_to_data(x) \
29 container_of((x), struct arm_lpae_io_pgtable, iop)
30
Will Deacone1d3c0f2014-11-14 17:18:23 +000031#define io_pgtable_ops_to_data(x) \
32 io_pgtable_to_data(io_pgtable_ops_to_pgtable(x))
33
34/*
Will Deacone1d3c0f2014-11-14 17:18:23 +000035 * Calculate the right shift amount to get to the portion describing level l
36 * in a virtual address mapped by the pagetable in d.
37 */
38#define ARM_LPAE_LVL_SHIFT(l,d) \
Robin Murphy5fb190b2019-10-25 19:08:35 +010039 (((ARM_LPAE_MAX_LEVELS - (l)) * (d)->bits_per_level) + \
40 ilog2(sizeof(arm_lpae_iopte)))
Will Deacone1d3c0f2014-11-14 17:18:23 +000041
Robin Murphy5fb190b2019-10-25 19:08:35 +010042#define ARM_LPAE_GRANULE(d) \
43 (sizeof(arm_lpae_iopte) << (d)->bits_per_level)
Robin Murphyc79278c2019-10-25 19:08:34 +010044#define ARM_LPAE_PGD_SIZE(d) \
45 (sizeof(arm_lpae_iopte) << (d)->pgd_bits)
Will Deacone1d3c0f2014-11-14 17:18:23 +000046
47/*
48 * Calculate the index at level l used to map virtual address a using the
49 * pagetable in d.
50 */
51#define ARM_LPAE_PGD_IDX(l,d) \
Robin Murphyc79278c2019-10-25 19:08:34 +010052 ((l) == (d)->start_level ? (d)->pgd_bits - (d)->bits_per_level : 0)
Will Deacone1d3c0f2014-11-14 17:18:23 +000053
54#define ARM_LPAE_LVL_IDX(a,l,d) \
Will Deacon367bd972015-02-16 18:38:20 +000055 (((u64)(a) >> ARM_LPAE_LVL_SHIFT(l,d)) & \
Will Deacone1d3c0f2014-11-14 17:18:23 +000056 ((1 << ((d)->bits_per_level + ARM_LPAE_PGD_IDX(l,d))) - 1))
57
58/* Calculate the block/page mapping size at level l for pagetable in d. */
Robin Murphy5fb190b2019-10-25 19:08:35 +010059#define ARM_LPAE_BLOCK_SIZE(l,d) (1ULL << ARM_LPAE_LVL_SHIFT(l,d))
Will Deacone1d3c0f2014-11-14 17:18:23 +000060
61/* Page table bits */
62#define ARM_LPAE_PTE_TYPE_SHIFT 0
63#define ARM_LPAE_PTE_TYPE_MASK 0x3
64
65#define ARM_LPAE_PTE_TYPE_BLOCK 1
66#define ARM_LPAE_PTE_TYPE_TABLE 3
67#define ARM_LPAE_PTE_TYPE_PAGE 3
68
Robin Murphy6c899282018-03-26 13:35:13 +010069#define ARM_LPAE_PTE_ADDR_MASK GENMASK_ULL(47,12)
70
Laurent Pinchartc896c1322014-12-14 23:34:50 +020071#define ARM_LPAE_PTE_NSTABLE (((arm_lpae_iopte)1) << 63)
Will Deacone1d3c0f2014-11-14 17:18:23 +000072#define ARM_LPAE_PTE_XN (((arm_lpae_iopte)3) << 53)
73#define ARM_LPAE_PTE_AF (((arm_lpae_iopte)1) << 10)
74#define ARM_LPAE_PTE_SH_NS (((arm_lpae_iopte)0) << 8)
75#define ARM_LPAE_PTE_SH_OS (((arm_lpae_iopte)2) << 8)
76#define ARM_LPAE_PTE_SH_IS (((arm_lpae_iopte)3) << 8)
Laurent Pinchartc896c1322014-12-14 23:34:50 +020077#define ARM_LPAE_PTE_NS (((arm_lpae_iopte)1) << 5)
Will Deacone1d3c0f2014-11-14 17:18:23 +000078#define ARM_LPAE_PTE_VALID (((arm_lpae_iopte)1) << 0)
79
80#define ARM_LPAE_PTE_ATTR_LO_MASK (((arm_lpae_iopte)0x3ff) << 2)
81/* Ignore the contiguous bit for block splitting */
82#define ARM_LPAE_PTE_ATTR_HI_MASK (((arm_lpae_iopte)6) << 52)
83#define ARM_LPAE_PTE_ATTR_MASK (ARM_LPAE_PTE_ATTR_LO_MASK | \
84 ARM_LPAE_PTE_ATTR_HI_MASK)
Robin Murphy2c3d2732017-06-22 16:53:54 +010085/* Software bit for solving coherency races */
86#define ARM_LPAE_PTE_SW_SYNC (((arm_lpae_iopte)1) << 55)
Will Deacone1d3c0f2014-11-14 17:18:23 +000087
88/* Stage-1 PTE */
89#define ARM_LPAE_PTE_AP_UNPRIV (((arm_lpae_iopte)1) << 6)
90#define ARM_LPAE_PTE_AP_RDONLY (((arm_lpae_iopte)2) << 6)
91#define ARM_LPAE_PTE_ATTRINDX_SHIFT 2
92#define ARM_LPAE_PTE_nG (((arm_lpae_iopte)1) << 11)
93
94/* Stage-2 PTE */
95#define ARM_LPAE_PTE_HAP_FAULT (((arm_lpae_iopte)0) << 6)
96#define ARM_LPAE_PTE_HAP_READ (((arm_lpae_iopte)1) << 6)
97#define ARM_LPAE_PTE_HAP_WRITE (((arm_lpae_iopte)2) << 6)
98#define ARM_LPAE_PTE_MEMATTR_OIWB (((arm_lpae_iopte)0xf) << 2)
99#define ARM_LPAE_PTE_MEMATTR_NC (((arm_lpae_iopte)0x5) << 2)
100#define ARM_LPAE_PTE_MEMATTR_DEV (((arm_lpae_iopte)0x1) << 2)
101
102/* Register bits */
Robin Murphyfb485eb2019-10-25 19:08:38 +0100103#define ARM_LPAE_TCR_TG0_4K 0
104#define ARM_LPAE_TCR_TG0_64K 1
105#define ARM_LPAE_TCR_TG0_16K 2
Will Deacone1d3c0f2014-11-14 17:18:23 +0000106
Robin Murphydb690302019-10-25 19:08:39 +0100107#define ARM_LPAE_TCR_TG1_16K 1
108#define ARM_LPAE_TCR_TG1_4K 2
109#define ARM_LPAE_TCR_TG1_64K 3
110
Will Deacone1d3c0f2014-11-14 17:18:23 +0000111#define ARM_LPAE_TCR_SH_NS 0
112#define ARM_LPAE_TCR_SH_OS 2
113#define ARM_LPAE_TCR_SH_IS 3
114
Will Deacone1d3c0f2014-11-14 17:18:23 +0000115#define ARM_LPAE_TCR_RGN_NC 0
116#define ARM_LPAE_TCR_RGN_WBWA 1
117#define ARM_LPAE_TCR_RGN_WT 2
118#define ARM_LPAE_TCR_RGN_WB 3
119
Robin Murphyfb485eb2019-10-25 19:08:38 +0100120#define ARM_LPAE_VTCR_SL0_MASK 0x3
Will Deacone1d3c0f2014-11-14 17:18:23 +0000121
122#define ARM_LPAE_TCR_T0SZ_SHIFT 0
Will Deacone1d3c0f2014-11-14 17:18:23 +0000123
Robin Murphyfb485eb2019-10-25 19:08:38 +0100124#define ARM_LPAE_VTCR_PS_SHIFT 16
125#define ARM_LPAE_VTCR_PS_MASK 0x7
Will Deacone1d3c0f2014-11-14 17:18:23 +0000126
127#define ARM_LPAE_TCR_PS_32_BIT 0x0ULL
128#define ARM_LPAE_TCR_PS_36_BIT 0x1ULL
129#define ARM_LPAE_TCR_PS_40_BIT 0x2ULL
130#define ARM_LPAE_TCR_PS_42_BIT 0x3ULL
131#define ARM_LPAE_TCR_PS_44_BIT 0x4ULL
132#define ARM_LPAE_TCR_PS_48_BIT 0x5ULL
Robin Murphy6c899282018-03-26 13:35:13 +0100133#define ARM_LPAE_TCR_PS_52_BIT 0x6ULL
Will Deacone1d3c0f2014-11-14 17:18:23 +0000134
135#define ARM_LPAE_MAIR_ATTR_SHIFT(n) ((n) << 3)
136#define ARM_LPAE_MAIR_ATTR_MASK 0xff
137#define ARM_LPAE_MAIR_ATTR_DEVICE 0x04
138#define ARM_LPAE_MAIR_ATTR_NC 0x44
Vivek Gautam90ec7a72019-05-16 15:00:20 +0530139#define ARM_LPAE_MAIR_ATTR_INC_OWBRWA 0xf4
Will Deacone1d3c0f2014-11-14 17:18:23 +0000140#define ARM_LPAE_MAIR_ATTR_WBRWA 0xff
141#define ARM_LPAE_MAIR_ATTR_IDX_NC 0
142#define ARM_LPAE_MAIR_ATTR_IDX_CACHE 1
143#define ARM_LPAE_MAIR_ATTR_IDX_DEV 2
Vivek Gautam90ec7a72019-05-16 15:00:20 +0530144#define ARM_LPAE_MAIR_ATTR_IDX_INC_OCACHE 3
Will Deacone1d3c0f2014-11-14 17:18:23 +0000145
Rob Herringd08d42d2019-02-21 14:23:25 -0600146#define ARM_MALI_LPAE_TTBR_ADRMODE_TABLE (3u << 0)
147#define ARM_MALI_LPAE_TTBR_READ_INNER BIT(2)
148#define ARM_MALI_LPAE_TTBR_SHARE_OUTER BIT(4)
149
Robin Murphy52f325f2019-09-30 15:11:00 +0100150#define ARM_MALI_LPAE_MEMATTR_IMP_DEF 0x88ULL
151#define ARM_MALI_LPAE_MEMATTR_WRITE_ALLOC 0x8DULL
152
Will Deacone1d3c0f2014-11-14 17:18:23 +0000153/* IOPTE accessors */
Robin Murphy6c899282018-03-26 13:35:13 +0100154#define iopte_deref(pte,d) __va(iopte_to_paddr(pte, d))
Will Deacone1d3c0f2014-11-14 17:18:23 +0000155
156#define iopte_type(pte,l) \
157 (((pte) >> ARM_LPAE_PTE_TYPE_SHIFT) & ARM_LPAE_PTE_TYPE_MASK)
158
159#define iopte_prot(pte) ((pte) & ARM_LPAE_PTE_ATTR_MASK)
160
Will Deacone1d3c0f2014-11-14 17:18:23 +0000161struct arm_lpae_io_pgtable {
162 struct io_pgtable iop;
163
Robin Murphyc79278c2019-10-25 19:08:34 +0100164 int pgd_bits;
Robin Murphy594ab902019-10-25 19:08:33 +0100165 int start_level;
Robin Murphy5fb190b2019-10-25 19:08:35 +0100166 int bits_per_level;
Will Deacone1d3c0f2014-11-14 17:18:23 +0000167
168 void *pgd;
169};
170
171typedef u64 arm_lpae_iopte;
172
Rob Herringd08d42d2019-02-21 14:23:25 -0600173static inline bool iopte_leaf(arm_lpae_iopte pte, int lvl,
174 enum io_pgtable_fmt fmt)
175{
176 if (lvl == (ARM_LPAE_MAX_LEVELS - 1) && fmt != ARM_MALI_LPAE)
177 return iopte_type(pte, lvl) == ARM_LPAE_PTE_TYPE_PAGE;
178
179 return iopte_type(pte, lvl) == ARM_LPAE_PTE_TYPE_BLOCK;
180}
181
Robin Murphy6c899282018-03-26 13:35:13 +0100182static arm_lpae_iopte paddr_to_iopte(phys_addr_t paddr,
183 struct arm_lpae_io_pgtable *data)
184{
185 arm_lpae_iopte pte = paddr;
186
187 /* Of the bits which overlap, either 51:48 or 15:12 are always RES0 */
188 return (pte | (pte >> (48 - 12))) & ARM_LPAE_PTE_ADDR_MASK;
189}
190
191static phys_addr_t iopte_to_paddr(arm_lpae_iopte pte,
192 struct arm_lpae_io_pgtable *data)
193{
Robin Murphy78688052018-03-29 12:24:52 +0100194 u64 paddr = pte & ARM_LPAE_PTE_ADDR_MASK;
Robin Murphy6c899282018-03-26 13:35:13 +0100195
Robin Murphy5fb190b2019-10-25 19:08:35 +0100196 if (ARM_LPAE_GRANULE(data) < SZ_64K)
Robin Murphy6c899282018-03-26 13:35:13 +0100197 return paddr;
198
199 /* Rotate the packed high-order bits back to the top */
200 return (paddr | (paddr << (48 - 12))) & (ARM_LPAE_PTE_ADDR_MASK << 4);
201}
202
Will Deaconfe4b9912014-11-17 23:31:12 +0000203static bool selftest_running = false;
204
Robin Murphyffcb6d12015-09-17 17:42:16 +0100205static dma_addr_t __arm_lpae_dma_addr(void *pages)
Robin Murphyf8d54962015-07-29 19:46:04 +0100206{
Robin Murphyffcb6d12015-09-17 17:42:16 +0100207 return (dma_addr_t)virt_to_phys(pages);
Robin Murphyf8d54962015-07-29 19:46:04 +0100208}
209
210static void *__arm_lpae_alloc_pages(size_t size, gfp_t gfp,
211 struct io_pgtable_cfg *cfg)
212{
213 struct device *dev = cfg->iommu_dev;
Robin Murphy4b123752018-05-22 12:50:09 +0100214 int order = get_order(size);
215 struct page *p;
Robin Murphyf8d54962015-07-29 19:46:04 +0100216 dma_addr_t dma;
Robin Murphy4b123752018-05-22 12:50:09 +0100217 void *pages;
Robin Murphyf8d54962015-07-29 19:46:04 +0100218
Robin Murphy4b123752018-05-22 12:50:09 +0100219 VM_BUG_ON((gfp & __GFP_HIGHMEM));
Jean-Philippe Bruckerfac83d22018-06-18 12:27:54 +0100220 p = alloc_pages_node(dev ? dev_to_node(dev) : NUMA_NO_NODE,
221 gfp | __GFP_ZERO, order);
Robin Murphy4b123752018-05-22 12:50:09 +0100222 if (!p)
Robin Murphyf8d54962015-07-29 19:46:04 +0100223 return NULL;
224
Robin Murphy4b123752018-05-22 12:50:09 +0100225 pages = page_address(p);
Will Deacon4f418452019-06-25 12:51:25 +0100226 if (!cfg->coherent_walk) {
Robin Murphyf8d54962015-07-29 19:46:04 +0100227 dma = dma_map_single(dev, pages, size, DMA_TO_DEVICE);
228 if (dma_mapping_error(dev, dma))
229 goto out_free;
230 /*
231 * We depend on the IOMMU being able to work with any physical
Robin Murphyffcb6d12015-09-17 17:42:16 +0100232 * address directly, so if the DMA layer suggests otherwise by
233 * translating or truncating them, that bodes very badly...
Robin Murphyf8d54962015-07-29 19:46:04 +0100234 */
Robin Murphyffcb6d12015-09-17 17:42:16 +0100235 if (dma != virt_to_phys(pages))
Robin Murphyf8d54962015-07-29 19:46:04 +0100236 goto out_unmap;
237 }
238
239 return pages;
240
241out_unmap:
242 dev_err(dev, "Cannot accommodate DMA translation for IOMMU page tables\n");
243 dma_unmap_single(dev, dma, size, DMA_TO_DEVICE);
244out_free:
Robin Murphy4b123752018-05-22 12:50:09 +0100245 __free_pages(p, order);
Robin Murphyf8d54962015-07-29 19:46:04 +0100246 return NULL;
247}
248
249static void __arm_lpae_free_pages(void *pages, size_t size,
250 struct io_pgtable_cfg *cfg)
251{
Will Deacon4f418452019-06-25 12:51:25 +0100252 if (!cfg->coherent_walk)
Robin Murphyffcb6d12015-09-17 17:42:16 +0100253 dma_unmap_single(cfg->iommu_dev, __arm_lpae_dma_addr(pages),
Robin Murphyf8d54962015-07-29 19:46:04 +0100254 size, DMA_TO_DEVICE);
Robin Murphy4b123752018-05-22 12:50:09 +0100255 free_pages((unsigned long)pages, get_order(size));
Robin Murphyf8d54962015-07-29 19:46:04 +0100256}
257
Robin Murphy2c3d2732017-06-22 16:53:54 +0100258static void __arm_lpae_sync_pte(arm_lpae_iopte *ptep,
259 struct io_pgtable_cfg *cfg)
260{
261 dma_sync_single_for_device(cfg->iommu_dev, __arm_lpae_dma_addr(ptep),
262 sizeof(*ptep), DMA_TO_DEVICE);
263}
264
Robin Murphyf8d54962015-07-29 19:46:04 +0100265static void __arm_lpae_set_pte(arm_lpae_iopte *ptep, arm_lpae_iopte pte,
Robin Murphy87a91b12015-07-29 19:46:09 +0100266 struct io_pgtable_cfg *cfg)
Robin Murphyf8d54962015-07-29 19:46:04 +0100267{
Robin Murphyf8d54962015-07-29 19:46:04 +0100268 *ptep = pte;
269
Will Deacon4f418452019-06-25 12:51:25 +0100270 if (!cfg->coherent_walk)
Robin Murphy2c3d2732017-06-22 16:53:54 +0100271 __arm_lpae_sync_pte(ptep, cfg);
Robin Murphyf8d54962015-07-29 19:46:04 +0100272}
273
Vivek Gautam193e67c2018-02-05 23:29:19 +0530274static size_t __arm_lpae_unmap(struct arm_lpae_io_pgtable *data,
Will Deacon3951c412019-07-02 16:45:15 +0100275 struct iommu_iotlb_gather *gather,
Vivek Gautam193e67c2018-02-05 23:29:19 +0530276 unsigned long iova, size_t size, int lvl,
277 arm_lpae_iopte *ptep);
Will Deaconcf27ec92015-08-11 16:48:32 +0100278
Robin Murphyfb3a9572017-06-22 16:53:51 +0100279static void __arm_lpae_init_pte(struct arm_lpae_io_pgtable *data,
280 phys_addr_t paddr, arm_lpae_iopte prot,
281 int lvl, arm_lpae_iopte *ptep)
282{
283 arm_lpae_iopte pte = prot;
284
Rob Herringd08d42d2019-02-21 14:23:25 -0600285 if (data->iop.fmt != ARM_MALI_LPAE && lvl == ARM_LPAE_MAX_LEVELS - 1)
Robin Murphyfb3a9572017-06-22 16:53:51 +0100286 pte |= ARM_LPAE_PTE_TYPE_PAGE;
287 else
288 pte |= ARM_LPAE_PTE_TYPE_BLOCK;
289
Robin Murphy6c899282018-03-26 13:35:13 +0100290 pte |= paddr_to_iopte(paddr, data);
Robin Murphyfb3a9572017-06-22 16:53:51 +0100291
292 __arm_lpae_set_pte(ptep, pte, &data->iop.cfg);
293}
294
Will Deacone1d3c0f2014-11-14 17:18:23 +0000295static int arm_lpae_init_pte(struct arm_lpae_io_pgtable *data,
296 unsigned long iova, phys_addr_t paddr,
297 arm_lpae_iopte prot, int lvl,
298 arm_lpae_iopte *ptep)
299{
Robin Murphyfb3a9572017-06-22 16:53:51 +0100300 arm_lpae_iopte pte = *ptep;
Will Deacone1d3c0f2014-11-14 17:18:23 +0000301
Rob Herringd08d42d2019-02-21 14:23:25 -0600302 if (iopte_leaf(pte, lvl, data->iop.fmt)) {
Will Deaconcf27ec92015-08-11 16:48:32 +0100303 /* We require an unmap first */
Will Deaconfe4b9912014-11-17 23:31:12 +0000304 WARN_ON(!selftest_running);
Will Deacone1d3c0f2014-11-14 17:18:23 +0000305 return -EEXIST;
Robin Murphyfb3a9572017-06-22 16:53:51 +0100306 } else if (iopte_type(pte, lvl) == ARM_LPAE_PTE_TYPE_TABLE) {
Will Deaconcf27ec92015-08-11 16:48:32 +0100307 /*
308 * We need to unmap and free the old table before
309 * overwriting it with a block entry.
310 */
311 arm_lpae_iopte *tblp;
312 size_t sz = ARM_LPAE_BLOCK_SIZE(lvl, data);
313
314 tblp = ptep - ARM_LPAE_LVL_IDX(iova, lvl, data);
Will Deacon3951c412019-07-02 16:45:15 +0100315 if (__arm_lpae_unmap(data, NULL, iova, sz, lvl, tblp) != sz) {
316 WARN_ON(1);
Will Deaconcf27ec92015-08-11 16:48:32 +0100317 return -EINVAL;
Will Deacon3951c412019-07-02 16:45:15 +0100318 }
Will Deaconfe4b9912014-11-17 23:31:12 +0000319 }
Will Deacone1d3c0f2014-11-14 17:18:23 +0000320
Robin Murphyfb3a9572017-06-22 16:53:51 +0100321 __arm_lpae_init_pte(data, paddr, prot, lvl, ptep);
Will Deacone1d3c0f2014-11-14 17:18:23 +0000322 return 0;
323}
324
Robin Murphyfb3a9572017-06-22 16:53:51 +0100325static arm_lpae_iopte arm_lpae_install_table(arm_lpae_iopte *table,
326 arm_lpae_iopte *ptep,
Robin Murphy2c3d2732017-06-22 16:53:54 +0100327 arm_lpae_iopte curr,
Robin Murphyfb3a9572017-06-22 16:53:51 +0100328 struct io_pgtable_cfg *cfg)
329{
Robin Murphy2c3d2732017-06-22 16:53:54 +0100330 arm_lpae_iopte old, new;
Robin Murphyfb3a9572017-06-22 16:53:51 +0100331
332 new = __pa(table) | ARM_LPAE_PTE_TYPE_TABLE;
333 if (cfg->quirks & IO_PGTABLE_QUIRK_ARM_NS)
334 new |= ARM_LPAE_PTE_NSTABLE;
335
Will Deacon77f34452017-06-23 12:02:38 +0100336 /*
337 * Ensure the table itself is visible before its PTE can be.
338 * Whilst we could get away with cmpxchg64_release below, this
339 * doesn't have any ordering semantics when !CONFIG_SMP.
340 */
341 dma_wmb();
Robin Murphy2c3d2732017-06-22 16:53:54 +0100342
343 old = cmpxchg64_relaxed(ptep, curr, new);
344
Will Deacon4f418452019-06-25 12:51:25 +0100345 if (cfg->coherent_walk || (old & ARM_LPAE_PTE_SW_SYNC))
Robin Murphy2c3d2732017-06-22 16:53:54 +0100346 return old;
347
348 /* Even if it's not ours, there's no point waiting; just kick it */
349 __arm_lpae_sync_pte(ptep, cfg);
350 if (old == curr)
351 WRITE_ONCE(*ptep, new | ARM_LPAE_PTE_SW_SYNC);
352
353 return old;
Robin Murphyfb3a9572017-06-22 16:53:51 +0100354}
355
Will Deacone1d3c0f2014-11-14 17:18:23 +0000356static int __arm_lpae_map(struct arm_lpae_io_pgtable *data, unsigned long iova,
357 phys_addr_t paddr, size_t size, arm_lpae_iopte prot,
358 int lvl, arm_lpae_iopte *ptep)
359{
360 arm_lpae_iopte *cptep, pte;
Will Deacone1d3c0f2014-11-14 17:18:23 +0000361 size_t block_size = ARM_LPAE_BLOCK_SIZE(lvl, data);
Robin Murphy2c3d2732017-06-22 16:53:54 +0100362 size_t tblsz = ARM_LPAE_GRANULE(data);
Robin Murphyf8d54962015-07-29 19:46:04 +0100363 struct io_pgtable_cfg *cfg = &data->iop.cfg;
Will Deacone1d3c0f2014-11-14 17:18:23 +0000364
365 /* Find our entry at the current level */
366 ptep += ARM_LPAE_LVL_IDX(iova, lvl, data);
367
368 /* If we can install a leaf entry at this level, then do so */
Robin Murphyf7b90d22019-10-25 19:08:31 +0100369 if (size == block_size)
Will Deacone1d3c0f2014-11-14 17:18:23 +0000370 return arm_lpae_init_pte(data, iova, paddr, prot, lvl, ptep);
371
372 /* We can't allocate tables at the final level */
373 if (WARN_ON(lvl >= ARM_LPAE_MAX_LEVELS - 1))
374 return -EINVAL;
375
376 /* Grab a pointer to the next level */
Robin Murphy2c3d2732017-06-22 16:53:54 +0100377 pte = READ_ONCE(*ptep);
Will Deacone1d3c0f2014-11-14 17:18:23 +0000378 if (!pte) {
Robin Murphy2c3d2732017-06-22 16:53:54 +0100379 cptep = __arm_lpae_alloc_pages(tblsz, GFP_ATOMIC, cfg);
Will Deacone1d3c0f2014-11-14 17:18:23 +0000380 if (!cptep)
381 return -ENOMEM;
382
Robin Murphy2c3d2732017-06-22 16:53:54 +0100383 pte = arm_lpae_install_table(cptep, ptep, 0, cfg);
384 if (pte)
385 __arm_lpae_free_pages(cptep, tblsz, cfg);
Will Deacon4f418452019-06-25 12:51:25 +0100386 } else if (!cfg->coherent_walk && !(pte & ARM_LPAE_PTE_SW_SYNC)) {
Robin Murphy2c3d2732017-06-22 16:53:54 +0100387 __arm_lpae_sync_pte(ptep, cfg);
388 }
389
Rob Herringd08d42d2019-02-21 14:23:25 -0600390 if (pte && !iopte_leaf(pte, lvl, data->iop.fmt)) {
Will Deacone1d3c0f2014-11-14 17:18:23 +0000391 cptep = iopte_deref(pte, data);
Robin Murphy2c3d2732017-06-22 16:53:54 +0100392 } else if (pte) {
Oleksandr Tyshchenkoed46e662017-02-27 14:30:25 +0200393 /* We require an unmap first */
394 WARN_ON(!selftest_running);
395 return -EEXIST;
Will Deacone1d3c0f2014-11-14 17:18:23 +0000396 }
397
398 /* Rinse, repeat */
399 return __arm_lpae_map(data, iova, paddr, size, prot, lvl + 1, cptep);
400}
401
402static arm_lpae_iopte arm_lpae_prot_to_pte(struct arm_lpae_io_pgtable *data,
403 int prot)
404{
405 arm_lpae_iopte pte;
406
407 if (data->iop.fmt == ARM_64_LPAE_S1 ||
408 data->iop.fmt == ARM_32_LPAE_S1) {
Jeremy Gebbene7468a22017-01-06 18:58:09 +0530409 pte = ARM_LPAE_PTE_nG;
Will Deacone1d3c0f2014-11-14 17:18:23 +0000410 if (!(prot & IOMMU_WRITE) && (prot & IOMMU_READ))
411 pte |= ARM_LPAE_PTE_AP_RDONLY;
Jeremy Gebbene7468a22017-01-06 18:58:09 +0530412 if (!(prot & IOMMU_PRIV))
413 pte |= ARM_LPAE_PTE_AP_UNPRIV;
Will Deacone1d3c0f2014-11-14 17:18:23 +0000414 } else {
415 pte = ARM_LPAE_PTE_HAP_FAULT;
416 if (prot & IOMMU_READ)
417 pte |= ARM_LPAE_PTE_HAP_READ;
418 if (prot & IOMMU_WRITE)
419 pte |= ARM_LPAE_PTE_HAP_WRITE;
Rob Herringd08d42d2019-02-21 14:23:25 -0600420 }
421
422 /*
423 * Note that this logic is structured to accommodate Mali LPAE
424 * having stage-1-like attributes but stage-2-like permissions.
425 */
426 if (data->iop.fmt == ARM_64_LPAE_S2 ||
427 data->iop.fmt == ARM_32_LPAE_S2) {
Robin Murphyfb948252016-04-05 12:39:31 +0100428 if (prot & IOMMU_MMIO)
429 pte |= ARM_LPAE_PTE_MEMATTR_DEV;
430 else if (prot & IOMMU_CACHE)
Will Deacone1d3c0f2014-11-14 17:18:23 +0000431 pte |= ARM_LPAE_PTE_MEMATTR_OIWB;
432 else
433 pte |= ARM_LPAE_PTE_MEMATTR_NC;
Rob Herringd08d42d2019-02-21 14:23:25 -0600434 } else {
435 if (prot & IOMMU_MMIO)
436 pte |= (ARM_LPAE_MAIR_ATTR_IDX_DEV
437 << ARM_LPAE_PTE_ATTRINDX_SHIFT);
438 else if (prot & IOMMU_CACHE)
439 pte |= (ARM_LPAE_MAIR_ATTR_IDX_CACHE
440 << ARM_LPAE_PTE_ATTRINDX_SHIFT);
Will Deacondd5ddd32019-10-24 16:57:39 +0100441 else if (prot & IOMMU_SYS_CACHE_ONLY)
Vivek Gautam90ec7a72019-05-16 15:00:20 +0530442 pte |= (ARM_LPAE_MAIR_ATTR_IDX_INC_OCACHE
443 << ARM_LPAE_PTE_ATTRINDX_SHIFT);
Will Deacone1d3c0f2014-11-14 17:18:23 +0000444 }
445
Robin Murphy7618e472020-01-10 15:21:51 +0000446 if (prot & IOMMU_CACHE)
447 pte |= ARM_LPAE_PTE_SH_IS;
448 else
449 pte |= ARM_LPAE_PTE_SH_OS;
450
Will Deacone1d3c0f2014-11-14 17:18:23 +0000451 if (prot & IOMMU_NOEXEC)
452 pte |= ARM_LPAE_PTE_XN;
453
Robin Murphy7618e472020-01-10 15:21:51 +0000454 if (data->iop.cfg.quirks & IO_PGTABLE_QUIRK_ARM_NS)
455 pte |= ARM_LPAE_PTE_NS;
456
457 if (data->iop.fmt != ARM_MALI_LPAE)
458 pte |= ARM_LPAE_PTE_AF;
459
Will Deacone1d3c0f2014-11-14 17:18:23 +0000460 return pte;
461}
462
463static int arm_lpae_map(struct io_pgtable_ops *ops, unsigned long iova,
464 phys_addr_t paddr, size_t size, int iommu_prot)
465{
466 struct arm_lpae_io_pgtable *data = io_pgtable_ops_to_data(ops);
Robin Murphyf7b90d22019-10-25 19:08:31 +0100467 struct io_pgtable_cfg *cfg = &data->iop.cfg;
Will Deacone1d3c0f2014-11-14 17:18:23 +0000468 arm_lpae_iopte *ptep = data->pgd;
Robin Murphy594ab902019-10-25 19:08:33 +0100469 int ret, lvl = data->start_level;
Will Deacone1d3c0f2014-11-14 17:18:23 +0000470 arm_lpae_iopte prot;
Robin Murphy08090742020-02-28 14:18:55 +0000471 long iaext = (s64)iova >> cfg->ias;
Will Deacone1d3c0f2014-11-14 17:18:23 +0000472
473 /* If no access, then nothing to do */
474 if (!(iommu_prot & (IOMMU_READ | IOMMU_WRITE)))
475 return 0;
476
Robin Murphyf7b90d22019-10-25 19:08:31 +0100477 if (WARN_ON(!size || (size & cfg->pgsize_bitmap) != size))
478 return -EINVAL;
479
Robin Murphydb690302019-10-25 19:08:39 +0100480 if (cfg->quirks & IO_PGTABLE_QUIRK_ARM_TTBR1)
481 iaext = ~iaext;
482 if (WARN_ON(iaext || paddr >> cfg->oas))
Robin Murphy76557392017-07-03 14:52:24 +0100483 return -ERANGE;
484
Will Deacone1d3c0f2014-11-14 17:18:23 +0000485 prot = arm_lpae_prot_to_pte(data, iommu_prot);
Robin Murphy87a91b12015-07-29 19:46:09 +0100486 ret = __arm_lpae_map(data, iova, paddr, size, prot, lvl, ptep);
487 /*
488 * Synchronise all PTE updates for the new mapping before there's
489 * a chance for anything to kick off a table walk for the new iova.
490 */
491 wmb();
492
493 return ret;
Will Deacone1d3c0f2014-11-14 17:18:23 +0000494}
495
496static void __arm_lpae_free_pgtable(struct arm_lpae_io_pgtable *data, int lvl,
497 arm_lpae_iopte *ptep)
498{
499 arm_lpae_iopte *start, *end;
500 unsigned long table_size;
501
Robin Murphy594ab902019-10-25 19:08:33 +0100502 if (lvl == data->start_level)
Robin Murphyc79278c2019-10-25 19:08:34 +0100503 table_size = ARM_LPAE_PGD_SIZE(data);
Will Deacone1d3c0f2014-11-14 17:18:23 +0000504 else
Robin Murphy06c610e2015-12-07 18:18:53 +0000505 table_size = ARM_LPAE_GRANULE(data);
Will Deacone1d3c0f2014-11-14 17:18:23 +0000506
507 start = ptep;
Will Deacon12c2ab02015-12-15 16:08:12 +0000508
509 /* Only leaf entries at the last level */
510 if (lvl == ARM_LPAE_MAX_LEVELS - 1)
511 end = ptep;
512 else
513 end = (void *)ptep + table_size;
Will Deacone1d3c0f2014-11-14 17:18:23 +0000514
515 while (ptep != end) {
516 arm_lpae_iopte pte = *ptep++;
517
Rob Herringd08d42d2019-02-21 14:23:25 -0600518 if (!pte || iopte_leaf(pte, lvl, data->iop.fmt))
Will Deacone1d3c0f2014-11-14 17:18:23 +0000519 continue;
520
521 __arm_lpae_free_pgtable(data, lvl + 1, iopte_deref(pte, data));
522 }
523
Robin Murphyf8d54962015-07-29 19:46:04 +0100524 __arm_lpae_free_pages(start, table_size, &data->iop.cfg);
Will Deacone1d3c0f2014-11-14 17:18:23 +0000525}
526
527static void arm_lpae_free_pgtable(struct io_pgtable *iop)
528{
529 struct arm_lpae_io_pgtable *data = io_pgtable_to_data(iop);
530
Robin Murphy594ab902019-10-25 19:08:33 +0100531 __arm_lpae_free_pgtable(data, data->start_level, data->pgd);
Will Deacone1d3c0f2014-11-14 17:18:23 +0000532 kfree(data);
533}
534
Vivek Gautam193e67c2018-02-05 23:29:19 +0530535static size_t arm_lpae_split_blk_unmap(struct arm_lpae_io_pgtable *data,
Will Deacon3951c412019-07-02 16:45:15 +0100536 struct iommu_iotlb_gather *gather,
Vivek Gautam193e67c2018-02-05 23:29:19 +0530537 unsigned long iova, size_t size,
538 arm_lpae_iopte blk_pte, int lvl,
539 arm_lpae_iopte *ptep)
Will Deacone1d3c0f2014-11-14 17:18:23 +0000540{
Robin Murphyfb3a9572017-06-22 16:53:51 +0100541 struct io_pgtable_cfg *cfg = &data->iop.cfg;
542 arm_lpae_iopte pte, *tablep;
Will Deacone1d3c0f2014-11-14 17:18:23 +0000543 phys_addr_t blk_paddr;
Robin Murphyfb3a9572017-06-22 16:53:51 +0100544 size_t tablesz = ARM_LPAE_GRANULE(data);
545 size_t split_sz = ARM_LPAE_BLOCK_SIZE(lvl, data);
546 int i, unmap_idx = -1;
Will Deacone1d3c0f2014-11-14 17:18:23 +0000547
Robin Murphyfb3a9572017-06-22 16:53:51 +0100548 if (WARN_ON(lvl == ARM_LPAE_MAX_LEVELS))
549 return 0;
Will Deacone1d3c0f2014-11-14 17:18:23 +0000550
Robin Murphyfb3a9572017-06-22 16:53:51 +0100551 tablep = __arm_lpae_alloc_pages(tablesz, GFP_ATOMIC, cfg);
552 if (!tablep)
553 return 0; /* Bytes unmapped */
Will Deacone1d3c0f2014-11-14 17:18:23 +0000554
Robin Murphyfb3a9572017-06-22 16:53:51 +0100555 if (size == split_sz)
556 unmap_idx = ARM_LPAE_LVL_IDX(iova, lvl, data);
557
Robin Murphy6c899282018-03-26 13:35:13 +0100558 blk_paddr = iopte_to_paddr(blk_pte, data);
Robin Murphyfb3a9572017-06-22 16:53:51 +0100559 pte = iopte_prot(blk_pte);
560
561 for (i = 0; i < tablesz / sizeof(pte); i++, blk_paddr += split_sz) {
Will Deacone1d3c0f2014-11-14 17:18:23 +0000562 /* Unmap! */
Robin Murphyfb3a9572017-06-22 16:53:51 +0100563 if (i == unmap_idx)
Will Deacone1d3c0f2014-11-14 17:18:23 +0000564 continue;
565
Robin Murphyfb3a9572017-06-22 16:53:51 +0100566 __arm_lpae_init_pte(data, blk_paddr, pte, lvl, &tablep[i]);
Will Deacone1d3c0f2014-11-14 17:18:23 +0000567 }
568
Robin Murphy2c3d2732017-06-22 16:53:54 +0100569 pte = arm_lpae_install_table(tablep, ptep, blk_pte, cfg);
570 if (pte != blk_pte) {
571 __arm_lpae_free_pages(tablep, tablesz, cfg);
572 /*
573 * We may race against someone unmapping another part of this
574 * block, but anything else is invalid. We can't misinterpret
575 * a page entry here since we're never at the last level.
576 */
577 if (iopte_type(pte, lvl - 1) != ARM_LPAE_PTE_TYPE_TABLE)
578 return 0;
579
580 tablep = iopte_deref(pte, data);
Robin Murphy85c7a0f2018-09-06 17:59:50 +0100581 } else if (unmap_idx >= 0) {
Will Deacon3951c412019-07-02 16:45:15 +0100582 io_pgtable_tlb_add_page(&data->iop, gather, iova, size);
Robin Murphy85c7a0f2018-09-06 17:59:50 +0100583 return size;
Robin Murphy2c3d2732017-06-22 16:53:54 +0100584 }
Robin Murphyfb3a9572017-06-22 16:53:51 +0100585
Will Deacon3951c412019-07-02 16:45:15 +0100586 return __arm_lpae_unmap(data, gather, iova, size, lvl, tablep);
Will Deacone1d3c0f2014-11-14 17:18:23 +0000587}
588
Vivek Gautam193e67c2018-02-05 23:29:19 +0530589static size_t __arm_lpae_unmap(struct arm_lpae_io_pgtable *data,
Will Deacon3951c412019-07-02 16:45:15 +0100590 struct iommu_iotlb_gather *gather,
Vivek Gautam193e67c2018-02-05 23:29:19 +0530591 unsigned long iova, size_t size, int lvl,
592 arm_lpae_iopte *ptep)
Will Deacone1d3c0f2014-11-14 17:18:23 +0000593{
594 arm_lpae_iopte pte;
Robin Murphy507e4c92016-01-26 17:13:14 +0000595 struct io_pgtable *iop = &data->iop;
Will Deacone1d3c0f2014-11-14 17:18:23 +0000596
Robin Murphy2eb97c72015-12-04 17:52:58 +0000597 /* Something went horribly wrong and we ran out of page table */
598 if (WARN_ON(lvl == ARM_LPAE_MAX_LEVELS))
599 return 0;
600
Will Deacone1d3c0f2014-11-14 17:18:23 +0000601 ptep += ARM_LPAE_LVL_IDX(iova, lvl, data);
Robin Murphy2c3d2732017-06-22 16:53:54 +0100602 pte = READ_ONCE(*ptep);
Robin Murphy2eb97c72015-12-04 17:52:58 +0000603 if (WARN_ON(!pte))
Will Deacone1d3c0f2014-11-14 17:18:23 +0000604 return 0;
605
606 /* If the size matches this level, we're in the right place */
Robin Murphyfb3a9572017-06-22 16:53:51 +0100607 if (size == ARM_LPAE_BLOCK_SIZE(lvl, data)) {
Robin Murphy507e4c92016-01-26 17:13:14 +0000608 __arm_lpae_set_pte(ptep, 0, &iop->cfg);
Will Deacone1d3c0f2014-11-14 17:18:23 +0000609
Rob Herringd08d42d2019-02-21 14:23:25 -0600610 if (!iopte_leaf(pte, lvl, iop->fmt)) {
Will Deacone1d3c0f2014-11-14 17:18:23 +0000611 /* Also flush any partial walks */
Will Deacon10b7a7d2019-07-02 16:44:32 +0100612 io_pgtable_tlb_flush_walk(iop, iova, size,
613 ARM_LPAE_GRANULE(data));
Will Deacone1d3c0f2014-11-14 17:18:23 +0000614 ptep = iopte_deref(pte, data);
615 __arm_lpae_free_pgtable(data, lvl + 1, ptep);
Zhen Leib6b65ca2018-09-20 17:10:24 +0100616 } else if (iop->cfg.quirks & IO_PGTABLE_QUIRK_NON_STRICT) {
617 /*
618 * Order the PTE update against queueing the IOVA, to
619 * guarantee that a flush callback from a different CPU
620 * has observed it before the TLBIALL can be issued.
621 */
622 smp_wmb();
Will Deacone1d3c0f2014-11-14 17:18:23 +0000623 } else {
Will Deacon3951c412019-07-02 16:45:15 +0100624 io_pgtable_tlb_add_page(iop, gather, iova, size);
Will Deacone1d3c0f2014-11-14 17:18:23 +0000625 }
626
627 return size;
Rob Herringd08d42d2019-02-21 14:23:25 -0600628 } else if (iopte_leaf(pte, lvl, iop->fmt)) {
Will Deacone1d3c0f2014-11-14 17:18:23 +0000629 /*
630 * Insert a table at the next level to map the old region,
631 * minus the part we want to unmap
632 */
Will Deacon3951c412019-07-02 16:45:15 +0100633 return arm_lpae_split_blk_unmap(data, gather, iova, size, pte,
Robin Murphyfb3a9572017-06-22 16:53:51 +0100634 lvl + 1, ptep);
Will Deacone1d3c0f2014-11-14 17:18:23 +0000635 }
636
637 /* Keep on walkin' */
638 ptep = iopte_deref(pte, data);
Will Deacon3951c412019-07-02 16:45:15 +0100639 return __arm_lpae_unmap(data, gather, iova, size, lvl + 1, ptep);
Will Deacone1d3c0f2014-11-14 17:18:23 +0000640}
641
Vivek Gautam193e67c2018-02-05 23:29:19 +0530642static size_t arm_lpae_unmap(struct io_pgtable_ops *ops, unsigned long iova,
Will Deacona2d3a382019-07-02 16:44:58 +0100643 size_t size, struct iommu_iotlb_gather *gather)
Will Deacone1d3c0f2014-11-14 17:18:23 +0000644{
Will Deacone1d3c0f2014-11-14 17:18:23 +0000645 struct arm_lpae_io_pgtable *data = io_pgtable_ops_to_data(ops);
Robin Murphyf7b90d22019-10-25 19:08:31 +0100646 struct io_pgtable_cfg *cfg = &data->iop.cfg;
Will Deacone1d3c0f2014-11-14 17:18:23 +0000647 arm_lpae_iopte *ptep = data->pgd;
Robin Murphy08090742020-02-28 14:18:55 +0000648 long iaext = (s64)iova >> cfg->ias;
Will Deacone1d3c0f2014-11-14 17:18:23 +0000649
Robin Murphyf7b90d22019-10-25 19:08:31 +0100650 if (WARN_ON(!size || (size & cfg->pgsize_bitmap) != size))
651 return 0;
652
Robin Murphydb690302019-10-25 19:08:39 +0100653 if (cfg->quirks & IO_PGTABLE_QUIRK_ARM_TTBR1)
654 iaext = ~iaext;
655 if (WARN_ON(iaext))
Robin Murphy76557392017-07-03 14:52:24 +0100656 return 0;
657
Robin Murphy594ab902019-10-25 19:08:33 +0100658 return __arm_lpae_unmap(data, gather, iova, size, data->start_level, ptep);
Will Deacone1d3c0f2014-11-14 17:18:23 +0000659}
660
661static phys_addr_t arm_lpae_iova_to_phys(struct io_pgtable_ops *ops,
662 unsigned long iova)
663{
664 struct arm_lpae_io_pgtable *data = io_pgtable_ops_to_data(ops);
665 arm_lpae_iopte pte, *ptep = data->pgd;
Robin Murphy594ab902019-10-25 19:08:33 +0100666 int lvl = data->start_level;
Will Deacone1d3c0f2014-11-14 17:18:23 +0000667
668 do {
669 /* Valid IOPTE pointer? */
670 if (!ptep)
671 return 0;
672
673 /* Grab the IOPTE we're interested in */
Robin Murphy2c3d2732017-06-22 16:53:54 +0100674 ptep += ARM_LPAE_LVL_IDX(iova, lvl, data);
675 pte = READ_ONCE(*ptep);
Will Deacone1d3c0f2014-11-14 17:18:23 +0000676
677 /* Valid entry? */
678 if (!pte)
679 return 0;
680
681 /* Leaf entry? */
Rob Herringd08d42d2019-02-21 14:23:25 -0600682 if (iopte_leaf(pte, lvl, data->iop.fmt))
Will Deacone1d3c0f2014-11-14 17:18:23 +0000683 goto found_translation;
684
685 /* Take it to the next level */
686 ptep = iopte_deref(pte, data);
687 } while (++lvl < ARM_LPAE_MAX_LEVELS);
688
689 /* Ran out of page tables to walk */
690 return 0;
691
692found_translation:
Will Deacon7c6d90e2016-06-16 18:21:19 +0100693 iova &= (ARM_LPAE_BLOCK_SIZE(lvl, data) - 1);
Robin Murphy6c899282018-03-26 13:35:13 +0100694 return iopte_to_paddr(pte, data) | iova;
Will Deacone1d3c0f2014-11-14 17:18:23 +0000695}
696
697static void arm_lpae_restrict_pgsizes(struct io_pgtable_cfg *cfg)
698{
Robin Murphy6c899282018-03-26 13:35:13 +0100699 unsigned long granule, page_sizes;
700 unsigned int max_addr_bits = 48;
Will Deacone1d3c0f2014-11-14 17:18:23 +0000701
702 /*
703 * We need to restrict the supported page sizes to match the
704 * translation regime for a particular granule. Aim to match
705 * the CPU page size if possible, otherwise prefer smaller sizes.
706 * While we're at it, restrict the block sizes to match the
707 * chosen granule.
708 */
709 if (cfg->pgsize_bitmap & PAGE_SIZE)
710 granule = PAGE_SIZE;
711 else if (cfg->pgsize_bitmap & ~PAGE_MASK)
712 granule = 1UL << __fls(cfg->pgsize_bitmap & ~PAGE_MASK);
713 else if (cfg->pgsize_bitmap & PAGE_MASK)
714 granule = 1UL << __ffs(cfg->pgsize_bitmap & PAGE_MASK);
715 else
716 granule = 0;
717
718 switch (granule) {
719 case SZ_4K:
Robin Murphy6c899282018-03-26 13:35:13 +0100720 page_sizes = (SZ_4K | SZ_2M | SZ_1G);
Will Deacone1d3c0f2014-11-14 17:18:23 +0000721 break;
722 case SZ_16K:
Robin Murphy6c899282018-03-26 13:35:13 +0100723 page_sizes = (SZ_16K | SZ_32M);
Will Deacone1d3c0f2014-11-14 17:18:23 +0000724 break;
725 case SZ_64K:
Robin Murphy6c899282018-03-26 13:35:13 +0100726 max_addr_bits = 52;
727 page_sizes = (SZ_64K | SZ_512M);
728 if (cfg->oas > 48)
729 page_sizes |= 1ULL << 42; /* 4TB */
Will Deacone1d3c0f2014-11-14 17:18:23 +0000730 break;
731 default:
Robin Murphy6c899282018-03-26 13:35:13 +0100732 page_sizes = 0;
Will Deacone1d3c0f2014-11-14 17:18:23 +0000733 }
Robin Murphy6c899282018-03-26 13:35:13 +0100734
735 cfg->pgsize_bitmap &= page_sizes;
736 cfg->ias = min(cfg->ias, max_addr_bits);
737 cfg->oas = min(cfg->oas, max_addr_bits);
Will Deacone1d3c0f2014-11-14 17:18:23 +0000738}
739
740static struct arm_lpae_io_pgtable *
741arm_lpae_alloc_pgtable(struct io_pgtable_cfg *cfg)
742{
Will Deacone1d3c0f2014-11-14 17:18:23 +0000743 struct arm_lpae_io_pgtable *data;
Robin Murphy5fb190b2019-10-25 19:08:35 +0100744 int levels, va_bits, pg_shift;
Will Deacone1d3c0f2014-11-14 17:18:23 +0000745
746 arm_lpae_restrict_pgsizes(cfg);
747
748 if (!(cfg->pgsize_bitmap & (SZ_4K | SZ_16K | SZ_64K)))
749 return NULL;
750
751 if (cfg->ias > ARM_LPAE_MAX_ADDR_BITS)
752 return NULL;
753
754 if (cfg->oas > ARM_LPAE_MAX_ADDR_BITS)
755 return NULL;
756
Robin Murphyffcb6d12015-09-17 17:42:16 +0100757 if (!selftest_running && cfg->iommu_dev->dma_pfn_offset) {
758 dev_err(cfg->iommu_dev, "Cannot accommodate DMA offset for IOMMU page tables\n");
759 return NULL;
760 }
761
Will Deacone1d3c0f2014-11-14 17:18:23 +0000762 data = kmalloc(sizeof(*data), GFP_KERNEL);
763 if (!data)
764 return NULL;
765
Robin Murphy5fb190b2019-10-25 19:08:35 +0100766 pg_shift = __ffs(cfg->pgsize_bitmap);
767 data->bits_per_level = pg_shift - ilog2(sizeof(arm_lpae_iopte));
Will Deacone1d3c0f2014-11-14 17:18:23 +0000768
Robin Murphy5fb190b2019-10-25 19:08:35 +0100769 va_bits = cfg->ias - pg_shift;
Robin Murphy594ab902019-10-25 19:08:33 +0100770 levels = DIV_ROUND_UP(va_bits, data->bits_per_level);
771 data->start_level = ARM_LPAE_MAX_LEVELS - levels;
Will Deacone1d3c0f2014-11-14 17:18:23 +0000772
773 /* Calculate the actual size of our pgd (without concatenation) */
Robin Murphyc79278c2019-10-25 19:08:34 +0100774 data->pgd_bits = va_bits - (data->bits_per_level * (levels - 1));
Will Deacone1d3c0f2014-11-14 17:18:23 +0000775
776 data->iop.ops = (struct io_pgtable_ops) {
777 .map = arm_lpae_map,
778 .unmap = arm_lpae_unmap,
779 .iova_to_phys = arm_lpae_iova_to_phys,
780 };
781
782 return data;
783}
784
785static struct io_pgtable *
786arm_64_lpae_alloc_pgtable_s1(struct io_pgtable_cfg *cfg, void *cookie)
787{
788 u64 reg;
Robin Murphy3850db42016-02-12 17:09:46 +0000789 struct arm_lpae_io_pgtable *data;
Robin Murphyfb485eb2019-10-25 19:08:38 +0100790 typeof(&cfg->arm_lpae_s1_cfg.tcr) tcr = &cfg->arm_lpae_s1_cfg.tcr;
Robin Murphydb690302019-10-25 19:08:39 +0100791 bool tg1;
Will Deacone1d3c0f2014-11-14 17:18:23 +0000792
Will Deacon4f418452019-06-25 12:51:25 +0100793 if (cfg->quirks & ~(IO_PGTABLE_QUIRK_ARM_NS |
Robin Murphydb690302019-10-25 19:08:39 +0100794 IO_PGTABLE_QUIRK_NON_STRICT |
795 IO_PGTABLE_QUIRK_ARM_TTBR1))
Robin Murphy3850db42016-02-12 17:09:46 +0000796 return NULL;
797
798 data = arm_lpae_alloc_pgtable(cfg);
Will Deacone1d3c0f2014-11-14 17:18:23 +0000799 if (!data)
800 return NULL;
801
802 /* TCR */
Bjorn Andersson9e6ea592019-05-15 16:32:34 -0700803 if (cfg->coherent_walk) {
Robin Murphyfb485eb2019-10-25 19:08:38 +0100804 tcr->sh = ARM_LPAE_TCR_SH_IS;
805 tcr->irgn = ARM_LPAE_TCR_RGN_WBWA;
806 tcr->orgn = ARM_LPAE_TCR_RGN_WBWA;
Bjorn Andersson9e6ea592019-05-15 16:32:34 -0700807 } else {
Robin Murphyfb485eb2019-10-25 19:08:38 +0100808 tcr->sh = ARM_LPAE_TCR_SH_OS;
809 tcr->irgn = ARM_LPAE_TCR_RGN_NC;
810 tcr->orgn = ARM_LPAE_TCR_RGN_NC;
Bjorn Andersson9e6ea592019-05-15 16:32:34 -0700811 }
Will Deacone1d3c0f2014-11-14 17:18:23 +0000812
Robin Murphydb690302019-10-25 19:08:39 +0100813 tg1 = cfg->quirks & IO_PGTABLE_QUIRK_ARM_TTBR1;
Robin Murphy06c610e2015-12-07 18:18:53 +0000814 switch (ARM_LPAE_GRANULE(data)) {
Will Deacone1d3c0f2014-11-14 17:18:23 +0000815 case SZ_4K:
Robin Murphydb690302019-10-25 19:08:39 +0100816 tcr->tg = tg1 ? ARM_LPAE_TCR_TG1_4K : ARM_LPAE_TCR_TG0_4K;
Will Deacone1d3c0f2014-11-14 17:18:23 +0000817 break;
818 case SZ_16K:
Robin Murphydb690302019-10-25 19:08:39 +0100819 tcr->tg = tg1 ? ARM_LPAE_TCR_TG1_16K : ARM_LPAE_TCR_TG0_16K;
Will Deacone1d3c0f2014-11-14 17:18:23 +0000820 break;
821 case SZ_64K:
Robin Murphydb690302019-10-25 19:08:39 +0100822 tcr->tg = tg1 ? ARM_LPAE_TCR_TG1_64K : ARM_LPAE_TCR_TG0_64K;
Will Deacone1d3c0f2014-11-14 17:18:23 +0000823 break;
824 }
825
826 switch (cfg->oas) {
827 case 32:
Robin Murphyfb485eb2019-10-25 19:08:38 +0100828 tcr->ips = ARM_LPAE_TCR_PS_32_BIT;
Will Deacone1d3c0f2014-11-14 17:18:23 +0000829 break;
830 case 36:
Robin Murphyfb485eb2019-10-25 19:08:38 +0100831 tcr->ips = ARM_LPAE_TCR_PS_36_BIT;
Will Deacone1d3c0f2014-11-14 17:18:23 +0000832 break;
833 case 40:
Robin Murphyfb485eb2019-10-25 19:08:38 +0100834 tcr->ips = ARM_LPAE_TCR_PS_40_BIT;
Will Deacone1d3c0f2014-11-14 17:18:23 +0000835 break;
836 case 42:
Robin Murphyfb485eb2019-10-25 19:08:38 +0100837 tcr->ips = ARM_LPAE_TCR_PS_42_BIT;
Will Deacone1d3c0f2014-11-14 17:18:23 +0000838 break;
839 case 44:
Robin Murphyfb485eb2019-10-25 19:08:38 +0100840 tcr->ips = ARM_LPAE_TCR_PS_44_BIT;
Will Deacone1d3c0f2014-11-14 17:18:23 +0000841 break;
842 case 48:
Robin Murphyfb485eb2019-10-25 19:08:38 +0100843 tcr->ips = ARM_LPAE_TCR_PS_48_BIT;
Will Deacone1d3c0f2014-11-14 17:18:23 +0000844 break;
Robin Murphy6c899282018-03-26 13:35:13 +0100845 case 52:
Robin Murphyfb485eb2019-10-25 19:08:38 +0100846 tcr->ips = ARM_LPAE_TCR_PS_52_BIT;
Robin Murphy6c899282018-03-26 13:35:13 +0100847 break;
Will Deacone1d3c0f2014-11-14 17:18:23 +0000848 default:
849 goto out_free_data;
850 }
851
Robin Murphyfb485eb2019-10-25 19:08:38 +0100852 tcr->tsz = 64ULL - cfg->ias;
Will Deacone1d3c0f2014-11-14 17:18:23 +0000853
854 /* MAIRs */
855 reg = (ARM_LPAE_MAIR_ATTR_NC
856 << ARM_LPAE_MAIR_ATTR_SHIFT(ARM_LPAE_MAIR_ATTR_IDX_NC)) |
857 (ARM_LPAE_MAIR_ATTR_WBRWA
858 << ARM_LPAE_MAIR_ATTR_SHIFT(ARM_LPAE_MAIR_ATTR_IDX_CACHE)) |
859 (ARM_LPAE_MAIR_ATTR_DEVICE
Vivek Gautam90ec7a72019-05-16 15:00:20 +0530860 << ARM_LPAE_MAIR_ATTR_SHIFT(ARM_LPAE_MAIR_ATTR_IDX_DEV)) |
861 (ARM_LPAE_MAIR_ATTR_INC_OWBRWA
862 << ARM_LPAE_MAIR_ATTR_SHIFT(ARM_LPAE_MAIR_ATTR_IDX_INC_OCACHE));
Will Deacone1d3c0f2014-11-14 17:18:23 +0000863
Robin Murphy205577a2019-10-25 19:08:36 +0100864 cfg->arm_lpae_s1_cfg.mair = reg;
Will Deacone1d3c0f2014-11-14 17:18:23 +0000865
866 /* Looking good; allocate a pgd */
Robin Murphyc79278c2019-10-25 19:08:34 +0100867 data->pgd = __arm_lpae_alloc_pages(ARM_LPAE_PGD_SIZE(data),
868 GFP_KERNEL, cfg);
Will Deacone1d3c0f2014-11-14 17:18:23 +0000869 if (!data->pgd)
870 goto out_free_data;
871
Robin Murphy87a91b12015-07-29 19:46:09 +0100872 /* Ensure the empty pgd is visible before any actual TTBR write */
873 wmb();
Will Deacone1d3c0f2014-11-14 17:18:23 +0000874
Robin Murphyd1e5f262019-10-25 19:08:37 +0100875 /* TTBR */
876 cfg->arm_lpae_s1_cfg.ttbr = virt_to_phys(data->pgd);
Will Deacone1d3c0f2014-11-14 17:18:23 +0000877 return &data->iop;
878
879out_free_data:
880 kfree(data);
881 return NULL;
882}
883
884static struct io_pgtable *
885arm_64_lpae_alloc_pgtable_s2(struct io_pgtable_cfg *cfg, void *cookie)
886{
Will Deaconac4b80e2020-01-10 14:51:59 +0000887 u64 sl;
Robin Murphy3850db42016-02-12 17:09:46 +0000888 struct arm_lpae_io_pgtable *data;
Will Deaconac4b80e2020-01-10 14:51:59 +0000889 typeof(&cfg->arm_lpae_s2_cfg.vtcr) vtcr = &cfg->arm_lpae_s2_cfg.vtcr;
Will Deacone1d3c0f2014-11-14 17:18:23 +0000890
Robin Murphy3850db42016-02-12 17:09:46 +0000891 /* The NS quirk doesn't apply at stage 2 */
Will Deacon4f418452019-06-25 12:51:25 +0100892 if (cfg->quirks & ~(IO_PGTABLE_QUIRK_NON_STRICT))
Robin Murphy3850db42016-02-12 17:09:46 +0000893 return NULL;
894
895 data = arm_lpae_alloc_pgtable(cfg);
Will Deacone1d3c0f2014-11-14 17:18:23 +0000896 if (!data)
897 return NULL;
898
899 /*
900 * Concatenate PGDs at level 1 if possible in order to reduce
901 * the depth of the stage-2 walk.
902 */
Robin Murphy594ab902019-10-25 19:08:33 +0100903 if (data->start_level == 0) {
Will Deacone1d3c0f2014-11-14 17:18:23 +0000904 unsigned long pgd_pages;
905
Robin Murphyc79278c2019-10-25 19:08:34 +0100906 pgd_pages = ARM_LPAE_PGD_SIZE(data) / sizeof(arm_lpae_iopte);
Will Deacone1d3c0f2014-11-14 17:18:23 +0000907 if (pgd_pages <= ARM_LPAE_S2_MAX_CONCAT_PAGES) {
Robin Murphyc79278c2019-10-25 19:08:34 +0100908 data->pgd_bits += data->bits_per_level;
Robin Murphy594ab902019-10-25 19:08:33 +0100909 data->start_level++;
Will Deacone1d3c0f2014-11-14 17:18:23 +0000910 }
911 }
912
913 /* VTCR */
Will Deacon30d2acb2020-01-10 11:40:33 +0000914 if (cfg->coherent_walk) {
Will Deaconac4b80e2020-01-10 14:51:59 +0000915 vtcr->sh = ARM_LPAE_TCR_SH_IS;
916 vtcr->irgn = ARM_LPAE_TCR_RGN_WBWA;
917 vtcr->orgn = ARM_LPAE_TCR_RGN_WBWA;
Will Deacon30d2acb2020-01-10 11:40:33 +0000918 } else {
Will Deaconac4b80e2020-01-10 14:51:59 +0000919 vtcr->sh = ARM_LPAE_TCR_SH_OS;
920 vtcr->irgn = ARM_LPAE_TCR_RGN_NC;
921 vtcr->orgn = ARM_LPAE_TCR_RGN_NC;
Will Deacon30d2acb2020-01-10 11:40:33 +0000922 }
Will Deacone1d3c0f2014-11-14 17:18:23 +0000923
Robin Murphy594ab902019-10-25 19:08:33 +0100924 sl = data->start_level;
Will Deacone1d3c0f2014-11-14 17:18:23 +0000925
Robin Murphy06c610e2015-12-07 18:18:53 +0000926 switch (ARM_LPAE_GRANULE(data)) {
Will Deacone1d3c0f2014-11-14 17:18:23 +0000927 case SZ_4K:
Will Deaconac4b80e2020-01-10 14:51:59 +0000928 vtcr->tg = ARM_LPAE_TCR_TG0_4K;
Will Deacone1d3c0f2014-11-14 17:18:23 +0000929 sl++; /* SL0 format is different for 4K granule size */
930 break;
931 case SZ_16K:
Will Deaconac4b80e2020-01-10 14:51:59 +0000932 vtcr->tg = ARM_LPAE_TCR_TG0_16K;
Will Deacone1d3c0f2014-11-14 17:18:23 +0000933 break;
934 case SZ_64K:
Will Deaconac4b80e2020-01-10 14:51:59 +0000935 vtcr->tg = ARM_LPAE_TCR_TG0_64K;
Will Deacone1d3c0f2014-11-14 17:18:23 +0000936 break;
937 }
938
939 switch (cfg->oas) {
940 case 32:
Will Deaconac4b80e2020-01-10 14:51:59 +0000941 vtcr->ps = ARM_LPAE_TCR_PS_32_BIT;
Will Deacone1d3c0f2014-11-14 17:18:23 +0000942 break;
943 case 36:
Will Deaconac4b80e2020-01-10 14:51:59 +0000944 vtcr->ps = ARM_LPAE_TCR_PS_36_BIT;
Will Deacone1d3c0f2014-11-14 17:18:23 +0000945 break;
946 case 40:
Will Deaconac4b80e2020-01-10 14:51:59 +0000947 vtcr->ps = ARM_LPAE_TCR_PS_40_BIT;
Will Deacone1d3c0f2014-11-14 17:18:23 +0000948 break;
949 case 42:
Will Deaconac4b80e2020-01-10 14:51:59 +0000950 vtcr->ps = ARM_LPAE_TCR_PS_42_BIT;
Will Deacone1d3c0f2014-11-14 17:18:23 +0000951 break;
952 case 44:
Will Deaconac4b80e2020-01-10 14:51:59 +0000953 vtcr->ps = ARM_LPAE_TCR_PS_44_BIT;
Will Deacone1d3c0f2014-11-14 17:18:23 +0000954 break;
955 case 48:
Will Deaconac4b80e2020-01-10 14:51:59 +0000956 vtcr->ps = ARM_LPAE_TCR_PS_48_BIT;
Will Deacone1d3c0f2014-11-14 17:18:23 +0000957 break;
Robin Murphy6c899282018-03-26 13:35:13 +0100958 case 52:
Will Deaconac4b80e2020-01-10 14:51:59 +0000959 vtcr->ps = ARM_LPAE_TCR_PS_52_BIT;
Robin Murphy6c899282018-03-26 13:35:13 +0100960 break;
Will Deacone1d3c0f2014-11-14 17:18:23 +0000961 default:
962 goto out_free_data;
963 }
964
Will Deaconac4b80e2020-01-10 14:51:59 +0000965 vtcr->tsz = 64ULL - cfg->ias;
966 vtcr->sl = ~sl & ARM_LPAE_VTCR_SL0_MASK;
Will Deacone1d3c0f2014-11-14 17:18:23 +0000967
968 /* Allocate pgd pages */
Robin Murphyc79278c2019-10-25 19:08:34 +0100969 data->pgd = __arm_lpae_alloc_pages(ARM_LPAE_PGD_SIZE(data),
970 GFP_KERNEL, cfg);
Will Deacone1d3c0f2014-11-14 17:18:23 +0000971 if (!data->pgd)
972 goto out_free_data;
973
Robin Murphy87a91b12015-07-29 19:46:09 +0100974 /* Ensure the empty pgd is visible before any actual TTBR write */
975 wmb();
Will Deacone1d3c0f2014-11-14 17:18:23 +0000976
977 /* VTTBR */
978 cfg->arm_lpae_s2_cfg.vttbr = virt_to_phys(data->pgd);
979 return &data->iop;
980
981out_free_data:
982 kfree(data);
983 return NULL;
984}
985
986static struct io_pgtable *
987arm_32_lpae_alloc_pgtable_s1(struct io_pgtable_cfg *cfg, void *cookie)
988{
Will Deacone1d3c0f2014-11-14 17:18:23 +0000989 if (cfg->ias > 32 || cfg->oas > 40)
990 return NULL;
991
992 cfg->pgsize_bitmap &= (SZ_4K | SZ_2M | SZ_1G);
Robin Murphyfb485eb2019-10-25 19:08:38 +0100993 return arm_64_lpae_alloc_pgtable_s1(cfg, cookie);
Will Deacone1d3c0f2014-11-14 17:18:23 +0000994}
995
996static struct io_pgtable *
997arm_32_lpae_alloc_pgtable_s2(struct io_pgtable_cfg *cfg, void *cookie)
998{
Will Deacone1d3c0f2014-11-14 17:18:23 +0000999 if (cfg->ias > 40 || cfg->oas > 40)
1000 return NULL;
1001
1002 cfg->pgsize_bitmap &= (SZ_4K | SZ_2M | SZ_1G);
Will Deaconac4b80e2020-01-10 14:51:59 +00001003 return arm_64_lpae_alloc_pgtable_s2(cfg, cookie);
Will Deacone1d3c0f2014-11-14 17:18:23 +00001004}
1005
Rob Herringd08d42d2019-02-21 14:23:25 -06001006static struct io_pgtable *
1007arm_mali_lpae_alloc_pgtable(struct io_pgtable_cfg *cfg, void *cookie)
1008{
Robin Murphy52f325f2019-09-30 15:11:00 +01001009 struct arm_lpae_io_pgtable *data;
Rob Herringd08d42d2019-02-21 14:23:25 -06001010
Robin Murphy52f325f2019-09-30 15:11:00 +01001011 /* No quirks for Mali (hopefully) */
1012 if (cfg->quirks)
1013 return NULL;
Rob Herringd08d42d2019-02-21 14:23:25 -06001014
Robin Murphy1be08f42019-09-30 15:11:01 +01001015 if (cfg->ias > 48 || cfg->oas > 40)
Rob Herringd08d42d2019-02-21 14:23:25 -06001016 return NULL;
1017
1018 cfg->pgsize_bitmap &= (SZ_4K | SZ_2M | SZ_1G);
Rob Herringd08d42d2019-02-21 14:23:25 -06001019
Robin Murphy52f325f2019-09-30 15:11:00 +01001020 data = arm_lpae_alloc_pgtable(cfg);
1021 if (!data)
1022 return NULL;
Rob Herringd08d42d2019-02-21 14:23:25 -06001023
Robin Murphy1be08f42019-09-30 15:11:01 +01001024 /* Mali seems to need a full 4-level table regardless of IAS */
Robin Murphy594ab902019-10-25 19:08:33 +01001025 if (data->start_level > 0) {
1026 data->start_level = 0;
Robin Murphyc79278c2019-10-25 19:08:34 +01001027 data->pgd_bits = 0;
Rob Herringd08d42d2019-02-21 14:23:25 -06001028 }
Robin Murphy52f325f2019-09-30 15:11:00 +01001029 /*
1030 * MEMATTR: Mali has no actual notion of a non-cacheable type, so the
1031 * best we can do is mimic the out-of-tree driver and hope that the
1032 * "implementation-defined caching policy" is good enough. Similarly,
1033 * we'll use it for the sake of a valid attribute for our 'device'
1034 * index, although callers should never request that in practice.
1035 */
1036 cfg->arm_mali_lpae_cfg.memattr =
1037 (ARM_MALI_LPAE_MEMATTR_IMP_DEF
1038 << ARM_LPAE_MAIR_ATTR_SHIFT(ARM_LPAE_MAIR_ATTR_IDX_NC)) |
1039 (ARM_MALI_LPAE_MEMATTR_WRITE_ALLOC
1040 << ARM_LPAE_MAIR_ATTR_SHIFT(ARM_LPAE_MAIR_ATTR_IDX_CACHE)) |
1041 (ARM_MALI_LPAE_MEMATTR_IMP_DEF
1042 << ARM_LPAE_MAIR_ATTR_SHIFT(ARM_LPAE_MAIR_ATTR_IDX_DEV));
Rob Herringd08d42d2019-02-21 14:23:25 -06001043
Robin Murphyc79278c2019-10-25 19:08:34 +01001044 data->pgd = __arm_lpae_alloc_pages(ARM_LPAE_PGD_SIZE(data), GFP_KERNEL,
1045 cfg);
Robin Murphy52f325f2019-09-30 15:11:00 +01001046 if (!data->pgd)
1047 goto out_free_data;
1048
1049 /* Ensure the empty pgd is visible before TRANSTAB can be written */
1050 wmb();
1051
1052 cfg->arm_mali_lpae_cfg.transtab = virt_to_phys(data->pgd) |
1053 ARM_MALI_LPAE_TTBR_READ_INNER |
1054 ARM_MALI_LPAE_TTBR_ADRMODE_TABLE;
1055 return &data->iop;
1056
1057out_free_data:
1058 kfree(data);
1059 return NULL;
Rob Herringd08d42d2019-02-21 14:23:25 -06001060}
1061
Will Deacone1d3c0f2014-11-14 17:18:23 +00001062struct io_pgtable_init_fns io_pgtable_arm_64_lpae_s1_init_fns = {
1063 .alloc = arm_64_lpae_alloc_pgtable_s1,
1064 .free = arm_lpae_free_pgtable,
1065};
1066
1067struct io_pgtable_init_fns io_pgtable_arm_64_lpae_s2_init_fns = {
1068 .alloc = arm_64_lpae_alloc_pgtable_s2,
1069 .free = arm_lpae_free_pgtable,
1070};
1071
1072struct io_pgtable_init_fns io_pgtable_arm_32_lpae_s1_init_fns = {
1073 .alloc = arm_32_lpae_alloc_pgtable_s1,
1074 .free = arm_lpae_free_pgtable,
1075};
1076
1077struct io_pgtable_init_fns io_pgtable_arm_32_lpae_s2_init_fns = {
1078 .alloc = arm_32_lpae_alloc_pgtable_s2,
1079 .free = arm_lpae_free_pgtable,
1080};
Will Deaconfe4b9912014-11-17 23:31:12 +00001081
Rob Herringd08d42d2019-02-21 14:23:25 -06001082struct io_pgtable_init_fns io_pgtable_arm_mali_lpae_init_fns = {
1083 .alloc = arm_mali_lpae_alloc_pgtable,
1084 .free = arm_lpae_free_pgtable,
1085};
1086
Will Deaconfe4b9912014-11-17 23:31:12 +00001087#ifdef CONFIG_IOMMU_IO_PGTABLE_LPAE_SELFTEST
1088
Robin Murphyb5813c12019-10-25 19:08:30 +01001089static struct io_pgtable_cfg *cfg_cookie __initdata;
Will Deaconfe4b9912014-11-17 23:31:12 +00001090
Robin Murphyb5813c12019-10-25 19:08:30 +01001091static void __init dummy_tlb_flush_all(void *cookie)
Will Deaconfe4b9912014-11-17 23:31:12 +00001092{
1093 WARN_ON(cookie != cfg_cookie);
1094}
1095
Robin Murphyb5813c12019-10-25 19:08:30 +01001096static void __init dummy_tlb_flush(unsigned long iova, size_t size,
1097 size_t granule, void *cookie)
Will Deaconfe4b9912014-11-17 23:31:12 +00001098{
1099 WARN_ON(cookie != cfg_cookie);
1100 WARN_ON(!(size & cfg_cookie->pgsize_bitmap));
1101}
1102
Robin Murphyb5813c12019-10-25 19:08:30 +01001103static void __init dummy_tlb_add_page(struct iommu_iotlb_gather *gather,
1104 unsigned long iova, size_t granule,
1105 void *cookie)
Will Deacon10b7a7d2019-07-02 16:44:32 +01001106{
Will Deaconabfd6fe2019-07-02 16:44:41 +01001107 dummy_tlb_flush(iova, granule, granule, cookie);
Will Deacon10b7a7d2019-07-02 16:44:32 +01001108}
1109
Will Deacon298f78892019-07-02 16:43:34 +01001110static const struct iommu_flush_ops dummy_tlb_ops __initconst = {
Will Deaconfe4b9912014-11-17 23:31:12 +00001111 .tlb_flush_all = dummy_tlb_flush_all,
Will Deacon10b7a7d2019-07-02 16:44:32 +01001112 .tlb_flush_walk = dummy_tlb_flush,
1113 .tlb_flush_leaf = dummy_tlb_flush,
Will Deaconabfd6fe2019-07-02 16:44:41 +01001114 .tlb_add_page = dummy_tlb_add_page,
Will Deaconfe4b9912014-11-17 23:31:12 +00001115};
1116
1117static void __init arm_lpae_dump_ops(struct io_pgtable_ops *ops)
1118{
1119 struct arm_lpae_io_pgtable *data = io_pgtable_ops_to_data(ops);
1120 struct io_pgtable_cfg *cfg = &data->iop.cfg;
1121
1122 pr_err("cfg: pgsize_bitmap 0x%lx, ias %u-bit\n",
1123 cfg->pgsize_bitmap, cfg->ias);
Robin Murphy5fb190b2019-10-25 19:08:35 +01001124 pr_err("data: %d levels, 0x%zx pgd_size, %u pg_shift, %u bits_per_level, pgd @ %p\n",
Robin Murphyc79278c2019-10-25 19:08:34 +01001125 ARM_LPAE_MAX_LEVELS - data->start_level, ARM_LPAE_PGD_SIZE(data),
Robin Murphy5fb190b2019-10-25 19:08:35 +01001126 ilog2(ARM_LPAE_GRANULE(data)), data->bits_per_level, data->pgd);
Will Deaconfe4b9912014-11-17 23:31:12 +00001127}
1128
1129#define __FAIL(ops, i) ({ \
1130 WARN(1, "selftest: test failed for fmt idx %d\n", (i)); \
1131 arm_lpae_dump_ops(ops); \
1132 selftest_running = false; \
1133 -EFAULT; \
1134})
1135
1136static int __init arm_lpae_run_tests(struct io_pgtable_cfg *cfg)
1137{
Christophe JAILLET9062c1d2019-09-09 22:19:19 +02001138 static const enum io_pgtable_fmt fmts[] __initconst = {
Will Deaconfe4b9912014-11-17 23:31:12 +00001139 ARM_64_LPAE_S1,
1140 ARM_64_LPAE_S2,
1141 };
1142
1143 int i, j;
1144 unsigned long iova;
1145 size_t size;
1146 struct io_pgtable_ops *ops;
1147
1148 selftest_running = true;
1149
1150 for (i = 0; i < ARRAY_SIZE(fmts); ++i) {
1151 cfg_cookie = cfg;
1152 ops = alloc_io_pgtable_ops(fmts[i], cfg, cfg);
1153 if (!ops) {
1154 pr_err("selftest: failed to allocate io pgtable ops\n");
1155 return -ENOMEM;
1156 }
1157
1158 /*
1159 * Initial sanity checks.
1160 * Empty page tables shouldn't provide any translations.
1161 */
1162 if (ops->iova_to_phys(ops, 42))
1163 return __FAIL(ops, i);
1164
1165 if (ops->iova_to_phys(ops, SZ_1G + 42))
1166 return __FAIL(ops, i);
1167
1168 if (ops->iova_to_phys(ops, SZ_2G + 42))
1169 return __FAIL(ops, i);
1170
1171 /*
1172 * Distinct mappings of different granule sizes.
1173 */
1174 iova = 0;
Kefeng Wang4ae8a5c2016-09-21 13:41:31 +08001175 for_each_set_bit(j, &cfg->pgsize_bitmap, BITS_PER_LONG) {
Will Deaconfe4b9912014-11-17 23:31:12 +00001176 size = 1UL << j;
1177
1178 if (ops->map(ops, iova, iova, size, IOMMU_READ |
1179 IOMMU_WRITE |
1180 IOMMU_NOEXEC |
1181 IOMMU_CACHE))
1182 return __FAIL(ops, i);
1183
1184 /* Overlapping mappings */
1185 if (!ops->map(ops, iova, iova + size, size,
1186 IOMMU_READ | IOMMU_NOEXEC))
1187 return __FAIL(ops, i);
1188
1189 if (ops->iova_to_phys(ops, iova + 42) != (iova + 42))
1190 return __FAIL(ops, i);
1191
1192 iova += SZ_1G;
Will Deaconfe4b9912014-11-17 23:31:12 +00001193 }
1194
1195 /* Partial unmap */
1196 size = 1UL << __ffs(cfg->pgsize_bitmap);
Will Deacona2d3a382019-07-02 16:44:58 +01001197 if (ops->unmap(ops, SZ_1G + size, size, NULL) != size)
Will Deaconfe4b9912014-11-17 23:31:12 +00001198 return __FAIL(ops, i);
1199
1200 /* Remap of partial unmap */
1201 if (ops->map(ops, SZ_1G + size, size, size, IOMMU_READ))
1202 return __FAIL(ops, i);
1203
1204 if (ops->iova_to_phys(ops, SZ_1G + size + 42) != (size + 42))
1205 return __FAIL(ops, i);
1206
1207 /* Full unmap */
1208 iova = 0;
YueHaibingf793b132018-04-26 12:49:29 +08001209 for_each_set_bit(j, &cfg->pgsize_bitmap, BITS_PER_LONG) {
Will Deaconfe4b9912014-11-17 23:31:12 +00001210 size = 1UL << j;
1211
Will Deacona2d3a382019-07-02 16:44:58 +01001212 if (ops->unmap(ops, iova, size, NULL) != size)
Will Deaconfe4b9912014-11-17 23:31:12 +00001213 return __FAIL(ops, i);
1214
1215 if (ops->iova_to_phys(ops, iova + 42))
1216 return __FAIL(ops, i);
1217
1218 /* Remap full block */
1219 if (ops->map(ops, iova, iova, size, IOMMU_WRITE))
1220 return __FAIL(ops, i);
1221
1222 if (ops->iova_to_phys(ops, iova + 42) != (iova + 42))
1223 return __FAIL(ops, i);
1224
1225 iova += SZ_1G;
Will Deaconfe4b9912014-11-17 23:31:12 +00001226 }
1227
1228 free_io_pgtable_ops(ops);
1229 }
1230
1231 selftest_running = false;
1232 return 0;
1233}
1234
1235static int __init arm_lpae_do_selftests(void)
1236{
Christophe JAILLET9062c1d2019-09-09 22:19:19 +02001237 static const unsigned long pgsize[] __initconst = {
Will Deaconfe4b9912014-11-17 23:31:12 +00001238 SZ_4K | SZ_2M | SZ_1G,
1239 SZ_16K | SZ_32M,
1240 SZ_64K | SZ_512M,
1241 };
1242
Christophe JAILLET9062c1d2019-09-09 22:19:19 +02001243 static const unsigned int ias[] __initconst = {
Will Deaconfe4b9912014-11-17 23:31:12 +00001244 32, 36, 40, 42, 44, 48,
1245 };
1246
1247 int i, j, pass = 0, fail = 0;
1248 struct io_pgtable_cfg cfg = {
1249 .tlb = &dummy_tlb_ops,
1250 .oas = 48,
Will Deacon4f418452019-06-25 12:51:25 +01001251 .coherent_walk = true,
Will Deaconfe4b9912014-11-17 23:31:12 +00001252 };
1253
1254 for (i = 0; i < ARRAY_SIZE(pgsize); ++i) {
1255 for (j = 0; j < ARRAY_SIZE(ias); ++j) {
1256 cfg.pgsize_bitmap = pgsize[i];
1257 cfg.ias = ias[j];
1258 pr_info("selftest: pgsize_bitmap 0x%08lx, IAS %u\n",
1259 pgsize[i], ias[j]);
1260 if (arm_lpae_run_tests(&cfg))
1261 fail++;
1262 else
1263 pass++;
1264 }
1265 }
1266
1267 pr_info("selftest: completed with %d PASS %d FAIL\n", pass, fail);
1268 return fail ? -EFAULT : 0;
1269}
1270subsys_initcall(arm_lpae_do_selftests);
1271#endif