From: Ahmad Fatoum <a.fatoum@pengutronix.de>
To: barebox@lists.infradead.org
Cc: Ahmad Fatoum <a.fatoum@pengutronix.de>
Subject: [PATCH 09/22] ARM: mmu: move get_pte_attrs call into __arch_remap_range
Date: Wed, 6 Aug 2025 14:37:01 +0200 [thread overview]
Message-ID: <20250806123714.2092620-10-a.fatoum@pengutronix.de> (raw)
In-Reply-To: <20250806123714.2092620-1-a.fatoum@pengutronix.de>
For similarity with the ARM32 code, give the function the same prototype
in both architectures. This will be useful in the follow-up commit when
we add a debug print that should reference the generic flags.
Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de>
---
arch/arm/cpu/mmu_64.c | 73 +++++++++++++++++++------------------------
1 file changed, 32 insertions(+), 41 deletions(-)
diff --git a/arch/arm/cpu/mmu_64.c b/arch/arm/cpu/mmu_64.c
index 1c77aa9472df..bc5d1a6e8160 100644
--- a/arch/arm/cpu/mmu_64.c
+++ b/arch/arm/cpu/mmu_64.c
@@ -91,6 +91,28 @@ static __maybe_unused uint64_t *find_pte(uint64_t addr)
return __find_pte(get_ttb(), addr, NULL);
}
+static unsigned long get_pte_attrs(maptype_t map_type)
+{
+ switch (map_type & MAP_TYPE_MASK) {
+ case MAP_CACHED:
+ return attrs_xn() | CACHED_MEM;
+ case MAP_UNCACHED:
+ return attrs_xn() | UNCACHED_MEM;
+ case MAP_FAULT:
+ return 0x0;
+ case MAP_WRITECOMBINE:
+ return attrs_xn() | MEM_ALLOC_WRITECOMBINE;
+ case MAP_CODE:
+ return CACHED_MEM | PTE_BLOCK_RO;
+ case ARCH_MAP_CACHED_RO:
+ return attrs_xn() | CACHED_MEM | PTE_BLOCK_RO;
+ case ARCH_MAP_CACHED_RWX:
+ return CACHED_MEM;
+ default:
+ return ~0UL;
+ }
+}
+
#define MAX_PTE_ENTRIES 512
/* Splits a block PTE into table with subpages spanning the old block */
@@ -123,9 +145,10 @@ static void split_block(uint64_t *pte, int level)
set_table(pte, new_table);
}
-static void __arch_remap_range(uint64_t virt, uint64_t phys, uint64_t size,
- uint64_t attr, bool force_pages)
+static int __arch_remap_range(uint64_t virt, uint64_t phys, uint64_t size,
+ maptype_t map_type, bool force_pages)
{
+ unsigned long attr = get_pte_attrs(map_type);
uint64_t *ttb = get_ttb();
uint64_t block_size;
uint64_t block_shift;
@@ -138,11 +161,14 @@ static void __arch_remap_range(uint64_t virt, uint64_t phys, uint64_t size,
addr = virt;
+ if (WARN_ON(attr == ~0UL))
+ return -EINVAL;
+
attr &= ~PTE_TYPE_MASK;
size = PAGE_ALIGN(size);
if (!size)
- return;
+ return 0;
while (size) {
table = ttb;
@@ -178,6 +204,7 @@ static void __arch_remap_range(uint64_t virt, uint64_t phys, uint64_t size,
}
tlb_invalidate();
+ return 0;
}
static size_t granule_size(int level)
@@ -283,55 +310,19 @@ static void flush_cacheable_pages(void *start, size_t size)
v8_flush_dcache_range(flush_start, flush_end);
}
-static unsigned long get_pte_attrs(maptype_t map_type)
-{
- switch (map_type & MAP_TYPE_MASK) {
- case MAP_CACHED:
- return attrs_xn() | CACHED_MEM;
- case MAP_UNCACHED:
- return attrs_xn() | UNCACHED_MEM;
- case MAP_FAULT:
- return 0x0;
- case MAP_WRITECOMBINE:
- return attrs_xn() | MEM_ALLOC_WRITECOMBINE;
- case MAP_CODE:
- return CACHED_MEM | PTE_BLOCK_RO;
- case ARCH_MAP_CACHED_RO:
- return attrs_xn() | CACHED_MEM | PTE_BLOCK_RO;
- case ARCH_MAP_CACHED_RWX:
- return CACHED_MEM;
- default:
- return ~0UL;
- }
-}
-
static void early_remap_range(uint64_t addr, size_t size, maptype_t map_type, bool force_pages)
{
- unsigned long attrs = get_pte_attrs(map_type);
-
- if (WARN_ON(attrs == ~0UL))
- return;
-
- __arch_remap_range(addr, addr, size, attrs, force_pages);
+ __arch_remap_range(addr, addr, size, map_type, force_pages);
}
int arch_remap_range(void *virt_addr, phys_addr_t phys_addr, size_t size, maptype_t map_type)
{
- unsigned long attrs;
-
map_type = arm_mmu_maybe_skip_permissions(map_type);
- attrs = get_pte_attrs(map_type);
-
- if (attrs == ~0UL)
- return -EINVAL;
-
if (!maptype_is_compatible(map_type, MAP_CACHED))
flush_cacheable_pages(virt_addr, size);
- __arch_remap_range((uint64_t)virt_addr, phys_addr, (uint64_t)size, attrs, false);
-
- return 0;
+ return __arch_remap_range((uint64_t)virt_addr, phys_addr, (uint64_t)size, map_type, false);
}
static void mmu_enable(void)
--
2.39.5
next prev parent reply other threads:[~2025-08-06 12:39 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-08-06 12:36 [PATCH 00/22] ARM: mmu: refactor 32-bit and 64-bit code Ahmad Fatoum
2025-08-06 12:36 ` [PATCH 01/22] ARM: mmu: introduce new maptype_t type Ahmad Fatoum
2025-08-06 12:36 ` [PATCH 02/22] ARM: mmu: compare only lowest 16 bits for map type Ahmad Fatoum
2025-08-06 12:36 ` [PATCH 03/22] ARM: mmu: prefix pre-MMU functions with early_ Ahmad Fatoum
2025-08-06 12:36 ` [PATCH 04/22] ARM: mmu: panic when alloc_pte fails Ahmad Fatoum
2025-08-06 12:36 ` [PATCH 05/22] ARM: mmu32: introduce new mmu_addr_t type Ahmad Fatoum
2025-08-06 12:36 ` [PATCH 06/22] ARM: mmu: provide zero page control in PBL Ahmad Fatoum
2025-08-06 12:36 ` [PATCH 07/22] ARM: mmu: print map type as string Ahmad Fatoum
2025-08-06 12:37 ` [PATCH 08/22] ARM: mmu64: rename create_sections to __arch_remap_range Ahmad Fatoum
2025-08-06 12:37 ` Ahmad Fatoum [this message]
2025-08-06 12:37 ` [PATCH 10/22] ARM: mmu64: print debug message in __arch_remap_range Ahmad Fatoum
2025-08-06 12:37 ` [PATCH 11/22] ARM: mmu: make force_pages a maptype_t flag Ahmad Fatoum
2025-08-06 12:37 ` [PATCH 12/22] ARM: mmu64: move granule_size to the top of the file Ahmad Fatoum
2025-08-06 12:37 ` [PATCH 13/22] ARM: mmu64: fix benign off-by-one in flush_cacheable_pages Ahmad Fatoum
2025-08-06 12:37 ` [PATCH 14/22] ARM: mmu64: make flush_cacheable_pages less 64-bit dependent Ahmad Fatoum
2025-08-06 12:37 ` [PATCH 15/22] ARM: mmu64: allow asserting last level page in __find_pte Ahmad Fatoum
2025-08-06 12:37 ` [PATCH 16/22] ARM: mmu64: rename __find_pte to find_pte Ahmad Fatoum
2025-08-06 12:37 ` [PATCH 17/22] ARM: mmu32: rework find_pte to have ARM64 find_pte semantics Ahmad Fatoum
2025-08-06 12:37 ` [PATCH 18/22] ARM: mmu64: factor out flush_cacheable_pages for reusability Ahmad Fatoum
2025-08-06 12:37 ` [PATCH 19/22] ARM: mmu32: flush only cacheable pages on remap Ahmad Fatoum
2025-08-06 12:37 ` [PATCH 20/22] ARM: mmu32: factor out set_pte_range helper Ahmad Fatoum
2025-08-06 12:37 ` [PATCH 21/22] ARM: mmu64: " Ahmad Fatoum
2025-08-06 12:37 ` [PATCH 22/22] ARM: mmu: define dma_alloc_writecombine in common code Ahmad Fatoum
2025-08-07 7:24 ` [PATCH 00/22] ARM: mmu: refactor 32-bit and 64-bit code Sascha Hauer
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20250806123714.2092620-10-a.fatoum@pengutronix.de \
--to=a.fatoum@pengutronix.de \
--cc=barebox@lists.infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox