Skip to content

Commit 8163c58

Browse files
Ard BiesheuvelAlex Shi
authored andcommitted
arm64: introduce KIMAGE_VADDR as the virtual base of the kernel region
This introduces the preprocessor symbol KIMAGE_VADDR which will serve as the symbolic virtual base of the kernel region, i.e., the kernel's virtual offset will be KIMAGE_VADDR + TEXT_OFFSET. For now, we define it as being equal to PAGE_OFFSET, but in the future, it will be moved below it once we move the kernel virtual mapping out of the linear mapping. Reviewed-by: Mark Rutland <mark.rutland@arm.com> Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org> Signed-off-by: Catalin Marinas <catalin.marinas@arm.com> (cherry picked from commit ab893fb9f1b17f02139bce547bb4b69e96b9ae16) Signed-off-by: Alex Shi <alex.shi@linaro.org>
1 parent 602dece commit 8163c58

3 files changed

Lines changed: 11 additions & 5 deletions

File tree

arch/arm64/include/asm/memory.h

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,8 @@
5151
#define VA_BITS (CONFIG_ARM64_VA_BITS)
5252
#define VA_START (UL(0xffffffffffffffff) << VA_BITS)
5353
#define PAGE_OFFSET (UL(0xffffffffffffffff) << (VA_BITS - 1))
54-
#define MODULES_END (PAGE_OFFSET)
54+
#define KIMAGE_VADDR (PAGE_OFFSET)
55+
#define MODULES_END (KIMAGE_VADDR)
5556
#define MODULES_VADDR (MODULES_END - SZ_64M)
5657
#define PCI_IO_END (MODULES_VADDR - SZ_2M)
5758
#define PCI_IO_START (PCI_IO_END - PCI_IO_SIZE)
@@ -78,8 +79,13 @@
7879
* private definitions which should NOT be used outside memory.h
7980
* files. Use virt_to_phys/phys_to_virt/__pa/__va instead.
8081
*/
81-
#define __virt_to_phys(x) (((phys_addr_t)(x) - PAGE_OFFSET + PHYS_OFFSET))
82+
#define __virt_to_phys(x) ({ \
83+
phys_addr_t __x = (phys_addr_t)(x); \
84+
__x >= PAGE_OFFSET ? (__x - PAGE_OFFSET + PHYS_OFFSET) : \
85+
(__x - KIMAGE_VADDR + PHYS_OFFSET); })
86+
8287
#define __phys_to_virt(x) ((unsigned long)((x) - PHYS_OFFSET + PAGE_OFFSET))
88+
#define __phys_to_kimg(x) ((unsigned long)((x) - PHYS_OFFSET + KIMAGE_VADDR))
8389

8490
/*
8591
* Convert a page to/from a physical address

arch/arm64/kernel/head.S

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -386,7 +386,7 @@ __create_page_tables:
386386
* Map the kernel image (starting with PHYS_OFFSET).
387387
*/
388388
mov x0, x26 // swapper_pg_dir
389-
mov x5, #PAGE_OFFSET
389+
ldr x5, =KIMAGE_VADDR
390390
create_pgd_entry x0, x5, x3, x6
391391
ldr x6, =KERNEL_END // __va(KERNEL_END)
392392
mov x3, x24 // phys offset

arch/arm64/kernel/vmlinux.lds.S

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ SECTIONS
9999
*(.discard.*)
100100
}
101101

102-
. = PAGE_OFFSET + TEXT_OFFSET;
102+
. = KIMAGE_VADDR + TEXT_OFFSET;
103103

104104
.head.text : {
105105
_text = .;
@@ -205,4 +205,4 @@ ASSERT(__hibernate_exit_text_end - (__hibernate_exit_text_start & ~(SZ_4K - 1))
205205
/*
206206
* If padding is applied before .head.text, virt<->phys conversions will fail.
207207
*/
208-
ASSERT(_text == (PAGE_OFFSET + TEXT_OFFSET), "HEAD is misaligned")
208+
ASSERT(_text == (KIMAGE_VADDR + TEXT_OFFSET), "HEAD is misaligned")

0 commit comments

Comments
 (0)