git.openpandora.org
/
pandora-u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4f5285f
)
arm: mach-k3: reserve space for page table entries
author
Anshul Dalal
<anshuld@ti.com>
Fri, 17 Oct 2025 13:15:33 +0000
(18:45 +0530)
committer
Tom Rini
<trini@konsulko.com>
Wed, 22 Oct 2025 18:05:53 +0000
(12:05 -0600)
With the memory map configuration being done dynamically, reserve extra
space during U-Boot relocation to ensure we have enough for the fixups.
Reviewed-by: Dhruva Gole <d-gole@ti.com>
Signed-off-by: Anshul Dalal <anshuld@ti.com>
arch/arm/mach-k3/arm64/arm64-mmu.c
patch
|
blob
|
history
diff --git
a/arch/arm/mach-k3/arm64/arm64-mmu.c
b/arch/arm/mach-k3/arm64/arm64-mmu.c
index
4794514
..
f999af1
100644
(file)
--- a/
arch/arm/mach-k3/arm64/arm64-mmu.c
+++ b/
arch/arm/mach-k3/arm64/arm64-mmu.c
@@
-41,3
+41,8
@@
struct mm_region k3_mem_map[K3_MEM_MAP_LEN] = {
};
struct mm_region *mem_map = k3_mem_map;
+
+u64 get_page_table_size(void)
+{
+ return SZ_128K;
+}